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 struct file_lock { 89 struct file_lock *fl_blocker; /* The lock, that is blocking us */ 90 struct list_head fl_list; /* link into file_lock_context */ 91 struct hlist_node fl_link; /* node in global lists */ 92 struct list_head fl_blocked_requests; /* list of requests with 93 * ->fl_blocker pointing here 94 */ 95 struct list_head fl_blocked_member; /* node in 96 * ->fl_blocker->fl_blocked_requests 97 */ 98 fl_owner_t fl_owner; 99 unsigned int fl_flags; 100 unsigned char fl_type; 101 pid_t fl_pid; 102 int fl_link_cpu; /* what cpu's list is this on? */ 103 wait_queue_head_t fl_wait; 104 struct file *fl_file; 105 loff_t fl_start; 106 loff_t fl_end; 107 108 struct fasync_struct * fl_fasync; /* for lease break notifications */ 109 /* for lease breaks: */ 110 unsigned long fl_break_time; 111 unsigned long fl_downgrade_time; 112 113 const struct file_lock_operations *fl_ops; /* Callbacks for filesystems */ 114 const struct lock_manager_operations *fl_lmops; /* Callbacks for lockmanagers */ 115 union { 116 struct nfs_lock_info nfs_fl; 117 struct nfs4_lock_info nfs4_fl; 118 struct { 119 struct list_head link; /* link in AFS vnode's pending_locks list */ 120 int state; /* state of grant or error if -ve */ 121 unsigned int debug_id; 122 } afs; 123 struct { 124 struct inode *inode; 125 } ceph; 126 } fl_u; 127 } __randomize_layout; 128 129 struct file_lock_context { 130 spinlock_t flc_lock; 131 struct list_head flc_flock; 132 struct list_head flc_posix; 133 struct list_head flc_lease; 134 }; 135 136 #ifdef CONFIG_FILE_LOCKING 137 int fcntl_getlk(struct file *, unsigned int, struct flock *); 138 int fcntl_setlk(unsigned int, struct file *, unsigned int, 139 struct flock *); 140 141 #if BITS_PER_LONG == 32 142 int fcntl_getlk64(struct file *, unsigned int, struct flock64 *); 143 int fcntl_setlk64(unsigned int, struct file *, unsigned int, 144 struct flock64 *); 145 #endif 146 147 int fcntl_setlease(unsigned int fd, struct file *filp, int arg); 148 int fcntl_getlease(struct file *filp); 149 150 static inline bool lock_is_unlock(struct file_lock *fl) 151 { 152 return fl->fl_type == F_UNLCK; 153 } 154 155 static inline bool lock_is_read(struct file_lock *fl) 156 { 157 return fl->fl_type == F_RDLCK; 158 } 159 160 static inline bool lock_is_write(struct file_lock *fl) 161 { 162 return fl->fl_type == F_WRLCK; 163 } 164 165 static inline void locks_wake_up(struct file_lock *fl) 166 { 167 wake_up(&fl->fl_wait); 168 } 169 170 /* for walking lists of file_locks linked by fl_list */ 171 #define for_each_file_lock(_fl, _head) list_for_each_entry(_fl, _head, fl_list) 172 173 /* fs/locks.c */ 174 void locks_free_lock_context(struct inode *inode); 175 void locks_free_lock(struct file_lock *fl); 176 void locks_init_lock(struct file_lock *); 177 struct file_lock * locks_alloc_lock(void); 178 void locks_copy_lock(struct file_lock *, struct file_lock *); 179 void locks_copy_conflock(struct file_lock *, struct file_lock *); 180 void locks_remove_posix(struct file *, fl_owner_t); 181 void locks_remove_file(struct file *); 182 void locks_release_private(struct file_lock *); 183 void posix_test_lock(struct file *, struct file_lock *); 184 int posix_lock_file(struct file *, struct file_lock *, struct file_lock *); 185 int locks_delete_block(struct file_lock *); 186 int vfs_test_lock(struct file *, struct file_lock *); 187 int vfs_lock_file(struct file *, unsigned int, struct file_lock *, struct file_lock *); 188 int vfs_cancel_lock(struct file *filp, struct file_lock *fl); 189 bool vfs_inode_has_locks(struct inode *inode); 190 int locks_lock_inode_wait(struct inode *inode, struct file_lock *fl); 191 int __break_lease(struct inode *inode, unsigned int flags, unsigned int type); 192 void lease_get_mtime(struct inode *, struct timespec64 *time); 193 int generic_setlease(struct file *, int, struct file_lock **, void **priv); 194 int vfs_setlease(struct file *, int, struct file_lock **, void **); 195 int lease_modify(struct file_lock *, int, struct list_head *); 196 197 struct notifier_block; 198 int lease_register_notifier(struct notifier_block *); 199 void lease_unregister_notifier(struct notifier_block *); 200 201 struct files_struct; 202 void show_fd_locks(struct seq_file *f, 203 struct file *filp, struct files_struct *files); 204 bool locks_owner_has_blockers(struct file_lock_context *flctx, 205 fl_owner_t owner); 206 207 static inline struct file_lock_context * 208 locks_inode_context(const struct inode *inode) 209 { 210 return smp_load_acquire(&inode->i_flctx); 211 } 212 213 #else /* !CONFIG_FILE_LOCKING */ 214 static inline int fcntl_getlk(struct file *file, unsigned int cmd, 215 struct flock __user *user) 216 { 217 return -EINVAL; 218 } 219 220 static inline int fcntl_setlk(unsigned int fd, struct file *file, 221 unsigned int cmd, struct flock __user *user) 222 { 223 return -EACCES; 224 } 225 226 #if BITS_PER_LONG == 32 227 static inline int fcntl_getlk64(struct file *file, unsigned int cmd, 228 struct flock64 *user) 229 { 230 return -EINVAL; 231 } 232 233 static inline int fcntl_setlk64(unsigned int fd, struct file *file, 234 unsigned int cmd, struct flock64 *user) 235 { 236 return -EACCES; 237 } 238 #endif 239 static inline int fcntl_setlease(unsigned int fd, struct file *filp, int arg) 240 { 241 return -EINVAL; 242 } 243 244 static inline int fcntl_getlease(struct file *filp) 245 { 246 return F_UNLCK; 247 } 248 249 static inline bool lock_is_unlock(struct file_lock *fl) 250 { 251 return false; 252 } 253 254 static inline bool lock_is_read(struct file_lock *fl) 255 { 256 return false; 257 } 258 259 static inline bool lock_is_write(struct file_lock *fl) 260 { 261 return false; 262 } 263 264 static inline void locks_wake_up(struct file_lock *fl) 265 { 266 } 267 268 #define for_each_file_lock(_fl, _head) while(false) 269 270 static inline void 271 locks_free_lock_context(struct inode *inode) 272 { 273 } 274 275 static inline void locks_init_lock(struct file_lock *fl) 276 { 277 return; 278 } 279 280 static inline void locks_copy_conflock(struct file_lock *new, struct file_lock *fl) 281 { 282 return; 283 } 284 285 static inline void locks_copy_lock(struct file_lock *new, struct file_lock *fl) 286 { 287 return; 288 } 289 290 static inline void locks_remove_posix(struct file *filp, fl_owner_t owner) 291 { 292 return; 293 } 294 295 static inline void locks_remove_file(struct file *filp) 296 { 297 return; 298 } 299 300 static inline void posix_test_lock(struct file *filp, struct file_lock *fl) 301 { 302 return; 303 } 304 305 static inline int posix_lock_file(struct file *filp, struct file_lock *fl, 306 struct file_lock *conflock) 307 { 308 return -ENOLCK; 309 } 310 311 static inline int locks_delete_block(struct file_lock *waiter) 312 { 313 return -ENOENT; 314 } 315 316 static inline int vfs_test_lock(struct file *filp, struct file_lock *fl) 317 { 318 return 0; 319 } 320 321 static inline int vfs_lock_file(struct file *filp, unsigned int cmd, 322 struct file_lock *fl, struct file_lock *conf) 323 { 324 return -ENOLCK; 325 } 326 327 static inline int vfs_cancel_lock(struct file *filp, struct file_lock *fl) 328 { 329 return 0; 330 } 331 332 static inline bool vfs_inode_has_locks(struct inode *inode) 333 { 334 return false; 335 } 336 337 static inline int locks_lock_inode_wait(struct inode *inode, struct file_lock *fl) 338 { 339 return -ENOLCK; 340 } 341 342 static inline int __break_lease(struct inode *inode, unsigned int mode, unsigned int type) 343 { 344 return 0; 345 } 346 347 static inline void lease_get_mtime(struct inode *inode, 348 struct timespec64 *time) 349 { 350 return; 351 } 352 353 static inline int generic_setlease(struct file *filp, int arg, 354 struct file_lock **flp, void **priv) 355 { 356 return -EINVAL; 357 } 358 359 static inline int vfs_setlease(struct file *filp, int arg, 360 struct file_lock **lease, void **priv) 361 { 362 return -EINVAL; 363 } 364 365 static inline int lease_modify(struct file_lock *fl, int arg, 366 struct list_head *dispose) 367 { 368 return -EINVAL; 369 } 370 371 struct files_struct; 372 static inline void show_fd_locks(struct seq_file *f, 373 struct file *filp, struct files_struct *files) {} 374 static inline bool locks_owner_has_blockers(struct file_lock_context *flctx, 375 fl_owner_t owner) 376 { 377 return false; 378 } 379 380 static inline struct file_lock_context * 381 locks_inode_context(const struct inode *inode) 382 { 383 return NULL; 384 } 385 386 #endif /* !CONFIG_FILE_LOCKING */ 387 388 static inline int locks_lock_file_wait(struct file *filp, struct file_lock *fl) 389 { 390 return locks_lock_inode_wait(file_inode(filp), fl); 391 } 392 393 #ifdef CONFIG_FILE_LOCKING 394 static inline int break_lease(struct inode *inode, unsigned int mode) 395 { 396 /* 397 * Since this check is lockless, we must ensure that any refcounts 398 * taken are done before checking i_flctx->flc_lease. Otherwise, we 399 * could end up racing with tasks trying to set a new lease on this 400 * file. 401 */ 402 smp_mb(); 403 if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease)) 404 return __break_lease(inode, mode, FL_LEASE); 405 return 0; 406 } 407 408 static inline int break_deleg(struct inode *inode, unsigned int mode) 409 { 410 /* 411 * Since this check is lockless, we must ensure that any refcounts 412 * taken are done before checking i_flctx->flc_lease. Otherwise, we 413 * could end up racing with tasks trying to set a new lease on this 414 * file. 415 */ 416 smp_mb(); 417 if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease)) 418 return __break_lease(inode, mode, FL_DELEG); 419 return 0; 420 } 421 422 static inline int try_break_deleg(struct inode *inode, struct inode **delegated_inode) 423 { 424 int ret; 425 426 ret = break_deleg(inode, O_WRONLY|O_NONBLOCK); 427 if (ret == -EWOULDBLOCK && delegated_inode) { 428 *delegated_inode = inode; 429 ihold(inode); 430 } 431 return ret; 432 } 433 434 static inline int break_deleg_wait(struct inode **delegated_inode) 435 { 436 int ret; 437 438 ret = break_deleg(*delegated_inode, O_WRONLY); 439 iput(*delegated_inode); 440 *delegated_inode = NULL; 441 return ret; 442 } 443 444 static inline int break_layout(struct inode *inode, bool wait) 445 { 446 smp_mb(); 447 if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease)) 448 return __break_lease(inode, 449 wait ? O_WRONLY : O_WRONLY | O_NONBLOCK, 450 FL_LAYOUT); 451 return 0; 452 } 453 454 #else /* !CONFIG_FILE_LOCKING */ 455 static inline int break_lease(struct inode *inode, unsigned int mode) 456 { 457 return 0; 458 } 459 460 static inline int break_deleg(struct inode *inode, unsigned int mode) 461 { 462 return 0; 463 } 464 465 static inline int try_break_deleg(struct inode *inode, struct inode **delegated_inode) 466 { 467 return 0; 468 } 469 470 static inline int break_deleg_wait(struct inode **delegated_inode) 471 { 472 BUG(); 473 return 0; 474 } 475 476 static inline int break_layout(struct inode *inode, bool wait) 477 { 478 return 0; 479 } 480 481 #endif /* CONFIG_FILE_LOCKING */ 482 483 #endif /* _LINUX_FILELOCK_H */ 484