]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/sunrpc/svc_xprt.c
svcrpc: don't leak contexts on PROC_DESTROY
[mirror_ubuntu-artful-kernel.git] / net / sunrpc / svc_xprt.c
CommitLineData
1d8206b9
TT
1/*
2 * linux/net/sunrpc/svc_xprt.c
3 *
4 * Author: Tom Tucker <tom@opengridcomputing.com>
5 */
6
7#include <linux/sched.h>
8#include <linux/errno.h>
1d8206b9 9#include <linux/freezer.h>
7086721f 10#include <linux/kthread.h>
5a0e3ad6 11#include <linux/slab.h>
1d8206b9 12#include <net/sock.h>
c3d4879e 13#include <linux/sunrpc/addr.h>
1d8206b9
TT
14#include <linux/sunrpc/stats.h>
15#include <linux/sunrpc/svc_xprt.h>
dcf1a357 16#include <linux/sunrpc/svcsock.h>
99de8ea9 17#include <linux/sunrpc/xprt.h>
3a9a231d 18#include <linux/module.h>
c3d4879e 19#include <linux/netdevice.h>
860a0d9e 20#include <trace/events/sunrpc.h>
1d8206b9
TT
21
22#define RPCDBG_FACILITY RPCDBG_SVCXPRT
23
ff3ac5c3
TM
24static unsigned int svc_rpc_per_connection_limit __read_mostly;
25module_param(svc_rpc_per_connection_limit, uint, 0644);
26
27
0f0257ea
TT
28static struct svc_deferred_req *svc_deferred_dequeue(struct svc_xprt *xprt);
29static int svc_deferred_recv(struct svc_rqst *rqstp);
30static struct cache_deferred_req *svc_defer(struct cache_req *req);
31static void svc_age_temp_xprts(unsigned long closure);
7710ec36 32static void svc_delete_xprt(struct svc_xprt *xprt);
0f0257ea
TT
33
34/* apparently the "standard" is that clients close
35 * idle connections after 5 minutes, servers after
36 * 6 minutes
37 * http://www.connectathon.org/talks96/nfstcp.pdf
38 */
39static int svc_conn_age_period = 6*60;
40
1d8206b9
TT
41/* List of registered transport classes */
42static DEFINE_SPINLOCK(svc_xprt_class_lock);
43static LIST_HEAD(svc_xprt_class_list);
44
0f0257ea
TT
45/* SMP locking strategy:
46 *
47 * svc_pool->sp_lock protects most of the fields of that pool.
48 * svc_serv->sv_lock protects sv_tempsocks, sv_permsocks, sv_tmpcnt.
49 * when both need to be taken (rare), svc_serv->sv_lock is first.
3c519914 50 * The "service mutex" protects svc_serv->sv_nrthread.
0f0257ea
TT
51 * svc_sock->sk_lock protects the svc_sock->sk_deferred list
52 * and the ->sk_info_authunix cache.
53 *
54 * The XPT_BUSY bit in xprt->xpt_flags prevents a transport being
55 * enqueued multiply. During normal transport processing this bit
56 * is set by svc_xprt_enqueue and cleared by svc_xprt_received.
57 * Providers should not manipulate this bit directly.
58 *
59 * Some flags can be set to certain values at any time
60 * providing that certain rules are followed:
61 *
62 * XPT_CONN, XPT_DATA:
63 * - Can be set or cleared at any time.
64 * - After a set, svc_xprt_enqueue must be called to enqueue
65 * the transport for processing.
66 * - After a clear, the transport must be read/accepted.
67 * If this succeeds, it must be set again.
68 * XPT_CLOSE:
69 * - Can set at any time. It is never cleared.
70 * XPT_DEAD:
71 * - Can only be set while XPT_BUSY is held which ensures
72 * that no other thread will be using the transport or will
73 * try to set XPT_DEAD.
74 */
1d8206b9
TT
75int svc_reg_xprt_class(struct svc_xprt_class *xcl)
76{
77 struct svc_xprt_class *cl;
78 int res = -EEXIST;
79
80 dprintk("svc: Adding svc transport class '%s'\n", xcl->xcl_name);
81
82 INIT_LIST_HEAD(&xcl->xcl_list);
83 spin_lock(&svc_xprt_class_lock);
84 /* Make sure there isn't already a class with the same name */
85 list_for_each_entry(cl, &svc_xprt_class_list, xcl_list) {
86 if (strcmp(xcl->xcl_name, cl->xcl_name) == 0)
87 goto out;
88 }
89 list_add_tail(&xcl->xcl_list, &svc_xprt_class_list);
90 res = 0;
91out:
92 spin_unlock(&svc_xprt_class_lock);
93 return res;
94}
95EXPORT_SYMBOL_GPL(svc_reg_xprt_class);
96
97void svc_unreg_xprt_class(struct svc_xprt_class *xcl)
98{
99 dprintk("svc: Removing svc transport class '%s'\n", xcl->xcl_name);
100 spin_lock(&svc_xprt_class_lock);
101 list_del_init(&xcl->xcl_list);
102 spin_unlock(&svc_xprt_class_lock);
103}
104EXPORT_SYMBOL_GPL(svc_unreg_xprt_class);
105
dc9a16e4
TT
106/*
107 * Format the transport list for printing
108 */
109int svc_print_xprts(char *buf, int maxlen)
110{
8f3a6de3 111 struct svc_xprt_class *xcl;
dc9a16e4
TT
112 char tmpstr[80];
113 int len = 0;
114 buf[0] = '\0';
115
116 spin_lock(&svc_xprt_class_lock);
8f3a6de3 117 list_for_each_entry(xcl, &svc_xprt_class_list, xcl_list) {
dc9a16e4 118 int slen;
dc9a16e4
TT
119
120 sprintf(tmpstr, "%s %d\n", xcl->xcl_name, xcl->xcl_max_payload);
121 slen = strlen(tmpstr);
122 if (len + slen > maxlen)
123 break;
124 len += slen;
125 strcat(buf, tmpstr);
126 }
127 spin_unlock(&svc_xprt_class_lock);
128
129 return len;
130}
131
e1b3157f
TT
132static void svc_xprt_free(struct kref *kref)
133{
134 struct svc_xprt *xprt =
135 container_of(kref, struct svc_xprt, xpt_ref);
136 struct module *owner = xprt->xpt_class->xcl_owner;
e3bfca01
PE
137 if (test_bit(XPT_CACHE_AUTH, &xprt->xpt_flags))
138 svcauth_unix_info_release(xprt);
4fb8518b 139 put_net(xprt->xpt_net);
99de8ea9
BF
140 /* See comment on corresponding get in xs_setup_bc_tcp(): */
141 if (xprt->xpt_bc_xprt)
142 xprt_put(xprt->xpt_bc_xprt);
39a9beab
BF
143 if (xprt->xpt_bc_xps)
144 xprt_switch_put(xprt->xpt_bc_xps);
e1b3157f
TT
145 xprt->xpt_ops->xpo_free(xprt);
146 module_put(owner);
147}
148
149void svc_xprt_put(struct svc_xprt *xprt)
150{
151 kref_put(&xprt->xpt_ref, svc_xprt_free);
152}
153EXPORT_SYMBOL_GPL(svc_xprt_put);
154
1d8206b9
TT
155/*
156 * Called by transport drivers to initialize the transport independent
157 * portion of the transport instance.
158 */
bd4620dd
SK
159void svc_xprt_init(struct net *net, struct svc_xprt_class *xcl,
160 struct svc_xprt *xprt, struct svc_serv *serv)
1d8206b9
TT
161{
162 memset(xprt, 0, sizeof(*xprt));
163 xprt->xpt_class = xcl;
164 xprt->xpt_ops = xcl->xcl_ops;
e1b3157f 165 kref_init(&xprt->xpt_ref);
bb5cf160 166 xprt->xpt_server = serv;
7a182083
TT
167 INIT_LIST_HEAD(&xprt->xpt_list);
168 INIT_LIST_HEAD(&xprt->xpt_ready);
8c7b0172 169 INIT_LIST_HEAD(&xprt->xpt_deferred);
edc7a894 170 INIT_LIST_HEAD(&xprt->xpt_users);
a50fea26 171 mutex_init(&xprt->xpt_mutex);
def13d74 172 spin_lock_init(&xprt->xpt_lock);
4e5caaa5 173 set_bit(XPT_BUSY, &xprt->xpt_flags);
4cfc7e60 174 rpc_init_wait_queue(&xprt->xpt_bc_pending, "xpt_bc_pending");
bd4620dd 175 xprt->xpt_net = get_net(net);
1d8206b9
TT
176}
177EXPORT_SYMBOL_GPL(svc_xprt_init);
b700cbb1 178
5dd248f6
CL
179static struct svc_xprt *__svc_xpo_create(struct svc_xprt_class *xcl,
180 struct svc_serv *serv,
62832c03 181 struct net *net,
9652ada3
CL
182 const int family,
183 const unsigned short port,
184 int flags)
b700cbb1 185{
b700cbb1
TT
186 struct sockaddr_in sin = {
187 .sin_family = AF_INET,
e6f1cebf 188 .sin_addr.s_addr = htonl(INADDR_ANY),
b700cbb1
TT
189 .sin_port = htons(port),
190 };
dfd56b8b 191#if IS_ENABLED(CONFIG_IPV6)
5dd248f6
CL
192 struct sockaddr_in6 sin6 = {
193 .sin6_family = AF_INET6,
194 .sin6_addr = IN6ADDR_ANY_INIT,
195 .sin6_port = htons(port),
196 };
dfd56b8b 197#endif
5dd248f6
CL
198 struct sockaddr *sap;
199 size_t len;
200
9652ada3
CL
201 switch (family) {
202 case PF_INET:
5dd248f6
CL
203 sap = (struct sockaddr *)&sin;
204 len = sizeof(sin);
205 break;
dfd56b8b 206#if IS_ENABLED(CONFIG_IPV6)
9652ada3 207 case PF_INET6:
5dd248f6
CL
208 sap = (struct sockaddr *)&sin6;
209 len = sizeof(sin6);
210 break;
dfd56b8b 211#endif
5dd248f6
CL
212 default:
213 return ERR_PTR(-EAFNOSUPPORT);
214 }
215
62832c03 216 return xcl->xcl_ops->xpo_create(serv, net, sap, len, flags);
5dd248f6
CL
217}
218
6741019c
BF
219/*
220 * svc_xprt_received conditionally queues the transport for processing
221 * by another thread. The caller must hold the XPT_BUSY bit and must
222 * not thereafter touch transport data.
223 *
224 * Note: XPT_DATA only gets cleared when a read-attempt finds no (or
225 * insufficient) data.
226 */
227static void svc_xprt_received(struct svc_xprt *xprt)
228{
acf06a7f
JL
229 if (!test_bit(XPT_BUSY, &xprt->xpt_flags)) {
230 WARN_ONCE(1, "xprt=0x%p already busy!", xprt);
ff1fdb9b 231 return;
acf06a7f
JL
232 }
233
6741019c 234 /* As soon as we clear busy, the xprt could be closed and
b9e13cdf 235 * 'put', so we need a reference to call svc_enqueue_xprt with:
6741019c
BF
236 */
237 svc_xprt_get(xprt);
0971374e 238 smp_mb__before_atomic();
6741019c 239 clear_bit(XPT_BUSY, &xprt->xpt_flags);
b9e13cdf 240 xprt->xpt_server->sv_ops->svo_enqueue_xprt(xprt);
6741019c
BF
241 svc_xprt_put(xprt);
242}
243
39b55301
BF
244void svc_add_new_perm_xprt(struct svc_serv *serv, struct svc_xprt *new)
245{
246 clear_bit(XPT_TEMP, &new->xpt_flags);
247 spin_lock_bh(&serv->sv_lock);
248 list_add(&new->xpt_list, &serv->sv_permsocks);
249 spin_unlock_bh(&serv->sv_lock);
250 svc_xprt_received(new);
251}
252
d96b9c93 253int _svc_create_xprt(struct svc_serv *serv, const char *xprt_name,
fc5d00b0
PE
254 struct net *net, const int family,
255 const unsigned short port, int flags)
5dd248f6
CL
256{
257 struct svc_xprt_class *xcl;
258
b700cbb1
TT
259 spin_lock(&svc_xprt_class_lock);
260 list_for_each_entry(xcl, &svc_xprt_class_list, xcl_list) {
4e5caaa5 261 struct svc_xprt *newxprt;
ed2849d3 262 unsigned short newport;
4e5caaa5
TT
263
264 if (strcmp(xprt_name, xcl->xcl_name))
265 continue;
266
267 if (!try_module_get(xcl->xcl_owner))
268 goto err;
269
270 spin_unlock(&svc_xprt_class_lock);
62832c03 271 newxprt = __svc_xpo_create(xcl, serv, net, family, port, flags);
4e5caaa5
TT
272 if (IS_ERR(newxprt)) {
273 module_put(xcl->xcl_owner);
274 return PTR_ERR(newxprt);
b700cbb1 275 }
39b55301 276 svc_add_new_perm_xprt(serv, newxprt);
ed2849d3 277 newport = svc_xprt_local_port(newxprt);
ed2849d3 278 return newport;
b700cbb1 279 }
4e5caaa5 280 err:
b700cbb1 281 spin_unlock(&svc_xprt_class_lock);
68717908
CL
282 /* This errno is exposed to user space. Provide a reasonable
283 * perror msg for a bad transport. */
284 return -EPROTONOSUPPORT;
b700cbb1 285}
d96b9c93
BF
286
287int svc_create_xprt(struct svc_serv *serv, const char *xprt_name,
288 struct net *net, const int family,
289 const unsigned short port, int flags)
290{
291 int err;
292
293 dprintk("svc: creating transport %s[%d]\n", xprt_name, port);
294 err = _svc_create_xprt(serv, xprt_name, net, family, port, flags);
295 if (err == -EPROTONOSUPPORT) {
296 request_module("svc%s", xprt_name);
297 err = _svc_create_xprt(serv, xprt_name, net, family, port, flags);
298 }
299 if (err)
300 dprintk("svc: transport %s not found, err %d\n",
301 xprt_name, err);
302 return err;
303}
b700cbb1 304EXPORT_SYMBOL_GPL(svc_create_xprt);
9dbc240f
TT
305
306/*
307 * Copy the local and remote xprt addresses to the rqstp structure
308 */
309void svc_xprt_copy_addrs(struct svc_rqst *rqstp, struct svc_xprt *xprt)
310{
9dbc240f
TT
311 memcpy(&rqstp->rq_addr, &xprt->xpt_remote, xprt->xpt_remotelen);
312 rqstp->rq_addrlen = xprt->xpt_remotelen;
313
314 /*
315 * Destination address in request is needed for binding the
316 * source address in RPC replies/callbacks later.
317 */
849a1cf1
MJ
318 memcpy(&rqstp->rq_daddr, &xprt->xpt_local, xprt->xpt_locallen);
319 rqstp->rq_daddrlen = xprt->xpt_locallen;
9dbc240f
TT
320}
321EXPORT_SYMBOL_GPL(svc_xprt_copy_addrs);
322
0f0257ea
TT
323/**
324 * svc_print_addr - Format rq_addr field for printing
325 * @rqstp: svc_rqst struct containing address to print
326 * @buf: target buffer for formatted address
327 * @len: length of target buffer
328 *
329 */
330char *svc_print_addr(struct svc_rqst *rqstp, char *buf, size_t len)
331{
332 return __svc_print_addr(svc_addr(rqstp), buf, len);
333}
334EXPORT_SYMBOL_GPL(svc_print_addr);
335
ff3ac5c3
TM
336static bool svc_xprt_slots_in_range(struct svc_xprt *xprt)
337{
338 unsigned int limit = svc_rpc_per_connection_limit;
339 int nrqsts = atomic_read(&xprt->xpt_nr_rqsts);
340
341 return limit == 0 || (nrqsts >= 0 && nrqsts < limit);
342}
343
344static bool svc_xprt_reserve_slot(struct svc_rqst *rqstp, struct svc_xprt *xprt)
345{
346 if (!test_bit(RQ_DATA, &rqstp->rq_flags)) {
347 if (!svc_xprt_slots_in_range(xprt))
348 return false;
349 atomic_inc(&xprt->xpt_nr_rqsts);
350 set_bit(RQ_DATA, &rqstp->rq_flags);
351 }
352 return true;
353}
354
355static void svc_xprt_release_slot(struct svc_rqst *rqstp)
356{
357 struct svc_xprt *xprt = rqstp->rq_xprt;
358 if (test_and_clear_bit(RQ_DATA, &rqstp->rq_flags)) {
359 atomic_dec(&xprt->xpt_nr_rqsts);
360 svc_xprt_enqueue(xprt);
361 }
362}
363
9c335c0b
BF
364static bool svc_xprt_has_something_to_do(struct svc_xprt *xprt)
365{
366 if (xprt->xpt_flags & ((1<<XPT_CONN)|(1<<XPT_CLOSE)))
367 return true;
82ea2d76 368 if (xprt->xpt_flags & ((1<<XPT_DATA)|(1<<XPT_DEFERRED))) {
ff3ac5c3
TM
369 if (xprt->xpt_ops->xpo_has_wspace(xprt) &&
370 svc_xprt_slots_in_range(xprt))
82ea2d76
TM
371 return true;
372 trace_svc_xprt_no_write_space(xprt);
373 return false;
374 }
9c335c0b
BF
375 return false;
376}
377
b9e13cdf 378void svc_xprt_do_enqueue(struct svc_xprt *xprt)
0f0257ea 379{
0f0257ea 380 struct svc_pool *pool;
83a712e0 381 struct svc_rqst *rqstp = NULL;
0f0257ea 382 int cpu;
b1691bc0 383 bool queued = false;
0f0257ea 384
9c335c0b 385 if (!svc_xprt_has_something_to_do(xprt))
83a712e0 386 goto out;
0f0257ea 387
0f0257ea
TT
388 /* Mark transport as busy. It will remain in this state until
389 * the provider calls svc_xprt_received. We update XPT_BUSY
390 * atomically because it also guards against trying to enqueue
391 * the transport twice.
392 */
393 if (test_and_set_bit(XPT_BUSY, &xprt->xpt_flags)) {
394 /* Don't enqueue transport while already enqueued */
395 dprintk("svc: transport %p busy, not enqueued\n", xprt);
83a712e0 396 goto out;
0f0257ea 397 }
0f0257ea 398
0c0746d0
TM
399 cpu = get_cpu();
400 pool = svc_pool_for_cpu(xprt->xpt_server, cpu);
0c0746d0 401
403c7b44 402 atomic_long_inc(&pool->sp_stats.packets);
0c0746d0 403
b1691bc0
JL
404redo_search:
405 /* find a thread for this xprt */
406 rcu_read_lock();
407 list_for_each_entry_rcu(rqstp, &pool->sp_all_threads, rq_all) {
408 /* Do a lockless check first */
409 if (test_bit(RQ_BUSY, &rqstp->rq_flags))
410 continue;
411
412 /*
413 * Once the xprt has been queued, it can only be dequeued by
414 * the task that intends to service it. All we can do at that
415 * point is to try to wake this thread back up so that it can
416 * do so.
983c6844 417 */
b1691bc0
JL
418 if (!queued) {
419 spin_lock_bh(&rqstp->rq_lock);
420 if (test_and_set_bit(RQ_BUSY, &rqstp->rq_flags)) {
421 /* already busy, move on... */
422 spin_unlock_bh(&rqstp->rq_lock);
423 continue;
424 }
425
426 /* this one will do */
427 rqstp->rq_xprt = xprt;
428 svc_xprt_get(xprt);
429 spin_unlock_bh(&rqstp->rq_lock);
430 }
431 rcu_read_unlock();
432
403c7b44 433 atomic_long_inc(&pool->sp_stats.threads_woken);
b1691bc0
JL
434 wake_up_process(rqstp->rq_task);
435 put_cpu();
83a712e0 436 goto out;
b1691bc0
JL
437 }
438 rcu_read_unlock();
439
440 /*
441 * We didn't find an idle thread to use, so we need to queue the xprt.
442 * Do so and then search again. If we find one, we can't hook this one
443 * up to it directly but we can wake the thread up in the hopes that it
444 * will pick it up once it searches for a xprt to service.
445 */
446 if (!queued) {
447 queued = true;
0f0257ea 448 dprintk("svc: transport %p put into queue\n", xprt);
b1691bc0 449 spin_lock_bh(&pool->sp_lock);
0f0257ea 450 list_add_tail(&xprt->xpt_ready, &pool->sp_sockets);
03cf6c9f 451 pool->sp_stats.sockets_queued++;
b1691bc0
JL
452 spin_unlock_bh(&pool->sp_lock);
453 goto redo_search;
0f0257ea 454 }
83a712e0 455 rqstp = NULL;
983c6844 456 put_cpu();
83a712e0
JL
457out:
458 trace_svc_xprt_do_enqueue(xprt, rqstp);
0f0257ea 459}
b9e13cdf 460EXPORT_SYMBOL_GPL(svc_xprt_do_enqueue);
0971374e
TM
461
462/*
463 * Queue up a transport with data pending. If there are idle nfsd
464 * processes, wake 'em up.
465 *
466 */
467void svc_xprt_enqueue(struct svc_xprt *xprt)
468{
469 if (test_bit(XPT_BUSY, &xprt->xpt_flags))
470 return;
b9e13cdf 471 xprt->xpt_server->sv_ops->svo_enqueue_xprt(xprt);
0971374e 472}
0f0257ea
TT
473EXPORT_SYMBOL_GPL(svc_xprt_enqueue);
474
475/*
b1691bc0 476 * Dequeue the first transport, if there is one.
0f0257ea
TT
477 */
478static struct svc_xprt *svc_xprt_dequeue(struct svc_pool *pool)
479{
b1691bc0 480 struct svc_xprt *xprt = NULL;
0f0257ea
TT
481
482 if (list_empty(&pool->sp_sockets))
83a712e0 483 goto out;
0f0257ea 484
b1691bc0
JL
485 spin_lock_bh(&pool->sp_lock);
486 if (likely(!list_empty(&pool->sp_sockets))) {
487 xprt = list_first_entry(&pool->sp_sockets,
488 struct svc_xprt, xpt_ready);
489 list_del_init(&xprt->xpt_ready);
490 svc_xprt_get(xprt);
0f0257ea 491
b1691bc0
JL
492 dprintk("svc: transport %p dequeued, inuse=%d\n",
493 xprt, atomic_read(&xprt->xpt_ref.refcount));
494 }
495 spin_unlock_bh(&pool->sp_lock);
83a712e0
JL
496out:
497 trace_svc_xprt_dequeue(xprt);
0f0257ea
TT
498 return xprt;
499}
500
0f0257ea
TT
501/**
502 * svc_reserve - change the space reserved for the reply to a request.
503 * @rqstp: The request in question
504 * @space: new max space to reserve
505 *
506 * Each request reserves some space on the output queue of the transport
507 * to make sure the reply fits. This function reduces that reserved
508 * space to be the amount of space used already, plus @space.
509 *
510 */
511void svc_reserve(struct svc_rqst *rqstp, int space)
512{
513 space += rqstp->rq_res.head[0].iov_len;
514
515 if (space < rqstp->rq_reserved) {
516 struct svc_xprt *xprt = rqstp->rq_xprt;
517 atomic_sub((rqstp->rq_reserved - space), &xprt->xpt_reserved);
518 rqstp->rq_reserved = space;
519
520 svc_xprt_enqueue(xprt);
521 }
522}
24c3767e 523EXPORT_SYMBOL_GPL(svc_reserve);
0f0257ea
TT
524
525static void svc_xprt_release(struct svc_rqst *rqstp)
526{
527 struct svc_xprt *xprt = rqstp->rq_xprt;
528
529 rqstp->rq_xprt->xpt_ops->xpo_release_rqst(rqstp);
530
2779e3ae
TT
531 kfree(rqstp->rq_deferred);
532 rqstp->rq_deferred = NULL;
533
0f0257ea
TT
534 svc_free_res_pages(rqstp);
535 rqstp->rq_res.page_len = 0;
536 rqstp->rq_res.page_base = 0;
537
538 /* Reset response buffer and release
539 * the reservation.
540 * But first, check that enough space was reserved
541 * for the reply, otherwise we have a bug!
542 */
543 if ((rqstp->rq_res.len) > rqstp->rq_reserved)
544 printk(KERN_ERR "RPC request reserved %d but used %d\n",
545 rqstp->rq_reserved,
546 rqstp->rq_res.len);
547
548 rqstp->rq_res.head[0].iov_len = 0;
549 svc_reserve(rqstp, 0);
ff3ac5c3 550 svc_xprt_release_slot(rqstp);
0f0257ea 551 rqstp->rq_xprt = NULL;
0f0257ea
TT
552 svc_xprt_put(xprt);
553}
554
555/*
ceff739c
JL
556 * Some svc_serv's will have occasional work to do, even when a xprt is not
557 * waiting to be serviced. This function is there to "kick" a task in one of
558 * those services so that it can wake up and do that work. Note that we only
559 * bother with pool 0 as we don't need to wake up more than one thread for
560 * this purpose.
0f0257ea
TT
561 */
562void svc_wake_up(struct svc_serv *serv)
563{
564 struct svc_rqst *rqstp;
0f0257ea
TT
565 struct svc_pool *pool;
566
ceff739c
JL
567 pool = &serv->sv_pools[0];
568
b1691bc0
JL
569 rcu_read_lock();
570 list_for_each_entry_rcu(rqstp, &pool->sp_all_threads, rq_all) {
571 /* skip any that aren't queued */
572 if (test_bit(RQ_BUSY, &rqstp->rq_flags))
573 continue;
574 rcu_read_unlock();
ceff739c
JL
575 dprintk("svc: daemon %p woken up.\n", rqstp);
576 wake_up_process(rqstp->rq_task);
83a712e0 577 trace_svc_wake_up(rqstp->rq_task->pid);
b1691bc0
JL
578 return;
579 }
580 rcu_read_unlock();
581
582 /* No free entries available */
583 set_bit(SP_TASK_PENDING, &pool->sp_flags);
584 smp_wmb();
83a712e0 585 trace_svc_wake_up(0);
0f0257ea 586}
24c3767e 587EXPORT_SYMBOL_GPL(svc_wake_up);
0f0257ea
TT
588
589int svc_port_is_privileged(struct sockaddr *sin)
590{
591 switch (sin->sa_family) {
592 case AF_INET:
593 return ntohs(((struct sockaddr_in *)sin)->sin_port)
594 < PROT_SOCK;
595 case AF_INET6:
596 return ntohs(((struct sockaddr_in6 *)sin)->sin6_port)
597 < PROT_SOCK;
598 default:
599 return 0;
600 }
601}
602
603/*
c9233eb7
JL
604 * Make sure that we don't have too many active connections. If we have,
605 * something must be dropped. It's not clear what will happen if we allow
606 * "too many" connections, but when dealing with network-facing software,
607 * we have to code defensively. Here we do that by imposing hard limits.
0f0257ea
TT
608 *
609 * There's no point in trying to do random drop here for DoS
610 * prevention. The NFS clients does 1 reconnect in 15 seconds. An
611 * attacker can easily beat that.
612 *
613 * The only somewhat efficient mechanism would be if drop old
614 * connections from the same IP first. But right now we don't even
615 * record the client IP in svc_sock.
c9233eb7
JL
616 *
617 * single-threaded services that expect a lot of clients will probably
618 * need to set sv_maxconn to override the default value which is based
619 * on the number of threads
0f0257ea
TT
620 */
621static void svc_check_conn_limits(struct svc_serv *serv)
622{
c9233eb7
JL
623 unsigned int limit = serv->sv_maxconn ? serv->sv_maxconn :
624 (serv->sv_nrthreads+3) * 20;
625
626 if (serv->sv_tmpcnt > limit) {
0f0257ea
TT
627 struct svc_xprt *xprt = NULL;
628 spin_lock_bh(&serv->sv_lock);
629 if (!list_empty(&serv->sv_tempsocks)) {
e87cc472
JP
630 /* Try to help the admin */
631 net_notice_ratelimited("%s: too many open connections, consider increasing the %s\n",
632 serv->sv_name, serv->sv_maxconn ?
633 "max number of connections" :
634 "number of threads");
0f0257ea
TT
635 /*
636 * Always select the oldest connection. It's not fair,
637 * but so is life
638 */
639 xprt = list_entry(serv->sv_tempsocks.prev,
640 struct svc_xprt,
641 xpt_list);
642 set_bit(XPT_CLOSE, &xprt->xpt_flags);
643 svc_xprt_get(xprt);
644 }
645 spin_unlock_bh(&serv->sv_lock);
646
647 if (xprt) {
648 svc_xprt_enqueue(xprt);
649 svc_xprt_put(xprt);
650 }
651 }
652}
653
e1d83ee6 654static int svc_alloc_arg(struct svc_rqst *rqstp)
0f0257ea 655{
6797fa5a
BF
656 struct svc_serv *serv = rqstp->rq_server;
657 struct xdr_buf *arg;
658 int pages;
659 int i;
0f0257ea
TT
660
661 /* now allocate needed pages. If we get a failure, sleep briefly */
662 pages = (serv->sv_max_mesg + PAGE_SIZE) / PAGE_SIZE;
b25cd058
WAA
663 WARN_ON_ONCE(pages >= RPCSVC_MAXPAGES);
664 if (pages >= RPCSVC_MAXPAGES)
665 /* use as many pages as possible */
666 pages = RPCSVC_MAXPAGES - 1;
0f0257ea
TT
667 for (i = 0; i < pages ; i++)
668 while (rqstp->rq_pages[i] == NULL) {
669 struct page *p = alloc_page(GFP_KERNEL);
670 if (!p) {
7b54fe61
JL
671 set_current_state(TASK_INTERRUPTIBLE);
672 if (signalled() || kthread_should_stop()) {
673 set_current_state(TASK_RUNNING);
7086721f 674 return -EINTR;
7b54fe61
JL
675 }
676 schedule_timeout(msecs_to_jiffies(500));
0f0257ea
TT
677 }
678 rqstp->rq_pages[i] = p;
679 }
2825a7f9 680 rqstp->rq_page_end = &rqstp->rq_pages[i];
0f0257ea 681 rqstp->rq_pages[i++] = NULL; /* this might be seen in nfs_read_actor */
0f0257ea
TT
682
683 /* Make arg->head point to first page and arg->pages point to rest */
684 arg = &rqstp->rq_arg;
685 arg->head[0].iov_base = page_address(rqstp->rq_pages[0]);
686 arg->head[0].iov_len = PAGE_SIZE;
687 arg->pages = rqstp->rq_pages + 1;
688 arg->page_base = 0;
689 /* save at least one page for response */
690 arg->page_len = (pages-2)*PAGE_SIZE;
691 arg->len = (pages-1)*PAGE_SIZE;
692 arg->tail[0].iov_len = 0;
6797fa5a
BF
693 return 0;
694}
0f0257ea 695
b1691bc0
JL
696static bool
697rqst_should_sleep(struct svc_rqst *rqstp)
698{
699 struct svc_pool *pool = rqstp->rq_pool;
700
701 /* did someone call svc_wake_up? */
702 if (test_and_clear_bit(SP_TASK_PENDING, &pool->sp_flags))
703 return false;
704
705 /* was a socket queued? */
706 if (!list_empty(&pool->sp_sockets))
707 return false;
708
709 /* are we shutting down? */
710 if (signalled() || kthread_should_stop())
711 return false;
712
713 /* are we freezing? */
714 if (freezing(current))
715 return false;
716
717 return true;
718}
719
e1d83ee6 720static struct svc_xprt *svc_get_next_xprt(struct svc_rqst *rqstp, long timeout)
6797fa5a
BF
721{
722 struct svc_xprt *xprt;
723 struct svc_pool *pool = rqstp->rq_pool;
a4aa8054 724 long time_left = 0;
0f0257ea 725
b1691bc0
JL
726 /* rq_xprt should be clear on entry */
727 WARN_ON_ONCE(rqstp->rq_xprt);
728
f16b6e8d
N
729 /* Normally we will wait up to 5 seconds for any required
730 * cache information to be provided.
731 */
732 rqstp->rq_chandle.thread_wait = 5*HZ;
733
0f0257ea
TT
734 xprt = svc_xprt_dequeue(pool);
735 if (xprt) {
736 rqstp->rq_xprt = xprt;
f16b6e8d
N
737
738 /* As there is a shortage of threads and this request
6610f720 739 * had to be queued, don't allow the thread to wait so
f16b6e8d
N
740 * long for cache updates.
741 */
742 rqstp->rq_chandle.thread_wait = 1*HZ;
4d5db3f5 743 clear_bit(SP_TASK_PENDING, &pool->sp_flags);
b1691bc0
JL
744 return xprt;
745 }
7086721f 746
b1691bc0
JL
747 /*
748 * We have to be able to interrupt this wait
749 * to bring down the daemons ...
750 */
751 set_current_state(TASK_INTERRUPTIBLE);
752 clear_bit(RQ_BUSY, &rqstp->rq_flags);
753 smp_mb();
0f0257ea 754
b1691bc0
JL
755 if (likely(rqst_should_sleep(rqstp)))
756 time_left = schedule_timeout(timeout);
757 else
758 __set_current_state(TASK_RUNNING);
0f0257ea 759
b1691bc0 760 try_to_freeze();
0f0257ea 761
b1691bc0
JL
762 spin_lock_bh(&rqstp->rq_lock);
763 set_bit(RQ_BUSY, &rqstp->rq_flags);
764 spin_unlock_bh(&rqstp->rq_lock);
106f359c 765
b1691bc0
JL
766 xprt = rqstp->rq_xprt;
767 if (xprt != NULL)
768 return xprt;
769
770 if (!time_left)
771 atomic_long_inc(&pool->sp_stats.threads_timedout);
772
773 if (signalled() || kthread_should_stop())
774 return ERR_PTR(-EINTR);
775 return ERR_PTR(-EAGAIN);
6797fa5a
BF
776}
777
e1d83ee6 778static void svc_add_new_temp_xprt(struct svc_serv *serv, struct svc_xprt *newxpt)
65b2e665
BF
779{
780 spin_lock_bh(&serv->sv_lock);
781 set_bit(XPT_TEMP, &newxpt->xpt_flags);
782 list_add(&newxpt->xpt_list, &serv->sv_tempsocks);
783 serv->sv_tmpcnt++;
784 if (serv->sv_temptimer.function == NULL) {
785 /* setup timer to age temp transports */
786 setup_timer(&serv->sv_temptimer, svc_age_temp_xprts,
787 (unsigned long)serv);
788 mod_timer(&serv->sv_temptimer,
789 jiffies + svc_conn_age_period * HZ);
790 }
791 spin_unlock_bh(&serv->sv_lock);
792 svc_xprt_received(newxpt);
793}
794
6797fa5a
BF
795static int svc_handle_xprt(struct svc_rqst *rqstp, struct svc_xprt *xprt)
796{
797 struct svc_serv *serv = rqstp->rq_server;
798 int len = 0;
0f0257ea 799
1b644b6e
BF
800 if (test_bit(XPT_CLOSE, &xprt->xpt_flags)) {
801 dprintk("svc_recv: found XPT_CLOSE\n");
802 svc_delete_xprt(xprt);
ca7896cd 803 /* Leave XPT_BUSY set on the dead xprt: */
83a712e0 804 goto out;
ca7896cd
BF
805 }
806 if (test_bit(XPT_LISTENER, &xprt->xpt_flags)) {
0f0257ea 807 struct svc_xprt *newxpt;
65b2e665
BF
808 /*
809 * We know this module_get will succeed because the
810 * listener holds a reference too
811 */
812 __module_get(xprt->xpt_class->xcl_owner);
813 svc_check_conn_limits(xprt->xpt_server);
0f0257ea 814 newxpt = xprt->xpt_ops->xpo_accept(xprt);
65b2e665
BF
815 if (newxpt)
816 svc_add_new_temp_xprt(serv, newxpt);
c789102c
TM
817 else
818 module_put(xprt->xpt_class->xcl_owner);
ff3ac5c3 819 } else if (svc_xprt_reserve_slot(rqstp, xprt)) {
6797fa5a 820 /* XPT_DATA|XPT_DEFERRED case: */
0f0257ea 821 dprintk("svc: server %p, pool %u, transport %p, inuse=%d\n",
6797fa5a 822 rqstp, rqstp->rq_pool->sp_id, xprt,
0f0257ea
TT
823 atomic_read(&xprt->xpt_ref.refcount));
824 rqstp->rq_deferred = svc_deferred_dequeue(xprt);
ca7896cd 825 if (rqstp->rq_deferred)
0f0257ea 826 len = svc_deferred_recv(rqstp);
ca7896cd 827 else
0f0257ea
TT
828 len = xprt->xpt_ops->xpo_recvfrom(rqstp);
829 dprintk("svc: got len=%d\n", len);
d10f27a7
BF
830 rqstp->rq_reserved = serv->sv_max_mesg;
831 atomic_add(rqstp->rq_reserved, &xprt->xpt_reserved);
0f0257ea 832 }
6797fa5a 833 /* clear XPT_BUSY: */
ca7896cd 834 svc_xprt_received(xprt);
83a712e0
JL
835out:
836 trace_svc_handle_xprt(xprt, len);
6797fa5a
BF
837 return len;
838}
839
840/*
841 * Receive the next request on any transport. This code is carefully
842 * organised not to touch any cachelines in the shared svc_serv
843 * structure, only cachelines in the local svc_pool.
844 */
845int svc_recv(struct svc_rqst *rqstp, long timeout)
846{
847 struct svc_xprt *xprt = NULL;
848 struct svc_serv *serv = rqstp->rq_server;
849 int len, err;
850
851 dprintk("svc: server %p waiting for data (to = %ld)\n",
852 rqstp, timeout);
853
854 if (rqstp->rq_xprt)
855 printk(KERN_ERR
856 "svc_recv: service %p, transport not NULL!\n",
857 rqstp);
983c6844 858
6797fa5a
BF
859 err = svc_alloc_arg(rqstp);
860 if (err)
860a0d9e 861 goto out;
6797fa5a
BF
862
863 try_to_freeze();
864 cond_resched();
860a0d9e 865 err = -EINTR;
6797fa5a 866 if (signalled() || kthread_should_stop())
860a0d9e 867 goto out;
6797fa5a
BF
868
869 xprt = svc_get_next_xprt(rqstp, timeout);
860a0d9e
JL
870 if (IS_ERR(xprt)) {
871 err = PTR_ERR(xprt);
872 goto out;
873 }
6797fa5a
BF
874
875 len = svc_handle_xprt(rqstp, xprt);
0f0257ea
TT
876
877 /* No data, incomplete (TCP) read, or accept() */
860a0d9e 878 err = -EAGAIN;
9f9d2ebe 879 if (len <= 0)
860a0d9e 880 goto out_release;
ca7896cd 881
0f0257ea
TT
882 clear_bit(XPT_OLD, &xprt->xpt_flags);
883
4d152e2c
JL
884 if (xprt->xpt_ops->xpo_secure_port(rqstp))
885 set_bit(RQ_SECURE, &rqstp->rq_flags);
886 else
887 clear_bit(RQ_SECURE, &rqstp->rq_flags);
0f0257ea 888 rqstp->rq_chandle.defer = svc_defer;
860a0d9e 889 rqstp->rq_xid = svc_getu32(&rqstp->rq_arg.head[0]);
0f0257ea
TT
890
891 if (serv->sv_stats)
892 serv->sv_stats->netcnt++;
860a0d9e 893 trace_svc_recv(rqstp, len);
0f0257ea 894 return len;
860a0d9e 895out_release:
ca7896cd
BF
896 rqstp->rq_res.len = 0;
897 svc_xprt_release(rqstp);
860a0d9e
JL
898out:
899 trace_svc_recv(rqstp, err);
900 return err;
0f0257ea 901}
24c3767e 902EXPORT_SYMBOL_GPL(svc_recv);
0f0257ea
TT
903
904/*
905 * Drop request
906 */
907void svc_drop(struct svc_rqst *rqstp)
908{
104f6351 909 trace_svc_drop(rqstp);
0f0257ea
TT
910 dprintk("svc: xprt %p dropped request\n", rqstp->rq_xprt);
911 svc_xprt_release(rqstp);
912}
24c3767e 913EXPORT_SYMBOL_GPL(svc_drop);
0f0257ea
TT
914
915/*
916 * Return reply to client.
917 */
918int svc_send(struct svc_rqst *rqstp)
919{
920 struct svc_xprt *xprt;
860a0d9e 921 int len = -EFAULT;
0f0257ea
TT
922 struct xdr_buf *xb;
923
924 xprt = rqstp->rq_xprt;
925 if (!xprt)
860a0d9e 926 goto out;
0f0257ea
TT
927
928 /* release the receive skb before sending the reply */
929 rqstp->rq_xprt->xpt_ops->xpo_release_rqst(rqstp);
930
931 /* calculate over-all length */
932 xb = &rqstp->rq_res;
933 xb->len = xb->head[0].iov_len +
934 xb->page_len +
935 xb->tail[0].iov_len;
936
937 /* Grab mutex to serialize outgoing data. */
938 mutex_lock(&xprt->xpt_mutex);
f06f00a2
BF
939 if (test_bit(XPT_DEAD, &xprt->xpt_flags)
940 || test_bit(XPT_CLOSE, &xprt->xpt_flags))
0f0257ea
TT
941 len = -ENOTCONN;
942 else
943 len = xprt->xpt_ops->xpo_sendto(rqstp);
944 mutex_unlock(&xprt->xpt_mutex);
4cfc7e60 945 rpc_wake_up(&xprt->xpt_bc_pending);
0f0257ea
TT
946 svc_xprt_release(rqstp);
947
948 if (len == -ECONNREFUSED || len == -ENOTCONN || len == -EAGAIN)
860a0d9e
JL
949 len = 0;
950out:
951 trace_svc_send(rqstp, len);
0f0257ea
TT
952 return len;
953}
954
955/*
956 * Timer function to close old temporary transports, using
957 * a mark-and-sweep algorithm.
958 */
959static void svc_age_temp_xprts(unsigned long closure)
960{
961 struct svc_serv *serv = (struct svc_serv *)closure;
962 struct svc_xprt *xprt;
963 struct list_head *le, *next;
0f0257ea
TT
964
965 dprintk("svc_age_temp_xprts\n");
966
967 if (!spin_trylock_bh(&serv->sv_lock)) {
968 /* busy, try again 1 sec later */
969 dprintk("svc_age_temp_xprts: busy\n");
970 mod_timer(&serv->sv_temptimer, jiffies + HZ);
971 return;
972 }
973
974 list_for_each_safe(le, next, &serv->sv_tempsocks) {
975 xprt = list_entry(le, struct svc_xprt, xpt_list);
976
977 /* First time through, just mark it OLD. Second time
978 * through, close it. */
979 if (!test_and_set_bit(XPT_OLD, &xprt->xpt_flags))
980 continue;
f64f9e71
JP
981 if (atomic_read(&xprt->xpt_ref.refcount) > 1 ||
982 test_bit(XPT_BUSY, &xprt->xpt_flags))
0f0257ea 983 continue;
e75bafbf 984 list_del_init(le);
0f0257ea 985 set_bit(XPT_CLOSE, &xprt->xpt_flags);
0f0257ea
TT
986 dprintk("queuing xprt %p for closing\n", xprt);
987
988 /* a thread will dequeue and close it soon */
989 svc_xprt_enqueue(xprt);
0f0257ea 990 }
e75bafbf 991 spin_unlock_bh(&serv->sv_lock);
0f0257ea
TT
992
993 mod_timer(&serv->sv_temptimer, jiffies + svc_conn_age_period * HZ);
994}
995
c3d4879e
SM
996/* Close temporary transports whose xpt_local matches server_addr immediately
997 * instead of waiting for them to be picked up by the timer.
998 *
999 * This is meant to be called from a notifier_block that runs when an ip
1000 * address is deleted.
1001 */
1002void svc_age_temp_xprts_now(struct svc_serv *serv, struct sockaddr *server_addr)
1003{
1004 struct svc_xprt *xprt;
c3d4879e
SM
1005 struct list_head *le, *next;
1006 LIST_HEAD(to_be_closed);
c3d4879e
SM
1007
1008 spin_lock_bh(&serv->sv_lock);
1009 list_for_each_safe(le, next, &serv->sv_tempsocks) {
1010 xprt = list_entry(le, struct svc_xprt, xpt_list);
1011 if (rpc_cmp_addr(server_addr, (struct sockaddr *)
1012 &xprt->xpt_local)) {
1013 dprintk("svc_age_temp_xprts_now: found %p\n", xprt);
1014 list_move(le, &to_be_closed);
1015 }
1016 }
1017 spin_unlock_bh(&serv->sv_lock);
1018
1019 while (!list_empty(&to_be_closed)) {
1020 le = to_be_closed.next;
1021 list_del_init(le);
1022 xprt = list_entry(le, struct svc_xprt, xpt_list);
1023 dprintk("svc_age_temp_xprts_now: closing %p\n", xprt);
ea08e392 1024 xprt->xpt_ops->xpo_kill_temp_xprt(xprt);
c3d4879e
SM
1025 svc_close_xprt(xprt);
1026 }
1027}
1028EXPORT_SYMBOL_GPL(svc_age_temp_xprts_now);
1029
edc7a894
BF
1030static void call_xpt_users(struct svc_xprt *xprt)
1031{
1032 struct svc_xpt_user *u;
1033
1034 spin_lock(&xprt->xpt_lock);
1035 while (!list_empty(&xprt->xpt_users)) {
1036 u = list_first_entry(&xprt->xpt_users, struct svc_xpt_user, list);
1037 list_del(&u->list);
1038 u->callback(u);
1039 }
1040 spin_unlock(&xprt->xpt_lock);
1041}
1042
0f0257ea
TT
1043/*
1044 * Remove a dead transport
1045 */
7710ec36 1046static void svc_delete_xprt(struct svc_xprt *xprt)
0f0257ea
TT
1047{
1048 struct svc_serv *serv = xprt->xpt_server;
22945e4a
TT
1049 struct svc_deferred_req *dr;
1050
1051 /* Only do this once */
1052 if (test_and_set_bit(XPT_DEAD, &xprt->xpt_flags))
ac9303eb 1053 BUG();
0f0257ea
TT
1054
1055 dprintk("svc: svc_delete_xprt(%p)\n", xprt);
1056 xprt->xpt_ops->xpo_detach(xprt);
1057
1058 spin_lock_bh(&serv->sv_lock);
8d65ef76 1059 list_del_init(&xprt->xpt_list);
01047298 1060 WARN_ON_ONCE(!list_empty(&xprt->xpt_ready));
22945e4a
TT
1061 if (test_bit(XPT_TEMP, &xprt->xpt_flags))
1062 serv->sv_tmpcnt--;
788e69e5 1063 spin_unlock_bh(&serv->sv_lock);
22945e4a 1064
ab1b18f7 1065 while ((dr = svc_deferred_dequeue(xprt)) != NULL)
22945e4a 1066 kfree(dr);
22945e4a 1067
edc7a894 1068 call_xpt_users(xprt);
22945e4a 1069 svc_xprt_put(xprt);
0f0257ea
TT
1070}
1071
1072void svc_close_xprt(struct svc_xprt *xprt)
1073{
1074 set_bit(XPT_CLOSE, &xprt->xpt_flags);
1075 if (test_and_set_bit(XPT_BUSY, &xprt->xpt_flags))
1076 /* someone else will have to effect the close */
1077 return;
b1763316
BF
1078 /*
1079 * We expect svc_close_xprt() to work even when no threads are
1080 * running (e.g., while configuring the server before starting
1081 * any threads), so if the transport isn't busy, we delete
1082 * it ourself:
1083 */
0f0257ea 1084 svc_delete_xprt(xprt);
0f0257ea 1085}
a217813f 1086EXPORT_SYMBOL_GPL(svc_close_xprt);
0f0257ea 1087
cc630d9f 1088static int svc_close_list(struct svc_serv *serv, struct list_head *xprt_list, struct net *net)
0f0257ea
TT
1089{
1090 struct svc_xprt *xprt;
cc630d9f 1091 int ret = 0;
0f0257ea 1092
719f8bcc 1093 spin_lock(&serv->sv_lock);
b4f36f88 1094 list_for_each_entry(xprt, xprt_list, xpt_list) {
7b147f1f
SK
1095 if (xprt->xpt_net != net)
1096 continue;
cc630d9f 1097 ret++;
0f0257ea 1098 set_bit(XPT_CLOSE, &xprt->xpt_flags);
cc630d9f 1099 svc_xprt_enqueue(xprt);
0f0257ea 1100 }
719f8bcc 1101 spin_unlock(&serv->sv_lock);
cc630d9f 1102 return ret;
0f0257ea
TT
1103}
1104
cc630d9f 1105static struct svc_xprt *svc_dequeue_net(struct svc_serv *serv, struct net *net)
0f0257ea 1106{
b4f36f88 1107 struct svc_pool *pool;
0f0257ea
TT
1108 struct svc_xprt *xprt;
1109 struct svc_xprt *tmp;
b4f36f88
BF
1110 int i;
1111
b4f36f88
BF
1112 for (i = 0; i < serv->sv_nrpools; i++) {
1113 pool = &serv->sv_pools[i];
1114
1115 spin_lock_bh(&pool->sp_lock);
6f513365 1116 list_for_each_entry_safe(xprt, tmp, &pool->sp_sockets, xpt_ready) {
7b147f1f
SK
1117 if (xprt->xpt_net != net)
1118 continue;
b4f36f88 1119 list_del_init(&xprt->xpt_ready);
cc630d9f
BF
1120 spin_unlock_bh(&pool->sp_lock);
1121 return xprt;
b4f36f88
BF
1122 }
1123 spin_unlock_bh(&pool->sp_lock);
1124 }
cc630d9f 1125 return NULL;
6f513365
SK
1126}
1127
cc630d9f 1128static void svc_clean_up_xprts(struct svc_serv *serv, struct net *net)
6f513365
SK
1129{
1130 struct svc_xprt *xprt;
719f8bcc 1131
cc630d9f
BF
1132 while ((xprt = svc_dequeue_net(serv, net))) {
1133 set_bit(XPT_CLOSE, &xprt->xpt_flags);
719f8bcc 1134 svc_delete_xprt(xprt);
cc630d9f 1135 }
3a22bf50
SK
1136}
1137
cc630d9f
BF
1138/*
1139 * Server threads may still be running (especially in the case where the
1140 * service is still running in other network namespaces).
1141 *
1142 * So we shut down sockets the same way we would on a running server, by
1143 * setting XPT_CLOSE, enqueuing, and letting a thread pick it up to do
1144 * the close. In the case there are no such other threads,
1145 * threads running, svc_clean_up_xprts() does a simple version of a
1146 * server's main event loop, and in the case where there are other
1147 * threads, we may need to wait a little while and then check again to
1148 * see if they're done.
1149 */
7b147f1f 1150void svc_close_net(struct svc_serv *serv, struct net *net)
3a22bf50 1151{
cc630d9f 1152 int delay = 0;
6f513365 1153
cc630d9f
BF
1154 while (svc_close_list(serv, &serv->sv_permsocks, net) +
1155 svc_close_list(serv, &serv->sv_tempsocks, net)) {
1156
1157 svc_clean_up_xprts(serv, net);
1158 msleep(delay++);
1159 }
0f0257ea
TT
1160}
1161
1162/*
1163 * Handle defer and revisit of requests
1164 */
1165
1166static void svc_revisit(struct cache_deferred_req *dreq, int too_many)
1167{
1168 struct svc_deferred_req *dr =
1169 container_of(dreq, struct svc_deferred_req, handle);
1170 struct svc_xprt *xprt = dr->xprt;
1171
22945e4a
TT
1172 spin_lock(&xprt->xpt_lock);
1173 set_bit(XPT_DEFERRED, &xprt->xpt_flags);
1174 if (too_many || test_bit(XPT_DEAD, &xprt->xpt_flags)) {
1175 spin_unlock(&xprt->xpt_lock);
1176 dprintk("revisit canceled\n");
0f0257ea 1177 svc_xprt_put(xprt);
104f6351 1178 trace_svc_drop_deferred(dr);
0f0257ea
TT
1179 kfree(dr);
1180 return;
1181 }
1182 dprintk("revisit queued\n");
1183 dr->xprt = NULL;
0f0257ea
TT
1184 list_add(&dr->handle.recent, &xprt->xpt_deferred);
1185 spin_unlock(&xprt->xpt_lock);
0f0257ea
TT
1186 svc_xprt_enqueue(xprt);
1187 svc_xprt_put(xprt);
1188}
1189
260c1d12
TT
1190/*
1191 * Save the request off for later processing. The request buffer looks
1192 * like this:
1193 *
1194 * <xprt-header><rpc-header><rpc-pagelist><rpc-tail>
1195 *
1196 * This code can only handle requests that consist of an xprt-header
1197 * and rpc-header.
1198 */
0f0257ea
TT
1199static struct cache_deferred_req *svc_defer(struct cache_req *req)
1200{
1201 struct svc_rqst *rqstp = container_of(req, struct svc_rqst, rq_chandle);
0f0257ea
TT
1202 struct svc_deferred_req *dr;
1203
30660e04 1204 if (rqstp->rq_arg.page_len || !test_bit(RQ_USEDEFERRAL, &rqstp->rq_flags))
0f0257ea
TT
1205 return NULL; /* if more than a page, give up FIXME */
1206 if (rqstp->rq_deferred) {
1207 dr = rqstp->rq_deferred;
1208 rqstp->rq_deferred = NULL;
1209 } else {
260c1d12
TT
1210 size_t skip;
1211 size_t size;
0f0257ea 1212 /* FIXME maybe discard if size too large */
260c1d12 1213 size = sizeof(struct svc_deferred_req) + rqstp->rq_arg.len;
0f0257ea
TT
1214 dr = kmalloc(size, GFP_KERNEL);
1215 if (dr == NULL)
1216 return NULL;
1217
1218 dr->handle.owner = rqstp->rq_server;
1219 dr->prot = rqstp->rq_prot;
1220 memcpy(&dr->addr, &rqstp->rq_addr, rqstp->rq_addrlen);
1221 dr->addrlen = rqstp->rq_addrlen;
1222 dr->daddr = rqstp->rq_daddr;
1223 dr->argslen = rqstp->rq_arg.len >> 2;
260c1d12
TT
1224 dr->xprt_hlen = rqstp->rq_xprt_hlen;
1225
1226 /* back up head to the start of the buffer and copy */
1227 skip = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len;
1228 memcpy(dr->args, rqstp->rq_arg.head[0].iov_base - skip,
1229 dr->argslen << 2);
0f0257ea
TT
1230 }
1231 svc_xprt_get(rqstp->rq_xprt);
1232 dr->xprt = rqstp->rq_xprt;
78b65eb3 1233 set_bit(RQ_DROPME, &rqstp->rq_flags);
0f0257ea
TT
1234
1235 dr->handle.revisit = svc_revisit;
104f6351 1236 trace_svc_defer(rqstp);
0f0257ea
TT
1237 return &dr->handle;
1238}
1239
1240/*
1241 * recv data from a deferred request into an active one
1242 */
1243static int svc_deferred_recv(struct svc_rqst *rqstp)
1244{
1245 struct svc_deferred_req *dr = rqstp->rq_deferred;
1246
260c1d12
TT
1247 /* setup iov_base past transport header */
1248 rqstp->rq_arg.head[0].iov_base = dr->args + (dr->xprt_hlen>>2);
1249 /* The iov_len does not include the transport header bytes */
1250 rqstp->rq_arg.head[0].iov_len = (dr->argslen<<2) - dr->xprt_hlen;
0f0257ea 1251 rqstp->rq_arg.page_len = 0;
260c1d12
TT
1252 /* The rq_arg.len includes the transport header bytes */
1253 rqstp->rq_arg.len = dr->argslen<<2;
0f0257ea
TT
1254 rqstp->rq_prot = dr->prot;
1255 memcpy(&rqstp->rq_addr, &dr->addr, dr->addrlen);
1256 rqstp->rq_addrlen = dr->addrlen;
260c1d12
TT
1257 /* Save off transport header len in case we get deferred again */
1258 rqstp->rq_xprt_hlen = dr->xprt_hlen;
0f0257ea
TT
1259 rqstp->rq_daddr = dr->daddr;
1260 rqstp->rq_respages = rqstp->rq_pages;
260c1d12 1261 return (dr->argslen<<2) - dr->xprt_hlen;
0f0257ea
TT
1262}
1263
1264
1265static struct svc_deferred_req *svc_deferred_dequeue(struct svc_xprt *xprt)
1266{
1267 struct svc_deferred_req *dr = NULL;
1268
1269 if (!test_bit(XPT_DEFERRED, &xprt->xpt_flags))
1270 return NULL;
1271 spin_lock(&xprt->xpt_lock);
0f0257ea
TT
1272 if (!list_empty(&xprt->xpt_deferred)) {
1273 dr = list_entry(xprt->xpt_deferred.next,
1274 struct svc_deferred_req,
1275 handle.recent);
1276 list_del_init(&dr->handle.recent);
104f6351 1277 trace_svc_revisit_deferred(dr);
62bac4af
BF
1278 } else
1279 clear_bit(XPT_DEFERRED, &xprt->xpt_flags);
0f0257ea
TT
1280 spin_unlock(&xprt->xpt_lock);
1281 return dr;
1282}
7fcb98d5 1283
156e6209
CL
1284/**
1285 * svc_find_xprt - find an RPC transport instance
1286 * @serv: pointer to svc_serv to search
1287 * @xcl_name: C string containing transport's class name
4cb54ca2 1288 * @net: owner net pointer
156e6209
CL
1289 * @af: Address family of transport's local address
1290 * @port: transport's IP port number
1291 *
7fcb98d5
TT
1292 * Return the transport instance pointer for the endpoint accepting
1293 * connections/peer traffic from the specified transport class,
1294 * address family and port.
1295 *
1296 * Specifying 0 for the address family or port is effectively a
1297 * wild-card, and will result in matching the first transport in the
1298 * service's list that has a matching class name.
1299 */
156e6209 1300struct svc_xprt *svc_find_xprt(struct svc_serv *serv, const char *xcl_name,
4cb54ca2
SK
1301 struct net *net, const sa_family_t af,
1302 const unsigned short port)
7fcb98d5
TT
1303{
1304 struct svc_xprt *xprt;
1305 struct svc_xprt *found = NULL;
1306
1307 /* Sanity check the args */
156e6209 1308 if (serv == NULL || xcl_name == NULL)
7fcb98d5
TT
1309 return found;
1310
1311 spin_lock_bh(&serv->sv_lock);
1312 list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list) {
4cb54ca2
SK
1313 if (xprt->xpt_net != net)
1314 continue;
7fcb98d5
TT
1315 if (strcmp(xprt->xpt_class->xcl_name, xcl_name))
1316 continue;
1317 if (af != AF_UNSPEC && af != xprt->xpt_local.ss_family)
1318 continue;
156e6209 1319 if (port != 0 && port != svc_xprt_local_port(xprt))
7fcb98d5
TT
1320 continue;
1321 found = xprt;
a217813f 1322 svc_xprt_get(xprt);
7fcb98d5
TT
1323 break;
1324 }
1325 spin_unlock_bh(&serv->sv_lock);
1326 return found;
1327}
1328EXPORT_SYMBOL_GPL(svc_find_xprt);
9571af18 1329
335c54bd
CL
1330static int svc_one_xprt_name(const struct svc_xprt *xprt,
1331 char *pos, int remaining)
1332{
1333 int len;
1334
1335 len = snprintf(pos, remaining, "%s %u\n",
1336 xprt->xpt_class->xcl_name,
1337 svc_xprt_local_port(xprt));
1338 if (len >= remaining)
1339 return -ENAMETOOLONG;
1340 return len;
1341}
1342
1343/**
1344 * svc_xprt_names - format a buffer with a list of transport names
1345 * @serv: pointer to an RPC service
1346 * @buf: pointer to a buffer to be filled in
1347 * @buflen: length of buffer to be filled in
1348 *
1349 * Fills in @buf with a string containing a list of transport names,
1350 * each name terminated with '\n'.
1351 *
1352 * Returns positive length of the filled-in string on success; otherwise
1353 * a negative errno value is returned if an error occurs.
9571af18 1354 */
335c54bd 1355int svc_xprt_names(struct svc_serv *serv, char *buf, const int buflen)
9571af18
TT
1356{
1357 struct svc_xprt *xprt;
335c54bd
CL
1358 int len, totlen;
1359 char *pos;
9571af18
TT
1360
1361 /* Sanity check args */
1362 if (!serv)
1363 return 0;
1364
1365 spin_lock_bh(&serv->sv_lock);
335c54bd
CL
1366
1367 pos = buf;
1368 totlen = 0;
9571af18 1369 list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list) {
335c54bd
CL
1370 len = svc_one_xprt_name(xprt, pos, buflen - totlen);
1371 if (len < 0) {
1372 *buf = '\0';
1373 totlen = len;
1374 }
1375 if (len <= 0)
9571af18 1376 break;
335c54bd
CL
1377
1378 pos += len;
9571af18
TT
1379 totlen += len;
1380 }
335c54bd 1381
9571af18
TT
1382 spin_unlock_bh(&serv->sv_lock);
1383 return totlen;
1384}
1385EXPORT_SYMBOL_GPL(svc_xprt_names);
03cf6c9f
GB
1386
1387
1388/*----------------------------------------------------------------------------*/
1389
1390static void *svc_pool_stats_start(struct seq_file *m, loff_t *pos)
1391{
1392 unsigned int pidx = (unsigned int)*pos;
1393 struct svc_serv *serv = m->private;
1394
1395 dprintk("svc_pool_stats_start, *pidx=%u\n", pidx);
1396
03cf6c9f
GB
1397 if (!pidx)
1398 return SEQ_START_TOKEN;
1399 return (pidx > serv->sv_nrpools ? NULL : &serv->sv_pools[pidx-1]);
1400}
1401
1402static void *svc_pool_stats_next(struct seq_file *m, void *p, loff_t *pos)
1403{
1404 struct svc_pool *pool = p;
1405 struct svc_serv *serv = m->private;
1406
1407 dprintk("svc_pool_stats_next, *pos=%llu\n", *pos);
1408
1409 if (p == SEQ_START_TOKEN) {
1410 pool = &serv->sv_pools[0];
1411 } else {
1412 unsigned int pidx = (pool - &serv->sv_pools[0]);
1413 if (pidx < serv->sv_nrpools-1)
1414 pool = &serv->sv_pools[pidx+1];
1415 else
1416 pool = NULL;
1417 }
1418 ++*pos;
1419 return pool;
1420}
1421
1422static void svc_pool_stats_stop(struct seq_file *m, void *p)
1423{
03cf6c9f
GB
1424}
1425
1426static int svc_pool_stats_show(struct seq_file *m, void *p)
1427{
1428 struct svc_pool *pool = p;
1429
1430 if (p == SEQ_START_TOKEN) {
78c210ef 1431 seq_puts(m, "# pool packets-arrived sockets-enqueued threads-woken threads-timedout\n");
03cf6c9f
GB
1432 return 0;
1433 }
1434
78c210ef 1435 seq_printf(m, "%u %lu %lu %lu %lu\n",
03cf6c9f 1436 pool->sp_id,
403c7b44 1437 (unsigned long)atomic_long_read(&pool->sp_stats.packets),
03cf6c9f 1438 pool->sp_stats.sockets_queued,
403c7b44
JL
1439 (unsigned long)atomic_long_read(&pool->sp_stats.threads_woken),
1440 (unsigned long)atomic_long_read(&pool->sp_stats.threads_timedout));
03cf6c9f
GB
1441
1442 return 0;
1443}
1444
1445static const struct seq_operations svc_pool_stats_seq_ops = {
1446 .start = svc_pool_stats_start,
1447 .next = svc_pool_stats_next,
1448 .stop = svc_pool_stats_stop,
1449 .show = svc_pool_stats_show,
1450};
1451
1452int svc_pool_stats_open(struct svc_serv *serv, struct file *file)
1453{
1454 int err;
1455
1456 err = seq_open(file, &svc_pool_stats_seq_ops);
1457 if (!err)
1458 ((struct seq_file *) file->private_data)->private = serv;
1459 return err;
1460}
1461EXPORT_SYMBOL(svc_pool_stats_open);
1462
1463/*----------------------------------------------------------------------------*/