blob: d5e5a6ddc8478bad68413429b403fde1c61f834c [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-or-later
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/* AFS file locking support
3 *
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006 */
7
8#include "internal.h"
9
10#define AFS_LOCK_GRANTED 0
11#define AFS_LOCK_PENDING 1
David Brazdil0f672f62019-12-10 10:32:29 +000012#define AFS_LOCK_YOUR_TRY 2
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000013
14struct workqueue_struct *afs_lock_manager;
15
David Brazdil0f672f62019-12-10 10:32:29 +000016static void afs_next_locker(struct afs_vnode *vnode, int error);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000017static void afs_fl_copy_lock(struct file_lock *new, struct file_lock *fl);
18static void afs_fl_release_private(struct file_lock *fl);
19
20static const struct file_lock_operations afs_lock_ops = {
21 .fl_copy_lock = afs_fl_copy_lock,
22 .fl_release_private = afs_fl_release_private,
23};
24
David Brazdil0f672f62019-12-10 10:32:29 +000025static inline void afs_set_lock_state(struct afs_vnode *vnode, enum afs_lock_state state)
26{
27 _debug("STATE %u -> %u", vnode->lock_state, state);
28 vnode->lock_state = state;
29}
30
31static atomic_t afs_file_lock_debug_id;
32
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000033/*
34 * if the callback is broken on this vnode, then the lock may now be available
35 */
36void afs_lock_may_be_available(struct afs_vnode *vnode)
37{
David Brazdil0f672f62019-12-10 10:32:29 +000038 _enter("{%llx:%llu}", vnode->fid.vid, vnode->fid.vnode);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000039
David Brazdil0f672f62019-12-10 10:32:29 +000040 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);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000045}
46
47/*
48 * the lock will time out in 5 minutes unless we extend it, so schedule
49 * extension in a bit less than that time
50 */
51static void afs_schedule_lock_extension(struct afs_vnode *vnode)
52{
David Brazdil0f672f62019-12-10 10:32:29 +000053 ktime_t expires_at, now, duration;
54 u64 duration_j;
55
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);
59 if (duration <= 0)
60 duration_j = 0;
61 else
62 duration_j = nsecs_to_jiffies(ktime_to_ns(duration));
63
64 queue_delayed_work(afs_lock_manager, &vnode->lock_work, duration_j);
65}
66
67/*
68 * In the case of successful completion of a lock operation, record the time
69 * the reply appeared and start the lock extension timer.
70 */
71void afs_lock_op_done(struct afs_call *call)
72{
73 struct afs_vnode *vnode = call->lvnode;
74
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);
81 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000082}
83
84/*
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
88 */
David Brazdil0f672f62019-12-10 10:32:29 +000089static void afs_grant_locks(struct afs_vnode *vnode)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000090{
91 struct file_lock *p, *_p;
David Brazdil0f672f62019-12-10 10:32:29 +000092 bool exclusive = (vnode->lock_type == AFS_LOCK_WRITE);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000093
David Brazdil0f672f62019-12-10 10:32:29 +000094 list_for_each_entry_safe(p, _p, &vnode->pending_locks, fl_u.afs.link) {
95 if (!exclusive && p->fl_type == F_WRLCK)
96 continue;
97
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);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000102 }
103}
104
105/*
David Brazdil0f672f62019-12-10 10:32:29 +0000106 * 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.
109 */
110static void afs_next_locker(struct afs_vnode *vnode, int error)
111{
112 struct file_lock *p, *_p, *next = NULL;
113 struct key *key = vnode->lock_key;
114 unsigned int fl_type = F_RDLCK;
115
116 _enter("");
117
118 if (vnode->lock_type == AFS_LOCK_WRITE)
119 fl_type = F_WRLCK;
120
121 list_for_each_entry_safe(p, _p, &vnode->pending_locks, fl_u.afs.link) {
122 if (error &&
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);
128 }
129
130 /* Select the next locker to hand off to. */
131 if (next &&
132 (next->fl_type == F_WRLCK || p->fl_type == F_RDLCK))
133 continue;
134 next = p;
135 }
136
137 vnode->lock_key = NULL;
138 key_put(key);
139
140 if (next) {
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);
145 } else {
146 afs_set_lock_state(vnode, AFS_VNODE_LOCK_NONE);
147 trace_afs_flock_ev(vnode, NULL, afs_flock_no_lockers, 0);
148 }
149
150 _leave("");
151}
152
153/*
154 * Kill off all waiters in the the pending lock queue due to the vnode being
155 * deleted.
156 */
157static void afs_kill_lockers_enoent(struct afs_vnode *vnode)
158{
159 struct file_lock *p;
160
161 afs_set_lock_state(vnode, AFS_VNODE_LOCK_DELETED);
162
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);
169 }
170
171 key_put(vnode->lock_key);
172 vnode->lock_key = NULL;
173}
174
175/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000176 * Get a lock on a file
177 */
178static int afs_set_lock(struct afs_vnode *vnode, struct key *key,
179 afs_lock_type_t type)
180{
David Brazdil0f672f62019-12-10 10:32:29 +0000181 struct afs_status_cb *scb;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000182 struct afs_fs_cursor fc;
183 int ret;
184
David Brazdil0f672f62019-12-10 10:32:29 +0000185 _enter("%s{%llx:%llu.%u},%x,%u",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000186 vnode->volume->name,
187 vnode->fid.vid,
188 vnode->fid.vnode,
189 vnode->fid.unique,
190 key_serial(key), type);
191
David Brazdil0f672f62019-12-10 10:32:29 +0000192 scb = kzalloc(sizeof(struct afs_status_cb), GFP_KERNEL);
193 if (!scb)
194 return -ENOMEM;
195
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000196 ret = -ERESTARTSYS;
David Brazdil0f672f62019-12-10 10:32:29 +0000197 if (afs_begin_vnode_operation(&fc, vnode, key, true)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000198 while (afs_select_fileserver(&fc)) {
199 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Brazdil0f672f62019-12-10 10:32:29 +0000200 afs_fs_set_lock(&fc, type, scb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000201 }
202
David Brazdil0f672f62019-12-10 10:32:29 +0000203 afs_check_for_remote_deletion(&fc, vnode);
204 afs_vnode_commit_status(&fc, vnode, fc.cb_break, NULL, scb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000205 ret = afs_end_vnode_operation(&fc);
206 }
207
David Brazdil0f672f62019-12-10 10:32:29 +0000208 kfree(scb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000209 _leave(" = %d", ret);
210 return ret;
211}
212
213/*
214 * Extend a lock on a file
215 */
216static int afs_extend_lock(struct afs_vnode *vnode, struct key *key)
217{
David Brazdil0f672f62019-12-10 10:32:29 +0000218 struct afs_status_cb *scb;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000219 struct afs_fs_cursor fc;
220 int ret;
221
David Brazdil0f672f62019-12-10 10:32:29 +0000222 _enter("%s{%llx:%llu.%u},%x",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000223 vnode->volume->name,
224 vnode->fid.vid,
225 vnode->fid.vnode,
226 vnode->fid.unique,
227 key_serial(key));
228
David Brazdil0f672f62019-12-10 10:32:29 +0000229 scb = kzalloc(sizeof(struct afs_status_cb), GFP_KERNEL);
230 if (!scb)
231 return -ENOMEM;
232
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000233 ret = -ERESTARTSYS;
David Brazdil0f672f62019-12-10 10:32:29 +0000234 if (afs_begin_vnode_operation(&fc, vnode, key, false)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000235 while (afs_select_current_fileserver(&fc)) {
236 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Brazdil0f672f62019-12-10 10:32:29 +0000237 afs_fs_extend_lock(&fc, scb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000238 }
239
David Brazdil0f672f62019-12-10 10:32:29 +0000240 afs_check_for_remote_deletion(&fc, vnode);
241 afs_vnode_commit_status(&fc, vnode, fc.cb_break, NULL, scb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000242 ret = afs_end_vnode_operation(&fc);
243 }
244
David Brazdil0f672f62019-12-10 10:32:29 +0000245 kfree(scb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000246 _leave(" = %d", ret);
247 return ret;
248}
249
250/*
251 * Release a lock on a file
252 */
253static int afs_release_lock(struct afs_vnode *vnode, struct key *key)
254{
David Brazdil0f672f62019-12-10 10:32:29 +0000255 struct afs_status_cb *scb;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000256 struct afs_fs_cursor fc;
257 int ret;
258
David Brazdil0f672f62019-12-10 10:32:29 +0000259 _enter("%s{%llx:%llu.%u},%x",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000260 vnode->volume->name,
261 vnode->fid.vid,
262 vnode->fid.vnode,
263 vnode->fid.unique,
264 key_serial(key));
265
David Brazdil0f672f62019-12-10 10:32:29 +0000266 scb = kzalloc(sizeof(struct afs_status_cb), GFP_KERNEL);
267 if (!scb)
268 return -ENOMEM;
269
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000270 ret = -ERESTARTSYS;
David Brazdil0f672f62019-12-10 10:32:29 +0000271 if (afs_begin_vnode_operation(&fc, vnode, key, false)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000272 while (afs_select_current_fileserver(&fc)) {
273 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Brazdil0f672f62019-12-10 10:32:29 +0000274 afs_fs_release_lock(&fc, scb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000275 }
276
David Brazdil0f672f62019-12-10 10:32:29 +0000277 afs_check_for_remote_deletion(&fc, vnode);
278 afs_vnode_commit_status(&fc, vnode, fc.cb_break, NULL, scb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000279 ret = afs_end_vnode_operation(&fc);
280 }
281
David Brazdil0f672f62019-12-10 10:32:29 +0000282 kfree(scb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000283 _leave(" = %d", ret);
284 return ret;
285}
286
287/*
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
291 */
292void afs_lock_work(struct work_struct *work)
293{
294 struct afs_vnode *vnode =
295 container_of(work, struct afs_vnode, lock_work.work);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000296 struct key *key;
297 int ret;
298
David Brazdil0f672f62019-12-10 10:32:29 +0000299 _enter("{%llx:%llu}", vnode->fid.vid, vnode->fid.vnode);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000300
301 spin_lock(&vnode->lock);
302
303again:
304 _debug("wstate %u for %p", vnode->lock_state, vnode);
305 switch (vnode->lock_state) {
306 case AFS_VNODE_LOCK_NEED_UNLOCK:
David Brazdil0f672f62019-12-10 10:32:29 +0000307 afs_set_lock_state(vnode, AFS_VNODE_LOCK_UNLOCKING);
308 trace_afs_flock_ev(vnode, NULL, afs_flock_work_unlocking, 0);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000309 spin_unlock(&vnode->lock);
310
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);
David Brazdil0f672f62019-12-10 10:32:29 +0000314 if (ret < 0 && vnode->lock_state != AFS_VNODE_LOCK_DELETED) {
315 trace_afs_flock_ev(vnode, NULL, afs_flock_release_fail,
316 ret);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000317 printk(KERN_WARNING "AFS:"
David Brazdil0f672f62019-12-10 10:32:29 +0000318 " Failed to release lock on {%llx:%llx} error %d\n",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000319 vnode->fid.vid, vnode->fid.vnode, ret);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000320 }
321
David Brazdil0f672f62019-12-10 10:32:29 +0000322 spin_lock(&vnode->lock);
323 if (ret == -ENOENT)
324 afs_kill_lockers_enoent(vnode);
325 else
326 afs_next_locker(vnode, 0);
327 spin_unlock(&vnode->lock);
328 return;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000329
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.
332 */
333 case AFS_VNODE_LOCK_GRANTED:
334 _debug("extend");
335
336 ASSERT(!list_empty(&vnode->granted_locks));
337
338 key = key_get(vnode->lock_key);
David Brazdil0f672f62019-12-10 10:32:29 +0000339 afs_set_lock_state(vnode, AFS_VNODE_LOCK_EXTENDING);
340 trace_afs_flock_ev(vnode, NULL, afs_flock_work_extending, 0);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000341 spin_unlock(&vnode->lock);
342
343 ret = afs_extend_lock(vnode, key); /* RPC */
344 key_put(key);
345
David Brazdil0f672f62019-12-10 10:32:29 +0000346 if (ret < 0) {
347 trace_afs_flock_ev(vnode, NULL, afs_flock_extend_fail,
348 ret);
349 pr_warning("AFS: Failed to extend lock on {%llx:%llx} error %d\n",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000350 vnode->fid.vid, vnode->fid.vnode, ret);
David Brazdil0f672f62019-12-10 10:32:29 +0000351 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000352
353 spin_lock(&vnode->lock);
354
David Brazdil0f672f62019-12-10 10:32:29 +0000355 if (ret == -ENOENT) {
356 afs_kill_lockers_enoent(vnode);
357 spin_unlock(&vnode->lock);
358 return;
359 }
360
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000361 if (vnode->lock_state != AFS_VNODE_LOCK_EXTENDING)
362 goto again;
David Brazdil0f672f62019-12-10 10:32:29 +0000363 afs_set_lock_state(vnode, AFS_VNODE_LOCK_GRANTED);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000364
David Brazdil0f672f62019-12-10 10:32:29 +0000365 if (ret != 0)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000366 queue_delayed_work(afs_lock_manager, &vnode->lock_work,
367 HZ * 10);
368 spin_unlock(&vnode->lock);
369 _leave(" [ext]");
370 return;
371
David Brazdil0f672f62019-12-10 10:32:29 +0000372 /* 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
376 * released.
377 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000378 case AFS_VNODE_LOCK_WAITING_FOR_CB:
David Brazdil0f672f62019-12-10 10:32:29 +0000379 _debug("retry");
380 afs_next_locker(vnode, 0);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000381 spin_unlock(&vnode->lock);
David Brazdil0f672f62019-12-10 10:32:29 +0000382 return;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000383
David Brazdil0f672f62019-12-10 10:32:29 +0000384 case AFS_VNODE_LOCK_DELETED:
385 afs_kill_lockers_enoent(vnode);
386 spin_unlock(&vnode->lock);
387 return;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000388
David Brazdil0f672f62019-12-10 10:32:29 +0000389 /* Fall through */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000390 default:
391 /* Looks like a lock request was withdrawn. */
392 spin_unlock(&vnode->lock);
393 _leave(" [no]");
394 return;
395 }
396}
397
398/*
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
401 * AF_RXRPC
402 * - the caller must hold the vnode lock
403 */
404static void afs_defer_unlock(struct afs_vnode *vnode)
405{
David Brazdil0f672f62019-12-10 10:32:29 +0000406 _enter("%u", vnode->lock_state);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000407
David Brazdil0f672f62019-12-10 10:32:29 +0000408 if (list_empty(&vnode->granted_locks) &&
409 (vnode->lock_state == AFS_VNODE_LOCK_GRANTED ||
410 vnode->lock_state == AFS_VNODE_LOCK_EXTENDING)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000411 cancel_delayed_work(&vnode->lock_work);
412
David Brazdil0f672f62019-12-10 10:32:29 +0000413 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);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000416 }
417}
418
419/*
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.
422 */
423static int afs_do_setlk_check(struct afs_vnode *vnode, struct key *key,
David Brazdil0f672f62019-12-10 10:32:29 +0000424 enum afs_flock_mode mode, afs_lock_type_t type)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000425{
426 afs_access_t access;
427 int ret;
428
429 /* Make sure we've got a callback on this file and that our view of the
430 * data version is up to date.
431 */
432 ret = afs_validate(vnode, key);
433 if (ret < 0)
434 return ret;
435
436 /* Check the permission set to see if we're actually going to be
437 * allowed to get a lock on this file.
438 */
439 ret = afs_check_permit(vnode, key, &access);
440 if (ret < 0)
441 return ret;
442
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.
445 *
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.
448 */
449 if (type == AFS_LOCK_READ) {
450 if (!(access & (AFS_ACE_INSERT | AFS_ACE_WRITE | AFS_ACE_LOCK)))
451 return -EACCES;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000452 } else {
453 if (!(access & (AFS_ACE_INSERT | AFS_ACE_WRITE)))
454 return -EACCES;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000455 }
456
457 return 0;
458}
459
460/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000461 * request a lock on a file on the server
462 */
463static int afs_do_setlk(struct file *file, struct file_lock *fl)
464{
465 struct inode *inode = locks_inode(file);
466 struct afs_vnode *vnode = AFS_FS_I(inode);
David Brazdil0f672f62019-12-10 10:32:29 +0000467 enum afs_flock_mode mode = AFS_FS_S(inode->i_sb)->flock_mode;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000468 afs_lock_type_t type;
469 struct key *key = afs_file_key(file);
David Brazdil0f672f62019-12-10 10:32:29 +0000470 bool partial, no_server_lock = false;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000471 int ret;
472
David Brazdil0f672f62019-12-10 10:32:29 +0000473 if (mode == afs_flock_mode_unset)
474 mode = afs_flock_mode_openafs;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000475
David Brazdil0f672f62019-12-10 10:32:29 +0000476 _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);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000479
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;
483
David Brazdil0f672f62019-12-10 10:32:29 +0000484 partial = (fl->fl_start != 0 || fl->fl_end != OFFSET_MAX);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000485 type = (fl->fl_type == F_RDLCK) ? AFS_LOCK_READ : AFS_LOCK_WRITE;
David Brazdil0f672f62019-12-10 10:32:29 +0000486 if (mode == afs_flock_mode_write && partial)
487 type = AFS_LOCK_WRITE;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000488
David Brazdil0f672f62019-12-10 10:32:29 +0000489 ret = afs_do_setlk_check(vnode, key, mode, type);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000490 if (ret < 0)
491 return ret;
492
David Brazdil0f672f62019-12-10 10:32:29 +0000493 trace_afs_flock_op(vnode, fl, afs_flock_op_set_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000494
David Brazdil0f672f62019-12-10 10:32:29 +0000495 /* 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
497 * locks.
498 *
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
501 * (as the default).
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000502 */
David Brazdil0f672f62019-12-10 10:32:29 +0000503 if (mode == afs_flock_mode_local ||
504 (partial && mode == afs_flock_mode_openafs)) {
505 no_server_lock = true;
506 goto skip_server_lock;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000507 }
508
David Brazdil0f672f62019-12-10 10:32:29 +0000509 spin_lock(&vnode->lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000510 list_add_tail(&fl->fl_u.afs.link, &vnode->pending_locks);
511
David Brazdil0f672f62019-12-10 10:32:29 +0000512 ret = -ENOENT;
513 if (vnode->lock_state == AFS_VNODE_LOCK_DELETED)
514 goto error_unlock;
515
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.
519 */
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;
527 }
528
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;
534 }
535 }
536
537 if (vnode->lock_state == AFS_VNODE_LOCK_NONE &&
538 !(fl->fl_flags & FL_SLEEP)) {
539 ret = -EAGAIN;
540 if (type == AFS_LOCK_READ) {
541 if (vnode->status.lock_count == -1)
542 goto lock_is_contended; /* Write locked */
543 } else {
544 if (vnode->status.lock_count != 0)
545 goto lock_is_contended; /* Locked */
546 }
547 }
548
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000549 if (vnode->lock_state != AFS_VNODE_LOCK_NONE)
550 goto need_to_wait;
551
David Brazdil0f672f62019-12-10 10:32:29 +0000552try_to_lock:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000553 /* 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.
555 *
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
David Brazdil0f672f62019-12-10 10:32:29 +0000559 * lock will expire in 5 mins anyway).
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000560 */
David Brazdil0f672f62019-12-10 10:32:29 +0000561 trace_afs_flock_ev(vnode, fl, afs_flock_try_to_lock, 0);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000562 vnode->lock_key = key_get(key);
563 vnode->lock_type = type;
David Brazdil0f672f62019-12-10 10:32:29 +0000564 afs_set_lock_state(vnode, AFS_VNODE_LOCK_SETTING);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000565 spin_unlock(&vnode->lock);
566
567 ret = afs_set_lock(vnode, key, type); /* RPC */
568
569 spin_lock(&vnode->lock);
570 switch (ret) {
David Brazdil0f672f62019-12-10 10:32:29 +0000571 case -EKEYREJECTED:
572 case -EKEYEXPIRED:
573 case -EKEYREVOKED:
574 case -EPERM:
575 case -EACCES:
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);
580 goto error_unlock;
581
582 case -ENOENT:
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);
587 goto error_unlock;
588
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000589 default:
David Brazdil0f672f62019-12-10 10:32:29 +0000590 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);
594 goto error_unlock;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000595
596 case -EWOULDBLOCK:
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.
600 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000601 ASSERT(list_empty(&vnode->granted_locks));
602 ASSERTCMP(vnode->pending_locks.next, ==, &fl->fl_u.afs.link);
David Brazdil0f672f62019-12-10 10:32:29 +0000603 goto lock_is_contended;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000604
605 case 0:
David Brazdil0f672f62019-12-10 10:32:29 +0000606 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;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000610 }
611
David Brazdil0f672f62019-12-10 10:32:29 +0000612vnode_is_locked_u:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000613 spin_unlock(&vnode->lock);
David Brazdil0f672f62019-12-10 10:32:29 +0000614vnode_is_locked:
615 /* the lock has been granted by the server... */
616 ASSERTCMP(fl->fl_u.afs.state, ==, AFS_LOCK_GRANTED);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000617
David Brazdil0f672f62019-12-10 10:32:29 +0000618skip_server_lock:
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);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000623 if (ret < 0)
624 goto vfs_rejected_lock;
625
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).
629 */
630 afs_validate(vnode, key);
631 _leave(" = 0");
632 return 0;
633
David Brazdil0f672f62019-12-10 10:32:29 +0000634lock_is_contended:
635 if (!(fl->fl_flags & FL_SLEEP)) {
636 list_del_init(&fl->fl_u.afs.link);
637 afs_next_locker(vnode, 0);
638 ret = -EAGAIN;
639 goto error_unlock;
640 }
641
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);
645
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000646need_to_wait:
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
David Brazdil0f672f62019-12-10 10:32:29 +0000649 * the client does have a lock on the server, but it's shared and we
650 * need an exclusive lock.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000651 */
David Brazdil0f672f62019-12-10 10:32:29 +0000652 spin_unlock(&vnode->lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000653
David Brazdil0f672f62019-12-10 10:32:29 +0000654 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);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000658
David Brazdil0f672f62019-12-10 10:32:29 +0000659 if (fl->fl_u.afs.state >= 0 && fl->fl_u.afs.state != AFS_LOCK_GRANTED) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000660 spin_lock(&vnode->lock);
David Brazdil0f672f62019-12-10 10:32:29 +0000661
662 switch (fl->fl_u.afs.state) {
663 case AFS_LOCK_YOUR_TRY:
664 fl->fl_u.afs.state = AFS_LOCK_PENDING;
665 goto try_to_lock;
666 case AFS_LOCK_PENDING:
667 if (ret > 0) {
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.
671 */
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;
675 goto try_to_lock;
676 }
677 goto error_unlock;
678 case AFS_LOCK_GRANTED:
679 default:
680 break;
681 }
682
683 spin_unlock(&vnode->lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000684 }
685
686 if (fl->fl_u.afs.state == AFS_LOCK_GRANTED)
David Brazdil0f672f62019-12-10 10:32:29 +0000687 goto vnode_is_locked;
688 ret = fl->fl_u.afs.state;
689 goto error;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000690
691vfs_rejected_lock:
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
694 * deal with.
695 */
696 _debug("vfs refused %d", ret);
David Brazdil0f672f62019-12-10 10:32:29 +0000697 if (no_server_lock)
698 goto error;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000699 spin_lock(&vnode->lock);
700 list_del_init(&fl->fl_u.afs.link);
David Brazdil0f672f62019-12-10 10:32:29 +0000701 afs_defer_unlock(vnode);
702
703error_unlock:
704 spin_unlock(&vnode->lock);
705error:
706 _leave(" = %d", ret);
707 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000708}
709
710/*
711 * unlock on a file on the server
712 */
713static int afs_do_unlk(struct file *file, struct file_lock *fl)
714{
715 struct afs_vnode *vnode = AFS_FS_I(locks_inode(file));
716 int ret;
717
David Brazdil0f672f62019-12-10 10:32:29 +0000718 _enter("{%llx:%llu},%u", vnode->fid.vid, vnode->fid.vnode, fl->fl_type);
719
720 trace_afs_flock_op(vnode, fl, afs_flock_op_unlock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000721
722 /* Flush all pending writes before doing anything with locks. */
723 vfs_fsync(file, 0);
724
David Brazdil0f672f62019-12-10 10:32:29 +0000725 ret = locks_lock_file_wait(file, fl);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000726 _leave(" = %d [%u]", ret, vnode->lock_state);
727 return ret;
728}
729
730/*
731 * return information about a lock we currently hold, if indeed we hold one
732 */
733static int afs_do_getlk(struct file *file, struct file_lock *fl)
734{
735 struct afs_vnode *vnode = AFS_FS_I(locks_inode(file));
736 struct key *key = afs_file_key(file);
737 int ret, lock_count;
738
739 _enter("");
740
David Brazdil0f672f62019-12-10 10:32:29 +0000741 if (vnode->lock_state == AFS_VNODE_LOCK_DELETED)
742 return -ENOENT;
743
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000744 fl->fl_type = F_UNLCK;
745
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 */
David Brazdil0f672f62019-12-10 10:32:29 +0000750 ret = afs_fetch_status(vnode, key, false, NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000751 if (ret < 0)
752 goto error;
753
754 lock_count = READ_ONCE(vnode->status.lock_count);
David Brazdil0f672f62019-12-10 10:32:29 +0000755 if (lock_count != 0) {
756 if (lock_count > 0)
757 fl->fl_type = F_RDLCK;
758 else
759 fl->fl_type = F_WRLCK;
760 fl->fl_start = 0;
761 fl->fl_end = OFFSET_MAX;
762 fl->fl_pid = 0;
763 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000764 }
765
766 ret = 0;
767error:
768 _leave(" = %d [%hd]", ret, fl->fl_type);
769 return ret;
770}
771
772/*
773 * manage POSIX locks on a file
774 */
775int afs_lock(struct file *file, int cmd, struct file_lock *fl)
776{
777 struct afs_vnode *vnode = AFS_FS_I(locks_inode(file));
David Brazdil0f672f62019-12-10 10:32:29 +0000778 enum afs_flock_operation op;
779 int ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000780
David Brazdil0f672f62019-12-10 10:32:29 +0000781 _enter("{%llx:%llu},%d,{t=%x,fl=%x,r=%Ld:%Ld}",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000782 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);
785
786 /* AFS doesn't support mandatory locks */
787 if (__mandatory_lock(&vnode->vfs_inode) && fl->fl_type != F_UNLCK)
788 return -ENOLCK;
789
790 if (IS_GETLK(cmd))
791 return afs_do_getlk(file, fl);
David Brazdil0f672f62019-12-10 10:32:29 +0000792
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);
795
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000796 if (fl->fl_type == F_UNLCK)
David Brazdil0f672f62019-12-10 10:32:29 +0000797 ret = afs_do_unlk(file, fl);
798 else
799 ret = afs_do_setlk(file, fl);
800
801 switch (ret) {
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;
806 }
807 trace_afs_flock_op(vnode, fl, op);
808 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000809}
810
811/*
812 * manage FLOCK locks on a file
813 */
814int afs_flock(struct file *file, int cmd, struct file_lock *fl)
815{
816 struct afs_vnode *vnode = AFS_FS_I(locks_inode(file));
David Brazdil0f672f62019-12-10 10:32:29 +0000817 enum afs_flock_operation op;
818 int ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000819
David Brazdil0f672f62019-12-10 10:32:29 +0000820 _enter("{%llx:%llu},%d,{t=%x,fl=%x}",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000821 vnode->fid.vid, vnode->fid.vnode, cmd,
822 fl->fl_type, fl->fl_flags);
823
824 /*
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.
830 */
831 if (!(fl->fl_flags & FL_FLOCK))
832 return -ENOLCK;
833
David Brazdil0f672f62019-12-10 10:32:29 +0000834 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);
836
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000837 /* we're simulating flock() locks using posix locks on the server */
838 if (fl->fl_type == F_UNLCK)
David Brazdil0f672f62019-12-10 10:32:29 +0000839 ret = afs_do_unlk(file, fl);
840 else
841 ret = afs_do_setlk(file, fl);
842
843 switch (ret) {
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;
848 }
849 trace_afs_flock_op(vnode, fl, op);
850 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000851}
852
853/*
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
857 * after)
858 */
859static void afs_fl_copy_lock(struct file_lock *new, struct file_lock *fl)
860{
861 struct afs_vnode *vnode = AFS_FS_I(locks_inode(fl->fl_file));
862
863 _enter("");
864
David Brazdil0f672f62019-12-10 10:32:29 +0000865 new->fl_u.afs.debug_id = atomic_inc_return(&afs_file_lock_debug_id);
866
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000867 spin_lock(&vnode->lock);
David Brazdil0f672f62019-12-10 10:32:29 +0000868 trace_afs_flock_op(vnode, new, afs_flock_op_copy_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000869 list_add(&new->fl_u.afs.link, &fl->fl_u.afs.link);
870 spin_unlock(&vnode->lock);
871}
872
873/*
874 * need to remove this lock from the vnode queue when it's removed from the
875 * VFS's list
876 */
877static void afs_fl_release_private(struct file_lock *fl)
878{
879 struct afs_vnode *vnode = AFS_FS_I(locks_inode(fl->fl_file));
880
881 _enter("");
882
883 spin_lock(&vnode->lock);
David Brazdil0f672f62019-12-10 10:32:29 +0000884
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);
889
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000890 _debug("state %u for %p", vnode->lock_state, vnode);
891 spin_unlock(&vnode->lock);
892}