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