nfsd4: share common stid-hashing helper function
[deliverable/linux.git] / fs / nfsd / nfs4state.c
1 /*
2 * Copyright (c) 2001 The Regents of the University of Michigan.
3 * All rights reserved.
4 *
5 * Kendrick Smith <kmsmith@umich.edu>
6 * Andy Adamson <kandros@umich.edu>
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the University nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
22 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 *
33 */
34
35 #include <linux/file.h>
36 #include <linux/fs.h>
37 #include <linux/slab.h>
38 #include <linux/namei.h>
39 #include <linux/swap.h>
40 #include <linux/pagemap.h>
41 #include <linux/sunrpc/svcauth_gss.h>
42 #include <linux/sunrpc/clnt.h>
43 #include "xdr4.h"
44 #include "vfs.h"
45
46 #define NFSDDBG_FACILITY NFSDDBG_PROC
47
48 /* Globals */
49 time_t nfsd4_lease = 90; /* default lease time */
50 time_t nfsd4_grace = 90;
51 static time_t boot_time;
52 static u32 current_ownerid = 1;
53 static u32 current_fileid = 1;
54 static u32 current_delegid = 1;
55 static stateid_t zerostateid; /* bits all 0 */
56 static stateid_t onestateid; /* bits all 1 */
57 static u64 current_sessionid = 1;
58
59 #define ZERO_STATEID(stateid) (!memcmp((stateid), &zerostateid, sizeof(stateid_t)))
60 #define ONE_STATEID(stateid) (!memcmp((stateid), &onestateid, sizeof(stateid_t)))
61
62 /* forward declarations */
63 static struct nfs4_delegation * search_for_delegation(stateid_t *stid);
64 static struct nfs4_delegation * find_delegation_stateid(struct inode *ino, stateid_t *stid);
65 static int check_for_locks(struct nfs4_file *filp, struct nfs4_lockowner *lowner);
66
67 /* Locking: */
68
69 /* Currently used for almost all code touching nfsv4 state: */
70 static DEFINE_MUTEX(client_mutex);
71
72 /*
73 * Currently used for the del_recall_lru and file hash table. In an
74 * effort to decrease the scope of the client_mutex, this spinlock may
75 * eventually cover more:
76 */
77 static DEFINE_SPINLOCK(recall_lock);
78
79 static struct kmem_cache *openowner_slab = NULL;
80 static struct kmem_cache *lockowner_slab = NULL;
81 static struct kmem_cache *file_slab = NULL;
82 static struct kmem_cache *stateid_slab = NULL;
83 static struct kmem_cache *deleg_slab = NULL;
84
85 void
86 nfs4_lock_state(void)
87 {
88 mutex_lock(&client_mutex);
89 }
90
91 void
92 nfs4_unlock_state(void)
93 {
94 mutex_unlock(&client_mutex);
95 }
96
97 static inline u32
98 opaque_hashval(const void *ptr, int nbytes)
99 {
100 unsigned char *cptr = (unsigned char *) ptr;
101
102 u32 x = 0;
103 while (nbytes--) {
104 x *= 37;
105 x += *cptr++;
106 }
107 return x;
108 }
109
110 static struct list_head del_recall_lru;
111
112 static inline void
113 put_nfs4_file(struct nfs4_file *fi)
114 {
115 if (atomic_dec_and_lock(&fi->fi_ref, &recall_lock)) {
116 list_del(&fi->fi_hash);
117 spin_unlock(&recall_lock);
118 iput(fi->fi_inode);
119 kmem_cache_free(file_slab, fi);
120 }
121 }
122
123 static inline void
124 get_nfs4_file(struct nfs4_file *fi)
125 {
126 atomic_inc(&fi->fi_ref);
127 }
128
129 static int num_delegations;
130 unsigned int max_delegations;
131
132 /*
133 * Open owner state (share locks)
134 */
135
136 /* hash tables for open owners */
137 #define OPEN_OWNER_HASH_BITS 8
138 #define OPEN_OWNER_HASH_SIZE (1 << OPEN_OWNER_HASH_BITS)
139 #define OPEN_OWNER_HASH_MASK (OPEN_OWNER_HASH_SIZE - 1)
140
141 static unsigned int open_ownerid_hashval(const u32 id)
142 {
143 return id & OPEN_OWNER_HASH_MASK;
144 }
145
146 static unsigned int open_ownerstr_hashval(u32 clientid, struct xdr_netobj *ownername)
147 {
148 unsigned int ret;
149
150 ret = opaque_hashval(ownername->data, ownername->len);
151 ret += clientid;
152 return ret & OPEN_OWNER_HASH_MASK;
153 }
154
155 static struct list_head open_ownerid_hashtbl[OPEN_OWNER_HASH_SIZE];
156 static struct list_head open_ownerstr_hashtbl[OPEN_OWNER_HASH_SIZE];
157
158 /* hash table for nfs4_file */
159 #define FILE_HASH_BITS 8
160 #define FILE_HASH_SIZE (1 << FILE_HASH_BITS)
161
162 /* hash table for (open)nfs4_ol_stateid */
163 #define STATEID_HASH_BITS 10
164 #define STATEID_HASH_SIZE (1 << STATEID_HASH_BITS)
165 #define STATEID_HASH_MASK (STATEID_HASH_SIZE - 1)
166
167 static unsigned int file_hashval(struct inode *ino)
168 {
169 /* XXX: why are we hashing on inode pointer, anyway? */
170 return hash_ptr(ino, FILE_HASH_BITS);
171 }
172
173 static unsigned int stateid_hashval(u32 owner_id, u32 file_id)
174 {
175 return (owner_id + file_id) & STATEID_HASH_MASK;
176 }
177
178 static struct list_head file_hashtbl[FILE_HASH_SIZE];
179 static struct list_head stateid_hashtbl[STATEID_HASH_SIZE];
180
181 static void __nfs4_file_get_access(struct nfs4_file *fp, int oflag)
182 {
183 BUG_ON(!(fp->fi_fds[oflag] || fp->fi_fds[O_RDWR]));
184 atomic_inc(&fp->fi_access[oflag]);
185 }
186
187 static void nfs4_file_get_access(struct nfs4_file *fp, int oflag)
188 {
189 if (oflag == O_RDWR) {
190 __nfs4_file_get_access(fp, O_RDONLY);
191 __nfs4_file_get_access(fp, O_WRONLY);
192 } else
193 __nfs4_file_get_access(fp, oflag);
194 }
195
196 static void nfs4_file_put_fd(struct nfs4_file *fp, int oflag)
197 {
198 if (fp->fi_fds[oflag]) {
199 fput(fp->fi_fds[oflag]);
200 fp->fi_fds[oflag] = NULL;
201 }
202 }
203
204 static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag)
205 {
206 if (atomic_dec_and_test(&fp->fi_access[oflag])) {
207 nfs4_file_put_fd(fp, O_RDWR);
208 nfs4_file_put_fd(fp, oflag);
209 }
210 }
211
212 static void nfs4_file_put_access(struct nfs4_file *fp, int oflag)
213 {
214 if (oflag == O_RDWR) {
215 __nfs4_file_put_access(fp, O_RDONLY);
216 __nfs4_file_put_access(fp, O_WRONLY);
217 } else
218 __nfs4_file_put_access(fp, oflag);
219 }
220
221 static inline void hash_stid(struct nfs4_stid *stid)
222 {
223 stateid_t *s = &stid->sc_stateid;
224 unsigned int hashval;
225
226 hashval = stateid_hashval(s->si_stateownerid, s->si_fileid);
227 list_add(&stid->sc_hash, &stateid_hashtbl[hashval]);
228 }
229
230 static struct nfs4_delegation *
231 alloc_init_deleg(struct nfs4_client *clp, struct nfs4_ol_stateid *stp, struct svc_fh *current_fh, u32 type)
232 {
233 struct nfs4_delegation *dp;
234 struct nfs4_file *fp = stp->st_file;
235
236 dprintk("NFSD alloc_init_deleg\n");
237 /*
238 * Major work on the lease subsystem (for example, to support
239 * calbacks on stat) will be required before we can support
240 * write delegations properly.
241 */
242 if (type != NFS4_OPEN_DELEGATE_READ)
243 return NULL;
244 if (fp->fi_had_conflict)
245 return NULL;
246 if (num_delegations > max_delegations)
247 return NULL;
248 dp = kmem_cache_alloc(deleg_slab, GFP_KERNEL);
249 if (dp == NULL)
250 return dp;
251 num_delegations++;
252 INIT_LIST_HEAD(&dp->dl_perfile);
253 INIT_LIST_HEAD(&dp->dl_perclnt);
254 INIT_LIST_HEAD(&dp->dl_recall_lru);
255 dp->dl_client = clp;
256 get_nfs4_file(fp);
257 dp->dl_file = fp;
258 dp->dl_type = type;
259 dp->dl_stid.sc_stateid.si_boot = boot_time;
260 dp->dl_stid.sc_stateid.si_stateownerid = current_delegid++;
261 dp->dl_stid.sc_stateid.si_fileid = 0;
262 dp->dl_stid.sc_stateid.si_generation = 1;
263 fh_copy_shallow(&dp->dl_fh, &current_fh->fh_handle);
264 dp->dl_time = 0;
265 atomic_set(&dp->dl_count, 1);
266 INIT_WORK(&dp->dl_recall.cb_work, nfsd4_do_callback_rpc);
267 return dp;
268 }
269
270 void
271 nfs4_put_delegation(struct nfs4_delegation *dp)
272 {
273 if (atomic_dec_and_test(&dp->dl_count)) {
274 dprintk("NFSD: freeing dp %p\n",dp);
275 put_nfs4_file(dp->dl_file);
276 kmem_cache_free(deleg_slab, dp);
277 num_delegations--;
278 }
279 }
280
281 static void nfs4_put_deleg_lease(struct nfs4_file *fp)
282 {
283 if (atomic_dec_and_test(&fp->fi_delegees)) {
284 vfs_setlease(fp->fi_deleg_file, F_UNLCK, &fp->fi_lease);
285 fp->fi_lease = NULL;
286 fput(fp->fi_deleg_file);
287 fp->fi_deleg_file = NULL;
288 }
289 }
290
291 /* Called under the state lock. */
292 static void
293 unhash_delegation(struct nfs4_delegation *dp)
294 {
295 list_del_init(&dp->dl_perclnt);
296 spin_lock(&recall_lock);
297 list_del_init(&dp->dl_perfile);
298 list_del_init(&dp->dl_recall_lru);
299 spin_unlock(&recall_lock);
300 nfs4_put_deleg_lease(dp->dl_file);
301 nfs4_put_delegation(dp);
302 }
303
304 /*
305 * SETCLIENTID state
306 */
307
308 /* client_lock protects the client lru list and session hash table */
309 static DEFINE_SPINLOCK(client_lock);
310
311 /* Hash tables for nfs4_clientid state */
312 #define CLIENT_HASH_BITS 4
313 #define CLIENT_HASH_SIZE (1 << CLIENT_HASH_BITS)
314 #define CLIENT_HASH_MASK (CLIENT_HASH_SIZE - 1)
315
316 static unsigned int clientid_hashval(u32 id)
317 {
318 return id & CLIENT_HASH_MASK;
319 }
320
321 static unsigned int clientstr_hashval(const char *name)
322 {
323 return opaque_hashval(name, 8) & CLIENT_HASH_MASK;
324 }
325
326 /*
327 * reclaim_str_hashtbl[] holds known client info from previous reset/reboot
328 * used in reboot/reset lease grace period processing
329 *
330 * conf_id_hashtbl[], and conf_str_hashtbl[] hold confirmed
331 * setclientid_confirmed info.
332 *
333 * unconf_str_hastbl[] and unconf_id_hashtbl[] hold unconfirmed
334 * setclientid info.
335 *
336 * client_lru holds client queue ordered by nfs4_client.cl_time
337 * for lease renewal.
338 *
339 * close_lru holds (open) stateowner queue ordered by nfs4_stateowner.so_time
340 * for last close replay.
341 */
342 static struct list_head reclaim_str_hashtbl[CLIENT_HASH_SIZE];
343 static int reclaim_str_hashtbl_size = 0;
344 static struct list_head conf_id_hashtbl[CLIENT_HASH_SIZE];
345 static struct list_head conf_str_hashtbl[CLIENT_HASH_SIZE];
346 static struct list_head unconf_str_hashtbl[CLIENT_HASH_SIZE];
347 static struct list_head unconf_id_hashtbl[CLIENT_HASH_SIZE];
348 static struct list_head client_lru;
349 static struct list_head close_lru;
350
351 /*
352 * We store the NONE, READ, WRITE, and BOTH bits separately in the
353 * st_{access,deny}_bmap field of the stateid, in order to track not
354 * only what share bits are currently in force, but also what
355 * combinations of share bits previous opens have used. This allows us
356 * to enforce the recommendation of rfc 3530 14.2.19 that the server
357 * return an error if the client attempt to downgrade to a combination
358 * of share bits not explicable by closing some of its previous opens.
359 *
360 * XXX: This enforcement is actually incomplete, since we don't keep
361 * track of access/deny bit combinations; so, e.g., we allow:
362 *
363 * OPEN allow read, deny write
364 * OPEN allow both, deny none
365 * DOWNGRADE allow read, deny none
366 *
367 * which we should reject.
368 */
369 static void
370 set_access(unsigned int *access, unsigned long bmap) {
371 int i;
372
373 *access = 0;
374 for (i = 1; i < 4; i++) {
375 if (test_bit(i, &bmap))
376 *access |= i;
377 }
378 }
379
380 static void
381 set_deny(unsigned int *deny, unsigned long bmap) {
382 int i;
383
384 *deny = 0;
385 for (i = 0; i < 4; i++) {
386 if (test_bit(i, &bmap))
387 *deny |= i ;
388 }
389 }
390
391 static int
392 test_share(struct nfs4_ol_stateid *stp, struct nfsd4_open *open) {
393 unsigned int access, deny;
394
395 set_access(&access, stp->st_access_bmap);
396 set_deny(&deny, stp->st_deny_bmap);
397 if ((access & open->op_share_deny) || (deny & open->op_share_access))
398 return 0;
399 return 1;
400 }
401
402 static int nfs4_access_to_omode(u32 access)
403 {
404 switch (access & NFS4_SHARE_ACCESS_BOTH) {
405 case NFS4_SHARE_ACCESS_READ:
406 return O_RDONLY;
407 case NFS4_SHARE_ACCESS_WRITE:
408 return O_WRONLY;
409 case NFS4_SHARE_ACCESS_BOTH:
410 return O_RDWR;
411 }
412 BUG();
413 }
414
415 static void unhash_generic_stateid(struct nfs4_ol_stateid *stp)
416 {
417 list_del(&stp->st_stid.sc_hash);
418 list_del(&stp->st_perfile);
419 list_del(&stp->st_perstateowner);
420 }
421
422 static void close_generic_stateid(struct nfs4_ol_stateid *stp)
423 {
424 int i;
425
426 if (stp->st_access_bmap) {
427 for (i = 1; i < 4; i++) {
428 if (test_bit(i, &stp->st_access_bmap))
429 nfs4_file_put_access(stp->st_file,
430 nfs4_access_to_omode(i));
431 __clear_bit(i, &stp->st_access_bmap);
432 }
433 }
434 put_nfs4_file(stp->st_file);
435 stp->st_file = NULL;
436 }
437
438 static void free_generic_stateid(struct nfs4_ol_stateid *stp)
439 {
440 close_generic_stateid(stp);
441 kmem_cache_free(stateid_slab, stp);
442 }
443
444 static void release_lock_stateid(struct nfs4_ol_stateid *stp)
445 {
446 struct file *file;
447
448 unhash_generic_stateid(stp);
449 file = find_any_file(stp->st_file);
450 if (file)
451 locks_remove_posix(file, (fl_owner_t)lockowner(stp->st_stateowner));
452 free_generic_stateid(stp);
453 }
454
455 static void unhash_lockowner(struct nfs4_lockowner *lo)
456 {
457 struct nfs4_ol_stateid *stp;
458
459 list_del(&lo->lo_owner.so_idhash);
460 list_del(&lo->lo_owner.so_strhash);
461 list_del(&lo->lo_perstateid);
462 while (!list_empty(&lo->lo_owner.so_stateids)) {
463 stp = list_first_entry(&lo->lo_owner.so_stateids,
464 struct nfs4_ol_stateid, st_perstateowner);
465 release_lock_stateid(stp);
466 }
467 }
468
469 static void release_lockowner(struct nfs4_lockowner *lo)
470 {
471 unhash_lockowner(lo);
472 nfs4_free_lockowner(lo);
473 }
474
475 static void
476 release_stateid_lockowners(struct nfs4_ol_stateid *open_stp)
477 {
478 struct nfs4_lockowner *lo;
479
480 while (!list_empty(&open_stp->st_lockowners)) {
481 lo = list_entry(open_stp->st_lockowners.next,
482 struct nfs4_lockowner, lo_perstateid);
483 release_lockowner(lo);
484 }
485 }
486
487 static void release_open_stateid(struct nfs4_ol_stateid *stp)
488 {
489 unhash_generic_stateid(stp);
490 release_stateid_lockowners(stp);
491 free_generic_stateid(stp);
492 }
493
494 static void unhash_openowner(struct nfs4_openowner *oo)
495 {
496 struct nfs4_ol_stateid *stp;
497
498 list_del(&oo->oo_owner.so_idhash);
499 list_del(&oo->oo_owner.so_strhash);
500 list_del(&oo->oo_perclient);
501 while (!list_empty(&oo->oo_owner.so_stateids)) {
502 stp = list_first_entry(&oo->oo_owner.so_stateids,
503 struct nfs4_ol_stateid, st_perstateowner);
504 release_open_stateid(stp);
505 }
506 }
507
508 static void release_openowner(struct nfs4_openowner *oo)
509 {
510 unhash_openowner(oo);
511 list_del(&oo->oo_close_lru);
512 nfs4_free_openowner(oo);
513 }
514
515 #define SESSION_HASH_SIZE 512
516 static struct list_head sessionid_hashtbl[SESSION_HASH_SIZE];
517
518 static inline int
519 hash_sessionid(struct nfs4_sessionid *sessionid)
520 {
521 struct nfsd4_sessionid *sid = (struct nfsd4_sessionid *)sessionid;
522
523 return sid->sequence % SESSION_HASH_SIZE;
524 }
525
526 static inline void
527 dump_sessionid(const char *fn, struct nfs4_sessionid *sessionid)
528 {
529 u32 *ptr = (u32 *)(&sessionid->data[0]);
530 dprintk("%s: %u:%u:%u:%u\n", fn, ptr[0], ptr[1], ptr[2], ptr[3]);
531 }
532
533 static void
534 gen_sessionid(struct nfsd4_session *ses)
535 {
536 struct nfs4_client *clp = ses->se_client;
537 struct nfsd4_sessionid *sid;
538
539 sid = (struct nfsd4_sessionid *)ses->se_sessionid.data;
540 sid->clientid = clp->cl_clientid;
541 sid->sequence = current_sessionid++;
542 sid->reserved = 0;
543 }
544
545 /*
546 * The protocol defines ca_maxresponssize_cached to include the size of
547 * the rpc header, but all we need to cache is the data starting after
548 * the end of the initial SEQUENCE operation--the rest we regenerate
549 * each time. Therefore we can advertise a ca_maxresponssize_cached
550 * value that is the number of bytes in our cache plus a few additional
551 * bytes. In order to stay on the safe side, and not promise more than
552 * we can cache, those additional bytes must be the minimum possible: 24
553 * bytes of rpc header (xid through accept state, with AUTH_NULL
554 * verifier), 12 for the compound header (with zero-length tag), and 44
555 * for the SEQUENCE op response:
556 */
557 #define NFSD_MIN_HDR_SEQ_SZ (24 + 12 + 44)
558
559 static void
560 free_session_slots(struct nfsd4_session *ses)
561 {
562 int i;
563
564 for (i = 0; i < ses->se_fchannel.maxreqs; i++)
565 kfree(ses->se_slots[i]);
566 }
567
568 /*
569 * We don't actually need to cache the rpc and session headers, so we
570 * can allocate a little less for each slot:
571 */
572 static inline int slot_bytes(struct nfsd4_channel_attrs *ca)
573 {
574 return ca->maxresp_cached - NFSD_MIN_HDR_SEQ_SZ;
575 }
576
577 static int nfsd4_sanitize_slot_size(u32 size)
578 {
579 size -= NFSD_MIN_HDR_SEQ_SZ; /* We don't cache the rpc header */
580 size = min_t(u32, size, NFSD_SLOT_CACHE_SIZE);
581
582 return size;
583 }
584
585 /*
586 * XXX: If we run out of reserved DRC memory we could (up to a point)
587 * re-negotiate active sessions and reduce their slot usage to make
588 * rooom for new connections. For now we just fail the create session.
589 */
590 static int nfsd4_get_drc_mem(int slotsize, u32 num)
591 {
592 int avail;
593
594 num = min_t(u32, num, NFSD_MAX_SLOTS_PER_SESSION);
595
596 spin_lock(&nfsd_drc_lock);
597 avail = min_t(int, NFSD_MAX_MEM_PER_SESSION,
598 nfsd_drc_max_mem - nfsd_drc_mem_used);
599 num = min_t(int, num, avail / slotsize);
600 nfsd_drc_mem_used += num * slotsize;
601 spin_unlock(&nfsd_drc_lock);
602
603 return num;
604 }
605
606 static void nfsd4_put_drc_mem(int slotsize, int num)
607 {
608 spin_lock(&nfsd_drc_lock);
609 nfsd_drc_mem_used -= slotsize * num;
610 spin_unlock(&nfsd_drc_lock);
611 }
612
613 static struct nfsd4_session *alloc_session(int slotsize, int numslots)
614 {
615 struct nfsd4_session *new;
616 int mem, i;
617
618 BUILD_BUG_ON(NFSD_MAX_SLOTS_PER_SESSION * sizeof(struct nfsd4_slot *)
619 + sizeof(struct nfsd4_session) > PAGE_SIZE);
620 mem = numslots * sizeof(struct nfsd4_slot *);
621
622 new = kzalloc(sizeof(*new) + mem, GFP_KERNEL);
623 if (!new)
624 return NULL;
625 /* allocate each struct nfsd4_slot and data cache in one piece */
626 for (i = 0; i < numslots; i++) {
627 mem = sizeof(struct nfsd4_slot) + slotsize;
628 new->se_slots[i] = kzalloc(mem, GFP_KERNEL);
629 if (!new->se_slots[i])
630 goto out_free;
631 }
632 return new;
633 out_free:
634 while (i--)
635 kfree(new->se_slots[i]);
636 kfree(new);
637 return NULL;
638 }
639
640 static void init_forechannel_attrs(struct nfsd4_channel_attrs *new, struct nfsd4_channel_attrs *req, int numslots, int slotsize)
641 {
642 u32 maxrpc = nfsd_serv->sv_max_mesg;
643
644 new->maxreqs = numslots;
645 new->maxresp_cached = min_t(u32, req->maxresp_cached,
646 slotsize + NFSD_MIN_HDR_SEQ_SZ);
647 new->maxreq_sz = min_t(u32, req->maxreq_sz, maxrpc);
648 new->maxresp_sz = min_t(u32, req->maxresp_sz, maxrpc);
649 new->maxops = min_t(u32, req->maxops, NFSD_MAX_OPS_PER_COMPOUND);
650 }
651
652 static void free_conn(struct nfsd4_conn *c)
653 {
654 svc_xprt_put(c->cn_xprt);
655 kfree(c);
656 }
657
658 static void nfsd4_conn_lost(struct svc_xpt_user *u)
659 {
660 struct nfsd4_conn *c = container_of(u, struct nfsd4_conn, cn_xpt_user);
661 struct nfs4_client *clp = c->cn_session->se_client;
662
663 spin_lock(&clp->cl_lock);
664 if (!list_empty(&c->cn_persession)) {
665 list_del(&c->cn_persession);
666 free_conn(c);
667 }
668 spin_unlock(&clp->cl_lock);
669 nfsd4_probe_callback(clp);
670 }
671
672 static struct nfsd4_conn *alloc_conn(struct svc_rqst *rqstp, u32 flags)
673 {
674 struct nfsd4_conn *conn;
675
676 conn = kmalloc(sizeof(struct nfsd4_conn), GFP_KERNEL);
677 if (!conn)
678 return NULL;
679 svc_xprt_get(rqstp->rq_xprt);
680 conn->cn_xprt = rqstp->rq_xprt;
681 conn->cn_flags = flags;
682 INIT_LIST_HEAD(&conn->cn_xpt_user.list);
683 return conn;
684 }
685
686 static void __nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
687 {
688 conn->cn_session = ses;
689 list_add(&conn->cn_persession, &ses->se_conns);
690 }
691
692 static void nfsd4_hash_conn(struct nfsd4_conn *conn, struct nfsd4_session *ses)
693 {
694 struct nfs4_client *clp = ses->se_client;
695
696 spin_lock(&clp->cl_lock);
697 __nfsd4_hash_conn(conn, ses);
698 spin_unlock(&clp->cl_lock);
699 }
700
701 static int nfsd4_register_conn(struct nfsd4_conn *conn)
702 {
703 conn->cn_xpt_user.callback = nfsd4_conn_lost;
704 return register_xpt_user(conn->cn_xprt, &conn->cn_xpt_user);
705 }
706
707 static __be32 nfsd4_new_conn(struct svc_rqst *rqstp, struct nfsd4_session *ses, u32 dir)
708 {
709 struct nfsd4_conn *conn;
710 int ret;
711
712 conn = alloc_conn(rqstp, dir);
713 if (!conn)
714 return nfserr_jukebox;
715 nfsd4_hash_conn(conn, ses);
716 ret = nfsd4_register_conn(conn);
717 if (ret)
718 /* oops; xprt is already down: */
719 nfsd4_conn_lost(&conn->cn_xpt_user);
720 return nfs_ok;
721 }
722
723 static __be32 nfsd4_new_conn_from_crses(struct svc_rqst *rqstp, struct nfsd4_session *ses)
724 {
725 u32 dir = NFS4_CDFC4_FORE;
726
727 if (ses->se_flags & SESSION4_BACK_CHAN)
728 dir |= NFS4_CDFC4_BACK;
729
730 return nfsd4_new_conn(rqstp, ses, dir);
731 }
732
733 /* must be called under client_lock */
734 static void nfsd4_del_conns(struct nfsd4_session *s)
735 {
736 struct nfs4_client *clp = s->se_client;
737 struct nfsd4_conn *c;
738
739 spin_lock(&clp->cl_lock);
740 while (!list_empty(&s->se_conns)) {
741 c = list_first_entry(&s->se_conns, struct nfsd4_conn, cn_persession);
742 list_del_init(&c->cn_persession);
743 spin_unlock(&clp->cl_lock);
744
745 unregister_xpt_user(c->cn_xprt, &c->cn_xpt_user);
746 free_conn(c);
747
748 spin_lock(&clp->cl_lock);
749 }
750 spin_unlock(&clp->cl_lock);
751 }
752
753 void free_session(struct kref *kref)
754 {
755 struct nfsd4_session *ses;
756 int mem;
757
758 ses = container_of(kref, struct nfsd4_session, se_ref);
759 nfsd4_del_conns(ses);
760 spin_lock(&nfsd_drc_lock);
761 mem = ses->se_fchannel.maxreqs * slot_bytes(&ses->se_fchannel);
762 nfsd_drc_mem_used -= mem;
763 spin_unlock(&nfsd_drc_lock);
764 free_session_slots(ses);
765 kfree(ses);
766 }
767
768 static struct nfsd4_session *alloc_init_session(struct svc_rqst *rqstp, struct nfs4_client *clp, struct nfsd4_create_session *cses)
769 {
770 struct nfsd4_session *new;
771 struct nfsd4_channel_attrs *fchan = &cses->fore_channel;
772 int numslots, slotsize;
773 int status;
774 int idx;
775
776 /*
777 * Note decreasing slot size below client's request may
778 * make it difficult for client to function correctly, whereas
779 * decreasing the number of slots will (just?) affect
780 * performance. When short on memory we therefore prefer to
781 * decrease number of slots instead of their size.
782 */
783 slotsize = nfsd4_sanitize_slot_size(fchan->maxresp_cached);
784 numslots = nfsd4_get_drc_mem(slotsize, fchan->maxreqs);
785 if (numslots < 1)
786 return NULL;
787
788 new = alloc_session(slotsize, numslots);
789 if (!new) {
790 nfsd4_put_drc_mem(slotsize, fchan->maxreqs);
791 return NULL;
792 }
793 init_forechannel_attrs(&new->se_fchannel, fchan, numslots, slotsize);
794
795 new->se_client = clp;
796 gen_sessionid(new);
797
798 INIT_LIST_HEAD(&new->se_conns);
799
800 new->se_cb_seq_nr = 1;
801 new->se_flags = cses->flags;
802 new->se_cb_prog = cses->callback_prog;
803 kref_init(&new->se_ref);
804 idx = hash_sessionid(&new->se_sessionid);
805 spin_lock(&client_lock);
806 list_add(&new->se_hash, &sessionid_hashtbl[idx]);
807 spin_lock(&clp->cl_lock);
808 list_add(&new->se_perclnt, &clp->cl_sessions);
809 spin_unlock(&clp->cl_lock);
810 spin_unlock(&client_lock);
811
812 status = nfsd4_new_conn_from_crses(rqstp, new);
813 /* whoops: benny points out, status is ignored! (err, or bogus) */
814 if (status) {
815 free_session(&new->se_ref);
816 return NULL;
817 }
818 if (cses->flags & SESSION4_BACK_CHAN) {
819 struct sockaddr *sa = svc_addr(rqstp);
820 /*
821 * This is a little silly; with sessions there's no real
822 * use for the callback address. Use the peer address
823 * as a reasonable default for now, but consider fixing
824 * the rpc client not to require an address in the
825 * future:
826 */
827 rpc_copy_addr((struct sockaddr *)&clp->cl_cb_conn.cb_addr, sa);
828 clp->cl_cb_conn.cb_addrlen = svc_addr_len(sa);
829 }
830 nfsd4_probe_callback(clp);
831 return new;
832 }
833
834 /* caller must hold client_lock */
835 static struct nfsd4_session *
836 find_in_sessionid_hashtbl(struct nfs4_sessionid *sessionid)
837 {
838 struct nfsd4_session *elem;
839 int idx;
840
841 dump_sessionid(__func__, sessionid);
842 idx = hash_sessionid(sessionid);
843 /* Search in the appropriate list */
844 list_for_each_entry(elem, &sessionid_hashtbl[idx], se_hash) {
845 if (!memcmp(elem->se_sessionid.data, sessionid->data,
846 NFS4_MAX_SESSIONID_LEN)) {
847 return elem;
848 }
849 }
850
851 dprintk("%s: session not found\n", __func__);
852 return NULL;
853 }
854
855 /* caller must hold client_lock */
856 static void
857 unhash_session(struct nfsd4_session *ses)
858 {
859 list_del(&ses->se_hash);
860 spin_lock(&ses->se_client->cl_lock);
861 list_del(&ses->se_perclnt);
862 spin_unlock(&ses->se_client->cl_lock);
863 }
864
865 /* must be called under the client_lock */
866 static inline void
867 renew_client_locked(struct nfs4_client *clp)
868 {
869 if (is_client_expired(clp)) {
870 dprintk("%s: client (clientid %08x/%08x) already expired\n",
871 __func__,
872 clp->cl_clientid.cl_boot,
873 clp->cl_clientid.cl_id);
874 return;
875 }
876
877 /*
878 * Move client to the end to the LRU list.
879 */
880 dprintk("renewing client (clientid %08x/%08x)\n",
881 clp->cl_clientid.cl_boot,
882 clp->cl_clientid.cl_id);
883 list_move_tail(&clp->cl_lru, &client_lru);
884 clp->cl_time = get_seconds();
885 }
886
887 static inline void
888 renew_client(struct nfs4_client *clp)
889 {
890 spin_lock(&client_lock);
891 renew_client_locked(clp);
892 spin_unlock(&client_lock);
893 }
894
895 /* SETCLIENTID and SETCLIENTID_CONFIRM Helper functions */
896 static int
897 STALE_CLIENTID(clientid_t *clid)
898 {
899 if (clid->cl_boot == boot_time)
900 return 0;
901 dprintk("NFSD stale clientid (%08x/%08x) boot_time %08lx\n",
902 clid->cl_boot, clid->cl_id, boot_time);
903 return 1;
904 }
905
906 /*
907 * XXX Should we use a slab cache ?
908 * This type of memory management is somewhat inefficient, but we use it
909 * anyway since SETCLIENTID is not a common operation.
910 */
911 static struct nfs4_client *alloc_client(struct xdr_netobj name)
912 {
913 struct nfs4_client *clp;
914
915 clp = kzalloc(sizeof(struct nfs4_client), GFP_KERNEL);
916 if (clp == NULL)
917 return NULL;
918 clp->cl_name.data = kmalloc(name.len, GFP_KERNEL);
919 if (clp->cl_name.data == NULL) {
920 kfree(clp);
921 return NULL;
922 }
923 memcpy(clp->cl_name.data, name.data, name.len);
924 clp->cl_name.len = name.len;
925 return clp;
926 }
927
928 static inline void
929 free_client(struct nfs4_client *clp)
930 {
931 while (!list_empty(&clp->cl_sessions)) {
932 struct nfsd4_session *ses;
933 ses = list_entry(clp->cl_sessions.next, struct nfsd4_session,
934 se_perclnt);
935 list_del(&ses->se_perclnt);
936 nfsd4_put_session(ses);
937 }
938 if (clp->cl_cred.cr_group_info)
939 put_group_info(clp->cl_cred.cr_group_info);
940 kfree(clp->cl_principal);
941 kfree(clp->cl_name.data);
942 kfree(clp);
943 }
944
945 void
946 release_session_client(struct nfsd4_session *session)
947 {
948 struct nfs4_client *clp = session->se_client;
949
950 if (!atomic_dec_and_lock(&clp->cl_refcount, &client_lock))
951 return;
952 if (is_client_expired(clp)) {
953 free_client(clp);
954 session->se_client = NULL;
955 } else
956 renew_client_locked(clp);
957 spin_unlock(&client_lock);
958 }
959
960 /* must be called under the client_lock */
961 static inline void
962 unhash_client_locked(struct nfs4_client *clp)
963 {
964 struct nfsd4_session *ses;
965
966 mark_client_expired(clp);
967 list_del(&clp->cl_lru);
968 spin_lock(&clp->cl_lock);
969 list_for_each_entry(ses, &clp->cl_sessions, se_perclnt)
970 list_del_init(&ses->se_hash);
971 spin_unlock(&clp->cl_lock);
972 }
973
974 static void
975 expire_client(struct nfs4_client *clp)
976 {
977 struct nfs4_openowner *oo;
978 struct nfs4_delegation *dp;
979 struct list_head reaplist;
980
981 INIT_LIST_HEAD(&reaplist);
982 spin_lock(&recall_lock);
983 while (!list_empty(&clp->cl_delegations)) {
984 dp = list_entry(clp->cl_delegations.next, struct nfs4_delegation, dl_perclnt);
985 list_del_init(&dp->dl_perclnt);
986 list_move(&dp->dl_recall_lru, &reaplist);
987 }
988 spin_unlock(&recall_lock);
989 while (!list_empty(&reaplist)) {
990 dp = list_entry(reaplist.next, struct nfs4_delegation, dl_recall_lru);
991 list_del_init(&dp->dl_recall_lru);
992 unhash_delegation(dp);
993 }
994 while (!list_empty(&clp->cl_openowners)) {
995 oo = list_entry(clp->cl_openowners.next, struct nfs4_openowner, oo_perclient);
996 release_openowner(oo);
997 }
998 nfsd4_shutdown_callback(clp);
999 if (clp->cl_cb_conn.cb_xprt)
1000 svc_xprt_put(clp->cl_cb_conn.cb_xprt);
1001 list_del(&clp->cl_idhash);
1002 list_del(&clp->cl_strhash);
1003 spin_lock(&client_lock);
1004 unhash_client_locked(clp);
1005 if (atomic_read(&clp->cl_refcount) == 0)
1006 free_client(clp);
1007 spin_unlock(&client_lock);
1008 }
1009
1010 static void copy_verf(struct nfs4_client *target, nfs4_verifier *source)
1011 {
1012 memcpy(target->cl_verifier.data, source->data,
1013 sizeof(target->cl_verifier.data));
1014 }
1015
1016 static void copy_clid(struct nfs4_client *target, struct nfs4_client *source)
1017 {
1018 target->cl_clientid.cl_boot = source->cl_clientid.cl_boot;
1019 target->cl_clientid.cl_id = source->cl_clientid.cl_id;
1020 }
1021
1022 static void copy_cred(struct svc_cred *target, struct svc_cred *source)
1023 {
1024 target->cr_uid = source->cr_uid;
1025 target->cr_gid = source->cr_gid;
1026 target->cr_group_info = source->cr_group_info;
1027 get_group_info(target->cr_group_info);
1028 }
1029
1030 static int same_name(const char *n1, const char *n2)
1031 {
1032 return 0 == memcmp(n1, n2, HEXDIR_LEN);
1033 }
1034
1035 static int
1036 same_verf(nfs4_verifier *v1, nfs4_verifier *v2)
1037 {
1038 return 0 == memcmp(v1->data, v2->data, sizeof(v1->data));
1039 }
1040
1041 static int
1042 same_clid(clientid_t *cl1, clientid_t *cl2)
1043 {
1044 return (cl1->cl_boot == cl2->cl_boot) && (cl1->cl_id == cl2->cl_id);
1045 }
1046
1047 /* XXX what about NGROUP */
1048 static int
1049 same_creds(struct svc_cred *cr1, struct svc_cred *cr2)
1050 {
1051 return cr1->cr_uid == cr2->cr_uid;
1052 }
1053
1054 static void gen_clid(struct nfs4_client *clp)
1055 {
1056 static u32 current_clientid = 1;
1057
1058 clp->cl_clientid.cl_boot = boot_time;
1059 clp->cl_clientid.cl_id = current_clientid++;
1060 }
1061
1062 static void gen_confirm(struct nfs4_client *clp)
1063 {
1064 static u32 i;
1065 u32 *p;
1066
1067 p = (u32 *)clp->cl_confirm.data;
1068 *p++ = get_seconds();
1069 *p++ = i++;
1070 }
1071
1072 static int
1073 same_stateid(stateid_t *id_one, stateid_t *id_two)
1074 {
1075 if (id_one->si_stateownerid != id_two->si_stateownerid)
1076 return 0;
1077 return id_one->si_fileid == id_two->si_fileid;
1078 }
1079
1080 static struct nfs4_ol_stateid *find_stateid(stateid_t *t)
1081 {
1082 struct nfs4_stid *s;
1083 unsigned int hashval;
1084
1085 hashval = stateid_hashval(t->si_stateownerid, t->si_fileid);
1086 list_for_each_entry(s, &stateid_hashtbl[hashval], sc_hash)
1087 if (same_stateid(&s->sc_stateid, t))
1088 return openlockstateid(s);
1089 return NULL;
1090 }
1091
1092 static struct nfs4_ol_stateid *find_stateid_by_type(stateid_t *t, char typemask)
1093 {
1094 struct nfs4_ol_stateid *s;
1095
1096 s = find_stateid(t);
1097 if (!s)
1098 return NULL;
1099 if (typemask & s->st_stid.sc_type)
1100 return s;
1101 return NULL;
1102 }
1103
1104 static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir,
1105 struct svc_rqst *rqstp, nfs4_verifier *verf)
1106 {
1107 struct nfs4_client *clp;
1108 struct sockaddr *sa = svc_addr(rqstp);
1109 char *princ;
1110
1111 clp = alloc_client(name);
1112 if (clp == NULL)
1113 return NULL;
1114
1115 INIT_LIST_HEAD(&clp->cl_sessions);
1116
1117 princ = svc_gss_principal(rqstp);
1118 if (princ) {
1119 clp->cl_principal = kstrdup(princ, GFP_KERNEL);
1120 if (clp->cl_principal == NULL) {
1121 free_client(clp);
1122 return NULL;
1123 }
1124 }
1125
1126 memcpy(clp->cl_recdir, recdir, HEXDIR_LEN);
1127 atomic_set(&clp->cl_refcount, 0);
1128 clp->cl_cb_state = NFSD4_CB_UNKNOWN;
1129 INIT_LIST_HEAD(&clp->cl_idhash);
1130 INIT_LIST_HEAD(&clp->cl_strhash);
1131 INIT_LIST_HEAD(&clp->cl_openowners);
1132 INIT_LIST_HEAD(&clp->cl_delegations);
1133 INIT_LIST_HEAD(&clp->cl_lru);
1134 INIT_LIST_HEAD(&clp->cl_callbacks);
1135 spin_lock_init(&clp->cl_lock);
1136 INIT_WORK(&clp->cl_cb_null.cb_work, nfsd4_do_callback_rpc);
1137 clp->cl_time = get_seconds();
1138 clear_bit(0, &clp->cl_cb_slot_busy);
1139 rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
1140 copy_verf(clp, verf);
1141 rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
1142 clp->cl_flavor = rqstp->rq_flavor;
1143 copy_cred(&clp->cl_cred, &rqstp->rq_cred);
1144 gen_confirm(clp);
1145 clp->cl_cb_session = NULL;
1146 return clp;
1147 }
1148
1149 static int check_name(struct xdr_netobj name)
1150 {
1151 if (name.len == 0)
1152 return 0;
1153 if (name.len > NFS4_OPAQUE_LIMIT) {
1154 dprintk("NFSD: check_name: name too long(%d)!\n", name.len);
1155 return 0;
1156 }
1157 return 1;
1158 }
1159
1160 static void
1161 add_to_unconfirmed(struct nfs4_client *clp, unsigned int strhashval)
1162 {
1163 unsigned int idhashval;
1164
1165 list_add(&clp->cl_strhash, &unconf_str_hashtbl[strhashval]);
1166 idhashval = clientid_hashval(clp->cl_clientid.cl_id);
1167 list_add(&clp->cl_idhash, &unconf_id_hashtbl[idhashval]);
1168 renew_client(clp);
1169 }
1170
1171 static void
1172 move_to_confirmed(struct nfs4_client *clp)
1173 {
1174 unsigned int idhashval = clientid_hashval(clp->cl_clientid.cl_id);
1175 unsigned int strhashval;
1176
1177 dprintk("NFSD: move_to_confirm nfs4_client %p\n", clp);
1178 list_move(&clp->cl_idhash, &conf_id_hashtbl[idhashval]);
1179 strhashval = clientstr_hashval(clp->cl_recdir);
1180 list_move(&clp->cl_strhash, &conf_str_hashtbl[strhashval]);
1181 renew_client(clp);
1182 }
1183
1184 static struct nfs4_client *
1185 find_confirmed_client(clientid_t *clid)
1186 {
1187 struct nfs4_client *clp;
1188 unsigned int idhashval = clientid_hashval(clid->cl_id);
1189
1190 list_for_each_entry(clp, &conf_id_hashtbl[idhashval], cl_idhash) {
1191 if (same_clid(&clp->cl_clientid, clid))
1192 return clp;
1193 }
1194 return NULL;
1195 }
1196
1197 static struct nfs4_client *
1198 find_unconfirmed_client(clientid_t *clid)
1199 {
1200 struct nfs4_client *clp;
1201 unsigned int idhashval = clientid_hashval(clid->cl_id);
1202
1203 list_for_each_entry(clp, &unconf_id_hashtbl[idhashval], cl_idhash) {
1204 if (same_clid(&clp->cl_clientid, clid))
1205 return clp;
1206 }
1207 return NULL;
1208 }
1209
1210 static bool clp_used_exchangeid(struct nfs4_client *clp)
1211 {
1212 return clp->cl_exchange_flags != 0;
1213 }
1214
1215 static struct nfs4_client *
1216 find_confirmed_client_by_str(const char *dname, unsigned int hashval)
1217 {
1218 struct nfs4_client *clp;
1219
1220 list_for_each_entry(clp, &conf_str_hashtbl[hashval], cl_strhash) {
1221 if (same_name(clp->cl_recdir, dname))
1222 return clp;
1223 }
1224 return NULL;
1225 }
1226
1227 static struct nfs4_client *
1228 find_unconfirmed_client_by_str(const char *dname, unsigned int hashval)
1229 {
1230 struct nfs4_client *clp;
1231
1232 list_for_each_entry(clp, &unconf_str_hashtbl[hashval], cl_strhash) {
1233 if (same_name(clp->cl_recdir, dname))
1234 return clp;
1235 }
1236 return NULL;
1237 }
1238
1239 static void rpc_svcaddr2sockaddr(struct sockaddr *sa, unsigned short family, union svc_addr_u *svcaddr)
1240 {
1241 switch (family) {
1242 case AF_INET:
1243 ((struct sockaddr_in *)sa)->sin_family = AF_INET;
1244 ((struct sockaddr_in *)sa)->sin_addr = svcaddr->addr;
1245 return;
1246 case AF_INET6:
1247 ((struct sockaddr_in6 *)sa)->sin6_family = AF_INET6;
1248 ((struct sockaddr_in6 *)sa)->sin6_addr = svcaddr->addr6;
1249 return;
1250 }
1251 }
1252
1253 static void
1254 gen_callback(struct nfs4_client *clp, struct nfsd4_setclientid *se, struct svc_rqst *rqstp)
1255 {
1256 struct nfs4_cb_conn *conn = &clp->cl_cb_conn;
1257 struct sockaddr *sa = svc_addr(rqstp);
1258 u32 scopeid = rpc_get_scope_id(sa);
1259 unsigned short expected_family;
1260
1261 /* Currently, we only support tcp and tcp6 for the callback channel */
1262 if (se->se_callback_netid_len == 3 &&
1263 !memcmp(se->se_callback_netid_val, "tcp", 3))
1264 expected_family = AF_INET;
1265 else if (se->se_callback_netid_len == 4 &&
1266 !memcmp(se->se_callback_netid_val, "tcp6", 4))
1267 expected_family = AF_INET6;
1268 else
1269 goto out_err;
1270
1271 conn->cb_addrlen = rpc_uaddr2sockaddr(se->se_callback_addr_val,
1272 se->se_callback_addr_len,
1273 (struct sockaddr *)&conn->cb_addr,
1274 sizeof(conn->cb_addr));
1275
1276 if (!conn->cb_addrlen || conn->cb_addr.ss_family != expected_family)
1277 goto out_err;
1278
1279 if (conn->cb_addr.ss_family == AF_INET6)
1280 ((struct sockaddr_in6 *)&conn->cb_addr)->sin6_scope_id = scopeid;
1281
1282 conn->cb_prog = se->se_callback_prog;
1283 conn->cb_ident = se->se_callback_ident;
1284 rpc_svcaddr2sockaddr((struct sockaddr *)&conn->cb_saddr, expected_family, &rqstp->rq_daddr);
1285 return;
1286 out_err:
1287 conn->cb_addr.ss_family = AF_UNSPEC;
1288 conn->cb_addrlen = 0;
1289 dprintk(KERN_INFO "NFSD: this client (clientid %08x/%08x) "
1290 "will not receive delegations\n",
1291 clp->cl_clientid.cl_boot, clp->cl_clientid.cl_id);
1292
1293 return;
1294 }
1295
1296 /*
1297 * Cache a reply. nfsd4_check_drc_limit() has bounded the cache size.
1298 */
1299 void
1300 nfsd4_store_cache_entry(struct nfsd4_compoundres *resp)
1301 {
1302 struct nfsd4_slot *slot = resp->cstate.slot;
1303 unsigned int base;
1304
1305 dprintk("--> %s slot %p\n", __func__, slot);
1306
1307 slot->sl_opcnt = resp->opcnt;
1308 slot->sl_status = resp->cstate.status;
1309
1310 if (nfsd4_not_cached(resp)) {
1311 slot->sl_datalen = 0;
1312 return;
1313 }
1314 slot->sl_datalen = (char *)resp->p - (char *)resp->cstate.datap;
1315 base = (char *)resp->cstate.datap -
1316 (char *)resp->xbuf->head[0].iov_base;
1317 if (read_bytes_from_xdr_buf(resp->xbuf, base, slot->sl_data,
1318 slot->sl_datalen))
1319 WARN("%s: sessions DRC could not cache compound\n", __func__);
1320 return;
1321 }
1322
1323 /*
1324 * Encode the replay sequence operation from the slot values.
1325 * If cachethis is FALSE encode the uncached rep error on the next
1326 * operation which sets resp->p and increments resp->opcnt for
1327 * nfs4svc_encode_compoundres.
1328 *
1329 */
1330 static __be32
1331 nfsd4_enc_sequence_replay(struct nfsd4_compoundargs *args,
1332 struct nfsd4_compoundres *resp)
1333 {
1334 struct nfsd4_op *op;
1335 struct nfsd4_slot *slot = resp->cstate.slot;
1336
1337 dprintk("--> %s resp->opcnt %d cachethis %u \n", __func__,
1338 resp->opcnt, resp->cstate.slot->sl_cachethis);
1339
1340 /* Encode the replayed sequence operation */
1341 op = &args->ops[resp->opcnt - 1];
1342 nfsd4_encode_operation(resp, op);
1343
1344 /* Return nfserr_retry_uncached_rep in next operation. */
1345 if (args->opcnt > 1 && slot->sl_cachethis == 0) {
1346 op = &args->ops[resp->opcnt++];
1347 op->status = nfserr_retry_uncached_rep;
1348 nfsd4_encode_operation(resp, op);
1349 }
1350 return op->status;
1351 }
1352
1353 /*
1354 * The sequence operation is not cached because we can use the slot and
1355 * session values.
1356 */
1357 __be32
1358 nfsd4_replay_cache_entry(struct nfsd4_compoundres *resp,
1359 struct nfsd4_sequence *seq)
1360 {
1361 struct nfsd4_slot *slot = resp->cstate.slot;
1362 __be32 status;
1363
1364 dprintk("--> %s slot %p\n", __func__, slot);
1365
1366 /* Either returns 0 or nfserr_retry_uncached */
1367 status = nfsd4_enc_sequence_replay(resp->rqstp->rq_argp, resp);
1368 if (status == nfserr_retry_uncached_rep)
1369 return status;
1370
1371 /* The sequence operation has been encoded, cstate->datap set. */
1372 memcpy(resp->cstate.datap, slot->sl_data, slot->sl_datalen);
1373
1374 resp->opcnt = slot->sl_opcnt;
1375 resp->p = resp->cstate.datap + XDR_QUADLEN(slot->sl_datalen);
1376 status = slot->sl_status;
1377
1378 return status;
1379 }
1380
1381 /*
1382 * Set the exchange_id flags returned by the server.
1383 */
1384 static void
1385 nfsd4_set_ex_flags(struct nfs4_client *new, struct nfsd4_exchange_id *clid)
1386 {
1387 /* pNFS is not supported */
1388 new->cl_exchange_flags |= EXCHGID4_FLAG_USE_NON_PNFS;
1389
1390 /* Referrals are supported, Migration is not. */
1391 new->cl_exchange_flags |= EXCHGID4_FLAG_SUPP_MOVED_REFER;
1392
1393 /* set the wire flags to return to client. */
1394 clid->flags = new->cl_exchange_flags;
1395 }
1396
1397 __be32
1398 nfsd4_exchange_id(struct svc_rqst *rqstp,
1399 struct nfsd4_compound_state *cstate,
1400 struct nfsd4_exchange_id *exid)
1401 {
1402 struct nfs4_client *unconf, *conf, *new;
1403 int status;
1404 unsigned int strhashval;
1405 char dname[HEXDIR_LEN];
1406 char addr_str[INET6_ADDRSTRLEN];
1407 nfs4_verifier verf = exid->verifier;
1408 struct sockaddr *sa = svc_addr(rqstp);
1409
1410 rpc_ntop(sa, addr_str, sizeof(addr_str));
1411 dprintk("%s rqstp=%p exid=%p clname.len=%u clname.data=%p "
1412 "ip_addr=%s flags %x, spa_how %d\n",
1413 __func__, rqstp, exid, exid->clname.len, exid->clname.data,
1414 addr_str, exid->flags, exid->spa_how);
1415
1416 if (!check_name(exid->clname) || (exid->flags & ~EXCHGID4_FLAG_MASK_A))
1417 return nfserr_inval;
1418
1419 /* Currently only support SP4_NONE */
1420 switch (exid->spa_how) {
1421 case SP4_NONE:
1422 break;
1423 case SP4_SSV:
1424 return nfserr_serverfault;
1425 default:
1426 BUG(); /* checked by xdr code */
1427 case SP4_MACH_CRED:
1428 return nfserr_serverfault; /* no excuse :-/ */
1429 }
1430
1431 status = nfs4_make_rec_clidname(dname, &exid->clname);
1432
1433 if (status)
1434 goto error;
1435
1436 strhashval = clientstr_hashval(dname);
1437
1438 nfs4_lock_state();
1439 status = nfs_ok;
1440
1441 conf = find_confirmed_client_by_str(dname, strhashval);
1442 if (conf) {
1443 if (!clp_used_exchangeid(conf)) {
1444 status = nfserr_clid_inuse; /* XXX: ? */
1445 goto out;
1446 }
1447 if (!same_verf(&verf, &conf->cl_verifier)) {
1448 /* 18.35.4 case 8 */
1449 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1450 status = nfserr_not_same;
1451 goto out;
1452 }
1453 /* Client reboot: destroy old state */
1454 expire_client(conf);
1455 goto out_new;
1456 }
1457 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
1458 /* 18.35.4 case 9 */
1459 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1460 status = nfserr_perm;
1461 goto out;
1462 }
1463 expire_client(conf);
1464 goto out_new;
1465 }
1466 /*
1467 * Set bit when the owner id and verifier map to an already
1468 * confirmed client id (18.35.3).
1469 */
1470 exid->flags |= EXCHGID4_FLAG_CONFIRMED_R;
1471
1472 /*
1473 * Falling into 18.35.4 case 2, possible router replay.
1474 * Leave confirmed record intact and return same result.
1475 */
1476 copy_verf(conf, &verf);
1477 new = conf;
1478 goto out_copy;
1479 }
1480
1481 /* 18.35.4 case 7 */
1482 if (exid->flags & EXCHGID4_FLAG_UPD_CONFIRMED_REC_A) {
1483 status = nfserr_noent;
1484 goto out;
1485 }
1486
1487 unconf = find_unconfirmed_client_by_str(dname, strhashval);
1488 if (unconf) {
1489 /*
1490 * Possible retry or client restart. Per 18.35.4 case 4,
1491 * a new unconfirmed record should be generated regardless
1492 * of whether any properties have changed.
1493 */
1494 expire_client(unconf);
1495 }
1496
1497 out_new:
1498 /* Normal case */
1499 new = create_client(exid->clname, dname, rqstp, &verf);
1500 if (new == NULL) {
1501 status = nfserr_jukebox;
1502 goto out;
1503 }
1504
1505 gen_clid(new);
1506 add_to_unconfirmed(new, strhashval);
1507 out_copy:
1508 exid->clientid.cl_boot = new->cl_clientid.cl_boot;
1509 exid->clientid.cl_id = new->cl_clientid.cl_id;
1510
1511 exid->seqid = 1;
1512 nfsd4_set_ex_flags(new, exid);
1513
1514 dprintk("nfsd4_exchange_id seqid %d flags %x\n",
1515 new->cl_cs_slot.sl_seqid, new->cl_exchange_flags);
1516 status = nfs_ok;
1517
1518 out:
1519 nfs4_unlock_state();
1520 error:
1521 dprintk("nfsd4_exchange_id returns %d\n", ntohl(status));
1522 return status;
1523 }
1524
1525 static int
1526 check_slot_seqid(u32 seqid, u32 slot_seqid, int slot_inuse)
1527 {
1528 dprintk("%s enter. seqid %d slot_seqid %d\n", __func__, seqid,
1529 slot_seqid);
1530
1531 /* The slot is in use, and no response has been sent. */
1532 if (slot_inuse) {
1533 if (seqid == slot_seqid)
1534 return nfserr_jukebox;
1535 else
1536 return nfserr_seq_misordered;
1537 }
1538 /* Normal */
1539 if (likely(seqid == slot_seqid + 1))
1540 return nfs_ok;
1541 /* Replay */
1542 if (seqid == slot_seqid)
1543 return nfserr_replay_cache;
1544 /* Wraparound */
1545 if (seqid == 1 && (slot_seqid + 1) == 0)
1546 return nfs_ok;
1547 /* Misordered replay or misordered new request */
1548 return nfserr_seq_misordered;
1549 }
1550
1551 /*
1552 * Cache the create session result into the create session single DRC
1553 * slot cache by saving the xdr structure. sl_seqid has been set.
1554 * Do this for solo or embedded create session operations.
1555 */
1556 static void
1557 nfsd4_cache_create_session(struct nfsd4_create_session *cr_ses,
1558 struct nfsd4_clid_slot *slot, int nfserr)
1559 {
1560 slot->sl_status = nfserr;
1561 memcpy(&slot->sl_cr_ses, cr_ses, sizeof(*cr_ses));
1562 }
1563
1564 static __be32
1565 nfsd4_replay_create_session(struct nfsd4_create_session *cr_ses,
1566 struct nfsd4_clid_slot *slot)
1567 {
1568 memcpy(cr_ses, &slot->sl_cr_ses, sizeof(*cr_ses));
1569 return slot->sl_status;
1570 }
1571
1572 #define NFSD_MIN_REQ_HDR_SEQ_SZ ((\
1573 2 * 2 + /* credential,verifier: AUTH_NULL, length 0 */ \
1574 1 + /* MIN tag is length with zero, only length */ \
1575 3 + /* version, opcount, opcode */ \
1576 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
1577 /* seqid, slotID, slotID, cache */ \
1578 4 ) * sizeof(__be32))
1579
1580 #define NFSD_MIN_RESP_HDR_SEQ_SZ ((\
1581 2 + /* verifier: AUTH_NULL, length 0 */\
1582 1 + /* status */ \
1583 1 + /* MIN tag is length with zero, only length */ \
1584 3 + /* opcount, opcode, opstatus*/ \
1585 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + \
1586 /* seqid, slotID, slotID, slotID, status */ \
1587 5 ) * sizeof(__be32))
1588
1589 static __be32 check_forechannel_attrs(struct nfsd4_channel_attrs fchannel)
1590 {
1591 return fchannel.maxreq_sz < NFSD_MIN_REQ_HDR_SEQ_SZ
1592 || fchannel.maxresp_sz < NFSD_MIN_RESP_HDR_SEQ_SZ;
1593 }
1594
1595 __be32
1596 nfsd4_create_session(struct svc_rqst *rqstp,
1597 struct nfsd4_compound_state *cstate,
1598 struct nfsd4_create_session *cr_ses)
1599 {
1600 struct sockaddr *sa = svc_addr(rqstp);
1601 struct nfs4_client *conf, *unconf;
1602 struct nfsd4_session *new;
1603 struct nfsd4_clid_slot *cs_slot = NULL;
1604 bool confirm_me = false;
1605 int status = 0;
1606
1607 if (cr_ses->flags & ~SESSION4_FLAG_MASK_A)
1608 return nfserr_inval;
1609
1610 nfs4_lock_state();
1611 unconf = find_unconfirmed_client(&cr_ses->clientid);
1612 conf = find_confirmed_client(&cr_ses->clientid);
1613
1614 if (conf) {
1615 cs_slot = &conf->cl_cs_slot;
1616 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
1617 if (status == nfserr_replay_cache) {
1618 dprintk("Got a create_session replay! seqid= %d\n",
1619 cs_slot->sl_seqid);
1620 /* Return the cached reply status */
1621 status = nfsd4_replay_create_session(cr_ses, cs_slot);
1622 goto out;
1623 } else if (cr_ses->seqid != cs_slot->sl_seqid + 1) {
1624 status = nfserr_seq_misordered;
1625 dprintk("Sequence misordered!\n");
1626 dprintk("Expected seqid= %d but got seqid= %d\n",
1627 cs_slot->sl_seqid, cr_ses->seqid);
1628 goto out;
1629 }
1630 } else if (unconf) {
1631 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred) ||
1632 !rpc_cmp_addr(sa, (struct sockaddr *) &unconf->cl_addr)) {
1633 status = nfserr_clid_inuse;
1634 goto out;
1635 }
1636
1637 cs_slot = &unconf->cl_cs_slot;
1638 status = check_slot_seqid(cr_ses->seqid, cs_slot->sl_seqid, 0);
1639 if (status) {
1640 /* an unconfirmed replay returns misordered */
1641 status = nfserr_seq_misordered;
1642 goto out;
1643 }
1644
1645 confirm_me = true;
1646 conf = unconf;
1647 } else {
1648 status = nfserr_stale_clientid;
1649 goto out;
1650 }
1651
1652 /*
1653 * XXX: we should probably set this at creation time, and check
1654 * for consistent minorversion use throughout:
1655 */
1656 conf->cl_minorversion = 1;
1657 /*
1658 * We do not support RDMA or persistent sessions
1659 */
1660 cr_ses->flags &= ~SESSION4_PERSIST;
1661 cr_ses->flags &= ~SESSION4_RDMA;
1662
1663 status = nfserr_toosmall;
1664 if (check_forechannel_attrs(cr_ses->fore_channel))
1665 goto out;
1666
1667 status = nfserr_jukebox;
1668 new = alloc_init_session(rqstp, conf, cr_ses);
1669 if (!new)
1670 goto out;
1671 status = nfs_ok;
1672 memcpy(cr_ses->sessionid.data, new->se_sessionid.data,
1673 NFS4_MAX_SESSIONID_LEN);
1674 memcpy(&cr_ses->fore_channel, &new->se_fchannel,
1675 sizeof(struct nfsd4_channel_attrs));
1676 cs_slot->sl_seqid++;
1677 cr_ses->seqid = cs_slot->sl_seqid;
1678
1679 /* cache solo and embedded create sessions under the state lock */
1680 nfsd4_cache_create_session(cr_ses, cs_slot, status);
1681 if (confirm_me)
1682 move_to_confirmed(conf);
1683 out:
1684 nfs4_unlock_state();
1685 dprintk("%s returns %d\n", __func__, ntohl(status));
1686 return status;
1687 }
1688
1689 static bool nfsd4_last_compound_op(struct svc_rqst *rqstp)
1690 {
1691 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1692 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
1693
1694 return argp->opcnt == resp->opcnt;
1695 }
1696
1697 static __be32 nfsd4_map_bcts_dir(u32 *dir)
1698 {
1699 switch (*dir) {
1700 case NFS4_CDFC4_FORE:
1701 case NFS4_CDFC4_BACK:
1702 return nfs_ok;
1703 case NFS4_CDFC4_FORE_OR_BOTH:
1704 case NFS4_CDFC4_BACK_OR_BOTH:
1705 *dir = NFS4_CDFC4_BOTH;
1706 return nfs_ok;
1707 };
1708 return nfserr_inval;
1709 }
1710
1711 __be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp,
1712 struct nfsd4_compound_state *cstate,
1713 struct nfsd4_bind_conn_to_session *bcts)
1714 {
1715 __be32 status;
1716
1717 if (!nfsd4_last_compound_op(rqstp))
1718 return nfserr_not_only_op;
1719 spin_lock(&client_lock);
1720 cstate->session = find_in_sessionid_hashtbl(&bcts->sessionid);
1721 /* Sorta weird: we only need the refcnt'ing because new_conn acquires
1722 * client_lock iself: */
1723 if (cstate->session) {
1724 nfsd4_get_session(cstate->session);
1725 atomic_inc(&cstate->session->se_client->cl_refcount);
1726 }
1727 spin_unlock(&client_lock);
1728 if (!cstate->session)
1729 return nfserr_badsession;
1730
1731 status = nfsd4_map_bcts_dir(&bcts->dir);
1732 if (!status)
1733 nfsd4_new_conn(rqstp, cstate->session, bcts->dir);
1734 return status;
1735 }
1736
1737 static bool nfsd4_compound_in_session(struct nfsd4_session *session, struct nfs4_sessionid *sid)
1738 {
1739 if (!session)
1740 return 0;
1741 return !memcmp(sid, &session->se_sessionid, sizeof(*sid));
1742 }
1743
1744 __be32
1745 nfsd4_destroy_session(struct svc_rqst *r,
1746 struct nfsd4_compound_state *cstate,
1747 struct nfsd4_destroy_session *sessionid)
1748 {
1749 struct nfsd4_session *ses;
1750 u32 status = nfserr_badsession;
1751
1752 /* Notes:
1753 * - The confirmed nfs4_client->cl_sessionid holds destroyed sessinid
1754 * - Should we return nfserr_back_chan_busy if waiting for
1755 * callbacks on to-be-destroyed session?
1756 * - Do we need to clear any callback info from previous session?
1757 */
1758
1759 if (nfsd4_compound_in_session(cstate->session, &sessionid->sessionid)) {
1760 if (!nfsd4_last_compound_op(r))
1761 return nfserr_not_only_op;
1762 }
1763 dump_sessionid(__func__, &sessionid->sessionid);
1764 spin_lock(&client_lock);
1765 ses = find_in_sessionid_hashtbl(&sessionid->sessionid);
1766 if (!ses) {
1767 spin_unlock(&client_lock);
1768 goto out;
1769 }
1770
1771 unhash_session(ses);
1772 spin_unlock(&client_lock);
1773
1774 nfs4_lock_state();
1775 nfsd4_probe_callback_sync(ses->se_client);
1776 nfs4_unlock_state();
1777
1778 nfsd4_del_conns(ses);
1779
1780 nfsd4_put_session(ses);
1781 status = nfs_ok;
1782 out:
1783 dprintk("%s returns %d\n", __func__, ntohl(status));
1784 return status;
1785 }
1786
1787 static struct nfsd4_conn *__nfsd4_find_conn(struct svc_xprt *xpt, struct nfsd4_session *s)
1788 {
1789 struct nfsd4_conn *c;
1790
1791 list_for_each_entry(c, &s->se_conns, cn_persession) {
1792 if (c->cn_xprt == xpt) {
1793 return c;
1794 }
1795 }
1796 return NULL;
1797 }
1798
1799 static void nfsd4_sequence_check_conn(struct nfsd4_conn *new, struct nfsd4_session *ses)
1800 {
1801 struct nfs4_client *clp = ses->se_client;
1802 struct nfsd4_conn *c;
1803 int ret;
1804
1805 spin_lock(&clp->cl_lock);
1806 c = __nfsd4_find_conn(new->cn_xprt, ses);
1807 if (c) {
1808 spin_unlock(&clp->cl_lock);
1809 free_conn(new);
1810 return;
1811 }
1812 __nfsd4_hash_conn(new, ses);
1813 spin_unlock(&clp->cl_lock);
1814 ret = nfsd4_register_conn(new);
1815 if (ret)
1816 /* oops; xprt is already down: */
1817 nfsd4_conn_lost(&new->cn_xpt_user);
1818 return;
1819 }
1820
1821 static bool nfsd4_session_too_many_ops(struct svc_rqst *rqstp, struct nfsd4_session *session)
1822 {
1823 struct nfsd4_compoundargs *args = rqstp->rq_argp;
1824
1825 return args->opcnt > session->se_fchannel.maxops;
1826 }
1827
1828 static bool nfsd4_request_too_big(struct svc_rqst *rqstp,
1829 struct nfsd4_session *session)
1830 {
1831 struct xdr_buf *xb = &rqstp->rq_arg;
1832
1833 return xb->len > session->se_fchannel.maxreq_sz;
1834 }
1835
1836 __be32
1837 nfsd4_sequence(struct svc_rqst *rqstp,
1838 struct nfsd4_compound_state *cstate,
1839 struct nfsd4_sequence *seq)
1840 {
1841 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1842 struct nfsd4_session *session;
1843 struct nfsd4_slot *slot;
1844 struct nfsd4_conn *conn;
1845 int status;
1846
1847 if (resp->opcnt != 1)
1848 return nfserr_sequence_pos;
1849
1850 /*
1851 * Will be either used or freed by nfsd4_sequence_check_conn
1852 * below.
1853 */
1854 conn = alloc_conn(rqstp, NFS4_CDFC4_FORE);
1855 if (!conn)
1856 return nfserr_jukebox;
1857
1858 spin_lock(&client_lock);
1859 status = nfserr_badsession;
1860 session = find_in_sessionid_hashtbl(&seq->sessionid);
1861 if (!session)
1862 goto out;
1863
1864 status = nfserr_too_many_ops;
1865 if (nfsd4_session_too_many_ops(rqstp, session))
1866 goto out;
1867
1868 status = nfserr_req_too_big;
1869 if (nfsd4_request_too_big(rqstp, session))
1870 goto out;
1871
1872 status = nfserr_badslot;
1873 if (seq->slotid >= session->se_fchannel.maxreqs)
1874 goto out;
1875
1876 slot = session->se_slots[seq->slotid];
1877 dprintk("%s: slotid %d\n", __func__, seq->slotid);
1878
1879 /* We do not negotiate the number of slots yet, so set the
1880 * maxslots to the session maxreqs which is used to encode
1881 * sr_highest_slotid and the sr_target_slot id to maxslots */
1882 seq->maxslots = session->se_fchannel.maxreqs;
1883
1884 status = check_slot_seqid(seq->seqid, slot->sl_seqid, slot->sl_inuse);
1885 if (status == nfserr_replay_cache) {
1886 cstate->slot = slot;
1887 cstate->session = session;
1888 /* Return the cached reply status and set cstate->status
1889 * for nfsd4_proc_compound processing */
1890 status = nfsd4_replay_cache_entry(resp, seq);
1891 cstate->status = nfserr_replay_cache;
1892 goto out;
1893 }
1894 if (status)
1895 goto out;
1896
1897 nfsd4_sequence_check_conn(conn, session);
1898 conn = NULL;
1899
1900 /* Success! bump slot seqid */
1901 slot->sl_inuse = true;
1902 slot->sl_seqid = seq->seqid;
1903 slot->sl_cachethis = seq->cachethis;
1904
1905 cstate->slot = slot;
1906 cstate->session = session;
1907
1908 out:
1909 /* Hold a session reference until done processing the compound. */
1910 if (cstate->session) {
1911 struct nfs4_client *clp = session->se_client;
1912
1913 nfsd4_get_session(cstate->session);
1914 atomic_inc(&clp->cl_refcount);
1915 if (clp->cl_cb_state == NFSD4_CB_DOWN)
1916 seq->status_flags |= SEQ4_STATUS_CB_PATH_DOWN;
1917 }
1918 kfree(conn);
1919 spin_unlock(&client_lock);
1920 dprintk("%s: return %d\n", __func__, ntohl(status));
1921 return status;
1922 }
1923
1924 __be32
1925 nfsd4_reclaim_complete(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_reclaim_complete *rc)
1926 {
1927 int status = 0;
1928
1929 if (rc->rca_one_fs) {
1930 if (!cstate->current_fh.fh_dentry)
1931 return nfserr_nofilehandle;
1932 /*
1933 * We don't take advantage of the rca_one_fs case.
1934 * That's OK, it's optional, we can safely ignore it.
1935 */
1936 return nfs_ok;
1937 }
1938
1939 nfs4_lock_state();
1940 status = nfserr_complete_already;
1941 if (cstate->session->se_client->cl_firststate)
1942 goto out;
1943
1944 status = nfserr_stale_clientid;
1945 if (is_client_expired(cstate->session->se_client))
1946 /*
1947 * The following error isn't really legal.
1948 * But we only get here if the client just explicitly
1949 * destroyed the client. Surely it no longer cares what
1950 * error it gets back on an operation for the dead
1951 * client.
1952 */
1953 goto out;
1954
1955 status = nfs_ok;
1956 nfsd4_create_clid_dir(cstate->session->se_client);
1957 out:
1958 nfs4_unlock_state();
1959 return status;
1960 }
1961
1962 __be32
1963 nfsd4_setclientid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1964 struct nfsd4_setclientid *setclid)
1965 {
1966 struct xdr_netobj clname = {
1967 .len = setclid->se_namelen,
1968 .data = setclid->se_name,
1969 };
1970 nfs4_verifier clverifier = setclid->se_verf;
1971 unsigned int strhashval;
1972 struct nfs4_client *conf, *unconf, *new;
1973 __be32 status;
1974 char dname[HEXDIR_LEN];
1975
1976 if (!check_name(clname))
1977 return nfserr_inval;
1978
1979 status = nfs4_make_rec_clidname(dname, &clname);
1980 if (status)
1981 return status;
1982
1983 /*
1984 * XXX The Duplicate Request Cache (DRC) has been checked (??)
1985 * We get here on a DRC miss.
1986 */
1987
1988 strhashval = clientstr_hashval(dname);
1989
1990 nfs4_lock_state();
1991 conf = find_confirmed_client_by_str(dname, strhashval);
1992 if (conf) {
1993 /* RFC 3530 14.2.33 CASE 0: */
1994 status = nfserr_clid_inuse;
1995 if (clp_used_exchangeid(conf))
1996 goto out;
1997 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred)) {
1998 char addr_str[INET6_ADDRSTRLEN];
1999 rpc_ntop((struct sockaddr *) &conf->cl_addr, addr_str,
2000 sizeof(addr_str));
2001 dprintk("NFSD: setclientid: string in use by client "
2002 "at %s\n", addr_str);
2003 goto out;
2004 }
2005 }
2006 /*
2007 * section 14.2.33 of RFC 3530 (under the heading "IMPLEMENTATION")
2008 * has a description of SETCLIENTID request processing consisting
2009 * of 5 bullet points, labeled as CASE0 - CASE4 below.
2010 */
2011 unconf = find_unconfirmed_client_by_str(dname, strhashval);
2012 status = nfserr_jukebox;
2013 if (!conf) {
2014 /*
2015 * RFC 3530 14.2.33 CASE 4:
2016 * placed first, because it is the normal case
2017 */
2018 if (unconf)
2019 expire_client(unconf);
2020 new = create_client(clname, dname, rqstp, &clverifier);
2021 if (new == NULL)
2022 goto out;
2023 gen_clid(new);
2024 } else if (same_verf(&conf->cl_verifier, &clverifier)) {
2025 /*
2026 * RFC 3530 14.2.33 CASE 1:
2027 * probable callback update
2028 */
2029 if (unconf) {
2030 /* Note this is removing unconfirmed {*x***},
2031 * which is stronger than RFC recommended {vxc**}.
2032 * This has the advantage that there is at most
2033 * one {*x***} in either list at any time.
2034 */
2035 expire_client(unconf);
2036 }
2037 new = create_client(clname, dname, rqstp, &clverifier);
2038 if (new == NULL)
2039 goto out;
2040 copy_clid(new, conf);
2041 } else if (!unconf) {
2042 /*
2043 * RFC 3530 14.2.33 CASE 2:
2044 * probable client reboot; state will be removed if
2045 * confirmed.
2046 */
2047 new = create_client(clname, dname, rqstp, &clverifier);
2048 if (new == NULL)
2049 goto out;
2050 gen_clid(new);
2051 } else {
2052 /*
2053 * RFC 3530 14.2.33 CASE 3:
2054 * probable client reboot; state will be removed if
2055 * confirmed.
2056 */
2057 expire_client(unconf);
2058 new = create_client(clname, dname, rqstp, &clverifier);
2059 if (new == NULL)
2060 goto out;
2061 gen_clid(new);
2062 }
2063 /*
2064 * XXX: we should probably set this at creation time, and check
2065 * for consistent minorversion use throughout:
2066 */
2067 new->cl_minorversion = 0;
2068 gen_callback(new, setclid, rqstp);
2069 add_to_unconfirmed(new, strhashval);
2070 setclid->se_clientid.cl_boot = new->cl_clientid.cl_boot;
2071 setclid->se_clientid.cl_id = new->cl_clientid.cl_id;
2072 memcpy(setclid->se_confirm.data, new->cl_confirm.data, sizeof(setclid->se_confirm.data));
2073 status = nfs_ok;
2074 out:
2075 nfs4_unlock_state();
2076 return status;
2077 }
2078
2079
2080 /*
2081 * Section 14.2.34 of RFC 3530 (under the heading "IMPLEMENTATION") has
2082 * a description of SETCLIENTID_CONFIRM request processing consisting of 4
2083 * bullets, labeled as CASE1 - CASE4 below.
2084 */
2085 __be32
2086 nfsd4_setclientid_confirm(struct svc_rqst *rqstp,
2087 struct nfsd4_compound_state *cstate,
2088 struct nfsd4_setclientid_confirm *setclientid_confirm)
2089 {
2090 struct sockaddr *sa = svc_addr(rqstp);
2091 struct nfs4_client *conf, *unconf;
2092 nfs4_verifier confirm = setclientid_confirm->sc_confirm;
2093 clientid_t * clid = &setclientid_confirm->sc_clientid;
2094 __be32 status;
2095
2096 if (STALE_CLIENTID(clid))
2097 return nfserr_stale_clientid;
2098 /*
2099 * XXX The Duplicate Request Cache (DRC) has been checked (??)
2100 * We get here on a DRC miss.
2101 */
2102
2103 nfs4_lock_state();
2104
2105 conf = find_confirmed_client(clid);
2106 unconf = find_unconfirmed_client(clid);
2107
2108 status = nfserr_clid_inuse;
2109 if (conf && !rpc_cmp_addr((struct sockaddr *) &conf->cl_addr, sa))
2110 goto out;
2111 if (unconf && !rpc_cmp_addr((struct sockaddr *) &unconf->cl_addr, sa))
2112 goto out;
2113
2114 /*
2115 * section 14.2.34 of RFC 3530 has a description of
2116 * SETCLIENTID_CONFIRM request processing consisting
2117 * of 4 bullet points, labeled as CASE1 - CASE4 below.
2118 */
2119 if (conf && unconf && same_verf(&confirm, &unconf->cl_confirm)) {
2120 /*
2121 * RFC 3530 14.2.34 CASE 1:
2122 * callback update
2123 */
2124 if (!same_creds(&conf->cl_cred, &unconf->cl_cred))
2125 status = nfserr_clid_inuse;
2126 else {
2127 nfsd4_change_callback(conf, &unconf->cl_cb_conn);
2128 nfsd4_probe_callback(conf);
2129 expire_client(unconf);
2130 status = nfs_ok;
2131
2132 }
2133 } else if (conf && !unconf) {
2134 /*
2135 * RFC 3530 14.2.34 CASE 2:
2136 * probable retransmitted request; play it safe and
2137 * do nothing.
2138 */
2139 if (!same_creds(&conf->cl_cred, &rqstp->rq_cred))
2140 status = nfserr_clid_inuse;
2141 else
2142 status = nfs_ok;
2143 } else if (!conf && unconf
2144 && same_verf(&unconf->cl_confirm, &confirm)) {
2145 /*
2146 * RFC 3530 14.2.34 CASE 3:
2147 * Normal case; new or rebooted client:
2148 */
2149 if (!same_creds(&unconf->cl_cred, &rqstp->rq_cred)) {
2150 status = nfserr_clid_inuse;
2151 } else {
2152 unsigned int hash =
2153 clientstr_hashval(unconf->cl_recdir);
2154 conf = find_confirmed_client_by_str(unconf->cl_recdir,
2155 hash);
2156 if (conf) {
2157 nfsd4_remove_clid_dir(conf);
2158 expire_client(conf);
2159 }
2160 move_to_confirmed(unconf);
2161 conf = unconf;
2162 nfsd4_probe_callback(conf);
2163 status = nfs_ok;
2164 }
2165 } else if ((!conf || (conf && !same_verf(&conf->cl_confirm, &confirm)))
2166 && (!unconf || (unconf && !same_verf(&unconf->cl_confirm,
2167 &confirm)))) {
2168 /*
2169 * RFC 3530 14.2.34 CASE 4:
2170 * Client probably hasn't noticed that we rebooted yet.
2171 */
2172 status = nfserr_stale_clientid;
2173 } else {
2174 /* check that we have hit one of the cases...*/
2175 status = nfserr_clid_inuse;
2176 }
2177 out:
2178 nfs4_unlock_state();
2179 return status;
2180 }
2181
2182 /* OPEN Share state helper functions */
2183 static inline struct nfs4_file *
2184 alloc_init_file(struct inode *ino)
2185 {
2186 struct nfs4_file *fp;
2187 unsigned int hashval = file_hashval(ino);
2188
2189 fp = kmem_cache_alloc(file_slab, GFP_KERNEL);
2190 if (fp) {
2191 atomic_set(&fp->fi_ref, 1);
2192 INIT_LIST_HEAD(&fp->fi_hash);
2193 INIT_LIST_HEAD(&fp->fi_stateids);
2194 INIT_LIST_HEAD(&fp->fi_delegations);
2195 fp->fi_inode = igrab(ino);
2196 fp->fi_id = current_fileid++;
2197 fp->fi_had_conflict = false;
2198 fp->fi_lease = NULL;
2199 memset(fp->fi_fds, 0, sizeof(fp->fi_fds));
2200 memset(fp->fi_access, 0, sizeof(fp->fi_access));
2201 spin_lock(&recall_lock);
2202 list_add(&fp->fi_hash, &file_hashtbl[hashval]);
2203 spin_unlock(&recall_lock);
2204 return fp;
2205 }
2206 return NULL;
2207 }
2208
2209 static void
2210 nfsd4_free_slab(struct kmem_cache **slab)
2211 {
2212 if (*slab == NULL)
2213 return;
2214 kmem_cache_destroy(*slab);
2215 *slab = NULL;
2216 }
2217
2218 void
2219 nfsd4_free_slabs(void)
2220 {
2221 nfsd4_free_slab(&openowner_slab);
2222 nfsd4_free_slab(&lockowner_slab);
2223 nfsd4_free_slab(&file_slab);
2224 nfsd4_free_slab(&stateid_slab);
2225 nfsd4_free_slab(&deleg_slab);
2226 }
2227
2228 static int
2229 nfsd4_init_slabs(void)
2230 {
2231 openowner_slab = kmem_cache_create("nfsd4_openowners",
2232 sizeof(struct nfs4_openowner), 0, 0, NULL);
2233 if (openowner_slab == NULL)
2234 goto out_nomem;
2235 lockowner_slab = kmem_cache_create("nfsd4_lockowners",
2236 sizeof(struct nfs4_openowner), 0, 0, NULL);
2237 if (lockowner_slab == NULL)
2238 goto out_nomem;
2239 file_slab = kmem_cache_create("nfsd4_files",
2240 sizeof(struct nfs4_file), 0, 0, NULL);
2241 if (file_slab == NULL)
2242 goto out_nomem;
2243 stateid_slab = kmem_cache_create("nfsd4_stateids",
2244 sizeof(struct nfs4_ol_stateid), 0, 0, NULL);
2245 if (stateid_slab == NULL)
2246 goto out_nomem;
2247 deleg_slab = kmem_cache_create("nfsd4_delegations",
2248 sizeof(struct nfs4_delegation), 0, 0, NULL);
2249 if (deleg_slab == NULL)
2250 goto out_nomem;
2251 return 0;
2252 out_nomem:
2253 nfsd4_free_slabs();
2254 dprintk("nfsd4: out of memory while initializing nfsv4\n");
2255 return -ENOMEM;
2256 }
2257
2258 void nfs4_free_openowner(struct nfs4_openowner *oo)
2259 {
2260 kfree(oo->oo_owner.so_owner.data);
2261 kmem_cache_free(openowner_slab, oo);
2262 }
2263
2264 void nfs4_free_lockowner(struct nfs4_lockowner *lo)
2265 {
2266 kfree(lo->lo_owner.so_owner.data);
2267 kmem_cache_free(lockowner_slab, lo);
2268 }
2269
2270 static void init_nfs4_replay(struct nfs4_replay *rp)
2271 {
2272 rp->rp_status = nfserr_serverfault;
2273 rp->rp_buflen = 0;
2274 rp->rp_buf = rp->rp_ibuf;
2275 }
2276
2277 static inline void *alloc_stateowner(struct kmem_cache *slab, struct xdr_netobj *owner, struct nfs4_client *clp)
2278 {
2279 struct nfs4_stateowner *sop;
2280
2281 sop = kmem_cache_alloc(slab, GFP_KERNEL);
2282 if (!sop)
2283 return NULL;
2284
2285 sop->so_owner.data = kmemdup(owner->data, owner->len, GFP_KERNEL);
2286 if (!sop->so_owner.data) {
2287 kmem_cache_free(slab, sop);
2288 return NULL;
2289 }
2290 sop->so_owner.len = owner->len;
2291
2292 INIT_LIST_HEAD(&sop->so_stateids);
2293 sop->so_id = current_ownerid++;
2294 sop->so_client = clp;
2295 init_nfs4_replay(&sop->so_replay);
2296 return sop;
2297 }
2298
2299 static void hash_openowner(struct nfs4_openowner *oo, struct nfs4_client *clp, unsigned int strhashval)
2300 {
2301 unsigned int idhashval;
2302
2303 idhashval = open_ownerid_hashval(oo->oo_owner.so_id);
2304 list_add(&oo->oo_owner.so_idhash, &open_ownerid_hashtbl[idhashval]);
2305 list_add(&oo->oo_owner.so_strhash, &open_ownerstr_hashtbl[strhashval]);
2306 list_add(&oo->oo_perclient, &clp->cl_openowners);
2307 }
2308
2309 static struct nfs4_openowner *
2310 alloc_init_open_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfsd4_open *open) {
2311 struct nfs4_openowner *oo;
2312
2313 oo = alloc_stateowner(openowner_slab, &open->op_owner, clp);
2314 if (!oo)
2315 return NULL;
2316 oo->oo_owner.so_is_open_owner = 1;
2317 oo->oo_owner.so_seqid = open->op_seqid;
2318 oo->oo_confirmed = 0;
2319 oo->oo_time = 0;
2320 INIT_LIST_HEAD(&oo->oo_close_lru);
2321 hash_openowner(oo, clp, strhashval);
2322 return oo;
2323 }
2324
2325 static inline void
2326 init_open_stateid(struct nfs4_ol_stateid *stp, struct nfs4_file *fp, struct nfsd4_open *open) {
2327 struct nfs4_openowner *oo = open->op_openowner;
2328
2329 INIT_LIST_HEAD(&stp->st_lockowners);
2330 list_add(&stp->st_perstateowner, &oo->oo_owner.so_stateids);
2331 list_add(&stp->st_perfile, &fp->fi_stateids);
2332 stp->st_stid.sc_type = NFS4_OPEN_STID;
2333 stp->st_stateowner = &oo->oo_owner;
2334 get_nfs4_file(fp);
2335 stp->st_file = fp;
2336 stp->st_stid.sc_stateid.si_boot = boot_time;
2337 stp->st_stid.sc_stateid.si_stateownerid = oo->oo_owner.so_id;
2338 stp->st_stid.sc_stateid.si_fileid = fp->fi_id;
2339 /* note will be incremented before first return to client: */
2340 stp->st_stid.sc_stateid.si_generation = 0;
2341 hash_stid(&stp->st_stid);
2342 stp->st_access_bmap = 0;
2343 stp->st_deny_bmap = 0;
2344 __set_bit(open->op_share_access & ~NFS4_SHARE_WANT_MASK,
2345 &stp->st_access_bmap);
2346 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
2347 stp->st_openstp = NULL;
2348 }
2349
2350 static void
2351 move_to_close_lru(struct nfs4_openowner *oo)
2352 {
2353 dprintk("NFSD: move_to_close_lru nfs4_openowner %p\n", oo);
2354
2355 list_move_tail(&oo->oo_close_lru, &close_lru);
2356 oo->oo_time = get_seconds();
2357 }
2358
2359 static int
2360 same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner,
2361 clientid_t *clid)
2362 {
2363 return (sop->so_owner.len == owner->len) &&
2364 0 == memcmp(sop->so_owner.data, owner->data, owner->len) &&
2365 (sop->so_client->cl_clientid.cl_id == clid->cl_id);
2366 }
2367
2368 static struct nfs4_openowner *
2369 find_openstateowner_str(unsigned int hashval, struct nfsd4_open *open)
2370 {
2371 struct nfs4_stateowner *so = NULL;
2372
2373 list_for_each_entry(so, &open_ownerstr_hashtbl[hashval], so_strhash) {
2374 if (same_owner_str(so, &open->op_owner, &open->op_clientid))
2375 return container_of(so, struct nfs4_openowner, oo_owner);
2376 }
2377 return NULL;
2378 }
2379
2380 /* search file_hashtbl[] for file */
2381 static struct nfs4_file *
2382 find_file(struct inode *ino)
2383 {
2384 unsigned int hashval = file_hashval(ino);
2385 struct nfs4_file *fp;
2386
2387 spin_lock(&recall_lock);
2388 list_for_each_entry(fp, &file_hashtbl[hashval], fi_hash) {
2389 if (fp->fi_inode == ino) {
2390 get_nfs4_file(fp);
2391 spin_unlock(&recall_lock);
2392 return fp;
2393 }
2394 }
2395 spin_unlock(&recall_lock);
2396 return NULL;
2397 }
2398
2399 static inline int access_valid(u32 x, u32 minorversion)
2400 {
2401 if ((x & NFS4_SHARE_ACCESS_MASK) < NFS4_SHARE_ACCESS_READ)
2402 return 0;
2403 if ((x & NFS4_SHARE_ACCESS_MASK) > NFS4_SHARE_ACCESS_BOTH)
2404 return 0;
2405 x &= ~NFS4_SHARE_ACCESS_MASK;
2406 if (minorversion && x) {
2407 if ((x & NFS4_SHARE_WANT_MASK) > NFS4_SHARE_WANT_CANCEL)
2408 return 0;
2409 if ((x & NFS4_SHARE_WHEN_MASK) > NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED)
2410 return 0;
2411 x &= ~(NFS4_SHARE_WANT_MASK | NFS4_SHARE_WHEN_MASK);
2412 }
2413 if (x)
2414 return 0;
2415 return 1;
2416 }
2417
2418 static inline int deny_valid(u32 x)
2419 {
2420 /* Note: unlike access bits, deny bits may be zero. */
2421 return x <= NFS4_SHARE_DENY_BOTH;
2422 }
2423
2424 /*
2425 * Called to check deny when READ with all zero stateid or
2426 * WRITE with all zero or all one stateid
2427 */
2428 static __be32
2429 nfs4_share_conflict(struct svc_fh *current_fh, unsigned int deny_type)
2430 {
2431 struct inode *ino = current_fh->fh_dentry->d_inode;
2432 struct nfs4_file *fp;
2433 struct nfs4_ol_stateid *stp;
2434 __be32 ret;
2435
2436 dprintk("NFSD: nfs4_share_conflict\n");
2437
2438 fp = find_file(ino);
2439 if (!fp)
2440 return nfs_ok;
2441 ret = nfserr_locked;
2442 /* Search for conflicting share reservations */
2443 list_for_each_entry(stp, &fp->fi_stateids, st_perfile) {
2444 if (test_bit(deny_type, &stp->st_deny_bmap) ||
2445 test_bit(NFS4_SHARE_DENY_BOTH, &stp->st_deny_bmap))
2446 goto out;
2447 }
2448 ret = nfs_ok;
2449 out:
2450 put_nfs4_file(fp);
2451 return ret;
2452 }
2453
2454 static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
2455 {
2456 /* We're assuming the state code never drops its reference
2457 * without first removing the lease. Since we're in this lease
2458 * callback (and since the lease code is serialized by the kernel
2459 * lock) we know the server hasn't removed the lease yet, we know
2460 * it's safe to take a reference: */
2461 atomic_inc(&dp->dl_count);
2462
2463 list_add_tail(&dp->dl_recall_lru, &del_recall_lru);
2464
2465 /* only place dl_time is set. protected by lock_flocks*/
2466 dp->dl_time = get_seconds();
2467
2468 nfsd4_cb_recall(dp);
2469 }
2470
2471 /* Called from break_lease() with lock_flocks() held. */
2472 static void nfsd_break_deleg_cb(struct file_lock *fl)
2473 {
2474 struct nfs4_file *fp = (struct nfs4_file *)fl->fl_owner;
2475 struct nfs4_delegation *dp;
2476
2477 BUG_ON(!fp);
2478 /* We assume break_lease is only called once per lease: */
2479 BUG_ON(fp->fi_had_conflict);
2480 /*
2481 * We don't want the locks code to timeout the lease for us;
2482 * we'll remove it ourself if a delegation isn't returned
2483 * in time:
2484 */
2485 fl->fl_break_time = 0;
2486
2487 spin_lock(&recall_lock);
2488 fp->fi_had_conflict = true;
2489 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
2490 nfsd_break_one_deleg(dp);
2491 spin_unlock(&recall_lock);
2492 }
2493
2494 static
2495 int nfsd_change_deleg_cb(struct file_lock **onlist, int arg)
2496 {
2497 if (arg & F_UNLCK)
2498 return lease_modify(onlist, arg);
2499 else
2500 return -EAGAIN;
2501 }
2502
2503 static const struct lock_manager_operations nfsd_lease_mng_ops = {
2504 .lm_break = nfsd_break_deleg_cb,
2505 .lm_change = nfsd_change_deleg_cb,
2506 };
2507
2508 static __be32 nfsd4_check_seqid(struct nfsd4_compound_state *cstate, struct nfs4_stateowner *so, u32 seqid)
2509 {
2510 if (nfsd4_has_session(cstate))
2511 return nfs_ok;
2512 if (seqid == so->so_seqid - 1)
2513 return nfserr_replay_me;
2514 if (seqid == so->so_seqid)
2515 return nfs_ok;
2516 return nfserr_bad_seqid;
2517 }
2518
2519 __be32
2520 nfsd4_process_open1(struct nfsd4_compound_state *cstate,
2521 struct nfsd4_open *open)
2522 {
2523 clientid_t *clientid = &open->op_clientid;
2524 struct nfs4_client *clp = NULL;
2525 unsigned int strhashval;
2526 struct nfs4_openowner *oo = NULL;
2527 __be32 status;
2528
2529 if (!check_name(open->op_owner))
2530 return nfserr_inval;
2531
2532 if (STALE_CLIENTID(&open->op_clientid))
2533 return nfserr_stale_clientid;
2534
2535 strhashval = open_ownerstr_hashval(clientid->cl_id, &open->op_owner);
2536 oo = find_openstateowner_str(strhashval, open);
2537 open->op_openowner = oo;
2538 if (!oo) {
2539 /* Make sure the client's lease hasn't expired. */
2540 clp = find_confirmed_client(clientid);
2541 if (clp == NULL)
2542 return nfserr_expired;
2543 goto renew;
2544 }
2545 if (!oo->oo_confirmed) {
2546 /* Replace unconfirmed owners without checking for replay. */
2547 clp = oo->oo_owner.so_client;
2548 release_openowner(oo);
2549 open->op_openowner = NULL;
2550 goto renew;
2551 }
2552 status = nfsd4_check_seqid(cstate, &oo->oo_owner, open->op_seqid);
2553 if (status)
2554 return status;
2555 renew:
2556 if (open->op_openowner == NULL) {
2557 oo = alloc_init_open_stateowner(strhashval, clp, open);
2558 if (oo == NULL)
2559 return nfserr_jukebox;
2560 open->op_openowner = oo;
2561 }
2562 list_del_init(&oo->oo_close_lru);
2563 renew_client(oo->oo_owner.so_client);
2564 return nfs_ok;
2565 }
2566
2567 static inline __be32
2568 nfs4_check_delegmode(struct nfs4_delegation *dp, int flags)
2569 {
2570 if ((flags & WR_STATE) && (dp->dl_type == NFS4_OPEN_DELEGATE_READ))
2571 return nfserr_openmode;
2572 else
2573 return nfs_ok;
2574 }
2575
2576 static struct nfs4_delegation *
2577 find_delegation_file(struct nfs4_file *fp, stateid_t *stid)
2578 {
2579 struct nfs4_delegation *dp;
2580
2581 spin_lock(&recall_lock);
2582 list_for_each_entry(dp, &fp->fi_delegations, dl_perfile)
2583 if (dp->dl_stid.sc_stateid.si_stateownerid == stid->si_stateownerid) {
2584 spin_unlock(&recall_lock);
2585 return dp;
2586 }
2587 spin_unlock(&recall_lock);
2588 return NULL;
2589 }
2590
2591 static int share_access_to_flags(u32 share_access)
2592 {
2593 share_access &= ~NFS4_SHARE_WANT_MASK;
2594
2595 return share_access == NFS4_SHARE_ACCESS_READ ? RD_STATE : WR_STATE;
2596 }
2597
2598 static __be32
2599 nfs4_check_deleg(struct nfs4_file *fp, struct nfsd4_open *open,
2600 struct nfs4_delegation **dp)
2601 {
2602 int flags;
2603 __be32 status = nfserr_bad_stateid;
2604
2605 *dp = find_delegation_file(fp, &open->op_delegate_stateid);
2606 if (*dp == NULL)
2607 goto out;
2608 flags = share_access_to_flags(open->op_share_access);
2609 status = nfs4_check_delegmode(*dp, flags);
2610 if (status)
2611 *dp = NULL;
2612 out:
2613 if (open->op_claim_type != NFS4_OPEN_CLAIM_DELEGATE_CUR)
2614 return nfs_ok;
2615 if (status)
2616 return status;
2617 open->op_openowner->oo_confirmed = 1;
2618 return nfs_ok;
2619 }
2620
2621 static __be32
2622 nfs4_check_open(struct nfs4_file *fp, struct nfsd4_open *open, struct nfs4_ol_stateid **stpp)
2623 {
2624 struct nfs4_ol_stateid *local;
2625 struct nfs4_openowner *oo = open->op_openowner;
2626
2627 list_for_each_entry(local, &fp->fi_stateids, st_perfile) {
2628 /* ignore lock owners */
2629 if (local->st_stateowner->so_is_open_owner == 0)
2630 continue;
2631 /* remember if we have seen this open owner */
2632 if (local->st_stateowner == &oo->oo_owner)
2633 *stpp = local;
2634 /* check for conflicting share reservations */
2635 if (!test_share(local, open))
2636 return nfserr_share_denied;
2637 }
2638 return nfs_ok;
2639 }
2640
2641 static inline struct nfs4_ol_stateid *
2642 nfs4_alloc_stateid(void)
2643 {
2644 return kmem_cache_alloc(stateid_slab, GFP_KERNEL);
2645 }
2646
2647 static inline int nfs4_access_to_access(u32 nfs4_access)
2648 {
2649 int flags = 0;
2650
2651 if (nfs4_access & NFS4_SHARE_ACCESS_READ)
2652 flags |= NFSD_MAY_READ;
2653 if (nfs4_access & NFS4_SHARE_ACCESS_WRITE)
2654 flags |= NFSD_MAY_WRITE;
2655 return flags;
2656 }
2657
2658 static __be32 nfs4_get_vfs_file(struct svc_rqst *rqstp, struct nfs4_file *fp,
2659 struct svc_fh *cur_fh, struct nfsd4_open *open)
2660 {
2661 __be32 status;
2662 int oflag = nfs4_access_to_omode(open->op_share_access);
2663 int access = nfs4_access_to_access(open->op_share_access);
2664
2665 /* CLAIM_DELEGATE_CUR is used in response to a broken lease;
2666 * allowing it to break the lease and return EAGAIN leaves the
2667 * client unable to make progress in returning the delegation */
2668 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
2669 access |= NFSD_MAY_NOT_BREAK_LEASE;
2670
2671 if (!fp->fi_fds[oflag]) {
2672 status = nfsd_open(rqstp, cur_fh, S_IFREG, access,
2673 &fp->fi_fds[oflag]);
2674 if (status)
2675 return status;
2676 }
2677 nfs4_file_get_access(fp, oflag);
2678
2679 return nfs_ok;
2680 }
2681
2682 static __be32
2683 nfs4_new_open(struct svc_rqst *rqstp, struct nfs4_ol_stateid **stpp,
2684 struct nfs4_file *fp, struct svc_fh *cur_fh,
2685 struct nfsd4_open *open)
2686 {
2687 struct nfs4_ol_stateid *stp;
2688 __be32 status;
2689
2690 stp = nfs4_alloc_stateid();
2691 if (stp == NULL)
2692 return nfserr_jukebox;
2693
2694 status = nfs4_get_vfs_file(rqstp, fp, cur_fh, open);
2695 if (status) {
2696 kmem_cache_free(stateid_slab, stp);
2697 return status;
2698 }
2699 *stpp = stp;
2700 return 0;
2701 }
2702
2703 static inline __be32
2704 nfsd4_truncate(struct svc_rqst *rqstp, struct svc_fh *fh,
2705 struct nfsd4_open *open)
2706 {
2707 struct iattr iattr = {
2708 .ia_valid = ATTR_SIZE,
2709 .ia_size = 0,
2710 };
2711 if (!open->op_truncate)
2712 return 0;
2713 if (!(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
2714 return nfserr_inval;
2715 return nfsd_setattr(rqstp, fh, &iattr, 0, (time_t)0);
2716 }
2717
2718 static __be32
2719 nfs4_upgrade_open(struct svc_rqst *rqstp, struct nfs4_file *fp, struct svc_fh *cur_fh, struct nfs4_ol_stateid *stp, struct nfsd4_open *open)
2720 {
2721 u32 op_share_access = open->op_share_access & ~NFS4_SHARE_WANT_MASK;
2722 bool new_access;
2723 __be32 status;
2724
2725 new_access = !test_bit(op_share_access, &stp->st_access_bmap);
2726 if (new_access) {
2727 status = nfs4_get_vfs_file(rqstp, fp, cur_fh, open);
2728 if (status)
2729 return status;
2730 }
2731 status = nfsd4_truncate(rqstp, cur_fh, open);
2732 if (status) {
2733 if (new_access) {
2734 int oflag = nfs4_access_to_omode(op_share_access);
2735 nfs4_file_put_access(fp, oflag);
2736 }
2737 return status;
2738 }
2739 /* remember the open */
2740 __set_bit(op_share_access, &stp->st_access_bmap);
2741 __set_bit(open->op_share_deny, &stp->st_deny_bmap);
2742
2743 return nfs_ok;
2744 }
2745
2746
2747 static void
2748 nfs4_set_claim_prev(struct nfsd4_open *open)
2749 {
2750 open->op_openowner->oo_confirmed = 1;
2751 open->op_openowner->oo_owner.so_client->cl_firststate = 1;
2752 }
2753
2754 /* Should we give out recallable state?: */
2755 static bool nfsd4_cb_channel_good(struct nfs4_client *clp)
2756 {
2757 if (clp->cl_cb_state == NFSD4_CB_UP)
2758 return true;
2759 /*
2760 * In the sessions case, since we don't have to establish a
2761 * separate connection for callbacks, we assume it's OK
2762 * until we hear otherwise:
2763 */
2764 return clp->cl_minorversion && clp->cl_cb_state == NFSD4_CB_UNKNOWN;
2765 }
2766
2767 static struct file_lock *nfs4_alloc_init_lease(struct nfs4_delegation *dp, int flag)
2768 {
2769 struct file_lock *fl;
2770
2771 fl = locks_alloc_lock();
2772 if (!fl)
2773 return NULL;
2774 locks_init_lock(fl);
2775 fl->fl_lmops = &nfsd_lease_mng_ops;
2776 fl->fl_flags = FL_LEASE;
2777 fl->fl_type = flag == NFS4_OPEN_DELEGATE_READ? F_RDLCK: F_WRLCK;
2778 fl->fl_end = OFFSET_MAX;
2779 fl->fl_owner = (fl_owner_t)(dp->dl_file);
2780 fl->fl_pid = current->tgid;
2781 return fl;
2782 }
2783
2784 static int nfs4_setlease(struct nfs4_delegation *dp, int flag)
2785 {
2786 struct nfs4_file *fp = dp->dl_file;
2787 struct file_lock *fl;
2788 int status;
2789
2790 fl = nfs4_alloc_init_lease(dp, flag);
2791 if (!fl)
2792 return -ENOMEM;
2793 fl->fl_file = find_readable_file(fp);
2794 list_add(&dp->dl_perclnt, &dp->dl_client->cl_delegations);
2795 status = vfs_setlease(fl->fl_file, fl->fl_type, &fl);
2796 if (status) {
2797 list_del_init(&dp->dl_perclnt);
2798 locks_free_lock(fl);
2799 return -ENOMEM;
2800 }
2801 fp->fi_lease = fl;
2802 fp->fi_deleg_file = fl->fl_file;
2803 get_file(fp->fi_deleg_file);
2804 atomic_set(&fp->fi_delegees, 1);
2805 list_add(&dp->dl_perfile, &fp->fi_delegations);
2806 return 0;
2807 }
2808
2809 static int nfs4_set_delegation(struct nfs4_delegation *dp, int flag)
2810 {
2811 struct nfs4_file *fp = dp->dl_file;
2812
2813 if (!fp->fi_lease)
2814 return nfs4_setlease(dp, flag);
2815 spin_lock(&recall_lock);
2816 if (fp->fi_had_conflict) {
2817 spin_unlock(&recall_lock);
2818 return -EAGAIN;
2819 }
2820 atomic_inc(&fp->fi_delegees);
2821 list_add(&dp->dl_perfile, &fp->fi_delegations);
2822 spin_unlock(&recall_lock);
2823 list_add(&dp->dl_perclnt, &dp->dl_client->cl_delegations);
2824 return 0;
2825 }
2826
2827 /*
2828 * Attempt to hand out a delegation.
2829 */
2830 static void
2831 nfs4_open_delegation(struct svc_fh *fh, struct nfsd4_open *open, struct nfs4_ol_stateid *stp)
2832 {
2833 struct nfs4_delegation *dp;
2834 struct nfs4_openowner *oo = container_of(stp->st_stateowner, struct nfs4_openowner, oo_owner);
2835 int cb_up;
2836 int status, flag = 0;
2837
2838 cb_up = nfsd4_cb_channel_good(oo->oo_owner.so_client);
2839 flag = NFS4_OPEN_DELEGATE_NONE;
2840 open->op_recall = 0;
2841 switch (open->op_claim_type) {
2842 case NFS4_OPEN_CLAIM_PREVIOUS:
2843 if (!cb_up)
2844 open->op_recall = 1;
2845 flag = open->op_delegate_type;
2846 if (flag == NFS4_OPEN_DELEGATE_NONE)
2847 goto out;
2848 break;
2849 case NFS4_OPEN_CLAIM_NULL:
2850 /* Let's not give out any delegations till everyone's
2851 * had the chance to reclaim theirs.... */
2852 if (locks_in_grace())
2853 goto out;
2854 if (!cb_up || !oo->oo_confirmed)
2855 goto out;
2856 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
2857 flag = NFS4_OPEN_DELEGATE_WRITE;
2858 else
2859 flag = NFS4_OPEN_DELEGATE_READ;
2860 break;
2861 default:
2862 goto out;
2863 }
2864
2865 dp = alloc_init_deleg(oo->oo_owner.so_client, stp, fh, flag);
2866 if (dp == NULL)
2867 goto out_no_deleg;
2868 status = nfs4_set_delegation(dp, flag);
2869 if (status)
2870 goto out_free;
2871
2872 memcpy(&open->op_delegate_stateid, &dp->dl_stid.sc_stateid, sizeof(dp->dl_stid.sc_stateid));
2873
2874 dprintk("NFSD: delegation stateid=" STATEID_FMT "\n",
2875 STATEID_VAL(&dp->dl_stid.sc_stateid));
2876 out:
2877 if (open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS
2878 && flag == NFS4_OPEN_DELEGATE_NONE
2879 && open->op_delegate_type != NFS4_OPEN_DELEGATE_NONE)
2880 dprintk("NFSD: WARNING: refusing delegation reclaim\n");
2881 open->op_delegate_type = flag;
2882 return;
2883 out_free:
2884 nfs4_put_delegation(dp);
2885 out_no_deleg:
2886 flag = NFS4_OPEN_DELEGATE_NONE;
2887 goto out;
2888 }
2889
2890 /*
2891 * called with nfs4_lock_state() held.
2892 */
2893 __be32
2894 nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
2895 {
2896 struct nfsd4_compoundres *resp = rqstp->rq_resp;
2897 struct nfs4_file *fp = NULL;
2898 struct inode *ino = current_fh->fh_dentry->d_inode;
2899 struct nfs4_ol_stateid *stp = NULL;
2900 struct nfs4_delegation *dp = NULL;
2901 __be32 status;
2902
2903 status = nfserr_inval;
2904 if (!access_valid(open->op_share_access, resp->cstate.minorversion)
2905 || !deny_valid(open->op_share_deny))
2906 goto out;
2907 /*
2908 * Lookup file; if found, lookup stateid and check open request,
2909 * and check for delegations in the process of being recalled.
2910 * If not found, create the nfs4_file struct
2911 */
2912 fp = find_file(ino);
2913 if (fp) {
2914 if ((status = nfs4_check_open(fp, open, &stp)))
2915 goto out;
2916 status = nfs4_check_deleg(fp, open, &dp);
2917 if (status)
2918 goto out;
2919 } else {
2920 status = nfserr_bad_stateid;
2921 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
2922 goto out;
2923 status = nfserr_jukebox;
2924 fp = alloc_init_file(ino);
2925 if (fp == NULL)
2926 goto out;
2927 }
2928
2929 /*
2930 * OPEN the file, or upgrade an existing OPEN.
2931 * If truncate fails, the OPEN fails.
2932 */
2933 if (stp) {
2934 /* Stateid was found, this is an OPEN upgrade */
2935 status = nfs4_upgrade_open(rqstp, fp, current_fh, stp, open);
2936 if (status)
2937 goto out;
2938 } else {
2939 status = nfs4_new_open(rqstp, &stp, fp, current_fh, open);
2940 if (status)
2941 goto out;
2942 init_open_stateid(stp, fp, open);
2943 status = nfsd4_truncate(rqstp, current_fh, open);
2944 if (status) {
2945 release_open_stateid(stp);
2946 goto out;
2947 }
2948 }
2949 update_stateid(&stp->st_stid.sc_stateid);
2950 memcpy(&open->op_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
2951
2952 if (nfsd4_has_session(&resp->cstate))
2953 open->op_openowner->oo_confirmed = 1;
2954
2955 /*
2956 * Attempt to hand out a delegation. No error return, because the
2957 * OPEN succeeds even if we fail.
2958 */
2959 nfs4_open_delegation(current_fh, open, stp);
2960
2961 status = nfs_ok;
2962
2963 dprintk("%s: stateid=" STATEID_FMT "\n", __func__,
2964 STATEID_VAL(&stp->st_stid.sc_stateid));
2965 out:
2966 if (fp)
2967 put_nfs4_file(fp);
2968 if (status == 0 && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
2969 nfs4_set_claim_prev(open);
2970 /*
2971 * To finish the open response, we just need to set the rflags.
2972 */
2973 open->op_rflags = NFS4_OPEN_RESULT_LOCKTYPE_POSIX;
2974 if (!open->op_openowner->oo_confirmed &&
2975 !nfsd4_has_session(&resp->cstate))
2976 open->op_rflags |= NFS4_OPEN_RESULT_CONFIRM;
2977
2978 return status;
2979 }
2980
2981 __be32
2982 nfsd4_renew(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
2983 clientid_t *clid)
2984 {
2985 struct nfs4_client *clp;
2986 __be32 status;
2987
2988 nfs4_lock_state();
2989 dprintk("process_renew(%08x/%08x): starting\n",
2990 clid->cl_boot, clid->cl_id);
2991 status = nfserr_stale_clientid;
2992 if (STALE_CLIENTID(clid))
2993 goto out;
2994 clp = find_confirmed_client(clid);
2995 status = nfserr_expired;
2996 if (clp == NULL) {
2997 /* We assume the client took too long to RENEW. */
2998 dprintk("nfsd4_renew: clientid not found!\n");
2999 goto out;
3000 }
3001 renew_client(clp);
3002 status = nfserr_cb_path_down;
3003 if (!list_empty(&clp->cl_delegations)
3004 && clp->cl_cb_state != NFSD4_CB_UP)
3005 goto out;
3006 status = nfs_ok;
3007 out:
3008 nfs4_unlock_state();
3009 return status;
3010 }
3011
3012 static struct lock_manager nfsd4_manager = {
3013 };
3014
3015 static void
3016 nfsd4_end_grace(void)
3017 {
3018 dprintk("NFSD: end of grace period\n");
3019 nfsd4_recdir_purge_old();
3020 locks_end_grace(&nfsd4_manager);
3021 /*
3022 * Now that every NFSv4 client has had the chance to recover and
3023 * to see the (possibly new, possibly shorter) lease time, we
3024 * can safely set the next grace time to the current lease time:
3025 */
3026 nfsd4_grace = nfsd4_lease;
3027 }
3028
3029 static time_t
3030 nfs4_laundromat(void)
3031 {
3032 struct nfs4_client *clp;
3033 struct nfs4_openowner *oo;
3034 struct nfs4_delegation *dp;
3035 struct list_head *pos, *next, reaplist;
3036 time_t cutoff = get_seconds() - nfsd4_lease;
3037 time_t t, clientid_val = nfsd4_lease;
3038 time_t u, test_val = nfsd4_lease;
3039
3040 nfs4_lock_state();
3041
3042 dprintk("NFSD: laundromat service - starting\n");
3043 if (locks_in_grace())
3044 nfsd4_end_grace();
3045 INIT_LIST_HEAD(&reaplist);
3046 spin_lock(&client_lock);
3047 list_for_each_safe(pos, next, &client_lru) {
3048 clp = list_entry(pos, struct nfs4_client, cl_lru);
3049 if (time_after((unsigned long)clp->cl_time, (unsigned long)cutoff)) {
3050 t = clp->cl_time - cutoff;
3051 if (clientid_val > t)
3052 clientid_val = t;
3053 break;
3054 }
3055 if (atomic_read(&clp->cl_refcount)) {
3056 dprintk("NFSD: client in use (clientid %08x)\n",
3057 clp->cl_clientid.cl_id);
3058 continue;
3059 }
3060 unhash_client_locked(clp);
3061 list_add(&clp->cl_lru, &reaplist);
3062 }
3063 spin_unlock(&client_lock);
3064 list_for_each_safe(pos, next, &reaplist) {
3065 clp = list_entry(pos, struct nfs4_client, cl_lru);
3066 dprintk("NFSD: purging unused client (clientid %08x)\n",
3067 clp->cl_clientid.cl_id);
3068 nfsd4_remove_clid_dir(clp);
3069 expire_client(clp);
3070 }
3071 spin_lock(&recall_lock);
3072 list_for_each_safe(pos, next, &del_recall_lru) {
3073 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3074 if (time_after((unsigned long)dp->dl_time, (unsigned long)cutoff)) {
3075 u = dp->dl_time - cutoff;
3076 if (test_val > u)
3077 test_val = u;
3078 break;
3079 }
3080 list_move(&dp->dl_recall_lru, &reaplist);
3081 }
3082 spin_unlock(&recall_lock);
3083 list_for_each_safe(pos, next, &reaplist) {
3084 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
3085 list_del_init(&dp->dl_recall_lru);
3086 unhash_delegation(dp);
3087 }
3088 test_val = nfsd4_lease;
3089 list_for_each_safe(pos, next, &close_lru) {
3090 oo = container_of(pos, struct nfs4_openowner, oo_close_lru);
3091 if (time_after((unsigned long)oo->oo_time, (unsigned long)cutoff)) {
3092 u = oo->oo_time - cutoff;
3093 if (test_val > u)
3094 test_val = u;
3095 break;
3096 }
3097 dprintk("NFSD: purging unused open stateowner (so_id %d)\n",
3098 oo->oo_owner.so_id);
3099 release_openowner(oo);
3100 }
3101 if (clientid_val < NFSD_LAUNDROMAT_MINTIMEOUT)
3102 clientid_val = NFSD_LAUNDROMAT_MINTIMEOUT;
3103 nfs4_unlock_state();
3104 return clientid_val;
3105 }
3106
3107 static struct workqueue_struct *laundry_wq;
3108 static void laundromat_main(struct work_struct *);
3109 static DECLARE_DELAYED_WORK(laundromat_work, laundromat_main);
3110
3111 static void
3112 laundromat_main(struct work_struct *not_used)
3113 {
3114 time_t t;
3115
3116 t = nfs4_laundromat();
3117 dprintk("NFSD: laundromat_main - sleeping for %ld seconds\n", t);
3118 queue_delayed_work(laundry_wq, &laundromat_work, t*HZ);
3119 }
3120
3121 static struct nfs4_openowner * search_close_lru(u32 st_id)
3122 {
3123 struct nfs4_openowner *local;
3124
3125 list_for_each_entry(local, &close_lru, oo_close_lru) {
3126 if (local->oo_owner.so_id == st_id)
3127 return local;
3128 }
3129 return NULL;
3130 }
3131
3132 static inline int
3133 nfs4_check_fh(struct svc_fh *fhp, struct nfs4_ol_stateid *stp)
3134 {
3135 return fhp->fh_dentry->d_inode != stp->st_file->fi_inode;
3136 }
3137
3138 static int
3139 STALE_STATEID(stateid_t *stateid)
3140 {
3141 if (stateid->si_boot == boot_time)
3142 return 0;
3143 dprintk("NFSD: stale stateid " STATEID_FMT "!\n",
3144 STATEID_VAL(stateid));
3145 return 1;
3146 }
3147
3148 static inline int
3149 access_permit_read(unsigned long access_bmap)
3150 {
3151 return test_bit(NFS4_SHARE_ACCESS_READ, &access_bmap) ||
3152 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap) ||
3153 test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap);
3154 }
3155
3156 static inline int
3157 access_permit_write(unsigned long access_bmap)
3158 {
3159 return test_bit(NFS4_SHARE_ACCESS_WRITE, &access_bmap) ||
3160 test_bit(NFS4_SHARE_ACCESS_BOTH, &access_bmap);
3161 }
3162
3163 static
3164 __be32 nfs4_check_openmode(struct nfs4_ol_stateid *stp, int flags)
3165 {
3166 __be32 status = nfserr_openmode;
3167
3168 /* For lock stateid's, we test the parent open, not the lock: */
3169 if (stp->st_openstp)
3170 stp = stp->st_openstp;
3171 if ((flags & WR_STATE) && (!access_permit_write(stp->st_access_bmap)))
3172 goto out;
3173 if ((flags & RD_STATE) && (!access_permit_read(stp->st_access_bmap)))
3174 goto out;
3175 status = nfs_ok;
3176 out:
3177 return status;
3178 }
3179
3180 static inline __be32
3181 check_special_stateids(svc_fh *current_fh, stateid_t *stateid, int flags)
3182 {
3183 if (ONE_STATEID(stateid) && (flags & RD_STATE))
3184 return nfs_ok;
3185 else if (locks_in_grace()) {
3186 /* Answer in remaining cases depends on existence of
3187 * conflicting state; so we must wait out the grace period. */
3188 return nfserr_grace;
3189 } else if (flags & WR_STATE)
3190 return nfs4_share_conflict(current_fh,
3191 NFS4_SHARE_DENY_WRITE);
3192 else /* (flags & RD_STATE) && ZERO_STATEID(stateid) */
3193 return nfs4_share_conflict(current_fh,
3194 NFS4_SHARE_DENY_READ);
3195 }
3196
3197 /*
3198 * Allow READ/WRITE during grace period on recovered state only for files
3199 * that are not able to provide mandatory locking.
3200 */
3201 static inline int
3202 grace_disallows_io(struct inode *inode)
3203 {
3204 return locks_in_grace() && mandatory_lock(inode);
3205 }
3206
3207 /* Returns true iff a is later than b: */
3208 static bool stateid_generation_after(stateid_t *a, stateid_t *b)
3209 {
3210 return (s32)a->si_generation - (s32)b->si_generation > 0;
3211 }
3212
3213 static int check_stateid_generation(stateid_t *in, stateid_t *ref, bool has_session)
3214 {
3215 /*
3216 * When sessions are used the stateid generation number is ignored
3217 * when it is zero.
3218 */
3219 if (has_session && in->si_generation == 0)
3220 return nfs_ok;
3221
3222 if (in->si_generation == ref->si_generation)
3223 return nfs_ok;
3224
3225 /* If the client sends us a stateid from the future, it's buggy: */
3226 if (stateid_generation_after(in, ref))
3227 return nfserr_bad_stateid;
3228 /*
3229 * However, we could see a stateid from the past, even from a
3230 * non-buggy client. For example, if the client sends a lock
3231 * while some IO is outstanding, the lock may bump si_generation
3232 * while the IO is still in flight. The client could avoid that
3233 * situation by waiting for responses on all the IO requests,
3234 * but better performance may result in retrying IO that
3235 * receives an old_stateid error if requests are rarely
3236 * reordered in flight:
3237 */
3238 return nfserr_old_stateid;
3239 }
3240
3241 static int is_delegation_stateid(stateid_t *stateid)
3242 {
3243 return stateid->si_fileid == 0;
3244 }
3245
3246 __be32 nfs4_validate_stateid(stateid_t *stateid, bool has_session)
3247 {
3248 struct nfs4_ol_stateid *stp = NULL;
3249 __be32 status = nfserr_stale_stateid;
3250
3251 if (STALE_STATEID(stateid))
3252 goto out;
3253
3254 status = nfserr_expired;
3255 stp = find_stateid(stateid);
3256 if (!stp)
3257 goto out;
3258 status = nfserr_bad_stateid;
3259 if (stp->st_stateowner->so_is_open_owner
3260 && !openowner(stp->st_stateowner)->oo_confirmed)
3261 goto out;
3262
3263 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, has_session);
3264 if (status)
3265 goto out;
3266
3267 status = nfs_ok;
3268 out:
3269 return status;
3270 }
3271
3272 /*
3273 * Checks for stateid operations
3274 */
3275 __be32
3276 nfs4_preprocess_stateid_op(struct nfsd4_compound_state *cstate,
3277 stateid_t *stateid, int flags, struct file **filpp)
3278 {
3279 struct nfs4_ol_stateid *stp = NULL;
3280 struct nfs4_delegation *dp = NULL;
3281 struct svc_fh *current_fh = &cstate->current_fh;
3282 struct inode *ino = current_fh->fh_dentry->d_inode;
3283 __be32 status;
3284
3285 if (filpp)
3286 *filpp = NULL;
3287
3288 if (grace_disallows_io(ino))
3289 return nfserr_grace;
3290
3291 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3292 return check_special_stateids(current_fh, stateid, flags);
3293
3294 status = nfserr_stale_stateid;
3295 if (STALE_STATEID(stateid))
3296 goto out;
3297
3298 /*
3299 * We assume that any stateid that has the current boot time,
3300 * but that we can't find, is expired:
3301 */
3302 status = nfserr_expired;
3303 if (is_delegation_stateid(stateid)) {
3304 dp = find_delegation_stateid(ino, stateid);
3305 if (!dp)
3306 goto out;
3307 status = check_stateid_generation(stateid, &dp->dl_stid.sc_stateid, nfsd4_has_session(cstate));
3308 if (status)
3309 goto out;
3310 status = nfs4_check_delegmode(dp, flags);
3311 if (status)
3312 goto out;
3313 renew_client(dp->dl_client);
3314 if (filpp) {
3315 *filpp = dp->dl_file->fi_deleg_file;
3316 BUG_ON(!*filpp);
3317 }
3318 } else { /* open or lock stateid */
3319 stp = find_stateid(stateid);
3320 if (!stp)
3321 goto out;
3322 status = nfserr_bad_stateid;
3323 if (nfs4_check_fh(current_fh, stp))
3324 goto out;
3325 if (stp->st_stateowner->so_is_open_owner
3326 && !openowner(stp->st_stateowner)->oo_confirmed)
3327 goto out;
3328 status = check_stateid_generation(stateid, &stp->st_stid.sc_stateid,
3329 nfsd4_has_session(cstate));
3330 if (status)
3331 goto out;
3332 status = nfs4_check_openmode(stp, flags);
3333 if (status)
3334 goto out;
3335 renew_client(stp->st_stateowner->so_client);
3336 if (filpp) {
3337 if (flags & RD_STATE)
3338 *filpp = find_readable_file(stp->st_file);
3339 else
3340 *filpp = find_writeable_file(stp->st_file);
3341 }
3342 }
3343 status = nfs_ok;
3344 out:
3345 return status;
3346 }
3347
3348 static __be32
3349 nfsd4_free_delegation_stateid(stateid_t *stateid)
3350 {
3351 struct nfs4_delegation *dp = search_for_delegation(stateid);
3352 if (dp)
3353 return nfserr_locks_held;
3354 return nfserr_bad_stateid;
3355 }
3356
3357 static __be32
3358 nfsd4_free_lock_stateid(struct nfs4_ol_stateid *stp)
3359 {
3360 if (check_for_locks(stp->st_file, lockowner(stp->st_stateowner)))
3361 return nfserr_locks_held;
3362 release_lock_stateid(stp);
3363 return nfs_ok;
3364 }
3365
3366 /*
3367 * Test if the stateid is valid
3368 */
3369 __be32
3370 nfsd4_test_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3371 struct nfsd4_test_stateid *test_stateid)
3372 {
3373 test_stateid->ts_has_session = nfsd4_has_session(cstate);
3374 return nfs_ok;
3375 }
3376
3377 /*
3378 * Free a state id
3379 */
3380 __be32
3381 nfsd4_free_stateid(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3382 struct nfsd4_free_stateid *free_stateid)
3383 {
3384 stateid_t *stateid = &free_stateid->fr_stateid;
3385 struct nfs4_ol_stateid *stp;
3386 __be32 ret;
3387
3388 nfs4_lock_state();
3389 if (is_delegation_stateid(stateid)) {
3390 ret = nfsd4_free_delegation_stateid(stateid);
3391 goto out;
3392 }
3393
3394 stp = find_stateid(stateid);
3395 if (!stp) {
3396 ret = nfserr_bad_stateid;
3397 goto out;
3398 }
3399 ret = check_stateid_generation(stateid, &stp->st_stid.sc_stateid, 1);
3400 if (ret)
3401 goto out;
3402
3403 if (stp->st_stid.sc_type == NFS4_OPEN_STID) {
3404 ret = nfserr_locks_held;
3405 goto out;
3406 } else {
3407 ret = nfsd4_free_lock_stateid(stp);
3408 goto out;
3409 }
3410
3411 out:
3412 nfs4_unlock_state();
3413 return ret;
3414 }
3415
3416 static inline int
3417 setlkflg (int type)
3418 {
3419 return (type == NFS4_READW_LT || type == NFS4_READ_LT) ?
3420 RD_STATE : WR_STATE;
3421 }
3422
3423 static __be32 nfs4_nospecial_stateid_checks(stateid_t *stateid)
3424 {
3425 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3426 return nfserr_bad_stateid;
3427 if (STALE_STATEID(stateid))
3428 return nfserr_stale_stateid;
3429 return nfs_ok;
3430 }
3431
3432 static __be32 nfs4_seqid_op_checks(struct nfsd4_compound_state *cstate, stateid_t *stateid, u32 seqid, struct nfs4_ol_stateid *stp)
3433 {
3434 struct svc_fh *current_fh = &cstate->current_fh;
3435 struct nfs4_stateowner *sop = stp->st_stateowner;
3436 __be32 status;
3437
3438 if (nfs4_check_fh(current_fh, stp))
3439 return nfserr_bad_stateid;
3440 status = nfsd4_check_seqid(cstate, sop, seqid);
3441 if (status)
3442 return status;
3443 return check_stateid_generation(stateid, &stp->st_stid.sc_stateid, nfsd4_has_session(cstate));
3444 }
3445
3446 /*
3447 * Checks for sequence id mutating operations.
3448 */
3449 static __be32
3450 nfs4_preprocess_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid,
3451 stateid_t *stateid, char typemask,
3452 struct nfs4_ol_stateid **stpp)
3453 {
3454 __be32 status;
3455
3456 dprintk("NFSD: %s: seqid=%d stateid = " STATEID_FMT "\n", __func__,
3457 seqid, STATEID_VAL(stateid));
3458
3459 *stpp = NULL;
3460 status = nfs4_nospecial_stateid_checks(stateid);
3461 if (status)
3462 return status;
3463 *stpp = find_stateid_by_type(stateid, typemask);
3464 if (*stpp == NULL)
3465 return nfserr_expired;
3466 cstate->replay_owner = (*stpp)->st_stateowner;
3467 renew_client((*stpp)->st_stateowner->so_client);
3468
3469 return nfs4_seqid_op_checks(cstate, stateid, seqid, *stpp);
3470 }
3471
3472 static __be32 nfs4_preprocess_confirmed_seqid_op(struct nfsd4_compound_state *cstate, u32 seqid, stateid_t *stateid, struct nfs4_ol_stateid **stpp)
3473 {
3474 __be32 status;
3475 struct nfs4_openowner *oo;
3476
3477 status = nfs4_preprocess_seqid_op(cstate, seqid, stateid,
3478 NFS4_OPEN_STID, stpp);
3479 if (status)
3480 return status;
3481 oo = openowner((*stpp)->st_stateowner);
3482 if (!oo->oo_confirmed)
3483 return nfserr_bad_stateid;
3484 return nfs_ok;
3485 }
3486
3487 __be32
3488 nfsd4_open_confirm(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3489 struct nfsd4_open_confirm *oc)
3490 {
3491 __be32 status;
3492 struct nfs4_openowner *oo;
3493 struct nfs4_ol_stateid *stp;
3494
3495 dprintk("NFSD: nfsd4_open_confirm on file %.*s\n",
3496 (int)cstate->current_fh.fh_dentry->d_name.len,
3497 cstate->current_fh.fh_dentry->d_name.name);
3498
3499 status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0);
3500 if (status)
3501 return status;
3502
3503 nfs4_lock_state();
3504
3505 status = nfs4_preprocess_seqid_op(cstate,
3506 oc->oc_seqid, &oc->oc_req_stateid,
3507 NFS4_OPEN_STID, &stp);
3508 if (status)
3509 goto out;
3510 oo = openowner(stp->st_stateowner);
3511 status = nfserr_bad_stateid;
3512 if (oo->oo_confirmed)
3513 goto out;
3514 oo->oo_confirmed = 1;
3515 update_stateid(&stp->st_stid.sc_stateid);
3516 memcpy(&oc->oc_resp_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
3517 dprintk("NFSD: %s: success, seqid=%d stateid=" STATEID_FMT "\n",
3518 __func__, oc->oc_seqid, STATEID_VAL(&stp->st_stid.sc_stateid));
3519
3520 nfsd4_create_clid_dir(oo->oo_owner.so_client);
3521 status = nfs_ok;
3522 out:
3523 if (!cstate->replay_owner)
3524 nfs4_unlock_state();
3525 return status;
3526 }
3527
3528 static inline void nfs4_file_downgrade(struct nfs4_ol_stateid *stp, unsigned int to_access)
3529 {
3530 int i;
3531
3532 for (i = 1; i < 4; i++) {
3533 if (test_bit(i, &stp->st_access_bmap) && !(i & to_access)) {
3534 nfs4_file_put_access(stp->st_file, i);
3535 __clear_bit(i, &stp->st_access_bmap);
3536 }
3537 }
3538 }
3539
3540 static void
3541 reset_union_bmap_deny(unsigned long deny, unsigned long *bmap)
3542 {
3543 int i;
3544 for (i = 0; i < 4; i++) {
3545 if ((i & deny) != i)
3546 __clear_bit(i, bmap);
3547 }
3548 }
3549
3550 __be32
3551 nfsd4_open_downgrade(struct svc_rqst *rqstp,
3552 struct nfsd4_compound_state *cstate,
3553 struct nfsd4_open_downgrade *od)
3554 {
3555 __be32 status;
3556 struct nfs4_ol_stateid *stp;
3557
3558 dprintk("NFSD: nfsd4_open_downgrade on file %.*s\n",
3559 (int)cstate->current_fh.fh_dentry->d_name.len,
3560 cstate->current_fh.fh_dentry->d_name.name);
3561
3562 if (!access_valid(od->od_share_access, cstate->minorversion)
3563 || !deny_valid(od->od_share_deny))
3564 return nfserr_inval;
3565
3566 nfs4_lock_state();
3567 status = nfs4_preprocess_confirmed_seqid_op(cstate, od->od_seqid,
3568 &od->od_stateid, &stp);
3569 if (status)
3570 goto out;
3571 status = nfserr_inval;
3572 if (!test_bit(od->od_share_access, &stp->st_access_bmap)) {
3573 dprintk("NFSD:access not a subset current bitmap: 0x%lx, input access=%08x\n",
3574 stp->st_access_bmap, od->od_share_access);
3575 goto out;
3576 }
3577 if (!test_bit(od->od_share_deny, &stp->st_deny_bmap)) {
3578 dprintk("NFSD:deny not a subset current bitmap: 0x%lx, input deny=%08x\n",
3579 stp->st_deny_bmap, od->od_share_deny);
3580 goto out;
3581 }
3582 nfs4_file_downgrade(stp, od->od_share_access);
3583
3584 reset_union_bmap_deny(od->od_share_deny, &stp->st_deny_bmap);
3585
3586 update_stateid(&stp->st_stid.sc_stateid);
3587 memcpy(&od->od_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
3588 status = nfs_ok;
3589 out:
3590 if (!cstate->replay_owner)
3591 nfs4_unlock_state();
3592 return status;
3593 }
3594
3595 /*
3596 * nfs4_unlock_state() called after encode
3597 */
3598 __be32
3599 nfsd4_close(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3600 struct nfsd4_close *close)
3601 {
3602 __be32 status;
3603 struct nfs4_openowner *oo;
3604 struct nfs4_ol_stateid *stp;
3605
3606 dprintk("NFSD: nfsd4_close on file %.*s\n",
3607 (int)cstate->current_fh.fh_dentry->d_name.len,
3608 cstate->current_fh.fh_dentry->d_name.name);
3609
3610 nfs4_lock_state();
3611 /* check close_lru for replay */
3612 status = nfs4_preprocess_confirmed_seqid_op(cstate, close->cl_seqid,
3613 &close->cl_stateid, &stp);
3614 if (stp == NULL && status == nfserr_expired) {
3615 /*
3616 * Also, we should make sure this isn't just the result of
3617 * a replayed close:
3618 */
3619 oo = search_close_lru(close->cl_stateid.si_stateownerid);
3620 /* It's not stale; let's assume it's expired: */
3621 if (oo == NULL)
3622 goto out;
3623 cstate->replay_owner = &oo->oo_owner;
3624 status = nfsd4_check_seqid(cstate, &oo->oo_owner, close->cl_seqid);
3625 if (status)
3626 goto out;
3627 status = nfserr_bad_seqid;
3628 }
3629 if (status)
3630 goto out;
3631 oo = openowner(stp->st_stateowner);
3632 status = nfs_ok;
3633 update_stateid(&stp->st_stid.sc_stateid);
3634 memcpy(&close->cl_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
3635
3636 /* release_stateid() calls nfsd_close() if needed */
3637 release_open_stateid(stp);
3638
3639 /* place unused nfs4_stateowners on so_close_lru list to be
3640 * released by the laundromat service after the lease period
3641 * to enable us to handle CLOSE replay
3642 */
3643 if (list_empty(&oo->oo_owner.so_stateids))
3644 move_to_close_lru(oo);
3645 out:
3646 if (!cstate->replay_owner)
3647 nfs4_unlock_state();
3648 return status;
3649 }
3650
3651 __be32
3652 nfsd4_delegreturn(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3653 struct nfsd4_delegreturn *dr)
3654 {
3655 struct nfs4_delegation *dp;
3656 stateid_t *stateid = &dr->dr_stateid;
3657 struct inode *inode;
3658 __be32 status;
3659
3660 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
3661 return status;
3662 inode = cstate->current_fh.fh_dentry->d_inode;
3663
3664 nfs4_lock_state();
3665 status = nfserr_bad_stateid;
3666 if (ZERO_STATEID(stateid) || ONE_STATEID(stateid))
3667 goto out;
3668 status = nfserr_stale_stateid;
3669 if (STALE_STATEID(stateid))
3670 goto out;
3671 status = nfserr_bad_stateid;
3672 if (!is_delegation_stateid(stateid))
3673 goto out;
3674 status = nfserr_expired;
3675 dp = find_delegation_stateid(inode, stateid);
3676 if (!dp)
3677 goto out;
3678 status = check_stateid_generation(stateid, &dp->dl_stid.sc_stateid, nfsd4_has_session(cstate));
3679 if (status)
3680 goto out;
3681 renew_client(dp->dl_client);
3682
3683 unhash_delegation(dp);
3684 out:
3685 nfs4_unlock_state();
3686
3687 return status;
3688 }
3689
3690
3691 /*
3692 * Lock owner state (byte-range locks)
3693 */
3694 #define LOFF_OVERFLOW(start, len) ((u64)(len) > ~(u64)(start))
3695 #define LOCK_HASH_BITS 8
3696 #define LOCK_HASH_SIZE (1 << LOCK_HASH_BITS)
3697 #define LOCK_HASH_MASK (LOCK_HASH_SIZE - 1)
3698
3699 static inline u64
3700 end_offset(u64 start, u64 len)
3701 {
3702 u64 end;
3703
3704 end = start + len;
3705 return end >= start ? end: NFS4_MAX_UINT64;
3706 }
3707
3708 /* last octet in a range */
3709 static inline u64
3710 last_byte_offset(u64 start, u64 len)
3711 {
3712 u64 end;
3713
3714 BUG_ON(!len);
3715 end = start + len;
3716 return end > start ? end - 1: NFS4_MAX_UINT64;
3717 }
3718
3719 static unsigned int lockownerid_hashval(u32 id)
3720 {
3721 return id & LOCK_HASH_MASK;
3722 }
3723
3724 static inline unsigned int
3725 lock_ownerstr_hashval(struct inode *inode, u32 cl_id,
3726 struct xdr_netobj *ownername)
3727 {
3728 return (file_hashval(inode) + cl_id
3729 + opaque_hashval(ownername->data, ownername->len))
3730 & LOCK_HASH_MASK;
3731 }
3732
3733 static struct list_head lock_ownerid_hashtbl[LOCK_HASH_SIZE];
3734 static struct list_head lock_ownerstr_hashtbl[LOCK_HASH_SIZE];
3735
3736 static struct nfs4_delegation *
3737 search_for_delegation(stateid_t *stid)
3738 {
3739 struct nfs4_file *fp;
3740 struct nfs4_delegation *dp;
3741 struct list_head *pos;
3742 int i;
3743
3744 for (i = 0; i < FILE_HASH_SIZE; i++) {
3745 list_for_each_entry(fp, &file_hashtbl[i], fi_hash) {
3746 list_for_each(pos, &fp->fi_delegations) {
3747 dp = list_entry(pos, struct nfs4_delegation, dl_perfile);
3748 if (same_stateid(&dp->dl_stid.sc_stateid, stid))
3749 return dp;
3750 }
3751 }
3752 }
3753 return NULL;
3754 }
3755
3756 static struct nfs4_delegation *
3757 find_delegation_stateid(struct inode *ino, stateid_t *stid)
3758 {
3759 struct nfs4_file *fp;
3760 struct nfs4_delegation *dl;
3761
3762 dprintk("NFSD: %s: stateid=" STATEID_FMT "\n", __func__,
3763 STATEID_VAL(stid));
3764
3765 fp = find_file(ino);
3766 if (!fp)
3767 return NULL;
3768 dl = find_delegation_file(fp, stid);
3769 put_nfs4_file(fp);
3770 return dl;
3771 }
3772
3773 /*
3774 * TODO: Linux file offsets are _signed_ 64-bit quantities, which means that
3775 * we can't properly handle lock requests that go beyond the (2^63 - 1)-th
3776 * byte, because of sign extension problems. Since NFSv4 calls for 64-bit
3777 * locking, this prevents us from being completely protocol-compliant. The
3778 * real solution to this problem is to start using unsigned file offsets in
3779 * the VFS, but this is a very deep change!
3780 */
3781 static inline void
3782 nfs4_transform_lock_offset(struct file_lock *lock)
3783 {
3784 if (lock->fl_start < 0)
3785 lock->fl_start = OFFSET_MAX;
3786 if (lock->fl_end < 0)
3787 lock->fl_end = OFFSET_MAX;
3788 }
3789
3790 /* Hack!: For now, we're defining this just so we can use a pointer to it
3791 * as a unique cookie to identify our (NFSv4's) posix locks. */
3792 static const struct lock_manager_operations nfsd_posix_mng_ops = {
3793 };
3794
3795 static inline void
3796 nfs4_set_lock_denied(struct file_lock *fl, struct nfsd4_lock_denied *deny)
3797 {
3798 struct nfs4_lockowner *lo;
3799
3800 if (fl->fl_lmops == &nfsd_posix_mng_ops) {
3801 lo = (struct nfs4_lockowner *) fl->fl_owner;
3802 deny->ld_owner.data = kmemdup(lo->lo_owner.so_owner.data,
3803 lo->lo_owner.so_owner.len, GFP_KERNEL);
3804 if (!deny->ld_owner.data)
3805 /* We just don't care that much */
3806 goto nevermind;
3807 deny->ld_owner.len = lo->lo_owner.so_owner.len;
3808 deny->ld_clientid = lo->lo_owner.so_client->cl_clientid;
3809 } else {
3810 nevermind:
3811 deny->ld_owner.len = 0;
3812 deny->ld_owner.data = NULL;
3813 deny->ld_clientid.cl_boot = 0;
3814 deny->ld_clientid.cl_id = 0;
3815 }
3816 deny->ld_start = fl->fl_start;
3817 deny->ld_length = NFS4_MAX_UINT64;
3818 if (fl->fl_end != NFS4_MAX_UINT64)
3819 deny->ld_length = fl->fl_end - fl->fl_start + 1;
3820 deny->ld_type = NFS4_READ_LT;
3821 if (fl->fl_type != F_RDLCK)
3822 deny->ld_type = NFS4_WRITE_LT;
3823 }
3824
3825 static struct nfs4_lockowner *
3826 find_lockowner_str(struct inode *inode, clientid_t *clid,
3827 struct xdr_netobj *owner)
3828 {
3829 unsigned int hashval = lock_ownerstr_hashval(inode, clid->cl_id, owner);
3830 struct nfs4_stateowner *op;
3831
3832 list_for_each_entry(op, &lock_ownerstr_hashtbl[hashval], so_strhash) {
3833 if (same_owner_str(op, owner, clid))
3834 return lockowner(op);
3835 }
3836 return NULL;
3837 }
3838
3839 static void hash_lockowner(struct nfs4_lockowner *lo, unsigned int strhashval, struct nfs4_client *clp, struct nfs4_ol_stateid *open_stp)
3840 {
3841 unsigned int idhashval;
3842
3843 idhashval = lockownerid_hashval(lo->lo_owner.so_id);
3844 list_add(&lo->lo_owner.so_idhash, &lock_ownerid_hashtbl[idhashval]);
3845 list_add(&lo->lo_owner.so_strhash, &lock_ownerstr_hashtbl[strhashval]);
3846 list_add(&lo->lo_perstateid, &open_stp->st_lockowners);
3847 }
3848
3849 /*
3850 * Alloc a lock owner structure.
3851 * Called in nfsd4_lock - therefore, OPEN and OPEN_CONFIRM (if needed) has
3852 * occurred.
3853 *
3854 * strhashval = lock_ownerstr_hashval
3855 */
3856
3857 static struct nfs4_lockowner *
3858 alloc_init_lock_stateowner(unsigned int strhashval, struct nfs4_client *clp, struct nfs4_ol_stateid *open_stp, struct nfsd4_lock *lock) {
3859 struct nfs4_lockowner *lo;
3860
3861 lo = alloc_stateowner(lockowner_slab, &lock->lk_new_owner, clp);
3862 if (!lo)
3863 return NULL;
3864 INIT_LIST_HEAD(&lo->lo_owner.so_stateids);
3865 lo->lo_owner.so_is_open_owner = 0;
3866 /* It is the openowner seqid that will be incremented in encode in the
3867 * case of new lockowners; so increment the lock seqid manually: */
3868 lo->lo_owner.so_seqid = lock->lk_new_lock_seqid + 1;
3869 hash_lockowner(lo, strhashval, clp, open_stp);
3870 return lo;
3871 }
3872
3873 static struct nfs4_ol_stateid *
3874 alloc_init_lock_stateid(struct nfs4_lockowner *lo, struct nfs4_file *fp, struct nfs4_ol_stateid *open_stp)
3875 {
3876 struct nfs4_ol_stateid *stp;
3877
3878 stp = nfs4_alloc_stateid();
3879 if (stp == NULL)
3880 goto out;
3881 list_add(&stp->st_perfile, &fp->fi_stateids);
3882 list_add(&stp->st_perstateowner, &lo->lo_owner.so_stateids);
3883 stp->st_stateowner = &lo->lo_owner;
3884 stp->st_stid.sc_type = NFS4_LOCK_STID;
3885 get_nfs4_file(fp);
3886 stp->st_file = fp;
3887 stp->st_stid.sc_stateid.si_boot = boot_time;
3888 stp->st_stid.sc_stateid.si_stateownerid = lo->lo_owner.so_id;
3889 stp->st_stid.sc_stateid.si_fileid = fp->fi_id;
3890 /* note will be incremented before first return to client: */
3891 stp->st_stid.sc_stateid.si_generation = 0;
3892 hash_stid(&stp->st_stid);
3893 stp->st_access_bmap = 0;
3894 stp->st_deny_bmap = open_stp->st_deny_bmap;
3895 stp->st_openstp = open_stp;
3896
3897 out:
3898 return stp;
3899 }
3900
3901 static int
3902 check_lock_length(u64 offset, u64 length)
3903 {
3904 return ((length == 0) || ((length != NFS4_MAX_UINT64) &&
3905 LOFF_OVERFLOW(offset, length)));
3906 }
3907
3908 static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
3909 {
3910 struct nfs4_file *fp = lock_stp->st_file;
3911 int oflag = nfs4_access_to_omode(access);
3912
3913 if (test_bit(access, &lock_stp->st_access_bmap))
3914 return;
3915 nfs4_file_get_access(fp, oflag);
3916 __set_bit(access, &lock_stp->st_access_bmap);
3917 }
3918
3919 /*
3920 * LOCK operation
3921 */
3922 __be32
3923 nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
3924 struct nfsd4_lock *lock)
3925 {
3926 struct nfs4_openowner *open_sop = NULL;
3927 struct nfs4_lockowner *lock_sop = NULL;
3928 struct nfs4_ol_stateid *lock_stp;
3929 struct nfs4_file *fp;
3930 struct file *filp = NULL;
3931 struct file_lock file_lock;
3932 struct file_lock conflock;
3933 __be32 status = 0;
3934 unsigned int strhashval;
3935 int lkflg;
3936 int err;
3937
3938 dprintk("NFSD: nfsd4_lock: start=%Ld length=%Ld\n",
3939 (long long) lock->lk_offset,
3940 (long long) lock->lk_length);
3941
3942 if (check_lock_length(lock->lk_offset, lock->lk_length))
3943 return nfserr_inval;
3944
3945 if ((status = fh_verify(rqstp, &cstate->current_fh,
3946 S_IFREG, NFSD_MAY_LOCK))) {
3947 dprintk("NFSD: nfsd4_lock: permission denied!\n");
3948 return status;
3949 }
3950
3951 nfs4_lock_state();
3952
3953 if (lock->lk_is_new) {
3954 /*
3955 * Client indicates that this is a new lockowner.
3956 * Use open owner and open stateid to create lock owner and
3957 * lock stateid.
3958 */
3959 struct nfs4_ol_stateid *open_stp = NULL;
3960
3961 status = nfserr_stale_clientid;
3962 if (!nfsd4_has_session(cstate) &&
3963 STALE_CLIENTID(&lock->lk_new_clientid))
3964 goto out;
3965
3966 /* validate and update open stateid and open seqid */
3967 status = nfs4_preprocess_confirmed_seqid_op(cstate,
3968 lock->lk_new_open_seqid,
3969 &lock->lk_new_open_stateid,
3970 &open_stp);
3971 if (status)
3972 goto out;
3973 open_sop = openowner(open_stp->st_stateowner);
3974 status = nfserr_bad_stateid;
3975 if (!nfsd4_has_session(cstate) &&
3976 !same_clid(&open_sop->oo_owner.so_client->cl_clientid,
3977 &lock->v.new.clientid))
3978 goto out;
3979 /* create lockowner and lock stateid */
3980 fp = open_stp->st_file;
3981 strhashval = lock_ownerstr_hashval(fp->fi_inode,
3982 open_sop->oo_owner.so_client->cl_clientid.cl_id,
3983 &lock->v.new.owner);
3984 /* XXX: Do we need to check for duplicate stateowners on
3985 * the same file, or should they just be allowed (and
3986 * create new stateids)? */
3987 status = nfserr_jukebox;
3988 lock_sop = alloc_init_lock_stateowner(strhashval,
3989 open_sop->oo_owner.so_client, open_stp, lock);
3990 if (lock_sop == NULL)
3991 goto out;
3992 lock_stp = alloc_init_lock_stateid(lock_sop, fp, open_stp);
3993 if (lock_stp == NULL)
3994 goto out;
3995 } else {
3996 /* lock (lock owner + lock stateid) already exists */
3997 status = nfs4_preprocess_seqid_op(cstate,
3998 lock->lk_old_lock_seqid,
3999 &lock->lk_old_lock_stateid,
4000 NFS4_LOCK_STID, &lock_stp);
4001 if (status)
4002 goto out;
4003 lock_sop = lockowner(lock_stp->st_stateowner);
4004 fp = lock_stp->st_file;
4005 }
4006 /* lock_sop and lock_stp have been created or found */
4007
4008 lkflg = setlkflg(lock->lk_type);
4009 status = nfs4_check_openmode(lock_stp, lkflg);
4010 if (status)
4011 goto out;
4012
4013 status = nfserr_grace;
4014 if (locks_in_grace() && !lock->lk_reclaim)
4015 goto out;
4016 status = nfserr_no_grace;
4017 if (!locks_in_grace() && lock->lk_reclaim)
4018 goto out;
4019
4020 locks_init_lock(&file_lock);
4021 switch (lock->lk_type) {
4022 case NFS4_READ_LT:
4023 case NFS4_READW_LT:
4024 filp = find_readable_file(lock_stp->st_file);
4025 if (filp)
4026 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
4027 file_lock.fl_type = F_RDLCK;
4028 break;
4029 case NFS4_WRITE_LT:
4030 case NFS4_WRITEW_LT:
4031 filp = find_writeable_file(lock_stp->st_file);
4032 if (filp)
4033 get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
4034 file_lock.fl_type = F_WRLCK;
4035 break;
4036 default:
4037 status = nfserr_inval;
4038 goto out;
4039 }
4040 if (!filp) {
4041 status = nfserr_openmode;
4042 goto out;
4043 }
4044 file_lock.fl_owner = (fl_owner_t)lock_sop;
4045 file_lock.fl_pid = current->tgid;
4046 file_lock.fl_file = filp;
4047 file_lock.fl_flags = FL_POSIX;
4048 file_lock.fl_lmops = &nfsd_posix_mng_ops;
4049
4050 file_lock.fl_start = lock->lk_offset;
4051 file_lock.fl_end = last_byte_offset(lock->lk_offset, lock->lk_length);
4052 nfs4_transform_lock_offset(&file_lock);
4053
4054 /*
4055 * Try to lock the file in the VFS.
4056 * Note: locks.c uses the BKL to protect the inode's lock list.
4057 */
4058
4059 err = vfs_lock_file(filp, F_SETLK, &file_lock, &conflock);
4060 switch (-err) {
4061 case 0: /* success! */
4062 update_stateid(&lock_stp->st_stid.sc_stateid);
4063 memcpy(&lock->lk_resp_stateid, &lock_stp->st_stid.sc_stateid,
4064 sizeof(stateid_t));
4065 status = 0;
4066 break;
4067 case (EAGAIN): /* conflock holds conflicting lock */
4068 status = nfserr_denied;
4069 dprintk("NFSD: nfsd4_lock: conflicting lock found!\n");
4070 nfs4_set_lock_denied(&conflock, &lock->lk_denied);
4071 break;
4072 case (EDEADLK):
4073 status = nfserr_deadlock;
4074 break;
4075 default:
4076 dprintk("NFSD: nfsd4_lock: vfs_lock_file() failed! status %d\n",err);
4077 status = nfserrno(err);
4078 break;
4079 }
4080 out:
4081 if (status && lock->lk_is_new && lock_sop)
4082 release_lockowner(lock_sop);
4083 if (!cstate->replay_owner)
4084 nfs4_unlock_state();
4085 return status;
4086 }
4087
4088 /*
4089 * The NFSv4 spec allows a client to do a LOCKT without holding an OPEN,
4090 * so we do a temporary open here just to get an open file to pass to
4091 * vfs_test_lock. (Arguably perhaps test_lock should be done with an
4092 * inode operation.)
4093 */
4094 static int nfsd_test_lock(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file_lock *lock)
4095 {
4096 struct file *file;
4097 int err;
4098
4099 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
4100 if (err)
4101 return err;
4102 err = vfs_test_lock(file, lock);
4103 nfsd_close(file);
4104 return err;
4105 }
4106
4107 /*
4108 * LOCKT operation
4109 */
4110 __be32
4111 nfsd4_lockt(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4112 struct nfsd4_lockt *lockt)
4113 {
4114 struct inode *inode;
4115 struct file_lock file_lock;
4116 struct nfs4_lockowner *lo;
4117 int error;
4118 __be32 status;
4119
4120 if (locks_in_grace())
4121 return nfserr_grace;
4122
4123 if (check_lock_length(lockt->lt_offset, lockt->lt_length))
4124 return nfserr_inval;
4125
4126 nfs4_lock_state();
4127
4128 status = nfserr_stale_clientid;
4129 if (!nfsd4_has_session(cstate) && STALE_CLIENTID(&lockt->lt_clientid))
4130 goto out;
4131
4132 if ((status = fh_verify(rqstp, &cstate->current_fh, S_IFREG, 0)))
4133 goto out;
4134
4135 inode = cstate->current_fh.fh_dentry->d_inode;
4136 locks_init_lock(&file_lock);
4137 switch (lockt->lt_type) {
4138 case NFS4_READ_LT:
4139 case NFS4_READW_LT:
4140 file_lock.fl_type = F_RDLCK;
4141 break;
4142 case NFS4_WRITE_LT:
4143 case NFS4_WRITEW_LT:
4144 file_lock.fl_type = F_WRLCK;
4145 break;
4146 default:
4147 dprintk("NFSD: nfs4_lockt: bad lock type!\n");
4148 status = nfserr_inval;
4149 goto out;
4150 }
4151
4152 lo = find_lockowner_str(inode, &lockt->lt_clientid, &lockt->lt_owner);
4153 if (lo)
4154 file_lock.fl_owner = (fl_owner_t)lo;
4155 file_lock.fl_pid = current->tgid;
4156 file_lock.fl_flags = FL_POSIX;
4157
4158 file_lock.fl_start = lockt->lt_offset;
4159 file_lock.fl_end = last_byte_offset(lockt->lt_offset, lockt->lt_length);
4160
4161 nfs4_transform_lock_offset(&file_lock);
4162
4163 status = nfs_ok;
4164 error = nfsd_test_lock(rqstp, &cstate->current_fh, &file_lock);
4165 if (error) {
4166 status = nfserrno(error);
4167 goto out;
4168 }
4169 if (file_lock.fl_type != F_UNLCK) {
4170 status = nfserr_denied;
4171 nfs4_set_lock_denied(&file_lock, &lockt->lt_denied);
4172 }
4173 out:
4174 nfs4_unlock_state();
4175 return status;
4176 }
4177
4178 __be32
4179 nfsd4_locku(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
4180 struct nfsd4_locku *locku)
4181 {
4182 struct nfs4_ol_stateid *stp;
4183 struct file *filp = NULL;
4184 struct file_lock file_lock;
4185 __be32 status;
4186 int err;
4187
4188 dprintk("NFSD: nfsd4_locku: start=%Ld length=%Ld\n",
4189 (long long) locku->lu_offset,
4190 (long long) locku->lu_length);
4191
4192 if (check_lock_length(locku->lu_offset, locku->lu_length))
4193 return nfserr_inval;
4194
4195 nfs4_lock_state();
4196
4197 status = nfs4_preprocess_seqid_op(cstate, locku->lu_seqid,
4198 &locku->lu_stateid, NFS4_LOCK_STID, &stp);
4199 if (status)
4200 goto out;
4201 filp = find_any_file(stp->st_file);
4202 if (!filp) {
4203 status = nfserr_lock_range;
4204 goto out;
4205 }
4206 BUG_ON(!filp);
4207 locks_init_lock(&file_lock);
4208 file_lock.fl_type = F_UNLCK;
4209 file_lock.fl_owner = (fl_owner_t)lockowner(stp->st_stateowner);
4210 file_lock.fl_pid = current->tgid;
4211 file_lock.fl_file = filp;
4212 file_lock.fl_flags = FL_POSIX;
4213 file_lock.fl_lmops = &nfsd_posix_mng_ops;
4214 file_lock.fl_start = locku->lu_offset;
4215
4216 file_lock.fl_end = last_byte_offset(locku->lu_offset, locku->lu_length);
4217 nfs4_transform_lock_offset(&file_lock);
4218
4219 /*
4220 * Try to unlock the file in the VFS.
4221 */
4222 err = vfs_lock_file(filp, F_SETLK, &file_lock, NULL);
4223 if (err) {
4224 dprintk("NFSD: nfs4_locku: vfs_lock_file failed!\n");
4225 goto out_nfserr;
4226 }
4227 /*
4228 * OK, unlock succeeded; the only thing left to do is update the stateid.
4229 */
4230 update_stateid(&stp->st_stid.sc_stateid);
4231 memcpy(&locku->lu_stateid, &stp->st_stid.sc_stateid, sizeof(stateid_t));
4232
4233 out:
4234 nfs4_unlock_state();
4235 return status;
4236
4237 out_nfserr:
4238 status = nfserrno(err);
4239 goto out;
4240 }
4241
4242 /*
4243 * returns
4244 * 1: locks held by lockowner
4245 * 0: no locks held by lockowner
4246 */
4247 static int
4248 check_for_locks(struct nfs4_file *filp, struct nfs4_lockowner *lowner)
4249 {
4250 struct file_lock **flpp;
4251 struct inode *inode = filp->fi_inode;
4252 int status = 0;
4253
4254 lock_flocks();
4255 for (flpp = &inode->i_flock; *flpp != NULL; flpp = &(*flpp)->fl_next) {
4256 if ((*flpp)->fl_owner == (fl_owner_t)lowner) {
4257 status = 1;
4258 goto out;
4259 }
4260 }
4261 out:
4262 unlock_flocks();
4263 return status;
4264 }
4265
4266 __be32
4267 nfsd4_release_lockowner(struct svc_rqst *rqstp,
4268 struct nfsd4_compound_state *cstate,
4269 struct nfsd4_release_lockowner *rlockowner)
4270 {
4271 clientid_t *clid = &rlockowner->rl_clientid;
4272 struct nfs4_stateowner *sop;
4273 struct nfs4_lockowner *lo;
4274 struct nfs4_ol_stateid *stp;
4275 struct xdr_netobj *owner = &rlockowner->rl_owner;
4276 struct list_head matches;
4277 int i;
4278 __be32 status;
4279
4280 dprintk("nfsd4_release_lockowner clientid: (%08x/%08x):\n",
4281 clid->cl_boot, clid->cl_id);
4282
4283 /* XXX check for lease expiration */
4284
4285 status = nfserr_stale_clientid;
4286 if (STALE_CLIENTID(clid))
4287 return status;
4288
4289 nfs4_lock_state();
4290
4291 status = nfserr_locks_held;
4292 /* XXX: we're doing a linear search through all the lockowners.
4293 * Yipes! For now we'll just hope clients aren't really using
4294 * release_lockowner much, but eventually we have to fix these
4295 * data structures. */
4296 INIT_LIST_HEAD(&matches);
4297 for (i = 0; i < LOCK_HASH_SIZE; i++) {
4298 list_for_each_entry(sop, &lock_ownerid_hashtbl[i], so_idhash) {
4299 if (!same_owner_str(sop, owner, clid))
4300 continue;
4301 list_for_each_entry(stp, &sop->so_stateids,
4302 st_perstateowner) {
4303 lo = lockowner(sop);
4304 if (check_for_locks(stp->st_file, lo))
4305 goto out;
4306 list_add(&lo->lo_list, &matches);
4307 }
4308 }
4309 }
4310 /* Clients probably won't expect us to return with some (but not all)
4311 * of the lockowner state released; so don't release any until all
4312 * have been checked. */
4313 status = nfs_ok;
4314 while (!list_empty(&matches)) {
4315 lo = list_entry(matches.next, struct nfs4_lockowner,
4316 lo_list);
4317 /* unhash_stateowner deletes so_perclient only
4318 * for openowners. */
4319 list_del(&lo->lo_list);
4320 release_lockowner(lo);
4321 }
4322 out:
4323 nfs4_unlock_state();
4324 return status;
4325 }
4326
4327 static inline struct nfs4_client_reclaim *
4328 alloc_reclaim(void)
4329 {
4330 return kmalloc(sizeof(struct nfs4_client_reclaim), GFP_KERNEL);
4331 }
4332
4333 int
4334 nfs4_has_reclaimed_state(const char *name, bool use_exchange_id)
4335 {
4336 unsigned int strhashval = clientstr_hashval(name);
4337 struct nfs4_client *clp;
4338
4339 clp = find_confirmed_client_by_str(name, strhashval);
4340 return clp ? 1 : 0;
4341 }
4342
4343 /*
4344 * failure => all reset bets are off, nfserr_no_grace...
4345 */
4346 int
4347 nfs4_client_to_reclaim(const char *name)
4348 {
4349 unsigned int strhashval;
4350 struct nfs4_client_reclaim *crp = NULL;
4351
4352 dprintk("NFSD nfs4_client_to_reclaim NAME: %.*s\n", HEXDIR_LEN, name);
4353 crp = alloc_reclaim();
4354 if (!crp)
4355 return 0;
4356 strhashval = clientstr_hashval(name);
4357 INIT_LIST_HEAD(&crp->cr_strhash);
4358 list_add(&crp->cr_strhash, &reclaim_str_hashtbl[strhashval]);
4359 memcpy(crp->cr_recdir, name, HEXDIR_LEN);
4360 reclaim_str_hashtbl_size++;
4361 return 1;
4362 }
4363
4364 static void
4365 nfs4_release_reclaim(void)
4366 {
4367 struct nfs4_client_reclaim *crp = NULL;
4368 int i;
4369
4370 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4371 while (!list_empty(&reclaim_str_hashtbl[i])) {
4372 crp = list_entry(reclaim_str_hashtbl[i].next,
4373 struct nfs4_client_reclaim, cr_strhash);
4374 list_del(&crp->cr_strhash);
4375 kfree(crp);
4376 reclaim_str_hashtbl_size--;
4377 }
4378 }
4379 BUG_ON(reclaim_str_hashtbl_size);
4380 }
4381
4382 /*
4383 * called from OPEN, CLAIM_PREVIOUS with a new clientid. */
4384 static struct nfs4_client_reclaim *
4385 nfs4_find_reclaim_client(clientid_t *clid)
4386 {
4387 unsigned int strhashval;
4388 struct nfs4_client *clp;
4389 struct nfs4_client_reclaim *crp = NULL;
4390
4391
4392 /* find clientid in conf_id_hashtbl */
4393 clp = find_confirmed_client(clid);
4394 if (clp == NULL)
4395 return NULL;
4396
4397 dprintk("NFSD: nfs4_find_reclaim_client for %.*s with recdir %s\n",
4398 clp->cl_name.len, clp->cl_name.data,
4399 clp->cl_recdir);
4400
4401 /* find clp->cl_name in reclaim_str_hashtbl */
4402 strhashval = clientstr_hashval(clp->cl_recdir);
4403 list_for_each_entry(crp, &reclaim_str_hashtbl[strhashval], cr_strhash) {
4404 if (same_name(crp->cr_recdir, clp->cl_recdir)) {
4405 return crp;
4406 }
4407 }
4408 return NULL;
4409 }
4410
4411 /*
4412 * Called from OPEN. Look for clientid in reclaim list.
4413 */
4414 __be32
4415 nfs4_check_open_reclaim(clientid_t *clid)
4416 {
4417 return nfs4_find_reclaim_client(clid) ? nfs_ok : nfserr_reclaim_bad;
4418 }
4419
4420 /* initialization to perform at module load time: */
4421
4422 int
4423 nfs4_state_init(void)
4424 {
4425 int i, status;
4426
4427 status = nfsd4_init_slabs();
4428 if (status)
4429 return status;
4430 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4431 INIT_LIST_HEAD(&conf_id_hashtbl[i]);
4432 INIT_LIST_HEAD(&conf_str_hashtbl[i]);
4433 INIT_LIST_HEAD(&unconf_str_hashtbl[i]);
4434 INIT_LIST_HEAD(&unconf_id_hashtbl[i]);
4435 INIT_LIST_HEAD(&reclaim_str_hashtbl[i]);
4436 }
4437 for (i = 0; i < SESSION_HASH_SIZE; i++)
4438 INIT_LIST_HEAD(&sessionid_hashtbl[i]);
4439 for (i = 0; i < FILE_HASH_SIZE; i++) {
4440 INIT_LIST_HEAD(&file_hashtbl[i]);
4441 }
4442 for (i = 0; i < OPEN_OWNER_HASH_SIZE; i++) {
4443 INIT_LIST_HEAD(&open_ownerstr_hashtbl[i]);
4444 INIT_LIST_HEAD(&open_ownerid_hashtbl[i]);
4445 }
4446 for (i = 0; i < STATEID_HASH_SIZE; i++)
4447 INIT_LIST_HEAD(&stateid_hashtbl[i]);
4448 for (i = 0; i < LOCK_HASH_SIZE; i++) {
4449 INIT_LIST_HEAD(&lock_ownerid_hashtbl[i]);
4450 INIT_LIST_HEAD(&lock_ownerstr_hashtbl[i]);
4451 }
4452 memset(&onestateid, ~0, sizeof(stateid_t));
4453 INIT_LIST_HEAD(&close_lru);
4454 INIT_LIST_HEAD(&client_lru);
4455 INIT_LIST_HEAD(&del_recall_lru);
4456 reclaim_str_hashtbl_size = 0;
4457 return 0;
4458 }
4459
4460 static void
4461 nfsd4_load_reboot_recovery_data(void)
4462 {
4463 int status;
4464
4465 nfs4_lock_state();
4466 nfsd4_init_recdir();
4467 status = nfsd4_recdir_load();
4468 nfs4_unlock_state();
4469 if (status)
4470 printk("NFSD: Failure reading reboot recovery data\n");
4471 }
4472
4473 /*
4474 * Since the lifetime of a delegation isn't limited to that of an open, a
4475 * client may quite reasonably hang on to a delegation as long as it has
4476 * the inode cached. This becomes an obvious problem the first time a
4477 * client's inode cache approaches the size of the server's total memory.
4478 *
4479 * For now we avoid this problem by imposing a hard limit on the number
4480 * of delegations, which varies according to the server's memory size.
4481 */
4482 static void
4483 set_max_delegations(void)
4484 {
4485 /*
4486 * Allow at most 4 delegations per megabyte of RAM. Quick
4487 * estimates suggest that in the worst case (where every delegation
4488 * is for a different inode), a delegation could take about 1.5K,
4489 * giving a worst case usage of about 6% of memory.
4490 */
4491 max_delegations = nr_free_buffer_pages() >> (20 - 2 - PAGE_SHIFT);
4492 }
4493
4494 /* initialization to perform when the nfsd service is started: */
4495
4496 static int
4497 __nfs4_state_start(void)
4498 {
4499 int ret;
4500
4501 boot_time = get_seconds();
4502 locks_start_grace(&nfsd4_manager);
4503 printk(KERN_INFO "NFSD: starting %ld-second grace period\n",
4504 nfsd4_grace);
4505 ret = set_callback_cred();
4506 if (ret)
4507 return -ENOMEM;
4508 laundry_wq = create_singlethread_workqueue("nfsd4");
4509 if (laundry_wq == NULL)
4510 return -ENOMEM;
4511 ret = nfsd4_create_callback_queue();
4512 if (ret)
4513 goto out_free_laundry;
4514 queue_delayed_work(laundry_wq, &laundromat_work, nfsd4_grace * HZ);
4515 set_max_delegations();
4516 return 0;
4517 out_free_laundry:
4518 destroy_workqueue(laundry_wq);
4519 return ret;
4520 }
4521
4522 int
4523 nfs4_state_start(void)
4524 {
4525 nfsd4_load_reboot_recovery_data();
4526 return __nfs4_state_start();
4527 }
4528
4529 static void
4530 __nfs4_state_shutdown(void)
4531 {
4532 int i;
4533 struct nfs4_client *clp = NULL;
4534 struct nfs4_delegation *dp = NULL;
4535 struct list_head *pos, *next, reaplist;
4536
4537 for (i = 0; i < CLIENT_HASH_SIZE; i++) {
4538 while (!list_empty(&conf_id_hashtbl[i])) {
4539 clp = list_entry(conf_id_hashtbl[i].next, struct nfs4_client, cl_idhash);
4540 expire_client(clp);
4541 }
4542 while (!list_empty(&unconf_str_hashtbl[i])) {
4543 clp = list_entry(unconf_str_hashtbl[i].next, struct nfs4_client, cl_strhash);
4544 expire_client(clp);
4545 }
4546 }
4547 INIT_LIST_HEAD(&reaplist);
4548 spin_lock(&recall_lock);
4549 list_for_each_safe(pos, next, &del_recall_lru) {
4550 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4551 list_move(&dp->dl_recall_lru, &reaplist);
4552 }
4553 spin_unlock(&recall_lock);
4554 list_for_each_safe(pos, next, &reaplist) {
4555 dp = list_entry (pos, struct nfs4_delegation, dl_recall_lru);
4556 list_del_init(&dp->dl_recall_lru);
4557 unhash_delegation(dp);
4558 }
4559
4560 nfsd4_shutdown_recdir();
4561 }
4562
4563 void
4564 nfs4_state_shutdown(void)
4565 {
4566 cancel_delayed_work_sync(&laundromat_work);
4567 destroy_workqueue(laundry_wq);
4568 locks_end_grace(&nfsd4_manager);
4569 nfs4_lock_state();
4570 nfs4_release_reclaim();
4571 __nfs4_state_shutdown();
4572 nfs4_unlock_state();
4573 nfsd4_destroy_callback_queue();
4574 }
This page took 0.141163 seconds and 6 git commands to generate.