d4a7fd5aabd14760c3800bd4330230c28769eb98
[platform/kernel/linux-rpi.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/kthread.h>
13 #include <linux/slab.h>
14 #include <net/sock.h>
15 #include <linux/sunrpc/addr.h>
16 #include <linux/sunrpc/stats.h>
17 #include <linux/sunrpc/svc_xprt.h>
18 #include <linux/sunrpc/svcsock.h>
19 #include <linux/sunrpc/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         if (xpt_flags & BIT(XPT_BUSY))
438                 return false;
439         if (xpt_flags & (BIT(XPT_CONN) | BIT(XPT_CLOSE) | BIT(XPT_HANDSHAKE)))
440                 return true;
441         if (xpt_flags & (BIT(XPT_DATA) | BIT(XPT_DEFERRED))) {
442                 if (xprt->xpt_ops->xpo_has_wspace(xprt) &&
443                     svc_xprt_slots_in_range(xprt))
444                         return true;
445                 trace_svc_xprt_no_write_space(xprt);
446                 return false;
447         }
448         return false;
449 }
450
451 /**
452  * svc_xprt_enqueue - Queue a transport on an idle nfsd thread
453  * @xprt: transport with data pending
454  *
455  */
456 void svc_xprt_enqueue(struct svc_xprt *xprt)
457 {
458         struct svc_pool *pool;
459         struct svc_rqst *rqstp = NULL;
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         /* find a thread for this xprt */
480         rcu_read_lock();
481         list_for_each_entry_rcu(rqstp, &pool->sp_all_threads, rq_all) {
482                 if (test_and_set_bit(RQ_BUSY, &rqstp->rq_flags))
483                         continue;
484                 percpu_counter_inc(&pool->sp_threads_woken);
485                 rqstp->rq_qtime = ktime_get();
486                 wake_up_process(rqstp->rq_task);
487                 goto out_unlock;
488         }
489         set_bit(SP_CONGESTED, &pool->sp_flags);
490         rqstp = NULL;
491 out_unlock:
492         rcu_read_unlock();
493         trace_svc_xprt_enqueue(xprt, rqstp);
494 }
495 EXPORT_SYMBOL_GPL(svc_xprt_enqueue);
496
497 /*
498  * Dequeue the first transport, if there is one.
499  */
500 static struct svc_xprt *svc_xprt_dequeue(struct svc_pool *pool)
501 {
502         struct svc_xprt *xprt = NULL;
503
504         if (list_empty(&pool->sp_sockets))
505                 goto out;
506
507         spin_lock_bh(&pool->sp_lock);
508         if (likely(!list_empty(&pool->sp_sockets))) {
509                 xprt = list_first_entry(&pool->sp_sockets,
510                                         struct svc_xprt, xpt_ready);
511                 list_del_init(&xprt->xpt_ready);
512                 svc_xprt_get(xprt);
513         }
514         spin_unlock_bh(&pool->sp_lock);
515 out:
516         return xprt;
517 }
518
519 /**
520  * svc_reserve - change the space reserved for the reply to a request.
521  * @rqstp:  The request in question
522  * @space: new max space to reserve
523  *
524  * Each request reserves some space on the output queue of the transport
525  * to make sure the reply fits.  This function reduces that reserved
526  * space to be the amount of space used already, plus @space.
527  *
528  */
529 void svc_reserve(struct svc_rqst *rqstp, int space)
530 {
531         struct svc_xprt *xprt = rqstp->rq_xprt;
532
533         space += rqstp->rq_res.head[0].iov_len;
534
535         if (xprt && space < rqstp->rq_reserved) {
536                 atomic_sub((rqstp->rq_reserved - space), &xprt->xpt_reserved);
537                 rqstp->rq_reserved = space;
538                 smp_wmb(); /* See smp_rmb() in svc_xprt_ready() */
539                 svc_xprt_enqueue(xprt);
540         }
541 }
542 EXPORT_SYMBOL_GPL(svc_reserve);
543
544 static void free_deferred(struct svc_xprt *xprt, struct svc_deferred_req *dr)
545 {
546         if (!dr)
547                 return;
548
549         xprt->xpt_ops->xpo_release_ctxt(xprt, dr->xprt_ctxt);
550         kfree(dr);
551 }
552
553 static void svc_xprt_release(struct svc_rqst *rqstp)
554 {
555         struct svc_xprt *xprt = rqstp->rq_xprt;
556
557         xprt->xpt_ops->xpo_release_ctxt(xprt, rqstp->rq_xprt_ctxt);
558         rqstp->rq_xprt_ctxt = NULL;
559
560         free_deferred(xprt, rqstp->rq_deferred);
561         rqstp->rq_deferred = NULL;
562
563         svc_rqst_release_pages(rqstp);
564         rqstp->rq_res.page_len = 0;
565         rqstp->rq_res.page_base = 0;
566
567         /* Reset response buffer and release
568          * the reservation.
569          * But first, check that enough space was reserved
570          * for the reply, otherwise we have a bug!
571          */
572         if ((rqstp->rq_res.len) >  rqstp->rq_reserved)
573                 printk(KERN_ERR "RPC request reserved %d but used %d\n",
574                        rqstp->rq_reserved,
575                        rqstp->rq_res.len);
576
577         rqstp->rq_res.head[0].iov_len = 0;
578         svc_reserve(rqstp, 0);
579         svc_xprt_release_slot(rqstp);
580         rqstp->rq_xprt = NULL;
581         svc_xprt_put(xprt);
582 }
583
584 /*
585  * Some svc_serv's will have occasional work to do, even when a xprt is not
586  * waiting to be serviced. This function is there to "kick" a task in one of
587  * those services so that it can wake up and do that work. Note that we only
588  * bother with pool 0 as we don't need to wake up more than one thread for
589  * this purpose.
590  */
591 void svc_wake_up(struct svc_serv *serv)
592 {
593         struct svc_rqst *rqstp;
594         struct svc_pool *pool;
595
596         pool = &serv->sv_pools[0];
597
598         rcu_read_lock();
599         list_for_each_entry_rcu(rqstp, &pool->sp_all_threads, rq_all) {
600                 /* skip any that aren't queued */
601                 if (test_bit(RQ_BUSY, &rqstp->rq_flags))
602                         continue;
603                 rcu_read_unlock();
604                 wake_up_process(rqstp->rq_task);
605                 trace_svc_wake_up(rqstp->rq_task->pid);
606                 return;
607         }
608         rcu_read_unlock();
609
610         /* No free entries available */
611         set_bit(SP_TASK_PENDING, &pool->sp_flags);
612         smp_wmb();
613         trace_svc_wake_up(0);
614 }
615 EXPORT_SYMBOL_GPL(svc_wake_up);
616
617 int svc_port_is_privileged(struct sockaddr *sin)
618 {
619         switch (sin->sa_family) {
620         case AF_INET:
621                 return ntohs(((struct sockaddr_in *)sin)->sin_port)
622                         < PROT_SOCK;
623         case AF_INET6:
624                 return ntohs(((struct sockaddr_in6 *)sin)->sin6_port)
625                         < PROT_SOCK;
626         default:
627                 return 0;
628         }
629 }
630
631 /*
632  * Make sure that we don't have too many active connections. If we have,
633  * something must be dropped. It's not clear what will happen if we allow
634  * "too many" connections, but when dealing with network-facing software,
635  * we have to code defensively. Here we do that by imposing hard limits.
636  *
637  * There's no point in trying to do random drop here for DoS
638  * prevention. The NFS clients does 1 reconnect in 15 seconds. An
639  * attacker can easily beat that.
640  *
641  * The only somewhat efficient mechanism would be if drop old
642  * connections from the same IP first. But right now we don't even
643  * record the client IP in svc_sock.
644  *
645  * single-threaded services that expect a lot of clients will probably
646  * need to set sv_maxconn to override the default value which is based
647  * on the number of threads
648  */
649 static void svc_check_conn_limits(struct svc_serv *serv)
650 {
651         unsigned int limit = serv->sv_maxconn ? serv->sv_maxconn :
652                                 (serv->sv_nrthreads+3) * 20;
653
654         if (serv->sv_tmpcnt > limit) {
655                 struct svc_xprt *xprt = NULL;
656                 spin_lock_bh(&serv->sv_lock);
657                 if (!list_empty(&serv->sv_tempsocks)) {
658                         /* Try to help the admin */
659                         net_notice_ratelimited("%s: too many open connections, consider increasing the %s\n",
660                                                serv->sv_name, serv->sv_maxconn ?
661                                                "max number of connections" :
662                                                "number of threads");
663                         /*
664                          * Always select the oldest connection. It's not fair,
665                          * but so is life
666                          */
667                         xprt = list_entry(serv->sv_tempsocks.prev,
668                                           struct svc_xprt,
669                                           xpt_list);
670                         set_bit(XPT_CLOSE, &xprt->xpt_flags);
671                         svc_xprt_get(xprt);
672                 }
673                 spin_unlock_bh(&serv->sv_lock);
674
675                 if (xprt) {
676                         svc_xprt_enqueue(xprt);
677                         svc_xprt_put(xprt);
678                 }
679         }
680 }
681
682 static int svc_alloc_arg(struct svc_rqst *rqstp)
683 {
684         struct svc_serv *serv = rqstp->rq_server;
685         struct xdr_buf *arg = &rqstp->rq_arg;
686         unsigned long pages, filled, ret;
687
688         pages = (serv->sv_max_mesg + 2 * PAGE_SIZE) >> PAGE_SHIFT;
689         if (pages > RPCSVC_MAXPAGES) {
690                 pr_warn_once("svc: warning: pages=%lu > RPCSVC_MAXPAGES=%lu\n",
691                              pages, RPCSVC_MAXPAGES);
692                 /* use as many pages as possible */
693                 pages = RPCSVC_MAXPAGES;
694         }
695
696         for (filled = 0; filled < pages; filled = ret) {
697                 ret = alloc_pages_bulk_array_node(GFP_KERNEL,
698                                                   rqstp->rq_pool->sp_id,
699                                                   pages, rqstp->rq_pages);
700                 if (ret > filled)
701                         /* Made progress, don't sleep yet */
702                         continue;
703
704                 set_current_state(TASK_IDLE);
705                 if (kthread_should_stop()) {
706                         set_current_state(TASK_RUNNING);
707                         return -EINTR;
708                 }
709                 trace_svc_alloc_arg_err(pages, ret);
710                 memalloc_retry_wait(GFP_KERNEL);
711         }
712         rqstp->rq_page_end = &rqstp->rq_pages[pages];
713         rqstp->rq_pages[pages] = NULL; /* this might be seen in nfsd_splice_actor() */
714
715         /* Make arg->head point to first page and arg->pages point to rest */
716         arg->head[0].iov_base = page_address(rqstp->rq_pages[0]);
717         arg->head[0].iov_len = PAGE_SIZE;
718         arg->pages = rqstp->rq_pages + 1;
719         arg->page_base = 0;
720         /* save at least one page for response */
721         arg->page_len = (pages-2)*PAGE_SIZE;
722         arg->len = (pages-1)*PAGE_SIZE;
723         arg->tail[0].iov_len = 0;
724
725         rqstp->rq_xid = xdr_zero;
726         return 0;
727 }
728
729 static bool
730 rqst_should_sleep(struct svc_rqst *rqstp)
731 {
732         struct svc_pool         *pool = rqstp->rq_pool;
733
734         /* did someone call svc_wake_up? */
735         if (test_and_clear_bit(SP_TASK_PENDING, &pool->sp_flags))
736                 return false;
737
738         /* was a socket queued? */
739         if (!list_empty(&pool->sp_sockets))
740                 return false;
741
742         /* are we shutting down? */
743         if (kthread_should_stop())
744                 return false;
745
746         /* are we freezing? */
747         if (freezing(current))
748                 return false;
749
750         return true;
751 }
752
753 static struct svc_xprt *svc_get_next_xprt(struct svc_rqst *rqstp, long timeout)
754 {
755         struct svc_pool         *pool = rqstp->rq_pool;
756         long                    time_left = 0;
757
758         /* rq_xprt should be clear on entry */
759         WARN_ON_ONCE(rqstp->rq_xprt);
760
761         rqstp->rq_xprt = svc_xprt_dequeue(pool);
762         if (rqstp->rq_xprt)
763                 goto out_found;
764
765         set_current_state(TASK_IDLE);
766         smp_mb__before_atomic();
767         clear_bit(SP_CONGESTED, &pool->sp_flags);
768         clear_bit(RQ_BUSY, &rqstp->rq_flags);
769         smp_mb__after_atomic();
770
771         if (likely(rqst_should_sleep(rqstp)))
772                 time_left = schedule_timeout(timeout);
773         else
774                 __set_current_state(TASK_RUNNING);
775
776         try_to_freeze();
777
778         set_bit(RQ_BUSY, &rqstp->rq_flags);
779         smp_mb__after_atomic();
780         rqstp->rq_xprt = svc_xprt_dequeue(pool);
781         if (rqstp->rq_xprt)
782                 goto out_found;
783
784         if (!time_left)
785                 percpu_counter_inc(&pool->sp_threads_timedout);
786
787         if (kthread_should_stop())
788                 return ERR_PTR(-EINTR);
789         return ERR_PTR(-EAGAIN);
790 out_found:
791         /* Normally we will wait up to 5 seconds for any required
792          * cache information to be provided.
793          */
794         if (!test_bit(SP_CONGESTED, &pool->sp_flags))
795                 rqstp->rq_chandle.thread_wait = 5*HZ;
796         else
797                 rqstp->rq_chandle.thread_wait = 1*HZ;
798         trace_svc_xprt_dequeue(rqstp);
799         return rqstp->rq_xprt;
800 }
801
802 static void svc_add_new_temp_xprt(struct svc_serv *serv, struct svc_xprt *newxpt)
803 {
804         spin_lock_bh(&serv->sv_lock);
805         set_bit(XPT_TEMP, &newxpt->xpt_flags);
806         list_add(&newxpt->xpt_list, &serv->sv_tempsocks);
807         serv->sv_tmpcnt++;
808         if (serv->sv_temptimer.function == NULL) {
809                 /* setup timer to age temp transports */
810                 serv->sv_temptimer.function = svc_age_temp_xprts;
811                 mod_timer(&serv->sv_temptimer,
812                           jiffies + svc_conn_age_period * HZ);
813         }
814         spin_unlock_bh(&serv->sv_lock);
815         svc_xprt_received(newxpt);
816 }
817
818 static int svc_handle_xprt(struct svc_rqst *rqstp, struct svc_xprt *xprt)
819 {
820         struct svc_serv *serv = rqstp->rq_server;
821         int len = 0;
822
823         if (test_bit(XPT_CLOSE, &xprt->xpt_flags)) {
824                 if (test_and_clear_bit(XPT_KILL_TEMP, &xprt->xpt_flags))
825                         xprt->xpt_ops->xpo_kill_temp_xprt(xprt);
826                 svc_delete_xprt(xprt);
827                 /* Leave XPT_BUSY set on the dead xprt: */
828                 goto out;
829         }
830         if (test_bit(XPT_LISTENER, &xprt->xpt_flags)) {
831                 struct svc_xprt *newxpt;
832                 /*
833                  * We know this module_get will succeed because the
834                  * listener holds a reference too
835                  */
836                 __module_get(xprt->xpt_class->xcl_owner);
837                 svc_check_conn_limits(xprt->xpt_server);
838                 newxpt = xprt->xpt_ops->xpo_accept(xprt);
839                 if (newxpt) {
840                         newxpt->xpt_cred = get_cred(xprt->xpt_cred);
841                         svc_add_new_temp_xprt(serv, newxpt);
842                         trace_svc_xprt_accept(newxpt, serv->sv_name);
843                 } else {
844                         module_put(xprt->xpt_class->xcl_owner);
845                 }
846                 svc_xprt_received(xprt);
847         } else if (test_bit(XPT_HANDSHAKE, &xprt->xpt_flags)) {
848                 xprt->xpt_ops->xpo_handshake(xprt);
849                 svc_xprt_received(xprt);
850         } else if (svc_xprt_reserve_slot(rqstp, xprt)) {
851                 /* XPT_DATA|XPT_DEFERRED case: */
852                 rqstp->rq_deferred = svc_deferred_dequeue(xprt);
853                 if (rqstp->rq_deferred)
854                         len = svc_deferred_recv(rqstp);
855                 else
856                         len = xprt->xpt_ops->xpo_recvfrom(rqstp);
857                 rqstp->rq_reserved = serv->sv_max_mesg;
858                 atomic_add(rqstp->rq_reserved, &xprt->xpt_reserved);
859         } else
860                 svc_xprt_received(xprt);
861
862 out:
863         return len;
864 }
865
866 /*
867  * Receive the next request on any transport.  This code is carefully
868  * organised not to touch any cachelines in the shared svc_serv
869  * structure, only cachelines in the local svc_pool.
870  */
871 int svc_recv(struct svc_rqst *rqstp, long timeout)
872 {
873         struct svc_xprt         *xprt = NULL;
874         struct svc_serv         *serv = rqstp->rq_server;
875         int                     len, err;
876
877         err = svc_alloc_arg(rqstp);
878         if (err)
879                 goto out;
880
881         try_to_freeze();
882         cond_resched();
883         err = -EINTR;
884         if (kthread_should_stop())
885                 goto out;
886
887         xprt = svc_get_next_xprt(rqstp, timeout);
888         if (IS_ERR(xprt)) {
889                 err = PTR_ERR(xprt);
890                 goto out;
891         }
892
893         len = svc_handle_xprt(rqstp, xprt);
894
895         /* No data, incomplete (TCP) read, or accept() */
896         err = -EAGAIN;
897         if (len <= 0)
898                 goto out_release;
899
900         trace_svc_xdr_recvfrom(&rqstp->rq_arg);
901
902         clear_bit(XPT_OLD, &xprt->xpt_flags);
903
904         rqstp->rq_chandle.defer = svc_defer;
905
906         if (serv->sv_stats)
907                 serv->sv_stats->netcnt++;
908         rqstp->rq_stime = ktime_get();
909         return len;
910 out_release:
911         rqstp->rq_res.len = 0;
912         svc_xprt_release(rqstp);
913 out:
914         return err;
915 }
916 EXPORT_SYMBOL_GPL(svc_recv);
917
918 /*
919  * Drop request
920  */
921 void svc_drop(struct svc_rqst *rqstp)
922 {
923         trace_svc_drop(rqstp);
924         svc_xprt_release(rqstp);
925 }
926 EXPORT_SYMBOL_GPL(svc_drop);
927
928 /**
929  * svc_send - Return reply to client
930  * @rqstp: RPC transaction context
931  *
932  */
933 void svc_send(struct svc_rqst *rqstp)
934 {
935         struct svc_xprt *xprt;
936         struct xdr_buf  *xb;
937         int status;
938
939         xprt = rqstp->rq_xprt;
940         if (!xprt)
941                 return;
942
943         /* calculate over-all length */
944         xb = &rqstp->rq_res;
945         xb->len = xb->head[0].iov_len +
946                 xb->page_len +
947                 xb->tail[0].iov_len;
948         trace_svc_xdr_sendto(rqstp->rq_xid, xb);
949         trace_svc_stats_latency(rqstp);
950
951         status = xprt->xpt_ops->xpo_sendto(rqstp);
952
953         trace_svc_send(rqstp, status);
954         svc_xprt_release(rqstp);
955 }
956
957 /*
958  * Timer function to close old temporary transports, using
959  * a mark-and-sweep algorithm.
960  */
961 static void svc_age_temp_xprts(struct timer_list *t)
962 {
963         struct svc_serv *serv = from_timer(serv, t, sv_temptimer);
964         struct svc_xprt *xprt;
965         struct list_head *le, *next;
966
967         dprintk("svc_age_temp_xprts\n");
968
969         if (!spin_trylock_bh(&serv->sv_lock)) {
970                 /* busy, try again 1 sec later */
971                 dprintk("svc_age_temp_xprts: busy\n");
972                 mod_timer(&serv->sv_temptimer, jiffies + HZ);
973                 return;
974         }
975
976         list_for_each_safe(le, next, &serv->sv_tempsocks) {
977                 xprt = list_entry(le, struct svc_xprt, xpt_list);
978
979                 /* First time through, just mark it OLD. Second time
980                  * through, close it. */
981                 if (!test_and_set_bit(XPT_OLD, &xprt->xpt_flags))
982                         continue;
983                 if (kref_read(&xprt->xpt_ref) > 1 ||
984                     test_bit(XPT_BUSY, &xprt->xpt_flags))
985                         continue;
986                 list_del_init(le);
987                 set_bit(XPT_CLOSE, &xprt->xpt_flags);
988                 dprintk("queuing xprt %p for closing\n", xprt);
989
990                 /* a thread will dequeue and close it soon */
991                 svc_xprt_enqueue(xprt);
992         }
993         spin_unlock_bh(&serv->sv_lock);
994
995         mod_timer(&serv->sv_temptimer, jiffies + svc_conn_age_period * HZ);
996 }
997
998 /* Close temporary transports whose xpt_local matches server_addr immediately
999  * instead of waiting for them to be picked up by the timer.
1000  *
1001  * This is meant to be called from a notifier_block that runs when an ip
1002  * address is deleted.
1003  */
1004 void svc_age_temp_xprts_now(struct svc_serv *serv, struct sockaddr *server_addr)
1005 {
1006         struct svc_xprt *xprt;
1007         struct list_head *le, *next;
1008         LIST_HEAD(to_be_closed);
1009
1010         spin_lock_bh(&serv->sv_lock);
1011         list_for_each_safe(le, next, &serv->sv_tempsocks) {
1012                 xprt = list_entry(le, struct svc_xprt, xpt_list);
1013                 if (rpc_cmp_addr(server_addr, (struct sockaddr *)
1014                                 &xprt->xpt_local)) {
1015                         dprintk("svc_age_temp_xprts_now: found %p\n", xprt);
1016                         list_move(le, &to_be_closed);
1017                 }
1018         }
1019         spin_unlock_bh(&serv->sv_lock);
1020
1021         while (!list_empty(&to_be_closed)) {
1022                 le = to_be_closed.next;
1023                 list_del_init(le);
1024                 xprt = list_entry(le, struct svc_xprt, xpt_list);
1025                 set_bit(XPT_CLOSE, &xprt->xpt_flags);
1026                 set_bit(XPT_KILL_TEMP, &xprt->xpt_flags);
1027                 dprintk("svc_age_temp_xprts_now: queuing xprt %p for closing\n",
1028                                 xprt);
1029                 svc_xprt_enqueue(xprt);
1030         }
1031 }
1032 EXPORT_SYMBOL_GPL(svc_age_temp_xprts_now);
1033
1034 static void call_xpt_users(struct svc_xprt *xprt)
1035 {
1036         struct svc_xpt_user *u;
1037
1038         spin_lock(&xprt->xpt_lock);
1039         while (!list_empty(&xprt->xpt_users)) {
1040                 u = list_first_entry(&xprt->xpt_users, struct svc_xpt_user, list);
1041                 list_del_init(&u->list);
1042                 u->callback(u);
1043         }
1044         spin_unlock(&xprt->xpt_lock);
1045 }
1046
1047 /*
1048  * Remove a dead transport
1049  */
1050 static void svc_delete_xprt(struct svc_xprt *xprt)
1051 {
1052         struct svc_serv *serv = xprt->xpt_server;
1053         struct svc_deferred_req *dr;
1054
1055         if (test_and_set_bit(XPT_DEAD, &xprt->xpt_flags))
1056                 return;
1057
1058         trace_svc_xprt_detach(xprt);
1059         xprt->xpt_ops->xpo_detach(xprt);
1060         if (xprt->xpt_bc_xprt)
1061                 xprt->xpt_bc_xprt->ops->close(xprt->xpt_bc_xprt);
1062
1063         spin_lock_bh(&serv->sv_lock);
1064         list_del_init(&xprt->xpt_list);
1065         WARN_ON_ONCE(!list_empty(&xprt->xpt_ready));
1066         if (test_bit(XPT_TEMP, &xprt->xpt_flags))
1067                 serv->sv_tmpcnt--;
1068         spin_unlock_bh(&serv->sv_lock);
1069
1070         while ((dr = svc_deferred_dequeue(xprt)) != NULL)
1071                 free_deferred(xprt, dr);
1072
1073         call_xpt_users(xprt);
1074         svc_xprt_put(xprt);
1075 }
1076
1077 /**
1078  * svc_xprt_close - Close a client connection
1079  * @xprt: transport to disconnect
1080  *
1081  */
1082 void svc_xprt_close(struct svc_xprt *xprt)
1083 {
1084         trace_svc_xprt_close(xprt);
1085         set_bit(XPT_CLOSE, &xprt->xpt_flags);
1086         if (test_and_set_bit(XPT_BUSY, &xprt->xpt_flags))
1087                 /* someone else will have to effect the close */
1088                 return;
1089         /*
1090          * We expect svc_close_xprt() to work even when no threads are
1091          * running (e.g., while configuring the server before starting
1092          * any threads), so if the transport isn't busy, we delete
1093          * it ourself:
1094          */
1095         svc_delete_xprt(xprt);
1096 }
1097 EXPORT_SYMBOL_GPL(svc_xprt_close);
1098
1099 static int svc_close_list(struct svc_serv *serv, struct list_head *xprt_list, struct net *net)
1100 {
1101         struct svc_xprt *xprt;
1102         int ret = 0;
1103
1104         spin_lock_bh(&serv->sv_lock);
1105         list_for_each_entry(xprt, xprt_list, xpt_list) {
1106                 if (xprt->xpt_net != net)
1107                         continue;
1108                 ret++;
1109                 set_bit(XPT_CLOSE, &xprt->xpt_flags);
1110                 svc_xprt_enqueue(xprt);
1111         }
1112         spin_unlock_bh(&serv->sv_lock);
1113         return ret;
1114 }
1115
1116 static struct svc_xprt *svc_dequeue_net(struct svc_serv *serv, struct net *net)
1117 {
1118         struct svc_pool *pool;
1119         struct svc_xprt *xprt;
1120         struct svc_xprt *tmp;
1121         int i;
1122
1123         for (i = 0; i < serv->sv_nrpools; i++) {
1124                 pool = &serv->sv_pools[i];
1125
1126                 spin_lock_bh(&pool->sp_lock);
1127                 list_for_each_entry_safe(xprt, tmp, &pool->sp_sockets, xpt_ready) {
1128                         if (xprt->xpt_net != net)
1129                                 continue;
1130                         list_del_init(&xprt->xpt_ready);
1131                         spin_unlock_bh(&pool->sp_lock);
1132                         return xprt;
1133                 }
1134                 spin_unlock_bh(&pool->sp_lock);
1135         }
1136         return NULL;
1137 }
1138
1139 static void svc_clean_up_xprts(struct svc_serv *serv, struct net *net)
1140 {
1141         struct svc_xprt *xprt;
1142
1143         while ((xprt = svc_dequeue_net(serv, net))) {
1144                 set_bit(XPT_CLOSE, &xprt->xpt_flags);
1145                 svc_delete_xprt(xprt);
1146         }
1147 }
1148
1149 /**
1150  * svc_xprt_destroy_all - Destroy transports associated with @serv
1151  * @serv: RPC service to be shut down
1152  * @net: target network namespace
1153  *
1154  * Server threads may still be running (especially in the case where the
1155  * service is still running in other network namespaces).
1156  *
1157  * So we shut down sockets the same way we would on a running server, by
1158  * setting XPT_CLOSE, enqueuing, and letting a thread pick it up to do
1159  * the close.  In the case there are no such other threads,
1160  * threads running, svc_clean_up_xprts() does a simple version of a
1161  * server's main event loop, and in the case where there are other
1162  * threads, we may need to wait a little while and then check again to
1163  * see if they're done.
1164  */
1165 void svc_xprt_destroy_all(struct svc_serv *serv, struct net *net)
1166 {
1167         int delay = 0;
1168
1169         while (svc_close_list(serv, &serv->sv_permsocks, net) +
1170                svc_close_list(serv, &serv->sv_tempsocks, net)) {
1171
1172                 svc_clean_up_xprts(serv, net);
1173                 msleep(delay++);
1174         }
1175 }
1176 EXPORT_SYMBOL_GPL(svc_xprt_destroy_all);
1177
1178 /*
1179  * Handle defer and revisit of requests
1180  */
1181
1182 static void svc_revisit(struct cache_deferred_req *dreq, int too_many)
1183 {
1184         struct svc_deferred_req *dr =
1185                 container_of(dreq, struct svc_deferred_req, handle);
1186         struct svc_xprt *xprt = dr->xprt;
1187
1188         spin_lock(&xprt->xpt_lock);
1189         set_bit(XPT_DEFERRED, &xprt->xpt_flags);
1190         if (too_many || test_bit(XPT_DEAD, &xprt->xpt_flags)) {
1191                 spin_unlock(&xprt->xpt_lock);
1192                 trace_svc_defer_drop(dr);
1193                 free_deferred(xprt, dr);
1194                 svc_xprt_put(xprt);
1195                 return;
1196         }
1197         dr->xprt = NULL;
1198         list_add(&dr->handle.recent, &xprt->xpt_deferred);
1199         spin_unlock(&xprt->xpt_lock);
1200         trace_svc_defer_queue(dr);
1201         svc_xprt_enqueue(xprt);
1202         svc_xprt_put(xprt);
1203 }
1204
1205 /*
1206  * Save the request off for later processing. The request buffer looks
1207  * like this:
1208  *
1209  * <xprt-header><rpc-header><rpc-pagelist><rpc-tail>
1210  *
1211  * This code can only handle requests that consist of an xprt-header
1212  * and rpc-header.
1213  */
1214 static struct cache_deferred_req *svc_defer(struct cache_req *req)
1215 {
1216         struct svc_rqst *rqstp = container_of(req, struct svc_rqst, rq_chandle);
1217         struct svc_deferred_req *dr;
1218
1219         if (rqstp->rq_arg.page_len || !test_bit(RQ_USEDEFERRAL, &rqstp->rq_flags))
1220                 return NULL; /* if more than a page, give up FIXME */
1221         if (rqstp->rq_deferred) {
1222                 dr = rqstp->rq_deferred;
1223                 rqstp->rq_deferred = NULL;
1224         } else {
1225                 size_t skip;
1226                 size_t size;
1227                 /* FIXME maybe discard if size too large */
1228                 size = sizeof(struct svc_deferred_req) + rqstp->rq_arg.len;
1229                 dr = kmalloc(size, GFP_KERNEL);
1230                 if (dr == NULL)
1231                         return NULL;
1232
1233                 dr->handle.owner = rqstp->rq_server;
1234                 dr->prot = rqstp->rq_prot;
1235                 memcpy(&dr->addr, &rqstp->rq_addr, rqstp->rq_addrlen);
1236                 dr->addrlen = rqstp->rq_addrlen;
1237                 dr->daddr = rqstp->rq_daddr;
1238                 dr->argslen = rqstp->rq_arg.len >> 2;
1239
1240                 /* back up head to the start of the buffer and copy */
1241                 skip = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len;
1242                 memcpy(dr->args, rqstp->rq_arg.head[0].iov_base - skip,
1243                        dr->argslen << 2);
1244         }
1245         dr->xprt_ctxt = rqstp->rq_xprt_ctxt;
1246         rqstp->rq_xprt_ctxt = NULL;
1247         trace_svc_defer(rqstp);
1248         svc_xprt_get(rqstp->rq_xprt);
1249         dr->xprt = rqstp->rq_xprt;
1250         set_bit(RQ_DROPME, &rqstp->rq_flags);
1251
1252         dr->handle.revisit = svc_revisit;
1253         return &dr->handle;
1254 }
1255
1256 /*
1257  * recv data from a deferred request into an active one
1258  */
1259 static noinline int svc_deferred_recv(struct svc_rqst *rqstp)
1260 {
1261         struct svc_deferred_req *dr = rqstp->rq_deferred;
1262
1263         trace_svc_defer_recv(dr);
1264
1265         /* setup iov_base past transport header */
1266         rqstp->rq_arg.head[0].iov_base = dr->args;
1267         /* The iov_len does not include the transport header bytes */
1268         rqstp->rq_arg.head[0].iov_len = dr->argslen << 2;
1269         rqstp->rq_arg.page_len = 0;
1270         /* The rq_arg.len includes the transport header bytes */
1271         rqstp->rq_arg.len     = dr->argslen << 2;
1272         rqstp->rq_prot        = dr->prot;
1273         memcpy(&rqstp->rq_addr, &dr->addr, dr->addrlen);
1274         rqstp->rq_addrlen     = dr->addrlen;
1275         /* Save off transport header len in case we get deferred again */
1276         rqstp->rq_daddr       = dr->daddr;
1277         rqstp->rq_respages    = rqstp->rq_pages;
1278         rqstp->rq_xprt_ctxt   = dr->xprt_ctxt;
1279
1280         dr->xprt_ctxt = NULL;
1281         svc_xprt_received(rqstp->rq_xprt);
1282         return dr->argslen << 2;
1283 }
1284
1285
1286 static struct svc_deferred_req *svc_deferred_dequeue(struct svc_xprt *xprt)
1287 {
1288         struct svc_deferred_req *dr = NULL;
1289
1290         if (!test_bit(XPT_DEFERRED, &xprt->xpt_flags))
1291                 return NULL;
1292         spin_lock(&xprt->xpt_lock);
1293         if (!list_empty(&xprt->xpt_deferred)) {
1294                 dr = list_entry(xprt->xpt_deferred.next,
1295                                 struct svc_deferred_req,
1296                                 handle.recent);
1297                 list_del_init(&dr->handle.recent);
1298         } else
1299                 clear_bit(XPT_DEFERRED, &xprt->xpt_flags);
1300         spin_unlock(&xprt->xpt_lock);
1301         return dr;
1302 }
1303
1304 /**
1305  * svc_find_xprt - find an RPC transport instance
1306  * @serv: pointer to svc_serv to search
1307  * @xcl_name: C string containing transport's class name
1308  * @net: owner net pointer
1309  * @af: Address family of transport's local address
1310  * @port: transport's IP port number
1311  *
1312  * Return the transport instance pointer for the endpoint accepting
1313  * connections/peer traffic from the specified transport class,
1314  * address family and port.
1315  *
1316  * Specifying 0 for the address family or port is effectively a
1317  * wild-card, and will result in matching the first transport in the
1318  * service's list that has a matching class name.
1319  */
1320 struct svc_xprt *svc_find_xprt(struct svc_serv *serv, const char *xcl_name,
1321                                struct net *net, const sa_family_t af,
1322                                const unsigned short port)
1323 {
1324         struct svc_xprt *xprt;
1325         struct svc_xprt *found = NULL;
1326
1327         /* Sanity check the args */
1328         if (serv == NULL || xcl_name == NULL)
1329                 return found;
1330
1331         spin_lock_bh(&serv->sv_lock);
1332         list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list) {
1333                 if (xprt->xpt_net != net)
1334                         continue;
1335                 if (strcmp(xprt->xpt_class->xcl_name, xcl_name))
1336                         continue;
1337                 if (af != AF_UNSPEC && af != xprt->xpt_local.ss_family)
1338                         continue;
1339                 if (port != 0 && port != svc_xprt_local_port(xprt))
1340                         continue;
1341                 found = xprt;
1342                 svc_xprt_get(xprt);
1343                 break;
1344         }
1345         spin_unlock_bh(&serv->sv_lock);
1346         return found;
1347 }
1348 EXPORT_SYMBOL_GPL(svc_find_xprt);
1349
1350 static int svc_one_xprt_name(const struct svc_xprt *xprt,
1351                              char *pos, int remaining)
1352 {
1353         int len;
1354
1355         len = snprintf(pos, remaining, "%s %u\n",
1356                         xprt->xpt_class->xcl_name,
1357                         svc_xprt_local_port(xprt));
1358         if (len >= remaining)
1359                 return -ENAMETOOLONG;
1360         return len;
1361 }
1362
1363 /**
1364  * svc_xprt_names - format a buffer with a list of transport names
1365  * @serv: pointer to an RPC service
1366  * @buf: pointer to a buffer to be filled in
1367  * @buflen: length of buffer to be filled in
1368  *
1369  * Fills in @buf with a string containing a list of transport names,
1370  * each name terminated with '\n'.
1371  *
1372  * Returns positive length of the filled-in string on success; otherwise
1373  * a negative errno value is returned if an error occurs.
1374  */
1375 int svc_xprt_names(struct svc_serv *serv, char *buf, const int buflen)
1376 {
1377         struct svc_xprt *xprt;
1378         int len, totlen;
1379         char *pos;
1380
1381         /* Sanity check args */
1382         if (!serv)
1383                 return 0;
1384
1385         spin_lock_bh(&serv->sv_lock);
1386
1387         pos = buf;
1388         totlen = 0;
1389         list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list) {
1390                 len = svc_one_xprt_name(xprt, pos, buflen - totlen);
1391                 if (len < 0) {
1392                         *buf = '\0';
1393                         totlen = len;
1394                 }
1395                 if (len <= 0)
1396                         break;
1397
1398                 pos += len;
1399                 totlen += len;
1400         }
1401
1402         spin_unlock_bh(&serv->sv_lock);
1403         return totlen;
1404 }
1405 EXPORT_SYMBOL_GPL(svc_xprt_names);
1406
1407
1408 /*----------------------------------------------------------------------------*/
1409
1410 static void *svc_pool_stats_start(struct seq_file *m, loff_t *pos)
1411 {
1412         unsigned int pidx = (unsigned int)*pos;
1413         struct svc_serv *serv = m->private;
1414
1415         dprintk("svc_pool_stats_start, *pidx=%u\n", pidx);
1416
1417         if (!pidx)
1418                 return SEQ_START_TOKEN;
1419         return (pidx > serv->sv_nrpools ? NULL : &serv->sv_pools[pidx-1]);
1420 }
1421
1422 static void *svc_pool_stats_next(struct seq_file *m, void *p, loff_t *pos)
1423 {
1424         struct svc_pool *pool = p;
1425         struct svc_serv *serv = m->private;
1426
1427         dprintk("svc_pool_stats_next, *pos=%llu\n", *pos);
1428
1429         if (p == SEQ_START_TOKEN) {
1430                 pool = &serv->sv_pools[0];
1431         } else {
1432                 unsigned int pidx = (pool - &serv->sv_pools[0]);
1433                 if (pidx < serv->sv_nrpools-1)
1434                         pool = &serv->sv_pools[pidx+1];
1435                 else
1436                         pool = NULL;
1437         }
1438         ++*pos;
1439         return pool;
1440 }
1441
1442 static void svc_pool_stats_stop(struct seq_file *m, void *p)
1443 {
1444 }
1445
1446 static int svc_pool_stats_show(struct seq_file *m, void *p)
1447 {
1448         struct svc_pool *pool = p;
1449
1450         if (p == SEQ_START_TOKEN) {
1451                 seq_puts(m, "# pool packets-arrived sockets-enqueued threads-woken threads-timedout\n");
1452                 return 0;
1453         }
1454
1455         seq_printf(m, "%u %llu %llu %llu %llu\n",
1456                 pool->sp_id,
1457                 percpu_counter_sum_positive(&pool->sp_sockets_queued),
1458                 percpu_counter_sum_positive(&pool->sp_sockets_queued),
1459                 percpu_counter_sum_positive(&pool->sp_threads_woken),
1460                 percpu_counter_sum_positive(&pool->sp_threads_timedout));
1461
1462         return 0;
1463 }
1464
1465 static const struct seq_operations svc_pool_stats_seq_ops = {
1466         .start  = svc_pool_stats_start,
1467         .next   = svc_pool_stats_next,
1468         .stop   = svc_pool_stats_stop,
1469         .show   = svc_pool_stats_show,
1470 };
1471
1472 int svc_pool_stats_open(struct svc_serv *serv, struct file *file)
1473 {
1474         int err;
1475
1476         err = seq_open(file, &svc_pool_stats_seq_ops);
1477         if (!err)
1478                 ((struct seq_file *) file->private_data)->private = serv;
1479         return err;
1480 }
1481 EXPORT_SYMBOL(svc_pool_stats_open);
1482
1483 /*----------------------------------------------------------------------------*/