Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/locks.c |
| 3 | * |
| 4 | * Provide support for fcntl()'s F_GETLK, F_SETLK, and F_SETLKW calls. |
| 5 | * Doug Evans (dje@spiff.uucp), August 07, 1992 |
| 6 | * |
| 7 | * Deadlock detection added. |
| 8 | * FIXME: one thing isn't handled yet: |
| 9 | * - mandatory locks (requires lots of changes elsewhere) |
| 10 | * Kelly Carmichael (kelly@[142.24.8.65]), September 17, 1994. |
| 11 | * |
| 12 | * Miscellaneous edits, and a total rewrite of posix_lock_file() code. |
| 13 | * Kai Petzke (wpp@marie.physik.tu-berlin.de), 1994 |
| 14 | * |
| 15 | * Converted file_lock_table to a linked list from an array, which eliminates |
| 16 | * the limits on how many active file locks are open. |
| 17 | * Chad Page (pageone@netcom.com), November 27, 1994 |
| 18 | * |
| 19 | * Removed dependency on file descriptors. dup()'ed file descriptors now |
| 20 | * get the same locks as the original file descriptors, and a close() on |
| 21 | * any file descriptor removes ALL the locks on the file for the current |
| 22 | * process. Since locks still depend on the process id, locks are inherited |
| 23 | * after an exec() but not after a fork(). This agrees with POSIX, and both |
| 24 | * BSD and SVR4 practice. |
| 25 | * Andy Walker (andy@lysaker.kvaerner.no), February 14, 1995 |
| 26 | * |
| 27 | * Scrapped free list which is redundant now that we allocate locks |
| 28 | * dynamically with kmalloc()/kfree(). |
| 29 | * Andy Walker (andy@lysaker.kvaerner.no), February 21, 1995 |
| 30 | * |
| 31 | * Implemented two lock personalities - FL_FLOCK and FL_POSIX. |
| 32 | * |
| 33 | * FL_POSIX locks are created with calls to fcntl() and lockf() through the |
| 34 | * fcntl() system call. They have the semantics described above. |
| 35 | * |
| 36 | * FL_FLOCK locks are created with calls to flock(), through the flock() |
| 37 | * system call, which is new. Old C libraries implement flock() via fcntl() |
| 38 | * and will continue to use the old, broken implementation. |
| 39 | * |
| 40 | * FL_FLOCK locks follow the 4.4 BSD flock() semantics. They are associated |
| 41 | * with a file pointer (filp). As a result they can be shared by a parent |
| 42 | * process and its children after a fork(). They are removed when the last |
| 43 | * file descriptor referring to the file pointer is closed (unless explicitly |
| 44 | * unlocked). |
| 45 | * |
| 46 | * FL_FLOCK locks never deadlock, an existing lock is always removed before |
| 47 | * upgrading from shared to exclusive (or vice versa). When this happens |
| 48 | * any processes blocked by the current lock are woken up and allowed to |
| 49 | * run before the new lock is applied. |
| 50 | * Andy Walker (andy@lysaker.kvaerner.no), June 09, 1995 |
| 51 | * |
| 52 | * Removed some race conditions in flock_lock_file(), marked other possible |
| 53 | * races. Just grep for FIXME to see them. |
| 54 | * Dmitry Gorodchanin (pgmdsg@ibi.com), February 09, 1996. |
| 55 | * |
| 56 | * Addressed Dmitry's concerns. Deadlock checking no longer recursive. |
| 57 | * Lock allocation changed to GFP_ATOMIC as we can't afford to sleep |
| 58 | * once we've checked for blocking and deadlocking. |
| 59 | * Andy Walker (andy@lysaker.kvaerner.no), April 03, 1996. |
| 60 | * |
| 61 | * Initial implementation of mandatory locks. SunOS turned out to be |
| 62 | * a rotten model, so I implemented the "obvious" semantics. |
| 63 | * See 'Documentation/mandatory.txt' for details. |
| 64 | * Andy Walker (andy@lysaker.kvaerner.no), April 06, 1996. |
| 65 | * |
| 66 | * Don't allow mandatory locks on mmap()'ed files. Added simple functions to |
| 67 | * check if a file has mandatory locks, used by mmap(), open() and creat() to |
| 68 | * see if system call should be rejected. Ref. HP-UX/SunOS/Solaris Reference |
| 69 | * Manual, Section 2. |
| 70 | * Andy Walker (andy@lysaker.kvaerner.no), April 09, 1996. |
| 71 | * |
| 72 | * Tidied up block list handling. Added '/proc/locks' interface. |
| 73 | * Andy Walker (andy@lysaker.kvaerner.no), April 24, 1996. |
| 74 | * |
| 75 | * Fixed deadlock condition for pathological code that mixes calls to |
| 76 | * flock() and fcntl(). |
| 77 | * Andy Walker (andy@lysaker.kvaerner.no), April 29, 1996. |
| 78 | * |
| 79 | * Allow only one type of locking scheme (FL_POSIX or FL_FLOCK) to be in use |
| 80 | * for a given file at a time. Changed the CONFIG_LOCK_MANDATORY scheme to |
| 81 | * guarantee sensible behaviour in the case where file system modules might |
| 82 | * be compiled with different options than the kernel itself. |
| 83 | * Andy Walker (andy@lysaker.kvaerner.no), May 15, 1996. |
| 84 | * |
| 85 | * Added a couple of missing wake_up() calls. Thanks to Thomas Meckel |
| 86 | * (Thomas.Meckel@mni.fh-giessen.de) for spotting this. |
| 87 | * Andy Walker (andy@lysaker.kvaerner.no), May 15, 1996. |
| 88 | * |
| 89 | * Changed FL_POSIX locks to use the block list in the same way as FL_FLOCK |
| 90 | * locks. Changed process synchronisation to avoid dereferencing locks that |
| 91 | * have already been freed. |
| 92 | * Andy Walker (andy@lysaker.kvaerner.no), Sep 21, 1996. |
| 93 | * |
| 94 | * Made the block list a circular list to minimise searching in the list. |
| 95 | * Andy Walker (andy@lysaker.kvaerner.no), Sep 25, 1996. |
| 96 | * |
| 97 | * Made mandatory locking a mount option. Default is not to allow mandatory |
| 98 | * locking. |
| 99 | * Andy Walker (andy@lysaker.kvaerner.no), Oct 04, 1996. |
| 100 | * |
| 101 | * Some adaptations for NFS support. |
| 102 | * Olaf Kirch (okir@monad.swb.de), Dec 1996, |
| 103 | * |
| 104 | * Fixed /proc/locks interface so that we can't overrun the buffer we are handed. |
| 105 | * Andy Walker (andy@lysaker.kvaerner.no), May 12, 1997. |
| 106 | * |
| 107 | * Use slab allocator instead of kmalloc/kfree. |
| 108 | * Use generic list implementation from <linux/list.h>. |
| 109 | * Sped up posix_locks_deadlock by only considering blocked locks. |
| 110 | * Matthew Wilcox <willy@debian.org>, March, 2000. |
| 111 | * |
| 112 | * Leases and LOCK_MAND |
| 113 | * Matthew Wilcox <willy@debian.org>, June, 2000. |
| 114 | * Stephen Rothwell <sfr@canb.auug.org.au>, June, 2000. |
| 115 | */ |
| 116 | |
| 117 | #include <linux/capability.h> |
| 118 | #include <linux/file.h> |
Al Viro | 9f3acc3 | 2008-04-24 07:44:08 -0400 | [diff] [blame] | 119 | #include <linux/fdtable.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | #include <linux/fs.h> |
| 121 | #include <linux/init.h> |
| 122 | #include <linux/module.h> |
| 123 | #include <linux/security.h> |
| 124 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | #include <linux/syscalls.h> |
| 126 | #include <linux/time.h> |
Dipankar Sarma | 4fb3a53 | 2005-09-16 19:28:13 -0700 | [diff] [blame] | 127 | #include <linux/rcupdate.h> |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 128 | #include <linux/pid_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | #include <asm/uaccess.h> |
| 131 | |
| 132 | #define IS_POSIX(fl) (fl->fl_flags & FL_POSIX) |
| 133 | #define IS_FLOCK(fl) (fl->fl_flags & FL_FLOCK) |
| 134 | #define IS_LEASE(fl) (fl->fl_flags & FL_LEASE) |
| 135 | |
| 136 | int leases_enable = 1; |
| 137 | int lease_break_time = 45; |
| 138 | |
| 139 | #define for_each_lock(inode, lockp) \ |
| 140 | for (lockp = &inode->i_flock; *lockp != NULL; lockp = &(*lockp)->fl_next) |
| 141 | |
Christoph Hellwig | 26bcbf9 | 2006-03-20 13:44:40 -0500 | [diff] [blame] | 142 | static LIST_HEAD(file_lock_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | static LIST_HEAD(blocked_list); |
Arnd Bergmann | 72f98e7 | 2010-10-27 21:39:58 +0200 | [diff] [blame] | 144 | static DEFINE_SPINLOCK(file_lock_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 146 | /* |
| 147 | * Protects the two list heads above, plus the inode->i_flock list |
| 148 | * FIXME: should use a spinlock, once lockd and ceph are ready. |
| 149 | */ |
| 150 | void lock_flocks(void) |
| 151 | { |
Arnd Bergmann | 72f98e7 | 2010-10-27 21:39:58 +0200 | [diff] [blame] | 152 | spin_lock(&file_lock_lock); |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 153 | } |
| 154 | EXPORT_SYMBOL_GPL(lock_flocks); |
| 155 | |
| 156 | void unlock_flocks(void) |
| 157 | { |
Arnd Bergmann | 72f98e7 | 2010-10-27 21:39:58 +0200 | [diff] [blame] | 158 | spin_unlock(&file_lock_lock); |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 159 | } |
| 160 | EXPORT_SYMBOL_GPL(unlock_flocks); |
| 161 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 162 | static struct kmem_cache *filelock_cache __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
| 164 | /* Allocate an empty lock structure. */ |
Arnd Bergmann | c5b1f0d | 2010-10-27 15:46:08 +0200 | [diff] [blame] | 165 | struct file_lock *locks_alloc_lock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | { |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 167 | return kmem_cache_alloc(filelock_cache, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | } |
Arnd Bergmann | c5b1f0d | 2010-10-27 15:46:08 +0200 | [diff] [blame] | 169 | EXPORT_SYMBOL_GPL(locks_alloc_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
Felix Blyakher | a9e61e2 | 2009-03-31 15:12:56 -0500 | [diff] [blame] | 171 | void locks_release_private(struct file_lock *fl) |
Trond Myklebust | 47831f3 | 2006-03-20 13:44:05 -0500 | [diff] [blame] | 172 | { |
| 173 | if (fl->fl_ops) { |
| 174 | if (fl->fl_ops->fl_release_private) |
| 175 | fl->fl_ops->fl_release_private(fl); |
| 176 | fl->fl_ops = NULL; |
| 177 | } |
| 178 | if (fl->fl_lmops) { |
| 179 | if (fl->fl_lmops->fl_release_private) |
| 180 | fl->fl_lmops->fl_release_private(fl); |
| 181 | fl->fl_lmops = NULL; |
| 182 | } |
| 183 | |
| 184 | } |
Felix Blyakher | a9e61e2 | 2009-03-31 15:12:56 -0500 | [diff] [blame] | 185 | EXPORT_SYMBOL_GPL(locks_release_private); |
Trond Myklebust | 47831f3 | 2006-03-20 13:44:05 -0500 | [diff] [blame] | 186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | /* Free a lock which is not in use. */ |
J. Bruce Fields | 05fa313 | 2010-10-30 17:31:15 -0400 | [diff] [blame] | 188 | void locks_free_lock(struct file_lock *fl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
Miklos Szeredi | 5ce2964 | 2006-03-31 02:30:29 -0800 | [diff] [blame] | 190 | BUG_ON(waitqueue_active(&fl->fl_wait)); |
| 191 | BUG_ON(!list_empty(&fl->fl_block)); |
| 192 | BUG_ON(!list_empty(&fl->fl_link)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
Trond Myklebust | 47831f3 | 2006-03-20 13:44:05 -0500 | [diff] [blame] | 194 | locks_release_private(fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | kmem_cache_free(filelock_cache, fl); |
| 196 | } |
J. Bruce Fields | 05fa313 | 2010-10-30 17:31:15 -0400 | [diff] [blame] | 197 | EXPORT_SYMBOL(locks_free_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
| 199 | void locks_init_lock(struct file_lock *fl) |
| 200 | { |
| 201 | INIT_LIST_HEAD(&fl->fl_link); |
| 202 | INIT_LIST_HEAD(&fl->fl_block); |
| 203 | init_waitqueue_head(&fl->fl_wait); |
| 204 | fl->fl_next = NULL; |
| 205 | fl->fl_fasync = NULL; |
| 206 | fl->fl_owner = NULL; |
| 207 | fl->fl_pid = 0; |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 208 | fl->fl_nspid = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | fl->fl_file = NULL; |
| 210 | fl->fl_flags = 0; |
| 211 | fl->fl_type = 0; |
| 212 | fl->fl_start = fl->fl_end = 0; |
| 213 | fl->fl_ops = NULL; |
| 214 | fl->fl_lmops = NULL; |
| 215 | } |
| 216 | |
| 217 | EXPORT_SYMBOL(locks_init_lock); |
| 218 | |
| 219 | /* |
| 220 | * Initialises the fields of the file lock which are invariant for |
| 221 | * free file_locks. |
| 222 | */ |
Alexey Dobriyan | 51cc506 | 2008-07-25 19:45:34 -0700 | [diff] [blame] | 223 | static void init_once(void *foo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | { |
| 225 | struct file_lock *lock = (struct file_lock *) foo; |
| 226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | locks_init_lock(lock); |
| 228 | } |
| 229 | |
Trond Myklebust | 47831f3 | 2006-03-20 13:44:05 -0500 | [diff] [blame] | 230 | static void locks_copy_private(struct file_lock *new, struct file_lock *fl) |
| 231 | { |
| 232 | if (fl->fl_ops) { |
| 233 | if (fl->fl_ops->fl_copy_lock) |
| 234 | fl->fl_ops->fl_copy_lock(new, fl); |
| 235 | new->fl_ops = fl->fl_ops; |
| 236 | } |
Christoph Hellwig | bb8430a | 2010-10-31 08:35:31 -0400 | [diff] [blame] | 237 | if (fl->fl_lmops) |
Trond Myklebust | 47831f3 | 2006-03-20 13:44:05 -0500 | [diff] [blame] | 238 | new->fl_lmops = fl->fl_lmops; |
Trond Myklebust | 47831f3 | 2006-03-20 13:44:05 -0500 | [diff] [blame] | 239 | } |
| 240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | /* |
| 242 | * Initialize a new lock from an existing file_lock structure. |
| 243 | */ |
J. Bruce Fields | 1a747ee | 2008-04-24 10:08:22 -0400 | [diff] [blame] | 244 | void __locks_copy_lock(struct file_lock *new, const struct file_lock *fl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | { |
| 246 | new->fl_owner = fl->fl_owner; |
| 247 | new->fl_pid = fl->fl_pid; |
Trond Myklebust | 0996905 | 2006-03-20 13:44:38 -0500 | [diff] [blame] | 248 | new->fl_file = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | new->fl_flags = fl->fl_flags; |
| 250 | new->fl_type = fl->fl_type; |
| 251 | new->fl_start = fl->fl_start; |
| 252 | new->fl_end = fl->fl_end; |
Trond Myklebust | 0996905 | 2006-03-20 13:44:38 -0500 | [diff] [blame] | 253 | new->fl_ops = NULL; |
| 254 | new->fl_lmops = NULL; |
| 255 | } |
Roland Dreier | 3dd7b71 | 2008-04-25 15:32:51 -0700 | [diff] [blame] | 256 | EXPORT_SYMBOL(__locks_copy_lock); |
Trond Myklebust | 0996905 | 2006-03-20 13:44:38 -0500 | [diff] [blame] | 257 | |
| 258 | void locks_copy_lock(struct file_lock *new, struct file_lock *fl) |
| 259 | { |
| 260 | locks_release_private(new); |
| 261 | |
| 262 | __locks_copy_lock(new, fl); |
| 263 | new->fl_file = fl->fl_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | new->fl_ops = fl->fl_ops; |
| 265 | new->fl_lmops = fl->fl_lmops; |
Trond Myklebust | 47831f3 | 2006-03-20 13:44:05 -0500 | [diff] [blame] | 266 | |
| 267 | locks_copy_private(new, fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | EXPORT_SYMBOL(locks_copy_lock); |
| 271 | |
| 272 | static inline int flock_translate_cmd(int cmd) { |
| 273 | if (cmd & LOCK_MAND) |
| 274 | return cmd & (LOCK_MAND | LOCK_RW); |
| 275 | switch (cmd) { |
| 276 | case LOCK_SH: |
| 277 | return F_RDLCK; |
| 278 | case LOCK_EX: |
| 279 | return F_WRLCK; |
| 280 | case LOCK_UN: |
| 281 | return F_UNLCK; |
| 282 | } |
| 283 | return -EINVAL; |
| 284 | } |
| 285 | |
| 286 | /* Fill in a file_lock structure with an appropriate FLOCK lock. */ |
| 287 | static int flock_make_lock(struct file *filp, struct file_lock **lock, |
| 288 | unsigned int cmd) |
| 289 | { |
| 290 | struct file_lock *fl; |
| 291 | int type = flock_translate_cmd(cmd); |
| 292 | if (type < 0) |
| 293 | return type; |
| 294 | |
| 295 | fl = locks_alloc_lock(); |
| 296 | if (fl == NULL) |
| 297 | return -ENOMEM; |
| 298 | |
| 299 | fl->fl_file = filp; |
| 300 | fl->fl_pid = current->tgid; |
| 301 | fl->fl_flags = FL_FLOCK; |
| 302 | fl->fl_type = type; |
| 303 | fl->fl_end = OFFSET_MAX; |
| 304 | |
| 305 | *lock = fl; |
| 306 | return 0; |
| 307 | } |
| 308 | |
| 309 | static int assign_type(struct file_lock *fl, int type) |
| 310 | { |
| 311 | switch (type) { |
| 312 | case F_RDLCK: |
| 313 | case F_WRLCK: |
| 314 | case F_UNLCK: |
| 315 | fl->fl_type = type; |
| 316 | break; |
| 317 | default: |
| 318 | return -EINVAL; |
| 319 | } |
| 320 | return 0; |
| 321 | } |
| 322 | |
| 323 | /* Verify a "struct flock" and copy it to a "struct file_lock" as a POSIX |
| 324 | * style lock. |
| 325 | */ |
| 326 | static int flock_to_posix_lock(struct file *filp, struct file_lock *fl, |
| 327 | struct flock *l) |
| 328 | { |
| 329 | off_t start, end; |
| 330 | |
| 331 | switch (l->l_whence) { |
Josef 'Jeff' Sipek | f5579f8 | 2006-09-30 23:27:35 -0700 | [diff] [blame] | 332 | case SEEK_SET: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | start = 0; |
| 334 | break; |
Josef 'Jeff' Sipek | f5579f8 | 2006-09-30 23:27:35 -0700 | [diff] [blame] | 335 | case SEEK_CUR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | start = filp->f_pos; |
| 337 | break; |
Josef 'Jeff' Sipek | f5579f8 | 2006-09-30 23:27:35 -0700 | [diff] [blame] | 338 | case SEEK_END: |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 339 | start = i_size_read(filp->f_path.dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | break; |
| 341 | default: |
| 342 | return -EINVAL; |
| 343 | } |
| 344 | |
| 345 | /* POSIX-1996 leaves the case l->l_len < 0 undefined; |
| 346 | POSIX-2001 defines it. */ |
| 347 | start += l->l_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | if (start < 0) |
| 349 | return -EINVAL; |
Trond Myklebust | 4c780a4 | 2005-10-18 14:20:21 -0700 | [diff] [blame] | 350 | fl->fl_end = OFFSET_MAX; |
| 351 | if (l->l_len > 0) { |
| 352 | end = start + l->l_len - 1; |
| 353 | fl->fl_end = end; |
| 354 | } else if (l->l_len < 0) { |
| 355 | end = start - 1; |
| 356 | fl->fl_end = end; |
| 357 | start += l->l_len; |
| 358 | if (start < 0) |
| 359 | return -EINVAL; |
| 360 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | fl->fl_start = start; /* we record the absolute position */ |
Trond Myklebust | 4c780a4 | 2005-10-18 14:20:21 -0700 | [diff] [blame] | 362 | if (fl->fl_end < fl->fl_start) |
| 363 | return -EOVERFLOW; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
| 365 | fl->fl_owner = current->files; |
| 366 | fl->fl_pid = current->tgid; |
| 367 | fl->fl_file = filp; |
| 368 | fl->fl_flags = FL_POSIX; |
| 369 | fl->fl_ops = NULL; |
| 370 | fl->fl_lmops = NULL; |
| 371 | |
| 372 | return assign_type(fl, l->l_type); |
| 373 | } |
| 374 | |
| 375 | #if BITS_PER_LONG == 32 |
| 376 | static int flock64_to_posix_lock(struct file *filp, struct file_lock *fl, |
| 377 | struct flock64 *l) |
| 378 | { |
| 379 | loff_t start; |
| 380 | |
| 381 | switch (l->l_whence) { |
Josef 'Jeff' Sipek | f5579f8 | 2006-09-30 23:27:35 -0700 | [diff] [blame] | 382 | case SEEK_SET: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | start = 0; |
| 384 | break; |
Josef 'Jeff' Sipek | f5579f8 | 2006-09-30 23:27:35 -0700 | [diff] [blame] | 385 | case SEEK_CUR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | start = filp->f_pos; |
| 387 | break; |
Josef 'Jeff' Sipek | f5579f8 | 2006-09-30 23:27:35 -0700 | [diff] [blame] | 388 | case SEEK_END: |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 389 | start = i_size_read(filp->f_path.dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | break; |
| 391 | default: |
| 392 | return -EINVAL; |
| 393 | } |
| 394 | |
Trond Myklebust | 4c780a4 | 2005-10-18 14:20:21 -0700 | [diff] [blame] | 395 | start += l->l_start; |
| 396 | if (start < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | return -EINVAL; |
Trond Myklebust | 4c780a4 | 2005-10-18 14:20:21 -0700 | [diff] [blame] | 398 | fl->fl_end = OFFSET_MAX; |
| 399 | if (l->l_len > 0) { |
| 400 | fl->fl_end = start + l->l_len - 1; |
| 401 | } else if (l->l_len < 0) { |
| 402 | fl->fl_end = start - 1; |
| 403 | start += l->l_len; |
| 404 | if (start < 0) |
| 405 | return -EINVAL; |
| 406 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | fl->fl_start = start; /* we record the absolute position */ |
Trond Myklebust | 4c780a4 | 2005-10-18 14:20:21 -0700 | [diff] [blame] | 408 | if (fl->fl_end < fl->fl_start) |
| 409 | return -EOVERFLOW; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
| 411 | fl->fl_owner = current->files; |
| 412 | fl->fl_pid = current->tgid; |
| 413 | fl->fl_file = filp; |
| 414 | fl->fl_flags = FL_POSIX; |
| 415 | fl->fl_ops = NULL; |
| 416 | fl->fl_lmops = NULL; |
| 417 | |
| 418 | switch (l->l_type) { |
| 419 | case F_RDLCK: |
| 420 | case F_WRLCK: |
| 421 | case F_UNLCK: |
| 422 | fl->fl_type = l->l_type; |
| 423 | break; |
| 424 | default: |
| 425 | return -EINVAL; |
| 426 | } |
| 427 | |
| 428 | return (0); |
| 429 | } |
| 430 | #endif |
| 431 | |
| 432 | /* default lease lock manager operations */ |
| 433 | static void lease_break_callback(struct file_lock *fl) |
| 434 | { |
| 435 | kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG); |
| 436 | } |
| 437 | |
| 438 | static void lease_release_private_callback(struct file_lock *fl) |
| 439 | { |
| 440 | if (!fl->fl_file) |
| 441 | return; |
| 442 | |
| 443 | f_delown(fl->fl_file); |
| 444 | fl->fl_file->f_owner.signum = 0; |
| 445 | } |
| 446 | |
Adrian Bunk | 75c96f8 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 447 | static int lease_mylease_callback(struct file_lock *fl, struct file_lock *try) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | { |
| 449 | return fl->fl_file == try->fl_file; |
| 450 | } |
| 451 | |
Alexey Dobriyan | 7b02196 | 2009-09-21 17:01:12 -0700 | [diff] [blame] | 452 | static const struct lock_manager_operations lease_manager_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | .fl_break = lease_break_callback, |
| 454 | .fl_release_private = lease_release_private_callback, |
| 455 | .fl_mylease = lease_mylease_callback, |
| 456 | .fl_change = lease_modify, |
| 457 | }; |
| 458 | |
| 459 | /* |
| 460 | * Initialize a lease, use the default lock manager operations |
| 461 | */ |
| 462 | static int lease_init(struct file *filp, int type, struct file_lock *fl) |
| 463 | { |
Trond Myklebust | 75dff55 | 2006-05-07 23:02:42 -0400 | [diff] [blame] | 464 | if (assign_type(fl, type) != 0) |
| 465 | return -EINVAL; |
| 466 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | fl->fl_owner = current->files; |
| 468 | fl->fl_pid = current->tgid; |
| 469 | |
| 470 | fl->fl_file = filp; |
| 471 | fl->fl_flags = FL_LEASE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | fl->fl_start = 0; |
| 473 | fl->fl_end = OFFSET_MAX; |
| 474 | fl->fl_ops = NULL; |
| 475 | fl->fl_lmops = &lease_manager_ops; |
| 476 | return 0; |
| 477 | } |
| 478 | |
| 479 | /* Allocate a file_lock initialised to this type of lease */ |
J. Bruce Fields | e32b8ee | 2007-03-01 14:34:35 -0500 | [diff] [blame] | 480 | static struct file_lock *lease_alloc(struct file *filp, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | { |
| 482 | struct file_lock *fl = locks_alloc_lock(); |
Trond Myklebust | 75dff55 | 2006-05-07 23:02:42 -0400 | [diff] [blame] | 483 | int error = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | |
| 485 | if (fl == NULL) |
J. Bruce Fields | e32b8ee | 2007-03-01 14:34:35 -0500 | [diff] [blame] | 486 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
| 488 | error = lease_init(filp, type, fl); |
Trond Myklebust | 75dff55 | 2006-05-07 23:02:42 -0400 | [diff] [blame] | 489 | if (error) { |
| 490 | locks_free_lock(fl); |
J. Bruce Fields | e32b8ee | 2007-03-01 14:34:35 -0500 | [diff] [blame] | 491 | return ERR_PTR(error); |
Trond Myklebust | 75dff55 | 2006-05-07 23:02:42 -0400 | [diff] [blame] | 492 | } |
J. Bruce Fields | e32b8ee | 2007-03-01 14:34:35 -0500 | [diff] [blame] | 493 | return fl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | } |
| 495 | |
| 496 | /* Check if two locks overlap each other. |
| 497 | */ |
| 498 | static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2) |
| 499 | { |
| 500 | return ((fl1->fl_end >= fl2->fl_start) && |
| 501 | (fl2->fl_end >= fl1->fl_start)); |
| 502 | } |
| 503 | |
| 504 | /* |
| 505 | * Check whether two locks have the same owner. |
| 506 | */ |
Matt Mackall | 33443c4 | 2006-01-08 01:05:22 -0800 | [diff] [blame] | 507 | static int posix_same_owner(struct file_lock *fl1, struct file_lock *fl2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | { |
| 509 | if (fl1->fl_lmops && fl1->fl_lmops->fl_compare_owner) |
| 510 | return fl2->fl_lmops == fl1->fl_lmops && |
| 511 | fl1->fl_lmops->fl_compare_owner(fl1, fl2); |
| 512 | return fl1->fl_owner == fl2->fl_owner; |
| 513 | } |
| 514 | |
| 515 | /* Remove waiter from blocker's block list. |
| 516 | * When blocker ends up pointing to itself then the list is empty. |
| 517 | */ |
Matt Mackall | 33443c4 | 2006-01-08 01:05:22 -0800 | [diff] [blame] | 518 | static void __locks_delete_block(struct file_lock *waiter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | { |
| 520 | list_del_init(&waiter->fl_block); |
| 521 | list_del_init(&waiter->fl_link); |
| 522 | waiter->fl_next = NULL; |
| 523 | } |
| 524 | |
| 525 | /* |
| 526 | */ |
| 527 | static void locks_delete_block(struct file_lock *waiter) |
| 528 | { |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 529 | lock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | __locks_delete_block(waiter); |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 531 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | /* Insert waiter into blocker's block list. |
| 535 | * We use a circular list so that processes can be easily woken up in |
| 536 | * the order they blocked. The documentation doesn't require this but |
| 537 | * it seems like the reasonable thing to do. |
| 538 | */ |
| 539 | static void locks_insert_block(struct file_lock *blocker, |
| 540 | struct file_lock *waiter) |
| 541 | { |
J. Bruce Fields | 6dc0fe8 | 2006-03-26 01:37:24 -0800 | [diff] [blame] | 542 | BUG_ON(!list_empty(&waiter->fl_block)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | list_add_tail(&waiter->fl_block, &blocker->fl_block); |
| 544 | waiter->fl_next = blocker; |
| 545 | if (IS_POSIX(blocker)) |
| 546 | list_add(&waiter->fl_link, &blocked_list); |
| 547 | } |
| 548 | |
| 549 | /* Wake up processes blocked waiting for blocker. |
| 550 | * If told to wait then schedule the processes until the block list |
| 551 | * is empty, otherwise empty the block list ourselves. |
| 552 | */ |
| 553 | static void locks_wake_up_blocks(struct file_lock *blocker) |
| 554 | { |
| 555 | while (!list_empty(&blocker->fl_block)) { |
Pavel Emelyanov | f0c1cd0 | 2007-09-19 16:44:07 +0400 | [diff] [blame] | 556 | struct file_lock *waiter; |
| 557 | |
| 558 | waiter = list_first_entry(&blocker->fl_block, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | struct file_lock, fl_block); |
| 560 | __locks_delete_block(waiter); |
| 561 | if (waiter->fl_lmops && waiter->fl_lmops->fl_notify) |
| 562 | waiter->fl_lmops->fl_notify(waiter); |
| 563 | else |
| 564 | wake_up(&waiter->fl_wait); |
| 565 | } |
| 566 | } |
| 567 | |
| 568 | /* Insert file lock fl into an inode's lock list at the position indicated |
| 569 | * by pos. At the same time add the lock to the global file lock list. |
| 570 | */ |
| 571 | static void locks_insert_lock(struct file_lock **pos, struct file_lock *fl) |
| 572 | { |
| 573 | list_add(&fl->fl_link, &file_lock_list); |
| 574 | |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 575 | fl->fl_nspid = get_pid(task_tgid(current)); |
| 576 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | /* insert into file's list */ |
| 578 | fl->fl_next = *pos; |
| 579 | *pos = fl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | } |
| 581 | |
| 582 | /* |
| 583 | * Delete a lock and then free it. |
| 584 | * Wake up processes that are blocked waiting for this lock, |
| 585 | * notify the FS that the lock has been cleared and |
| 586 | * finally free the lock. |
| 587 | */ |
| 588 | static void locks_delete_lock(struct file_lock **thisfl_p) |
| 589 | { |
| 590 | struct file_lock *fl = *thisfl_p; |
| 591 | |
| 592 | *thisfl_p = fl->fl_next; |
| 593 | fl->fl_next = NULL; |
| 594 | list_del_init(&fl->fl_link); |
| 595 | |
| 596 | fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync); |
| 597 | if (fl->fl_fasync != NULL) { |
| 598 | printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync); |
| 599 | fl->fl_fasync = NULL; |
| 600 | } |
| 601 | |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 602 | if (fl->fl_nspid) { |
| 603 | put_pid(fl->fl_nspid); |
| 604 | fl->fl_nspid = NULL; |
| 605 | } |
| 606 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | locks_wake_up_blocks(fl); |
| 608 | locks_free_lock(fl); |
| 609 | } |
| 610 | |
| 611 | /* Determine if lock sys_fl blocks lock caller_fl. Common functionality |
| 612 | * checks for shared/exclusive status of overlapping locks. |
| 613 | */ |
| 614 | static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl) |
| 615 | { |
| 616 | if (sys_fl->fl_type == F_WRLCK) |
| 617 | return 1; |
| 618 | if (caller_fl->fl_type == F_WRLCK) |
| 619 | return 1; |
| 620 | return 0; |
| 621 | } |
| 622 | |
| 623 | /* Determine if lock sys_fl blocks lock caller_fl. POSIX specific |
| 624 | * checking before calling the locks_conflict(). |
| 625 | */ |
| 626 | static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl) |
| 627 | { |
| 628 | /* POSIX locks owned by the same process do not conflict with |
| 629 | * each other. |
| 630 | */ |
| 631 | if (!IS_POSIX(sys_fl) || posix_same_owner(caller_fl, sys_fl)) |
| 632 | return (0); |
| 633 | |
| 634 | /* Check whether they overlap */ |
| 635 | if (!locks_overlap(caller_fl, sys_fl)) |
| 636 | return 0; |
| 637 | |
| 638 | return (locks_conflict(caller_fl, sys_fl)); |
| 639 | } |
| 640 | |
| 641 | /* Determine if lock sys_fl blocks lock caller_fl. FLOCK specific |
| 642 | * checking before calling the locks_conflict(). |
| 643 | */ |
| 644 | static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl) |
| 645 | { |
| 646 | /* FLOCK locks referring to the same filp do not conflict with |
| 647 | * each other. |
| 648 | */ |
| 649 | if (!IS_FLOCK(sys_fl) || (caller_fl->fl_file == sys_fl->fl_file)) |
| 650 | return (0); |
| 651 | if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND)) |
| 652 | return 0; |
| 653 | |
| 654 | return (locks_conflict(caller_fl, sys_fl)); |
| 655 | } |
| 656 | |
J. Bruce Fields | 6d34ac1 | 2007-05-11 16:09:32 -0400 | [diff] [blame] | 657 | void |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 658 | posix_test_lock(struct file *filp, struct file_lock *fl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | { |
| 660 | struct file_lock *cfl; |
| 661 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 662 | lock_flocks(); |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 663 | for (cfl = filp->f_path.dentry->d_inode->i_flock; cfl; cfl = cfl->fl_next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | if (!IS_POSIX(cfl)) |
| 665 | continue; |
J. Bruce Fields | b842e24 | 2007-05-10 19:02:07 -0400 | [diff] [blame] | 666 | if (posix_locks_conflict(fl, cfl)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | break; |
| 668 | } |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 669 | if (cfl) { |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 670 | __locks_copy_lock(fl, cfl); |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 671 | if (cfl->fl_nspid) |
Pavel Emelyanov | 6c5f3e7 | 2008-02-08 04:19:20 -0800 | [diff] [blame] | 672 | fl->fl_pid = pid_vnr(cfl->fl_nspid); |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 673 | } else |
J. Bruce Fields | 129a84d | 2007-05-10 18:38:43 -0400 | [diff] [blame] | 674 | fl->fl_type = F_UNLCK; |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 675 | unlock_flocks(); |
J. Bruce Fields | 6d34ac1 | 2007-05-11 16:09:32 -0400 | [diff] [blame] | 676 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | EXPORT_SYMBOL(posix_test_lock); |
| 679 | |
J. Bruce Fields | b533184 | 2007-10-26 18:05:40 -0400 | [diff] [blame] | 680 | /* |
| 681 | * Deadlock detection: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | * |
J. Bruce Fields | b533184 | 2007-10-26 18:05:40 -0400 | [diff] [blame] | 683 | * We attempt to detect deadlocks that are due purely to posix file |
| 684 | * locks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | * |
J. Bruce Fields | b533184 | 2007-10-26 18:05:40 -0400 | [diff] [blame] | 686 | * We assume that a task can be waiting for at most one lock at a time. |
| 687 | * So for any acquired lock, the process holding that lock may be |
| 688 | * waiting on at most one other lock. That lock in turns may be held by |
| 689 | * someone waiting for at most one other lock. Given a requested lock |
| 690 | * caller_fl which is about to wait for a conflicting lock block_fl, we |
| 691 | * follow this chain of waiters to ensure we are not about to create a |
| 692 | * cycle. |
J. Bruce Fields | 97855b4 | 2007-10-30 11:20:02 -0400 | [diff] [blame] | 693 | * |
J. Bruce Fields | b533184 | 2007-10-26 18:05:40 -0400 | [diff] [blame] | 694 | * Since we do this before we ever put a process to sleep on a lock, we |
| 695 | * are ensured that there is never a cycle; that is what guarantees that |
| 696 | * the while() loop in posix_locks_deadlock() eventually completes. |
| 697 | * |
| 698 | * Note: the above assumption may not be true when handling lock |
| 699 | * requests from a broken NFS client. It may also fail in the presence |
| 700 | * of tasks (such as posix threads) sharing the same open file table. |
| 701 | * |
| 702 | * To handle those cases, we just bail out after a few iterations. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | */ |
J. Bruce Fields | 97855b4 | 2007-10-30 11:20:02 -0400 | [diff] [blame] | 704 | |
| 705 | #define MAX_DEADLK_ITERATIONS 10 |
| 706 | |
J. Bruce Fields | b533184 | 2007-10-26 18:05:40 -0400 | [diff] [blame] | 707 | /* Find a lock that the owner of the given block_fl is blocking on. */ |
| 708 | static struct file_lock *what_owner_is_waiting_for(struct file_lock *block_fl) |
| 709 | { |
| 710 | struct file_lock *fl; |
| 711 | |
| 712 | list_for_each_entry(fl, &blocked_list, fl_link) { |
| 713 | if (posix_same_owner(fl, block_fl)) |
| 714 | return fl->fl_next; |
| 715 | } |
| 716 | return NULL; |
| 717 | } |
| 718 | |
Adrian Bunk | b0904e1 | 2006-06-23 02:05:13 -0700 | [diff] [blame] | 719 | static int posix_locks_deadlock(struct file_lock *caller_fl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | struct file_lock *block_fl) |
| 721 | { |
J. Bruce Fields | 97855b4 | 2007-10-30 11:20:02 -0400 | [diff] [blame] | 722 | int i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | |
J. Bruce Fields | b533184 | 2007-10-26 18:05:40 -0400 | [diff] [blame] | 724 | while ((block_fl = what_owner_is_waiting_for(block_fl))) { |
| 725 | if (i++ > MAX_DEADLK_ITERATIONS) |
| 726 | return 0; |
| 727 | if (posix_same_owner(caller_fl, block_fl)) |
| 728 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | } |
| 730 | return 0; |
| 731 | } |
| 732 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | /* Try to create a FLOCK lock on filp. We always insert new FLOCK locks |
J. Bruce Fields | 02888f4 | 2007-09-12 15:45:07 -0400 | [diff] [blame] | 734 | * after any leases, but before any posix locks. |
Trond Myklebust | f475ae9 | 2006-06-29 16:38:32 -0400 | [diff] [blame] | 735 | * |
| 736 | * Note that if called with an FL_EXISTS argument, the caller may determine |
| 737 | * whether or not a lock was successfully freed by testing the return |
| 738 | * value for -ENOENT. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | */ |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 740 | static int flock_lock_file(struct file *filp, struct file_lock *request) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | { |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 742 | struct file_lock *new_fl = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | struct file_lock **before; |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 744 | struct inode * inode = filp->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | int error = 0; |
| 746 | int found = 0; |
| 747 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 748 | if (!(request->fl_flags & FL_ACCESS) && (request->fl_type != F_UNLCK)) { |
| 749 | new_fl = locks_alloc_lock(); |
| 750 | if (!new_fl) |
| 751 | return -ENOMEM; |
| 752 | } |
| 753 | |
| 754 | lock_flocks(); |
Trond Myklebust | f07f18d | 2006-06-29 16:38:37 -0400 | [diff] [blame] | 755 | if (request->fl_flags & FL_ACCESS) |
| 756 | goto find_conflict; |
Pavel Emelyanov | 84d535a | 2007-09-11 16:38:13 +0400 | [diff] [blame] | 757 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | for_each_lock(inode, before) { |
| 759 | struct file_lock *fl = *before; |
| 760 | if (IS_POSIX(fl)) |
| 761 | break; |
| 762 | if (IS_LEASE(fl)) |
| 763 | continue; |
| 764 | if (filp != fl->fl_file) |
| 765 | continue; |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 766 | if (request->fl_type == fl->fl_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | goto out; |
| 768 | found = 1; |
| 769 | locks_delete_lock(before); |
| 770 | break; |
| 771 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | |
Trond Myklebust | f475ae9 | 2006-06-29 16:38:32 -0400 | [diff] [blame] | 773 | if (request->fl_type == F_UNLCK) { |
| 774 | if ((request->fl_flags & FL_EXISTS) && !found) |
| 775 | error = -ENOENT; |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 776 | goto out; |
Trond Myklebust | f475ae9 | 2006-06-29 16:38:32 -0400 | [diff] [blame] | 777 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
| 779 | /* |
| 780 | * If a higher-priority process was blocked on the old file lock, |
| 781 | * give it the opportunity to lock the file. |
| 782 | */ |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 783 | if (found) { |
| 784 | unlock_flocks(); |
Frederic Weisbecker | def01bc | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 785 | cond_resched(); |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 786 | lock_flocks(); |
| 787 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | |
Trond Myklebust | f07f18d | 2006-06-29 16:38:37 -0400 | [diff] [blame] | 789 | find_conflict: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | for_each_lock(inode, before) { |
| 791 | struct file_lock *fl = *before; |
| 792 | if (IS_POSIX(fl)) |
| 793 | break; |
| 794 | if (IS_LEASE(fl)) |
| 795 | continue; |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 796 | if (!flock_locks_conflict(request, fl)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | continue; |
| 798 | error = -EAGAIN; |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 799 | if (!(request->fl_flags & FL_SLEEP)) |
| 800 | goto out; |
| 801 | error = FILE_LOCK_DEFERRED; |
| 802 | locks_insert_block(fl, request); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | goto out; |
| 804 | } |
Trond Myklebust | f07f18d | 2006-06-29 16:38:37 -0400 | [diff] [blame] | 805 | if (request->fl_flags & FL_ACCESS) |
| 806 | goto out; |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 807 | locks_copy_lock(new_fl, request); |
Pavel Emelyanov | 0e2f6db | 2007-09-11 15:24:01 -0700 | [diff] [blame] | 808 | locks_insert_lock(before, new_fl); |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 809 | new_fl = NULL; |
Kirill Korotaev | 9cedc19 | 2006-06-14 17:59:35 +0400 | [diff] [blame] | 810 | error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | |
| 812 | out: |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 813 | unlock_flocks(); |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 814 | if (new_fl) |
| 815 | locks_free_lock(new_fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | return error; |
| 817 | } |
| 818 | |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 819 | static int __posix_lock_file(struct inode *inode, struct file_lock *request, struct file_lock *conflock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | { |
| 821 | struct file_lock *fl; |
Miklos Szeredi | 39005d0 | 2006-06-23 02:05:10 -0700 | [diff] [blame] | 822 | struct file_lock *new_fl = NULL; |
| 823 | struct file_lock *new_fl2 = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | struct file_lock *left = NULL; |
| 825 | struct file_lock *right = NULL; |
| 826 | struct file_lock **before; |
| 827 | int error, added = 0; |
| 828 | |
| 829 | /* |
| 830 | * We may need two file_lock structures for this operation, |
| 831 | * so we get them in advance to avoid races. |
Miklos Szeredi | 39005d0 | 2006-06-23 02:05:10 -0700 | [diff] [blame] | 832 | * |
| 833 | * In some cases we can be sure, that no new locks will be needed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | */ |
Miklos Szeredi | 39005d0 | 2006-06-23 02:05:10 -0700 | [diff] [blame] | 835 | if (!(request->fl_flags & FL_ACCESS) && |
| 836 | (request->fl_type != F_UNLCK || |
| 837 | request->fl_start != 0 || request->fl_end != OFFSET_MAX)) { |
| 838 | new_fl = locks_alloc_lock(); |
| 839 | new_fl2 = locks_alloc_lock(); |
| 840 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 842 | lock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | if (request->fl_type != F_UNLCK) { |
| 844 | for_each_lock(inode, before) { |
J. Bruce Fields | 526985b | 2006-11-14 16:54:36 -0500 | [diff] [blame] | 845 | fl = *before; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | if (!IS_POSIX(fl)) |
| 847 | continue; |
| 848 | if (!posix_locks_conflict(request, fl)) |
| 849 | continue; |
Andy Adamson | 5842add | 2006-03-26 01:37:26 -0800 | [diff] [blame] | 850 | if (conflock) |
J. Bruce Fields | 1a747ee | 2008-04-24 10:08:22 -0400 | [diff] [blame] | 851 | __locks_copy_lock(conflock, fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | error = -EAGAIN; |
| 853 | if (!(request->fl_flags & FL_SLEEP)) |
| 854 | goto out; |
| 855 | error = -EDEADLK; |
| 856 | if (posix_locks_deadlock(request, fl)) |
| 857 | goto out; |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 858 | error = FILE_LOCK_DEFERRED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | locks_insert_block(fl, request); |
| 860 | goto out; |
| 861 | } |
| 862 | } |
| 863 | |
| 864 | /* If we're just looking for a conflict, we're done. */ |
| 865 | error = 0; |
| 866 | if (request->fl_flags & FL_ACCESS) |
| 867 | goto out; |
| 868 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | * Find the first old lock with the same owner as the new lock. |
| 871 | */ |
| 872 | |
| 873 | before = &inode->i_flock; |
| 874 | |
| 875 | /* First skip locks owned by other processes. */ |
| 876 | while ((fl = *before) && (!IS_POSIX(fl) || |
| 877 | !posix_same_owner(request, fl))) { |
| 878 | before = &fl->fl_next; |
| 879 | } |
| 880 | |
| 881 | /* Process locks with this owner. */ |
| 882 | while ((fl = *before) && posix_same_owner(request, fl)) { |
| 883 | /* Detect adjacent or overlapping regions (if same lock type) |
| 884 | */ |
| 885 | if (request->fl_type == fl->fl_type) { |
Olaf Kirch | 449231d | 2005-08-25 16:25:35 -0700 | [diff] [blame] | 886 | /* In all comparisons of start vs end, use |
| 887 | * "start - 1" rather than "end + 1". If end |
| 888 | * is OFFSET_MAX, end + 1 will become negative. |
| 889 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | if (fl->fl_end < request->fl_start - 1) |
| 891 | goto next_lock; |
| 892 | /* If the next lock in the list has entirely bigger |
| 893 | * addresses than the new one, insert the lock here. |
| 894 | */ |
Olaf Kirch | 449231d | 2005-08-25 16:25:35 -0700 | [diff] [blame] | 895 | if (fl->fl_start - 1 > request->fl_end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | break; |
| 897 | |
| 898 | /* If we come here, the new and old lock are of the |
| 899 | * same type and adjacent or overlapping. Make one |
| 900 | * lock yielding from the lower start address of both |
| 901 | * locks to the higher end address. |
| 902 | */ |
| 903 | if (fl->fl_start > request->fl_start) |
| 904 | fl->fl_start = request->fl_start; |
| 905 | else |
| 906 | request->fl_start = fl->fl_start; |
| 907 | if (fl->fl_end < request->fl_end) |
| 908 | fl->fl_end = request->fl_end; |
| 909 | else |
| 910 | request->fl_end = fl->fl_end; |
| 911 | if (added) { |
| 912 | locks_delete_lock(before); |
| 913 | continue; |
| 914 | } |
| 915 | request = fl; |
| 916 | added = 1; |
| 917 | } |
| 918 | else { |
| 919 | /* Processing for different lock types is a bit |
| 920 | * more complex. |
| 921 | */ |
| 922 | if (fl->fl_end < request->fl_start) |
| 923 | goto next_lock; |
| 924 | if (fl->fl_start > request->fl_end) |
| 925 | break; |
| 926 | if (request->fl_type == F_UNLCK) |
| 927 | added = 1; |
| 928 | if (fl->fl_start < request->fl_start) |
| 929 | left = fl; |
| 930 | /* If the next lock in the list has a higher end |
| 931 | * address than the new one, insert the new one here. |
| 932 | */ |
| 933 | if (fl->fl_end > request->fl_end) { |
| 934 | right = fl; |
| 935 | break; |
| 936 | } |
| 937 | if (fl->fl_start >= request->fl_start) { |
| 938 | /* The new lock completely replaces an old |
| 939 | * one (This may happen several times). |
| 940 | */ |
| 941 | if (added) { |
| 942 | locks_delete_lock(before); |
| 943 | continue; |
| 944 | } |
| 945 | /* Replace the old lock with the new one. |
| 946 | * Wake up anybody waiting for the old one, |
| 947 | * as the change in lock type might satisfy |
| 948 | * their needs. |
| 949 | */ |
| 950 | locks_wake_up_blocks(fl); |
| 951 | fl->fl_start = request->fl_start; |
| 952 | fl->fl_end = request->fl_end; |
| 953 | fl->fl_type = request->fl_type; |
Trond Myklebust | 47831f3 | 2006-03-20 13:44:05 -0500 | [diff] [blame] | 954 | locks_release_private(fl); |
| 955 | locks_copy_private(fl, request); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | request = fl; |
| 957 | added = 1; |
| 958 | } |
| 959 | } |
| 960 | /* Go on to next lock. |
| 961 | */ |
| 962 | next_lock: |
| 963 | before = &fl->fl_next; |
| 964 | } |
| 965 | |
Miklos Szeredi | 0d9a490 | 2006-06-23 02:05:09 -0700 | [diff] [blame] | 966 | /* |
| 967 | * The above code only modifies existing locks in case of |
| 968 | * merging or replacing. If new lock(s) need to be inserted |
| 969 | * all modifications are done bellow this, so it's safe yet to |
| 970 | * bail out. |
| 971 | */ |
| 972 | error = -ENOLCK; /* "no luck" */ |
| 973 | if (right && left == right && !new_fl2) |
| 974 | goto out; |
| 975 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | error = 0; |
| 977 | if (!added) { |
Trond Myklebust | f475ae9 | 2006-06-29 16:38:32 -0400 | [diff] [blame] | 978 | if (request->fl_type == F_UNLCK) { |
| 979 | if (request->fl_flags & FL_EXISTS) |
| 980 | error = -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | goto out; |
Trond Myklebust | f475ae9 | 2006-06-29 16:38:32 -0400 | [diff] [blame] | 982 | } |
Miklos Szeredi | 0d9a490 | 2006-06-23 02:05:09 -0700 | [diff] [blame] | 983 | |
| 984 | if (!new_fl) { |
| 985 | error = -ENOLCK; |
| 986 | goto out; |
| 987 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | locks_copy_lock(new_fl, request); |
| 989 | locks_insert_lock(before, new_fl); |
| 990 | new_fl = NULL; |
| 991 | } |
| 992 | if (right) { |
| 993 | if (left == right) { |
| 994 | /* The new lock breaks the old one in two pieces, |
| 995 | * so we have to use the second new lock. |
| 996 | */ |
| 997 | left = new_fl2; |
| 998 | new_fl2 = NULL; |
| 999 | locks_copy_lock(left, right); |
| 1000 | locks_insert_lock(before, left); |
| 1001 | } |
| 1002 | right->fl_start = request->fl_end + 1; |
| 1003 | locks_wake_up_blocks(right); |
| 1004 | } |
| 1005 | if (left) { |
| 1006 | left->fl_end = request->fl_start - 1; |
| 1007 | locks_wake_up_blocks(left); |
| 1008 | } |
| 1009 | out: |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1010 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | /* |
| 1012 | * Free any unused locks. |
| 1013 | */ |
| 1014 | if (new_fl) |
| 1015 | locks_free_lock(new_fl); |
| 1016 | if (new_fl2) |
| 1017 | locks_free_lock(new_fl2); |
| 1018 | return error; |
| 1019 | } |
| 1020 | |
| 1021 | /** |
| 1022 | * posix_lock_file - Apply a POSIX-style lock to a file |
| 1023 | * @filp: The file to apply the lock to |
| 1024 | * @fl: The lock to be applied |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1025 | * @conflock: Place to return a copy of the conflicting lock, if found. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | * |
| 1027 | * Add a POSIX style lock to a file. |
| 1028 | * We merge adjacent & overlapping locks whenever possible. |
| 1029 | * POSIX locks are sorted by owner task, then by starting address |
Trond Myklebust | f475ae9 | 2006-06-29 16:38:32 -0400 | [diff] [blame] | 1030 | * |
| 1031 | * Note that if called with an FL_EXISTS argument, the caller may determine |
| 1032 | * whether or not a lock was successfully freed by testing the return |
| 1033 | * value for -ENOENT. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | */ |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1035 | int posix_lock_file(struct file *filp, struct file_lock *fl, |
Andy Adamson | 5842add | 2006-03-26 01:37:26 -0800 | [diff] [blame] | 1036 | struct file_lock *conflock) |
| 1037 | { |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1038 | return __posix_lock_file(filp->f_path.dentry->d_inode, fl, conflock); |
Andy Adamson | 5842add | 2006-03-26 01:37:26 -0800 | [diff] [blame] | 1039 | } |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1040 | EXPORT_SYMBOL(posix_lock_file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | |
| 1042 | /** |
| 1043 | * posix_lock_file_wait - Apply a POSIX-style lock to a file |
| 1044 | * @filp: The file to apply the lock to |
| 1045 | * @fl: The lock to be applied |
| 1046 | * |
| 1047 | * Add a POSIX style lock to a file. |
| 1048 | * We merge adjacent & overlapping locks whenever possible. |
| 1049 | * POSIX locks are sorted by owner task, then by starting address |
| 1050 | */ |
| 1051 | int posix_lock_file_wait(struct file *filp, struct file_lock *fl) |
| 1052 | { |
| 1053 | int error; |
| 1054 | might_sleep (); |
| 1055 | for (;;) { |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1056 | error = posix_lock_file(filp, fl, NULL); |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1057 | if (error != FILE_LOCK_DEFERRED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | break; |
| 1059 | error = wait_event_interruptible(fl->fl_wait, !fl->fl_next); |
| 1060 | if (!error) |
| 1061 | continue; |
| 1062 | |
| 1063 | locks_delete_block(fl); |
| 1064 | break; |
| 1065 | } |
| 1066 | return error; |
| 1067 | } |
| 1068 | EXPORT_SYMBOL(posix_lock_file_wait); |
| 1069 | |
| 1070 | /** |
| 1071 | * locks_mandatory_locked - Check for an active lock |
| 1072 | * @inode: the file to check |
| 1073 | * |
| 1074 | * Searches the inode's list of locks to find any POSIX locks which conflict. |
| 1075 | * This function is called from locks_verify_locked() only. |
| 1076 | */ |
| 1077 | int locks_mandatory_locked(struct inode *inode) |
| 1078 | { |
| 1079 | fl_owner_t owner = current->files; |
| 1080 | struct file_lock *fl; |
| 1081 | |
| 1082 | /* |
| 1083 | * Search the lock list for this inode for any POSIX locks. |
| 1084 | */ |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1085 | lock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) { |
| 1087 | if (!IS_POSIX(fl)) |
| 1088 | continue; |
| 1089 | if (fl->fl_owner != owner) |
| 1090 | break; |
| 1091 | } |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1092 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | return fl ? -EAGAIN : 0; |
| 1094 | } |
| 1095 | |
| 1096 | /** |
| 1097 | * locks_mandatory_area - Check for a conflicting lock |
| 1098 | * @read_write: %FLOCK_VERIFY_WRITE for exclusive access, %FLOCK_VERIFY_READ |
| 1099 | * for shared |
| 1100 | * @inode: the file to check |
| 1101 | * @filp: how the file was opened (if it was) |
| 1102 | * @offset: start of area to check |
| 1103 | * @count: length of area to check |
| 1104 | * |
| 1105 | * Searches the inode's list of locks to find any POSIX locks which conflict. |
| 1106 | * This function is called from rw_verify_area() and |
| 1107 | * locks_verify_truncate(). |
| 1108 | */ |
| 1109 | int locks_mandatory_area(int read_write, struct inode *inode, |
| 1110 | struct file *filp, loff_t offset, |
| 1111 | size_t count) |
| 1112 | { |
| 1113 | struct file_lock fl; |
| 1114 | int error; |
| 1115 | |
| 1116 | locks_init_lock(&fl); |
| 1117 | fl.fl_owner = current->files; |
| 1118 | fl.fl_pid = current->tgid; |
| 1119 | fl.fl_file = filp; |
| 1120 | fl.fl_flags = FL_POSIX | FL_ACCESS; |
| 1121 | if (filp && !(filp->f_flags & O_NONBLOCK)) |
| 1122 | fl.fl_flags |= FL_SLEEP; |
| 1123 | fl.fl_type = (read_write == FLOCK_VERIFY_WRITE) ? F_WRLCK : F_RDLCK; |
| 1124 | fl.fl_start = offset; |
| 1125 | fl.fl_end = offset + count - 1; |
| 1126 | |
| 1127 | for (;;) { |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1128 | error = __posix_lock_file(inode, &fl, NULL); |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1129 | if (error != FILE_LOCK_DEFERRED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | break; |
| 1131 | error = wait_event_interruptible(fl.fl_wait, !fl.fl_next); |
| 1132 | if (!error) { |
| 1133 | /* |
| 1134 | * If we've been sleeping someone might have |
| 1135 | * changed the permissions behind our back. |
| 1136 | */ |
Pavel Emelyanov | a16877c | 2007-10-01 14:41:11 -0700 | [diff] [blame] | 1137 | if (__mandatory_lock(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | continue; |
| 1139 | } |
| 1140 | |
| 1141 | locks_delete_block(&fl); |
| 1142 | break; |
| 1143 | } |
| 1144 | |
| 1145 | return error; |
| 1146 | } |
| 1147 | |
| 1148 | EXPORT_SYMBOL(locks_mandatory_area); |
| 1149 | |
| 1150 | /* We already had a lease on this file; just change its type */ |
| 1151 | int lease_modify(struct file_lock **before, int arg) |
| 1152 | { |
| 1153 | struct file_lock *fl = *before; |
| 1154 | int error = assign_type(fl, arg); |
| 1155 | |
| 1156 | if (error) |
| 1157 | return error; |
| 1158 | locks_wake_up_blocks(fl); |
| 1159 | if (arg == F_UNLCK) |
| 1160 | locks_delete_lock(before); |
| 1161 | return 0; |
| 1162 | } |
| 1163 | |
| 1164 | EXPORT_SYMBOL(lease_modify); |
| 1165 | |
| 1166 | static void time_out_leases(struct inode *inode) |
| 1167 | { |
| 1168 | struct file_lock **before; |
| 1169 | struct file_lock *fl; |
| 1170 | |
| 1171 | before = &inode->i_flock; |
| 1172 | while ((fl = *before) && IS_LEASE(fl) && (fl->fl_type & F_INPROGRESS)) { |
| 1173 | if ((fl->fl_break_time == 0) |
| 1174 | || time_before(jiffies, fl->fl_break_time)) { |
| 1175 | before = &fl->fl_next; |
| 1176 | continue; |
| 1177 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | lease_modify(before, fl->fl_type & ~F_INPROGRESS); |
| 1179 | if (fl == *before) /* lease_modify may have freed fl */ |
| 1180 | before = &fl->fl_next; |
| 1181 | } |
| 1182 | } |
| 1183 | |
| 1184 | /** |
| 1185 | * __break_lease - revoke all outstanding leases on file |
| 1186 | * @inode: the inode of the file to return |
| 1187 | * @mode: the open mode (read or write) |
| 1188 | * |
david m. richter | 87250dd | 2007-05-09 16:10:27 -0400 | [diff] [blame] | 1189 | * break_lease (inlined for speed) has checked there already is at least |
| 1190 | * some kind of lock (maybe a lease) on this file. Leases are broken on |
| 1191 | * a call to open() or truncate(). This function can sleep unless you |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | * specified %O_NONBLOCK to your open(). |
| 1193 | */ |
| 1194 | int __break_lease(struct inode *inode, unsigned int mode) |
| 1195 | { |
| 1196 | int error = 0, future; |
| 1197 | struct file_lock *new_fl, *flock; |
| 1198 | struct file_lock *fl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | unsigned long break_time; |
| 1200 | int i_have_this_lease = 0; |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 1201 | int want_write = (mode & O_ACCMODE) != O_RDONLY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 1203 | new_fl = lease_alloc(NULL, want_write ? F_WRLCK : F_RDLCK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1205 | lock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | |
| 1207 | time_out_leases(inode); |
| 1208 | |
| 1209 | flock = inode->i_flock; |
| 1210 | if ((flock == NULL) || !IS_LEASE(flock)) |
| 1211 | goto out; |
| 1212 | |
| 1213 | for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) |
| 1214 | if (fl->fl_owner == current->files) |
| 1215 | i_have_this_lease = 1; |
| 1216 | |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 1217 | if (want_write) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | /* If we want write access, we have to revoke any lease. */ |
| 1219 | future = F_UNLCK | F_INPROGRESS; |
| 1220 | } else if (flock->fl_type & F_INPROGRESS) { |
| 1221 | /* If the lease is already being broken, we just leave it */ |
| 1222 | future = flock->fl_type; |
| 1223 | } else if (flock->fl_type & F_WRLCK) { |
| 1224 | /* Downgrade the exclusive lease to a read-only lease. */ |
| 1225 | future = F_RDLCK | F_INPROGRESS; |
| 1226 | } else { |
| 1227 | /* the existing lease was read-only, so we can read too. */ |
| 1228 | goto out; |
| 1229 | } |
| 1230 | |
J. Bruce Fields | e32b8ee | 2007-03-01 14:34:35 -0500 | [diff] [blame] | 1231 | if (IS_ERR(new_fl) && !i_have_this_lease |
| 1232 | && ((mode & O_NONBLOCK) == 0)) { |
| 1233 | error = PTR_ERR(new_fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | goto out; |
| 1235 | } |
| 1236 | |
| 1237 | break_time = 0; |
| 1238 | if (lease_break_time > 0) { |
| 1239 | break_time = jiffies + lease_break_time * HZ; |
| 1240 | if (break_time == 0) |
| 1241 | break_time++; /* so that 0 means no break time */ |
| 1242 | } |
| 1243 | |
| 1244 | for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) { |
| 1245 | if (fl->fl_type != future) { |
| 1246 | fl->fl_type = future; |
| 1247 | fl->fl_break_time = break_time; |
| 1248 | /* lease must have lmops break callback */ |
| 1249 | fl->fl_lmops->fl_break(fl); |
| 1250 | } |
| 1251 | } |
| 1252 | |
| 1253 | if (i_have_this_lease || (mode & O_NONBLOCK)) { |
| 1254 | error = -EWOULDBLOCK; |
| 1255 | goto out; |
| 1256 | } |
| 1257 | |
| 1258 | restart: |
| 1259 | break_time = flock->fl_break_time; |
| 1260 | if (break_time != 0) { |
| 1261 | break_time -= jiffies; |
| 1262 | if (break_time == 0) |
| 1263 | break_time++; |
| 1264 | } |
Matthew Wilcox | 4321e01 | 2008-01-14 21:28:30 -0700 | [diff] [blame] | 1265 | locks_insert_block(flock, new_fl); |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1266 | unlock_flocks(); |
Matthew Wilcox | 4321e01 | 2008-01-14 21:28:30 -0700 | [diff] [blame] | 1267 | error = wait_event_interruptible_timeout(new_fl->fl_wait, |
| 1268 | !new_fl->fl_next, break_time); |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1269 | lock_flocks(); |
Matthew Wilcox | 4321e01 | 2008-01-14 21:28:30 -0700 | [diff] [blame] | 1270 | __locks_delete_block(new_fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | if (error >= 0) { |
| 1272 | if (error == 0) |
| 1273 | time_out_leases(inode); |
| 1274 | /* Wait for the next lease that has not been broken yet */ |
| 1275 | for (flock = inode->i_flock; flock && IS_LEASE(flock); |
| 1276 | flock = flock->fl_next) { |
| 1277 | if (flock->fl_type & F_INPROGRESS) |
| 1278 | goto restart; |
| 1279 | } |
| 1280 | error = 0; |
| 1281 | } |
| 1282 | |
| 1283 | out: |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1284 | unlock_flocks(); |
J. Bruce Fields | e32b8ee | 2007-03-01 14:34:35 -0500 | [diff] [blame] | 1285 | if (!IS_ERR(new_fl)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | locks_free_lock(new_fl); |
| 1287 | return error; |
| 1288 | } |
| 1289 | |
| 1290 | EXPORT_SYMBOL(__break_lease); |
| 1291 | |
| 1292 | /** |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 1293 | * lease_get_mtime - get the last modified time of an inode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | * @inode: the inode |
| 1295 | * @time: pointer to a timespec which will contain the last modified time |
| 1296 | * |
| 1297 | * This is to force NFS clients to flush their caches for files with |
| 1298 | * exclusive leases. The justification is that if someone has an |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 1299 | * exclusive lease, then they could be modifying it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | */ |
| 1301 | void lease_get_mtime(struct inode *inode, struct timespec *time) |
| 1302 | { |
| 1303 | struct file_lock *flock = inode->i_flock; |
| 1304 | if (flock && IS_LEASE(flock) && (flock->fl_type & F_WRLCK)) |
| 1305 | *time = current_fs_time(inode->i_sb); |
| 1306 | else |
| 1307 | *time = inode->i_mtime; |
| 1308 | } |
| 1309 | |
| 1310 | EXPORT_SYMBOL(lease_get_mtime); |
| 1311 | |
| 1312 | /** |
| 1313 | * fcntl_getlease - Enquire what lease is currently active |
| 1314 | * @filp: the file |
| 1315 | * |
| 1316 | * The value returned by this function will be one of |
| 1317 | * (if no lease break is pending): |
| 1318 | * |
| 1319 | * %F_RDLCK to indicate a shared lease is held. |
| 1320 | * |
| 1321 | * %F_WRLCK to indicate an exclusive lease is held. |
| 1322 | * |
| 1323 | * %F_UNLCK to indicate no lease is held. |
| 1324 | * |
| 1325 | * (if a lease break is pending): |
| 1326 | * |
| 1327 | * %F_RDLCK to indicate an exclusive lease needs to be |
| 1328 | * changed to a shared lease (or removed). |
| 1329 | * |
| 1330 | * %F_UNLCK to indicate the lease needs to be removed. |
| 1331 | * |
| 1332 | * XXX: sfr & willy disagree over whether F_INPROGRESS |
| 1333 | * should be returned to userspace. |
| 1334 | */ |
| 1335 | int fcntl_getlease(struct file *filp) |
| 1336 | { |
| 1337 | struct file_lock *fl; |
| 1338 | int type = F_UNLCK; |
| 1339 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1340 | lock_flocks(); |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 1341 | time_out_leases(filp->f_path.dentry->d_inode); |
| 1342 | for (fl = filp->f_path.dentry->d_inode->i_flock; fl && IS_LEASE(fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | fl = fl->fl_next) { |
| 1344 | if (fl->fl_file == filp) { |
| 1345 | type = fl->fl_type & ~F_INPROGRESS; |
| 1346 | break; |
| 1347 | } |
| 1348 | } |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1349 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | return type; |
| 1351 | } |
| 1352 | |
| 1353 | /** |
Christoph Hellwig | 0af1a45 | 2007-07-31 00:39:22 -0700 | [diff] [blame] | 1354 | * generic_setlease - sets a lease on an open file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | * @filp: file pointer |
| 1356 | * @arg: type of lease to obtain |
| 1357 | * @flp: input - file_lock to use, output - file_lock inserted |
| 1358 | * |
| 1359 | * The (input) flp->fl_lmops->fl_break function is required |
| 1360 | * by break_lease(). |
| 1361 | * |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1362 | * Called with file_lock_lock held. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | */ |
Christoph Hellwig | 0af1a45 | 2007-07-31 00:39:22 -0700 | [diff] [blame] | 1364 | int generic_setlease(struct file *filp, long arg, struct file_lock **flp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | { |
KAMBAROV, ZAUR | 7eaae28 | 2005-07-07 17:57:06 -0700 | [diff] [blame] | 1366 | struct file_lock *fl, **before, **my_before = NULL, *lease; |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 1367 | struct dentry *dentry = filp->f_path.dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | struct inode *inode = dentry->d_inode; |
| 1369 | int error, rdlease_count = 0, wrlease_count = 0; |
| 1370 | |
J. Bruce Fields | 096657b | 2010-10-30 17:31:14 -0400 | [diff] [blame] | 1371 | lease = *flp; |
| 1372 | |
| 1373 | error = -EACCES; |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 1374 | if ((current_fsuid() != inode->i_uid) && !capable(CAP_LEASE)) |
J. Bruce Fields | 096657b | 2010-10-30 17:31:14 -0400 | [diff] [blame] | 1375 | goto out; |
| 1376 | error = -EINVAL; |
J. Bruce Fields | 6d5e8b0 | 2007-05-31 17:03:46 -0400 | [diff] [blame] | 1377 | if (!S_ISREG(inode->i_mode)) |
J. Bruce Fields | 096657b | 2010-10-30 17:31:14 -0400 | [diff] [blame] | 1378 | goto out; |
J. Bruce Fields | 6d5e8b0 | 2007-05-31 17:03:46 -0400 | [diff] [blame] | 1379 | error = security_file_lock(filp, arg); |
| 1380 | if (error) |
J. Bruce Fields | 096657b | 2010-10-30 17:31:14 -0400 | [diff] [blame] | 1381 | goto out; |
J. Bruce Fields | 6d5e8b0 | 2007-05-31 17:03:46 -0400 | [diff] [blame] | 1382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | time_out_leases(inode); |
| 1384 | |
J. Bruce Fields | d2ab0b0c | 2007-06-30 12:40:32 -0400 | [diff] [blame] | 1385 | BUG_ON(!(*flp)->fl_lmops->fl_break); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | |
David M. Richter | 288b2fd | 2008-04-23 16:29:00 -0400 | [diff] [blame] | 1387 | if (arg != F_UNLCK) { |
| 1388 | error = -EAGAIN; |
| 1389 | if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0)) |
| 1390 | goto out; |
| 1391 | if ((arg == F_WRLCK) |
| 1392 | && ((atomic_read(&dentry->d_count) > 1) |
| 1393 | || (atomic_read(&inode->i_count) > 1))) |
| 1394 | goto out; |
David M. Richter | 288b2fd | 2008-04-23 16:29:00 -0400 | [diff] [blame] | 1395 | } |
Pavel Emelyanov | 85c5958 | 2007-09-20 12:45:02 +0400 | [diff] [blame] | 1396 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | /* |
| 1398 | * At this point, we know that if there is an exclusive |
| 1399 | * lease on this file, then we hold it on this filp |
| 1400 | * (otherwise our open of this file would have blocked). |
| 1401 | * And if we are trying to acquire an exclusive lease, |
| 1402 | * then the file is not open by anyone (including us) |
| 1403 | * except for this filp. |
| 1404 | */ |
| 1405 | for (before = &inode->i_flock; |
| 1406 | ((fl = *before) != NULL) && IS_LEASE(fl); |
| 1407 | before = &fl->fl_next) { |
| 1408 | if (lease->fl_lmops->fl_mylease(fl, lease)) |
| 1409 | my_before = before; |
| 1410 | else if (fl->fl_type == (F_INPROGRESS | F_UNLCK)) |
| 1411 | /* |
| 1412 | * Someone is in the process of opening this |
| 1413 | * file for writing so we may not take an |
| 1414 | * exclusive lease on it. |
| 1415 | */ |
| 1416 | wrlease_count++; |
| 1417 | else |
| 1418 | rdlease_count++; |
| 1419 | } |
| 1420 | |
David M. Richter | 5fcc60c | 2008-04-23 16:28:59 -0400 | [diff] [blame] | 1421 | error = -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | if ((arg == F_RDLCK && (wrlease_count > 0)) || |
| 1423 | (arg == F_WRLCK && ((rdlease_count + wrlease_count) > 0))) |
| 1424 | goto out; |
| 1425 | |
| 1426 | if (my_before != NULL) { |
| 1427 | error = lease->fl_lmops->fl_change(my_before, arg); |
Christoph Hellwig | 51ee4b8 | 2010-10-31 08:35:10 -0400 | [diff] [blame] | 1428 | if (!error) |
| 1429 | *flp = *my_before; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | goto out; |
| 1431 | } |
| 1432 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | if (arg == F_UNLCK) |
| 1434 | goto out; |
| 1435 | |
| 1436 | error = -EINVAL; |
| 1437 | if (!leases_enable) |
| 1438 | goto out; |
| 1439 | |
Arnd Bergmann | c5b1f0d | 2010-10-27 15:46:08 +0200 | [diff] [blame] | 1440 | locks_insert_lock(before, lease); |
Pavel Emelyanov | 85c5958 | 2007-09-20 12:45:02 +0400 | [diff] [blame] | 1441 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | out: |
| 1444 | return error; |
| 1445 | } |
Christoph Hellwig | 0af1a45 | 2007-07-31 00:39:22 -0700 | [diff] [blame] | 1446 | EXPORT_SYMBOL(generic_setlease); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1447 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1448 | static int __vfs_setlease(struct file *filp, long arg, struct file_lock **lease) |
| 1449 | { |
| 1450 | if (filp->f_op && filp->f_op->setlease) |
| 1451 | return filp->f_op->setlease(filp, arg, lease); |
| 1452 | else |
| 1453 | return generic_setlease(filp, arg, lease); |
| 1454 | } |
| 1455 | |
| 1456 | /** |
J. Bruce Fields | a9933ce | 2007-06-07 17:09:49 -0400 | [diff] [blame] | 1457 | * vfs_setlease - sets a lease on an open file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | * @filp: file pointer |
| 1459 | * @arg: type of lease to obtain |
| 1460 | * @lease: file_lock to use |
| 1461 | * |
| 1462 | * Call this to establish a lease on the file. |
J. Bruce Fields | f9ffed2 | 2006-11-14 15:51:40 -0500 | [diff] [blame] | 1463 | * The (*lease)->fl_lmops->fl_break operation must be set; if not, |
| 1464 | * break_lease will oops! |
| 1465 | * |
| 1466 | * This will call the filesystem's setlease file method, if |
| 1467 | * defined. Note that there is no getlease method; instead, the |
| 1468 | * filesystem setlease method should call back to setlease() to |
| 1469 | * add a lease to the inode's lease list, where fcntl_getlease() can |
| 1470 | * find it. Since fcntl_getlease() only reports whether the current |
| 1471 | * task holds a lease, a cluster filesystem need only do this for |
| 1472 | * leases held by processes on this node. |
| 1473 | * |
| 1474 | * There is also no break_lease method; filesystems that |
Adam Buchbinder | c9404c9 | 2009-12-18 15:40:42 -0500 | [diff] [blame] | 1475 | * handle their own leases should break leases themselves from the |
J. Bruce Fields | f9ffed2 | 2006-11-14 15:51:40 -0500 | [diff] [blame] | 1476 | * filesystem's open, create, and (on truncate) setattr methods. |
| 1477 | * |
| 1478 | * Warning: the only current setlease methods exist only to disable |
| 1479 | * leases in certain cases. More vfs changes may be required to |
| 1480 | * allow a full filesystem lease implementation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | */ |
| 1482 | |
J. Bruce Fields | a9933ce | 2007-06-07 17:09:49 -0400 | [diff] [blame] | 1483 | int vfs_setlease(struct file *filp, long arg, struct file_lock **lease) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | int error; |
| 1486 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1487 | lock_flocks(); |
| 1488 | error = __vfs_setlease(filp, arg, lease); |
| 1489 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1490 | |
| 1491 | return error; |
| 1492 | } |
J. Bruce Fields | a9933ce | 2007-06-07 17:09:49 -0400 | [diff] [blame] | 1493 | EXPORT_SYMBOL_GPL(vfs_setlease); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | |
J. Bruce Fields | 0ceaf6c | 2010-10-30 17:31:13 -0400 | [diff] [blame] | 1495 | static int do_fcntl_delete_lease(struct file *filp) |
| 1496 | { |
| 1497 | struct file_lock fl, *flp = &fl; |
| 1498 | |
| 1499 | lease_init(filp, F_UNLCK, flp); |
| 1500 | |
| 1501 | return vfs_setlease(filp, F_UNLCK, &flp); |
| 1502 | } |
| 1503 | |
| 1504 | static int do_fcntl_add_lease(unsigned int fd, struct file *filp, long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | { |
J. Bruce Fields | 3df057a | 2010-11-03 16:49:44 -0400 | [diff] [blame] | 1506 | struct file_lock *fl, *ret; |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 1507 | struct fasync_struct *new; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | int error; |
| 1509 | |
Arnd Bergmann | c5b1f0d | 2010-10-27 15:46:08 +0200 | [diff] [blame] | 1510 | fl = lease_alloc(filp, arg); |
| 1511 | if (IS_ERR(fl)) |
| 1512 | return PTR_ERR(fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 1514 | new = fasync_alloc(); |
| 1515 | if (!new) { |
| 1516 | locks_free_lock(fl); |
| 1517 | return -ENOMEM; |
| 1518 | } |
J. Bruce Fields | 3df057a | 2010-11-03 16:49:44 -0400 | [diff] [blame] | 1519 | ret = fl; |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1520 | lock_flocks(); |
J. Bruce Fields | 8896b93 | 2010-11-03 18:09:18 -0400 | [diff] [blame] | 1521 | error = __vfs_setlease(filp, arg, &ret); |
Christoph Hellwig | 51ee4b8 | 2010-10-31 08:35:10 -0400 | [diff] [blame] | 1522 | if (error) { |
| 1523 | unlock_flocks(); |
| 1524 | locks_free_lock(fl); |
| 1525 | goto out_free_fasync; |
| 1526 | } |
J. Bruce Fields | 3df057a | 2010-11-03 16:49:44 -0400 | [diff] [blame] | 1527 | if (ret != fl) |
| 1528 | locks_free_lock(fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 1530 | /* |
| 1531 | * fasync_insert_entry() returns the old entry if any. |
| 1532 | * If there was no old entry, then it used 'new' and |
| 1533 | * inserted it into the fasync list. Clear new so that |
| 1534 | * we don't release it here. |
| 1535 | */ |
J. Bruce Fields | 3df057a | 2010-11-03 16:49:44 -0400 | [diff] [blame] | 1536 | if (!fasync_insert_entry(fd, filp, &ret->fl_fasync, new)) |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 1537 | new = NULL; |
| 1538 | |
J. Bruce Fields | 8896b93 | 2010-11-03 18:09:18 -0400 | [diff] [blame] | 1539 | error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0); |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1540 | unlock_flocks(); |
Christoph Hellwig | 51ee4b8 | 2010-10-31 08:35:10 -0400 | [diff] [blame] | 1541 | |
| 1542 | out_free_fasync: |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 1543 | if (new) |
| 1544 | fasync_free(new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1545 | return error; |
| 1546 | } |
| 1547 | |
| 1548 | /** |
J. Bruce Fields | 0ceaf6c | 2010-10-30 17:31:13 -0400 | [diff] [blame] | 1549 | * fcntl_setlease - sets a lease on an open file |
| 1550 | * @fd: open file descriptor |
| 1551 | * @filp: file pointer |
| 1552 | * @arg: type of lease to obtain |
| 1553 | * |
| 1554 | * Call this fcntl to establish a lease on the file. |
| 1555 | * Note that you also need to call %F_SETSIG to |
| 1556 | * receive a signal when the lease is broken. |
| 1557 | */ |
| 1558 | int fcntl_setlease(unsigned int fd, struct file *filp, long arg) |
| 1559 | { |
| 1560 | if (arg == F_UNLCK) |
| 1561 | return do_fcntl_delete_lease(filp); |
| 1562 | return do_fcntl_add_lease(fd, filp, arg); |
| 1563 | } |
| 1564 | |
| 1565 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | * flock_lock_file_wait - Apply a FLOCK-style lock to a file |
| 1567 | * @filp: The file to apply the lock to |
| 1568 | * @fl: The lock to be applied |
| 1569 | * |
| 1570 | * Add a FLOCK style lock to a file. |
| 1571 | */ |
| 1572 | int flock_lock_file_wait(struct file *filp, struct file_lock *fl) |
| 1573 | { |
| 1574 | int error; |
| 1575 | might_sleep(); |
| 1576 | for (;;) { |
| 1577 | error = flock_lock_file(filp, fl); |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1578 | if (error != FILE_LOCK_DEFERRED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | break; |
| 1580 | error = wait_event_interruptible(fl->fl_wait, !fl->fl_next); |
| 1581 | if (!error) |
| 1582 | continue; |
| 1583 | |
| 1584 | locks_delete_block(fl); |
| 1585 | break; |
| 1586 | } |
| 1587 | return error; |
| 1588 | } |
| 1589 | |
| 1590 | EXPORT_SYMBOL(flock_lock_file_wait); |
| 1591 | |
| 1592 | /** |
| 1593 | * sys_flock: - flock() system call. |
| 1594 | * @fd: the file descriptor to lock. |
| 1595 | * @cmd: the type of lock to apply. |
| 1596 | * |
| 1597 | * Apply a %FL_FLOCK style lock to an open file descriptor. |
| 1598 | * The @cmd can be one of |
| 1599 | * |
| 1600 | * %LOCK_SH -- a shared lock. |
| 1601 | * |
| 1602 | * %LOCK_EX -- an exclusive lock. |
| 1603 | * |
| 1604 | * %LOCK_UN -- remove an existing lock. |
| 1605 | * |
| 1606 | * %LOCK_MAND -- a `mandatory' flock. This exists to emulate Windows Share Modes. |
| 1607 | * |
| 1608 | * %LOCK_MAND can be combined with %LOCK_READ or %LOCK_WRITE to allow other |
| 1609 | * processes read and write access respectively. |
| 1610 | */ |
Heiko Carstens | 002c897 | 2009-01-14 14:14:18 +0100 | [diff] [blame] | 1611 | SYSCALL_DEFINE2(flock, unsigned int, fd, unsigned int, cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | { |
| 1613 | struct file *filp; |
| 1614 | struct file_lock *lock; |
| 1615 | int can_sleep, unlock; |
| 1616 | int error; |
| 1617 | |
| 1618 | error = -EBADF; |
| 1619 | filp = fget(fd); |
| 1620 | if (!filp) |
| 1621 | goto out; |
| 1622 | |
| 1623 | can_sleep = !(cmd & LOCK_NB); |
| 1624 | cmd &= ~LOCK_NB; |
| 1625 | unlock = (cmd == LOCK_UN); |
| 1626 | |
Al Viro | aeb5d72 | 2008-09-02 15:28:45 -0400 | [diff] [blame] | 1627 | if (!unlock && !(cmd & LOCK_MAND) && |
| 1628 | !(filp->f_mode & (FMODE_READ|FMODE_WRITE))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | goto out_putf; |
| 1630 | |
| 1631 | error = flock_make_lock(filp, &lock, cmd); |
| 1632 | if (error) |
| 1633 | goto out_putf; |
| 1634 | if (can_sleep) |
| 1635 | lock->fl_flags |= FL_SLEEP; |
| 1636 | |
Sten Spans | 713c0ec | 2009-07-16 09:41:39 +0200 | [diff] [blame] | 1637 | error = security_file_lock(filp, lock->fl_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | if (error) |
| 1639 | goto out_free; |
| 1640 | |
| 1641 | if (filp->f_op && filp->f_op->flock) |
| 1642 | error = filp->f_op->flock(filp, |
| 1643 | (can_sleep) ? F_SETLKW : F_SETLK, |
| 1644 | lock); |
| 1645 | else |
| 1646 | error = flock_lock_file_wait(filp, lock); |
| 1647 | |
| 1648 | out_free: |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 1649 | locks_free_lock(lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | |
| 1651 | out_putf: |
| 1652 | fput(filp); |
| 1653 | out: |
| 1654 | return error; |
| 1655 | } |
| 1656 | |
J. Bruce Fields | 3ee17ab | 2007-02-21 00:58:50 -0500 | [diff] [blame] | 1657 | /** |
| 1658 | * vfs_test_lock - test file byte range lock |
| 1659 | * @filp: The file to test lock for |
J. Bruce Fields | 6924c55 | 2007-05-11 16:22:50 -0400 | [diff] [blame] | 1660 | * @fl: The lock to test; also used to hold result |
J. Bruce Fields | 3ee17ab | 2007-02-21 00:58:50 -0500 | [diff] [blame] | 1661 | * |
| 1662 | * Returns -ERRNO on failure. Indicates presence of conflicting lock by |
| 1663 | * setting conf->fl_type to something other than F_UNLCK. |
| 1664 | */ |
| 1665 | int vfs_test_lock(struct file *filp, struct file_lock *fl) |
| 1666 | { |
| 1667 | if (filp->f_op && filp->f_op->lock) |
| 1668 | return filp->f_op->lock(filp, F_GETLK, fl); |
| 1669 | posix_test_lock(filp, fl); |
| 1670 | return 0; |
| 1671 | } |
| 1672 | EXPORT_SYMBOL_GPL(vfs_test_lock); |
| 1673 | |
J. Bruce Fields | c2fa1b8 | 2007-02-20 16:10:11 -0500 | [diff] [blame] | 1674 | static int posix_lock_to_flock(struct flock *flock, struct file_lock *fl) |
| 1675 | { |
| 1676 | flock->l_pid = fl->fl_pid; |
| 1677 | #if BITS_PER_LONG == 32 |
| 1678 | /* |
| 1679 | * Make sure we can represent the posix lock via |
| 1680 | * legacy 32bit flock. |
| 1681 | */ |
| 1682 | if (fl->fl_start > OFFT_OFFSET_MAX) |
| 1683 | return -EOVERFLOW; |
| 1684 | if (fl->fl_end != OFFSET_MAX && fl->fl_end > OFFT_OFFSET_MAX) |
| 1685 | return -EOVERFLOW; |
| 1686 | #endif |
| 1687 | flock->l_start = fl->fl_start; |
| 1688 | flock->l_len = fl->fl_end == OFFSET_MAX ? 0 : |
| 1689 | fl->fl_end - fl->fl_start + 1; |
| 1690 | flock->l_whence = 0; |
J. Bruce Fields | 129a84d | 2007-05-10 18:38:43 -0400 | [diff] [blame] | 1691 | flock->l_type = fl->fl_type; |
J. Bruce Fields | c2fa1b8 | 2007-02-20 16:10:11 -0500 | [diff] [blame] | 1692 | return 0; |
| 1693 | } |
| 1694 | |
| 1695 | #if BITS_PER_LONG == 32 |
| 1696 | static void posix_lock_to_flock64(struct flock64 *flock, struct file_lock *fl) |
| 1697 | { |
| 1698 | flock->l_pid = fl->fl_pid; |
| 1699 | flock->l_start = fl->fl_start; |
| 1700 | flock->l_len = fl->fl_end == OFFSET_MAX ? 0 : |
| 1701 | fl->fl_end - fl->fl_start + 1; |
| 1702 | flock->l_whence = 0; |
| 1703 | flock->l_type = fl->fl_type; |
| 1704 | } |
| 1705 | #endif |
| 1706 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1707 | /* Report the first existing lock that would conflict with l. |
| 1708 | * This implements the F_GETLK command of fcntl(). |
| 1709 | */ |
| 1710 | int fcntl_getlk(struct file *filp, struct flock __user *l) |
| 1711 | { |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 1712 | struct file_lock file_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | struct flock flock; |
| 1714 | int error; |
| 1715 | |
| 1716 | error = -EFAULT; |
| 1717 | if (copy_from_user(&flock, l, sizeof(flock))) |
| 1718 | goto out; |
| 1719 | error = -EINVAL; |
| 1720 | if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK)) |
| 1721 | goto out; |
| 1722 | |
| 1723 | error = flock_to_posix_lock(filp, &file_lock, &flock); |
| 1724 | if (error) |
| 1725 | goto out; |
| 1726 | |
J. Bruce Fields | 3ee17ab | 2007-02-21 00:58:50 -0500 | [diff] [blame] | 1727 | error = vfs_test_lock(filp, &file_lock); |
| 1728 | if (error) |
| 1729 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1730 | |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 1731 | flock.l_type = file_lock.fl_type; |
| 1732 | if (file_lock.fl_type != F_UNLCK) { |
| 1733 | error = posix_lock_to_flock(&flock, &file_lock); |
J. Bruce Fields | c2fa1b8 | 2007-02-20 16:10:11 -0500 | [diff] [blame] | 1734 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1736 | } |
| 1737 | error = -EFAULT; |
| 1738 | if (!copy_to_user(l, &flock, sizeof(flock))) |
| 1739 | error = 0; |
| 1740 | out: |
| 1741 | return error; |
| 1742 | } |
| 1743 | |
Marc Eshel | 7723ec9 | 2007-01-18 15:08:55 -0500 | [diff] [blame] | 1744 | /** |
| 1745 | * vfs_lock_file - file byte range lock |
| 1746 | * @filp: The file to apply the lock to |
| 1747 | * @cmd: type of locking operation (F_SETLK, F_GETLK, etc.) |
| 1748 | * @fl: The lock to be applied |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1749 | * @conf: Place to return a copy of the conflicting lock, if found. |
| 1750 | * |
| 1751 | * A caller that doesn't care about the conflicting lock may pass NULL |
| 1752 | * as the final argument. |
| 1753 | * |
| 1754 | * If the filesystem defines a private ->lock() method, then @conf will |
| 1755 | * be left unchanged; so a caller that cares should initialize it to |
| 1756 | * some acceptable default. |
Marc Eshel | 2beb661 | 2006-12-05 23:31:28 -0500 | [diff] [blame] | 1757 | * |
| 1758 | * To avoid blocking kernel daemons, such as lockd, that need to acquire POSIX |
| 1759 | * locks, the ->lock() interface may return asynchronously, before the lock has |
| 1760 | * been granted or denied by the underlying filesystem, if (and only if) |
| 1761 | * fl_grant is set. Callers expecting ->lock() to return asynchronously |
| 1762 | * will only use F_SETLK, not F_SETLKW; they will set FL_SLEEP if (and only if) |
| 1763 | * the request is for a blocking lock. When ->lock() does return asynchronously, |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1764 | * it must return FILE_LOCK_DEFERRED, and call ->fl_grant() when the lock |
Marc Eshel | 2beb661 | 2006-12-05 23:31:28 -0500 | [diff] [blame] | 1765 | * request completes. |
| 1766 | * If the request is for non-blocking lock the file system should return |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1767 | * FILE_LOCK_DEFERRED then try to get the lock and call the callback routine |
| 1768 | * with the result. If the request timed out the callback routine will return a |
Marc Eshel | 2beb661 | 2006-12-05 23:31:28 -0500 | [diff] [blame] | 1769 | * nonzero return code and the file system should release the lock. The file |
| 1770 | * system is also responsible to keep a corresponding posix lock when it |
| 1771 | * grants a lock so the VFS can find out which locks are locally held and do |
| 1772 | * the correct lock cleanup when required. |
| 1773 | * The underlying filesystem must not drop the kernel lock or call |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1774 | * ->fl_grant() before returning to the caller with a FILE_LOCK_DEFERRED |
Marc Eshel | 2beb661 | 2006-12-05 23:31:28 -0500 | [diff] [blame] | 1775 | * return code. |
Marc Eshel | 7723ec9 | 2007-01-18 15:08:55 -0500 | [diff] [blame] | 1776 | */ |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1777 | int vfs_lock_file(struct file *filp, unsigned int cmd, struct file_lock *fl, struct file_lock *conf) |
Marc Eshel | 7723ec9 | 2007-01-18 15:08:55 -0500 | [diff] [blame] | 1778 | { |
| 1779 | if (filp->f_op && filp->f_op->lock) |
| 1780 | return filp->f_op->lock(filp, cmd, fl); |
| 1781 | else |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1782 | return posix_lock_file(filp, fl, conf); |
Marc Eshel | 7723ec9 | 2007-01-18 15:08:55 -0500 | [diff] [blame] | 1783 | } |
| 1784 | EXPORT_SYMBOL_GPL(vfs_lock_file); |
| 1785 | |
Miklos Szeredi | b648a6d | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1786 | static int do_lock_file_wait(struct file *filp, unsigned int cmd, |
| 1787 | struct file_lock *fl) |
| 1788 | { |
| 1789 | int error; |
| 1790 | |
| 1791 | error = security_file_lock(filp, fl->fl_type); |
| 1792 | if (error) |
| 1793 | return error; |
| 1794 | |
Miklos Szeredi | 764c76b | 2008-07-25 01:48:58 -0700 | [diff] [blame] | 1795 | for (;;) { |
| 1796 | error = vfs_lock_file(filp, cmd, fl, NULL); |
| 1797 | if (error != FILE_LOCK_DEFERRED) |
Miklos Szeredi | b648a6d | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1798 | break; |
Miklos Szeredi | 764c76b | 2008-07-25 01:48:58 -0700 | [diff] [blame] | 1799 | error = wait_event_interruptible(fl->fl_wait, !fl->fl_next); |
| 1800 | if (!error) |
| 1801 | continue; |
| 1802 | |
| 1803 | locks_delete_block(fl); |
| 1804 | break; |
Miklos Szeredi | b648a6d | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1805 | } |
| 1806 | |
| 1807 | return error; |
| 1808 | } |
| 1809 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | /* Apply the lock described by l to an open file descriptor. |
| 1811 | * This implements both the F_SETLK and F_SETLKW commands of fcntl(). |
| 1812 | */ |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1813 | int fcntl_setlk(unsigned int fd, struct file *filp, unsigned int cmd, |
| 1814 | struct flock __user *l) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | { |
| 1816 | struct file_lock *file_lock = locks_alloc_lock(); |
| 1817 | struct flock flock; |
| 1818 | struct inode *inode; |
Al Viro | 0b2bac2 | 2008-05-06 13:58:34 -0400 | [diff] [blame] | 1819 | struct file *f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1820 | int error; |
| 1821 | |
| 1822 | if (file_lock == NULL) |
| 1823 | return -ENOLCK; |
| 1824 | |
| 1825 | /* |
| 1826 | * This might block, so we do it before checking the inode. |
| 1827 | */ |
| 1828 | error = -EFAULT; |
| 1829 | if (copy_from_user(&flock, l, sizeof(flock))) |
| 1830 | goto out; |
| 1831 | |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 1832 | inode = filp->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | |
| 1834 | /* Don't allow mandatory locks on files that may be memory mapped |
| 1835 | * and shared. |
| 1836 | */ |
Pavel Emelyanov | a16877c | 2007-10-01 14:41:11 -0700 | [diff] [blame] | 1837 | if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | error = -EAGAIN; |
| 1839 | goto out; |
| 1840 | } |
| 1841 | |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1842 | again: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1843 | error = flock_to_posix_lock(filp, file_lock, &flock); |
| 1844 | if (error) |
| 1845 | goto out; |
| 1846 | if (cmd == F_SETLKW) { |
| 1847 | file_lock->fl_flags |= FL_SLEEP; |
| 1848 | } |
| 1849 | |
| 1850 | error = -EBADF; |
| 1851 | switch (flock.l_type) { |
| 1852 | case F_RDLCK: |
| 1853 | if (!(filp->f_mode & FMODE_READ)) |
| 1854 | goto out; |
| 1855 | break; |
| 1856 | case F_WRLCK: |
| 1857 | if (!(filp->f_mode & FMODE_WRITE)) |
| 1858 | goto out; |
| 1859 | break; |
| 1860 | case F_UNLCK: |
| 1861 | break; |
| 1862 | default: |
| 1863 | error = -EINVAL; |
| 1864 | goto out; |
| 1865 | } |
| 1866 | |
Miklos Szeredi | b648a6d | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1867 | error = do_lock_file_wait(filp, cmd, file_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1869 | /* |
| 1870 | * Attempt to detect a close/fcntl race and recover by |
| 1871 | * releasing the lock that was just acquired. |
| 1872 | */ |
Al Viro | 0b2bac2 | 2008-05-06 13:58:34 -0400 | [diff] [blame] | 1873 | /* |
| 1874 | * we need that spin_lock here - it prevents reordering between |
| 1875 | * update of inode->i_flock and check for it done in close(). |
| 1876 | * rcu_read_lock() wouldn't do. |
| 1877 | */ |
| 1878 | spin_lock(¤t->files->file_lock); |
| 1879 | f = fcheck(fd); |
| 1880 | spin_unlock(¤t->files->file_lock); |
| 1881 | if (!error && f != filp && flock.l_type != F_UNLCK) { |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1882 | flock.l_type = F_UNLCK; |
| 1883 | goto again; |
| 1884 | } |
| 1885 | |
| 1886 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | locks_free_lock(file_lock); |
| 1888 | return error; |
| 1889 | } |
| 1890 | |
| 1891 | #if BITS_PER_LONG == 32 |
| 1892 | /* Report the first existing lock that would conflict with l. |
| 1893 | * This implements the F_GETLK command of fcntl(). |
| 1894 | */ |
| 1895 | int fcntl_getlk64(struct file *filp, struct flock64 __user *l) |
| 1896 | { |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 1897 | struct file_lock file_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | struct flock64 flock; |
| 1899 | int error; |
| 1900 | |
| 1901 | error = -EFAULT; |
| 1902 | if (copy_from_user(&flock, l, sizeof(flock))) |
| 1903 | goto out; |
| 1904 | error = -EINVAL; |
| 1905 | if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK)) |
| 1906 | goto out; |
| 1907 | |
| 1908 | error = flock64_to_posix_lock(filp, &file_lock, &flock); |
| 1909 | if (error) |
| 1910 | goto out; |
| 1911 | |
J. Bruce Fields | 3ee17ab | 2007-02-21 00:58:50 -0500 | [diff] [blame] | 1912 | error = vfs_test_lock(filp, &file_lock); |
| 1913 | if (error) |
| 1914 | goto out; |
| 1915 | |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 1916 | flock.l_type = file_lock.fl_type; |
| 1917 | if (file_lock.fl_type != F_UNLCK) |
| 1918 | posix_lock_to_flock64(&flock, &file_lock); |
| 1919 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1920 | error = -EFAULT; |
| 1921 | if (!copy_to_user(l, &flock, sizeof(flock))) |
| 1922 | error = 0; |
| 1923 | |
| 1924 | out: |
| 1925 | return error; |
| 1926 | } |
| 1927 | |
| 1928 | /* Apply the lock described by l to an open file descriptor. |
| 1929 | * This implements both the F_SETLK and F_SETLKW commands of fcntl(). |
| 1930 | */ |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1931 | int fcntl_setlk64(unsigned int fd, struct file *filp, unsigned int cmd, |
| 1932 | struct flock64 __user *l) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | { |
| 1934 | struct file_lock *file_lock = locks_alloc_lock(); |
| 1935 | struct flock64 flock; |
| 1936 | struct inode *inode; |
Al Viro | 0b2bac2 | 2008-05-06 13:58:34 -0400 | [diff] [blame] | 1937 | struct file *f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1938 | int error; |
| 1939 | |
| 1940 | if (file_lock == NULL) |
| 1941 | return -ENOLCK; |
| 1942 | |
| 1943 | /* |
| 1944 | * This might block, so we do it before checking the inode. |
| 1945 | */ |
| 1946 | error = -EFAULT; |
| 1947 | if (copy_from_user(&flock, l, sizeof(flock))) |
| 1948 | goto out; |
| 1949 | |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 1950 | inode = filp->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | |
| 1952 | /* Don't allow mandatory locks on files that may be memory mapped |
| 1953 | * and shared. |
| 1954 | */ |
Pavel Emelyanov | a16877c | 2007-10-01 14:41:11 -0700 | [diff] [blame] | 1955 | if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | error = -EAGAIN; |
| 1957 | goto out; |
| 1958 | } |
| 1959 | |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1960 | again: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | error = flock64_to_posix_lock(filp, file_lock, &flock); |
| 1962 | if (error) |
| 1963 | goto out; |
| 1964 | if (cmd == F_SETLKW64) { |
| 1965 | file_lock->fl_flags |= FL_SLEEP; |
| 1966 | } |
| 1967 | |
| 1968 | error = -EBADF; |
| 1969 | switch (flock.l_type) { |
| 1970 | case F_RDLCK: |
| 1971 | if (!(filp->f_mode & FMODE_READ)) |
| 1972 | goto out; |
| 1973 | break; |
| 1974 | case F_WRLCK: |
| 1975 | if (!(filp->f_mode & FMODE_WRITE)) |
| 1976 | goto out; |
| 1977 | break; |
| 1978 | case F_UNLCK: |
| 1979 | break; |
| 1980 | default: |
| 1981 | error = -EINVAL; |
| 1982 | goto out; |
| 1983 | } |
| 1984 | |
Miklos Szeredi | b648a6d | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1985 | error = do_lock_file_wait(filp, cmd, file_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1986 | |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1987 | /* |
| 1988 | * Attempt to detect a close/fcntl race and recover by |
| 1989 | * releasing the lock that was just acquired. |
| 1990 | */ |
Al Viro | 0b2bac2 | 2008-05-06 13:58:34 -0400 | [diff] [blame] | 1991 | spin_lock(¤t->files->file_lock); |
| 1992 | f = fcheck(fd); |
| 1993 | spin_unlock(¤t->files->file_lock); |
| 1994 | if (!error && f != filp && flock.l_type != F_UNLCK) { |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1995 | flock.l_type = F_UNLCK; |
| 1996 | goto again; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | } |
| 1998 | |
| 1999 | out: |
| 2000 | locks_free_lock(file_lock); |
| 2001 | return error; |
| 2002 | } |
| 2003 | #endif /* BITS_PER_LONG == 32 */ |
| 2004 | |
| 2005 | /* |
| 2006 | * This function is called when the file is being removed |
| 2007 | * from the task's fd array. POSIX locks belonging to this task |
| 2008 | * are deleted at this time. |
| 2009 | */ |
| 2010 | void locks_remove_posix(struct file *filp, fl_owner_t owner) |
| 2011 | { |
Miklos Szeredi | ff7b86b | 2006-06-23 02:05:11 -0700 | [diff] [blame] | 2012 | struct file_lock lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | |
| 2014 | /* |
| 2015 | * If there are no locks held on this file, we don't need to call |
| 2016 | * posix_lock_file(). Another process could be setting a lock on this |
| 2017 | * file at the same time, but we wouldn't remove that lock anyway. |
| 2018 | */ |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 2019 | if (!filp->f_path.dentry->d_inode->i_flock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | return; |
| 2021 | |
| 2022 | lock.fl_type = F_UNLCK; |
Miklos Szeredi | 75e1fcc | 2006-06-23 02:05:12 -0700 | [diff] [blame] | 2023 | lock.fl_flags = FL_POSIX | FL_CLOSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | lock.fl_start = 0; |
| 2025 | lock.fl_end = OFFSET_MAX; |
| 2026 | lock.fl_owner = owner; |
| 2027 | lock.fl_pid = current->tgid; |
| 2028 | lock.fl_file = filp; |
| 2029 | lock.fl_ops = NULL; |
| 2030 | lock.fl_lmops = NULL; |
| 2031 | |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 2032 | vfs_lock_file(filp, F_SETLK, &lock, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2033 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | if (lock.fl_ops && lock.fl_ops->fl_release_private) |
| 2035 | lock.fl_ops->fl_release_private(&lock); |
| 2036 | } |
| 2037 | |
| 2038 | EXPORT_SYMBOL(locks_remove_posix); |
| 2039 | |
| 2040 | /* |
| 2041 | * This function is called on the last close of an open file. |
| 2042 | */ |
| 2043 | void locks_remove_flock(struct file *filp) |
| 2044 | { |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 2045 | struct inode * inode = filp->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | struct file_lock *fl; |
| 2047 | struct file_lock **before; |
| 2048 | |
| 2049 | if (!inode->i_flock) |
| 2050 | return; |
| 2051 | |
| 2052 | if (filp->f_op && filp->f_op->flock) { |
| 2053 | struct file_lock fl = { |
| 2054 | .fl_pid = current->tgid, |
| 2055 | .fl_file = filp, |
| 2056 | .fl_flags = FL_FLOCK, |
| 2057 | .fl_type = F_UNLCK, |
| 2058 | .fl_end = OFFSET_MAX, |
| 2059 | }; |
| 2060 | filp->f_op->flock(filp, F_SETLKW, &fl); |
Trond Myklebust | 80fec4c | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 2061 | if (fl.fl_ops && fl.fl_ops->fl_release_private) |
| 2062 | fl.fl_ops->fl_release_private(&fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | } |
| 2064 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2065 | lock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2066 | before = &inode->i_flock; |
| 2067 | |
| 2068 | while ((fl = *before) != NULL) { |
| 2069 | if (fl->fl_file == filp) { |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 2070 | if (IS_FLOCK(fl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | locks_delete_lock(before); |
| 2072 | continue; |
| 2073 | } |
| 2074 | if (IS_LEASE(fl)) { |
| 2075 | lease_modify(before, F_UNLCK); |
| 2076 | continue; |
| 2077 | } |
| 2078 | /* What? */ |
| 2079 | BUG(); |
| 2080 | } |
| 2081 | before = &fl->fl_next; |
| 2082 | } |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2083 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | } |
| 2085 | |
| 2086 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | * posix_unblock_lock - stop waiting for a file lock |
| 2088 | * @filp: how the file was opened |
| 2089 | * @waiter: the lock which was waiting |
| 2090 | * |
| 2091 | * lockd needs to block waiting for locks. |
| 2092 | */ |
J. Bruce Fields | 64a318e | 2006-01-03 09:55:46 +0100 | [diff] [blame] | 2093 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2094 | posix_unblock_lock(struct file *filp, struct file_lock *waiter) |
| 2095 | { |
J. Bruce Fields | 64a318e | 2006-01-03 09:55:46 +0100 | [diff] [blame] | 2096 | int status = 0; |
| 2097 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2098 | lock_flocks(); |
J. Bruce Fields | 5996a29 | 2006-01-03 09:55:44 +0100 | [diff] [blame] | 2099 | if (waiter->fl_next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | __locks_delete_block(waiter); |
J. Bruce Fields | 64a318e | 2006-01-03 09:55:46 +0100 | [diff] [blame] | 2101 | else |
| 2102 | status = -ENOENT; |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2103 | unlock_flocks(); |
J. Bruce Fields | 64a318e | 2006-01-03 09:55:46 +0100 | [diff] [blame] | 2104 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2105 | } |
| 2106 | |
| 2107 | EXPORT_SYMBOL(posix_unblock_lock); |
| 2108 | |
Marc Eshel | 9b9d2ab | 2007-01-18 17:52:58 -0500 | [diff] [blame] | 2109 | /** |
| 2110 | * vfs_cancel_lock - file byte range unblock lock |
| 2111 | * @filp: The file to apply the unblock to |
| 2112 | * @fl: The lock to be unblocked |
| 2113 | * |
| 2114 | * Used by lock managers to cancel blocked requests |
| 2115 | */ |
| 2116 | int vfs_cancel_lock(struct file *filp, struct file_lock *fl) |
| 2117 | { |
| 2118 | if (filp->f_op && filp->f_op->lock) |
| 2119 | return filp->f_op->lock(filp, F_CANCELLK, fl); |
| 2120 | return 0; |
| 2121 | } |
| 2122 | |
| 2123 | EXPORT_SYMBOL_GPL(vfs_cancel_lock); |
| 2124 | |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2125 | #ifdef CONFIG_PROC_FS |
Alexey Dobriyan | d8ba7a3 | 2008-10-04 22:34:18 +0400 | [diff] [blame] | 2126 | #include <linux/proc_fs.h> |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2127 | #include <linux/seq_file.h> |
| 2128 | |
| 2129 | static void lock_get_status(struct seq_file *f, struct file_lock *fl, |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2130 | loff_t id, char *pfx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | { |
| 2132 | struct inode *inode = NULL; |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 2133 | unsigned int fl_pid; |
| 2134 | |
| 2135 | if (fl->fl_nspid) |
Pavel Emelyanov | 6c5f3e7 | 2008-02-08 04:19:20 -0800 | [diff] [blame] | 2136 | fl_pid = pid_vnr(fl->fl_nspid); |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 2137 | else |
| 2138 | fl_pid = fl->fl_pid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 | |
| 2140 | if (fl->fl_file != NULL) |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 2141 | inode = fl->fl_file->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2143 | seq_printf(f, "%lld:%s ", id, pfx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2144 | if (IS_POSIX(fl)) { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2145 | seq_printf(f, "%6s %s ", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2146 | (fl->fl_flags & FL_ACCESS) ? "ACCESS" : "POSIX ", |
| 2147 | (inode == NULL) ? "*NOINODE*" : |
Pavel Emelyanov | a16877c | 2007-10-01 14:41:11 -0700 | [diff] [blame] | 2148 | mandatory_lock(inode) ? "MANDATORY" : "ADVISORY "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2149 | } else if (IS_FLOCK(fl)) { |
| 2150 | if (fl->fl_type & LOCK_MAND) { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2151 | seq_printf(f, "FLOCK MSNFS "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | } else { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2153 | seq_printf(f, "FLOCK ADVISORY "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2154 | } |
| 2155 | } else if (IS_LEASE(fl)) { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2156 | seq_printf(f, "LEASE "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2157 | if (fl->fl_type & F_INPROGRESS) |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2158 | seq_printf(f, "BREAKING "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | else if (fl->fl_file) |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2160 | seq_printf(f, "ACTIVE "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2161 | else |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2162 | seq_printf(f, "BREAKER "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2163 | } else { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2164 | seq_printf(f, "UNKNOWN UNKNOWN "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2165 | } |
| 2166 | if (fl->fl_type & LOCK_MAND) { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2167 | seq_printf(f, "%s ", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | (fl->fl_type & LOCK_READ) |
| 2169 | ? (fl->fl_type & LOCK_WRITE) ? "RW " : "READ " |
| 2170 | : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE "); |
| 2171 | } else { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2172 | seq_printf(f, "%s ", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | (fl->fl_type & F_INPROGRESS) |
| 2174 | ? (fl->fl_type & F_UNLCK) ? "UNLCK" : "READ " |
| 2175 | : (fl->fl_type & F_WRLCK) ? "WRITE" : "READ "); |
| 2176 | } |
| 2177 | if (inode) { |
| 2178 | #ifdef WE_CAN_BREAK_LSLK_NOW |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 2179 | seq_printf(f, "%d %s:%ld ", fl_pid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | inode->i_sb->s_id, inode->i_ino); |
| 2181 | #else |
| 2182 | /* userspace relies on this representation of dev_t ;-( */ |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 2183 | seq_printf(f, "%d %02x:%02x:%ld ", fl_pid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | MAJOR(inode->i_sb->s_dev), |
| 2185 | MINOR(inode->i_sb->s_dev), inode->i_ino); |
| 2186 | #endif |
| 2187 | } else { |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 2188 | seq_printf(f, "%d <none>:0 ", fl_pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | } |
| 2190 | if (IS_POSIX(fl)) { |
| 2191 | if (fl->fl_end == OFFSET_MAX) |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2192 | seq_printf(f, "%Ld EOF\n", fl->fl_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2193 | else |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2194 | seq_printf(f, "%Ld %Ld\n", fl->fl_start, fl->fl_end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2195 | } else { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2196 | seq_printf(f, "0 EOF\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2197 | } |
| 2198 | } |
| 2199 | |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2200 | static int locks_show(struct seq_file *f, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2202 | struct file_lock *fl, *bfl; |
| 2203 | |
| 2204 | fl = list_entry(v, struct file_lock, fl_link); |
| 2205 | |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2206 | lock_get_status(f, fl, *((loff_t *)f->private), ""); |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2207 | |
| 2208 | list_for_each_entry(bfl, &fl->fl_block, fl_block) |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2209 | lock_get_status(f, bfl, *((loff_t *)f->private), " ->"); |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2210 | |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2211 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2212 | } |
| 2213 | |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2214 | static void *locks_start(struct seq_file *f, loff_t *pos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2215 | { |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2216 | loff_t *p = f->private; |
| 2217 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2218 | lock_flocks(); |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2219 | *p = (*pos + 1); |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2220 | return seq_list_start(&file_lock_list, *pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | } |
| 2222 | |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2223 | static void *locks_next(struct seq_file *f, void *v, loff_t *pos) |
| 2224 | { |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2225 | loff_t *p = f->private; |
| 2226 | ++*p; |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2227 | return seq_list_next(v, &file_lock_list, pos); |
| 2228 | } |
| 2229 | |
| 2230 | static void locks_stop(struct seq_file *f, void *v) |
| 2231 | { |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2232 | unlock_flocks(); |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2233 | } |
| 2234 | |
Alexey Dobriyan | d8ba7a3 | 2008-10-04 22:34:18 +0400 | [diff] [blame] | 2235 | static const struct seq_operations locks_seq_operations = { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2236 | .start = locks_start, |
| 2237 | .next = locks_next, |
| 2238 | .stop = locks_stop, |
| 2239 | .show = locks_show, |
| 2240 | }; |
Alexey Dobriyan | d8ba7a3 | 2008-10-04 22:34:18 +0400 | [diff] [blame] | 2241 | |
| 2242 | static int locks_open(struct inode *inode, struct file *filp) |
| 2243 | { |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2244 | return seq_open_private(filp, &locks_seq_operations, sizeof(loff_t)); |
Alexey Dobriyan | d8ba7a3 | 2008-10-04 22:34:18 +0400 | [diff] [blame] | 2245 | } |
| 2246 | |
| 2247 | static const struct file_operations proc_locks_operations = { |
| 2248 | .open = locks_open, |
| 2249 | .read = seq_read, |
| 2250 | .llseek = seq_lseek, |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2251 | .release = seq_release_private, |
Alexey Dobriyan | d8ba7a3 | 2008-10-04 22:34:18 +0400 | [diff] [blame] | 2252 | }; |
| 2253 | |
| 2254 | static int __init proc_locks_init(void) |
| 2255 | { |
| 2256 | proc_create("locks", 0, NULL, &proc_locks_operations); |
| 2257 | return 0; |
| 2258 | } |
| 2259 | module_init(proc_locks_init); |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2260 | #endif |
| 2261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2262 | /** |
| 2263 | * lock_may_read - checks that the region is free of locks |
| 2264 | * @inode: the inode that is being read |
| 2265 | * @start: the first byte to read |
| 2266 | * @len: the number of bytes to read |
| 2267 | * |
| 2268 | * Emulates Windows locking requirements. Whole-file |
| 2269 | * mandatory locks (share modes) can prohibit a read and |
| 2270 | * byte-range POSIX locks can prohibit a read if they overlap. |
| 2271 | * |
| 2272 | * N.B. this function is only ever called |
| 2273 | * from knfsd and ownership of locks is never checked. |
| 2274 | */ |
| 2275 | int lock_may_read(struct inode *inode, loff_t start, unsigned long len) |
| 2276 | { |
| 2277 | struct file_lock *fl; |
| 2278 | int result = 1; |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2279 | lock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2280 | for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) { |
| 2281 | if (IS_POSIX(fl)) { |
| 2282 | if (fl->fl_type == F_RDLCK) |
| 2283 | continue; |
| 2284 | if ((fl->fl_end < start) || (fl->fl_start > (start + len))) |
| 2285 | continue; |
| 2286 | } else if (IS_FLOCK(fl)) { |
| 2287 | if (!(fl->fl_type & LOCK_MAND)) |
| 2288 | continue; |
| 2289 | if (fl->fl_type & LOCK_READ) |
| 2290 | continue; |
| 2291 | } else |
| 2292 | continue; |
| 2293 | result = 0; |
| 2294 | break; |
| 2295 | } |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2296 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2297 | return result; |
| 2298 | } |
| 2299 | |
| 2300 | EXPORT_SYMBOL(lock_may_read); |
| 2301 | |
| 2302 | /** |
| 2303 | * lock_may_write - checks that the region is free of locks |
| 2304 | * @inode: the inode that is being written |
| 2305 | * @start: the first byte to write |
| 2306 | * @len: the number of bytes to write |
| 2307 | * |
| 2308 | * Emulates Windows locking requirements. Whole-file |
| 2309 | * mandatory locks (share modes) can prohibit a write and |
| 2310 | * byte-range POSIX locks can prohibit a write if they overlap. |
| 2311 | * |
| 2312 | * N.B. this function is only ever called |
| 2313 | * from knfsd and ownership of locks is never checked. |
| 2314 | */ |
| 2315 | int lock_may_write(struct inode *inode, loff_t start, unsigned long len) |
| 2316 | { |
| 2317 | struct file_lock *fl; |
| 2318 | int result = 1; |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2319 | lock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2320 | for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) { |
| 2321 | if (IS_POSIX(fl)) { |
| 2322 | if ((fl->fl_end < start) || (fl->fl_start > (start + len))) |
| 2323 | continue; |
| 2324 | } else if (IS_FLOCK(fl)) { |
| 2325 | if (!(fl->fl_type & LOCK_MAND)) |
| 2326 | continue; |
| 2327 | if (fl->fl_type & LOCK_WRITE) |
| 2328 | continue; |
| 2329 | } else |
| 2330 | continue; |
| 2331 | result = 0; |
| 2332 | break; |
| 2333 | } |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2334 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2335 | return result; |
| 2336 | } |
| 2337 | |
| 2338 | EXPORT_SYMBOL(lock_may_write); |
| 2339 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2340 | static int __init filelock_init(void) |
| 2341 | { |
| 2342 | filelock_cache = kmem_cache_create("file_lock_cache", |
| 2343 | sizeof(struct file_lock), 0, SLAB_PANIC, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 2344 | init_once); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2345 | return 0; |
| 2346 | } |
| 2347 | |
| 2348 | core_initcall(filelock_init); |