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