blob: eb44ec929ca115a5944b7dd8f380a79d3b057249 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/net/sunrpc/svc.c
3 *
4 * High-level RPC service routines
5 *
6 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
Greg Banksbfd24162006-10-02 02:18:01 -07007 *
8 * Multiple threads pools and NUMAisation
9 * Copyright (c) 2006 Silicon Graphics, Inc.
10 * by Greg Banks <gnb@melbourne.sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
13#include <linux/linkage.h>
14#include <linux/sched.h>
15#include <linux/errno.h>
16#include <linux/net.h>
17#include <linux/in.h>
18#include <linux/mm.h>
Greg Banksa7455442006-10-02 02:17:59 -070019#include <linux/interrupt.h>
20#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <linux/sunrpc/types.h>
23#include <linux/sunrpc/xdr.h>
24#include <linux/sunrpc/stats.h>
25#include <linux/sunrpc/svcsock.h>
26#include <linux/sunrpc/clnt.h>
27
28#define RPCDBG_FACILITY RPCDBG_SVCDSP
29#define RPC_PARANOIA 1
30
31/*
Greg Banksbfd24162006-10-02 02:18:01 -070032 * Mode for mapping cpus to pools.
33 */
34enum {
35 SVC_POOL_NONE = -1, /* uninitialised, choose one of the others */
36 SVC_POOL_GLOBAL, /* no mapping, just a single global pool
37 * (legacy & UP mode) */
38 SVC_POOL_PERCPU, /* one pool per cpu */
39 SVC_POOL_PERNODE /* one pool per numa node */
40};
41
42/*
43 * Structure for mapping cpus to pools and vice versa.
44 * Setup once during sunrpc initialisation.
45 */
46static struct svc_pool_map {
47 int mode; /* Note: int not enum to avoid
48 * warnings about "enumeration value
49 * not handled in switch" */
50 unsigned int npools;
51 unsigned int *pool_to; /* maps pool id to cpu or node */
52 unsigned int *to_pool; /* maps cpu or node to pool id */
53} svc_pool_map = {
54 .mode = SVC_POOL_NONE
55};
56
57
58/*
59 * Detect best pool mapping mode heuristically,
60 * according to the machine's topology.
61 */
62static int
63svc_pool_map_choose_mode(void)
64{
65 unsigned int node;
66
67 if (num_online_nodes() > 1) {
68 /*
69 * Actually have multiple NUMA nodes,
70 * so split pools on NUMA node boundaries
71 */
72 return SVC_POOL_PERNODE;
73 }
74
75 node = any_online_node(node_online_map);
76 if (nr_cpus_node(node) > 2) {
77 /*
78 * Non-trivial SMP, or CONFIG_NUMA on
79 * non-NUMA hardware, e.g. with a generic
80 * x86_64 kernel on Xeons. In this case we
81 * want to divide the pools on cpu boundaries.
82 */
83 return SVC_POOL_PERCPU;
84 }
85
86 /* default: one global pool */
87 return SVC_POOL_GLOBAL;
88}
89
90/*
91 * Allocate the to_pool[] and pool_to[] arrays.
92 * Returns 0 on success or an errno.
93 */
94static int
95svc_pool_map_alloc_arrays(struct svc_pool_map *m, unsigned int maxpools)
96{
97 m->to_pool = kcalloc(maxpools, sizeof(unsigned int), GFP_KERNEL);
98 if (!m->to_pool)
99 goto fail;
100 m->pool_to = kcalloc(maxpools, sizeof(unsigned int), GFP_KERNEL);
101 if (!m->pool_to)
102 goto fail_free;
103
104 return 0;
105
106fail_free:
107 kfree(m->to_pool);
108fail:
109 return -ENOMEM;
110}
111
112/*
113 * Initialise the pool map for SVC_POOL_PERCPU mode.
114 * Returns number of pools or <0 on error.
115 */
116static int
117svc_pool_map_init_percpu(struct svc_pool_map *m)
118{
119 unsigned int maxpools = highest_possible_processor_id()+1;
120 unsigned int pidx = 0;
121 unsigned int cpu;
122 int err;
123
124 err = svc_pool_map_alloc_arrays(m, maxpools);
125 if (err)
126 return err;
127
128 for_each_online_cpu(cpu) {
129 BUG_ON(pidx > maxpools);
130 m->to_pool[cpu] = pidx;
131 m->pool_to[pidx] = cpu;
132 pidx++;
133 }
134 /* cpus brought online later all get mapped to pool0, sorry */
135
136 return pidx;
137};
138
139
140/*
141 * Initialise the pool map for SVC_POOL_PERNODE mode.
142 * Returns number of pools or <0 on error.
143 */
144static int
145svc_pool_map_init_pernode(struct svc_pool_map *m)
146{
147 unsigned int maxpools = highest_possible_node_id()+1;
148 unsigned int pidx = 0;
149 unsigned int node;
150 int err;
151
152 err = svc_pool_map_alloc_arrays(m, maxpools);
153 if (err)
154 return err;
155
156 for_each_node_with_cpus(node) {
157 /* some architectures (e.g. SN2) have cpuless nodes */
158 BUG_ON(pidx > maxpools);
159 m->to_pool[node] = pidx;
160 m->pool_to[pidx] = node;
161 pidx++;
162 }
163 /* nodes brought online later all get mapped to pool0, sorry */
164
165 return pidx;
166}
167
168
169/*
170 * Build the global map of cpus to pools and vice versa.
171 */
172static unsigned int
173svc_pool_map_init(void)
174{
175 struct svc_pool_map *m = &svc_pool_map;
176 int npools = -1;
177
178 if (m->mode != SVC_POOL_NONE)
179 return m->npools;
180
181 m->mode = svc_pool_map_choose_mode();
182
183 switch (m->mode) {
184 case SVC_POOL_PERCPU:
185 npools = svc_pool_map_init_percpu(m);
186 break;
187 case SVC_POOL_PERNODE:
188 npools = svc_pool_map_init_pernode(m);
189 break;
190 }
191
192 if (npools < 0) {
193 /* default, or memory allocation failure */
194 npools = 1;
195 m->mode = SVC_POOL_GLOBAL;
196 }
197 m->npools = npools;
198
199 return m->npools;
200}
201
202/*
203 * Set the current thread's cpus_allowed mask so that it
204 * will only run on cpus in the given pool.
205 *
206 * Returns 1 and fills in oldmask iff a cpumask was applied.
207 */
208static inline int
209svc_pool_map_set_cpumask(unsigned int pidx, cpumask_t *oldmask)
210{
211 struct svc_pool_map *m = &svc_pool_map;
212 unsigned int node; /* or cpu */
213
214 /*
215 * The caller checks for sv_nrpools > 1, which
216 * implies that we've been initialized and the
217 * map mode is not NONE.
218 */
219 BUG_ON(m->mode == SVC_POOL_NONE);
220
221 switch (m->mode)
222 {
223 default:
224 return 0;
225 case SVC_POOL_PERCPU:
226 node = m->pool_to[pidx];
227 *oldmask = current->cpus_allowed;
228 set_cpus_allowed(current, cpumask_of_cpu(node));
229 return 1;
230 case SVC_POOL_PERNODE:
231 node = m->pool_to[pidx];
232 *oldmask = current->cpus_allowed;
233 set_cpus_allowed(current, node_to_cpumask(node));
234 return 1;
235 }
236}
237
238/*
239 * Use the mapping mode to choose a pool for a given CPU.
240 * Used when enqueueing an incoming RPC. Always returns
241 * a non-NULL pool pointer.
242 */
243struct svc_pool *
244svc_pool_for_cpu(struct svc_serv *serv, int cpu)
245{
246 struct svc_pool_map *m = &svc_pool_map;
247 unsigned int pidx = 0;
248
249 /*
250 * SVC_POOL_NONE happens in a pure client when
251 * lockd is brought up, so silently treat it the
252 * same as SVC_POOL_GLOBAL.
253 */
254
255 switch (m->mode) {
256 case SVC_POOL_PERCPU:
257 pidx = m->to_pool[cpu];
258 break;
259 case SVC_POOL_PERNODE:
260 pidx = m->to_pool[cpu_to_node(cpu)];
261 break;
262 }
263 return &serv->sv_pools[pidx % serv->sv_nrpools];
264}
265
266
267/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 * Create an RPC service
269 */
Greg Banksa7455442006-10-02 02:17:59 -0700270static struct svc_serv *
271__svc_create(struct svc_program *prog, unsigned int bufsize, int npools,
NeilBrownbc591cc2006-10-02 02:17:44 -0700272 void (*shutdown)(struct svc_serv *serv))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
274 struct svc_serv *serv;
275 int vers;
276 unsigned int xdrsize;
Greg Banks3262c812006-10-02 02:17:58 -0700277 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700279 if (!(serv = kzalloc(sizeof(*serv), GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return NULL;
Andreas Gruenbacher9ba02632005-06-22 17:16:24 +0000281 serv->sv_name = prog->pg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 serv->sv_program = prog;
283 serv->sv_nrthreads = 1;
284 serv->sv_stats = prog->pg_stats;
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700285 if (bufsize > RPCSVC_MAXPAYLOAD)
286 bufsize = RPCSVC_MAXPAYLOAD;
287 serv->sv_max_payload = bufsize? bufsize : 4096;
288 serv->sv_max_mesg = roundup(serv->sv_max_payload + PAGE_SIZE, PAGE_SIZE);
NeilBrownbc591cc2006-10-02 02:17:44 -0700289 serv->sv_shutdown = shutdown;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 xdrsize = 0;
Andreas Gruenbacher9ba02632005-06-22 17:16:24 +0000291 while (prog) {
292 prog->pg_lovers = prog->pg_nvers-1;
293 for (vers=0; vers<prog->pg_nvers ; vers++)
294 if (prog->pg_vers[vers]) {
295 prog->pg_hivers = vers;
296 if (prog->pg_lovers > vers)
297 prog->pg_lovers = vers;
298 if (prog->pg_vers[vers]->vs_xdrsize > xdrsize)
299 xdrsize = prog->pg_vers[vers]->vs_xdrsize;
300 }
301 prog = prog->pg_next;
302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 serv->sv_xdrsize = xdrsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 INIT_LIST_HEAD(&serv->sv_tempsocks);
305 INIT_LIST_HEAD(&serv->sv_permsocks);
Greg Banks36bdfc82006-10-02 02:17:54 -0700306 init_timer(&serv->sv_temptimer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 spin_lock_init(&serv->sv_lock);
308
Greg Banksa7455442006-10-02 02:17:59 -0700309 serv->sv_nrpools = npools;
Greg Banks3262c812006-10-02 02:17:58 -0700310 serv->sv_pools =
311 kcalloc(sizeof(struct svc_pool), serv->sv_nrpools,
312 GFP_KERNEL);
313 if (!serv->sv_pools) {
314 kfree(serv);
315 return NULL;
316 }
317
318 for (i = 0; i < serv->sv_nrpools; i++) {
319 struct svc_pool *pool = &serv->sv_pools[i];
320
321 dprintk("initialising pool %u for %s\n",
322 i, serv->sv_name);
323
324 pool->sp_id = i;
325 INIT_LIST_HEAD(&pool->sp_threads);
326 INIT_LIST_HEAD(&pool->sp_sockets);
Greg Banksa7455442006-10-02 02:17:59 -0700327 INIT_LIST_HEAD(&pool->sp_all_threads);
Greg Banks3262c812006-10-02 02:17:58 -0700328 spin_lock_init(&pool->sp_lock);
329 }
330
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 /* Remove any stale portmap registrations */
333 svc_register(serv, 0, 0);
334
335 return serv;
336}
337
Greg Banksa7455442006-10-02 02:17:59 -0700338struct svc_serv *
339svc_create(struct svc_program *prog, unsigned int bufsize,
340 void (*shutdown)(struct svc_serv *serv))
341{
342 return __svc_create(prog, bufsize, /*npools*/1, shutdown);
343}
344
345struct svc_serv *
346svc_create_pooled(struct svc_program *prog, unsigned int bufsize,
347 void (*shutdown)(struct svc_serv *serv),
348 svc_thread_fn func, int sig, struct module *mod)
349{
350 struct svc_serv *serv;
Greg Banksbfd24162006-10-02 02:18:01 -0700351 unsigned int npools = svc_pool_map_init();
Greg Banksa7455442006-10-02 02:17:59 -0700352
Greg Banksbfd24162006-10-02 02:18:01 -0700353 serv = __svc_create(prog, bufsize, npools, shutdown);
Greg Banksa7455442006-10-02 02:17:59 -0700354
355 if (serv != NULL) {
356 serv->sv_function = func;
357 serv->sv_kill_signal = sig;
358 serv->sv_module = mod;
359 }
360
361 return serv;
362}
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364/*
Greg Banks3262c812006-10-02 02:17:58 -0700365 * Destroy an RPC service. Should be called with the BKL held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 */
367void
368svc_destroy(struct svc_serv *serv)
369{
370 struct svc_sock *svsk;
371
372 dprintk("RPC: svc_destroy(%s, %d)\n",
373 serv->sv_program->pg_name,
374 serv->sv_nrthreads);
375
376 if (serv->sv_nrthreads) {
377 if (--(serv->sv_nrthreads) != 0) {
378 svc_sock_update_bufs(serv);
379 return;
380 }
381 } else
382 printk("svc_destroy: no threads for serv=%p!\n", serv);
383
Greg Banks36bdfc82006-10-02 02:17:54 -0700384 del_timer_sync(&serv->sv_temptimer);
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 while (!list_empty(&serv->sv_tempsocks)) {
387 svsk = list_entry(serv->sv_tempsocks.next,
388 struct svc_sock,
389 sk_list);
390 svc_delete_socket(svsk);
391 }
NeilBrownbc591cc2006-10-02 02:17:44 -0700392 if (serv->sv_shutdown)
393 serv->sv_shutdown(serv);
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 while (!list_empty(&serv->sv_permsocks)) {
396 svsk = list_entry(serv->sv_permsocks.next,
397 struct svc_sock,
398 sk_list);
399 svc_delete_socket(svsk);
400 }
401
402 cache_clean_deferred(serv);
403
404 /* Unregister service with the portmapper */
405 svc_register(serv, 0, 0);
Greg Banks3262c812006-10-02 02:17:58 -0700406 kfree(serv->sv_pools);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 kfree(serv);
408}
409
410/*
411 * Allocate an RPC server's buffer space.
412 * We allocate pages and place them in rq_argpages.
413 */
414static int
415svc_init_buffer(struct svc_rqst *rqstp, unsigned int size)
416{
417 int pages;
418 int arghi;
419
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700420 pages = size / PAGE_SIZE + 1; /* extra page as we hold both request and reply.
421 * We assume one is at most one page
422 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 arghi = 0;
Kris Katterjohn09a62662006-01-08 22:24:28 -0800424 BUG_ON(pages > RPCSVC_MAXPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 while (pages) {
426 struct page *p = alloc_page(GFP_KERNEL);
427 if (!p)
428 break;
NeilBrown44524352006-10-04 02:15:46 -0700429 rqstp->rq_pages[arghi++] = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 pages--;
431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return ! pages;
433}
434
435/*
436 * Release an RPC server buffer
437 */
438static void
439svc_release_buffer(struct svc_rqst *rqstp)
440{
NeilBrown44524352006-10-04 02:15:46 -0700441 int i;
442 for (i=0; i<ARRAY_SIZE(rqstp->rq_pages); i++)
443 if (rqstp->rq_pages[i])
444 put_page(rqstp->rq_pages[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
447/*
Greg Banks3262c812006-10-02 02:17:58 -0700448 * Create a thread in the given pool. Caller must hold BKL.
Greg Banksbfd24162006-10-02 02:18:01 -0700449 * On a NUMA or SMP machine, with a multi-pool serv, the thread
450 * will be restricted to run on the cpus belonging to the pool.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 */
Greg Banks3262c812006-10-02 02:17:58 -0700452static int
453__svc_create_thread(svc_thread_fn func, struct svc_serv *serv,
454 struct svc_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 struct svc_rqst *rqstp;
457 int error = -ENOMEM;
Greg Banksbfd24162006-10-02 02:18:01 -0700458 int have_oldmask = 0;
459 cpumask_t oldmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700461 rqstp = kzalloc(sizeof(*rqstp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (!rqstp)
463 goto out;
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 init_waitqueue_head(&rqstp->rq_wait);
466
Jesper Juhl12fe2c52006-01-10 13:08:21 -0800467 if (!(rqstp->rq_argp = kmalloc(serv->sv_xdrsize, GFP_KERNEL))
468 || !(rqstp->rq_resp = kmalloc(serv->sv_xdrsize, GFP_KERNEL))
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700469 || !svc_init_buffer(rqstp, serv->sv_max_mesg))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 goto out_thread;
471
472 serv->sv_nrthreads++;
Greg Banks3262c812006-10-02 02:17:58 -0700473 spin_lock_bh(&pool->sp_lock);
474 pool->sp_nrthreads++;
Greg Banksa7455442006-10-02 02:17:59 -0700475 list_add(&rqstp->rq_all, &pool->sp_all_threads);
Greg Banks3262c812006-10-02 02:17:58 -0700476 spin_unlock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 rqstp->rq_server = serv;
Greg Banks3262c812006-10-02 02:17:58 -0700478 rqstp->rq_pool = pool;
Greg Banksbfd24162006-10-02 02:18:01 -0700479
480 if (serv->sv_nrpools > 1)
481 have_oldmask = svc_pool_map_set_cpumask(pool->sp_id, &oldmask);
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 error = kernel_thread((int (*)(void *)) func, rqstp, 0);
Greg Banksbfd24162006-10-02 02:18:01 -0700484
485 if (have_oldmask)
486 set_cpus_allowed(current, oldmask);
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (error < 0)
489 goto out_thread;
490 svc_sock_update_bufs(serv);
491 error = 0;
492out:
493 return error;
494
495out_thread:
496 svc_exit_thread(rqstp);
497 goto out;
498}
499
500/*
Greg Banks3262c812006-10-02 02:17:58 -0700501 * Create a thread in the default pool. Caller must hold BKL.
502 */
503int
504svc_create_thread(svc_thread_fn func, struct svc_serv *serv)
505{
506 return __svc_create_thread(func, serv, &serv->sv_pools[0]);
507}
508
509/*
Greg Banksa7455442006-10-02 02:17:59 -0700510 * Choose a pool in which to create a new thread, for svc_set_num_threads
511 */
512static inline struct svc_pool *
513choose_pool(struct svc_serv *serv, struct svc_pool *pool, unsigned int *state)
514{
515 if (pool != NULL)
516 return pool;
517
518 return &serv->sv_pools[(*state)++ % serv->sv_nrpools];
519}
520
521/*
522 * Choose a thread to kill, for svc_set_num_threads
523 */
524static inline struct task_struct *
525choose_victim(struct svc_serv *serv, struct svc_pool *pool, unsigned int *state)
526{
527 unsigned int i;
528 struct task_struct *task = NULL;
529
530 if (pool != NULL) {
531 spin_lock_bh(&pool->sp_lock);
532 } else {
533 /* choose a pool in round-robin fashion */
534 for (i = 0; i < serv->sv_nrpools; i++) {
535 pool = &serv->sv_pools[--(*state) % serv->sv_nrpools];
536 spin_lock_bh(&pool->sp_lock);
537 if (!list_empty(&pool->sp_all_threads))
538 goto found_pool;
539 spin_unlock_bh(&pool->sp_lock);
540 }
541 return NULL;
542 }
543
544found_pool:
545 if (!list_empty(&pool->sp_all_threads)) {
546 struct svc_rqst *rqstp;
547
548 /*
549 * Remove from the pool->sp_all_threads list
550 * so we don't try to kill it again.
551 */
552 rqstp = list_entry(pool->sp_all_threads.next, struct svc_rqst, rq_all);
553 list_del_init(&rqstp->rq_all);
554 task = rqstp->rq_task;
555 }
556 spin_unlock_bh(&pool->sp_lock);
557
558 return task;
559}
560
561/*
562 * Create or destroy enough new threads to make the number
563 * of threads the given number. If `pool' is non-NULL, applies
564 * only to threads in that pool, otherwise round-robins between
565 * all pools. Must be called with a svc_get() reference and
566 * the BKL held.
567 *
568 * Destroying threads relies on the service threads filling in
569 * rqstp->rq_task, which only the nfs ones do. Assumes the serv
570 * has been created using svc_create_pooled().
571 *
572 * Based on code that used to be in nfsd_svc() but tweaked
573 * to be pool-aware.
574 */
575int
576svc_set_num_threads(struct svc_serv *serv, struct svc_pool *pool, int nrservs)
577{
578 struct task_struct *victim;
579 int error = 0;
580 unsigned int state = serv->sv_nrthreads-1;
581
582 if (pool == NULL) {
583 /* The -1 assumes caller has done a svc_get() */
584 nrservs -= (serv->sv_nrthreads-1);
585 } else {
586 spin_lock_bh(&pool->sp_lock);
587 nrservs -= pool->sp_nrthreads;
588 spin_unlock_bh(&pool->sp_lock);
589 }
590
591 /* create new threads */
592 while (nrservs > 0) {
593 nrservs--;
594 __module_get(serv->sv_module);
595 error = __svc_create_thread(serv->sv_function, serv,
596 choose_pool(serv, pool, &state));
597 if (error < 0) {
598 module_put(serv->sv_module);
599 break;
600 }
601 }
602 /* destroy old threads */
603 while (nrservs < 0 &&
604 (victim = choose_victim(serv, pool, &state)) != NULL) {
605 send_sig(serv->sv_kill_signal, victim, 1);
606 nrservs++;
607 }
608
609 return error;
610}
611
612/*
Greg Banks3262c812006-10-02 02:17:58 -0700613 * Called from a server thread as it's exiting. Caller must hold BKL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 */
615void
616svc_exit_thread(struct svc_rqst *rqstp)
617{
618 struct svc_serv *serv = rqstp->rq_server;
Greg Banks3262c812006-10-02 02:17:58 -0700619 struct svc_pool *pool = rqstp->rq_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 svc_release_buffer(rqstp);
Jesper Juhla51482b2005-11-08 09:41:34 -0800622 kfree(rqstp->rq_resp);
623 kfree(rqstp->rq_argp);
624 kfree(rqstp->rq_auth_data);
Greg Banks3262c812006-10-02 02:17:58 -0700625
626 spin_lock_bh(&pool->sp_lock);
627 pool->sp_nrthreads--;
Greg Banksa7455442006-10-02 02:17:59 -0700628 list_del(&rqstp->rq_all);
Greg Banks3262c812006-10-02 02:17:58 -0700629 spin_unlock_bh(&pool->sp_lock);
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 kfree(rqstp);
632
633 /* Release the server */
634 if (serv)
635 svc_destroy(serv);
636}
637
638/*
639 * Register an RPC service with the local portmapper.
640 * To unregister a service, call this routine with
641 * proto and port == 0.
642 */
643int
644svc_register(struct svc_serv *serv, int proto, unsigned short port)
645{
646 struct svc_program *progp;
647 unsigned long flags;
648 int i, error = 0, dummy;
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (!port)
651 clear_thread_flag(TIF_SIGPENDING);
652
Olaf Kirchbc5fea42006-10-04 02:16:05 -0700653 for (progp = serv->sv_program; progp; progp = progp->pg_next) {
654 for (i = 0; i < progp->pg_nvers; i++) {
655 if (progp->pg_vers[i] == NULL)
656 continue;
657
658 dprintk("RPC: svc_register(%s, %s, %d, %d)%s\n",
659 progp->pg_name,
660 proto == IPPROTO_UDP? "udp" : "tcp",
661 port,
662 i,
663 progp->pg_vers[i]->vs_hidden?
664 " (but not telling portmap)" : "");
665
666 if (progp->pg_vers[i]->vs_hidden)
667 continue;
668
669 error = rpc_register(progp->pg_prog, i, proto, port, &dummy);
670 if (error < 0)
671 break;
672 if (port && !dummy) {
673 error = -EACCES;
674 break;
675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
677 }
678
679 if (!port) {
680 spin_lock_irqsave(&current->sighand->siglock, flags);
681 recalc_sigpending();
682 spin_unlock_irqrestore(&current->sighand->siglock, flags);
683 }
684
685 return error;
686}
687
688/*
689 * Process the RPC request.
690 */
691int
NeilBrown6fb2b472006-10-02 02:17:50 -0700692svc_process(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
694 struct svc_program *progp;
695 struct svc_version *versp = NULL; /* compiler food */
696 struct svc_procedure *procp = NULL;
697 struct kvec * argv = &rqstp->rq_arg.head[0];
698 struct kvec * resv = &rqstp->rq_res.head[0];
NeilBrown6fb2b472006-10-02 02:17:50 -0700699 struct svc_serv *serv = rqstp->rq_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 kxdrproc_t xdr;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700701 __be32 *statp;
702 u32 dir, prog, vers, proc;
703 __be32 auth_stat, rpc_stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 int auth_res;
J.Bruce Fields8f8e05c2006-10-04 02:16:08 -0700705 __be32 *reply_statp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 rpc_stat = rpc_success;
708
709 if (argv->iov_len < 6*4)
710 goto err_short_len;
711
712 /* setup response xdr_buf.
713 * Initially it has just one page
714 */
NeilBrown44524352006-10-04 02:15:46 -0700715 rqstp->rq_resused = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 resv->iov_base = page_address(rqstp->rq_respages[0]);
717 resv->iov_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700718 rqstp->rq_res.pages = rqstp->rq_respages + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 rqstp->rq_res.len = 0;
720 rqstp->rq_res.page_base = 0;
721 rqstp->rq_res.page_len = 0;
Trond Myklebust334ccfd2005-06-22 17:16:19 +0000722 rqstp->rq_res.buflen = PAGE_SIZE;
J. Bruce Fields7c9fdcf2006-06-30 01:56:19 -0700723 rqstp->rq_res.tail[0].iov_base = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 rqstp->rq_res.tail[0].iov_len = 0;
J. Bruce Fields5c04c462006-06-30 01:56:19 -0700725 /* Will be turned off only in gss privacy case: */
726 rqstp->rq_sendfile_ok = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 /* tcp needs a space for the record length... */
728 if (rqstp->rq_prot == IPPROTO_TCP)
Alexey Dobriyan76994312006-09-26 22:28:46 -0700729 svc_putnl(resv, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 rqstp->rq_xid = svc_getu32(argv);
732 svc_putu32(resv, rqstp->rq_xid);
733
Alexey Dobriyan76994312006-09-26 22:28:46 -0700734 dir = svc_getnl(argv);
735 vers = svc_getnl(argv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 /* First words of reply: */
Alexey Dobriyan76994312006-09-26 22:28:46 -0700738 svc_putnl(resv, 1); /* REPLY */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 if (dir != 0) /* direction != CALL */
741 goto err_bad_dir;
742 if (vers != 2) /* RPC version number */
743 goto err_bad_rpc;
744
745 /* Save position in case we later decide to reject: */
J.Bruce Fields8f8e05c2006-10-04 02:16:08 -0700746 reply_statp = resv->iov_base + resv->iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Alexey Dobriyan76994312006-09-26 22:28:46 -0700748 svc_putnl(resv, 0); /* ACCEPT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Alexey Dobriyan76994312006-09-26 22:28:46 -0700750 rqstp->rq_prog = prog = svc_getnl(argv); /* program number */
751 rqstp->rq_vers = vers = svc_getnl(argv); /* version number */
752 rqstp->rq_proc = proc = svc_getnl(argv); /* procedure number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 progp = serv->sv_program;
NeilBrown80d188a2005-11-07 01:00:27 -0800755
756 for (progp = serv->sv_program; progp; progp = progp->pg_next)
757 if (prog == progp->pg_prog)
758 break;
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /*
761 * Decode auth data, and add verifier to reply buffer.
762 * We do this before anything else in order to get a decent
763 * auth verifier.
764 */
765 auth_res = svc_authenticate(rqstp, &auth_stat);
766 /* Also give the program a chance to reject this call: */
NeilBrown80d188a2005-11-07 01:00:27 -0800767 if (auth_res == SVC_OK && progp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 auth_stat = rpc_autherr_badcred;
769 auth_res = progp->pg_authenticate(rqstp);
770 }
771 switch (auth_res) {
772 case SVC_OK:
773 break;
774 case SVC_GARBAGE:
775 rpc_stat = rpc_garbage_args;
776 goto err_bad;
777 case SVC_SYSERR:
778 rpc_stat = rpc_system_err;
779 goto err_bad;
780 case SVC_DENIED:
781 goto err_bad_auth;
782 case SVC_DROP:
783 goto dropit;
784 case SVC_COMPLETE:
785 goto sendit;
786 }
NeilBrown80d188a2005-11-07 01:00:27 -0800787
Andreas Gruenbacher9ba02632005-06-22 17:16:24 +0000788 if (progp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 goto err_bad_prog;
790
791 if (vers >= progp->pg_nvers ||
792 !(versp = progp->pg_vers[vers]))
793 goto err_bad_vers;
794
795 procp = versp->vs_proc + proc;
796 if (proc >= versp->vs_nproc || !procp->pc_func)
797 goto err_bad_proc;
798 rqstp->rq_server = serv;
799 rqstp->rq_procinfo = procp;
800
801 /* Syntactic check complete */
802 serv->sv_stats->rpccnt++;
803
804 /* Build the reply header. */
805 statp = resv->iov_base +resv->iov_len;
Alexey Dobriyan76994312006-09-26 22:28:46 -0700806 svc_putnl(resv, RPC_SUCCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 /* Bump per-procedure stats counter */
809 procp->pc_count++;
810
811 /* Initialize storage for argp and resp */
812 memset(rqstp->rq_argp, 0, procp->pc_argsize);
813 memset(rqstp->rq_resp, 0, procp->pc_ressize);
814
815 /* un-reserve some of the out-queue now that we have a
816 * better idea of reply size
817 */
818 if (procp->pc_xdrressize)
819 svc_reserve(rqstp, procp->pc_xdrressize<<2);
820
821 /* Call the function that processes the request. */
822 if (!versp->vs_dispatch) {
823 /* Decode arguments */
824 xdr = procp->pc_decode;
825 if (xdr && !xdr(rqstp, argv->iov_base, rqstp->rq_argp))
826 goto err_garbage;
827
828 *statp = procp->pc_func(rqstp, rqstp->rq_argp, rqstp->rq_resp);
829
830 /* Encode reply */
NeilBrownd343fce2006-10-17 00:10:18 -0700831 if (*statp == rpc_drop_reply) {
832 if (procp->pc_release)
833 procp->pc_release(rqstp, NULL, rqstp->rq_resp);
834 goto dropit;
835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (*statp == rpc_success && (xdr = procp->pc_encode)
837 && !xdr(rqstp, resv->iov_base+resv->iov_len, rqstp->rq_resp)) {
838 dprintk("svc: failed to encode reply\n");
839 /* serv->sv_stats->rpcsystemerr++; */
840 *statp = rpc_system_err;
841 }
842 } else {
843 dprintk("svc: calling dispatcher\n");
844 if (!versp->vs_dispatch(rqstp, statp)) {
845 /* Release reply info */
846 if (procp->pc_release)
847 procp->pc_release(rqstp, NULL, rqstp->rq_resp);
848 goto dropit;
849 }
850 }
851
852 /* Check RPC status result */
853 if (*statp != rpc_success)
854 resv->iov_len = ((void*)statp) - resv->iov_base + 4;
855
856 /* Release reply info */
857 if (procp->pc_release)
858 procp->pc_release(rqstp, NULL, rqstp->rq_resp);
859
860 if (procp->pc_encode == NULL)
861 goto dropit;
862
863 sendit:
864 if (svc_authorise(rqstp))
865 goto dropit;
866 return svc_send(rqstp);
867
868 dropit:
869 svc_authorise(rqstp); /* doesn't hurt to call this twice */
870 dprintk("svc: svc_process dropit\n");
871 svc_drop(rqstp);
872 return 0;
873
874err_short_len:
875#ifdef RPC_PARANOIA
876 printk("svc: short len %Zd, dropping request\n", argv->iov_len);
877#endif
878 goto dropit; /* drop request */
879
880err_bad_dir:
881#ifdef RPC_PARANOIA
882 printk("svc: bad direction %d, dropping request\n", dir);
883#endif
884 serv->sv_stats->rpcbadfmt++;
885 goto dropit; /* drop request */
886
887err_bad_rpc:
888 serv->sv_stats->rpcbadfmt++;
Alexey Dobriyan76994312006-09-26 22:28:46 -0700889 svc_putnl(resv, 1); /* REJECT */
890 svc_putnl(resv, 0); /* RPC_MISMATCH */
891 svc_putnl(resv, 2); /* Only RPCv2 supported */
892 svc_putnl(resv, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 goto sendit;
894
895err_bad_auth:
896 dprintk("svc: authentication failed (%d)\n", ntohl(auth_stat));
897 serv->sv_stats->rpcbadauth++;
898 /* Restore write pointer to location of accept status: */
J.Bruce Fields8f8e05c2006-10-04 02:16:08 -0700899 xdr_ressize_check(rqstp, reply_statp);
Alexey Dobriyan76994312006-09-26 22:28:46 -0700900 svc_putnl(resv, 1); /* REJECT */
901 svc_putnl(resv, 1); /* AUTH_ERROR */
902 svc_putnl(resv, ntohl(auth_stat)); /* status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 goto sendit;
904
905err_bad_prog:
Andreas Gruenbacher9ba02632005-06-22 17:16:24 +0000906 dprintk("svc: unknown program %d\n", prog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 serv->sv_stats->rpcbadfmt++;
Alexey Dobriyan76994312006-09-26 22:28:46 -0700908 svc_putnl(resv, RPC_PROG_UNAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 goto sendit;
910
911err_bad_vers:
912#ifdef RPC_PARANOIA
913 printk("svc: unknown version (%d)\n", vers);
914#endif
915 serv->sv_stats->rpcbadfmt++;
Alexey Dobriyan76994312006-09-26 22:28:46 -0700916 svc_putnl(resv, RPC_PROG_MISMATCH);
917 svc_putnl(resv, progp->pg_lovers);
918 svc_putnl(resv, progp->pg_hivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 goto sendit;
920
921err_bad_proc:
922#ifdef RPC_PARANOIA
923 printk("svc: unknown procedure (%d)\n", proc);
924#endif
925 serv->sv_stats->rpcbadfmt++;
Alexey Dobriyan76994312006-09-26 22:28:46 -0700926 svc_putnl(resv, RPC_PROC_UNAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 goto sendit;
928
929err_garbage:
930#ifdef RPC_PARANOIA
931 printk("svc: failed to decode args\n");
932#endif
933 rpc_stat = rpc_garbage_args;
934err_bad:
935 serv->sv_stats->rpcbadfmt++;
Alexey Dobriyan76994312006-09-26 22:28:46 -0700936 svc_putnl(resv, ntohl(rpc_stat));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 goto sendit;
938}
Greg Banks7adae482006-10-04 02:15:47 -0700939
940/*
941 * Return (transport-specific) limit on the rpc payload.
942 */
943u32 svc_max_payload(const struct svc_rqst *rqstp)
944{
945 int max = RPCSVC_MAXPAYLOAD_TCP;
946
947 if (rqstp->rq_sock->sk_sock->type == SOCK_DGRAM)
948 max = RPCSVC_MAXPAYLOAD_UDP;
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700949 if (rqstp->rq_server->sv_max_payload < max)
950 max = rqstp->rq_server->sv_max_payload;
Greg Banks7adae482006-10-04 02:15:47 -0700951 return max;
952}
953EXPORT_SYMBOL_GPL(svc_max_payload);