1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* AFS file locking support
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
10 #define AFS_LOCK_GRANTED 0
11 #define AFS_LOCK_PENDING 1
12 #define AFS_LOCK_YOUR_TRY 2
14 struct workqueue_struct
*afs_lock_manager
;
16 static void afs_next_locker(struct afs_vnode
*vnode
, int error
);
17 static void afs_fl_copy_lock(struct file_lock
*new, struct file_lock
*fl
);
18 static void afs_fl_release_private(struct file_lock
*fl
);
20 static const struct file_lock_operations afs_lock_ops
= {
21 .fl_copy_lock
= afs_fl_copy_lock
,
22 .fl_release_private
= afs_fl_release_private
,
25 static inline void afs_set_lock_state(struct afs_vnode
*vnode
, enum afs_lock_state state
)
27 _debug("STATE %u -> %u", vnode
->lock_state
, state
);
28 vnode
->lock_state
= state
;
31 static atomic_t afs_file_lock_debug_id
;
34 * if the callback is broken on this vnode, then the lock may now be available
36 void afs_lock_may_be_available(struct afs_vnode
*vnode
)
38 _enter("{%llx:%llu}", vnode
->fid
.vid
, vnode
->fid
.vnode
);
40 spin_lock(&vnode
->lock
);
41 if (vnode
->lock_state
== AFS_VNODE_LOCK_WAITING_FOR_CB
)
42 afs_next_locker(vnode
, 0);
43 trace_afs_flock_ev(vnode
, NULL
, afs_flock_callback_break
, 0);
44 spin_unlock(&vnode
->lock
);
48 * the lock will time out in 5 minutes unless we extend it, so schedule
49 * extension in a bit less than that time
51 static void afs_schedule_lock_extension(struct afs_vnode
*vnode
)
53 ktime_t expires_at
, now
, duration
;
56 expires_at
= ktime_add_ms(vnode
->locked_at
, AFS_LOCKWAIT
* 1000 / 2);
57 now
= ktime_get_real();
58 duration
= ktime_sub(expires_at
, now
);
62 duration_j
= nsecs_to_jiffies(ktime_to_ns(duration
));
64 queue_delayed_work(afs_lock_manager
, &vnode
->lock_work
, duration_j
);
68 * In the case of successful completion of a lock operation, record the time
69 * the reply appeared and start the lock extension timer.
71 void afs_lock_op_done(struct afs_call
*call
)
73 struct afs_vnode
*vnode
= call
->lvnode
;
75 if (call
->error
== 0) {
76 spin_lock(&vnode
->lock
);
77 trace_afs_flock_ev(vnode
, NULL
, afs_flock_timestamp
, 0);
78 vnode
->locked_at
= call
->reply_time
;
79 afs_schedule_lock_extension(vnode
);
80 spin_unlock(&vnode
->lock
);
85 * grant one or more locks (readlocks are allowed to jump the queue if the
86 * first lock in the queue is itself a readlock)
87 * - the caller must hold the vnode lock
89 static void afs_grant_locks(struct afs_vnode
*vnode
)
91 struct file_lock
*p
, *_p
;
92 bool exclusive
= (vnode
->lock_type
== AFS_LOCK_WRITE
);
94 list_for_each_entry_safe(p
, _p
, &vnode
->pending_locks
, fl_u
.afs
.link
) {
95 if (!exclusive
&& p
->fl_type
== F_WRLCK
)
98 list_move_tail(&p
->fl_u
.afs
.link
, &vnode
->granted_locks
);
99 p
->fl_u
.afs
.state
= AFS_LOCK_GRANTED
;
100 trace_afs_flock_op(vnode
, p
, afs_flock_op_grant
);
101 wake_up(&p
->fl_wait
);
106 * If an error is specified, reject every pending lock that matches the
107 * authentication and type of the lock we failed to get. If there are any
108 * remaining lockers, try to wake up one of them to have a go.
110 static void afs_next_locker(struct afs_vnode
*vnode
, int error
)
112 struct file_lock
*p
, *_p
, *next
= NULL
;
113 struct key
*key
= vnode
->lock_key
;
114 unsigned int fl_type
= F_RDLCK
;
118 if (vnode
->lock_type
== AFS_LOCK_WRITE
)
121 list_for_each_entry_safe(p
, _p
, &vnode
->pending_locks
, fl_u
.afs
.link
) {
123 p
->fl_type
== fl_type
&&
124 afs_file_key(p
->fl_file
) == key
) {
125 list_del_init(&p
->fl_u
.afs
.link
);
126 p
->fl_u
.afs
.state
= error
;
127 wake_up(&p
->fl_wait
);
130 /* Select the next locker to hand off to. */
132 (next
->fl_type
== F_WRLCK
|| p
->fl_type
== F_RDLCK
))
137 vnode
->lock_key
= NULL
;
141 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_SETTING
);
142 next
->fl_u
.afs
.state
= AFS_LOCK_YOUR_TRY
;
143 trace_afs_flock_op(vnode
, next
, afs_flock_op_wake
);
144 wake_up(&next
->fl_wait
);
146 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_NONE
);
147 trace_afs_flock_ev(vnode
, NULL
, afs_flock_no_lockers
, 0);
154 * Kill off all waiters in the the pending lock queue due to the vnode being
157 static void afs_kill_lockers_enoent(struct afs_vnode
*vnode
)
161 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_DELETED
);
163 while (!list_empty(&vnode
->pending_locks
)) {
164 p
= list_entry(vnode
->pending_locks
.next
,
165 struct file_lock
, fl_u
.afs
.link
);
166 list_del_init(&p
->fl_u
.afs
.link
);
167 p
->fl_u
.afs
.state
= -ENOENT
;
168 wake_up(&p
->fl_wait
);
171 key_put(vnode
->lock_key
);
172 vnode
->lock_key
= NULL
;
176 * Get a lock on a file
178 static int afs_set_lock(struct afs_vnode
*vnode
, struct key
*key
,
179 afs_lock_type_t type
)
181 struct afs_status_cb
*scb
;
182 struct afs_fs_cursor fc
;
185 _enter("%s{%llx:%llu.%u},%x,%u",
190 key_serial(key
), type
);
192 scb
= kzalloc(sizeof(struct afs_status_cb
), GFP_KERNEL
);
197 if (afs_begin_vnode_operation(&fc
, vnode
, key
, true)) {
198 while (afs_select_fileserver(&fc
)) {
199 fc
.cb_break
= afs_calc_vnode_cb_break(vnode
);
200 afs_fs_set_lock(&fc
, type
, scb
);
203 afs_check_for_remote_deletion(&fc
, vnode
);
204 afs_vnode_commit_status(&fc
, vnode
, fc
.cb_break
, NULL
, scb
);
205 ret
= afs_end_vnode_operation(&fc
);
209 _leave(" = %d", ret
);
214 * Extend a lock on a file
216 static int afs_extend_lock(struct afs_vnode
*vnode
, struct key
*key
)
218 struct afs_status_cb
*scb
;
219 struct afs_fs_cursor fc
;
222 _enter("%s{%llx:%llu.%u},%x",
229 scb
= kzalloc(sizeof(struct afs_status_cb
), GFP_KERNEL
);
234 if (afs_begin_vnode_operation(&fc
, vnode
, key
, false)) {
235 while (afs_select_current_fileserver(&fc
)) {
236 fc
.cb_break
= afs_calc_vnode_cb_break(vnode
);
237 afs_fs_extend_lock(&fc
, scb
);
240 afs_check_for_remote_deletion(&fc
, vnode
);
241 afs_vnode_commit_status(&fc
, vnode
, fc
.cb_break
, NULL
, scb
);
242 ret
= afs_end_vnode_operation(&fc
);
246 _leave(" = %d", ret
);
251 * Release a lock on a file
253 static int afs_release_lock(struct afs_vnode
*vnode
, struct key
*key
)
255 struct afs_status_cb
*scb
;
256 struct afs_fs_cursor fc
;
259 _enter("%s{%llx:%llu.%u},%x",
266 scb
= kzalloc(sizeof(struct afs_status_cb
), GFP_KERNEL
);
271 if (afs_begin_vnode_operation(&fc
, vnode
, key
, false)) {
272 while (afs_select_current_fileserver(&fc
)) {
273 fc
.cb_break
= afs_calc_vnode_cb_break(vnode
);
274 afs_fs_release_lock(&fc
, scb
);
277 afs_check_for_remote_deletion(&fc
, vnode
);
278 afs_vnode_commit_status(&fc
, vnode
, fc
.cb_break
, NULL
, scb
);
279 ret
= afs_end_vnode_operation(&fc
);
283 _leave(" = %d", ret
);
288 * do work for a lock, including:
289 * - probing for a lock we're waiting on but didn't get immediately
290 * - extending a lock that's close to timing out
292 void afs_lock_work(struct work_struct
*work
)
294 struct afs_vnode
*vnode
=
295 container_of(work
, struct afs_vnode
, lock_work
.work
);
299 _enter("{%llx:%llu}", vnode
->fid
.vid
, vnode
->fid
.vnode
);
301 spin_lock(&vnode
->lock
);
304 _debug("wstate %u for %p", vnode
->lock_state
, vnode
);
305 switch (vnode
->lock_state
) {
306 case AFS_VNODE_LOCK_NEED_UNLOCK
:
307 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_UNLOCKING
);
308 trace_afs_flock_ev(vnode
, NULL
, afs_flock_work_unlocking
, 0);
309 spin_unlock(&vnode
->lock
);
311 /* attempt to release the server lock; if it fails, we just
312 * wait 5 minutes and it'll expire anyway */
313 ret
= afs_release_lock(vnode
, vnode
->lock_key
);
314 if (ret
< 0 && vnode
->lock_state
!= AFS_VNODE_LOCK_DELETED
) {
315 trace_afs_flock_ev(vnode
, NULL
, afs_flock_release_fail
,
317 printk(KERN_WARNING
"AFS:"
318 " Failed to release lock on {%llx:%llx} error %d\n",
319 vnode
->fid
.vid
, vnode
->fid
.vnode
, ret
);
322 spin_lock(&vnode
->lock
);
324 afs_kill_lockers_enoent(vnode
);
326 afs_next_locker(vnode
, 0);
327 spin_unlock(&vnode
->lock
);
330 /* If we've already got a lock, then it must be time to extend that
331 * lock as AFS locks time out after 5 minutes.
333 case AFS_VNODE_LOCK_GRANTED
:
336 ASSERT(!list_empty(&vnode
->granted_locks
));
338 key
= key_get(vnode
->lock_key
);
339 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_EXTENDING
);
340 trace_afs_flock_ev(vnode
, NULL
, afs_flock_work_extending
, 0);
341 spin_unlock(&vnode
->lock
);
343 ret
= afs_extend_lock(vnode
, key
); /* RPC */
347 trace_afs_flock_ev(vnode
, NULL
, afs_flock_extend_fail
,
349 pr_warning("AFS: Failed to extend lock on {%llx:%llx} error %d\n",
350 vnode
->fid
.vid
, vnode
->fid
.vnode
, ret
);
353 spin_lock(&vnode
->lock
);
355 if (ret
== -ENOENT
) {
356 afs_kill_lockers_enoent(vnode
);
357 spin_unlock(&vnode
->lock
);
361 if (vnode
->lock_state
!= AFS_VNODE_LOCK_EXTENDING
)
363 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_GRANTED
);
366 queue_delayed_work(afs_lock_manager
, &vnode
->lock_work
,
368 spin_unlock(&vnode
->lock
);
372 /* If we're waiting for a callback to indicate lock release, we can't
373 * actually rely on this, so need to recheck at regular intervals. The
374 * problem is that the server might not notify us if the lock just
375 * expires (say because a client died) rather than being explicitly
378 case AFS_VNODE_LOCK_WAITING_FOR_CB
:
380 afs_next_locker(vnode
, 0);
381 spin_unlock(&vnode
->lock
);
384 case AFS_VNODE_LOCK_DELETED
:
385 afs_kill_lockers_enoent(vnode
);
386 spin_unlock(&vnode
->lock
);
391 /* Looks like a lock request was withdrawn. */
392 spin_unlock(&vnode
->lock
);
399 * pass responsibility for the unlocking of a vnode on the server to the
400 * manager thread, lest a pending signal in the calling thread interrupt
402 * - the caller must hold the vnode lock
404 static void afs_defer_unlock(struct afs_vnode
*vnode
)
406 _enter("%u", vnode
->lock_state
);
408 if (list_empty(&vnode
->granted_locks
) &&
409 (vnode
->lock_state
== AFS_VNODE_LOCK_GRANTED
||
410 vnode
->lock_state
== AFS_VNODE_LOCK_EXTENDING
)) {
411 cancel_delayed_work(&vnode
->lock_work
);
413 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_NEED_UNLOCK
);
414 trace_afs_flock_ev(vnode
, NULL
, afs_flock_defer_unlock
, 0);
415 queue_delayed_work(afs_lock_manager
, &vnode
->lock_work
, 0);
420 * Check that our view of the file metadata is up to date and check to see
421 * whether we think that we have a locking permit.
423 static int afs_do_setlk_check(struct afs_vnode
*vnode
, struct key
*key
,
424 enum afs_flock_mode mode
, afs_lock_type_t type
)
429 /* Make sure we've got a callback on this file and that our view of the
430 * data version is up to date.
432 ret
= afs_validate(vnode
, key
);
436 /* Check the permission set to see if we're actually going to be
437 * allowed to get a lock on this file.
439 ret
= afs_check_permit(vnode
, key
, &access
);
443 /* At a rough estimation, you need LOCK, WRITE or INSERT perm to
444 * read-lock a file and WRITE or INSERT perm to write-lock a file.
446 * We can't rely on the server to do this for us since if we want to
447 * share a read lock that we already have, we won't go the server.
449 if (type
== AFS_LOCK_READ
) {
450 if (!(access
& (AFS_ACE_INSERT
| AFS_ACE_WRITE
| AFS_ACE_LOCK
)))
453 if (!(access
& (AFS_ACE_INSERT
| AFS_ACE_WRITE
)))
461 * request a lock on a file on the server
463 static int afs_do_setlk(struct file
*file
, struct file_lock
*fl
)
465 struct inode
*inode
= locks_inode(file
);
466 struct afs_vnode
*vnode
= AFS_FS_I(inode
);
467 enum afs_flock_mode mode
= AFS_FS_S(inode
->i_sb
)->flock_mode
;
468 afs_lock_type_t type
;
469 struct key
*key
= afs_file_key(file
);
470 bool partial
, no_server_lock
= false;
473 if (mode
== afs_flock_mode_unset
)
474 mode
= afs_flock_mode_openafs
;
476 _enter("{%llx:%llu},%llu-%llu,%u,%u",
477 vnode
->fid
.vid
, vnode
->fid
.vnode
,
478 fl
->fl_start
, fl
->fl_end
, fl
->fl_type
, mode
);
480 fl
->fl_ops
= &afs_lock_ops
;
481 INIT_LIST_HEAD(&fl
->fl_u
.afs
.link
);
482 fl
->fl_u
.afs
.state
= AFS_LOCK_PENDING
;
484 partial
= (fl
->fl_start
!= 0 || fl
->fl_end
!= OFFSET_MAX
);
485 type
= (fl
->fl_type
== F_RDLCK
) ? AFS_LOCK_READ
: AFS_LOCK_WRITE
;
486 if (mode
== afs_flock_mode_write
&& partial
)
487 type
= AFS_LOCK_WRITE
;
489 ret
= afs_do_setlk_check(vnode
, key
, mode
, type
);
493 trace_afs_flock_op(vnode
, fl
, afs_flock_op_set_lock
);
495 /* AFS3 protocol only supports full-file locks and doesn't provide any
496 * method of upgrade/downgrade, so we need to emulate for partial-file
499 * The OpenAFS client only gets a server lock for a full-file lock and
500 * keeps partial-file locks local. Allow this behaviour to be emulated
503 if (mode
== afs_flock_mode_local
||
504 (partial
&& mode
== afs_flock_mode_openafs
)) {
505 no_server_lock
= true;
506 goto skip_server_lock
;
509 spin_lock(&vnode
->lock
);
510 list_add_tail(&fl
->fl_u
.afs
.link
, &vnode
->pending_locks
);
513 if (vnode
->lock_state
== AFS_VNODE_LOCK_DELETED
)
516 /* If we've already got a lock on the server then try to move to having
517 * the VFS grant the requested lock. Note that this means that other
518 * clients may get starved out.
520 _debug("try %u", vnode
->lock_state
);
521 if (vnode
->lock_state
== AFS_VNODE_LOCK_GRANTED
) {
522 if (type
== AFS_LOCK_READ
) {
523 _debug("instant readlock");
524 list_move_tail(&fl
->fl_u
.afs
.link
, &vnode
->granted_locks
);
525 fl
->fl_u
.afs
.state
= AFS_LOCK_GRANTED
;
526 goto vnode_is_locked_u
;
529 if (vnode
->lock_type
== AFS_LOCK_WRITE
) {
530 _debug("instant writelock");
531 list_move_tail(&fl
->fl_u
.afs
.link
, &vnode
->granted_locks
);
532 fl
->fl_u
.afs
.state
= AFS_LOCK_GRANTED
;
533 goto vnode_is_locked_u
;
537 if (vnode
->lock_state
== AFS_VNODE_LOCK_NONE
&&
538 !(fl
->fl_flags
& FL_SLEEP
)) {
540 if (type
== AFS_LOCK_READ
) {
541 if (vnode
->status
.lock_count
== -1)
542 goto lock_is_contended
; /* Write locked */
544 if (vnode
->status
.lock_count
!= 0)
545 goto lock_is_contended
; /* Locked */
549 if (vnode
->lock_state
!= AFS_VNODE_LOCK_NONE
)
553 /* We don't have a lock on this vnode and we aren't currently waiting
554 * for one either, so ask the server for a lock.
556 * Note that we need to be careful if we get interrupted by a signal
557 * after dispatching the request as we may still get the lock, even
558 * though we don't wait for the reply (it's not too bad a problem - the
559 * lock will expire in 5 mins anyway).
561 trace_afs_flock_ev(vnode
, fl
, afs_flock_try_to_lock
, 0);
562 vnode
->lock_key
= key_get(key
);
563 vnode
->lock_type
= type
;
564 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_SETTING
);
565 spin_unlock(&vnode
->lock
);
567 ret
= afs_set_lock(vnode
, key
, type
); /* RPC */
569 spin_lock(&vnode
->lock
);
576 fl
->fl_u
.afs
.state
= ret
;
577 trace_afs_flock_ev(vnode
, fl
, afs_flock_fail_perm
, ret
);
578 list_del_init(&fl
->fl_u
.afs
.link
);
579 afs_next_locker(vnode
, ret
);
583 fl
->fl_u
.afs
.state
= ret
;
584 trace_afs_flock_ev(vnode
, fl
, afs_flock_fail_other
, ret
);
585 list_del_init(&fl
->fl_u
.afs
.link
);
586 afs_kill_lockers_enoent(vnode
);
590 fl
->fl_u
.afs
.state
= ret
;
591 trace_afs_flock_ev(vnode
, fl
, afs_flock_fail_other
, ret
);
592 list_del_init(&fl
->fl_u
.afs
.link
);
593 afs_next_locker(vnode
, 0);
597 /* The server doesn't have a lock-waiting queue, so the client
598 * will have to retry. The server will break the outstanding
599 * callbacks on a file when a lock is released.
601 ASSERT(list_empty(&vnode
->granted_locks
));
602 ASSERTCMP(vnode
->pending_locks
.next
, ==, &fl
->fl_u
.afs
.link
);
603 goto lock_is_contended
;
606 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_GRANTED
);
607 trace_afs_flock_ev(vnode
, fl
, afs_flock_acquired
, type
);
608 afs_grant_locks(vnode
);
609 goto vnode_is_locked_u
;
613 spin_unlock(&vnode
->lock
);
615 /* the lock has been granted by the server... */
616 ASSERTCMP(fl
->fl_u
.afs
.state
, ==, AFS_LOCK_GRANTED
);
619 /* ... but the VFS still needs to distribute access on this client. */
620 trace_afs_flock_ev(vnode
, fl
, afs_flock_vfs_locking
, 0);
621 ret
= locks_lock_file_wait(file
, fl
);
622 trace_afs_flock_ev(vnode
, fl
, afs_flock_vfs_lock
, ret
);
624 goto vfs_rejected_lock
;
626 /* Again, make sure we've got a callback on this file and, again, make
627 * sure that our view of the data version is up to date (we ignore
628 * errors incurred here and deal with the consequences elsewhere).
630 afs_validate(vnode
, key
);
635 if (!(fl
->fl_flags
& FL_SLEEP
)) {
636 list_del_init(&fl
->fl_u
.afs
.link
);
637 afs_next_locker(vnode
, 0);
642 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_WAITING_FOR_CB
);
643 trace_afs_flock_ev(vnode
, fl
, afs_flock_would_block
, ret
);
644 queue_delayed_work(afs_lock_manager
, &vnode
->lock_work
, HZ
* 5);
647 /* We're going to have to wait. Either this client doesn't have a lock
648 * on the server yet and we need to wait for a callback to occur, or
649 * the client does have a lock on the server, but it's shared and we
650 * need an exclusive lock.
652 spin_unlock(&vnode
->lock
);
654 trace_afs_flock_ev(vnode
, fl
, afs_flock_waiting
, 0);
655 ret
= wait_event_interruptible(fl
->fl_wait
,
656 fl
->fl_u
.afs
.state
!= AFS_LOCK_PENDING
);
657 trace_afs_flock_ev(vnode
, fl
, afs_flock_waited
, ret
);
659 if (fl
->fl_u
.afs
.state
>= 0 && fl
->fl_u
.afs
.state
!= AFS_LOCK_GRANTED
) {
660 spin_lock(&vnode
->lock
);
662 switch (fl
->fl_u
.afs
.state
) {
663 case AFS_LOCK_YOUR_TRY
:
664 fl
->fl_u
.afs
.state
= AFS_LOCK_PENDING
;
666 case AFS_LOCK_PENDING
:
668 /* We need to retry the lock. We may not be
669 * notified by the server if it just expired
670 * rather than being released.
672 ASSERTCMP(vnode
->lock_state
, ==, AFS_VNODE_LOCK_WAITING_FOR_CB
);
673 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_SETTING
);
674 fl
->fl_u
.afs
.state
= AFS_LOCK_PENDING
;
678 case AFS_LOCK_GRANTED
:
683 spin_unlock(&vnode
->lock
);
686 if (fl
->fl_u
.afs
.state
== AFS_LOCK_GRANTED
)
687 goto vnode_is_locked
;
688 ret
= fl
->fl_u
.afs
.state
;
692 /* The VFS rejected the lock we just obtained, so we have to discard
693 * what we just got. We defer this to the lock manager work item to
696 _debug("vfs refused %d", ret
);
699 spin_lock(&vnode
->lock
);
700 list_del_init(&fl
->fl_u
.afs
.link
);
701 afs_defer_unlock(vnode
);
704 spin_unlock(&vnode
->lock
);
706 _leave(" = %d", ret
);
711 * unlock on a file on the server
713 static int afs_do_unlk(struct file
*file
, struct file_lock
*fl
)
715 struct afs_vnode
*vnode
= AFS_FS_I(locks_inode(file
));
718 _enter("{%llx:%llu},%u", vnode
->fid
.vid
, vnode
->fid
.vnode
, fl
->fl_type
);
720 trace_afs_flock_op(vnode
, fl
, afs_flock_op_unlock
);
722 /* Flush all pending writes before doing anything with locks. */
725 ret
= locks_lock_file_wait(file
, fl
);
726 _leave(" = %d [%u]", ret
, vnode
->lock_state
);
731 * return information about a lock we currently hold, if indeed we hold one
733 static int afs_do_getlk(struct file
*file
, struct file_lock
*fl
)
735 struct afs_vnode
*vnode
= AFS_FS_I(locks_inode(file
));
736 struct key
*key
= afs_file_key(file
);
741 if (vnode
->lock_state
== AFS_VNODE_LOCK_DELETED
)
744 fl
->fl_type
= F_UNLCK
;
746 /* check local lock records first */
747 posix_test_lock(file
, fl
);
748 if (fl
->fl_type
== F_UNLCK
) {
749 /* no local locks; consult the server */
750 ret
= afs_fetch_status(vnode
, key
, false, NULL
);
754 lock_count
= READ_ONCE(vnode
->status
.lock_count
);
755 if (lock_count
!= 0) {
757 fl
->fl_type
= F_RDLCK
;
759 fl
->fl_type
= F_WRLCK
;
761 fl
->fl_end
= OFFSET_MAX
;
768 _leave(" = %d [%hd]", ret
, fl
->fl_type
);
773 * manage POSIX locks on a file
775 int afs_lock(struct file
*file
, int cmd
, struct file_lock
*fl
)
777 struct afs_vnode
*vnode
= AFS_FS_I(locks_inode(file
));
778 enum afs_flock_operation op
;
781 _enter("{%llx:%llu},%d,{t=%x,fl=%x,r=%Ld:%Ld}",
782 vnode
->fid
.vid
, vnode
->fid
.vnode
, cmd
,
783 fl
->fl_type
, fl
->fl_flags
,
784 (long long) fl
->fl_start
, (long long) fl
->fl_end
);
786 /* AFS doesn't support mandatory locks */
787 if (__mandatory_lock(&vnode
->vfs_inode
) && fl
->fl_type
!= F_UNLCK
)
791 return afs_do_getlk(file
, fl
);
793 fl
->fl_u
.afs
.debug_id
= atomic_inc_return(&afs_file_lock_debug_id
);
794 trace_afs_flock_op(vnode
, fl
, afs_flock_op_lock
);
796 if (fl
->fl_type
== F_UNLCK
)
797 ret
= afs_do_unlk(file
, fl
);
799 ret
= afs_do_setlk(file
, fl
);
802 case 0: op
= afs_flock_op_return_ok
; break;
803 case -EAGAIN
: op
= afs_flock_op_return_eagain
; break;
804 case -EDEADLK
: op
= afs_flock_op_return_edeadlk
; break;
805 default: op
= afs_flock_op_return_error
; break;
807 trace_afs_flock_op(vnode
, fl
, op
);
812 * manage FLOCK locks on a file
814 int afs_flock(struct file
*file
, int cmd
, struct file_lock
*fl
)
816 struct afs_vnode
*vnode
= AFS_FS_I(locks_inode(file
));
817 enum afs_flock_operation op
;
820 _enter("{%llx:%llu},%d,{t=%x,fl=%x}",
821 vnode
->fid
.vid
, vnode
->fid
.vnode
, cmd
,
822 fl
->fl_type
, fl
->fl_flags
);
825 * No BSD flocks over NFS allowed.
826 * Note: we could try to fake a POSIX lock request here by
827 * using ((u32) filp | 0x80000000) or some such as the pid.
828 * Not sure whether that would be unique, though, or whether
829 * that would break in other places.
831 if (!(fl
->fl_flags
& FL_FLOCK
))
834 fl
->fl_u
.afs
.debug_id
= atomic_inc_return(&afs_file_lock_debug_id
);
835 trace_afs_flock_op(vnode
, fl
, afs_flock_op_flock
);
837 /* we're simulating flock() locks using posix locks on the server */
838 if (fl
->fl_type
== F_UNLCK
)
839 ret
= afs_do_unlk(file
, fl
);
841 ret
= afs_do_setlk(file
, fl
);
844 case 0: op
= afs_flock_op_return_ok
; break;
845 case -EAGAIN
: op
= afs_flock_op_return_eagain
; break;
846 case -EDEADLK
: op
= afs_flock_op_return_edeadlk
; break;
847 default: op
= afs_flock_op_return_error
; break;
849 trace_afs_flock_op(vnode
, fl
, op
);
854 * the POSIX lock management core VFS code copies the lock record and adds the
855 * copy into its own list, so we need to add that copy to the vnode's lock
856 * queue in the same place as the original (which will be deleted shortly
859 static void afs_fl_copy_lock(struct file_lock
*new, struct file_lock
*fl
)
861 struct afs_vnode
*vnode
= AFS_FS_I(locks_inode(fl
->fl_file
));
865 new->fl_u
.afs
.debug_id
= atomic_inc_return(&afs_file_lock_debug_id
);
867 spin_lock(&vnode
->lock
);
868 trace_afs_flock_op(vnode
, new, afs_flock_op_copy_lock
);
869 list_add(&new->fl_u
.afs
.link
, &fl
->fl_u
.afs
.link
);
870 spin_unlock(&vnode
->lock
);
874 * need to remove this lock from the vnode queue when it's removed from the
877 static void afs_fl_release_private(struct file_lock
*fl
)
879 struct afs_vnode
*vnode
= AFS_FS_I(locks_inode(fl
->fl_file
));
883 spin_lock(&vnode
->lock
);
885 trace_afs_flock_op(vnode
, fl
, afs_flock_op_release_lock
);
886 list_del_init(&fl
->fl_u
.afs
.link
);
887 if (list_empty(&vnode
->granted_locks
))
888 afs_defer_unlock(vnode
);
890 _debug("state %u for %p", vnode
->lock_state
, vnode
);
891 spin_unlock(&vnode
->lock
);