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. |
Paul Bolle | 395cf96 | 2011-08-15 02:02:26 +0200 | [diff] [blame] | 63 | * See 'Documentation/filesystems/mandatory-locking.txt' for details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
J. Bruce Fields | ab83fa4 | 2011-07-26 20:10:51 -0400 | [diff] [blame] | 136 | static bool lease_breaking(struct file_lock *fl) |
| 137 | { |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 138 | return fl->fl_flags & (FL_UNLOCK_PENDING | FL_DOWNGRADE_PENDING); |
| 139 | } |
| 140 | |
| 141 | static int target_leasetype(struct file_lock *fl) |
| 142 | { |
| 143 | if (fl->fl_flags & FL_UNLOCK_PENDING) |
| 144 | return F_UNLCK; |
| 145 | if (fl->fl_flags & FL_DOWNGRADE_PENDING) |
| 146 | return F_RDLCK; |
| 147 | return fl->fl_type; |
J. Bruce Fields | ab83fa4 | 2011-07-26 20:10:51 -0400 | [diff] [blame] | 148 | } |
| 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | int leases_enable = 1; |
| 151 | int lease_break_time = 45; |
| 152 | |
| 153 | #define for_each_lock(inode, lockp) \ |
| 154 | for (lockp = &inode->i_flock; *lockp != NULL; lockp = &(*lockp)->fl_next) |
| 155 | |
Jeff Layton | 8897469 | 2013-06-21 08:58:14 -0400 | [diff] [blame^] | 156 | /* The global file_lock_list is only used for displaying /proc/locks. */ |
Christoph Hellwig | 26bcbf9 | 2006-03-20 13:44:40 -0500 | [diff] [blame] | 157 | static LIST_HEAD(file_lock_list); |
Jeff Layton | 8897469 | 2013-06-21 08:58:14 -0400 | [diff] [blame^] | 158 | |
| 159 | /* The blocked_list is used to find POSIX lock loops for deadlock detection. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | static LIST_HEAD(blocked_list); |
Jeff Layton | 8897469 | 2013-06-21 08:58:14 -0400 | [diff] [blame^] | 161 | |
| 162 | /* Protects the two list heads above, plus the inode->i_flock list */ |
Arnd Bergmann | 72f98e7 | 2010-10-27 21:39:58 +0200 | [diff] [blame] | 163 | static DEFINE_SPINLOCK(file_lock_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 165 | void lock_flocks(void) |
| 166 | { |
Arnd Bergmann | 72f98e7 | 2010-10-27 21:39:58 +0200 | [diff] [blame] | 167 | spin_lock(&file_lock_lock); |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 168 | } |
| 169 | EXPORT_SYMBOL_GPL(lock_flocks); |
| 170 | |
| 171 | void unlock_flocks(void) |
| 172 | { |
Arnd Bergmann | 72f98e7 | 2010-10-27 21:39:58 +0200 | [diff] [blame] | 173 | spin_unlock(&file_lock_lock); |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 174 | } |
| 175 | EXPORT_SYMBOL_GPL(unlock_flocks); |
| 176 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 177 | static struct kmem_cache *filelock_cache __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Miklos Szeredi | ee19cc4 | 2011-07-07 13:06:09 +0200 | [diff] [blame] | 179 | static void locks_init_lock_heads(struct file_lock *fl) |
Miklos Szeredi | a51cb91 | 2011-07-06 12:33:55 +0200 | [diff] [blame] | 180 | { |
Miklos Szeredi | ee19cc4 | 2011-07-07 13:06:09 +0200 | [diff] [blame] | 181 | INIT_LIST_HEAD(&fl->fl_link); |
| 182 | INIT_LIST_HEAD(&fl->fl_block); |
| 183 | init_waitqueue_head(&fl->fl_wait); |
Miklos Szeredi | a51cb91 | 2011-07-06 12:33:55 +0200 | [diff] [blame] | 184 | } |
| 185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | /* Allocate an empty lock structure. */ |
Arnd Bergmann | c5b1f0d | 2010-10-27 15:46:08 +0200 | [diff] [blame] | 187 | struct file_lock *locks_alloc_lock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | { |
Miklos Szeredi | ee19cc4 | 2011-07-07 13:06:09 +0200 | [diff] [blame] | 189 | struct file_lock *fl = kmem_cache_zalloc(filelock_cache, GFP_KERNEL); |
Miklos Szeredi | a51cb91 | 2011-07-06 12:33:55 +0200 | [diff] [blame] | 190 | |
| 191 | if (fl) |
Miklos Szeredi | ee19cc4 | 2011-07-07 13:06:09 +0200 | [diff] [blame] | 192 | locks_init_lock_heads(fl); |
Miklos Szeredi | a51cb91 | 2011-07-06 12:33:55 +0200 | [diff] [blame] | 193 | |
| 194 | return fl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | } |
Arnd Bergmann | c5b1f0d | 2010-10-27 15:46:08 +0200 | [diff] [blame] | 196 | EXPORT_SYMBOL_GPL(locks_alloc_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Felix Blyakher | a9e61e2 | 2009-03-31 15:12:56 -0500 | [diff] [blame] | 198 | void locks_release_private(struct file_lock *fl) |
Trond Myklebust | 47831f3 | 2006-03-20 13:44:05 -0500 | [diff] [blame] | 199 | { |
| 200 | if (fl->fl_ops) { |
| 201 | if (fl->fl_ops->fl_release_private) |
| 202 | fl->fl_ops->fl_release_private(fl); |
| 203 | fl->fl_ops = NULL; |
| 204 | } |
J. Bruce Fields | 068535f | 2012-08-01 07:56:16 -0400 | [diff] [blame] | 205 | fl->fl_lmops = NULL; |
Trond Myklebust | 47831f3 | 2006-03-20 13:44:05 -0500 | [diff] [blame] | 206 | |
| 207 | } |
Felix Blyakher | a9e61e2 | 2009-03-31 15:12:56 -0500 | [diff] [blame] | 208 | EXPORT_SYMBOL_GPL(locks_release_private); |
Trond Myklebust | 47831f3 | 2006-03-20 13:44:05 -0500 | [diff] [blame] | 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | /* Free a lock which is not in use. */ |
J. Bruce Fields | 05fa313 | 2010-10-30 17:31:15 -0400 | [diff] [blame] | 211 | void locks_free_lock(struct file_lock *fl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | { |
Miklos Szeredi | 5ce2964 | 2006-03-31 02:30:29 -0800 | [diff] [blame] | 213 | BUG_ON(waitqueue_active(&fl->fl_wait)); |
| 214 | BUG_ON(!list_empty(&fl->fl_block)); |
| 215 | BUG_ON(!list_empty(&fl->fl_link)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
Trond Myklebust | 47831f3 | 2006-03-20 13:44:05 -0500 | [diff] [blame] | 217 | locks_release_private(fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | kmem_cache_free(filelock_cache, fl); |
| 219 | } |
J. Bruce Fields | 05fa313 | 2010-10-30 17:31:15 -0400 | [diff] [blame] | 220 | EXPORT_SYMBOL(locks_free_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | |
| 222 | void locks_init_lock(struct file_lock *fl) |
| 223 | { |
Miklos Szeredi | ee19cc4 | 2011-07-07 13:06:09 +0200 | [diff] [blame] | 224 | memset(fl, 0, sizeof(struct file_lock)); |
| 225 | locks_init_lock_heads(fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | EXPORT_SYMBOL(locks_init_lock); |
| 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 | |
J. Bruce Fields | 0ec4f43 | 2012-07-23 15:17:17 -0400 | [diff] [blame] | 309 | static int assign_type(struct file_lock *fl, long type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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: |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 339 | start = i_size_read(file_inode(filp)); |
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: |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 389 | start = i_size_read(file_inode(filp)); |
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 | |
Namhyung Kim | f32cb53 | 2011-01-17 15:45:59 +0900 | [diff] [blame] | 418 | return assign_type(fl, l->l_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | } |
| 420 | #endif |
| 421 | |
| 422 | /* default lease lock manager operations */ |
| 423 | static void lease_break_callback(struct file_lock *fl) |
| 424 | { |
| 425 | kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG); |
| 426 | } |
| 427 | |
Alexey Dobriyan | 7b02196 | 2009-09-21 17:01:12 -0700 | [diff] [blame] | 428 | static const struct lock_manager_operations lease_manager_ops = { |
J. Bruce Fields | 8fb47a4 | 2011-07-20 20:21:59 -0400 | [diff] [blame] | 429 | .lm_break = lease_break_callback, |
J. Bruce Fields | 8fb47a4 | 2011-07-20 20:21:59 -0400 | [diff] [blame] | 430 | .lm_change = lease_modify, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | }; |
| 432 | |
| 433 | /* |
| 434 | * Initialize a lease, use the default lock manager operations |
| 435 | */ |
J. Bruce Fields | 0ec4f43 | 2012-07-23 15:17:17 -0400 | [diff] [blame] | 436 | static int lease_init(struct file *filp, long type, struct file_lock *fl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | { |
Trond Myklebust | 75dff55 | 2006-05-07 23:02:42 -0400 | [diff] [blame] | 438 | if (assign_type(fl, type) != 0) |
| 439 | return -EINVAL; |
| 440 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | fl->fl_owner = current->files; |
| 442 | fl->fl_pid = current->tgid; |
| 443 | |
| 444 | fl->fl_file = filp; |
| 445 | fl->fl_flags = FL_LEASE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | fl->fl_start = 0; |
| 447 | fl->fl_end = OFFSET_MAX; |
| 448 | fl->fl_ops = NULL; |
| 449 | fl->fl_lmops = &lease_manager_ops; |
| 450 | return 0; |
| 451 | } |
| 452 | |
| 453 | /* Allocate a file_lock initialised to this type of lease */ |
J. Bruce Fields | 0ec4f43 | 2012-07-23 15:17:17 -0400 | [diff] [blame] | 454 | static struct file_lock *lease_alloc(struct file *filp, long type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | { |
| 456 | struct file_lock *fl = locks_alloc_lock(); |
Trond Myklebust | 75dff55 | 2006-05-07 23:02:42 -0400 | [diff] [blame] | 457 | int error = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | |
| 459 | if (fl == NULL) |
J. Bruce Fields | e32b8ee | 2007-03-01 14:34:35 -0500 | [diff] [blame] | 460 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
| 462 | error = lease_init(filp, type, fl); |
Trond Myklebust | 75dff55 | 2006-05-07 23:02:42 -0400 | [diff] [blame] | 463 | if (error) { |
| 464 | locks_free_lock(fl); |
J. Bruce Fields | e32b8ee | 2007-03-01 14:34:35 -0500 | [diff] [blame] | 465 | return ERR_PTR(error); |
Trond Myklebust | 75dff55 | 2006-05-07 23:02:42 -0400 | [diff] [blame] | 466 | } |
J. Bruce Fields | e32b8ee | 2007-03-01 14:34:35 -0500 | [diff] [blame] | 467 | return fl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | } |
| 469 | |
| 470 | /* Check if two locks overlap each other. |
| 471 | */ |
| 472 | static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2) |
| 473 | { |
| 474 | return ((fl1->fl_end >= fl2->fl_start) && |
| 475 | (fl2->fl_end >= fl1->fl_start)); |
| 476 | } |
| 477 | |
| 478 | /* |
| 479 | * Check whether two locks have the same owner. |
| 480 | */ |
Matt Mackall | 33443c4 | 2006-01-08 01:05:22 -0800 | [diff] [blame] | 481 | 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] | 482 | { |
J. Bruce Fields | 8fb47a4 | 2011-07-20 20:21:59 -0400 | [diff] [blame] | 483 | if (fl1->fl_lmops && fl1->fl_lmops->lm_compare_owner) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | return fl2->fl_lmops == fl1->fl_lmops && |
J. Bruce Fields | 8fb47a4 | 2011-07-20 20:21:59 -0400 | [diff] [blame] | 485 | fl1->fl_lmops->lm_compare_owner(fl1, fl2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | return fl1->fl_owner == fl2->fl_owner; |
| 487 | } |
| 488 | |
Jeff Layton | 8897469 | 2013-06-21 08:58:14 -0400 | [diff] [blame^] | 489 | static inline void |
| 490 | locks_insert_global_locks(struct file_lock *fl) |
| 491 | { |
| 492 | list_add_tail(&fl->fl_link, &file_lock_list); |
| 493 | } |
| 494 | |
| 495 | static inline void |
| 496 | locks_delete_global_locks(struct file_lock *fl) |
| 497 | { |
| 498 | list_del_init(&fl->fl_link); |
| 499 | } |
| 500 | |
| 501 | static inline void |
| 502 | locks_insert_global_blocked(struct file_lock *waiter) |
| 503 | { |
| 504 | list_add(&waiter->fl_link, &blocked_list); |
| 505 | } |
| 506 | |
| 507 | static inline void |
| 508 | locks_delete_global_blocked(struct file_lock *waiter) |
| 509 | { |
| 510 | list_del_init(&waiter->fl_link); |
| 511 | } |
| 512 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | /* Remove waiter from blocker's block list. |
| 514 | * When blocker ends up pointing to itself then the list is empty. |
| 515 | */ |
Matt Mackall | 33443c4 | 2006-01-08 01:05:22 -0800 | [diff] [blame] | 516 | static void __locks_delete_block(struct file_lock *waiter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | { |
Jeff Layton | 8897469 | 2013-06-21 08:58:14 -0400 | [diff] [blame^] | 518 | locks_delete_global_blocked(waiter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | list_del_init(&waiter->fl_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | waiter->fl_next = NULL; |
| 521 | } |
| 522 | |
| 523 | /* |
| 524 | */ |
Jeff Layton | 1a9e64a | 2013-06-21 08:58:10 -0400 | [diff] [blame] | 525 | static void locks_delete_block(struct file_lock *waiter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | { |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 527 | lock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | __locks_delete_block(waiter); |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 529 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | /* Insert waiter into blocker's block list. |
| 533 | * We use a circular list so that processes can be easily woken up in |
| 534 | * the order they blocked. The documentation doesn't require this but |
| 535 | * it seems like the reasonable thing to do. |
| 536 | */ |
| 537 | static void locks_insert_block(struct file_lock *blocker, |
| 538 | struct file_lock *waiter) |
| 539 | { |
J. Bruce Fields | 6dc0fe8 | 2006-03-26 01:37:24 -0800 | [diff] [blame] | 540 | BUG_ON(!list_empty(&waiter->fl_block)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | waiter->fl_next = blocker; |
Jeff Layton | 8897469 | 2013-06-21 08:58:14 -0400 | [diff] [blame^] | 542 | list_add_tail(&waiter->fl_block, &blocker->fl_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | if (IS_POSIX(blocker)) |
Jeff Layton | 8897469 | 2013-06-21 08:58:14 -0400 | [diff] [blame^] | 544 | locks_insert_global_blocked(request); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | } |
| 546 | |
Jeff Layton | 1cb3601 | 2013-06-21 08:58:12 -0400 | [diff] [blame] | 547 | /* |
| 548 | * Wake up processes blocked waiting for blocker. |
| 549 | * |
| 550 | * Must be called with the file_lock_lock held! |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | */ |
| 552 | static void locks_wake_up_blocks(struct file_lock *blocker) |
| 553 | { |
| 554 | while (!list_empty(&blocker->fl_block)) { |
Pavel Emelyanov | f0c1cd0 | 2007-09-19 16:44:07 +0400 | [diff] [blame] | 555 | struct file_lock *waiter; |
| 556 | |
| 557 | waiter = list_first_entry(&blocker->fl_block, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | struct file_lock, fl_block); |
| 559 | __locks_delete_block(waiter); |
J. Bruce Fields | 8fb47a4 | 2011-07-20 20:21:59 -0400 | [diff] [blame] | 560 | if (waiter->fl_lmops && waiter->fl_lmops->lm_notify) |
| 561 | waiter->fl_lmops->lm_notify(waiter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | else |
| 563 | wake_up(&waiter->fl_wait); |
| 564 | } |
| 565 | } |
| 566 | |
| 567 | /* Insert file lock fl into an inode's lock list at the position indicated |
| 568 | * by pos. At the same time add the lock to the global file lock list. |
| 569 | */ |
| 570 | static void locks_insert_lock(struct file_lock **pos, struct file_lock *fl) |
| 571 | { |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 572 | fl->fl_nspid = get_pid(task_tgid(current)); |
| 573 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | /* insert into file's list */ |
| 575 | fl->fl_next = *pos; |
| 576 | *pos = fl; |
Jeff Layton | 8897469 | 2013-06-21 08:58:14 -0400 | [diff] [blame^] | 577 | |
| 578 | locks_insert_global_locks(fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | } |
| 580 | |
| 581 | /* |
| 582 | * Delete a lock and then free it. |
| 583 | * Wake up processes that are blocked waiting for this lock, |
| 584 | * notify the FS that the lock has been cleared and |
| 585 | * finally free the lock. |
| 586 | */ |
| 587 | static void locks_delete_lock(struct file_lock **thisfl_p) |
| 588 | { |
| 589 | struct file_lock *fl = *thisfl_p; |
| 590 | |
Jeff Layton | 8897469 | 2013-06-21 08:58:14 -0400 | [diff] [blame^] | 591 | locks_delete_global_locks(fl); |
| 592 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | *thisfl_p = fl->fl_next; |
| 594 | fl->fl_next = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 596 | if (fl->fl_nspid) { |
| 597 | put_pid(fl->fl_nspid); |
| 598 | fl->fl_nspid = NULL; |
| 599 | } |
| 600 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | locks_wake_up_blocks(fl); |
| 602 | locks_free_lock(fl); |
| 603 | } |
| 604 | |
| 605 | /* Determine if lock sys_fl blocks lock caller_fl. Common functionality |
| 606 | * checks for shared/exclusive status of overlapping locks. |
| 607 | */ |
| 608 | static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl) |
| 609 | { |
| 610 | if (sys_fl->fl_type == F_WRLCK) |
| 611 | return 1; |
| 612 | if (caller_fl->fl_type == F_WRLCK) |
| 613 | return 1; |
| 614 | return 0; |
| 615 | } |
| 616 | |
| 617 | /* Determine if lock sys_fl blocks lock caller_fl. POSIX specific |
| 618 | * checking before calling the locks_conflict(). |
| 619 | */ |
| 620 | static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl) |
| 621 | { |
| 622 | /* POSIX locks owned by the same process do not conflict with |
| 623 | * each other. |
| 624 | */ |
| 625 | if (!IS_POSIX(sys_fl) || posix_same_owner(caller_fl, sys_fl)) |
| 626 | return (0); |
| 627 | |
| 628 | /* Check whether they overlap */ |
| 629 | if (!locks_overlap(caller_fl, sys_fl)) |
| 630 | return 0; |
| 631 | |
| 632 | return (locks_conflict(caller_fl, sys_fl)); |
| 633 | } |
| 634 | |
| 635 | /* Determine if lock sys_fl blocks lock caller_fl. FLOCK specific |
| 636 | * checking before calling the locks_conflict(). |
| 637 | */ |
| 638 | static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl) |
| 639 | { |
| 640 | /* FLOCK locks referring to the same filp do not conflict with |
| 641 | * each other. |
| 642 | */ |
| 643 | if (!IS_FLOCK(sys_fl) || (caller_fl->fl_file == sys_fl->fl_file)) |
| 644 | return (0); |
| 645 | if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND)) |
| 646 | return 0; |
| 647 | |
| 648 | return (locks_conflict(caller_fl, sys_fl)); |
| 649 | } |
| 650 | |
J. Bruce Fields | 6d34ac1 | 2007-05-11 16:09:32 -0400 | [diff] [blame] | 651 | void |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 652 | posix_test_lock(struct file *filp, struct file_lock *fl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | { |
| 654 | struct file_lock *cfl; |
| 655 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 656 | lock_flocks(); |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 657 | for (cfl = file_inode(filp)->i_flock; cfl; cfl = cfl->fl_next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | if (!IS_POSIX(cfl)) |
| 659 | continue; |
J. Bruce Fields | b842e24 | 2007-05-10 19:02:07 -0400 | [diff] [blame] | 660 | if (posix_locks_conflict(fl, cfl)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | break; |
| 662 | } |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 663 | if (cfl) { |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 664 | __locks_copy_lock(fl, cfl); |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 665 | if (cfl->fl_nspid) |
Pavel Emelyanov | 6c5f3e7 | 2008-02-08 04:19:20 -0800 | [diff] [blame] | 666 | fl->fl_pid = pid_vnr(cfl->fl_nspid); |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 667 | } else |
J. Bruce Fields | 129a84d | 2007-05-10 18:38:43 -0400 | [diff] [blame] | 668 | fl->fl_type = F_UNLCK; |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 669 | unlock_flocks(); |
J. Bruce Fields | 6d34ac1 | 2007-05-11 16:09:32 -0400 | [diff] [blame] | 670 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | EXPORT_SYMBOL(posix_test_lock); |
| 673 | |
J. Bruce Fields | b533184 | 2007-10-26 18:05:40 -0400 | [diff] [blame] | 674 | /* |
| 675 | * Deadlock detection: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | * |
J. Bruce Fields | b533184 | 2007-10-26 18:05:40 -0400 | [diff] [blame] | 677 | * We attempt to detect deadlocks that are due purely to posix file |
| 678 | * locks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | * |
J. Bruce Fields | b533184 | 2007-10-26 18:05:40 -0400 | [diff] [blame] | 680 | * We assume that a task can be waiting for at most one lock at a time. |
| 681 | * So for any acquired lock, the process holding that lock may be |
| 682 | * waiting on at most one other lock. That lock in turns may be held by |
| 683 | * someone waiting for at most one other lock. Given a requested lock |
| 684 | * caller_fl which is about to wait for a conflicting lock block_fl, we |
| 685 | * follow this chain of waiters to ensure we are not about to create a |
| 686 | * cycle. |
J. Bruce Fields | 97855b4 | 2007-10-30 11:20:02 -0400 | [diff] [blame] | 687 | * |
J. Bruce Fields | b533184 | 2007-10-26 18:05:40 -0400 | [diff] [blame] | 688 | * Since we do this before we ever put a process to sleep on a lock, we |
| 689 | * are ensured that there is never a cycle; that is what guarantees that |
| 690 | * the while() loop in posix_locks_deadlock() eventually completes. |
| 691 | * |
| 692 | * Note: the above assumption may not be true when handling lock |
| 693 | * requests from a broken NFS client. It may also fail in the presence |
| 694 | * of tasks (such as posix threads) sharing the same open file table. |
| 695 | * |
| 696 | * To handle those cases, we just bail out after a few iterations. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | */ |
J. Bruce Fields | 97855b4 | 2007-10-30 11:20:02 -0400 | [diff] [blame] | 698 | |
| 699 | #define MAX_DEADLK_ITERATIONS 10 |
| 700 | |
J. Bruce Fields | b533184 | 2007-10-26 18:05:40 -0400 | [diff] [blame] | 701 | /* Find a lock that the owner of the given block_fl is blocking on. */ |
| 702 | static struct file_lock *what_owner_is_waiting_for(struct file_lock *block_fl) |
| 703 | { |
| 704 | struct file_lock *fl; |
| 705 | |
| 706 | list_for_each_entry(fl, &blocked_list, fl_link) { |
| 707 | if (posix_same_owner(fl, block_fl)) |
| 708 | return fl->fl_next; |
| 709 | } |
| 710 | return NULL; |
| 711 | } |
| 712 | |
Adrian Bunk | b0904e1 | 2006-06-23 02:05:13 -0700 | [diff] [blame] | 713 | static int posix_locks_deadlock(struct file_lock *caller_fl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | struct file_lock *block_fl) |
| 715 | { |
J. Bruce Fields | 97855b4 | 2007-10-30 11:20:02 -0400 | [diff] [blame] | 716 | int i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | |
J. Bruce Fields | b533184 | 2007-10-26 18:05:40 -0400 | [diff] [blame] | 718 | while ((block_fl = what_owner_is_waiting_for(block_fl))) { |
| 719 | if (i++ > MAX_DEADLK_ITERATIONS) |
| 720 | return 0; |
| 721 | if (posix_same_owner(caller_fl, block_fl)) |
| 722 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | } |
| 724 | return 0; |
| 725 | } |
| 726 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | /* 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] | 728 | * after any leases, but before any posix locks. |
Trond Myklebust | f475ae9 | 2006-06-29 16:38:32 -0400 | [diff] [blame] | 729 | * |
| 730 | * Note that if called with an FL_EXISTS argument, the caller may determine |
| 731 | * whether or not a lock was successfully freed by testing the return |
| 732 | * value for -ENOENT. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | */ |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 734 | static int flock_lock_file(struct file *filp, struct file_lock *request) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | { |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 736 | struct file_lock *new_fl = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | struct file_lock **before; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 738 | struct inode * inode = file_inode(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | int error = 0; |
| 740 | int found = 0; |
| 741 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 742 | if (!(request->fl_flags & FL_ACCESS) && (request->fl_type != F_UNLCK)) { |
| 743 | new_fl = locks_alloc_lock(); |
| 744 | if (!new_fl) |
| 745 | return -ENOMEM; |
| 746 | } |
| 747 | |
| 748 | lock_flocks(); |
Trond Myklebust | f07f18d | 2006-06-29 16:38:37 -0400 | [diff] [blame] | 749 | if (request->fl_flags & FL_ACCESS) |
| 750 | goto find_conflict; |
Pavel Emelyanov | 84d535a | 2007-09-11 16:38:13 +0400 | [diff] [blame] | 751 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | for_each_lock(inode, before) { |
| 753 | struct file_lock *fl = *before; |
| 754 | if (IS_POSIX(fl)) |
| 755 | break; |
| 756 | if (IS_LEASE(fl)) |
| 757 | continue; |
| 758 | if (filp != fl->fl_file) |
| 759 | continue; |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 760 | if (request->fl_type == fl->fl_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | goto out; |
| 762 | found = 1; |
| 763 | locks_delete_lock(before); |
| 764 | break; |
| 765 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | |
Trond Myklebust | f475ae9 | 2006-06-29 16:38:32 -0400 | [diff] [blame] | 767 | if (request->fl_type == F_UNLCK) { |
| 768 | if ((request->fl_flags & FL_EXISTS) && !found) |
| 769 | error = -ENOENT; |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 770 | goto out; |
Trond Myklebust | f475ae9 | 2006-06-29 16:38:32 -0400 | [diff] [blame] | 771 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | |
| 773 | /* |
| 774 | * If a higher-priority process was blocked on the old file lock, |
| 775 | * give it the opportunity to lock the file. |
| 776 | */ |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 777 | if (found) { |
| 778 | unlock_flocks(); |
Frederic Weisbecker | def01bc | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 779 | cond_resched(); |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 780 | lock_flocks(); |
| 781 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | |
Trond Myklebust | f07f18d | 2006-06-29 16:38:37 -0400 | [diff] [blame] | 783 | find_conflict: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | for_each_lock(inode, before) { |
| 785 | struct file_lock *fl = *before; |
| 786 | if (IS_POSIX(fl)) |
| 787 | break; |
| 788 | if (IS_LEASE(fl)) |
| 789 | continue; |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 790 | if (!flock_locks_conflict(request, fl)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | continue; |
| 792 | error = -EAGAIN; |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 793 | if (!(request->fl_flags & FL_SLEEP)) |
| 794 | goto out; |
| 795 | error = FILE_LOCK_DEFERRED; |
| 796 | locks_insert_block(fl, request); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | goto out; |
| 798 | } |
Trond Myklebust | f07f18d | 2006-06-29 16:38:37 -0400 | [diff] [blame] | 799 | if (request->fl_flags & FL_ACCESS) |
| 800 | goto out; |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 801 | locks_copy_lock(new_fl, request); |
Pavel Emelyanov | 0e2f6db | 2007-09-11 15:24:01 -0700 | [diff] [blame] | 802 | locks_insert_lock(before, new_fl); |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 803 | new_fl = NULL; |
Kirill Korotaev | 9cedc19 | 2006-06-14 17:59:35 +0400 | [diff] [blame] | 804 | error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | |
| 806 | out: |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 807 | unlock_flocks(); |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 808 | if (new_fl) |
| 809 | locks_free_lock(new_fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | return error; |
| 811 | } |
| 812 | |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 813 | 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] | 814 | { |
| 815 | struct file_lock *fl; |
Miklos Szeredi | 39005d0 | 2006-06-23 02:05:10 -0700 | [diff] [blame] | 816 | struct file_lock *new_fl = NULL; |
| 817 | struct file_lock *new_fl2 = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | struct file_lock *left = NULL; |
| 819 | struct file_lock *right = NULL; |
| 820 | struct file_lock **before; |
Jeff Layton | b9746ef | 2013-06-21 08:58:13 -0400 | [diff] [blame] | 821 | int error; |
| 822 | bool added = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | |
| 824 | /* |
| 825 | * We may need two file_lock structures for this operation, |
| 826 | * so we get them in advance to avoid races. |
Miklos Szeredi | 39005d0 | 2006-06-23 02:05:10 -0700 | [diff] [blame] | 827 | * |
| 828 | * 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] | 829 | */ |
Miklos Szeredi | 39005d0 | 2006-06-23 02:05:10 -0700 | [diff] [blame] | 830 | if (!(request->fl_flags & FL_ACCESS) && |
| 831 | (request->fl_type != F_UNLCK || |
| 832 | request->fl_start != 0 || request->fl_end != OFFSET_MAX)) { |
| 833 | new_fl = locks_alloc_lock(); |
| 834 | new_fl2 = locks_alloc_lock(); |
| 835 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 837 | lock_flocks(); |
Jeff Layton | 1cb3601 | 2013-06-21 08:58:12 -0400 | [diff] [blame] | 838 | /* |
| 839 | * New lock request. Walk all POSIX locks and look for conflicts. If |
| 840 | * there are any, either return error or put the request on the |
| 841 | * blocker's list of waiters and the global blocked_list. |
| 842 | */ |
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 | |
Jeff Layton | 1cb3601 | 2013-06-21 08:58:12 -0400 | [diff] [blame] | 881 | /* Process locks with this owner. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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; |
Jeff Layton | b9746ef | 2013-06-21 08:58:13 -0400 | [diff] [blame] | 916 | added = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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) |
Jeff Layton | b9746ef | 2013-06-21 08:58:13 -0400 | [diff] [blame] | 927 | added = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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; |
Jeff Layton | b9746ef | 2013-06-21 08:58:13 -0400 | [diff] [blame] | 957 | added = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | /* |
Jeff Layton | 1cb3601 | 2013-06-21 08:58:12 -0400 | [diff] [blame] | 967 | * The above code only modifies existing locks in case of merging or |
| 968 | * replacing. If new lock(s) need to be inserted all modifications are |
| 969 | * done below this, so it's safe yet to bail out. |
Miklos Szeredi | 0d9a490 | 2006-06-23 02:05:09 -0700 | [diff] [blame] | 970 | */ |
| 971 | error = -ENOLCK; /* "no luck" */ |
| 972 | if (right && left == right && !new_fl2) |
| 973 | goto out; |
| 974 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | error = 0; |
| 976 | if (!added) { |
Trond Myklebust | f475ae9 | 2006-06-29 16:38:32 -0400 | [diff] [blame] | 977 | if (request->fl_type == F_UNLCK) { |
| 978 | if (request->fl_flags & FL_EXISTS) |
| 979 | error = -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | goto out; |
Trond Myklebust | f475ae9 | 2006-06-29 16:38:32 -0400 | [diff] [blame] | 981 | } |
Miklos Szeredi | 0d9a490 | 2006-06-23 02:05:09 -0700 | [diff] [blame] | 982 | |
| 983 | if (!new_fl) { |
| 984 | error = -ENOLCK; |
| 985 | goto out; |
| 986 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | locks_copy_lock(new_fl, request); |
| 988 | locks_insert_lock(before, new_fl); |
| 989 | new_fl = NULL; |
| 990 | } |
| 991 | if (right) { |
| 992 | if (left == right) { |
| 993 | /* The new lock breaks the old one in two pieces, |
| 994 | * so we have to use the second new lock. |
| 995 | */ |
| 996 | left = new_fl2; |
| 997 | new_fl2 = NULL; |
| 998 | locks_copy_lock(left, right); |
| 999 | locks_insert_lock(before, left); |
| 1000 | } |
| 1001 | right->fl_start = request->fl_end + 1; |
| 1002 | locks_wake_up_blocks(right); |
| 1003 | } |
| 1004 | if (left) { |
| 1005 | left->fl_end = request->fl_start - 1; |
| 1006 | locks_wake_up_blocks(left); |
| 1007 | } |
| 1008 | out: |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1009 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | /* |
| 1011 | * Free any unused locks. |
| 1012 | */ |
| 1013 | if (new_fl) |
| 1014 | locks_free_lock(new_fl); |
| 1015 | if (new_fl2) |
| 1016 | locks_free_lock(new_fl2); |
| 1017 | return error; |
| 1018 | } |
| 1019 | |
| 1020 | /** |
| 1021 | * posix_lock_file - Apply a POSIX-style lock to a file |
| 1022 | * @filp: The file to apply the lock to |
| 1023 | * @fl: The lock to be applied |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1024 | * @conflock: Place to return a copy of the conflicting lock, if found. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | * |
| 1026 | * Add a POSIX style lock to a file. |
| 1027 | * We merge adjacent & overlapping locks whenever possible. |
| 1028 | * POSIX locks are sorted by owner task, then by starting address |
Trond Myklebust | f475ae9 | 2006-06-29 16:38:32 -0400 | [diff] [blame] | 1029 | * |
| 1030 | * Note that if called with an FL_EXISTS argument, the caller may determine |
| 1031 | * whether or not a lock was successfully freed by testing the return |
| 1032 | * value for -ENOENT. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | */ |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1034 | int posix_lock_file(struct file *filp, struct file_lock *fl, |
Andy Adamson | 5842add | 2006-03-26 01:37:26 -0800 | [diff] [blame] | 1035 | struct file_lock *conflock) |
| 1036 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1037 | return __posix_lock_file(file_inode(filp), fl, conflock); |
Andy Adamson | 5842add | 2006-03-26 01:37:26 -0800 | [diff] [blame] | 1038 | } |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1039 | EXPORT_SYMBOL(posix_lock_file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | |
| 1041 | /** |
| 1042 | * posix_lock_file_wait - Apply a POSIX-style lock to a file |
| 1043 | * @filp: The file to apply the lock to |
| 1044 | * @fl: The lock to be applied |
| 1045 | * |
| 1046 | * Add a POSIX style lock to a file. |
| 1047 | * We merge adjacent & overlapping locks whenever possible. |
| 1048 | * POSIX locks are sorted by owner task, then by starting address |
| 1049 | */ |
| 1050 | int posix_lock_file_wait(struct file *filp, struct file_lock *fl) |
| 1051 | { |
| 1052 | int error; |
| 1053 | might_sleep (); |
| 1054 | for (;;) { |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1055 | error = posix_lock_file(filp, fl, NULL); |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1056 | if (error != FILE_LOCK_DEFERRED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | break; |
| 1058 | error = wait_event_interruptible(fl->fl_wait, !fl->fl_next); |
| 1059 | if (!error) |
| 1060 | continue; |
| 1061 | |
| 1062 | locks_delete_block(fl); |
| 1063 | break; |
| 1064 | } |
| 1065 | return error; |
| 1066 | } |
| 1067 | EXPORT_SYMBOL(posix_lock_file_wait); |
| 1068 | |
| 1069 | /** |
| 1070 | * locks_mandatory_locked - Check for an active lock |
| 1071 | * @inode: the file to check |
| 1072 | * |
| 1073 | * Searches the inode's list of locks to find any POSIX locks which conflict. |
| 1074 | * This function is called from locks_verify_locked() only. |
| 1075 | */ |
| 1076 | int locks_mandatory_locked(struct inode *inode) |
| 1077 | { |
| 1078 | fl_owner_t owner = current->files; |
| 1079 | struct file_lock *fl; |
| 1080 | |
| 1081 | /* |
| 1082 | * Search the lock list for this inode for any POSIX locks. |
| 1083 | */ |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1084 | lock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) { |
| 1086 | if (!IS_POSIX(fl)) |
| 1087 | continue; |
| 1088 | if (fl->fl_owner != owner) |
| 1089 | break; |
| 1090 | } |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1091 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | return fl ? -EAGAIN : 0; |
| 1093 | } |
| 1094 | |
| 1095 | /** |
| 1096 | * locks_mandatory_area - Check for a conflicting lock |
| 1097 | * @read_write: %FLOCK_VERIFY_WRITE for exclusive access, %FLOCK_VERIFY_READ |
| 1098 | * for shared |
| 1099 | * @inode: the file to check |
| 1100 | * @filp: how the file was opened (if it was) |
| 1101 | * @offset: start of area to check |
| 1102 | * @count: length of area to check |
| 1103 | * |
| 1104 | * Searches the inode's list of locks to find any POSIX locks which conflict. |
| 1105 | * This function is called from rw_verify_area() and |
| 1106 | * locks_verify_truncate(). |
| 1107 | */ |
| 1108 | int locks_mandatory_area(int read_write, struct inode *inode, |
| 1109 | struct file *filp, loff_t offset, |
| 1110 | size_t count) |
| 1111 | { |
| 1112 | struct file_lock fl; |
| 1113 | int error; |
| 1114 | |
| 1115 | locks_init_lock(&fl); |
| 1116 | fl.fl_owner = current->files; |
| 1117 | fl.fl_pid = current->tgid; |
| 1118 | fl.fl_file = filp; |
| 1119 | fl.fl_flags = FL_POSIX | FL_ACCESS; |
| 1120 | if (filp && !(filp->f_flags & O_NONBLOCK)) |
| 1121 | fl.fl_flags |= FL_SLEEP; |
| 1122 | fl.fl_type = (read_write == FLOCK_VERIFY_WRITE) ? F_WRLCK : F_RDLCK; |
| 1123 | fl.fl_start = offset; |
| 1124 | fl.fl_end = offset + count - 1; |
| 1125 | |
| 1126 | for (;;) { |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1127 | error = __posix_lock_file(inode, &fl, NULL); |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1128 | if (error != FILE_LOCK_DEFERRED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | break; |
| 1130 | error = wait_event_interruptible(fl.fl_wait, !fl.fl_next); |
| 1131 | if (!error) { |
| 1132 | /* |
| 1133 | * If we've been sleeping someone might have |
| 1134 | * changed the permissions behind our back. |
| 1135 | */ |
Pavel Emelyanov | a16877c | 2007-10-01 14:41:11 -0700 | [diff] [blame] | 1136 | if (__mandatory_lock(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | continue; |
| 1138 | } |
| 1139 | |
| 1140 | locks_delete_block(&fl); |
| 1141 | break; |
| 1142 | } |
| 1143 | |
| 1144 | return error; |
| 1145 | } |
| 1146 | |
| 1147 | EXPORT_SYMBOL(locks_mandatory_area); |
| 1148 | |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 1149 | static void lease_clear_pending(struct file_lock *fl, int arg) |
| 1150 | { |
| 1151 | switch (arg) { |
| 1152 | case F_UNLCK: |
| 1153 | fl->fl_flags &= ~FL_UNLOCK_PENDING; |
| 1154 | /* fall through: */ |
| 1155 | case F_RDLCK: |
| 1156 | fl->fl_flags &= ~FL_DOWNGRADE_PENDING; |
| 1157 | } |
| 1158 | } |
| 1159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | /* We already had a lease on this file; just change its type */ |
| 1161 | int lease_modify(struct file_lock **before, int arg) |
| 1162 | { |
| 1163 | struct file_lock *fl = *before; |
| 1164 | int error = assign_type(fl, arg); |
| 1165 | |
| 1166 | if (error) |
| 1167 | return error; |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 1168 | lease_clear_pending(fl, arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | locks_wake_up_blocks(fl); |
Filipe Brandenburger | 3b6e272 | 2012-07-27 00:42:52 -0400 | [diff] [blame] | 1170 | if (arg == F_UNLCK) { |
| 1171 | struct file *filp = fl->fl_file; |
| 1172 | |
| 1173 | f_delown(filp); |
| 1174 | filp->f_owner.signum = 0; |
J. Bruce Fields | 96d6d59 | 2012-07-27 16:18:00 -0400 | [diff] [blame] | 1175 | fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync); |
| 1176 | if (fl->fl_fasync != NULL) { |
| 1177 | printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync); |
| 1178 | fl->fl_fasync = NULL; |
| 1179 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | locks_delete_lock(before); |
Filipe Brandenburger | 3b6e272 | 2012-07-27 00:42:52 -0400 | [diff] [blame] | 1181 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | return 0; |
| 1183 | } |
| 1184 | |
| 1185 | EXPORT_SYMBOL(lease_modify); |
| 1186 | |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 1187 | static bool past_time(unsigned long then) |
| 1188 | { |
| 1189 | if (!then) |
| 1190 | /* 0 is a special value meaning "this never expires": */ |
| 1191 | return false; |
| 1192 | return time_after(jiffies, then); |
| 1193 | } |
| 1194 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | static void time_out_leases(struct inode *inode) |
| 1196 | { |
| 1197 | struct file_lock **before; |
| 1198 | struct file_lock *fl; |
| 1199 | |
| 1200 | before = &inode->i_flock; |
J. Bruce Fields | ab83fa4 | 2011-07-26 20:10:51 -0400 | [diff] [blame] | 1201 | while ((fl = *before) && IS_LEASE(fl) && lease_breaking(fl)) { |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 1202 | if (past_time(fl->fl_downgrade_time)) |
| 1203 | lease_modify(before, F_RDLCK); |
| 1204 | if (past_time(fl->fl_break_time)) |
| 1205 | lease_modify(before, F_UNLCK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | if (fl == *before) /* lease_modify may have freed fl */ |
| 1207 | before = &fl->fl_next; |
| 1208 | } |
| 1209 | } |
| 1210 | |
| 1211 | /** |
| 1212 | * __break_lease - revoke all outstanding leases on file |
| 1213 | * @inode: the inode of the file to return |
| 1214 | * @mode: the open mode (read or write) |
| 1215 | * |
david m. richter | 87250dd | 2007-05-09 16:10:27 -0400 | [diff] [blame] | 1216 | * break_lease (inlined for speed) has checked there already is at least |
| 1217 | * some kind of lock (maybe a lease) on this file. Leases are broken on |
| 1218 | * a call to open() or truncate(). This function can sleep unless you |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | * specified %O_NONBLOCK to your open(). |
| 1220 | */ |
| 1221 | int __break_lease(struct inode *inode, unsigned int mode) |
| 1222 | { |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 1223 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | struct file_lock *new_fl, *flock; |
| 1225 | struct file_lock *fl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | unsigned long break_time; |
| 1227 | int i_have_this_lease = 0; |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 1228 | int want_write = (mode & O_ACCMODE) != O_RDONLY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 1230 | new_fl = lease_alloc(NULL, want_write ? F_WRLCK : F_RDLCK); |
Linus Torvalds | 6d4b9e3 | 2011-12-26 10:25:26 -0800 | [diff] [blame] | 1231 | if (IS_ERR(new_fl)) |
| 1232 | return PTR_ERR(new_fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1234 | lock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | |
| 1236 | time_out_leases(inode); |
| 1237 | |
| 1238 | flock = inode->i_flock; |
| 1239 | if ((flock == NULL) || !IS_LEASE(flock)) |
| 1240 | goto out; |
| 1241 | |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 1242 | if (!locks_conflict(flock, new_fl)) |
| 1243 | goto out; |
| 1244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) |
| 1246 | if (fl->fl_owner == current->files) |
| 1247 | i_have_this_lease = 1; |
| 1248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | break_time = 0; |
| 1250 | if (lease_break_time > 0) { |
| 1251 | break_time = jiffies + lease_break_time * HZ; |
| 1252 | if (break_time == 0) |
| 1253 | break_time++; /* so that 0 means no break time */ |
| 1254 | } |
| 1255 | |
| 1256 | for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) { |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 1257 | if (want_write) { |
| 1258 | if (fl->fl_flags & FL_UNLOCK_PENDING) |
| 1259 | continue; |
| 1260 | fl->fl_flags |= FL_UNLOCK_PENDING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | fl->fl_break_time = break_time; |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 1262 | } else { |
| 1263 | if (lease_breaking(flock)) |
| 1264 | continue; |
| 1265 | fl->fl_flags |= FL_DOWNGRADE_PENDING; |
| 1266 | fl->fl_downgrade_time = break_time; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | } |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 1268 | fl->fl_lmops->lm_break(fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | } |
| 1270 | |
| 1271 | if (i_have_this_lease || (mode & O_NONBLOCK)) { |
| 1272 | error = -EWOULDBLOCK; |
| 1273 | goto out; |
| 1274 | } |
| 1275 | |
| 1276 | restart: |
| 1277 | break_time = flock->fl_break_time; |
| 1278 | if (break_time != 0) { |
| 1279 | break_time -= jiffies; |
| 1280 | if (break_time == 0) |
| 1281 | break_time++; |
| 1282 | } |
Matthew Wilcox | 4321e01 | 2008-01-14 21:28:30 -0700 | [diff] [blame] | 1283 | locks_insert_block(flock, new_fl); |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1284 | unlock_flocks(); |
Matthew Wilcox | 4321e01 | 2008-01-14 21:28:30 -0700 | [diff] [blame] | 1285 | error = wait_event_interruptible_timeout(new_fl->fl_wait, |
| 1286 | !new_fl->fl_next, break_time); |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1287 | lock_flocks(); |
Matthew Wilcox | 4321e01 | 2008-01-14 21:28:30 -0700 | [diff] [blame] | 1288 | __locks_delete_block(new_fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | if (error >= 0) { |
| 1290 | if (error == 0) |
| 1291 | time_out_leases(inode); |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 1292 | /* |
| 1293 | * Wait for the next conflicting lease that has not been |
| 1294 | * broken yet |
| 1295 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | for (flock = inode->i_flock; flock && IS_LEASE(flock); |
| 1297 | flock = flock->fl_next) { |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 1298 | if (locks_conflict(new_fl, flock)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | goto restart; |
| 1300 | } |
| 1301 | error = 0; |
| 1302 | } |
| 1303 | |
| 1304 | out: |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1305 | unlock_flocks(); |
Linus Torvalds | 6d4b9e3 | 2011-12-26 10:25:26 -0800 | [diff] [blame] | 1306 | locks_free_lock(new_fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | return error; |
| 1308 | } |
| 1309 | |
| 1310 | EXPORT_SYMBOL(__break_lease); |
| 1311 | |
| 1312 | /** |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 1313 | * lease_get_mtime - get the last modified time of an inode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | * @inode: the inode |
| 1315 | * @time: pointer to a timespec which will contain the last modified time |
| 1316 | * |
| 1317 | * This is to force NFS clients to flush their caches for files with |
| 1318 | * exclusive leases. The justification is that if someone has an |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 1319 | * exclusive lease, then they could be modifying it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | */ |
| 1321 | void lease_get_mtime(struct inode *inode, struct timespec *time) |
| 1322 | { |
| 1323 | struct file_lock *flock = inode->i_flock; |
Jeff Layton | 0ee5c6d | 2012-08-02 15:46:30 -0400 | [diff] [blame] | 1324 | if (flock && IS_LEASE(flock) && (flock->fl_type == F_WRLCK)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | *time = current_fs_time(inode->i_sb); |
| 1326 | else |
| 1327 | *time = inode->i_mtime; |
| 1328 | } |
| 1329 | |
| 1330 | EXPORT_SYMBOL(lease_get_mtime); |
| 1331 | |
| 1332 | /** |
| 1333 | * fcntl_getlease - Enquire what lease is currently active |
| 1334 | * @filp: the file |
| 1335 | * |
| 1336 | * The value returned by this function will be one of |
| 1337 | * (if no lease break is pending): |
| 1338 | * |
| 1339 | * %F_RDLCK to indicate a shared lease is held. |
| 1340 | * |
| 1341 | * %F_WRLCK to indicate an exclusive lease is held. |
| 1342 | * |
| 1343 | * %F_UNLCK to indicate no lease is held. |
| 1344 | * |
| 1345 | * (if a lease break is pending): |
| 1346 | * |
| 1347 | * %F_RDLCK to indicate an exclusive lease needs to be |
| 1348 | * changed to a shared lease (or removed). |
| 1349 | * |
| 1350 | * %F_UNLCK to indicate the lease needs to be removed. |
| 1351 | * |
| 1352 | * XXX: sfr & willy disagree over whether F_INPROGRESS |
| 1353 | * should be returned to userspace. |
| 1354 | */ |
| 1355 | int fcntl_getlease(struct file *filp) |
| 1356 | { |
| 1357 | struct file_lock *fl; |
| 1358 | int type = F_UNLCK; |
| 1359 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1360 | lock_flocks(); |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1361 | time_out_leases(file_inode(filp)); |
| 1362 | for (fl = file_inode(filp)->i_flock; fl && IS_LEASE(fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | fl = fl->fl_next) { |
| 1364 | if (fl->fl_file == filp) { |
J. Bruce Fields | 778fc54 | 2011-07-26 18:25:49 -0400 | [diff] [blame] | 1365 | type = target_leasetype(fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | break; |
| 1367 | } |
| 1368 | } |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1369 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | return type; |
| 1371 | } |
| 1372 | |
Jeff Layton | d4f22d1 | 2013-06-21 08:58:11 -0400 | [diff] [blame] | 1373 | static int generic_add_lease(struct file *filp, long arg, struct file_lock **flp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | { |
KAMBAROV, ZAUR | 7eaae28 | 2005-07-07 17:57:06 -0700 | [diff] [blame] | 1375 | struct file_lock *fl, **before, **my_before = NULL, *lease; |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 1376 | struct dentry *dentry = filp->f_path.dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | struct inode *inode = dentry->d_inode; |
J. Bruce Fields | c1f24ef | 2011-08-19 10:59:49 -0400 | [diff] [blame] | 1378 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | |
J. Bruce Fields | 096657b | 2010-10-30 17:31:14 -0400 | [diff] [blame] | 1380 | lease = *flp; |
| 1381 | |
J. Bruce Fields | 8335ebd | 2011-09-21 08:34:32 -0400 | [diff] [blame] | 1382 | error = -EAGAIN; |
| 1383 | if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0)) |
J. Bruce Fields | 096657b | 2010-10-30 17:31:14 -0400 | [diff] [blame] | 1384 | goto out; |
J. Bruce Fields | 8335ebd | 2011-09-21 08:34:32 -0400 | [diff] [blame] | 1385 | if ((arg == F_WRLCK) |
| 1386 | && ((dentry->d_count > 1) |
| 1387 | || (atomic_read(&inode->i_count) > 1))) |
J. Bruce Fields | 096657b | 2010-10-30 17:31:14 -0400 | [diff] [blame] | 1388 | goto out; |
Pavel Emelyanov | 85c5958 | 2007-09-20 12:45:02 +0400 | [diff] [blame] | 1389 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1390 | /* |
| 1391 | * At this point, we know that if there is an exclusive |
| 1392 | * lease on this file, then we hold it on this filp |
| 1393 | * (otherwise our open of this file would have blocked). |
| 1394 | * And if we are trying to acquire an exclusive lease, |
| 1395 | * then the file is not open by anyone (including us) |
| 1396 | * except for this filp. |
| 1397 | */ |
J. Bruce Fields | c1f24ef | 2011-08-19 10:59:49 -0400 | [diff] [blame] | 1398 | error = -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | for (before = &inode->i_flock; |
| 1400 | ((fl = *before) != NULL) && IS_LEASE(fl); |
| 1401 | before = &fl->fl_next) { |
J. Bruce Fields | c1f24ef | 2011-08-19 10:59:49 -0400 | [diff] [blame] | 1402 | if (fl->fl_file == filp) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | my_before = before; |
J. Bruce Fields | c1f24ef | 2011-08-19 10:59:49 -0400 | [diff] [blame] | 1404 | continue; |
| 1405 | } |
| 1406 | /* |
| 1407 | * No exclusive leases if someone else has a lease on |
| 1408 | * this file: |
| 1409 | */ |
| 1410 | if (arg == F_WRLCK) |
| 1411 | goto out; |
| 1412 | /* |
| 1413 | * Modifying our existing lease is OK, but no getting a |
| 1414 | * new lease if someone else is opening for write: |
| 1415 | */ |
| 1416 | if (fl->fl_flags & FL_UNLOCK_PENDING) |
| 1417 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | } |
| 1419 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | if (my_before != NULL) { |
J. Bruce Fields | 8fb47a4 | 2011-07-20 20:21:59 -0400 | [diff] [blame] | 1421 | error = lease->fl_lmops->lm_change(my_before, arg); |
Christoph Hellwig | 51ee4b8 | 2010-10-31 08:35:10 -0400 | [diff] [blame] | 1422 | if (!error) |
| 1423 | *flp = *my_before; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | goto out; |
| 1425 | } |
| 1426 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | error = -EINVAL; |
| 1428 | if (!leases_enable) |
| 1429 | goto out; |
| 1430 | |
Arnd Bergmann | c5b1f0d | 2010-10-27 15:46:08 +0200 | [diff] [blame] | 1431 | locks_insert_lock(before, lease); |
Pavel Emelyanov | 85c5958 | 2007-09-20 12:45:02 +0400 | [diff] [blame] | 1432 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | out: |
| 1435 | return error; |
| 1436 | } |
J. Bruce Fields | 8335ebd | 2011-09-21 08:34:32 -0400 | [diff] [blame] | 1437 | |
Jeff Layton | d4f22d1 | 2013-06-21 08:58:11 -0400 | [diff] [blame] | 1438 | static int generic_delete_lease(struct file *filp, struct file_lock **flp) |
J. Bruce Fields | 8335ebd | 2011-09-21 08:34:32 -0400 | [diff] [blame] | 1439 | { |
| 1440 | struct file_lock *fl, **before; |
| 1441 | struct dentry *dentry = filp->f_path.dentry; |
| 1442 | struct inode *inode = dentry->d_inode; |
| 1443 | |
| 1444 | for (before = &inode->i_flock; |
| 1445 | ((fl = *before) != NULL) && IS_LEASE(fl); |
| 1446 | before = &fl->fl_next) { |
| 1447 | if (fl->fl_file != filp) |
| 1448 | continue; |
| 1449 | return (*flp)->fl_lmops->lm_change(before, F_UNLCK); |
| 1450 | } |
| 1451 | return -EAGAIN; |
| 1452 | } |
| 1453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1454 | /** |
| 1455 | * generic_setlease - sets a lease on an open file |
| 1456 | * @filp: file pointer |
| 1457 | * @arg: type of lease to obtain |
| 1458 | * @flp: input - file_lock to use, output - file_lock inserted |
| 1459 | * |
| 1460 | * The (input) flp->fl_lmops->lm_break function is required |
| 1461 | * by break_lease(). |
| 1462 | * |
| 1463 | * Called with file_lock_lock held. |
| 1464 | */ |
| 1465 | int generic_setlease(struct file *filp, long arg, struct file_lock **flp) |
| 1466 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | struct dentry *dentry = filp->f_path.dentry; |
| 1468 | struct inode *inode = dentry->d_inode; |
J. Bruce Fields | 8335ebd | 2011-09-21 08:34:32 -0400 | [diff] [blame] | 1469 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 1471 | if ((!uid_eq(current_fsuid(), inode->i_uid)) && !capable(CAP_LEASE)) |
J. Bruce Fields | 8335ebd | 2011-09-21 08:34:32 -0400 | [diff] [blame] | 1472 | return -EACCES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | if (!S_ISREG(inode->i_mode)) |
J. Bruce Fields | 8335ebd | 2011-09-21 08:34:32 -0400 | [diff] [blame] | 1474 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | error = security_file_lock(filp, arg); |
| 1476 | if (error) |
J. Bruce Fields | 8335ebd | 2011-09-21 08:34:32 -0400 | [diff] [blame] | 1477 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | |
| 1479 | time_out_leases(inode); |
| 1480 | |
| 1481 | BUG_ON(!(*flp)->fl_lmops->lm_break); |
| 1482 | |
J. Bruce Fields | 8335ebd | 2011-09-21 08:34:32 -0400 | [diff] [blame] | 1483 | switch (arg) { |
| 1484 | case F_UNLCK: |
| 1485 | return generic_delete_lease(filp, flp); |
| 1486 | case F_RDLCK: |
| 1487 | case F_WRLCK: |
| 1488 | return generic_add_lease(filp, arg, flp); |
| 1489 | default: |
Dave Jones | 8d657eb | 2012-07-13 13:35:36 -0400 | [diff] [blame] | 1490 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1492 | } |
Christoph Hellwig | 0af1a45 | 2007-07-31 00:39:22 -0700 | [diff] [blame] | 1493 | EXPORT_SYMBOL(generic_setlease); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1495 | static int __vfs_setlease(struct file *filp, long arg, struct file_lock **lease) |
| 1496 | { |
| 1497 | if (filp->f_op && filp->f_op->setlease) |
| 1498 | return filp->f_op->setlease(filp, arg, lease); |
| 1499 | else |
| 1500 | return generic_setlease(filp, arg, lease); |
| 1501 | } |
| 1502 | |
| 1503 | /** |
J. Bruce Fields | a9933ce | 2007-06-07 17:09:49 -0400 | [diff] [blame] | 1504 | * vfs_setlease - sets a lease on an open file |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | * @filp: file pointer |
| 1506 | * @arg: type of lease to obtain |
| 1507 | * @lease: file_lock to use |
| 1508 | * |
| 1509 | * Call this to establish a lease on the file. |
J. Bruce Fields | 8fb47a4 | 2011-07-20 20:21:59 -0400 | [diff] [blame] | 1510 | * The (*lease)->fl_lmops->lm_break operation must be set; if not, |
J. Bruce Fields | f9ffed2 | 2006-11-14 15:51:40 -0500 | [diff] [blame] | 1511 | * break_lease will oops! |
| 1512 | * |
| 1513 | * This will call the filesystem's setlease file method, if |
| 1514 | * defined. Note that there is no getlease method; instead, the |
| 1515 | * filesystem setlease method should call back to setlease() to |
| 1516 | * add a lease to the inode's lease list, where fcntl_getlease() can |
| 1517 | * find it. Since fcntl_getlease() only reports whether the current |
| 1518 | * task holds a lease, a cluster filesystem need only do this for |
| 1519 | * leases held by processes on this node. |
| 1520 | * |
| 1521 | * There is also no break_lease method; filesystems that |
Adam Buchbinder | c9404c9 | 2009-12-18 15:40:42 -0500 | [diff] [blame] | 1522 | * handle their own leases should break leases themselves from the |
J. Bruce Fields | f9ffed2 | 2006-11-14 15:51:40 -0500 | [diff] [blame] | 1523 | * filesystem's open, create, and (on truncate) setattr methods. |
| 1524 | * |
| 1525 | * Warning: the only current setlease methods exist only to disable |
| 1526 | * leases in certain cases. More vfs changes may be required to |
| 1527 | * allow a full filesystem lease implementation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | */ |
| 1529 | |
J. Bruce Fields | a9933ce | 2007-06-07 17:09:49 -0400 | [diff] [blame] | 1530 | int vfs_setlease(struct file *filp, long arg, struct file_lock **lease) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | int error; |
| 1533 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1534 | lock_flocks(); |
| 1535 | error = __vfs_setlease(filp, arg, lease); |
| 1536 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | |
| 1538 | return error; |
| 1539 | } |
J. Bruce Fields | a9933ce | 2007-06-07 17:09:49 -0400 | [diff] [blame] | 1540 | EXPORT_SYMBOL_GPL(vfs_setlease); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | |
J. Bruce Fields | 0ceaf6c | 2010-10-30 17:31:13 -0400 | [diff] [blame] | 1542 | static int do_fcntl_delete_lease(struct file *filp) |
| 1543 | { |
| 1544 | struct file_lock fl, *flp = &fl; |
| 1545 | |
| 1546 | lease_init(filp, F_UNLCK, flp); |
| 1547 | |
| 1548 | return vfs_setlease(filp, F_UNLCK, &flp); |
| 1549 | } |
| 1550 | |
| 1551 | 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] | 1552 | { |
J. Bruce Fields | 3df057a | 2010-11-03 16:49:44 -0400 | [diff] [blame] | 1553 | struct file_lock *fl, *ret; |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 1554 | struct fasync_struct *new; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1555 | int error; |
| 1556 | |
Arnd Bergmann | c5b1f0d | 2010-10-27 15:46:08 +0200 | [diff] [blame] | 1557 | fl = lease_alloc(filp, arg); |
| 1558 | if (IS_ERR(fl)) |
| 1559 | return PTR_ERR(fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 1561 | new = fasync_alloc(); |
| 1562 | if (!new) { |
| 1563 | locks_free_lock(fl); |
| 1564 | return -ENOMEM; |
| 1565 | } |
J. Bruce Fields | 3df057a | 2010-11-03 16:49:44 -0400 | [diff] [blame] | 1566 | ret = fl; |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1567 | lock_flocks(); |
J. Bruce Fields | 8896b93 | 2010-11-03 18:09:18 -0400 | [diff] [blame] | 1568 | error = __vfs_setlease(filp, arg, &ret); |
Christoph Hellwig | 51ee4b8 | 2010-10-31 08:35:10 -0400 | [diff] [blame] | 1569 | if (error) { |
| 1570 | unlock_flocks(); |
| 1571 | locks_free_lock(fl); |
| 1572 | goto out_free_fasync; |
| 1573 | } |
J. Bruce Fields | 3df057a | 2010-11-03 16:49:44 -0400 | [diff] [blame] | 1574 | if (ret != fl) |
| 1575 | locks_free_lock(fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 1577 | /* |
| 1578 | * fasync_insert_entry() returns the old entry if any. |
| 1579 | * If there was no old entry, then it used 'new' and |
| 1580 | * inserted it into the fasync list. Clear new so that |
| 1581 | * we don't release it here. |
| 1582 | */ |
J. Bruce Fields | 3df057a | 2010-11-03 16:49:44 -0400 | [diff] [blame] | 1583 | if (!fasync_insert_entry(fd, filp, &ret->fl_fasync, new)) |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 1584 | new = NULL; |
| 1585 | |
J. Bruce Fields | 8896b93 | 2010-11-03 18:09:18 -0400 | [diff] [blame] | 1586 | error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0); |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 1587 | unlock_flocks(); |
Christoph Hellwig | 51ee4b8 | 2010-10-31 08:35:10 -0400 | [diff] [blame] | 1588 | |
| 1589 | out_free_fasync: |
Linus Torvalds | f7347ce | 2010-10-27 12:38:12 -0400 | [diff] [blame] | 1590 | if (new) |
| 1591 | fasync_free(new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | return error; |
| 1593 | } |
| 1594 | |
| 1595 | /** |
J. Bruce Fields | 0ceaf6c | 2010-10-30 17:31:13 -0400 | [diff] [blame] | 1596 | * fcntl_setlease - sets a lease on an open file |
| 1597 | * @fd: open file descriptor |
| 1598 | * @filp: file pointer |
| 1599 | * @arg: type of lease to obtain |
| 1600 | * |
| 1601 | * Call this fcntl to establish a lease on the file. |
| 1602 | * Note that you also need to call %F_SETSIG to |
| 1603 | * receive a signal when the lease is broken. |
| 1604 | */ |
| 1605 | int fcntl_setlease(unsigned int fd, struct file *filp, long arg) |
| 1606 | { |
| 1607 | if (arg == F_UNLCK) |
| 1608 | return do_fcntl_delete_lease(filp); |
| 1609 | return do_fcntl_add_lease(fd, filp, arg); |
| 1610 | } |
| 1611 | |
| 1612 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | * flock_lock_file_wait - Apply a FLOCK-style lock to a file |
| 1614 | * @filp: The file to apply the lock to |
| 1615 | * @fl: The lock to be applied |
| 1616 | * |
| 1617 | * Add a FLOCK style lock to a file. |
| 1618 | */ |
| 1619 | int flock_lock_file_wait(struct file *filp, struct file_lock *fl) |
| 1620 | { |
| 1621 | int error; |
| 1622 | might_sleep(); |
| 1623 | for (;;) { |
| 1624 | error = flock_lock_file(filp, fl); |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1625 | if (error != FILE_LOCK_DEFERRED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | break; |
| 1627 | error = wait_event_interruptible(fl->fl_wait, !fl->fl_next); |
| 1628 | if (!error) |
| 1629 | continue; |
| 1630 | |
| 1631 | locks_delete_block(fl); |
| 1632 | break; |
| 1633 | } |
| 1634 | return error; |
| 1635 | } |
| 1636 | |
| 1637 | EXPORT_SYMBOL(flock_lock_file_wait); |
| 1638 | |
| 1639 | /** |
| 1640 | * sys_flock: - flock() system call. |
| 1641 | * @fd: the file descriptor to lock. |
| 1642 | * @cmd: the type of lock to apply. |
| 1643 | * |
| 1644 | * Apply a %FL_FLOCK style lock to an open file descriptor. |
| 1645 | * The @cmd can be one of |
| 1646 | * |
| 1647 | * %LOCK_SH -- a shared lock. |
| 1648 | * |
| 1649 | * %LOCK_EX -- an exclusive lock. |
| 1650 | * |
| 1651 | * %LOCK_UN -- remove an existing lock. |
| 1652 | * |
| 1653 | * %LOCK_MAND -- a `mandatory' flock. This exists to emulate Windows Share Modes. |
| 1654 | * |
| 1655 | * %LOCK_MAND can be combined with %LOCK_READ or %LOCK_WRITE to allow other |
| 1656 | * processes read and write access respectively. |
| 1657 | */ |
Heiko Carstens | 002c897 | 2009-01-14 14:14:18 +0100 | [diff] [blame] | 1658 | SYSCALL_DEFINE2(flock, unsigned int, fd, unsigned int, cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 1660 | struct fd f = fdget(fd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | struct file_lock *lock; |
| 1662 | int can_sleep, unlock; |
| 1663 | int error; |
| 1664 | |
| 1665 | error = -EBADF; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 1666 | if (!f.file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | goto out; |
| 1668 | |
| 1669 | can_sleep = !(cmd & LOCK_NB); |
| 1670 | cmd &= ~LOCK_NB; |
| 1671 | unlock = (cmd == LOCK_UN); |
| 1672 | |
Al Viro | aeb5d72 | 2008-09-02 15:28:45 -0400 | [diff] [blame] | 1673 | if (!unlock && !(cmd & LOCK_MAND) && |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 1674 | !(f.file->f_mode & (FMODE_READ|FMODE_WRITE))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | goto out_putf; |
| 1676 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 1677 | error = flock_make_lock(f.file, &lock, cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | if (error) |
| 1679 | goto out_putf; |
| 1680 | if (can_sleep) |
| 1681 | lock->fl_flags |= FL_SLEEP; |
| 1682 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 1683 | error = security_file_lock(f.file, lock->fl_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | if (error) |
| 1685 | goto out_free; |
| 1686 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 1687 | if (f.file->f_op && f.file->f_op->flock) |
| 1688 | error = f.file->f_op->flock(f.file, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | (can_sleep) ? F_SETLKW : F_SETLK, |
| 1690 | lock); |
| 1691 | else |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 1692 | error = flock_lock_file_wait(f.file, lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | |
| 1694 | out_free: |
Trond Myklebust | 993dfa8 | 2006-03-31 02:30:55 -0800 | [diff] [blame] | 1695 | locks_free_lock(lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | |
| 1697 | out_putf: |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 1698 | fdput(f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | out: |
| 1700 | return error; |
| 1701 | } |
| 1702 | |
J. Bruce Fields | 3ee17ab | 2007-02-21 00:58:50 -0500 | [diff] [blame] | 1703 | /** |
| 1704 | * vfs_test_lock - test file byte range lock |
| 1705 | * @filp: The file to test lock for |
J. Bruce Fields | 6924c55 | 2007-05-11 16:22:50 -0400 | [diff] [blame] | 1706 | * @fl: The lock to test; also used to hold result |
J. Bruce Fields | 3ee17ab | 2007-02-21 00:58:50 -0500 | [diff] [blame] | 1707 | * |
| 1708 | * Returns -ERRNO on failure. Indicates presence of conflicting lock by |
| 1709 | * setting conf->fl_type to something other than F_UNLCK. |
| 1710 | */ |
| 1711 | int vfs_test_lock(struct file *filp, struct file_lock *fl) |
| 1712 | { |
| 1713 | if (filp->f_op && filp->f_op->lock) |
| 1714 | return filp->f_op->lock(filp, F_GETLK, fl); |
| 1715 | posix_test_lock(filp, fl); |
| 1716 | return 0; |
| 1717 | } |
| 1718 | EXPORT_SYMBOL_GPL(vfs_test_lock); |
| 1719 | |
J. Bruce Fields | c2fa1b8 | 2007-02-20 16:10:11 -0500 | [diff] [blame] | 1720 | static int posix_lock_to_flock(struct flock *flock, struct file_lock *fl) |
| 1721 | { |
| 1722 | flock->l_pid = fl->fl_pid; |
| 1723 | #if BITS_PER_LONG == 32 |
| 1724 | /* |
| 1725 | * Make sure we can represent the posix lock via |
| 1726 | * legacy 32bit flock. |
| 1727 | */ |
| 1728 | if (fl->fl_start > OFFT_OFFSET_MAX) |
| 1729 | return -EOVERFLOW; |
| 1730 | if (fl->fl_end != OFFSET_MAX && fl->fl_end > OFFT_OFFSET_MAX) |
| 1731 | return -EOVERFLOW; |
| 1732 | #endif |
| 1733 | flock->l_start = fl->fl_start; |
| 1734 | flock->l_len = fl->fl_end == OFFSET_MAX ? 0 : |
| 1735 | fl->fl_end - fl->fl_start + 1; |
| 1736 | flock->l_whence = 0; |
J. Bruce Fields | 129a84d | 2007-05-10 18:38:43 -0400 | [diff] [blame] | 1737 | flock->l_type = fl->fl_type; |
J. Bruce Fields | c2fa1b8 | 2007-02-20 16:10:11 -0500 | [diff] [blame] | 1738 | return 0; |
| 1739 | } |
| 1740 | |
| 1741 | #if BITS_PER_LONG == 32 |
| 1742 | static void posix_lock_to_flock64(struct flock64 *flock, struct file_lock *fl) |
| 1743 | { |
| 1744 | flock->l_pid = fl->fl_pid; |
| 1745 | flock->l_start = fl->fl_start; |
| 1746 | flock->l_len = fl->fl_end == OFFSET_MAX ? 0 : |
| 1747 | fl->fl_end - fl->fl_start + 1; |
| 1748 | flock->l_whence = 0; |
| 1749 | flock->l_type = fl->fl_type; |
| 1750 | } |
| 1751 | #endif |
| 1752 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | /* Report the first existing lock that would conflict with l. |
| 1754 | * This implements the F_GETLK command of fcntl(). |
| 1755 | */ |
| 1756 | int fcntl_getlk(struct file *filp, struct flock __user *l) |
| 1757 | { |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 1758 | struct file_lock file_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1759 | struct flock flock; |
| 1760 | int error; |
| 1761 | |
| 1762 | error = -EFAULT; |
| 1763 | if (copy_from_user(&flock, l, sizeof(flock))) |
| 1764 | goto out; |
| 1765 | error = -EINVAL; |
| 1766 | if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK)) |
| 1767 | goto out; |
| 1768 | |
| 1769 | error = flock_to_posix_lock(filp, &file_lock, &flock); |
| 1770 | if (error) |
| 1771 | goto out; |
| 1772 | |
J. Bruce Fields | 3ee17ab | 2007-02-21 00:58:50 -0500 | [diff] [blame] | 1773 | error = vfs_test_lock(filp, &file_lock); |
| 1774 | if (error) |
| 1775 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 1777 | flock.l_type = file_lock.fl_type; |
| 1778 | if (file_lock.fl_type != F_UNLCK) { |
| 1779 | error = posix_lock_to_flock(&flock, &file_lock); |
J. Bruce Fields | c2fa1b8 | 2007-02-20 16:10:11 -0500 | [diff] [blame] | 1780 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | } |
| 1783 | error = -EFAULT; |
| 1784 | if (!copy_to_user(l, &flock, sizeof(flock))) |
| 1785 | error = 0; |
| 1786 | out: |
| 1787 | return error; |
| 1788 | } |
| 1789 | |
Marc Eshel | 7723ec9 | 2007-01-18 15:08:55 -0500 | [diff] [blame] | 1790 | /** |
| 1791 | * vfs_lock_file - file byte range lock |
| 1792 | * @filp: The file to apply the lock to |
| 1793 | * @cmd: type of locking operation (F_SETLK, F_GETLK, etc.) |
| 1794 | * @fl: The lock to be applied |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1795 | * @conf: Place to return a copy of the conflicting lock, if found. |
| 1796 | * |
| 1797 | * A caller that doesn't care about the conflicting lock may pass NULL |
| 1798 | * as the final argument. |
| 1799 | * |
| 1800 | * If the filesystem defines a private ->lock() method, then @conf will |
| 1801 | * be left unchanged; so a caller that cares should initialize it to |
| 1802 | * some acceptable default. |
Marc Eshel | 2beb661 | 2006-12-05 23:31:28 -0500 | [diff] [blame] | 1803 | * |
| 1804 | * To avoid blocking kernel daemons, such as lockd, that need to acquire POSIX |
| 1805 | * locks, the ->lock() interface may return asynchronously, before the lock has |
| 1806 | * been granted or denied by the underlying filesystem, if (and only if) |
J. Bruce Fields | 8fb47a4 | 2011-07-20 20:21:59 -0400 | [diff] [blame] | 1807 | * lm_grant is set. Callers expecting ->lock() to return asynchronously |
Marc Eshel | 2beb661 | 2006-12-05 23:31:28 -0500 | [diff] [blame] | 1808 | * will only use F_SETLK, not F_SETLKW; they will set FL_SLEEP if (and only if) |
| 1809 | * the request is for a blocking lock. When ->lock() does return asynchronously, |
J. Bruce Fields | 8fb47a4 | 2011-07-20 20:21:59 -0400 | [diff] [blame] | 1810 | * it must return FILE_LOCK_DEFERRED, and call ->lm_grant() when the lock |
Marc Eshel | 2beb661 | 2006-12-05 23:31:28 -0500 | [diff] [blame] | 1811 | * request completes. |
| 1812 | * 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] | 1813 | * FILE_LOCK_DEFERRED then try to get the lock and call the callback routine |
| 1814 | * 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] | 1815 | * nonzero return code and the file system should release the lock. The file |
| 1816 | * system is also responsible to keep a corresponding posix lock when it |
| 1817 | * grants a lock so the VFS can find out which locks are locally held and do |
| 1818 | * the correct lock cleanup when required. |
| 1819 | * The underlying filesystem must not drop the kernel lock or call |
J. Bruce Fields | 8fb47a4 | 2011-07-20 20:21:59 -0400 | [diff] [blame] | 1820 | * ->lm_grant() before returning to the caller with a FILE_LOCK_DEFERRED |
Marc Eshel | 2beb661 | 2006-12-05 23:31:28 -0500 | [diff] [blame] | 1821 | * return code. |
Marc Eshel | 7723ec9 | 2007-01-18 15:08:55 -0500 | [diff] [blame] | 1822 | */ |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1823 | 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] | 1824 | { |
| 1825 | if (filp->f_op && filp->f_op->lock) |
| 1826 | return filp->f_op->lock(filp, cmd, fl); |
| 1827 | else |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 1828 | return posix_lock_file(filp, fl, conf); |
Marc Eshel | 7723ec9 | 2007-01-18 15:08:55 -0500 | [diff] [blame] | 1829 | } |
| 1830 | EXPORT_SYMBOL_GPL(vfs_lock_file); |
| 1831 | |
Miklos Szeredi | b648a6d | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1832 | static int do_lock_file_wait(struct file *filp, unsigned int cmd, |
| 1833 | struct file_lock *fl) |
| 1834 | { |
| 1835 | int error; |
| 1836 | |
| 1837 | error = security_file_lock(filp, fl->fl_type); |
| 1838 | if (error) |
| 1839 | return error; |
| 1840 | |
Miklos Szeredi | 764c76b | 2008-07-25 01:48:58 -0700 | [diff] [blame] | 1841 | for (;;) { |
| 1842 | error = vfs_lock_file(filp, cmd, fl, NULL); |
| 1843 | if (error != FILE_LOCK_DEFERRED) |
Miklos Szeredi | b648a6d | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1844 | break; |
Miklos Szeredi | 764c76b | 2008-07-25 01:48:58 -0700 | [diff] [blame] | 1845 | error = wait_event_interruptible(fl->fl_wait, !fl->fl_next); |
| 1846 | if (!error) |
| 1847 | continue; |
| 1848 | |
| 1849 | locks_delete_block(fl); |
| 1850 | break; |
Miklos Szeredi | b648a6d | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1851 | } |
| 1852 | |
| 1853 | return error; |
| 1854 | } |
| 1855 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1856 | /* Apply the lock described by l to an open file descriptor. |
| 1857 | * This implements both the F_SETLK and F_SETLKW commands of fcntl(). |
| 1858 | */ |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1859 | int fcntl_setlk(unsigned int fd, struct file *filp, unsigned int cmd, |
| 1860 | struct flock __user *l) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1861 | { |
| 1862 | struct file_lock *file_lock = locks_alloc_lock(); |
| 1863 | struct flock flock; |
| 1864 | struct inode *inode; |
Al Viro | 0b2bac2 | 2008-05-06 13:58:34 -0400 | [diff] [blame] | 1865 | struct file *f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1866 | int error; |
| 1867 | |
| 1868 | if (file_lock == NULL) |
| 1869 | return -ENOLCK; |
| 1870 | |
| 1871 | /* |
| 1872 | * This might block, so we do it before checking the inode. |
| 1873 | */ |
| 1874 | error = -EFAULT; |
| 1875 | if (copy_from_user(&flock, l, sizeof(flock))) |
| 1876 | goto out; |
| 1877 | |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1878 | inode = file_inode(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | |
| 1880 | /* Don't allow mandatory locks on files that may be memory mapped |
| 1881 | * and shared. |
| 1882 | */ |
Pavel Emelyanov | a16877c | 2007-10-01 14:41:11 -0700 | [diff] [blame] | 1883 | if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1884 | error = -EAGAIN; |
| 1885 | goto out; |
| 1886 | } |
| 1887 | |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1888 | again: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1889 | error = flock_to_posix_lock(filp, file_lock, &flock); |
| 1890 | if (error) |
| 1891 | goto out; |
| 1892 | if (cmd == F_SETLKW) { |
| 1893 | file_lock->fl_flags |= FL_SLEEP; |
| 1894 | } |
| 1895 | |
| 1896 | error = -EBADF; |
| 1897 | switch (flock.l_type) { |
| 1898 | case F_RDLCK: |
| 1899 | if (!(filp->f_mode & FMODE_READ)) |
| 1900 | goto out; |
| 1901 | break; |
| 1902 | case F_WRLCK: |
| 1903 | if (!(filp->f_mode & FMODE_WRITE)) |
| 1904 | goto out; |
| 1905 | break; |
| 1906 | case F_UNLCK: |
| 1907 | break; |
| 1908 | default: |
| 1909 | error = -EINVAL; |
| 1910 | goto out; |
| 1911 | } |
| 1912 | |
Miklos Szeredi | b648a6d | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 1913 | error = do_lock_file_wait(filp, cmd, file_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1915 | /* |
| 1916 | * Attempt to detect a close/fcntl race and recover by |
| 1917 | * releasing the lock that was just acquired. |
| 1918 | */ |
Al Viro | 0b2bac2 | 2008-05-06 13:58:34 -0400 | [diff] [blame] | 1919 | /* |
| 1920 | * we need that spin_lock here - it prevents reordering between |
| 1921 | * update of inode->i_flock and check for it done in close(). |
| 1922 | * rcu_read_lock() wouldn't do. |
| 1923 | */ |
| 1924 | spin_lock(¤t->files->file_lock); |
| 1925 | f = fcheck(fd); |
| 1926 | spin_unlock(¤t->files->file_lock); |
| 1927 | if (!error && f != filp && flock.l_type != F_UNLCK) { |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1928 | flock.l_type = F_UNLCK; |
| 1929 | goto again; |
| 1930 | } |
| 1931 | |
| 1932 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1933 | locks_free_lock(file_lock); |
| 1934 | return error; |
| 1935 | } |
| 1936 | |
| 1937 | #if BITS_PER_LONG == 32 |
| 1938 | /* Report the first existing lock that would conflict with l. |
| 1939 | * This implements the F_GETLK command of fcntl(). |
| 1940 | */ |
| 1941 | int fcntl_getlk64(struct file *filp, struct flock64 __user *l) |
| 1942 | { |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 1943 | struct file_lock file_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | struct flock64 flock; |
| 1945 | int error; |
| 1946 | |
| 1947 | error = -EFAULT; |
| 1948 | if (copy_from_user(&flock, l, sizeof(flock))) |
| 1949 | goto out; |
| 1950 | error = -EINVAL; |
| 1951 | if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK)) |
| 1952 | goto out; |
| 1953 | |
| 1954 | error = flock64_to_posix_lock(filp, &file_lock, &flock); |
| 1955 | if (error) |
| 1956 | goto out; |
| 1957 | |
J. Bruce Fields | 3ee17ab | 2007-02-21 00:58:50 -0500 | [diff] [blame] | 1958 | error = vfs_test_lock(filp, &file_lock); |
| 1959 | if (error) |
| 1960 | goto out; |
| 1961 | |
Marc Eshel | 9d6a8c5 | 2007-02-21 00:55:18 -0500 | [diff] [blame] | 1962 | flock.l_type = file_lock.fl_type; |
| 1963 | if (file_lock.fl_type != F_UNLCK) |
| 1964 | posix_lock_to_flock64(&flock, &file_lock); |
| 1965 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | error = -EFAULT; |
| 1967 | if (!copy_to_user(l, &flock, sizeof(flock))) |
| 1968 | error = 0; |
| 1969 | |
| 1970 | out: |
| 1971 | return error; |
| 1972 | } |
| 1973 | |
| 1974 | /* Apply the lock described by l to an open file descriptor. |
| 1975 | * This implements both the F_SETLK and F_SETLKW commands of fcntl(). |
| 1976 | */ |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 1977 | int fcntl_setlk64(unsigned int fd, struct file *filp, unsigned int cmd, |
| 1978 | struct flock64 __user *l) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | { |
| 1980 | struct file_lock *file_lock = locks_alloc_lock(); |
| 1981 | struct flock64 flock; |
| 1982 | struct inode *inode; |
Al Viro | 0b2bac2 | 2008-05-06 13:58:34 -0400 | [diff] [blame] | 1983 | struct file *f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | int error; |
| 1985 | |
| 1986 | if (file_lock == NULL) |
| 1987 | return -ENOLCK; |
| 1988 | |
| 1989 | /* |
| 1990 | * This might block, so we do it before checking the inode. |
| 1991 | */ |
| 1992 | error = -EFAULT; |
| 1993 | if (copy_from_user(&flock, l, sizeof(flock))) |
| 1994 | goto out; |
| 1995 | |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1996 | inode = file_inode(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | |
| 1998 | /* Don't allow mandatory locks on files that may be memory mapped |
| 1999 | * and shared. |
| 2000 | */ |
Pavel Emelyanov | a16877c | 2007-10-01 14:41:11 -0700 | [diff] [blame] | 2001 | if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2002 | error = -EAGAIN; |
| 2003 | goto out; |
| 2004 | } |
| 2005 | |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 2006 | again: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2007 | error = flock64_to_posix_lock(filp, file_lock, &flock); |
| 2008 | if (error) |
| 2009 | goto out; |
| 2010 | if (cmd == F_SETLKW64) { |
| 2011 | file_lock->fl_flags |= FL_SLEEP; |
| 2012 | } |
| 2013 | |
| 2014 | error = -EBADF; |
| 2015 | switch (flock.l_type) { |
| 2016 | case F_RDLCK: |
| 2017 | if (!(filp->f_mode & FMODE_READ)) |
| 2018 | goto out; |
| 2019 | break; |
| 2020 | case F_WRLCK: |
| 2021 | if (!(filp->f_mode & FMODE_WRITE)) |
| 2022 | goto out; |
| 2023 | break; |
| 2024 | case F_UNLCK: |
| 2025 | break; |
| 2026 | default: |
| 2027 | error = -EINVAL; |
| 2028 | goto out; |
| 2029 | } |
| 2030 | |
Miklos Szeredi | b648a6d | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 2031 | error = do_lock_file_wait(filp, cmd, file_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2032 | |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 2033 | /* |
| 2034 | * Attempt to detect a close/fcntl race and recover by |
| 2035 | * releasing the lock that was just acquired. |
| 2036 | */ |
Al Viro | 0b2bac2 | 2008-05-06 13:58:34 -0400 | [diff] [blame] | 2037 | spin_lock(¤t->files->file_lock); |
| 2038 | f = fcheck(fd); |
| 2039 | spin_unlock(¤t->files->file_lock); |
| 2040 | if (!error && f != filp && flock.l_type != F_UNLCK) { |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 2041 | flock.l_type = F_UNLCK; |
| 2042 | goto again; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2043 | } |
| 2044 | |
| 2045 | out: |
| 2046 | locks_free_lock(file_lock); |
| 2047 | return error; |
| 2048 | } |
| 2049 | #endif /* BITS_PER_LONG == 32 */ |
| 2050 | |
| 2051 | /* |
| 2052 | * This function is called when the file is being removed |
| 2053 | * from the task's fd array. POSIX locks belonging to this task |
| 2054 | * are deleted at this time. |
| 2055 | */ |
| 2056 | void locks_remove_posix(struct file *filp, fl_owner_t owner) |
| 2057 | { |
Miklos Szeredi | ff7b86b | 2006-06-23 02:05:11 -0700 | [diff] [blame] | 2058 | struct file_lock lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2059 | |
| 2060 | /* |
| 2061 | * If there are no locks held on this file, we don't need to call |
| 2062 | * posix_lock_file(). Another process could be setting a lock on this |
| 2063 | * file at the same time, but we wouldn't remove that lock anyway. |
| 2064 | */ |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 2065 | if (!file_inode(filp)->i_flock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2066 | return; |
| 2067 | |
| 2068 | lock.fl_type = F_UNLCK; |
Miklos Szeredi | 75e1fcc | 2006-06-23 02:05:12 -0700 | [diff] [blame] | 2069 | lock.fl_flags = FL_POSIX | FL_CLOSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2070 | lock.fl_start = 0; |
| 2071 | lock.fl_end = OFFSET_MAX; |
| 2072 | lock.fl_owner = owner; |
| 2073 | lock.fl_pid = current->tgid; |
| 2074 | lock.fl_file = filp; |
| 2075 | lock.fl_ops = NULL; |
| 2076 | lock.fl_lmops = NULL; |
| 2077 | |
Marc Eshel | 150b393 | 2007-01-18 16:15:35 -0500 | [diff] [blame] | 2078 | vfs_lock_file(filp, F_SETLK, &lock, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2079 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | if (lock.fl_ops && lock.fl_ops->fl_release_private) |
| 2081 | lock.fl_ops->fl_release_private(&lock); |
| 2082 | } |
| 2083 | |
| 2084 | EXPORT_SYMBOL(locks_remove_posix); |
| 2085 | |
| 2086 | /* |
| 2087 | * This function is called on the last close of an open file. |
| 2088 | */ |
| 2089 | void locks_remove_flock(struct file *filp) |
| 2090 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 2091 | struct inode * inode = file_inode(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2092 | struct file_lock *fl; |
| 2093 | struct file_lock **before; |
| 2094 | |
| 2095 | if (!inode->i_flock) |
| 2096 | return; |
| 2097 | |
| 2098 | if (filp->f_op && filp->f_op->flock) { |
| 2099 | struct file_lock fl = { |
| 2100 | .fl_pid = current->tgid, |
| 2101 | .fl_file = filp, |
| 2102 | .fl_flags = FL_FLOCK, |
| 2103 | .fl_type = F_UNLCK, |
| 2104 | .fl_end = OFFSET_MAX, |
| 2105 | }; |
| 2106 | filp->f_op->flock(filp, F_SETLKW, &fl); |
Trond Myklebust | 80fec4c | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 2107 | if (fl.fl_ops && fl.fl_ops->fl_release_private) |
| 2108 | fl.fl_ops->fl_release_private(&fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | } |
| 2110 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2111 | lock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | before = &inode->i_flock; |
| 2113 | |
| 2114 | while ((fl = *before) != NULL) { |
| 2115 | if (fl->fl_file == filp) { |
Peter Staubach | c293621 | 2005-07-27 11:45:09 -0700 | [diff] [blame] | 2116 | if (IS_FLOCK(fl)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | locks_delete_lock(before); |
| 2118 | continue; |
| 2119 | } |
| 2120 | if (IS_LEASE(fl)) { |
| 2121 | lease_modify(before, F_UNLCK); |
| 2122 | continue; |
| 2123 | } |
| 2124 | /* What? */ |
| 2125 | BUG(); |
| 2126 | } |
| 2127 | before = &fl->fl_next; |
| 2128 | } |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2129 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | } |
| 2131 | |
| 2132 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2133 | * posix_unblock_lock - stop waiting for a file lock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | * @waiter: the lock which was waiting |
| 2135 | * |
| 2136 | * lockd needs to block waiting for locks. |
| 2137 | */ |
J. Bruce Fields | 64a318e | 2006-01-03 09:55:46 +0100 | [diff] [blame] | 2138 | int |
Jeff Layton | f891a29 | 2013-06-21 08:58:09 -0400 | [diff] [blame] | 2139 | posix_unblock_lock(struct file_lock *waiter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2140 | { |
J. Bruce Fields | 64a318e | 2006-01-03 09:55:46 +0100 | [diff] [blame] | 2141 | int status = 0; |
| 2142 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2143 | lock_flocks(); |
J. Bruce Fields | 5996a29 | 2006-01-03 09:55:44 +0100 | [diff] [blame] | 2144 | if (waiter->fl_next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2145 | __locks_delete_block(waiter); |
J. Bruce Fields | 64a318e | 2006-01-03 09:55:46 +0100 | [diff] [blame] | 2146 | else |
| 2147 | status = -ENOENT; |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2148 | unlock_flocks(); |
J. Bruce Fields | 64a318e | 2006-01-03 09:55:46 +0100 | [diff] [blame] | 2149 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2150 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | EXPORT_SYMBOL(posix_unblock_lock); |
| 2152 | |
Marc Eshel | 9b9d2ab | 2007-01-18 17:52:58 -0500 | [diff] [blame] | 2153 | /** |
| 2154 | * vfs_cancel_lock - file byte range unblock lock |
| 2155 | * @filp: The file to apply the unblock to |
| 2156 | * @fl: The lock to be unblocked |
| 2157 | * |
| 2158 | * Used by lock managers to cancel blocked requests |
| 2159 | */ |
| 2160 | int vfs_cancel_lock(struct file *filp, struct file_lock *fl) |
| 2161 | { |
| 2162 | if (filp->f_op && filp->f_op->lock) |
| 2163 | return filp->f_op->lock(filp, F_CANCELLK, fl); |
| 2164 | return 0; |
| 2165 | } |
| 2166 | |
| 2167 | EXPORT_SYMBOL_GPL(vfs_cancel_lock); |
| 2168 | |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2169 | #ifdef CONFIG_PROC_FS |
Alexey Dobriyan | d8ba7a3 | 2008-10-04 22:34:18 +0400 | [diff] [blame] | 2170 | #include <linux/proc_fs.h> |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2171 | #include <linux/seq_file.h> |
| 2172 | |
| 2173 | 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] | 2174 | loff_t id, char *pfx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | { |
| 2176 | struct inode *inode = NULL; |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 2177 | unsigned int fl_pid; |
| 2178 | |
| 2179 | if (fl->fl_nspid) |
Pavel Emelyanov | 6c5f3e7 | 2008-02-08 04:19:20 -0800 | [diff] [blame] | 2180 | fl_pid = pid_vnr(fl->fl_nspid); |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 2181 | else |
| 2182 | fl_pid = fl->fl_pid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2183 | |
| 2184 | if (fl->fl_file != NULL) |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 2185 | inode = file_inode(fl->fl_file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2186 | |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2187 | seq_printf(f, "%lld:%s ", id, pfx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2188 | if (IS_POSIX(fl)) { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2189 | seq_printf(f, "%6s %s ", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2190 | (fl->fl_flags & FL_ACCESS) ? "ACCESS" : "POSIX ", |
| 2191 | (inode == NULL) ? "*NOINODE*" : |
Pavel Emelyanov | a16877c | 2007-10-01 14:41:11 -0700 | [diff] [blame] | 2192 | mandatory_lock(inode) ? "MANDATORY" : "ADVISORY "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2193 | } else if (IS_FLOCK(fl)) { |
| 2194 | if (fl->fl_type & LOCK_MAND) { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2195 | seq_printf(f, "FLOCK MSNFS "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | } else { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2197 | seq_printf(f, "FLOCK ADVISORY "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | } |
| 2199 | } else if (IS_LEASE(fl)) { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2200 | seq_printf(f, "LEASE "); |
J. Bruce Fields | ab83fa4 | 2011-07-26 20:10:51 -0400 | [diff] [blame] | 2201 | if (lease_breaking(fl)) |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2202 | seq_printf(f, "BREAKING "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2203 | else if (fl->fl_file) |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2204 | seq_printf(f, "ACTIVE "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | else |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2206 | seq_printf(f, "BREAKER "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2207 | } else { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2208 | seq_printf(f, "UNKNOWN UNKNOWN "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2209 | } |
| 2210 | if (fl->fl_type & LOCK_MAND) { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2211 | seq_printf(f, "%s ", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2212 | (fl->fl_type & LOCK_READ) |
| 2213 | ? (fl->fl_type & LOCK_WRITE) ? "RW " : "READ " |
| 2214 | : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE "); |
| 2215 | } else { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2216 | seq_printf(f, "%s ", |
J. Bruce Fields | ab83fa4 | 2011-07-26 20:10:51 -0400 | [diff] [blame] | 2217 | (lease_breaking(fl)) |
Jeff Layton | 0ee5c6d | 2012-08-02 15:46:30 -0400 | [diff] [blame] | 2218 | ? (fl->fl_type == F_UNLCK) ? "UNLCK" : "READ " |
| 2219 | : (fl->fl_type == F_WRLCK) ? "WRITE" : "READ "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | } |
| 2221 | if (inode) { |
| 2222 | #ifdef WE_CAN_BREAK_LSLK_NOW |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 2223 | seq_printf(f, "%d %s:%ld ", fl_pid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | inode->i_sb->s_id, inode->i_ino); |
| 2225 | #else |
| 2226 | /* userspace relies on this representation of dev_t ;-( */ |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 2227 | seq_printf(f, "%d %02x:%02x:%ld ", fl_pid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2228 | MAJOR(inode->i_sb->s_dev), |
| 2229 | MINOR(inode->i_sb->s_dev), inode->i_ino); |
| 2230 | #endif |
| 2231 | } else { |
Vitaliy Gusev | ab1f161 | 2008-01-17 00:07:08 +0000 | [diff] [blame] | 2232 | seq_printf(f, "%d <none>:0 ", fl_pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 | } |
| 2234 | if (IS_POSIX(fl)) { |
| 2235 | if (fl->fl_end == OFFSET_MAX) |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2236 | seq_printf(f, "%Ld EOF\n", fl->fl_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | else |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2238 | seq_printf(f, "%Ld %Ld\n", fl->fl_start, fl->fl_end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2239 | } else { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2240 | seq_printf(f, "0 EOF\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | } |
| 2242 | } |
| 2243 | |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2244 | static int locks_show(struct seq_file *f, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2246 | struct file_lock *fl, *bfl; |
| 2247 | |
| 2248 | fl = list_entry(v, struct file_lock, fl_link); |
| 2249 | |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2250 | lock_get_status(f, fl, *((loff_t *)f->private), ""); |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2251 | |
| 2252 | list_for_each_entry(bfl, &fl->fl_block, fl_block) |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2253 | lock_get_status(f, bfl, *((loff_t *)f->private), " ->"); |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2254 | |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2255 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2256 | } |
| 2257 | |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2258 | static void *locks_start(struct seq_file *f, loff_t *pos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | { |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2260 | loff_t *p = f->private; |
| 2261 | |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2262 | lock_flocks(); |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2263 | *p = (*pos + 1); |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2264 | return seq_list_start(&file_lock_list, *pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2265 | } |
| 2266 | |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2267 | static void *locks_next(struct seq_file *f, void *v, loff_t *pos) |
| 2268 | { |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2269 | loff_t *p = f->private; |
| 2270 | ++*p; |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2271 | return seq_list_next(v, &file_lock_list, pos); |
| 2272 | } |
| 2273 | |
| 2274 | static void locks_stop(struct seq_file *f, void *v) |
| 2275 | { |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2276 | unlock_flocks(); |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2277 | } |
| 2278 | |
Alexey Dobriyan | d8ba7a3 | 2008-10-04 22:34:18 +0400 | [diff] [blame] | 2279 | static const struct seq_operations locks_seq_operations = { |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2280 | .start = locks_start, |
| 2281 | .next = locks_next, |
| 2282 | .stop = locks_stop, |
| 2283 | .show = locks_show, |
| 2284 | }; |
Alexey Dobriyan | d8ba7a3 | 2008-10-04 22:34:18 +0400 | [diff] [blame] | 2285 | |
| 2286 | static int locks_open(struct inode *inode, struct file *filp) |
| 2287 | { |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2288 | return seq_open_private(filp, &locks_seq_operations, sizeof(loff_t)); |
Alexey Dobriyan | d8ba7a3 | 2008-10-04 22:34:18 +0400 | [diff] [blame] | 2289 | } |
| 2290 | |
| 2291 | static const struct file_operations proc_locks_operations = { |
| 2292 | .open = locks_open, |
| 2293 | .read = seq_read, |
| 2294 | .llseek = seq_lseek, |
Jerome Marchand | 99dc829 | 2010-10-26 14:22:33 -0700 | [diff] [blame] | 2295 | .release = seq_release_private, |
Alexey Dobriyan | d8ba7a3 | 2008-10-04 22:34:18 +0400 | [diff] [blame] | 2296 | }; |
| 2297 | |
| 2298 | static int __init proc_locks_init(void) |
| 2299 | { |
| 2300 | proc_create("locks", 0, NULL, &proc_locks_operations); |
| 2301 | return 0; |
| 2302 | } |
| 2303 | module_init(proc_locks_init); |
Pavel Emelyanov | 7f8ada9 | 2007-10-01 14:41:15 -0700 | [diff] [blame] | 2304 | #endif |
| 2305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2306 | /** |
| 2307 | * lock_may_read - checks that the region is free of locks |
| 2308 | * @inode: the inode that is being read |
| 2309 | * @start: the first byte to read |
| 2310 | * @len: the number of bytes to read |
| 2311 | * |
| 2312 | * Emulates Windows locking requirements. Whole-file |
| 2313 | * mandatory locks (share modes) can prohibit a read and |
| 2314 | * byte-range POSIX locks can prohibit a read if they overlap. |
| 2315 | * |
| 2316 | * N.B. this function is only ever called |
| 2317 | * from knfsd and ownership of locks is never checked. |
| 2318 | */ |
| 2319 | int lock_may_read(struct inode *inode, loff_t start, unsigned long len) |
| 2320 | { |
| 2321 | struct file_lock *fl; |
| 2322 | int result = 1; |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2323 | lock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2324 | for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) { |
| 2325 | if (IS_POSIX(fl)) { |
| 2326 | if (fl->fl_type == F_RDLCK) |
| 2327 | continue; |
| 2328 | if ((fl->fl_end < start) || (fl->fl_start > (start + len))) |
| 2329 | continue; |
| 2330 | } else if (IS_FLOCK(fl)) { |
| 2331 | if (!(fl->fl_type & LOCK_MAND)) |
| 2332 | continue; |
| 2333 | if (fl->fl_type & LOCK_READ) |
| 2334 | continue; |
| 2335 | } else |
| 2336 | continue; |
| 2337 | result = 0; |
| 2338 | break; |
| 2339 | } |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2340 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2341 | return result; |
| 2342 | } |
| 2343 | |
| 2344 | EXPORT_SYMBOL(lock_may_read); |
| 2345 | |
| 2346 | /** |
| 2347 | * lock_may_write - checks that the region is free of locks |
| 2348 | * @inode: the inode that is being written |
| 2349 | * @start: the first byte to write |
| 2350 | * @len: the number of bytes to write |
| 2351 | * |
| 2352 | * Emulates Windows locking requirements. Whole-file |
| 2353 | * mandatory locks (share modes) can prohibit a write and |
| 2354 | * byte-range POSIX locks can prohibit a write if they overlap. |
| 2355 | * |
| 2356 | * N.B. this function is only ever called |
| 2357 | * from knfsd and ownership of locks is never checked. |
| 2358 | */ |
| 2359 | int lock_may_write(struct inode *inode, loff_t start, unsigned long len) |
| 2360 | { |
| 2361 | struct file_lock *fl; |
| 2362 | int result = 1; |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2363 | lock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2364 | for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) { |
| 2365 | if (IS_POSIX(fl)) { |
| 2366 | if ((fl->fl_end < start) || (fl->fl_start > (start + len))) |
| 2367 | continue; |
| 2368 | } else if (IS_FLOCK(fl)) { |
| 2369 | if (!(fl->fl_type & LOCK_MAND)) |
| 2370 | continue; |
| 2371 | if (fl->fl_type & LOCK_WRITE) |
| 2372 | continue; |
| 2373 | } else |
| 2374 | continue; |
| 2375 | result = 0; |
| 2376 | break; |
| 2377 | } |
Arnd Bergmann | b89f432 | 2010-09-18 15:09:31 +0200 | [diff] [blame] | 2378 | unlock_flocks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2379 | return result; |
| 2380 | } |
| 2381 | |
| 2382 | EXPORT_SYMBOL(lock_may_write); |
| 2383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2384 | static int __init filelock_init(void) |
| 2385 | { |
| 2386 | filelock_cache = kmem_cache_create("file_lock_cache", |
Miklos Szeredi | ee19cc4 | 2011-07-07 13:06:09 +0200 | [diff] [blame] | 2387 | sizeof(struct file_lock), 0, SLAB_PANIC, NULL); |
| 2388 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2389 | return 0; |
| 2390 | } |
| 2391 | |
| 2392 | core_initcall(filelock_init); |