blob: 3501ef7ddbb462aeb1e81fac619a86d8a09e70cc [file] [log] [blame]
David Howellse8d6c552007-07-15 23:40:12 -07001/* AFS file locking support
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
David Howellse8d6c552007-07-15 23:40:12 -070012#include "internal.h"
13
14#define AFS_LOCK_GRANTED 0
15#define AFS_LOCK_PENDING 1
David Howells4be59752019-04-25 14:26:50 +010016#define AFS_LOCK_YOUR_TRY 2
David Howellse8d6c552007-07-15 23:40:12 -070017
David Howellsf044c882017-11-02 15:27:45 +000018struct workqueue_struct *afs_lock_manager;
19
David Howells4be59752019-04-25 14:26:50 +010020static void afs_next_locker(struct afs_vnode *vnode, int error);
David Howellse8d6c552007-07-15 23:40:12 -070021static void afs_fl_copy_lock(struct file_lock *new, struct file_lock *fl);
22static void afs_fl_release_private(struct file_lock *fl);
23
Alexey Dobriyan6aed6282009-09-21 17:01:11 -070024static const struct file_lock_operations afs_lock_ops = {
David Howellse8d6c552007-07-15 23:40:12 -070025 .fl_copy_lock = afs_fl_copy_lock,
26 .fl_release_private = afs_fl_release_private,
27};
28
David Howells4be59752019-04-25 14:26:50 +010029static inline void afs_set_lock_state(struct afs_vnode *vnode, enum afs_lock_state state)
30{
31 _debug("STATE %u -> %u", vnode->lock_state, state);
32 vnode->lock_state = state;
33}
34
David Howellsd4696602019-04-25 14:26:50 +010035static atomic_t afs_file_lock_debug_id;
36
David Howellse8d6c552007-07-15 23:40:12 -070037/*
David Howellse8d6c552007-07-15 23:40:12 -070038 * if the callback is broken on this vnode, then the lock may now be available
39 */
40void afs_lock_may_be_available(struct afs_vnode *vnode)
41{
David Howells3b6492d2018-10-20 00:57:57 +010042 _enter("{%llx:%llu}", vnode->fid.vid, vnode->fid.vnode);
David Howellse8d6c552007-07-15 23:40:12 -070043
David Howells4be59752019-04-25 14:26:50 +010044 if (vnode->lock_state != AFS_VNODE_LOCK_WAITING_FOR_CB)
45 return;
46
47 spin_lock(&vnode->lock);
48 if (vnode->lock_state == AFS_VNODE_LOCK_WAITING_FOR_CB)
49 afs_next_locker(vnode, 0);
David Howellsd4696602019-04-25 14:26:50 +010050 trace_afs_flock_ev(vnode, NULL, afs_flock_callback_break, 0);
David Howells4be59752019-04-25 14:26:50 +010051 spin_unlock(&vnode->lock);
David Howellse8d6c552007-07-15 23:40:12 -070052}
53
54/*
55 * the lock will time out in 5 minutes unless we extend it, so schedule
56 * extension in a bit less than that time
57 */
58static void afs_schedule_lock_extension(struct afs_vnode *vnode)
59{
David Howellsa690f602019-04-25 14:26:50 +010060 ktime_t expires_at, now, duration;
61 u64 duration_j;
62
63 expires_at = ktime_add_ms(vnode->locked_at, AFS_LOCKWAIT * 1000 / 2);
64 now = ktime_get_real();
65 duration = ktime_sub(expires_at, now);
66 if (duration <= 0)
67 duration_j = 0;
68 else
69 duration_j = nsecs_to_jiffies(ktime_to_ns(duration));
70
71 queue_delayed_work(afs_lock_manager, &vnode->lock_work, duration_j);
72}
73
74/*
75 * In the case of successful completion of a lock operation, record the time
76 * the reply appeared and start the lock extension timer.
77 */
78void afs_lock_op_done(struct afs_call *call)
79{
80 struct afs_vnode *vnode = call->reply[0];
81
82 if (call->error == 0) {
83 spin_lock(&vnode->lock);
David Howellsd4696602019-04-25 14:26:50 +010084 trace_afs_flock_ev(vnode, NULL, afs_flock_timestamp, 0);
David Howellsa690f602019-04-25 14:26:50 +010085 vnode->locked_at = call->reply_time;
86 afs_schedule_lock_extension(vnode);
87 spin_unlock(&vnode->lock);
88 }
David Howellse8d6c552007-07-15 23:40:12 -070089}
90
91/*
David Howellsff8e2102007-07-31 00:38:49 -070092 * grant one or more locks (readlocks are allowed to jump the queue if the
93 * first lock in the queue is itself a readlock)
94 * - the caller must hold the vnode lock
95 */
David Howells4be59752019-04-25 14:26:50 +010096static void afs_grant_locks(struct afs_vnode *vnode)
David Howellsff8e2102007-07-31 00:38:49 -070097{
98 struct file_lock *p, *_p;
David Howells4be59752019-04-25 14:26:50 +010099 bool exclusive = (vnode->lock_type == AFS_LOCK_WRITE);
David Howellsff8e2102007-07-31 00:38:49 -0700100
David Howells4be59752019-04-25 14:26:50 +0100101 list_for_each_entry_safe(p, _p, &vnode->pending_locks, fl_u.afs.link) {
102 if (!exclusive && p->fl_type == F_WRLCK)
103 continue;
104
105 list_move_tail(&p->fl_u.afs.link, &vnode->granted_locks);
106 p->fl_u.afs.state = AFS_LOCK_GRANTED;
David Howellsd4696602019-04-25 14:26:50 +0100107 trace_afs_flock_op(vnode, p, afs_flock_op_grant);
David Howells4be59752019-04-25 14:26:50 +0100108 wake_up(&p->fl_wait);
David Howellsff8e2102007-07-31 00:38:49 -0700109 }
110}
111
112/*
David Howells4be59752019-04-25 14:26:50 +0100113 * If an error is specified, reject every pending lock that matches the
114 * authentication and type of the lock we failed to get. If there are any
115 * remaining lockers, try to wake up one of them to have a go.
116 */
117static void afs_next_locker(struct afs_vnode *vnode, int error)
118{
119 struct file_lock *p, *_p, *next = NULL;
120 struct key *key = vnode->lock_key;
121 unsigned int fl_type = F_RDLCK;
122
123 _enter("");
124
125 if (vnode->lock_type == AFS_LOCK_WRITE)
126 fl_type = F_WRLCK;
127
128 list_for_each_entry_safe(p, _p, &vnode->pending_locks, fl_u.afs.link) {
129 if (error &&
130 p->fl_type == fl_type &&
131 afs_file_key(p->fl_file) == key) {
132 list_del_init(&p->fl_u.afs.link);
133 p->fl_u.afs.state = error;
134 wake_up(&p->fl_wait);
135 }
136
137 /* Select the next locker to hand off to. */
138 if (next &&
139 (next->fl_type == F_WRLCK || p->fl_type == F_RDLCK))
140 continue;
141 next = p;
142 }
143
144 vnode->lock_key = NULL;
145 key_put(key);
146
147 if (next) {
148 afs_set_lock_state(vnode, AFS_VNODE_LOCK_SETTING);
149 next->fl_u.afs.state = AFS_LOCK_YOUR_TRY;
David Howellsd4696602019-04-25 14:26:50 +0100150 trace_afs_flock_op(vnode, next, afs_flock_op_wake);
David Howells4be59752019-04-25 14:26:50 +0100151 wake_up(&next->fl_wait);
152 } else {
153 afs_set_lock_state(vnode, AFS_VNODE_LOCK_NONE);
David Howellsd4696602019-04-25 14:26:50 +0100154 trace_afs_flock_ev(vnode, NULL, afs_flock_no_lockers, 0);
David Howells4be59752019-04-25 14:26:50 +0100155 }
156
157 _leave("");
158}
159
160/*
David Howellscdfb26b2019-04-25 14:26:51 +0100161 * Kill off all waiters in the the pending lock queue due to the vnode being
162 * deleted.
163 */
164static void afs_kill_lockers_enoent(struct afs_vnode *vnode)
165{
166 struct file_lock *p;
167
168 afs_set_lock_state(vnode, AFS_VNODE_LOCK_DELETED);
169
170 while (!list_empty(&vnode->pending_locks)) {
171 p = list_entry(vnode->pending_locks.next,
172 struct file_lock, fl_u.afs.link);
173 list_del_init(&p->fl_u.afs.link);
174 p->fl_u.afs.state = -ENOENT;
175 wake_up(&p->fl_wait);
176 }
177
178 key_put(vnode->lock_key);
179 vnode->lock_key = NULL;
180}
181
182/*
David Howellsd2ddc772017-11-02 15:27:50 +0000183 * Get a lock on a file
184 */
185static int afs_set_lock(struct afs_vnode *vnode, struct key *key,
186 afs_lock_type_t type)
187{
188 struct afs_fs_cursor fc;
189 int ret;
190
David Howells3b6492d2018-10-20 00:57:57 +0100191 _enter("%s{%llx:%llu.%u},%x,%u",
David Howellsd2ddc772017-11-02 15:27:50 +0000192 vnode->volume->name,
193 vnode->fid.vid,
194 vnode->fid.vnode,
195 vnode->fid.unique,
196 key_serial(key), type);
197
198 ret = -ERESTARTSYS;
David Howells20b83912019-05-08 16:16:31 +0100199 if (afs_begin_vnode_operation(&fc, vnode, key, true)) {
David Howellsd2ddc772017-11-02 15:27:50 +0000200 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +0100201 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Howellsd2ddc772017-11-02 15:27:50 +0000202 afs_fs_set_lock(&fc, type);
203 }
204
205 afs_check_for_remote_deletion(&fc, fc.vnode);
206 afs_vnode_commit_status(&fc, vnode, fc.cb_break);
207 ret = afs_end_vnode_operation(&fc);
208 }
209
210 _leave(" = %d", ret);
211 return ret;
212}
213
214/*
215 * Extend a lock on a file
216 */
217static int afs_extend_lock(struct afs_vnode *vnode, struct key *key)
218{
219 struct afs_fs_cursor fc;
220 int ret;
221
David Howells3b6492d2018-10-20 00:57:57 +0100222 _enter("%s{%llx:%llu.%u},%x",
David Howellsd2ddc772017-11-02 15:27:50 +0000223 vnode->volume->name,
224 vnode->fid.vid,
225 vnode->fid.vnode,
226 vnode->fid.unique,
227 key_serial(key));
228
229 ret = -ERESTARTSYS;
David Howells20b83912019-05-08 16:16:31 +0100230 if (afs_begin_vnode_operation(&fc, vnode, key, false)) {
David Howellsd2ddc772017-11-02 15:27:50 +0000231 while (afs_select_current_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +0100232 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Howellsd2ddc772017-11-02 15:27:50 +0000233 afs_fs_extend_lock(&fc);
234 }
235
236 afs_check_for_remote_deletion(&fc, fc.vnode);
237 afs_vnode_commit_status(&fc, vnode, fc.cb_break);
238 ret = afs_end_vnode_operation(&fc);
239 }
240
241 _leave(" = %d", ret);
242 return ret;
243}
244
245/*
246 * Release a lock on a file
247 */
248static int afs_release_lock(struct afs_vnode *vnode, struct key *key)
249{
250 struct afs_fs_cursor fc;
251 int ret;
252
David Howells3b6492d2018-10-20 00:57:57 +0100253 _enter("%s{%llx:%llu.%u},%x",
David Howellsd2ddc772017-11-02 15:27:50 +0000254 vnode->volume->name,
255 vnode->fid.vid,
256 vnode->fid.vnode,
257 vnode->fid.unique,
258 key_serial(key));
259
260 ret = -ERESTARTSYS;
David Howells20b83912019-05-08 16:16:31 +0100261 if (afs_begin_vnode_operation(&fc, vnode, key, false)) {
David Howellsd2ddc772017-11-02 15:27:50 +0000262 while (afs_select_current_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +0100263 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Howellsd2ddc772017-11-02 15:27:50 +0000264 afs_fs_release_lock(&fc);
265 }
266
267 afs_check_for_remote_deletion(&fc, fc.vnode);
268 afs_vnode_commit_status(&fc, vnode, fc.cb_break);
269 ret = afs_end_vnode_operation(&fc);
270 }
271
272 _leave(" = %d", ret);
273 return ret;
274}
275
276/*
David Howellse8d6c552007-07-15 23:40:12 -0700277 * do work for a lock, including:
278 * - probing for a lock we're waiting on but didn't get immediately
279 * - extending a lock that's close to timing out
280 */
281void afs_lock_work(struct work_struct *work)
282{
283 struct afs_vnode *vnode =
284 container_of(work, struct afs_vnode, lock_work.work);
David Howellse8d6c552007-07-15 23:40:12 -0700285 struct key *key;
286 int ret;
287
David Howells3b6492d2018-10-20 00:57:57 +0100288 _enter("{%llx:%llu}", vnode->fid.vid, vnode->fid.vnode);
David Howellse8d6c552007-07-15 23:40:12 -0700289
290 spin_lock(&vnode->lock);
291
David Howells0fafdc92017-11-13 16:59:50 +0000292again:
293 _debug("wstate %u for %p", vnode->lock_state, vnode);
294 switch (vnode->lock_state) {
295 case AFS_VNODE_LOCK_NEED_UNLOCK:
David Howells4be59752019-04-25 14:26:50 +0100296 afs_set_lock_state(vnode, AFS_VNODE_LOCK_UNLOCKING);
David Howellsd4696602019-04-25 14:26:50 +0100297 trace_afs_flock_ev(vnode, NULL, afs_flock_work_unlocking, 0);
David Howellse8d6c552007-07-15 23:40:12 -0700298 spin_unlock(&vnode->lock);
299
300 /* attempt to release the server lock; if it fails, we just
David Howells0fafdc92017-11-13 16:59:50 +0000301 * wait 5 minutes and it'll expire anyway */
302 ret = afs_release_lock(vnode, vnode->lock_key);
David Howells79ddbfa2019-04-25 14:26:51 +0100303 if (ret < 0 && vnode->lock_state != AFS_VNODE_LOCK_DELETED) {
David Howellscdfb26b2019-04-25 14:26:51 +0100304 trace_afs_flock_ev(vnode, NULL, afs_flock_release_fail,
305 ret);
David Howellse8d6c552007-07-15 23:40:12 -0700306 printk(KERN_WARNING "AFS:"
David Howells3b6492d2018-10-20 00:57:57 +0100307 " Failed to release lock on {%llx:%llx} error %d\n",
David Howellse8d6c552007-07-15 23:40:12 -0700308 vnode->fid.vid, vnode->fid.vnode, ret);
David Howells0fafdc92017-11-13 16:59:50 +0000309 }
310
David Howellse8d6c552007-07-15 23:40:12 -0700311 spin_lock(&vnode->lock);
David Howellscdfb26b2019-04-25 14:26:51 +0100312 if (ret == -ENOENT)
313 afs_kill_lockers_enoent(vnode);
314 else
315 afs_next_locker(vnode, 0);
David Howells4be59752019-04-25 14:26:50 +0100316 spin_unlock(&vnode->lock);
317 return;
David Howells0fafdc92017-11-13 16:59:50 +0000318
319 /* If we've already got a lock, then it must be time to extend that
320 * lock as AFS locks time out after 5 minutes.
321 */
322 case AFS_VNODE_LOCK_GRANTED:
David Howellse8d6c552007-07-15 23:40:12 -0700323 _debug("extend");
324
David Howells0fafdc92017-11-13 16:59:50 +0000325 ASSERT(!list_empty(&vnode->granted_locks));
326
327 key = key_get(vnode->lock_key);
David Howells4be59752019-04-25 14:26:50 +0100328 afs_set_lock_state(vnode, AFS_VNODE_LOCK_EXTENDING);
David Howellsd4696602019-04-25 14:26:50 +0100329 trace_afs_flock_ev(vnode, NULL, afs_flock_work_extending, 0);
David Howellse8d6c552007-07-15 23:40:12 -0700330 spin_unlock(&vnode->lock);
331
David Howells0fafdc92017-11-13 16:59:50 +0000332 ret = afs_extend_lock(vnode, key); /* RPC */
David Howellse8d6c552007-07-15 23:40:12 -0700333 key_put(key);
David Howells0fafdc92017-11-13 16:59:50 +0000334
David Howellscdfb26b2019-04-25 14:26:51 +0100335 if (ret < 0) {
336 trace_afs_flock_ev(vnode, NULL, afs_flock_extend_fail,
337 ret);
David Howells3b6492d2018-10-20 00:57:57 +0100338 pr_warning("AFS: Failed to extend lock on {%llx:%llx} error %d\n",
David Howells0fafdc92017-11-13 16:59:50 +0000339 vnode->fid.vid, vnode->fid.vnode, ret);
David Howellscdfb26b2019-04-25 14:26:51 +0100340 }
David Howells0fafdc92017-11-13 16:59:50 +0000341
342 spin_lock(&vnode->lock);
343
David Howellscdfb26b2019-04-25 14:26:51 +0100344 if (ret == -ENOENT) {
345 afs_kill_lockers_enoent(vnode);
346 spin_unlock(&vnode->lock);
347 return;
348 }
349
David Howells0fafdc92017-11-13 16:59:50 +0000350 if (vnode->lock_state != AFS_VNODE_LOCK_EXTENDING)
351 goto again;
David Howells4be59752019-04-25 14:26:50 +0100352 afs_set_lock_state(vnode, AFS_VNODE_LOCK_GRANTED);
David Howells0fafdc92017-11-13 16:59:50 +0000353
David Howells4be59752019-04-25 14:26:50 +0100354 if (ret != 0)
David Howellse8d6c552007-07-15 23:40:12 -0700355 queue_delayed_work(afs_lock_manager, &vnode->lock_work,
356 HZ * 10);
David Howells0fafdc92017-11-13 16:59:50 +0000357 spin_unlock(&vnode->lock);
358 _leave(" [ext]");
David Howellse8d6c552007-07-15 23:40:12 -0700359 return;
David Howellse8d6c552007-07-15 23:40:12 -0700360
David Howells4be59752019-04-25 14:26:50 +0100361 /* If we're waiting for a callback to indicate lock release, we can't
362 * actually rely on this, so need to recheck at regular intervals. The
363 * problem is that the server might not notify us if the lock just
364 * expires (say because a client died) rather than being explicitly
365 * released.
366 */
David Howells0fafdc92017-11-13 16:59:50 +0000367 case AFS_VNODE_LOCK_WAITING_FOR_CB:
David Howells4be59752019-04-25 14:26:50 +0100368 _debug("retry");
369 afs_next_locker(vnode, 0);
David Howellse8d6c552007-07-15 23:40:12 -0700370 spin_unlock(&vnode->lock);
David Howells4be59752019-04-25 14:26:50 +0100371 return;
David Howellse8d6c552007-07-15 23:40:12 -0700372
David Howellscdfb26b2019-04-25 14:26:51 +0100373 case AFS_VNODE_LOCK_DELETED:
374 afs_kill_lockers_enoent(vnode);
375 spin_unlock(&vnode->lock);
376 return;
David Howells0fafdc92017-11-13 16:59:50 +0000377
Gustavo A. R. Silvae690c9e2019-01-10 15:52:25 -0600378 /* Fall through */
David Howells0fafdc92017-11-13 16:59:50 +0000379 default:
380 /* Looks like a lock request was withdrawn. */
381 spin_unlock(&vnode->lock);
382 _leave(" [no]");
David Howellse8d6c552007-07-15 23:40:12 -0700383 return;
384 }
David Howellse8d6c552007-07-15 23:40:12 -0700385}
386
387/*
388 * pass responsibility for the unlocking of a vnode on the server to the
389 * manager thread, lest a pending signal in the calling thread interrupt
390 * AF_RXRPC
391 * - the caller must hold the vnode lock
392 */
David Howells0fafdc92017-11-13 16:59:50 +0000393static void afs_defer_unlock(struct afs_vnode *vnode)
David Howellse8d6c552007-07-15 23:40:12 -0700394{
David Howells4be59752019-04-25 14:26:50 +0100395 _enter("%u", vnode->lock_state);
David Howells0fafdc92017-11-13 16:59:50 +0000396
David Howells4be59752019-04-25 14:26:50 +0100397 if (list_empty(&vnode->granted_locks) &&
398 (vnode->lock_state == AFS_VNODE_LOCK_GRANTED ||
399 vnode->lock_state == AFS_VNODE_LOCK_EXTENDING)) {
David Howells0fafdc92017-11-13 16:59:50 +0000400 cancel_delayed_work(&vnode->lock_work);
401
David Howells4be59752019-04-25 14:26:50 +0100402 afs_set_lock_state(vnode, AFS_VNODE_LOCK_NEED_UNLOCK);
David Howellsd4696602019-04-25 14:26:50 +0100403 trace_afs_flock_ev(vnode, NULL, afs_flock_defer_unlock, 0);
David Howells4be59752019-04-25 14:26:50 +0100404 queue_delayed_work(afs_lock_manager, &vnode->lock_work, 0);
David Howells0fafdc92017-11-13 16:59:50 +0000405 }
406}
407
408/*
409 * Check that our view of the file metadata is up to date and check to see
410 * whether we think that we have a locking permit.
411 */
412static int afs_do_setlk_check(struct afs_vnode *vnode, struct key *key,
David Howells6c6c1d62019-04-25 14:26:52 +0100413 enum afs_flock_mode mode, afs_lock_type_t type)
David Howells0fafdc92017-11-13 16:59:50 +0000414{
415 afs_access_t access;
416 int ret;
417
418 /* Make sure we've got a callback on this file and that our view of the
419 * data version is up to date.
420 */
421 ret = afs_validate(vnode, key);
422 if (ret < 0)
423 return ret;
424
425 /* Check the permission set to see if we're actually going to be
426 * allowed to get a lock on this file.
427 */
428 ret = afs_check_permit(vnode, key, &access);
429 if (ret < 0)
430 return ret;
431
432 /* At a rough estimation, you need LOCK, WRITE or INSERT perm to
433 * read-lock a file and WRITE or INSERT perm to write-lock a file.
434 *
435 * We can't rely on the server to do this for us since if we want to
436 * share a read lock that we already have, we won't go the server.
437 */
438 if (type == AFS_LOCK_READ) {
439 if (!(access & (AFS_ACE_INSERT | AFS_ACE_WRITE | AFS_ACE_LOCK)))
440 return -EACCES;
David Howells0fafdc92017-11-13 16:59:50 +0000441 } else {
442 if (!(access & (AFS_ACE_INSERT | AFS_ACE_WRITE)))
443 return -EACCES;
David Howells0fafdc92017-11-13 16:59:50 +0000444 }
445
446 return 0;
447}
448
449/*
David Howellse8d6c552007-07-15 23:40:12 -0700450 * request a lock on a file on the server
451 */
452static int afs_do_setlk(struct file *file, struct file_lock *fl)
453{
David Howells0fafdc92017-11-13 16:59:50 +0000454 struct inode *inode = locks_inode(file);
Jeff Layton1c8c6012013-06-21 08:58:15 -0400455 struct afs_vnode *vnode = AFS_FS_I(inode);
David Howells6c6c1d62019-04-25 14:26:52 +0100456 enum afs_flock_mode mode = AFS_FS_S(inode->i_sb)->flock_mode;
David Howellse8d6c552007-07-15 23:40:12 -0700457 afs_lock_type_t type;
David Howells215804a2017-11-02 15:27:52 +0000458 struct key *key = afs_file_key(file);
David Howells6c6c1d62019-04-25 14:26:52 +0100459 bool partial, no_server_lock = false;
David Howellse8d6c552007-07-15 23:40:12 -0700460 int ret;
461
David Howells6c6c1d62019-04-25 14:26:52 +0100462 if (mode == afs_flock_mode_unset)
463 mode = afs_flock_mode_openafs;
David Howellse8d6c552007-07-15 23:40:12 -0700464
David Howells6c6c1d62019-04-25 14:26:52 +0100465 _enter("{%llx:%llu},%llu-%llu,%u,%u",
466 vnode->fid.vid, vnode->fid.vnode,
467 fl->fl_start, fl->fl_end, fl->fl_type, mode);
David Howellse8d6c552007-07-15 23:40:12 -0700468
David Howellse8d6c552007-07-15 23:40:12 -0700469 fl->fl_ops = &afs_lock_ops;
470 INIT_LIST_HEAD(&fl->fl_u.afs.link);
471 fl->fl_u.afs.state = AFS_LOCK_PENDING;
472
David Howells6c6c1d62019-04-25 14:26:52 +0100473 partial = (fl->fl_start != 0 || fl->fl_end != OFFSET_MAX);
David Howellse8d6c552007-07-15 23:40:12 -0700474 type = (fl->fl_type == F_RDLCK) ? AFS_LOCK_READ : AFS_LOCK_WRITE;
David Howells6c6c1d62019-04-25 14:26:52 +0100475 if (mode == afs_flock_mode_write && partial)
476 type = AFS_LOCK_WRITE;
David Howellse8d6c552007-07-15 23:40:12 -0700477
David Howells6c6c1d62019-04-25 14:26:52 +0100478 ret = afs_do_setlk_check(vnode, key, mode, type);
David Howellse8d6c552007-07-15 23:40:12 -0700479 if (ret < 0)
David Howells0fafdc92017-11-13 16:59:50 +0000480 return ret;
David Howellse8d6c552007-07-15 23:40:12 -0700481
David Howellsd4696602019-04-25 14:26:50 +0100482 trace_afs_flock_op(vnode, fl, afs_flock_op_set_lock);
David Howellse8d6c552007-07-15 23:40:12 -0700483
David Howells6c6c1d62019-04-25 14:26:52 +0100484 /* AFS3 protocol only supports full-file locks and doesn't provide any
485 * method of upgrade/downgrade, so we need to emulate for partial-file
486 * locks.
487 *
488 * The OpenAFS client only gets a server lock for a full-file lock and
489 * keeps partial-file locks local. Allow this behaviour to be emulated
490 * (as the default).
David Howells0fafdc92017-11-13 16:59:50 +0000491 */
David Howells6c6c1d62019-04-25 14:26:52 +0100492 if (mode == afs_flock_mode_local ||
493 (partial && mode == afs_flock_mode_openafs)) {
494 no_server_lock = true;
495 goto skip_server_lock;
David Howellsff8e2102007-07-31 00:38:49 -0700496 }
497
David Howellse8d6c552007-07-15 23:40:12 -0700498 spin_lock(&vnode->lock);
David Howellse8d6c552007-07-15 23:40:12 -0700499 list_add_tail(&fl->fl_u.afs.link, &vnode->pending_locks);
David Howells0fafdc92017-11-13 16:59:50 +0000500
David Howellscdfb26b2019-04-25 14:26:51 +0100501 ret = -ENOENT;
502 if (vnode->lock_state == AFS_VNODE_LOCK_DELETED)
503 goto error_unlock;
504
David Howells4be59752019-04-25 14:26:50 +0100505 /* If we've already got a lock on the server then try to move to having
506 * the VFS grant the requested lock. Note that this means that other
507 * clients may get starved out.
508 */
509 _debug("try %u", vnode->lock_state);
510 if (vnode->lock_state == AFS_VNODE_LOCK_GRANTED) {
511 if (type == AFS_LOCK_READ) {
512 _debug("instant readlock");
513 list_move_tail(&fl->fl_u.afs.link, &vnode->granted_locks);
514 fl->fl_u.afs.state = AFS_LOCK_GRANTED;
515 goto vnode_is_locked_u;
516 }
517
518 if (vnode->lock_type == AFS_LOCK_WRITE) {
519 _debug("instant writelock");
520 list_move_tail(&fl->fl_u.afs.link, &vnode->granted_locks);
521 fl->fl_u.afs.state = AFS_LOCK_GRANTED;
522 goto vnode_is_locked_u;
523 }
524 }
525
David Howells6c6c1d62019-04-25 14:26:52 +0100526 if (vnode->lock_state == AFS_VNODE_LOCK_NONE &&
527 !(fl->fl_flags & FL_SLEEP)) {
528 ret = -EAGAIN;
529 if (type == AFS_LOCK_READ) {
530 if (vnode->status.lock_count == -1)
531 goto lock_is_contended; /* Write locked */
532 } else {
533 if (vnode->status.lock_count != 0)
534 goto lock_is_contended; /* Locked */
535 }
536 }
537
David Howells0fafdc92017-11-13 16:59:50 +0000538 if (vnode->lock_state != AFS_VNODE_LOCK_NONE)
539 goto need_to_wait;
540
David Howells4be59752019-04-25 14:26:50 +0100541try_to_lock:
David Howells0fafdc92017-11-13 16:59:50 +0000542 /* We don't have a lock on this vnode and we aren't currently waiting
543 * for one either, so ask the server for a lock.
544 *
545 * Note that we need to be careful if we get interrupted by a signal
546 * after dispatching the request as we may still get the lock, even
547 * though we don't wait for the reply (it's not too bad a problem - the
David Howells4be59752019-04-25 14:26:50 +0100548 * lock will expire in 5 mins anyway).
David Howells0fafdc92017-11-13 16:59:50 +0000549 */
David Howellsd4696602019-04-25 14:26:50 +0100550 trace_afs_flock_ev(vnode, fl, afs_flock_try_to_lock, 0);
David Howells0fafdc92017-11-13 16:59:50 +0000551 vnode->lock_key = key_get(key);
552 vnode->lock_type = type;
David Howells4be59752019-04-25 14:26:50 +0100553 afs_set_lock_state(vnode, AFS_VNODE_LOCK_SETTING);
David Howellse8d6c552007-07-15 23:40:12 -0700554 spin_unlock(&vnode->lock);
555
David Howells0fafdc92017-11-13 16:59:50 +0000556 ret = afs_set_lock(vnode, key, type); /* RPC */
David Howellse8d6c552007-07-15 23:40:12 -0700557
558 spin_lock(&vnode->lock);
David Howells0fafdc92017-11-13 16:59:50 +0000559 switch (ret) {
David Howells4be59752019-04-25 14:26:50 +0100560 case -EKEYREJECTED:
561 case -EKEYEXPIRED:
562 case -EKEYREVOKED:
563 case -EPERM:
564 case -EACCES:
565 fl->fl_u.afs.state = ret;
David Howellsd4696602019-04-25 14:26:50 +0100566 trace_afs_flock_ev(vnode, fl, afs_flock_fail_perm, ret);
David Howells4be59752019-04-25 14:26:50 +0100567 list_del_init(&fl->fl_u.afs.link);
568 afs_next_locker(vnode, ret);
569 goto error_unlock;
570
David Howellscdfb26b2019-04-25 14:26:51 +0100571 case -ENOENT:
572 fl->fl_u.afs.state = ret;
573 trace_afs_flock_ev(vnode, fl, afs_flock_fail_other, ret);
574 list_del_init(&fl->fl_u.afs.link);
575 afs_kill_lockers_enoent(vnode);
576 goto error_unlock;
577
David Howells0fafdc92017-11-13 16:59:50 +0000578 default:
David Howells4be59752019-04-25 14:26:50 +0100579 fl->fl_u.afs.state = ret;
David Howellsd4696602019-04-25 14:26:50 +0100580 trace_afs_flock_ev(vnode, fl, afs_flock_fail_other, ret);
David Howells4be59752019-04-25 14:26:50 +0100581 list_del_init(&fl->fl_u.afs.link);
582 afs_next_locker(vnode, 0);
583 goto error_unlock;
David Howells0fafdc92017-11-13 16:59:50 +0000584
585 case -EWOULDBLOCK:
586 /* The server doesn't have a lock-waiting queue, so the client
587 * will have to retry. The server will break the outstanding
588 * callbacks on a file when a lock is released.
589 */
David Howells0fafdc92017-11-13 16:59:50 +0000590 ASSERT(list_empty(&vnode->granted_locks));
591 ASSERTCMP(vnode->pending_locks.next, ==, &fl->fl_u.afs.link);
David Howells4be59752019-04-25 14:26:50 +0100592 goto lock_is_contended;
David Howells0fafdc92017-11-13 16:59:50 +0000593
594 case 0:
David Howells4be59752019-04-25 14:26:50 +0100595 afs_set_lock_state(vnode, AFS_VNODE_LOCK_GRANTED);
David Howellsd4696602019-04-25 14:26:50 +0100596 trace_afs_flock_ev(vnode, fl, afs_flock_acquired, type);
David Howells4be59752019-04-25 14:26:50 +0100597 afs_grant_locks(vnode);
598 goto vnode_is_locked_u;
David Howellse8d6c552007-07-15 23:40:12 -0700599 }
600
David Howells4be59752019-04-25 14:26:50 +0100601vnode_is_locked_u:
David Howells0fafdc92017-11-13 16:59:50 +0000602 spin_unlock(&vnode->lock);
David Howells4be59752019-04-25 14:26:50 +0100603vnode_is_locked:
604 /* the lock has been granted by the server... */
605 ASSERTCMP(fl->fl_u.afs.state, ==, AFS_LOCK_GRANTED);
David Howells0fafdc92017-11-13 16:59:50 +0000606
David Howells6c6c1d62019-04-25 14:26:52 +0100607skip_server_lock:
David Howells4be59752019-04-25 14:26:50 +0100608 /* ... but the VFS still needs to distribute access on this client. */
David Howellsd4696602019-04-25 14:26:50 +0100609 trace_afs_flock_ev(vnode, fl, afs_flock_vfs_locking, 0);
David Howells4be59752019-04-25 14:26:50 +0100610 ret = locks_lock_file_wait(file, fl);
David Howellsd4696602019-04-25 14:26:50 +0100611 trace_afs_flock_ev(vnode, fl, afs_flock_vfs_lock, ret);
David Howells0fafdc92017-11-13 16:59:50 +0000612 if (ret < 0)
613 goto vfs_rejected_lock;
614
615 /* Again, make sure we've got a callback on this file and, again, make
616 * sure that our view of the data version is up to date (we ignore
617 * errors incurred here and deal with the consequences elsewhere).
618 */
619 afs_validate(vnode, key);
620 _leave(" = 0");
621 return 0;
622
David Howells4be59752019-04-25 14:26:50 +0100623lock_is_contended:
624 if (!(fl->fl_flags & FL_SLEEP)) {
625 list_del_init(&fl->fl_u.afs.link);
626 afs_next_locker(vnode, 0);
627 ret = -EAGAIN;
628 goto error_unlock;
629 }
630
631 afs_set_lock_state(vnode, AFS_VNODE_LOCK_WAITING_FOR_CB);
David Howellsd4696602019-04-25 14:26:50 +0100632 trace_afs_flock_ev(vnode, fl, afs_flock_would_block, ret);
David Howells4be59752019-04-25 14:26:50 +0100633 queue_delayed_work(afs_lock_manager, &vnode->lock_work, HZ * 5);
634
David Howells0fafdc92017-11-13 16:59:50 +0000635need_to_wait:
636 /* We're going to have to wait. Either this client doesn't have a lock
637 * on the server yet and we need to wait for a callback to occur, or
David Howells4be59752019-04-25 14:26:50 +0100638 * the client does have a lock on the server, but it's shared and we
639 * need an exclusive lock.
David Howells0fafdc92017-11-13 16:59:50 +0000640 */
David Howells4be59752019-04-25 14:26:50 +0100641 spin_unlock(&vnode->lock);
David Howells0fafdc92017-11-13 16:59:50 +0000642
David Howellsd4696602019-04-25 14:26:50 +0100643 trace_afs_flock_ev(vnode, fl, afs_flock_waiting, 0);
David Howells4be59752019-04-25 14:26:50 +0100644 ret = wait_event_interruptible(fl->fl_wait,
645 fl->fl_u.afs.state != AFS_LOCK_PENDING);
David Howellsd4696602019-04-25 14:26:50 +0100646 trace_afs_flock_ev(vnode, fl, afs_flock_waited, ret);
David Howells0fafdc92017-11-13 16:59:50 +0000647
David Howells4be59752019-04-25 14:26:50 +0100648 if (fl->fl_u.afs.state >= 0 && fl->fl_u.afs.state != AFS_LOCK_GRANTED) {
David Howells0fafdc92017-11-13 16:59:50 +0000649 spin_lock(&vnode->lock);
David Howells4be59752019-04-25 14:26:50 +0100650
651 switch (fl->fl_u.afs.state) {
652 case AFS_LOCK_YOUR_TRY:
653 fl->fl_u.afs.state = AFS_LOCK_PENDING;
654 goto try_to_lock;
655 case AFS_LOCK_PENDING:
656 if (ret > 0) {
657 /* We need to retry the lock. We may not be
658 * notified by the server if it just expired
659 * rather than being released.
660 */
661 ASSERTCMP(vnode->lock_state, ==, AFS_VNODE_LOCK_WAITING_FOR_CB);
662 afs_set_lock_state(vnode, AFS_VNODE_LOCK_SETTING);
663 fl->fl_u.afs.state = AFS_LOCK_PENDING;
664 goto try_to_lock;
665 }
666 goto error_unlock;
667 case AFS_LOCK_GRANTED:
668 default:
669 break;
670 }
671
672 spin_unlock(&vnode->lock);
David Howells0fafdc92017-11-13 16:59:50 +0000673 }
674
675 if (fl->fl_u.afs.state == AFS_LOCK_GRANTED)
David Howells4be59752019-04-25 14:26:50 +0100676 goto vnode_is_locked;
677 ret = fl->fl_u.afs.state;
678 goto error;
David Howellse8d6c552007-07-15 23:40:12 -0700679
680vfs_rejected_lock:
David Howells0fafdc92017-11-13 16:59:50 +0000681 /* The VFS rejected the lock we just obtained, so we have to discard
682 * what we just got. We defer this to the lock manager work item to
683 * deal with.
684 */
David Howellse8d6c552007-07-15 23:40:12 -0700685 _debug("vfs refused %d", ret);
David Howells6c6c1d62019-04-25 14:26:52 +0100686 if (no_server_lock)
687 goto error;
David Howells0fafdc92017-11-13 16:59:50 +0000688 spin_lock(&vnode->lock);
David Howellse8d6c552007-07-15 23:40:12 -0700689 list_del_init(&fl->fl_u.afs.link);
David Howells4be59752019-04-25 14:26:50 +0100690 afs_defer_unlock(vnode);
691
692error_unlock:
693 spin_unlock(&vnode->lock);
694error:
695 _leave(" = %d", ret);
696 return ret;
David Howellse8d6c552007-07-15 23:40:12 -0700697}
698
699/*
700 * unlock on a file on the server
701 */
702static int afs_do_unlk(struct file *file, struct file_lock *fl)
703{
David Howells0fafdc92017-11-13 16:59:50 +0000704 struct afs_vnode *vnode = AFS_FS_I(locks_inode(file));
David Howellse8d6c552007-07-15 23:40:12 -0700705 int ret;
706
David Howells3b6492d2018-10-20 00:57:57 +0100707 _enter("{%llx:%llu},%u", vnode->fid.vid, vnode->fid.vnode, fl->fl_type);
David Howellse8d6c552007-07-15 23:40:12 -0700708
David Howellsd4696602019-04-25 14:26:50 +0100709 trace_afs_flock_op(vnode, fl, afs_flock_op_unlock);
710
David Howells0fafdc92017-11-13 16:59:50 +0000711 /* Flush all pending writes before doing anything with locks. */
712 vfs_fsync(file, 0);
713
David Howells4be59752019-04-25 14:26:50 +0100714 ret = locks_lock_file_wait(file, fl);
David Howells0fafdc92017-11-13 16:59:50 +0000715 _leave(" = %d [%u]", ret, vnode->lock_state);
716 return ret;
David Howellse8d6c552007-07-15 23:40:12 -0700717}
718
719/*
720 * return information about a lock we currently hold, if indeed we hold one
721 */
722static int afs_do_getlk(struct file *file, struct file_lock *fl)
723{
David Howells0fafdc92017-11-13 16:59:50 +0000724 struct afs_vnode *vnode = AFS_FS_I(locks_inode(file));
David Howells215804a2017-11-02 15:27:52 +0000725 struct key *key = afs_file_key(file);
David Howellse8d6c552007-07-15 23:40:12 -0700726 int ret, lock_count;
727
728 _enter("");
729
David Howellscdfb26b2019-04-25 14:26:51 +0100730 if (vnode->lock_state == AFS_VNODE_LOCK_DELETED)
731 return -ENOENT;
732
David Howellse8d6c552007-07-15 23:40:12 -0700733 fl->fl_type = F_UNLCK;
734
David Howellse8d6c552007-07-15 23:40:12 -0700735 /* check local lock records first */
Andrew Morton275afca2007-07-19 01:50:35 -0700736 posix_test_lock(file, fl);
737 if (fl->fl_type == F_UNLCK) {
David Howellse8d6c552007-07-15 23:40:12 -0700738 /* no local locks; consult the server */
David Howells0c3a5ac2018-04-06 14:17:24 +0100739 ret = afs_fetch_status(vnode, key, false);
David Howellse8d6c552007-07-15 23:40:12 -0700740 if (ret < 0)
741 goto error;
David Howells0fafdc92017-11-13 16:59:50 +0000742
743 lock_count = READ_ONCE(vnode->status.lock_count);
David Howells68ce8012019-04-25 14:26:50 +0100744 if (lock_count != 0) {
745 if (lock_count > 0)
746 fl->fl_type = F_RDLCK;
747 else
748 fl->fl_type = F_WRLCK;
749 fl->fl_start = 0;
750 fl->fl_end = OFFSET_MAX;
751 fl->fl_pid = 0;
752 }
David Howellse8d6c552007-07-15 23:40:12 -0700753 }
754
David Howells0fafdc92017-11-13 16:59:50 +0000755 ret = 0;
David Howellse8d6c552007-07-15 23:40:12 -0700756error:
David Howellse8d6c552007-07-15 23:40:12 -0700757 _leave(" = %d [%hd]", ret, fl->fl_type);
758 return ret;
759}
760
761/*
762 * manage POSIX locks on a file
763 */
764int afs_lock(struct file *file, int cmd, struct file_lock *fl)
765{
David Howells0fafdc92017-11-13 16:59:50 +0000766 struct afs_vnode *vnode = AFS_FS_I(locks_inode(file));
David Howellsd4696602019-04-25 14:26:50 +0100767 enum afs_flock_operation op;
768 int ret;
David Howellse8d6c552007-07-15 23:40:12 -0700769
David Howells3b6492d2018-10-20 00:57:57 +0100770 _enter("{%llx:%llu},%d,{t=%x,fl=%x,r=%Ld:%Ld}",
David Howellse8d6c552007-07-15 23:40:12 -0700771 vnode->fid.vid, vnode->fid.vnode, cmd,
772 fl->fl_type, fl->fl_flags,
773 (long long) fl->fl_start, (long long) fl->fl_end);
774
775 /* AFS doesn't support mandatory locks */
Pavel Emelyanovfc5846e2007-10-01 14:41:14 -0700776 if (__mandatory_lock(&vnode->vfs_inode) && fl->fl_type != F_UNLCK)
David Howellse8d6c552007-07-15 23:40:12 -0700777 return -ENOLCK;
778
779 if (IS_GETLK(cmd))
780 return afs_do_getlk(file, fl);
David Howellsd4696602019-04-25 14:26:50 +0100781
782 fl->fl_u.afs.debug_id = atomic_inc_return(&afs_file_lock_debug_id);
783 trace_afs_flock_op(vnode, fl, afs_flock_op_lock);
784
David Howellse8d6c552007-07-15 23:40:12 -0700785 if (fl->fl_type == F_UNLCK)
David Howellsd4696602019-04-25 14:26:50 +0100786 ret = afs_do_unlk(file, fl);
787 else
788 ret = afs_do_setlk(file, fl);
789
790 switch (ret) {
791 case 0: op = afs_flock_op_return_ok; break;
792 case -EAGAIN: op = afs_flock_op_return_eagain; break;
793 case -EDEADLK: op = afs_flock_op_return_edeadlk; break;
794 default: op = afs_flock_op_return_error; break;
795 }
796 trace_afs_flock_op(vnode, fl, op);
797 return ret;
David Howellse8d6c552007-07-15 23:40:12 -0700798}
799
800/*
801 * manage FLOCK locks on a file
802 */
803int afs_flock(struct file *file, int cmd, struct file_lock *fl)
804{
David Howells0fafdc92017-11-13 16:59:50 +0000805 struct afs_vnode *vnode = AFS_FS_I(locks_inode(file));
David Howellsd4696602019-04-25 14:26:50 +0100806 enum afs_flock_operation op;
807 int ret;
David Howellse8d6c552007-07-15 23:40:12 -0700808
David Howells3b6492d2018-10-20 00:57:57 +0100809 _enter("{%llx:%llu},%d,{t=%x,fl=%x}",
David Howellse8d6c552007-07-15 23:40:12 -0700810 vnode->fid.vid, vnode->fid.vnode, cmd,
811 fl->fl_type, fl->fl_flags);
812
813 /*
814 * No BSD flocks over NFS allowed.
815 * Note: we could try to fake a POSIX lock request here by
816 * using ((u32) filp | 0x80000000) or some such as the pid.
817 * Not sure whether that would be unique, though, or whether
818 * that would break in other places.
819 */
820 if (!(fl->fl_flags & FL_FLOCK))
821 return -ENOLCK;
822
David Howellsd4696602019-04-25 14:26:50 +0100823 fl->fl_u.afs.debug_id = atomic_inc_return(&afs_file_lock_debug_id);
824 trace_afs_flock_op(vnode, fl, afs_flock_op_flock);
825
David Howellse8d6c552007-07-15 23:40:12 -0700826 /* we're simulating flock() locks using posix locks on the server */
David Howellse8d6c552007-07-15 23:40:12 -0700827 if (fl->fl_type == F_UNLCK)
David Howellsd4696602019-04-25 14:26:50 +0100828 ret = afs_do_unlk(file, fl);
829 else
830 ret = afs_do_setlk(file, fl);
831
832 switch (ret) {
833 case 0: op = afs_flock_op_return_ok; break;
834 case -EAGAIN: op = afs_flock_op_return_eagain; break;
835 case -EDEADLK: op = afs_flock_op_return_edeadlk; break;
836 default: op = afs_flock_op_return_error; break;
837 }
838 trace_afs_flock_op(vnode, fl, op);
839 return ret;
David Howellse8d6c552007-07-15 23:40:12 -0700840}
841
842/*
843 * the POSIX lock management core VFS code copies the lock record and adds the
844 * copy into its own list, so we need to add that copy to the vnode's lock
845 * queue in the same place as the original (which will be deleted shortly
846 * after)
847 */
848static void afs_fl_copy_lock(struct file_lock *new, struct file_lock *fl)
849{
David Howells0fafdc92017-11-13 16:59:50 +0000850 struct afs_vnode *vnode = AFS_FS_I(locks_inode(fl->fl_file));
851
David Howellse8d6c552007-07-15 23:40:12 -0700852 _enter("");
853
David Howellsd4696602019-04-25 14:26:50 +0100854 new->fl_u.afs.debug_id = atomic_inc_return(&afs_file_lock_debug_id);
855
David Howells0fafdc92017-11-13 16:59:50 +0000856 spin_lock(&vnode->lock);
David Howellsd4696602019-04-25 14:26:50 +0100857 trace_afs_flock_op(vnode, new, afs_flock_op_copy_lock);
David Howellse8d6c552007-07-15 23:40:12 -0700858 list_add(&new->fl_u.afs.link, &fl->fl_u.afs.link);
David Howells0fafdc92017-11-13 16:59:50 +0000859 spin_unlock(&vnode->lock);
David Howellse8d6c552007-07-15 23:40:12 -0700860}
861
862/*
863 * need to remove this lock from the vnode queue when it's removed from the
864 * VFS's list
865 */
866static void afs_fl_release_private(struct file_lock *fl)
867{
David Howells0fafdc92017-11-13 16:59:50 +0000868 struct afs_vnode *vnode = AFS_FS_I(locks_inode(fl->fl_file));
869
David Howellse8d6c552007-07-15 23:40:12 -0700870 _enter("");
871
David Howells0fafdc92017-11-13 16:59:50 +0000872 spin_lock(&vnode->lock);
David Howells4be59752019-04-25 14:26:50 +0100873
David Howellsd4696602019-04-25 14:26:50 +0100874 trace_afs_flock_op(vnode, fl, afs_flock_op_release_lock);
David Howells4be59752019-04-25 14:26:50 +0100875 list_del_init(&fl->fl_u.afs.link);
876 if (list_empty(&vnode->granted_locks))
877 afs_defer_unlock(vnode);
878
David Howells0fafdc92017-11-13 16:59:50 +0000879 _debug("state %u for %p", vnode->lock_state, vnode);
880 spin_unlock(&vnode->lock);
David Howellse8d6c552007-07-15 23:40:12 -0700881}