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_operation
*op
= call
->op
;
74 struct afs_vnode
*vnode
= op
->file
[0].vnode
;
76 if (call
->error
== 0) {
77 spin_lock(&vnode
->lock
);
78 trace_afs_flock_ev(vnode
, NULL
, afs_flock_timestamp
, 0);
79 vnode
->locked_at
= call
->reply_time
;
80 afs_schedule_lock_extension(vnode
);
81 spin_unlock(&vnode
->lock
);
86 * grant one or more locks (readlocks are allowed to jump the queue if the
87 * first lock in the queue is itself a readlock)
88 * - the caller must hold the vnode lock
90 static void afs_grant_locks(struct afs_vnode
*vnode
)
92 struct file_lock
*p
, *_p
;
93 bool exclusive
= (vnode
->lock_type
== AFS_LOCK_WRITE
);
95 list_for_each_entry_safe(p
, _p
, &vnode
->pending_locks
, fl_u
.afs
.link
) {
96 if (!exclusive
&& p
->fl_type
== F_WRLCK
)
99 list_move_tail(&p
->fl_u
.afs
.link
, &vnode
->granted_locks
);
100 p
->fl_u
.afs
.state
= AFS_LOCK_GRANTED
;
101 trace_afs_flock_op(vnode
, p
, afs_flock_op_grant
);
102 wake_up(&p
->fl_wait
);
107 * If an error is specified, reject every pending lock that matches the
108 * authentication and type of the lock we failed to get. If there are any
109 * remaining lockers, try to wake up one of them to have a go.
111 static void afs_next_locker(struct afs_vnode
*vnode
, int error
)
113 struct file_lock
*p
, *_p
, *next
= NULL
;
114 struct key
*key
= vnode
->lock_key
;
115 unsigned int fl_type
= F_RDLCK
;
119 if (vnode
->lock_type
== AFS_LOCK_WRITE
)
122 list_for_each_entry_safe(p
, _p
, &vnode
->pending_locks
, fl_u
.afs
.link
) {
124 p
->fl_type
== fl_type
&&
125 afs_file_key(p
->fl_file
) == key
) {
126 list_del_init(&p
->fl_u
.afs
.link
);
127 p
->fl_u
.afs
.state
= error
;
128 wake_up(&p
->fl_wait
);
131 /* Select the next locker to hand off to. */
133 (next
->fl_type
== F_WRLCK
|| p
->fl_type
== F_RDLCK
))
138 vnode
->lock_key
= NULL
;
142 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_SETTING
);
143 next
->fl_u
.afs
.state
= AFS_LOCK_YOUR_TRY
;
144 trace_afs_flock_op(vnode
, next
, afs_flock_op_wake
);
145 wake_up(&next
->fl_wait
);
147 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_NONE
);
148 trace_afs_flock_ev(vnode
, NULL
, afs_flock_no_lockers
, 0);
155 * Kill off all waiters in the the pending lock queue due to the vnode being
158 static void afs_kill_lockers_enoent(struct afs_vnode
*vnode
)
162 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_DELETED
);
164 while (!list_empty(&vnode
->pending_locks
)) {
165 p
= list_entry(vnode
->pending_locks
.next
,
166 struct file_lock
, fl_u
.afs
.link
);
167 list_del_init(&p
->fl_u
.afs
.link
);
168 p
->fl_u
.afs
.state
= -ENOENT
;
169 wake_up(&p
->fl_wait
);
172 key_put(vnode
->lock_key
);
173 vnode
->lock_key
= NULL
;
176 static void afs_lock_success(struct afs_operation
*op
)
178 _enter("op=%08x", op
->debug_id
);
179 afs_vnode_commit_status(op
, &op
->file
[0]);
182 static const struct afs_operation_ops afs_set_lock_operation
= {
183 .issue_afs_rpc
= afs_fs_set_lock
,
184 .issue_yfs_rpc
= yfs_fs_set_lock
,
185 .success
= afs_lock_success
,
186 .aborted
= afs_check_for_remote_deletion
,
190 * Get a lock on a file
192 static int afs_set_lock(struct afs_vnode
*vnode
, struct key
*key
,
193 afs_lock_type_t type
)
195 struct afs_operation
*op
;
197 _enter("%s{%llx:%llu.%u},%x,%u",
202 key_serial(key
), type
);
204 op
= afs_alloc_operation(key
, vnode
->volume
);
208 afs_op_set_vnode(op
, 0, vnode
);
210 op
->lock
.type
= type
;
211 op
->ops
= &afs_set_lock_operation
;
212 return afs_do_sync_operation(op
);
215 static const struct afs_operation_ops afs_extend_lock_operation
= {
216 .issue_afs_rpc
= afs_fs_extend_lock
,
217 .issue_yfs_rpc
= yfs_fs_extend_lock
,
218 .success
= afs_lock_success
,
222 * Extend a lock on a file
224 static int afs_extend_lock(struct afs_vnode
*vnode
, struct key
*key
)
226 struct afs_operation
*op
;
228 _enter("%s{%llx:%llu.%u},%x",
235 op
= afs_alloc_operation(key
, vnode
->volume
);
239 afs_op_set_vnode(op
, 0, vnode
);
241 op
->flags
|= AFS_OPERATION_UNINTR
;
242 op
->ops
= &afs_extend_lock_operation
;
243 return afs_do_sync_operation(op
);
246 static const struct afs_operation_ops afs_release_lock_operation
= {
247 .issue_afs_rpc
= afs_fs_release_lock
,
248 .issue_yfs_rpc
= yfs_fs_release_lock
,
249 .success
= afs_lock_success
,
253 * Release a lock on a file
255 static int afs_release_lock(struct afs_vnode
*vnode
, struct key
*key
)
257 struct afs_operation
*op
;
259 _enter("%s{%llx:%llu.%u},%x",
266 op
= afs_alloc_operation(key
, vnode
->volume
);
270 afs_op_set_vnode(op
, 0, vnode
);
272 op
->flags
|= AFS_OPERATION_UNINTR
;
273 op
->ops
= &afs_release_lock_operation
;
274 return afs_do_sync_operation(op
);
278 * do work for a lock, including:
279 * - probing for a lock we're waiting on but didn't get immediately
280 * - extending a lock that's close to timing out
282 void afs_lock_work(struct work_struct
*work
)
284 struct afs_vnode
*vnode
=
285 container_of(work
, struct afs_vnode
, lock_work
.work
);
289 _enter("{%llx:%llu}", vnode
->fid
.vid
, vnode
->fid
.vnode
);
291 spin_lock(&vnode
->lock
);
294 _debug("wstate %u for %p", vnode
->lock_state
, vnode
);
295 switch (vnode
->lock_state
) {
296 case AFS_VNODE_LOCK_NEED_UNLOCK
:
297 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_UNLOCKING
);
298 trace_afs_flock_ev(vnode
, NULL
, afs_flock_work_unlocking
, 0);
299 spin_unlock(&vnode
->lock
);
301 /* attempt to release the server lock; if it fails, we just
302 * wait 5 minutes and it'll expire anyway */
303 ret
= afs_release_lock(vnode
, vnode
->lock_key
);
304 if (ret
< 0 && vnode
->lock_state
!= AFS_VNODE_LOCK_DELETED
) {
305 trace_afs_flock_ev(vnode
, NULL
, afs_flock_release_fail
,
307 printk(KERN_WARNING
"AFS:"
308 " Failed to release lock on {%llx:%llx} error %d\n",
309 vnode
->fid
.vid
, vnode
->fid
.vnode
, ret
);
312 spin_lock(&vnode
->lock
);
314 afs_kill_lockers_enoent(vnode
);
316 afs_next_locker(vnode
, 0);
317 spin_unlock(&vnode
->lock
);
320 /* If we've already got a lock, then it must be time to extend that
321 * lock as AFS locks time out after 5 minutes.
323 case AFS_VNODE_LOCK_GRANTED
:
326 ASSERT(!list_empty(&vnode
->granted_locks
));
328 key
= key_get(vnode
->lock_key
);
329 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_EXTENDING
);
330 trace_afs_flock_ev(vnode
, NULL
, afs_flock_work_extending
, 0);
331 spin_unlock(&vnode
->lock
);
333 ret
= afs_extend_lock(vnode
, key
); /* RPC */
337 trace_afs_flock_ev(vnode
, NULL
, afs_flock_extend_fail
,
339 pr_warn("AFS: Failed to extend lock on {%llx:%llx} error %d\n",
340 vnode
->fid
.vid
, vnode
->fid
.vnode
, ret
);
343 spin_lock(&vnode
->lock
);
345 if (ret
== -ENOENT
) {
346 afs_kill_lockers_enoent(vnode
);
347 spin_unlock(&vnode
->lock
);
351 if (vnode
->lock_state
!= AFS_VNODE_LOCK_EXTENDING
)
353 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_GRANTED
);
356 queue_delayed_work(afs_lock_manager
, &vnode
->lock_work
,
358 spin_unlock(&vnode
->lock
);
362 /* If we're waiting for a callback to indicate lock release, we can't
363 * actually rely on this, so need to recheck at regular intervals. The
364 * problem is that the server might not notify us if the lock just
365 * expires (say because a client died) rather than being explicitly
368 case AFS_VNODE_LOCK_WAITING_FOR_CB
:
370 afs_next_locker(vnode
, 0);
371 spin_unlock(&vnode
->lock
);
374 case AFS_VNODE_LOCK_DELETED
:
375 afs_kill_lockers_enoent(vnode
);
376 spin_unlock(&vnode
->lock
);
381 /* Looks like a lock request was withdrawn. */
382 spin_unlock(&vnode
->lock
);
389 * pass responsibility for the unlocking of a vnode on the server to the
390 * manager thread, lest a pending signal in the calling thread interrupt
392 * - the caller must hold the vnode lock
394 static void afs_defer_unlock(struct afs_vnode
*vnode
)
396 _enter("%u", vnode
->lock_state
);
398 if (list_empty(&vnode
->granted_locks
) &&
399 (vnode
->lock_state
== AFS_VNODE_LOCK_GRANTED
||
400 vnode
->lock_state
== AFS_VNODE_LOCK_EXTENDING
)) {
401 cancel_delayed_work(&vnode
->lock_work
);
403 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_NEED_UNLOCK
);
404 trace_afs_flock_ev(vnode
, NULL
, afs_flock_defer_unlock
, 0);
405 queue_delayed_work(afs_lock_manager
, &vnode
->lock_work
, 0);
410 * Check that our view of the file metadata is up to date and check to see
411 * whether we think that we have a locking permit.
413 static int afs_do_setlk_check(struct afs_vnode
*vnode
, struct key
*key
,
414 enum afs_flock_mode mode
, afs_lock_type_t type
)
419 /* Make sure we've got a callback on this file and that our view of the
420 * data version is up to date.
422 ret
= afs_validate(vnode
, key
);
426 /* Check the permission set to see if we're actually going to be
427 * allowed to get a lock on this file.
429 ret
= afs_check_permit(vnode
, key
, &access
);
433 /* At a rough estimation, you need LOCK, WRITE or INSERT perm to
434 * read-lock a file and WRITE or INSERT perm to write-lock a file.
436 * We can't rely on the server to do this for us since if we want to
437 * share a read lock that we already have, we won't go the server.
439 if (type
== AFS_LOCK_READ
) {
440 if (!(access
& (AFS_ACE_INSERT
| AFS_ACE_WRITE
| AFS_ACE_LOCK
)))
443 if (!(access
& (AFS_ACE_INSERT
| AFS_ACE_WRITE
)))
451 * request a lock on a file on the server
453 static int afs_do_setlk(struct file
*file
, struct file_lock
*fl
)
455 struct inode
*inode
= locks_inode(file
);
456 struct afs_vnode
*vnode
= AFS_FS_I(inode
);
457 enum afs_flock_mode mode
= AFS_FS_S(inode
->i_sb
)->flock_mode
;
458 afs_lock_type_t type
;
459 struct key
*key
= afs_file_key(file
);
460 bool partial
, no_server_lock
= false;
463 if (mode
== afs_flock_mode_unset
)
464 mode
= afs_flock_mode_openafs
;
466 _enter("{%llx:%llu},%llu-%llu,%u,%u",
467 vnode
->fid
.vid
, vnode
->fid
.vnode
,
468 fl
->fl_start
, fl
->fl_end
, fl
->fl_type
, mode
);
470 fl
->fl_ops
= &afs_lock_ops
;
471 INIT_LIST_HEAD(&fl
->fl_u
.afs
.link
);
472 fl
->fl_u
.afs
.state
= AFS_LOCK_PENDING
;
474 partial
= (fl
->fl_start
!= 0 || fl
->fl_end
!= OFFSET_MAX
);
475 type
= (fl
->fl_type
== F_RDLCK
) ? AFS_LOCK_READ
: AFS_LOCK_WRITE
;
476 if (mode
== afs_flock_mode_write
&& partial
)
477 type
= AFS_LOCK_WRITE
;
479 ret
= afs_do_setlk_check(vnode
, key
, mode
, type
);
483 trace_afs_flock_op(vnode
, fl
, afs_flock_op_set_lock
);
485 /* AFS3 protocol only supports full-file locks and doesn't provide any
486 * method of upgrade/downgrade, so we need to emulate for partial-file
489 * The OpenAFS client only gets a server lock for a full-file lock and
490 * keeps partial-file locks local. Allow this behaviour to be emulated
493 if (mode
== afs_flock_mode_local
||
494 (partial
&& mode
== afs_flock_mode_openafs
)) {
495 no_server_lock
= true;
496 goto skip_server_lock
;
499 spin_lock(&vnode
->lock
);
500 list_add_tail(&fl
->fl_u
.afs
.link
, &vnode
->pending_locks
);
503 if (vnode
->lock_state
== AFS_VNODE_LOCK_DELETED
)
506 /* If we've already got a lock on the server then try to move to having
507 * the VFS grant the requested lock. Note that this means that other
508 * clients may get starved out.
510 _debug("try %u", vnode
->lock_state
);
511 if (vnode
->lock_state
== AFS_VNODE_LOCK_GRANTED
) {
512 if (type
== AFS_LOCK_READ
) {
513 _debug("instant readlock");
514 list_move_tail(&fl
->fl_u
.afs
.link
, &vnode
->granted_locks
);
515 fl
->fl_u
.afs
.state
= AFS_LOCK_GRANTED
;
516 goto vnode_is_locked_u
;
519 if (vnode
->lock_type
== AFS_LOCK_WRITE
) {
520 _debug("instant writelock");
521 list_move_tail(&fl
->fl_u
.afs
.link
, &vnode
->granted_locks
);
522 fl
->fl_u
.afs
.state
= AFS_LOCK_GRANTED
;
523 goto vnode_is_locked_u
;
527 if (vnode
->lock_state
== AFS_VNODE_LOCK_NONE
&&
528 !(fl
->fl_flags
& FL_SLEEP
)) {
530 if (type
== AFS_LOCK_READ
) {
531 if (vnode
->status
.lock_count
== -1)
532 goto lock_is_contended
; /* Write locked */
534 if (vnode
->status
.lock_count
!= 0)
535 goto lock_is_contended
; /* Locked */
539 if (vnode
->lock_state
!= AFS_VNODE_LOCK_NONE
)
543 /* We don't have a lock on this vnode and we aren't currently waiting
544 * for one either, so ask the server for a lock.
546 * Note that we need to be careful if we get interrupted by a signal
547 * after dispatching the request as we may still get the lock, even
548 * though we don't wait for the reply (it's not too bad a problem - the
549 * lock will expire in 5 mins anyway).
551 trace_afs_flock_ev(vnode
, fl
, afs_flock_try_to_lock
, 0);
552 vnode
->lock_key
= key_get(key
);
553 vnode
->lock_type
= type
;
554 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_SETTING
);
555 spin_unlock(&vnode
->lock
);
557 ret
= afs_set_lock(vnode
, key
, type
); /* RPC */
559 spin_lock(&vnode
->lock
);
566 fl
->fl_u
.afs
.state
= ret
;
567 trace_afs_flock_ev(vnode
, fl
, afs_flock_fail_perm
, ret
);
568 list_del_init(&fl
->fl_u
.afs
.link
);
569 afs_next_locker(vnode
, ret
);
573 fl
->fl_u
.afs
.state
= ret
;
574 trace_afs_flock_ev(vnode
, fl
, afs_flock_fail_other
, ret
);
575 list_del_init(&fl
->fl_u
.afs
.link
);
576 afs_kill_lockers_enoent(vnode
);
580 fl
->fl_u
.afs
.state
= ret
;
581 trace_afs_flock_ev(vnode
, fl
, afs_flock_fail_other
, ret
);
582 list_del_init(&fl
->fl_u
.afs
.link
);
583 afs_next_locker(vnode
, 0);
587 /* The server doesn't have a lock-waiting queue, so the client
588 * will have to retry. The server will break the outstanding
589 * callbacks on a file when a lock is released.
591 ASSERT(list_empty(&vnode
->granted_locks
));
592 ASSERTCMP(vnode
->pending_locks
.next
, ==, &fl
->fl_u
.afs
.link
);
593 goto lock_is_contended
;
596 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_GRANTED
);
597 trace_afs_flock_ev(vnode
, fl
, afs_flock_acquired
, type
);
598 afs_grant_locks(vnode
);
599 goto vnode_is_locked_u
;
603 spin_unlock(&vnode
->lock
);
605 /* the lock has been granted by the server... */
606 ASSERTCMP(fl
->fl_u
.afs
.state
, ==, AFS_LOCK_GRANTED
);
609 /* ... but the VFS still needs to distribute access on this client. */
610 trace_afs_flock_ev(vnode
, fl
, afs_flock_vfs_locking
, 0);
611 ret
= locks_lock_file_wait(file
, fl
);
612 trace_afs_flock_ev(vnode
, fl
, afs_flock_vfs_lock
, ret
);
614 goto vfs_rejected_lock
;
616 /* Again, make sure we've got a callback on this file and, again, make
617 * sure that our view of the data version is up to date (we ignore
618 * errors incurred here and deal with the consequences elsewhere).
620 afs_validate(vnode
, key
);
625 if (!(fl
->fl_flags
& FL_SLEEP
)) {
626 list_del_init(&fl
->fl_u
.afs
.link
);
627 afs_next_locker(vnode
, 0);
632 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_WAITING_FOR_CB
);
633 trace_afs_flock_ev(vnode
, fl
, afs_flock_would_block
, ret
);
634 queue_delayed_work(afs_lock_manager
, &vnode
->lock_work
, HZ
* 5);
637 /* We're going to have to wait. Either this client doesn't have a lock
638 * on the server yet and we need to wait for a callback to occur, or
639 * the client does have a lock on the server, but it's shared and we
640 * need an exclusive lock.
642 spin_unlock(&vnode
->lock
);
644 trace_afs_flock_ev(vnode
, fl
, afs_flock_waiting
, 0);
645 ret
= wait_event_interruptible(fl
->fl_wait
,
646 fl
->fl_u
.afs
.state
!= AFS_LOCK_PENDING
);
647 trace_afs_flock_ev(vnode
, fl
, afs_flock_waited
, ret
);
649 if (fl
->fl_u
.afs
.state
>= 0 && fl
->fl_u
.afs
.state
!= AFS_LOCK_GRANTED
) {
650 spin_lock(&vnode
->lock
);
652 switch (fl
->fl_u
.afs
.state
) {
653 case AFS_LOCK_YOUR_TRY
:
654 fl
->fl_u
.afs
.state
= AFS_LOCK_PENDING
;
656 case AFS_LOCK_PENDING
:
658 /* We need to retry the lock. We may not be
659 * notified by the server if it just expired
660 * rather than being released.
662 ASSERTCMP(vnode
->lock_state
, ==, AFS_VNODE_LOCK_WAITING_FOR_CB
);
663 afs_set_lock_state(vnode
, AFS_VNODE_LOCK_SETTING
);
664 fl
->fl_u
.afs
.state
= AFS_LOCK_PENDING
;
668 case AFS_LOCK_GRANTED
:
673 spin_unlock(&vnode
->lock
);
676 if (fl
->fl_u
.afs
.state
== AFS_LOCK_GRANTED
)
677 goto vnode_is_locked
;
678 ret
= fl
->fl_u
.afs
.state
;
682 /* The VFS rejected the lock we just obtained, so we have to discard
683 * what we just got. We defer this to the lock manager work item to
686 _debug("vfs refused %d", ret
);
689 spin_lock(&vnode
->lock
);
690 list_del_init(&fl
->fl_u
.afs
.link
);
691 afs_defer_unlock(vnode
);
694 spin_unlock(&vnode
->lock
);
696 _leave(" = %d", ret
);
701 * unlock on a file on the server
703 static int afs_do_unlk(struct file
*file
, struct file_lock
*fl
)
705 struct afs_vnode
*vnode
= AFS_FS_I(locks_inode(file
));
708 _enter("{%llx:%llu},%u", vnode
->fid
.vid
, vnode
->fid
.vnode
, fl
->fl_type
);
710 trace_afs_flock_op(vnode
, fl
, afs_flock_op_unlock
);
712 /* Flush all pending writes before doing anything with locks. */
715 ret
= locks_lock_file_wait(file
, fl
);
716 _leave(" = %d [%u]", ret
, vnode
->lock_state
);
721 * return information about a lock we currently hold, if indeed we hold one
723 static int afs_do_getlk(struct file
*file
, struct file_lock
*fl
)
725 struct afs_vnode
*vnode
= AFS_FS_I(locks_inode(file
));
726 struct key
*key
= afs_file_key(file
);
731 if (vnode
->lock_state
== AFS_VNODE_LOCK_DELETED
)
734 fl
->fl_type
= F_UNLCK
;
736 /* check local lock records first */
737 posix_test_lock(file
, fl
);
738 if (fl
->fl_type
== F_UNLCK
) {
739 /* no local locks; consult the server */
740 ret
= afs_fetch_status(vnode
, key
, false, NULL
);
744 lock_count
= READ_ONCE(vnode
->status
.lock_count
);
745 if (lock_count
!= 0) {
747 fl
->fl_type
= F_RDLCK
;
749 fl
->fl_type
= F_WRLCK
;
751 fl
->fl_end
= OFFSET_MAX
;
758 _leave(" = %d [%hd]", ret
, fl
->fl_type
);
763 * manage POSIX locks on a file
765 int afs_lock(struct file
*file
, int cmd
, struct file_lock
*fl
)
767 struct afs_vnode
*vnode
= AFS_FS_I(locks_inode(file
));
768 enum afs_flock_operation op
;
771 _enter("{%llx:%llu},%d,{t=%x,fl=%x,r=%Ld:%Ld}",
772 vnode
->fid
.vid
, vnode
->fid
.vnode
, cmd
,
773 fl
->fl_type
, fl
->fl_flags
,
774 (long long) fl
->fl_start
, (long long) fl
->fl_end
);
776 /* AFS doesn't support mandatory locks */
777 if (__mandatory_lock(&vnode
->vfs_inode
) && fl
->fl_type
!= F_UNLCK
)
781 return afs_do_getlk(file
, fl
);
783 fl
->fl_u
.afs
.debug_id
= atomic_inc_return(&afs_file_lock_debug_id
);
784 trace_afs_flock_op(vnode
, fl
, afs_flock_op_lock
);
786 if (fl
->fl_type
== F_UNLCK
)
787 ret
= afs_do_unlk(file
, fl
);
789 ret
= afs_do_setlk(file
, fl
);
792 case 0: op
= afs_flock_op_return_ok
; break;
793 case -EAGAIN
: op
= afs_flock_op_return_eagain
; break;
794 case -EDEADLK
: op
= afs_flock_op_return_edeadlk
; break;
795 default: op
= afs_flock_op_return_error
; break;
797 trace_afs_flock_op(vnode
, fl
, op
);
802 * manage FLOCK locks on a file
804 int afs_flock(struct file
*file
, int cmd
, struct file_lock
*fl
)
806 struct afs_vnode
*vnode
= AFS_FS_I(locks_inode(file
));
807 enum afs_flock_operation op
;
810 _enter("{%llx:%llu},%d,{t=%x,fl=%x}",
811 vnode
->fid
.vid
, vnode
->fid
.vnode
, cmd
,
812 fl
->fl_type
, fl
->fl_flags
);
815 * No BSD flocks over NFS allowed.
816 * Note: we could try to fake a POSIX lock request here by
817 * using ((u32) filp | 0x80000000) or some such as the pid.
818 * Not sure whether that would be unique, though, or whether
819 * that would break in other places.
821 if (!(fl
->fl_flags
& FL_FLOCK
))
824 fl
->fl_u
.afs
.debug_id
= atomic_inc_return(&afs_file_lock_debug_id
);
825 trace_afs_flock_op(vnode
, fl
, afs_flock_op_flock
);
827 /* we're simulating flock() locks using posix locks on the server */
828 if (fl
->fl_type
== F_UNLCK
)
829 ret
= afs_do_unlk(file
, fl
);
831 ret
= afs_do_setlk(file
, fl
);
834 case 0: op
= afs_flock_op_return_ok
; break;
835 case -EAGAIN
: op
= afs_flock_op_return_eagain
; break;
836 case -EDEADLK
: op
= afs_flock_op_return_edeadlk
; break;
837 default: op
= afs_flock_op_return_error
; break;
839 trace_afs_flock_op(vnode
, fl
, op
);
844 * the POSIX lock management core VFS code copies the lock record and adds the
845 * copy into its own list, so we need to add that copy to the vnode's lock
846 * queue in the same place as the original (which will be deleted shortly
849 static void afs_fl_copy_lock(struct file_lock
*new, struct file_lock
*fl
)
851 struct afs_vnode
*vnode
= AFS_FS_I(locks_inode(fl
->fl_file
));
855 new->fl_u
.afs
.debug_id
= atomic_inc_return(&afs_file_lock_debug_id
);
857 spin_lock(&vnode
->lock
);
858 trace_afs_flock_op(vnode
, new, afs_flock_op_copy_lock
);
859 list_add(&new->fl_u
.afs
.link
, &fl
->fl_u
.afs
.link
);
860 spin_unlock(&vnode
->lock
);
864 * need to remove this lock from the vnode queue when it's removed from the
867 static void afs_fl_release_private(struct file_lock
*fl
)
869 struct afs_vnode
*vnode
= AFS_FS_I(locks_inode(fl
->fl_file
));
873 spin_lock(&vnode
->lock
);
875 trace_afs_flock_op(vnode
, fl
, afs_flock_op_release_lock
);
876 list_del_init(&fl
->fl_u
.afs
.link
);
877 if (list_empty(&vnode
->granted_locks
))
878 afs_defer_unlock(vnode
);
880 _debug("state %u for %p", vnode
->lock_state
, vnode
);
881 spin_unlock(&vnode
->lock
);