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