]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - fs/nfsd/nfssvc.c
Merge remote-tracking branch 'md/for-next'
[karo-tx-linux.git] / fs / nfsd / nfssvc.c
1 /*
2  * Central processing for nfsd.
3  *
4  * Authors:     Olaf Kirch (okir@monad.swb.de)
5  *
6  * Copyright (C) 1995, 1996, 1997 Olaf Kirch <okir@monad.swb.de>
7  */
8
9 #include <linux/sched.h>
10 #include <linux/freezer.h>
11 #include <linux/module.h>
12 #include <linux/fs_struct.h>
13 #include <linux/swap.h>
14
15 #include <linux/sunrpc/stats.h>
16 #include <linux/sunrpc/svcsock.h>
17 #include <linux/lockd/bind.h>
18 #include <linux/nfsacl.h>
19 #include <linux/seq_file.h>
20 #include <net/net_namespace.h>
21 #include "nfsd.h"
22 #include "cache.h"
23 #include "vfs.h"
24 #include "netns.h"
25 #include "filecache.h"
26
27 #define NFSDDBG_FACILITY        NFSDDBG_SVC
28
29 extern struct svc_program       nfsd_program;
30 static int                      nfsd(void *vrqstp);
31
32 /*
33  * nfsd_mutex protects nn->nfsd_serv -- both the pointer itself and the members
34  * of the svc_serv struct. In particular, ->sv_nrthreads but also to some
35  * extent ->sv_temp_socks and ->sv_permsocks. It also protects nfsdstats.th_cnt
36  *
37  * If (out side the lock) nn->nfsd_serv is non-NULL, then it must point to a
38  * properly initialised 'struct svc_serv' with ->sv_nrthreads > 0. That number
39  * of nfsd threads must exist and each must listed in ->sp_all_threads in each
40  * entry of ->sv_pools[].
41  *
42  * Transitions of the thread count between zero and non-zero are of particular
43  * interest since the svc_serv needs to be created and initialized at that
44  * point, or freed.
45  *
46  * Finally, the nfsd_mutex also protects some of the global variables that are
47  * accessed when nfsd starts and that are settable via the write_* routines in
48  * nfsctl.c. In particular:
49  *
50  *      user_recovery_dirname
51  *      user_lease_time
52  *      nfsd_versions
53  */
54 DEFINE_MUTEX(nfsd_mutex);
55
56 /*
57  * nfsd_drc_lock protects nfsd_drc_max_pages and nfsd_drc_pages_used.
58  * nfsd_drc_max_pages limits the total amount of memory available for
59  * version 4.1 DRC caches.
60  * nfsd_drc_pages_used tracks the current version 4.1 DRC memory usage.
61  */
62 spinlock_t      nfsd_drc_lock;
63 unsigned long   nfsd_drc_max_mem;
64 unsigned long   nfsd_drc_mem_used;
65
66 #if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
67 static struct svc_stat  nfsd_acl_svcstats;
68 static struct svc_version *     nfsd_acl_version[] = {
69         [2] = &nfsd_acl_version2,
70         [3] = &nfsd_acl_version3,
71 };
72
73 #define NFSD_ACL_MINVERS            2
74 #define NFSD_ACL_NRVERS         ARRAY_SIZE(nfsd_acl_version)
75 static struct svc_version *nfsd_acl_versions[NFSD_ACL_NRVERS];
76
77 static struct svc_program       nfsd_acl_program = {
78         .pg_prog                = NFS_ACL_PROGRAM,
79         .pg_nvers               = NFSD_ACL_NRVERS,
80         .pg_vers                = nfsd_acl_versions,
81         .pg_name                = "nfsacl",
82         .pg_class               = "nfsd",
83         .pg_stats               = &nfsd_acl_svcstats,
84         .pg_authenticate        = &svc_set_client,
85 };
86
87 static struct svc_stat  nfsd_acl_svcstats = {
88         .program        = &nfsd_acl_program,
89 };
90 #endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */
91
92 static struct svc_version *     nfsd_version[] = {
93         [2] = &nfsd_version2,
94 #if defined(CONFIG_NFSD_V3)
95         [3] = &nfsd_version3,
96 #endif
97 #if defined(CONFIG_NFSD_V4)
98         [4] = &nfsd_version4,
99 #endif
100 };
101
102 #define NFSD_MINVERS            2
103 #define NFSD_NRVERS             ARRAY_SIZE(nfsd_version)
104 static struct svc_version *nfsd_versions[NFSD_NRVERS];
105
106 struct svc_program              nfsd_program = {
107 #if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
108         .pg_next                = &nfsd_acl_program,
109 #endif
110         .pg_prog                = NFS_PROGRAM,          /* program number */
111         .pg_nvers               = NFSD_NRVERS,          /* nr of entries in nfsd_version */
112         .pg_vers                = nfsd_versions,        /* version table */
113         .pg_name                = "nfsd",               /* program name */
114         .pg_class               = "nfsd",               /* authentication class */
115         .pg_stats               = &nfsd_svcstats,       /* version table */
116         .pg_authenticate        = &svc_set_client,      /* export authentication */
117
118 };
119
120 static bool nfsd_supported_minorversions[NFSD_SUPPORTED_MINOR_VERSION + 1] = {
121         [0] = 1,
122         [1] = 1,
123         [2] = 1,
124 };
125
126 int nfsd_vers(int vers, enum vers_op change)
127 {
128         if (vers < NFSD_MINVERS || vers >= NFSD_NRVERS)
129                 return 0;
130         switch(change) {
131         case NFSD_SET:
132                 nfsd_versions[vers] = nfsd_version[vers];
133 #if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
134                 if (vers < NFSD_ACL_NRVERS)
135                         nfsd_acl_versions[vers] = nfsd_acl_version[vers];
136 #endif
137                 break;
138         case NFSD_CLEAR:
139                 nfsd_versions[vers] = NULL;
140 #if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
141                 if (vers < NFSD_ACL_NRVERS)
142                         nfsd_acl_versions[vers] = NULL;
143 #endif
144                 break;
145         case NFSD_TEST:
146                 return nfsd_versions[vers] != NULL;
147         case NFSD_AVAIL:
148                 return nfsd_version[vers] != NULL;
149         }
150         return 0;
151 }
152
153 int nfsd_minorversion(u32 minorversion, enum vers_op change)
154 {
155         if (minorversion > NFSD_SUPPORTED_MINOR_VERSION)
156                 return -1;
157         switch(change) {
158         case NFSD_SET:
159                 nfsd_supported_minorversions[minorversion] = true;
160                 break;
161         case NFSD_CLEAR:
162                 nfsd_supported_minorversions[minorversion] = false;
163                 break;
164         case NFSD_TEST:
165                 return nfsd_supported_minorversions[minorversion];
166         case NFSD_AVAIL:
167                 return minorversion <= NFSD_SUPPORTED_MINOR_VERSION;
168         }
169         return 0;
170 }
171
172 /*
173  * Maximum number of nfsd processes
174  */
175 #define NFSD_MAXSERVS           8192
176
177 int nfsd_nrthreads(struct net *net)
178 {
179         int rv = 0;
180         struct nfsd_net *nn = net_generic(net, nfsd_net_id);
181
182         mutex_lock(&nfsd_mutex);
183         if (nn->nfsd_serv)
184                 rv = nn->nfsd_serv->sv_nrthreads;
185         mutex_unlock(&nfsd_mutex);
186         return rv;
187 }
188
189 static int nfsd_init_socks(struct net *net)
190 {
191         int error;
192         struct nfsd_net *nn = net_generic(net, nfsd_net_id);
193
194         if (!list_empty(&nn->nfsd_serv->sv_permsocks))
195                 return 0;
196
197         error = svc_create_xprt(nn->nfsd_serv, "udp", net, PF_INET, NFS_PORT,
198                                         SVC_SOCK_DEFAULTS);
199         if (error < 0)
200                 return error;
201
202         error = svc_create_xprt(nn->nfsd_serv, "tcp", net, PF_INET, NFS_PORT,
203                                         SVC_SOCK_DEFAULTS);
204         if (error < 0)
205                 return error;
206
207         return 0;
208 }
209
210 static int nfsd_users = 0;
211
212 static int nfsd_startup_generic(int nrservs)
213 {
214         int ret;
215
216         if (nfsd_users++)
217                 return 0;
218
219         ret = nfsd_file_cache_init();
220         if (ret)
221                 goto dec_users;
222
223         ret = nfs4_state_start();
224         if (ret)
225                 goto out_file_cache;
226         return 0;
227
228 out_file_cache:
229         nfsd_file_cache_shutdown();
230 dec_users:
231         nfsd_users--;
232         return ret;
233 }
234
235 static void nfsd_shutdown_generic(void)
236 {
237         if (--nfsd_users)
238                 return;
239
240         nfs4_state_shutdown();
241         nfsd_file_cache_shutdown();
242 }
243
244 static bool nfsd_needs_lockd(void)
245 {
246 #if defined(CONFIG_NFSD_V3)
247         return (nfsd_versions[2] != NULL) || (nfsd_versions[3] != NULL);
248 #else
249         return (nfsd_versions[2] != NULL);
250 #endif
251 }
252
253 static int nfsd_startup_net(int nrservs, struct net *net)
254 {
255         struct nfsd_net *nn = net_generic(net, nfsd_net_id);
256         int ret;
257
258         if (nn->nfsd_net_up)
259                 return 0;
260
261         ret = nfsd_startup_generic(nrservs);
262         if (ret)
263                 return ret;
264         ret = nfsd_init_socks(net);
265         if (ret)
266                 goto out_socks;
267
268         if (nfsd_needs_lockd() && !nn->lockd_up) {
269                 ret = lockd_up(net);
270                 if (ret)
271                         goto out_socks;
272                 nn->lockd_up = 1;
273         }
274
275         ret = nfs4_state_start_net(net);
276         if (ret)
277                 goto out_lockd;
278
279         nn->nfsd_net_up = true;
280         return 0;
281
282 out_lockd:
283         if (nn->lockd_up) {
284                 lockd_down(net);
285                 nn->lockd_up = 0;
286         }
287 out_socks:
288         nfsd_shutdown_generic();
289         return ret;
290 }
291
292 static void nfsd_shutdown_net(struct net *net)
293 {
294         struct nfsd_net *nn = net_generic(net, nfsd_net_id);
295
296         nfs4_state_shutdown_net(net);
297         if (nn->lockd_up) {
298                 lockd_down(net);
299                 nn->lockd_up = 0;
300         }
301         nn->nfsd_net_up = false;
302         nfsd_shutdown_generic();
303 }
304
305 static void nfsd_last_thread(struct svc_serv *serv, struct net *net)
306 {
307         struct nfsd_net *nn = net_generic(net, nfsd_net_id);
308
309         /*
310          * write_ports can create the server without actually starting
311          * any threads--if we get shut down before any threads are
312          * started, then nfsd_last_thread will be run before any of this
313          * other initialization has been done.
314          */
315         if (!nn->nfsd_net_up)
316                 return;
317         nfsd_shutdown_net(net);
318
319         svc_rpcb_cleanup(serv, net);
320
321         printk(KERN_WARNING "nfsd: last server has exited, flushing export "
322                             "cache\n");
323         nfsd_export_flush(net);
324 }
325
326 void nfsd_reset_versions(void)
327 {
328         int found_one = 0;
329         int i;
330
331         for (i = NFSD_MINVERS; i < NFSD_NRVERS; i++) {
332                 if (nfsd_program.pg_vers[i])
333                         found_one = 1;
334         }
335
336         if (!found_one) {
337                 for (i = NFSD_MINVERS; i < NFSD_NRVERS; i++)
338                         nfsd_program.pg_vers[i] = nfsd_version[i];
339 #if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
340                 for (i = NFSD_ACL_MINVERS; i < NFSD_ACL_NRVERS; i++)
341                         nfsd_acl_program.pg_vers[i] =
342                                 nfsd_acl_version[i];
343 #endif
344         }
345 }
346
347 /*
348  * Each session guarantees a negotiated per slot memory cache for replies
349  * which in turn consumes memory beyond the v2/v3/v4.0 server. A dedicated
350  * NFSv4.1 server might want to use more memory for a DRC than a machine
351  * with mutiple services.
352  *
353  * Impose a hard limit on the number of pages for the DRC which varies
354  * according to the machines free pages. This is of course only a default.
355  *
356  * For now this is a #defined shift which could be under admin control
357  * in the future.
358  */
359 static void set_max_drc(void)
360 {
361         #define NFSD_DRC_SIZE_SHIFT     10
362         nfsd_drc_max_mem = (nr_free_buffer_pages()
363                                         >> NFSD_DRC_SIZE_SHIFT) * PAGE_SIZE;
364         nfsd_drc_mem_used = 0;
365         spin_lock_init(&nfsd_drc_lock);
366         dprintk("%s nfsd_drc_max_mem %lu \n", __func__, nfsd_drc_max_mem);
367 }
368
369 static int nfsd_get_default_max_blksize(void)
370 {
371         struct sysinfo i;
372         unsigned long long target;
373         unsigned long ret;
374
375         si_meminfo(&i);
376         target = (i.totalram - i.totalhigh) << PAGE_SHIFT;
377         /*
378          * Aim for 1/4096 of memory per thread This gives 1MB on 4Gig
379          * machines, but only uses 32K on 128M machines.  Bottom out at
380          * 8K on 32M and smaller.  Of course, this is only a default.
381          */
382         target >>= 12;
383
384         ret = NFSSVC_MAXBLKSIZE;
385         while (ret > target && ret >= 8*1024*2)
386                 ret /= 2;
387         return ret;
388 }
389
390 static struct svc_serv_ops nfsd_thread_sv_ops = {
391         .svo_shutdown           = nfsd_last_thread,
392         .svo_function           = nfsd,
393         .svo_enqueue_xprt       = svc_xprt_do_enqueue,
394         .svo_setup              = svc_set_num_threads,
395         .svo_module             = THIS_MODULE,
396 };
397
398 int nfsd_create_serv(struct net *net)
399 {
400         int error;
401         struct nfsd_net *nn = net_generic(net, nfsd_net_id);
402
403         WARN_ON(!mutex_is_locked(&nfsd_mutex));
404         if (nn->nfsd_serv) {
405                 svc_get(nn->nfsd_serv);
406                 return 0;
407         }
408         if (nfsd_max_blksize == 0)
409                 nfsd_max_blksize = nfsd_get_default_max_blksize();
410         nfsd_reset_versions();
411         nn->nfsd_serv = svc_create_pooled(&nfsd_program, nfsd_max_blksize,
412                                                 &nfsd_thread_sv_ops);
413         if (nn->nfsd_serv == NULL)
414                 return -ENOMEM;
415
416         nn->nfsd_serv->sv_maxconn = nn->max_connections;
417         error = svc_bind(nn->nfsd_serv, net);
418         if (error < 0) {
419                 svc_destroy(nn->nfsd_serv);
420                 return error;
421         }
422
423         set_max_drc();
424         do_gettimeofday(&nn->nfssvc_boot);              /* record boot time */
425         return 0;
426 }
427
428 int nfsd_nrpools(struct net *net)
429 {
430         struct nfsd_net *nn = net_generic(net, nfsd_net_id);
431
432         if (nn->nfsd_serv == NULL)
433                 return 0;
434         else
435                 return nn->nfsd_serv->sv_nrpools;
436 }
437
438 int nfsd_get_nrthreads(int n, int *nthreads, struct net *net)
439 {
440         int i = 0;
441         struct nfsd_net *nn = net_generic(net, nfsd_net_id);
442
443         if (nn->nfsd_serv != NULL) {
444                 for (i = 0; i < nn->nfsd_serv->sv_nrpools && i < n; i++)
445                         nthreads[i] = nn->nfsd_serv->sv_pools[i].sp_nrthreads;
446         }
447
448         return 0;
449 }
450
451 void nfsd_destroy(struct net *net)
452 {
453         struct nfsd_net *nn = net_generic(net, nfsd_net_id);
454         int destroy = (nn->nfsd_serv->sv_nrthreads == 1);
455
456         if (destroy)
457                 svc_shutdown_net(nn->nfsd_serv, net);
458         svc_destroy(nn->nfsd_serv);
459         if (destroy)
460                 nn->nfsd_serv = NULL;
461 }
462
463 int nfsd_set_nrthreads(int n, int *nthreads, struct net *net)
464 {
465         int i = 0;
466         int tot = 0;
467         int err = 0;
468         struct nfsd_net *nn = net_generic(net, nfsd_net_id);
469
470         WARN_ON(!mutex_is_locked(&nfsd_mutex));
471
472         if (nn->nfsd_serv == NULL || n <= 0)
473                 return 0;
474
475         if (n > nn->nfsd_serv->sv_nrpools)
476                 n = nn->nfsd_serv->sv_nrpools;
477
478         /* enforce a global maximum number of threads */
479         tot = 0;
480         for (i = 0; i < n; i++) {
481                 nthreads[i] = min(nthreads[i], NFSD_MAXSERVS);
482                 tot += nthreads[i];
483         }
484         if (tot > NFSD_MAXSERVS) {
485                 /* total too large: scale down requested numbers */
486                 for (i = 0; i < n && tot > 0; i++) {
487                         int new = nthreads[i] * NFSD_MAXSERVS / tot;
488                         tot -= (nthreads[i] - new);
489                         nthreads[i] = new;
490                 }
491                 for (i = 0; i < n && tot > 0; i++) {
492                         nthreads[i]--;
493                         tot--;
494                 }
495         }
496
497         /*
498          * There must always be a thread in pool 0; the admin
499          * can't shut down NFS completely using pool_threads.
500          */
501         if (nthreads[0] == 0)
502                 nthreads[0] = 1;
503
504         /* apply the new numbers */
505         svc_get(nn->nfsd_serv);
506         for (i = 0; i < n; i++) {
507                 err = nn->nfsd_serv->sv_ops->svo_setup(nn->nfsd_serv,
508                                 &nn->nfsd_serv->sv_pools[i], nthreads[i]);
509                 if (err)
510                         break;
511         }
512         nfsd_destroy(net);
513         return err;
514 }
515
516 /*
517  * Adjust the number of threads and return the new number of threads.
518  * This is also the function that starts the server if necessary, if
519  * this is the first time nrservs is nonzero.
520  */
521 int
522 nfsd_svc(int nrservs, struct net *net)
523 {
524         int     error;
525         bool    nfsd_up_before;
526         struct nfsd_net *nn = net_generic(net, nfsd_net_id);
527
528         mutex_lock(&nfsd_mutex);
529         dprintk("nfsd: creating service\n");
530
531         nrservs = max(nrservs, 0);
532         nrservs = min(nrservs, NFSD_MAXSERVS);
533         error = 0;
534
535         if (nrservs == 0 && nn->nfsd_serv == NULL)
536                 goto out;
537
538         error = nfsd_create_serv(net);
539         if (error)
540                 goto out;
541
542         nfsd_up_before = nn->nfsd_net_up;
543
544         error = nfsd_startup_net(nrservs, net);
545         if (error)
546                 goto out_destroy;
547         error = nn->nfsd_serv->sv_ops->svo_setup(nn->nfsd_serv,
548                         NULL, nrservs);
549         if (error)
550                 goto out_shutdown;
551         /* We are holding a reference to nn->nfsd_serv which
552          * we don't want to count in the return value,
553          * so subtract 1
554          */
555         error = nn->nfsd_serv->sv_nrthreads - 1;
556 out_shutdown:
557         if (error < 0 && !nfsd_up_before)
558                 nfsd_shutdown_net(net);
559 out_destroy:
560         nfsd_destroy(net);              /* Release server */
561 out:
562         mutex_unlock(&nfsd_mutex);
563         return error;
564 }
565
566
567 /*
568  * This is the NFS server kernel thread
569  */
570 static int
571 nfsd(void *vrqstp)
572 {
573         struct svc_rqst *rqstp = (struct svc_rqst *) vrqstp;
574         struct svc_xprt *perm_sock = list_entry(rqstp->rq_server->sv_permsocks.next, typeof(struct svc_xprt), xpt_list);
575         struct net *net = perm_sock->xpt_net;
576         struct nfsd_net *nn = net_generic(net, nfsd_net_id);
577         int err;
578
579         /* Lock module and set up kernel thread */
580         mutex_lock(&nfsd_mutex);
581
582         /* At this point, the thread shares current->fs
583          * with the init process. We need to create files with a
584          * umask of 0 instead of init's umask. */
585         if (unshare_fs_struct() < 0) {
586                 printk("Unable to start nfsd thread: out of memory\n");
587                 goto out;
588         }
589
590         current->fs->umask = 0;
591
592         /*
593          * thread is spawned with all signals set to SIG_IGN, re-enable
594          * the ones that will bring down the thread
595          */
596         allow_signal(SIGKILL);
597         allow_signal(SIGHUP);
598         allow_signal(SIGINT);
599         allow_signal(SIGQUIT);
600
601         nfsdstats.th_cnt++;
602         mutex_unlock(&nfsd_mutex);
603
604         set_freezable();
605
606         /*
607          * The main request loop
608          */
609         for (;;) {
610                 /* Update sv_maxconn if it has changed */
611                 rqstp->rq_server->sv_maxconn = nn->max_connections;
612
613                 /*
614                  * Find a socket with data available and call its
615                  * recvfrom routine.
616                  */
617                 while ((err = svc_recv(rqstp, 60*60*HZ)) == -EAGAIN)
618                         ;
619                 if (err == -EINTR)
620                         break;
621                 validate_process_creds();
622                 svc_process(rqstp);
623                 validate_process_creds();
624         }
625
626         /* Clear signals before calling svc_exit_thread() */
627         flush_signals(current);
628
629         mutex_lock(&nfsd_mutex);
630         nfsdstats.th_cnt --;
631
632 out:
633         rqstp->rq_server = NULL;
634
635         /* Release the thread */
636         svc_exit_thread(rqstp);
637
638         nfsd_destroy(net);
639
640         /* Release module */
641         mutex_unlock(&nfsd_mutex);
642         module_put_and_exit(0);
643         return 0;
644 }
645
646 static __be32 map_new_errors(u32 vers, __be32 nfserr)
647 {
648         if (nfserr == nfserr_jukebox && vers == 2)
649                 return nfserr_dropit;
650         if (nfserr == nfserr_wrongsec && vers < 4)
651                 return nfserr_acces;
652         return nfserr;
653 }
654
655 int
656 nfsd_dispatch(struct svc_rqst *rqstp, __be32 *statp)
657 {
658         struct svc_procedure    *proc;
659         kxdrproc_t              xdr;
660         __be32                  nfserr;
661         __be32                  *nfserrp;
662
663         dprintk("nfsd_dispatch: vers %d proc %d\n",
664                                 rqstp->rq_vers, rqstp->rq_proc);
665         proc = rqstp->rq_procinfo;
666
667         /*
668          * Give the xdr decoder a chance to change this if it wants
669          * (necessary in the NFSv4.0 compound case)
670          */
671         rqstp->rq_cachetype = proc->pc_cachetype;
672         /* Decode arguments */
673         xdr = proc->pc_decode;
674         if (xdr && !xdr(rqstp, (__be32*)rqstp->rq_arg.head[0].iov_base,
675                         rqstp->rq_argp)) {
676                 dprintk("nfsd: failed to decode arguments!\n");
677                 *statp = rpc_garbage_args;
678                 return 1;
679         }
680
681         /* Check whether we have this call in the cache. */
682         switch (nfsd_cache_lookup(rqstp)) {
683         case RC_DROPIT:
684                 return 0;
685         case RC_REPLY:
686                 return 1;
687         case RC_DOIT:;
688                 /* do it */
689         }
690
691         /* need to grab the location to store the status, as
692          * nfsv4 does some encoding while processing 
693          */
694         nfserrp = rqstp->rq_res.head[0].iov_base
695                 + rqstp->rq_res.head[0].iov_len;
696         rqstp->rq_res.head[0].iov_len += sizeof(__be32);
697
698         /* Now call the procedure handler, and encode NFS status. */
699         nfserr = proc->pc_func(rqstp, rqstp->rq_argp, rqstp->rq_resp);
700         nfserr = map_new_errors(rqstp->rq_vers, nfserr);
701         if (nfserr == nfserr_dropit || test_bit(RQ_DROPME, &rqstp->rq_flags)) {
702                 dprintk("nfsd: Dropping request; may be revisited later\n");
703                 nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
704                 return 0;
705         }
706
707         if (rqstp->rq_proc != 0)
708                 *nfserrp++ = nfserr;
709
710         /* Encode result.
711          * For NFSv2, additional info is never returned in case of an error.
712          */
713         if (!(nfserr && rqstp->rq_vers == 2)) {
714                 xdr = proc->pc_encode;
715                 if (xdr && !xdr(rqstp, nfserrp,
716                                 rqstp->rq_resp)) {
717                         /* Failed to encode result. Release cache entry */
718                         dprintk("nfsd: failed to encode result!\n");
719                         nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
720                         *statp = rpc_system_err;
721                         return 1;
722                 }
723         }
724
725         /* Store reply in cache. */
726         nfsd_cache_update(rqstp, rqstp->rq_cachetype, statp + 1);
727         return 1;
728 }
729
730 int nfsd_pool_stats_open(struct inode *inode, struct file *file)
731 {
732         int ret;
733         struct nfsd_net *nn = net_generic(inode->i_sb->s_fs_info, nfsd_net_id);
734
735         mutex_lock(&nfsd_mutex);
736         if (nn->nfsd_serv == NULL) {
737                 mutex_unlock(&nfsd_mutex);
738                 return -ENODEV;
739         }
740         /* bump up the psudo refcount while traversing */
741         svc_get(nn->nfsd_serv);
742         ret = svc_pool_stats_open(nn->nfsd_serv, file);
743         mutex_unlock(&nfsd_mutex);
744         return ret;
745 }
746
747 int nfsd_pool_stats_release(struct inode *inode, struct file *file)
748 {
749         int ret = seq_release(inode, file);
750         struct net *net = inode->i_sb->s_fs_info;
751
752         mutex_lock(&nfsd_mutex);
753         /* this function really, really should have been called svc_put() */
754         nfsd_destroy(net);
755         mutex_unlock(&nfsd_mutex);
756         return ret;
757 }