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