1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _LINUX_FILELOCK_H 3 #define _LINUX_FILELOCK_H 4 5 #include <linux/fs.h> 6 7 #define FL_POSIX 1 8 #define FL_FLOCK 2 9 #define FL_DELEG 4 /* NFSv4 delegation */ 10 #define FL_ACCESS 8 /* not trying to lock, just looking */ 11 #define FL_EXISTS 16 /* when unlocking, test for existence */ 12 #define FL_LEASE 32 /* lease held on this file */ 13 #define FL_CLOSE 64 /* unlock on close */ 14 #define FL_SLEEP 128 /* A blocking lock */ 15 #define FL_DOWNGRADE_PENDING 256 /* Lease is being downgraded */ 16 #define FL_UNLOCK_PENDING 512 /* Lease is being broken */ 17 #define FL_OFDLCK 1024 /* lock is "owned" by struct file */ 18 #define FL_LAYOUT 2048 /* outstanding pNFS layout */ 19 #define FL_RECLAIM 4096 /* reclaiming from a reboot server */ 20 21 #define FL_CLOSE_POSIX (FL_POSIX | FL_CLOSE) 22 23 /* 24 * Special return value from posix_lock_file() and vfs_lock_file() for 25 * asynchronous locking. 26 */ 27 #define FILE_LOCK_DEFERRED 1 28 29 struct file_lock; 30 31 struct file_lock_operations { 32 void (*fl_copy_lock)(struct file_lock *, struct file_lock *); 33 void (*fl_release_private)(struct file_lock *); 34 }; 35 36 struct lock_manager_operations { 37 void *lm_mod_owner; 38 fl_owner_t (*lm_get_owner)(fl_owner_t); 39 void (*lm_put_owner)(fl_owner_t); 40 void (*lm_notify)(struct file_lock *); /* unblock callback */ 41 int (*lm_grant)(struct file_lock *, int); 42 bool (*lm_break)(struct file_lock *); 43 int (*lm_change)(struct file_lock *, int, struct list_head *); 44 void (*lm_setup)(struct file_lock *, void **); 45 bool (*lm_breaker_owns_lease)(struct file_lock *); 46 bool (*lm_lock_expirable)(struct file_lock *cfl); 47 void (*lm_expire_lock)(void); 48 }; 49 50 struct lock_manager { 51 struct list_head list; 52 /* 53 * NFSv4 and up also want opens blocked during the grace period; 54 * NLM doesn't care: 55 */ 56 bool block_opens; 57 }; 58 59 struct net; 60 void locks_start_grace(struct net *, struct lock_manager *); 61 void locks_end_grace(struct lock_manager *); 62 bool locks_in_grace(struct net *); 63 bool opens_in_grace(struct net *); 64 65 /* 66 * struct file_lock has a union that some filesystems use to track 67 * their own private info. The NFS side of things is defined here: 68 */ 69 #include <linux/nfs_fs_i.h> 70 71 /* 72 * struct file_lock represents a generic "file lock". It's used to represent 73 * POSIX byte range locks, BSD (flock) locks, and leases. It's important to 74 * note that the same struct is used to represent both a request for a lock and 75 * the lock itself, but the same object is never used for both. 76 * 77 * FIXME: should we create a separate "struct lock_request" to help distinguish 78 * these two uses? 79 * 80 * The varous i_flctx lists are ordered by: 81 * 82 * 1) lock owner 83 * 2) lock range start 84 * 3) lock range end 85 * 86 * Obviously, the last two criteria only matter for POSIX locks. 87 */ 88 89 struct file_lock_core { 90 struct file_lock_core *flc_blocker; /* The lock that is blocking us */ 91 struct list_head flc_list; /* link into file_lock_context */ 92 struct hlist_node flc_link; /* node in global lists */ 93 struct list_head flc_blocked_requests; /* list of requests with 94 * ->fl_blocker pointing here 95 */ 96 struct list_head flc_blocked_member; /* node in 97 * ->fl_blocker->fl_blocked_requests 98 */ 99 fl_owner_t flc_owner; 100 unsigned int flc_flags; 101 unsigned char flc_type; 102 pid_t flc_pid; 103 int flc_link_cpu; /* what cpu's list is this on? */ 104 wait_queue_head_t flc_wait; 105 struct file *flc_file; 106 }; 107 108 struct file_lock { 109 struct file_lock_core c; 110 loff_t fl_start; 111 loff_t fl_end; 112 113 struct fasync_struct * fl_fasync; /* for lease break notifications */ 114 /* for lease breaks: */ 115 unsigned long fl_break_time; 116 unsigned long fl_downgrade_time; 117 118 const struct file_lock_operations *fl_ops; /* Callbacks for filesystems */ 119 const struct lock_manager_operations *fl_lmops; /* Callbacks for lockmanagers */ 120 union { 121 struct nfs_lock_info nfs_fl; 122 struct nfs4_lock_info nfs4_fl; 123 struct { 124 struct list_head link; /* link in AFS vnode's pending_locks list */ 125 int state; /* state of grant or error if -ve */ 126 unsigned int debug_id; 127 } afs; 128 struct { 129 struct inode *inode; 130 } ceph; 131 } fl_u; 132 } __randomize_layout; 133 134 struct file_lock_context { 135 spinlock_t flc_lock; 136 struct list_head flc_flock; 137 struct list_head flc_posix; 138 struct list_head flc_lease; 139 }; 140 141 #ifdef CONFIG_FILE_LOCKING 142 int fcntl_getlk(struct file *, unsigned int, struct flock *); 143 int fcntl_setlk(unsigned int, struct file *, unsigned int, 144 struct flock *); 145 146 #if BITS_PER_LONG == 32 147 int fcntl_getlk64(struct file *, unsigned int, struct flock64 *); 148 int fcntl_setlk64(unsigned int, struct file *, unsigned int, 149 struct flock64 *); 150 #endif 151 152 int fcntl_setlease(unsigned int fd, struct file *filp, int arg); 153 int fcntl_getlease(struct file *filp); 154 155 static inline bool lock_is_unlock(struct file_lock *fl) 156 { 157 return fl->c.flc_type == F_UNLCK; 158 } 159 160 static inline bool lock_is_read(struct file_lock *fl) 161 { 162 return fl->c.flc_type == F_RDLCK; 163 } 164 165 static inline bool lock_is_write(struct file_lock *fl) 166 { 167 return fl->c.flc_type == F_WRLCK; 168 } 169 170 static inline void locks_wake_up(struct file_lock *fl) 171 { 172 wake_up(&fl->c.flc_wait); 173 } 174 175 /* for walking lists of file_locks linked by fl_list */ 176 #define for_each_file_lock(_fl, _head) list_for_each_entry(_fl, _head, c.flc_list) 177 178 /* fs/locks.c */ 179 void locks_free_lock_context(struct inode *inode); 180 void locks_free_lock(struct file_lock *fl); 181 void locks_init_lock(struct file_lock *); 182 struct file_lock * locks_alloc_lock(void); 183 void locks_copy_lock(struct file_lock *, struct file_lock *); 184 void locks_copy_conflock(struct file_lock *, struct file_lock *); 185 void locks_remove_posix(struct file *, fl_owner_t); 186 void locks_remove_file(struct file *); 187 void locks_release_private(struct file_lock *); 188 void posix_test_lock(struct file *, struct file_lock *); 189 int posix_lock_file(struct file *, struct file_lock *, struct file_lock *); 190 int locks_delete_block(struct file_lock *); 191 int vfs_test_lock(struct file *, struct file_lock *); 192 int vfs_lock_file(struct file *, unsigned int, struct file_lock *, struct file_lock *); 193 int vfs_cancel_lock(struct file *filp, struct file_lock *fl); 194 bool vfs_inode_has_locks(struct inode *inode); 195 int locks_lock_inode_wait(struct inode *inode, struct file_lock *fl); 196 int __break_lease(struct inode *inode, unsigned int flags, unsigned int type); 197 void lease_get_mtime(struct inode *, struct timespec64 *time); 198 int generic_setlease(struct file *, int, struct file_lock **, void **priv); 199 int vfs_setlease(struct file *, int, struct file_lock **, void **); 200 int lease_modify(struct file_lock *, int, struct list_head *); 201 202 struct notifier_block; 203 int lease_register_notifier(struct notifier_block *); 204 void lease_unregister_notifier(struct notifier_block *); 205 206 struct files_struct; 207 void show_fd_locks(struct seq_file *f, 208 struct file *filp, struct files_struct *files); 209 bool locks_owner_has_blockers(struct file_lock_context *flctx, 210 fl_owner_t owner); 211 212 static inline struct file_lock_context * 213 locks_inode_context(const struct inode *inode) 214 { 215 return smp_load_acquire(&inode->i_flctx); 216 } 217 218 #else /* !CONFIG_FILE_LOCKING */ 219 static inline int fcntl_getlk(struct file *file, unsigned int cmd, 220 struct flock __user *user) 221 { 222 return -EINVAL; 223 } 224 225 static inline int fcntl_setlk(unsigned int fd, struct file *file, 226 unsigned int cmd, struct flock __user *user) 227 { 228 return -EACCES; 229 } 230 231 #if BITS_PER_LONG == 32 232 static inline int fcntl_getlk64(struct file *file, unsigned int cmd, 233 struct flock64 *user) 234 { 235 return -EINVAL; 236 } 237 238 static inline int fcntl_setlk64(unsigned int fd, struct file *file, 239 unsigned int cmd, struct flock64 *user) 240 { 241 return -EACCES; 242 } 243 #endif 244 static inline int fcntl_setlease(unsigned int fd, struct file *filp, int arg) 245 { 246 return -EINVAL; 247 } 248 249 static inline int fcntl_getlease(struct file *filp) 250 { 251 return F_UNLCK; 252 } 253 254 static inline bool lock_is_unlock(struct file_lock *fl) 255 { 256 return false; 257 } 258 259 static inline bool lock_is_read(struct file_lock *fl) 260 { 261 return false; 262 } 263 264 static inline bool lock_is_write(struct file_lock *fl) 265 { 266 return false; 267 } 268 269 static inline void locks_wake_up(struct file_lock *fl) 270 { 271 } 272 273 #define for_each_file_lock(_fl, _head) while(false) 274 275 static inline void 276 locks_free_lock_context(struct inode *inode) 277 { 278 } 279 280 static inline void locks_init_lock(struct file_lock *fl) 281 { 282 return; 283 } 284 285 static inline void locks_copy_conflock(struct file_lock *new, struct file_lock *fl) 286 { 287 return; 288 } 289 290 static inline void locks_copy_lock(struct file_lock *new, struct file_lock *fl) 291 { 292 return; 293 } 294 295 static inline void locks_remove_posix(struct file *filp, fl_owner_t owner) 296 { 297 return; 298 } 299 300 static inline void locks_remove_file(struct file *filp) 301 { 302 return; 303 } 304 305 static inline void posix_test_lock(struct file *filp, struct file_lock *fl) 306 { 307 return; 308 } 309 310 static inline int posix_lock_file(struct file *filp, struct file_lock *fl, 311 struct file_lock *conflock) 312 { 313 return -ENOLCK; 314 } 315 316 static inline int locks_delete_block(struct file_lock *waiter) 317 { 318 return -ENOENT; 319 } 320 321 static inline int vfs_test_lock(struct file *filp, struct file_lock *fl) 322 { 323 return 0; 324 } 325 326 static inline int vfs_lock_file(struct file *filp, unsigned int cmd, 327 struct file_lock *fl, struct file_lock *conf) 328 { 329 return -ENOLCK; 330 } 331 332 static inline int vfs_cancel_lock(struct file *filp, struct file_lock *fl) 333 { 334 return 0; 335 } 336 337 static inline bool vfs_inode_has_locks(struct inode *inode) 338 { 339 return false; 340 } 341 342 static inline int locks_lock_inode_wait(struct inode *inode, struct file_lock *fl) 343 { 344 return -ENOLCK; 345 } 346 347 static inline int __break_lease(struct inode *inode, unsigned int mode, unsigned int type) 348 { 349 return 0; 350 } 351 352 static inline void lease_get_mtime(struct inode *inode, 353 struct timespec64 *time) 354 { 355 return; 356 } 357 358 static inline int generic_setlease(struct file *filp, int arg, 359 struct file_lock **flp, void **priv) 360 { 361 return -EINVAL; 362 } 363 364 static inline int vfs_setlease(struct file *filp, int arg, 365 struct file_lock **lease, void **priv) 366 { 367 return -EINVAL; 368 } 369 370 static inline int lease_modify(struct file_lock *fl, int arg, 371 struct list_head *dispose) 372 { 373 return -EINVAL; 374 } 375 376 struct files_struct; 377 static inline void show_fd_locks(struct seq_file *f, 378 struct file *filp, struct files_struct *files) {} 379 static inline bool locks_owner_has_blockers(struct file_lock_context *flctx, 380 fl_owner_t owner) 381 { 382 return false; 383 } 384 385 static inline struct file_lock_context * 386 locks_inode_context(const struct inode *inode) 387 { 388 return NULL; 389 } 390 391 #endif /* !CONFIG_FILE_LOCKING */ 392 393 static inline int locks_lock_file_wait(struct file *filp, struct file_lock *fl) 394 { 395 return locks_lock_inode_wait(file_inode(filp), fl); 396 } 397 398 #ifdef CONFIG_FILE_LOCKING 399 static inline int break_lease(struct inode *inode, unsigned int mode) 400 { 401 /* 402 * Since this check is lockless, we must ensure that any refcounts 403 * taken are done before checking i_flctx->flc_lease. Otherwise, we 404 * could end up racing with tasks trying to set a new lease on this 405 * file. 406 */ 407 smp_mb(); 408 if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease)) 409 return __break_lease(inode, mode, FL_LEASE); 410 return 0; 411 } 412 413 static inline int break_deleg(struct inode *inode, unsigned int mode) 414 { 415 /* 416 * Since this check is lockless, we must ensure that any refcounts 417 * taken are done before checking i_flctx->flc_lease. Otherwise, we 418 * could end up racing with tasks trying to set a new lease on this 419 * file. 420 */ 421 smp_mb(); 422 if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease)) 423 return __break_lease(inode, mode, FL_DELEG); 424 return 0; 425 } 426 427 static inline int try_break_deleg(struct inode *inode, struct inode **delegated_inode) 428 { 429 int ret; 430 431 ret = break_deleg(inode, O_WRONLY|O_NONBLOCK); 432 if (ret == -EWOULDBLOCK && delegated_inode) { 433 *delegated_inode = inode; 434 ihold(inode); 435 } 436 return ret; 437 } 438 439 static inline int break_deleg_wait(struct inode **delegated_inode) 440 { 441 int ret; 442 443 ret = break_deleg(*delegated_inode, O_WRONLY); 444 iput(*delegated_inode); 445 *delegated_inode = NULL; 446 return ret; 447 } 448 449 static inline int break_layout(struct inode *inode, bool wait) 450 { 451 smp_mb(); 452 if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease)) 453 return __break_lease(inode, 454 wait ? O_WRONLY : O_WRONLY | O_NONBLOCK, 455 FL_LAYOUT); 456 return 0; 457 } 458 459 #else /* !CONFIG_FILE_LOCKING */ 460 static inline int break_lease(struct inode *inode, unsigned int mode) 461 { 462 return 0; 463 } 464 465 static inline int break_deleg(struct inode *inode, unsigned int mode) 466 { 467 return 0; 468 } 469 470 static inline int try_break_deleg(struct inode *inode, struct inode **delegated_inode) 471 { 472 return 0; 473 } 474 475 static inline int break_deleg_wait(struct inode **delegated_inode) 476 { 477 BUG(); 478 return 0; 479 } 480 481 static inline int break_layout(struct inode *inode, bool wait) 482 { 483 return 0; 484 } 485 486 #endif /* CONFIG_FILE_LOCKING */ 487 488 #endif /* _LINUX_FILELOCK_H */ 489