net/mlx4_en: Fix mixed PFC and Global pause user control requests
[pandora-kernel.git] / net / sunrpc / svc_xprt.c
1 /*
2  * linux/net/sunrpc/svc_xprt.c
3  *
4  * Author: Tom Tucker <tom@opengridcomputing.com>
5  */
6
7 #include <linux/sched.h>
8 #include <linux/errno.h>
9 #include <linux/freezer.h>
10 #include <linux/kthread.h>
11 #include <linux/slab.h>
12 #include <net/sock.h>
13 #include <linux/sunrpc/stats.h>
14 #include <linux/sunrpc/svc_xprt.h>
15 #include <linux/sunrpc/svcsock.h>
16 #include <linux/sunrpc/xprt.h>
17 #include <linux/module.h>
18
19 #define RPCDBG_FACILITY RPCDBG_SVCXPRT
20
21 static struct svc_deferred_req *svc_deferred_dequeue(struct svc_xprt *xprt);
22 static int svc_deferred_recv(struct svc_rqst *rqstp);
23 static struct cache_deferred_req *svc_defer(struct cache_req *req);
24 static void svc_age_temp_xprts(unsigned long closure);
25
26 /* apparently the "standard" is that clients close
27  * idle connections after 5 minutes, servers after
28  * 6 minutes
29  *   http://www.connectathon.org/talks96/nfstcp.pdf
30  */
31 static int svc_conn_age_period = 6*60;
32
33 /* List of registered transport classes */
34 static DEFINE_SPINLOCK(svc_xprt_class_lock);
35 static LIST_HEAD(svc_xprt_class_list);
36
37 /* SMP locking strategy:
38  *
39  *      svc_pool->sp_lock protects most of the fields of that pool.
40  *      svc_serv->sv_lock protects sv_tempsocks, sv_permsocks, sv_tmpcnt.
41  *      when both need to be taken (rare), svc_serv->sv_lock is first.
42  *      BKL protects svc_serv->sv_nrthread.
43  *      svc_sock->sk_lock protects the svc_sock->sk_deferred list
44  *             and the ->sk_info_authunix cache.
45  *
46  *      The XPT_BUSY bit in xprt->xpt_flags prevents a transport being
47  *      enqueued multiply. During normal transport processing this bit
48  *      is set by svc_xprt_enqueue and cleared by svc_xprt_received.
49  *      Providers should not manipulate this bit directly.
50  *
51  *      Some flags can be set to certain values at any time
52  *      providing that certain rules are followed:
53  *
54  *      XPT_CONN, XPT_DATA:
55  *              - Can be set or cleared at any time.
56  *              - After a set, svc_xprt_enqueue must be called to enqueue
57  *                the transport for processing.
58  *              - After a clear, the transport must be read/accepted.
59  *                If this succeeds, it must be set again.
60  *      XPT_CLOSE:
61  *              - Can set at any time. It is never cleared.
62  *      XPT_DEAD:
63  *              - Can only be set while XPT_BUSY is held which ensures
64  *                that no other thread will be using the transport or will
65  *                try to set XPT_DEAD.
66  */
67
68 int svc_reg_xprt_class(struct svc_xprt_class *xcl)
69 {
70         struct svc_xprt_class *cl;
71         int res = -EEXIST;
72
73         dprintk("svc: Adding svc transport class '%s'\n", xcl->xcl_name);
74
75         INIT_LIST_HEAD(&xcl->xcl_list);
76         spin_lock(&svc_xprt_class_lock);
77         /* Make sure there isn't already a class with the same name */
78         list_for_each_entry(cl, &svc_xprt_class_list, xcl_list) {
79                 if (strcmp(xcl->xcl_name, cl->xcl_name) == 0)
80                         goto out;
81         }
82         list_add_tail(&xcl->xcl_list, &svc_xprt_class_list);
83         res = 0;
84 out:
85         spin_unlock(&svc_xprt_class_lock);
86         return res;
87 }
88 EXPORT_SYMBOL_GPL(svc_reg_xprt_class);
89
90 void svc_unreg_xprt_class(struct svc_xprt_class *xcl)
91 {
92         dprintk("svc: Removing svc transport class '%s'\n", xcl->xcl_name);
93         spin_lock(&svc_xprt_class_lock);
94         list_del_init(&xcl->xcl_list);
95         spin_unlock(&svc_xprt_class_lock);
96 }
97 EXPORT_SYMBOL_GPL(svc_unreg_xprt_class);
98
99 /*
100  * Format the transport list for printing
101  */
102 int svc_print_xprts(char *buf, int maxlen)
103 {
104         struct svc_xprt_class *xcl;
105         char tmpstr[80];
106         int len = 0;
107         buf[0] = '\0';
108
109         spin_lock(&svc_xprt_class_lock);
110         list_for_each_entry(xcl, &svc_xprt_class_list, xcl_list) {
111                 int slen;
112
113                 sprintf(tmpstr, "%s %d\n", xcl->xcl_name, xcl->xcl_max_payload);
114                 slen = strlen(tmpstr);
115                 if (len + slen > maxlen)
116                         break;
117                 len += slen;
118                 strcat(buf, tmpstr);
119         }
120         spin_unlock(&svc_xprt_class_lock);
121
122         return len;
123 }
124
125 static void svc_xprt_free(struct kref *kref)
126 {
127         struct svc_xprt *xprt =
128                 container_of(kref, struct svc_xprt, xpt_ref);
129         struct module *owner = xprt->xpt_class->xcl_owner;
130         if (test_bit(XPT_CACHE_AUTH, &xprt->xpt_flags))
131                 svcauth_unix_info_release(xprt);
132         put_net(xprt->xpt_net);
133         /* See comment on corresponding get in xs_setup_bc_tcp(): */
134         if (xprt->xpt_bc_xprt)
135                 xprt_put(xprt->xpt_bc_xprt);
136         xprt->xpt_ops->xpo_free(xprt);
137         module_put(owner);
138 }
139
140 void svc_xprt_put(struct svc_xprt *xprt)
141 {
142         kref_put(&xprt->xpt_ref, svc_xprt_free);
143 }
144 EXPORT_SYMBOL_GPL(svc_xprt_put);
145
146 /*
147  * Called by transport drivers to initialize the transport independent
148  * portion of the transport instance.
149  */
150 void svc_xprt_init(struct svc_xprt_class *xcl, struct svc_xprt *xprt,
151                    struct svc_serv *serv)
152 {
153         memset(xprt, 0, sizeof(*xprt));
154         xprt->xpt_class = xcl;
155         xprt->xpt_ops = xcl->xcl_ops;
156         kref_init(&xprt->xpt_ref);
157         xprt->xpt_server = serv;
158         INIT_LIST_HEAD(&xprt->xpt_list);
159         INIT_LIST_HEAD(&xprt->xpt_ready);
160         INIT_LIST_HEAD(&xprt->xpt_deferred);
161         INIT_LIST_HEAD(&xprt->xpt_users);
162         mutex_init(&xprt->xpt_mutex);
163         spin_lock_init(&xprt->xpt_lock);
164         set_bit(XPT_BUSY, &xprt->xpt_flags);
165         rpc_init_wait_queue(&xprt->xpt_bc_pending, "xpt_bc_pending");
166         xprt->xpt_net = get_net(&init_net);
167 }
168 EXPORT_SYMBOL_GPL(svc_xprt_init);
169
170 static struct svc_xprt *__svc_xpo_create(struct svc_xprt_class *xcl,
171                                          struct svc_serv *serv,
172                                          struct net *net,
173                                          const int family,
174                                          const unsigned short port,
175                                          int flags)
176 {
177         struct sockaddr_in sin = {
178                 .sin_family             = AF_INET,
179                 .sin_addr.s_addr        = htonl(INADDR_ANY),
180                 .sin_port               = htons(port),
181         };
182 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
183         struct sockaddr_in6 sin6 = {
184                 .sin6_family            = AF_INET6,
185                 .sin6_addr              = IN6ADDR_ANY_INIT,
186                 .sin6_port              = htons(port),
187         };
188 #endif  /* defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) */
189         struct sockaddr *sap;
190         size_t len;
191
192         switch (family) {
193         case PF_INET:
194                 sap = (struct sockaddr *)&sin;
195                 len = sizeof(sin);
196                 break;
197 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
198         case PF_INET6:
199                 sap = (struct sockaddr *)&sin6;
200                 len = sizeof(sin6);
201                 break;
202 #endif  /* defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) */
203         default:
204                 return ERR_PTR(-EAFNOSUPPORT);
205         }
206
207         return xcl->xcl_ops->xpo_create(serv, net, sap, len, flags);
208 }
209
210 int svc_create_xprt(struct svc_serv *serv, const char *xprt_name,
211                     struct net *net, const int family,
212                     const unsigned short port, int flags)
213 {
214         struct svc_xprt_class *xcl;
215
216         dprintk("svc: creating transport %s[%d]\n", xprt_name, port);
217         spin_lock(&svc_xprt_class_lock);
218         list_for_each_entry(xcl, &svc_xprt_class_list, xcl_list) {
219                 struct svc_xprt *newxprt;
220                 unsigned short newport;
221
222                 if (strcmp(xprt_name, xcl->xcl_name))
223                         continue;
224
225                 if (!try_module_get(xcl->xcl_owner))
226                         goto err;
227
228                 spin_unlock(&svc_xprt_class_lock);
229                 newxprt = __svc_xpo_create(xcl, serv, net, family, port, flags);
230                 if (IS_ERR(newxprt)) {
231                         module_put(xcl->xcl_owner);
232                         return PTR_ERR(newxprt);
233                 }
234
235                 clear_bit(XPT_TEMP, &newxprt->xpt_flags);
236                 spin_lock_bh(&serv->sv_lock);
237                 list_add(&newxprt->xpt_list, &serv->sv_permsocks);
238                 spin_unlock_bh(&serv->sv_lock);
239                 newport = svc_xprt_local_port(newxprt);
240                 clear_bit(XPT_BUSY, &newxprt->xpt_flags);
241                 return newport;
242         }
243  err:
244         spin_unlock(&svc_xprt_class_lock);
245         dprintk("svc: transport %s not found\n", xprt_name);
246
247         /* This errno is exposed to user space.  Provide a reasonable
248          * perror msg for a bad transport. */
249         return -EPROTONOSUPPORT;
250 }
251 EXPORT_SYMBOL_GPL(svc_create_xprt);
252
253 /*
254  * Copy the local and remote xprt addresses to the rqstp structure
255  */
256 void svc_xprt_copy_addrs(struct svc_rqst *rqstp, struct svc_xprt *xprt)
257 {
258         memcpy(&rqstp->rq_addr, &xprt->xpt_remote, xprt->xpt_remotelen);
259         rqstp->rq_addrlen = xprt->xpt_remotelen;
260
261         /*
262          * Destination address in request is needed for binding the
263          * source address in RPC replies/callbacks later.
264          */
265         memcpy(&rqstp->rq_daddr, &xprt->xpt_local, xprt->xpt_locallen);
266         rqstp->rq_daddrlen = xprt->xpt_locallen;
267 }
268 EXPORT_SYMBOL_GPL(svc_xprt_copy_addrs);
269
270 /**
271  * svc_print_addr - Format rq_addr field for printing
272  * @rqstp: svc_rqst struct containing address to print
273  * @buf: target buffer for formatted address
274  * @len: length of target buffer
275  *
276  */
277 char *svc_print_addr(struct svc_rqst *rqstp, char *buf, size_t len)
278 {
279         return __svc_print_addr(svc_addr(rqstp), buf, len);
280 }
281 EXPORT_SYMBOL_GPL(svc_print_addr);
282
283 /*
284  * Queue up an idle server thread.  Must have pool->sp_lock held.
285  * Note: this is really a stack rather than a queue, so that we only
286  * use as many different threads as we need, and the rest don't pollute
287  * the cache.
288  */
289 static void svc_thread_enqueue(struct svc_pool *pool, struct svc_rqst *rqstp)
290 {
291         list_add(&rqstp->rq_list, &pool->sp_threads);
292 }
293
294 /*
295  * Dequeue an nfsd thread.  Must have pool->sp_lock held.
296  */
297 static void svc_thread_dequeue(struct svc_pool *pool, struct svc_rqst *rqstp)
298 {
299         list_del(&rqstp->rq_list);
300 }
301
302 static bool svc_xprt_has_something_to_do(struct svc_xprt *xprt)
303 {
304         if (xprt->xpt_flags & ((1<<XPT_CONN)|(1<<XPT_CLOSE)))
305                 return true;
306         if (xprt->xpt_flags & ((1<<XPT_DATA)|(1<<XPT_DEFERRED)))
307                 return xprt->xpt_ops->xpo_has_wspace(xprt);
308         return false;
309 }
310
311 /*
312  * Queue up a transport with data pending. If there are idle nfsd
313  * processes, wake 'em up.
314  *
315  */
316 void svc_xprt_enqueue(struct svc_xprt *xprt)
317 {
318         struct svc_pool *pool;
319         struct svc_rqst *rqstp;
320         int cpu;
321
322         if (!svc_xprt_has_something_to_do(xprt))
323                 return;
324
325         cpu = get_cpu();
326         pool = svc_pool_for_cpu(xprt->xpt_server, cpu);
327         put_cpu();
328
329         spin_lock_bh(&pool->sp_lock);
330
331         if (!list_empty(&pool->sp_threads) &&
332             !list_empty(&pool->sp_sockets))
333                 printk(KERN_ERR
334                        "svc_xprt_enqueue: "
335                        "threads and transports both waiting??\n");
336
337         pool->sp_stats.packets++;
338
339         /* Mark transport as busy. It will remain in this state until
340          * the provider calls svc_xprt_received. We update XPT_BUSY
341          * atomically because it also guards against trying to enqueue
342          * the transport twice.
343          */
344         if (test_and_set_bit(XPT_BUSY, &xprt->xpt_flags)) {
345                 /* Don't enqueue transport while already enqueued */
346                 dprintk("svc: transport %p busy, not enqueued\n", xprt);
347                 goto out_unlock;
348         }
349
350         if (!list_empty(&pool->sp_threads)) {
351                 rqstp = list_entry(pool->sp_threads.next,
352                                    struct svc_rqst,
353                                    rq_list);
354                 dprintk("svc: transport %p served by daemon %p\n",
355                         xprt, rqstp);
356                 svc_thread_dequeue(pool, rqstp);
357                 if (rqstp->rq_xprt)
358                         printk(KERN_ERR
359                                 "svc_xprt_enqueue: server %p, rq_xprt=%p!\n",
360                                 rqstp, rqstp->rq_xprt);
361                 rqstp->rq_xprt = xprt;
362                 svc_xprt_get(xprt);
363                 pool->sp_stats.threads_woken++;
364                 wake_up(&rqstp->rq_wait);
365         } else {
366                 dprintk("svc: transport %p put into queue\n", xprt);
367                 list_add_tail(&xprt->xpt_ready, &pool->sp_sockets);
368                 pool->sp_stats.sockets_queued++;
369         }
370
371 out_unlock:
372         spin_unlock_bh(&pool->sp_lock);
373 }
374 EXPORT_SYMBOL_GPL(svc_xprt_enqueue);
375
376 /*
377  * Dequeue the first transport.  Must be called with the pool->sp_lock held.
378  */
379 static struct svc_xprt *svc_xprt_dequeue(struct svc_pool *pool)
380 {
381         struct svc_xprt *xprt;
382
383         if (list_empty(&pool->sp_sockets))
384                 return NULL;
385
386         xprt = list_entry(pool->sp_sockets.next,
387                           struct svc_xprt, xpt_ready);
388         list_del_init(&xprt->xpt_ready);
389
390         dprintk("svc: transport %p dequeued, inuse=%d\n",
391                 xprt, atomic_read(&xprt->xpt_ref.refcount));
392
393         return xprt;
394 }
395
396 /*
397  * svc_xprt_received conditionally queues the transport for processing
398  * by another thread. The caller must hold the XPT_BUSY bit and must
399  * not thereafter touch transport data.
400  *
401  * Note: XPT_DATA only gets cleared when a read-attempt finds no (or
402  * insufficient) data.
403  */
404 void svc_xprt_received(struct svc_xprt *xprt)
405 {
406         BUG_ON(!test_bit(XPT_BUSY, &xprt->xpt_flags));
407         /* As soon as we clear busy, the xprt could be closed and
408          * 'put', so we need a reference to call svc_xprt_enqueue with:
409          */
410         svc_xprt_get(xprt);
411         clear_bit(XPT_BUSY, &xprt->xpt_flags);
412         svc_xprt_enqueue(xprt);
413         svc_xprt_put(xprt);
414 }
415 EXPORT_SYMBOL_GPL(svc_xprt_received);
416
417 /**
418  * svc_reserve - change the space reserved for the reply to a request.
419  * @rqstp:  The request in question
420  * @space: new max space to reserve
421  *
422  * Each request reserves some space on the output queue of the transport
423  * to make sure the reply fits.  This function reduces that reserved
424  * space to be the amount of space used already, plus @space.
425  *
426  */
427 void svc_reserve(struct svc_rqst *rqstp, int space)
428 {
429         space += rqstp->rq_res.head[0].iov_len;
430
431         if (space < rqstp->rq_reserved) {
432                 struct svc_xprt *xprt = rqstp->rq_xprt;
433                 atomic_sub((rqstp->rq_reserved - space), &xprt->xpt_reserved);
434                 rqstp->rq_reserved = space;
435
436                 svc_xprt_enqueue(xprt);
437         }
438 }
439 EXPORT_SYMBOL_GPL(svc_reserve);
440
441 static void svc_xprt_release(struct svc_rqst *rqstp)
442 {
443         struct svc_xprt *xprt = rqstp->rq_xprt;
444
445         rqstp->rq_xprt->xpt_ops->xpo_release_rqst(rqstp);
446
447         kfree(rqstp->rq_deferred);
448         rqstp->rq_deferred = NULL;
449
450         svc_free_res_pages(rqstp);
451         rqstp->rq_res.page_len = 0;
452         rqstp->rq_res.page_base = 0;
453
454         /* Reset response buffer and release
455          * the reservation.
456          * But first, check that enough space was reserved
457          * for the reply, otherwise we have a bug!
458          */
459         if ((rqstp->rq_res.len) >  rqstp->rq_reserved)
460                 printk(KERN_ERR "RPC request reserved %d but used %d\n",
461                        rqstp->rq_reserved,
462                        rqstp->rq_res.len);
463
464         rqstp->rq_res.head[0].iov_len = 0;
465         svc_reserve(rqstp, 0);
466         rqstp->rq_xprt = NULL;
467
468         svc_xprt_put(xprt);
469 }
470
471 /*
472  * External function to wake up a server waiting for data
473  * This really only makes sense for services like lockd
474  * which have exactly one thread anyway.
475  */
476 void svc_wake_up(struct svc_serv *serv)
477 {
478         struct svc_rqst *rqstp;
479         unsigned int i;
480         struct svc_pool *pool;
481
482         for (i = 0; i < serv->sv_nrpools; i++) {
483                 pool = &serv->sv_pools[i];
484
485                 spin_lock_bh(&pool->sp_lock);
486                 if (!list_empty(&pool->sp_threads)) {
487                         rqstp = list_entry(pool->sp_threads.next,
488                                            struct svc_rqst,
489                                            rq_list);
490                         dprintk("svc: daemon %p woken up.\n", rqstp);
491                         /*
492                         svc_thread_dequeue(pool, rqstp);
493                         rqstp->rq_xprt = NULL;
494                          */
495                         wake_up(&rqstp->rq_wait);
496                 }
497                 spin_unlock_bh(&pool->sp_lock);
498         }
499 }
500 EXPORT_SYMBOL_GPL(svc_wake_up);
501
502 int svc_port_is_privileged(struct sockaddr *sin)
503 {
504         switch (sin->sa_family) {
505         case AF_INET:
506                 return ntohs(((struct sockaddr_in *)sin)->sin_port)
507                         < PROT_SOCK;
508         case AF_INET6:
509                 return ntohs(((struct sockaddr_in6 *)sin)->sin6_port)
510                         < PROT_SOCK;
511         default:
512                 return 0;
513         }
514 }
515
516 /*
517  * Make sure that we don't have too many active connections. If we have,
518  * something must be dropped. It's not clear what will happen if we allow
519  * "too many" connections, but when dealing with network-facing software,
520  * we have to code defensively. Here we do that by imposing hard limits.
521  *
522  * There's no point in trying to do random drop here for DoS
523  * prevention. The NFS clients does 1 reconnect in 15 seconds. An
524  * attacker can easily beat that.
525  *
526  * The only somewhat efficient mechanism would be if drop old
527  * connections from the same IP first. But right now we don't even
528  * record the client IP in svc_sock.
529  *
530  * single-threaded services that expect a lot of clients will probably
531  * need to set sv_maxconn to override the default value which is based
532  * on the number of threads
533  */
534 static void svc_check_conn_limits(struct svc_serv *serv)
535 {
536         unsigned int limit = serv->sv_maxconn ? serv->sv_maxconn :
537                                 (serv->sv_nrthreads+3) * 20;
538
539         if (serv->sv_tmpcnt > limit) {
540                 struct svc_xprt *xprt = NULL;
541                 spin_lock_bh(&serv->sv_lock);
542                 if (!list_empty(&serv->sv_tempsocks)) {
543                         if (net_ratelimit()) {
544                                 /* Try to help the admin */
545                                 printk(KERN_NOTICE "%s: too many open  "
546                                        "connections, consider increasing %s\n",
547                                        serv->sv_name, serv->sv_maxconn ?
548                                        "the max number of connections." :
549                                        "the number of threads.");
550                         }
551                         /*
552                          * Always select the oldest connection. It's not fair,
553                          * but so is life
554                          */
555                         xprt = list_entry(serv->sv_tempsocks.prev,
556                                           struct svc_xprt,
557                                           xpt_list);
558                         set_bit(XPT_CLOSE, &xprt->xpt_flags);
559                         svc_xprt_get(xprt);
560                 }
561                 spin_unlock_bh(&serv->sv_lock);
562
563                 if (xprt) {
564                         svc_xprt_enqueue(xprt);
565                         svc_xprt_put(xprt);
566                 }
567         }
568 }
569
570 /*
571  * Receive the next request on any transport.  This code is carefully
572  * organised not to touch any cachelines in the shared svc_serv
573  * structure, only cachelines in the local svc_pool.
574  */
575 int svc_recv(struct svc_rqst *rqstp, long timeout)
576 {
577         struct svc_xprt         *xprt = NULL;
578         struct svc_serv         *serv = rqstp->rq_server;
579         struct svc_pool         *pool = rqstp->rq_pool;
580         int                     len, i;
581         int                     pages;
582         struct xdr_buf          *arg;
583         DECLARE_WAITQUEUE(wait, current);
584         long                    time_left;
585
586         dprintk("svc: server %p waiting for data (to = %ld)\n",
587                 rqstp, timeout);
588
589         if (rqstp->rq_xprt)
590                 printk(KERN_ERR
591                         "svc_recv: service %p, transport not NULL!\n",
592                          rqstp);
593         if (waitqueue_active(&rqstp->rq_wait))
594                 printk(KERN_ERR
595                         "svc_recv: service %p, wait queue active!\n",
596                          rqstp);
597
598         /* now allocate needed pages.  If we get a failure, sleep briefly */
599         pages = (serv->sv_max_mesg + PAGE_SIZE) / PAGE_SIZE;
600         for (i = 0; i < pages ; i++)
601                 while (rqstp->rq_pages[i] == NULL) {
602                         struct page *p = alloc_page(GFP_KERNEL);
603                         if (!p) {
604                                 set_current_state(TASK_INTERRUPTIBLE);
605                                 if (signalled() || kthread_should_stop()) {
606                                         set_current_state(TASK_RUNNING);
607                                         return -EINTR;
608                                 }
609                                 schedule_timeout(msecs_to_jiffies(500));
610                         }
611                         rqstp->rq_pages[i] = p;
612                 }
613         rqstp->rq_pages[i++] = NULL; /* this might be seen in nfs_read_actor */
614         BUG_ON(pages >= RPCSVC_MAXPAGES);
615
616         /* Make arg->head point to first page and arg->pages point to rest */
617         arg = &rqstp->rq_arg;
618         arg->head[0].iov_base = page_address(rqstp->rq_pages[0]);
619         arg->head[0].iov_len = PAGE_SIZE;
620         arg->pages = rqstp->rq_pages + 1;
621         arg->page_base = 0;
622         /* save at least one page for response */
623         arg->page_len = (pages-2)*PAGE_SIZE;
624         arg->len = (pages-1)*PAGE_SIZE;
625         arg->tail[0].iov_len = 0;
626
627         try_to_freeze();
628         cond_resched();
629         if (signalled() || kthread_should_stop())
630                 return -EINTR;
631
632         /* Normally we will wait up to 5 seconds for any required
633          * cache information to be provided.
634          */
635         rqstp->rq_chandle.thread_wait = 5*HZ;
636
637         spin_lock_bh(&pool->sp_lock);
638         xprt = svc_xprt_dequeue(pool);
639         if (xprt) {
640                 rqstp->rq_xprt = xprt;
641                 svc_xprt_get(xprt);
642
643                 /* As there is a shortage of threads and this request
644                  * had to be queued, don't allow the thread to wait so
645                  * long for cache updates.
646                  */
647                 rqstp->rq_chandle.thread_wait = 1*HZ;
648         } else {
649                 /* No data pending. Go to sleep */
650                 svc_thread_enqueue(pool, rqstp);
651
652                 /*
653                  * We have to be able to interrupt this wait
654                  * to bring down the daemons ...
655                  */
656                 set_current_state(TASK_INTERRUPTIBLE);
657
658                 /*
659                  * checking kthread_should_stop() here allows us to avoid
660                  * locking and signalling when stopping kthreads that call
661                  * svc_recv. If the thread has already been woken up, then
662                  * we can exit here without sleeping. If not, then it
663                  * it'll be woken up quickly during the schedule_timeout
664                  */
665                 if (kthread_should_stop()) {
666                         set_current_state(TASK_RUNNING);
667                         spin_unlock_bh(&pool->sp_lock);
668                         return -EINTR;
669                 }
670
671                 add_wait_queue(&rqstp->rq_wait, &wait);
672                 spin_unlock_bh(&pool->sp_lock);
673
674                 time_left = schedule_timeout(timeout);
675
676                 try_to_freeze();
677
678                 spin_lock_bh(&pool->sp_lock);
679                 remove_wait_queue(&rqstp->rq_wait, &wait);
680                 if (!time_left)
681                         pool->sp_stats.threads_timedout++;
682
683                 xprt = rqstp->rq_xprt;
684                 if (!xprt) {
685                         svc_thread_dequeue(pool, rqstp);
686                         spin_unlock_bh(&pool->sp_lock);
687                         dprintk("svc: server %p, no data yet\n", rqstp);
688                         if (signalled() || kthread_should_stop())
689                                 return -EINTR;
690                         else
691                                 return -EAGAIN;
692                 }
693         }
694         spin_unlock_bh(&pool->sp_lock);
695
696         len = 0;
697         if (test_bit(XPT_CLOSE, &xprt->xpt_flags)) {
698                 dprintk("svc_recv: found XPT_CLOSE\n");
699                 svc_delete_xprt(xprt);
700                 /* Leave XPT_BUSY set on the dead xprt: */
701                 goto out;
702         }
703         if (test_bit(XPT_LISTENER, &xprt->xpt_flags)) {
704                 struct svc_xprt *newxpt;
705                 newxpt = xprt->xpt_ops->xpo_accept(xprt);
706                 if (newxpt) {
707                         /*
708                          * We know this module_get will succeed because the
709                          * listener holds a reference too
710                          */
711                         __module_get(newxpt->xpt_class->xcl_owner);
712                         svc_check_conn_limits(xprt->xpt_server);
713                         spin_lock_bh(&serv->sv_lock);
714                         set_bit(XPT_TEMP, &newxpt->xpt_flags);
715                         list_add(&newxpt->xpt_list, &serv->sv_tempsocks);
716                         serv->sv_tmpcnt++;
717                         if (serv->sv_temptimer.function == NULL) {
718                                 /* setup timer to age temp transports */
719                                 setup_timer(&serv->sv_temptimer,
720                                             svc_age_temp_xprts,
721                                             (unsigned long)serv);
722                                 mod_timer(&serv->sv_temptimer,
723                                           jiffies + svc_conn_age_period * HZ);
724                         }
725                         spin_unlock_bh(&serv->sv_lock);
726                         svc_xprt_received(newxpt);
727                 }
728         } else if (xprt->xpt_ops->xpo_has_wspace(xprt)) {
729                 dprintk("svc: server %p, pool %u, transport %p, inuse=%d\n",
730                         rqstp, pool->sp_id, xprt,
731                         atomic_read(&xprt->xpt_ref.refcount));
732                 rqstp->rq_deferred = svc_deferred_dequeue(xprt);
733                 if (rqstp->rq_deferred)
734                         len = svc_deferred_recv(rqstp);
735                 else
736                         len = xprt->xpt_ops->xpo_recvfrom(rqstp);
737                 dprintk("svc: got len=%d\n", len);
738                 rqstp->rq_reserved = serv->sv_max_mesg;
739                 atomic_add(rqstp->rq_reserved, &xprt->xpt_reserved);
740         }
741         svc_xprt_received(xprt);
742
743         /* No data, incomplete (TCP) read, or accept() */
744         if (len == 0 || len == -EAGAIN)
745                 goto out;
746
747         clear_bit(XPT_OLD, &xprt->xpt_flags);
748
749         rqstp->rq_secure = svc_port_is_privileged(svc_addr(rqstp));
750         rqstp->rq_chandle.defer = svc_defer;
751
752         if (serv->sv_stats)
753                 serv->sv_stats->netcnt++;
754         return len;
755 out:
756         rqstp->rq_res.len = 0;
757         svc_xprt_release(rqstp);
758         return -EAGAIN;
759 }
760 EXPORT_SYMBOL_GPL(svc_recv);
761
762 /*
763  * Drop request
764  */
765 void svc_drop(struct svc_rqst *rqstp)
766 {
767         dprintk("svc: xprt %p dropped request\n", rqstp->rq_xprt);
768         svc_xprt_release(rqstp);
769 }
770 EXPORT_SYMBOL_GPL(svc_drop);
771
772 /*
773  * Return reply to client.
774  */
775 int svc_send(struct svc_rqst *rqstp)
776 {
777         struct svc_xprt *xprt;
778         int             len;
779         struct xdr_buf  *xb;
780
781         xprt = rqstp->rq_xprt;
782         if (!xprt)
783                 return -EFAULT;
784
785         /* release the receive skb before sending the reply */
786         rqstp->rq_xprt->xpt_ops->xpo_release_rqst(rqstp);
787
788         /* calculate over-all length */
789         xb = &rqstp->rq_res;
790         xb->len = xb->head[0].iov_len +
791                 xb->page_len +
792                 xb->tail[0].iov_len;
793
794         /* Grab mutex to serialize outgoing data. */
795         mutex_lock(&xprt->xpt_mutex);
796         if (test_bit(XPT_DEAD, &xprt->xpt_flags)
797                         || test_bit(XPT_CLOSE, &xprt->xpt_flags))
798                 len = -ENOTCONN;
799         else
800                 len = xprt->xpt_ops->xpo_sendto(rqstp);
801         mutex_unlock(&xprt->xpt_mutex);
802         rpc_wake_up(&xprt->xpt_bc_pending);
803         svc_xprt_release(rqstp);
804
805         if (len == -ECONNREFUSED || len == -ENOTCONN || len == -EAGAIN)
806                 return 0;
807         return len;
808 }
809
810 /*
811  * Timer function to close old temporary transports, using
812  * a mark-and-sweep algorithm.
813  */
814 static void svc_age_temp_xprts(unsigned long closure)
815 {
816         struct svc_serv *serv = (struct svc_serv *)closure;
817         struct svc_xprt *xprt;
818         struct list_head *le, *next;
819
820         dprintk("svc_age_temp_xprts\n");
821
822         if (!spin_trylock_bh(&serv->sv_lock)) {
823                 /* busy, try again 1 sec later */
824                 dprintk("svc_age_temp_xprts: busy\n");
825                 mod_timer(&serv->sv_temptimer, jiffies + HZ);
826                 return;
827         }
828
829         list_for_each_safe(le, next, &serv->sv_tempsocks) {
830                 xprt = list_entry(le, struct svc_xprt, xpt_list);
831
832                 /* First time through, just mark it OLD. Second time
833                  * through, close it. */
834                 if (!test_and_set_bit(XPT_OLD, &xprt->xpt_flags))
835                         continue;
836                 if (atomic_read(&xprt->xpt_ref.refcount) > 1 ||
837                     test_bit(XPT_BUSY, &xprt->xpt_flags))
838                         continue;
839                 list_del_init(le);
840                 set_bit(XPT_CLOSE, &xprt->xpt_flags);
841                 set_bit(XPT_DETACHED, &xprt->xpt_flags);
842                 dprintk("queuing xprt %p for closing\n", xprt);
843
844                 /* a thread will dequeue and close it soon */
845                 svc_xprt_enqueue(xprt);
846         }
847         spin_unlock_bh(&serv->sv_lock);
848
849         mod_timer(&serv->sv_temptimer, jiffies + svc_conn_age_period * HZ);
850 }
851
852 static void call_xpt_users(struct svc_xprt *xprt)
853 {
854         struct svc_xpt_user *u;
855
856         spin_lock(&xprt->xpt_lock);
857         while (!list_empty(&xprt->xpt_users)) {
858                 u = list_first_entry(&xprt->xpt_users, struct svc_xpt_user, list);
859                 list_del(&u->list);
860                 u->callback(u);
861         }
862         spin_unlock(&xprt->xpt_lock);
863 }
864
865 /*
866  * Remove a dead transport
867  */
868 void svc_delete_xprt(struct svc_xprt *xprt)
869 {
870         struct svc_serv *serv = xprt->xpt_server;
871         struct svc_deferred_req *dr;
872
873         /* Only do this once */
874         if (test_and_set_bit(XPT_DEAD, &xprt->xpt_flags))
875                 BUG();
876
877         dprintk("svc: svc_delete_xprt(%p)\n", xprt);
878         xprt->xpt_ops->xpo_detach(xprt);
879
880         spin_lock_bh(&serv->sv_lock);
881         if (!test_and_set_bit(XPT_DETACHED, &xprt->xpt_flags))
882                 list_del_init(&xprt->xpt_list);
883         BUG_ON(!list_empty(&xprt->xpt_ready));
884         if (test_bit(XPT_TEMP, &xprt->xpt_flags))
885                 serv->sv_tmpcnt--;
886         spin_unlock_bh(&serv->sv_lock);
887
888         while ((dr = svc_deferred_dequeue(xprt)) != NULL)
889                 kfree(dr);
890
891         call_xpt_users(xprt);
892         svc_xprt_put(xprt);
893 }
894
895 void svc_close_xprt(struct svc_xprt *xprt)
896 {
897         set_bit(XPT_CLOSE, &xprt->xpt_flags);
898         if (test_and_set_bit(XPT_BUSY, &xprt->xpt_flags))
899                 /* someone else will have to effect the close */
900                 return;
901         /*
902          * We expect svc_close_xprt() to work even when no threads are
903          * running (e.g., while configuring the server before starting
904          * any threads), so if the transport isn't busy, we delete
905          * it ourself:
906          */
907         svc_delete_xprt(xprt);
908 }
909 EXPORT_SYMBOL_GPL(svc_close_xprt);
910
911 static void svc_close_list(struct list_head *xprt_list)
912 {
913         struct svc_xprt *xprt;
914
915         list_for_each_entry(xprt, xprt_list, xpt_list) {
916                 set_bit(XPT_CLOSE, &xprt->xpt_flags);
917                 set_bit(XPT_BUSY, &xprt->xpt_flags);
918         }
919 }
920
921 void svc_close_all(struct svc_serv *serv)
922 {
923         struct svc_pool *pool;
924         struct svc_xprt *xprt;
925         struct svc_xprt *tmp;
926         int i;
927
928         svc_close_list(&serv->sv_tempsocks);
929         svc_close_list(&serv->sv_permsocks);
930
931         for (i = 0; i < serv->sv_nrpools; i++) {
932                 pool = &serv->sv_pools[i];
933
934                 spin_lock_bh(&pool->sp_lock);
935                 while (!list_empty(&pool->sp_sockets)) {
936                         xprt = list_first_entry(&pool->sp_sockets, struct svc_xprt, xpt_ready);
937                         list_del_init(&xprt->xpt_ready);
938                 }
939                 spin_unlock_bh(&pool->sp_lock);
940         }
941         /*
942          * At this point the sp_sockets lists will stay empty, since
943          * svc_enqueue will not add new entries without taking the
944          * sp_lock and checking XPT_BUSY.
945          */
946         list_for_each_entry_safe(xprt, tmp, &serv->sv_tempsocks, xpt_list)
947                 svc_delete_xprt(xprt);
948         list_for_each_entry_safe(xprt, tmp, &serv->sv_permsocks, xpt_list)
949                 svc_delete_xprt(xprt);
950
951         BUG_ON(!list_empty(&serv->sv_permsocks));
952         BUG_ON(!list_empty(&serv->sv_tempsocks));
953 }
954
955 /*
956  * Handle defer and revisit of requests
957  */
958
959 static void svc_revisit(struct cache_deferred_req *dreq, int too_many)
960 {
961         struct svc_deferred_req *dr =
962                 container_of(dreq, struct svc_deferred_req, handle);
963         struct svc_xprt *xprt = dr->xprt;
964
965         spin_lock(&xprt->xpt_lock);
966         set_bit(XPT_DEFERRED, &xprt->xpt_flags);
967         if (too_many || test_bit(XPT_DEAD, &xprt->xpt_flags)) {
968                 spin_unlock(&xprt->xpt_lock);
969                 dprintk("revisit canceled\n");
970                 svc_xprt_put(xprt);
971                 kfree(dr);
972                 return;
973         }
974         dprintk("revisit queued\n");
975         dr->xprt = NULL;
976         list_add(&dr->handle.recent, &xprt->xpt_deferred);
977         spin_unlock(&xprt->xpt_lock);
978         svc_xprt_enqueue(xprt);
979         svc_xprt_put(xprt);
980 }
981
982 /*
983  * Save the request off for later processing. The request buffer looks
984  * like this:
985  *
986  * <xprt-header><rpc-header><rpc-pagelist><rpc-tail>
987  *
988  * This code can only handle requests that consist of an xprt-header
989  * and rpc-header.
990  */
991 static struct cache_deferred_req *svc_defer(struct cache_req *req)
992 {
993         struct svc_rqst *rqstp = container_of(req, struct svc_rqst, rq_chandle);
994         struct svc_deferred_req *dr;
995
996         if (rqstp->rq_arg.page_len || !rqstp->rq_usedeferral)
997                 return NULL; /* if more than a page, give up FIXME */
998         if (rqstp->rq_deferred) {
999                 dr = rqstp->rq_deferred;
1000                 rqstp->rq_deferred = NULL;
1001         } else {
1002                 size_t skip;
1003                 size_t size;
1004                 /* FIXME maybe discard if size too large */
1005                 size = sizeof(struct svc_deferred_req) + rqstp->rq_arg.len;
1006                 dr = kmalloc(size, GFP_KERNEL);
1007                 if (dr == NULL)
1008                         return NULL;
1009
1010                 dr->handle.owner = rqstp->rq_server;
1011                 dr->prot = rqstp->rq_prot;
1012                 memcpy(&dr->addr, &rqstp->rq_addr, rqstp->rq_addrlen);
1013                 dr->addrlen = rqstp->rq_addrlen;
1014                 dr->daddr = rqstp->rq_daddr;
1015                 dr->argslen = rqstp->rq_arg.len >> 2;
1016                 dr->xprt_hlen = rqstp->rq_xprt_hlen;
1017
1018                 /* back up head to the start of the buffer and copy */
1019                 skip = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len;
1020                 memcpy(dr->args, rqstp->rq_arg.head[0].iov_base - skip,
1021                        dr->argslen << 2);
1022         }
1023         svc_xprt_get(rqstp->rq_xprt);
1024         dr->xprt = rqstp->rq_xprt;
1025         rqstp->rq_dropme = true;
1026
1027         dr->handle.revisit = svc_revisit;
1028         return &dr->handle;
1029 }
1030
1031 /*
1032  * recv data from a deferred request into an active one
1033  */
1034 static int svc_deferred_recv(struct svc_rqst *rqstp)
1035 {
1036         struct svc_deferred_req *dr = rqstp->rq_deferred;
1037
1038         /* setup iov_base past transport header */
1039         rqstp->rq_arg.head[0].iov_base = dr->args + (dr->xprt_hlen>>2);
1040         /* The iov_len does not include the transport header bytes */
1041         rqstp->rq_arg.head[0].iov_len = (dr->argslen<<2) - dr->xprt_hlen;
1042         rqstp->rq_arg.page_len = 0;
1043         /* The rq_arg.len includes the transport header bytes */
1044         rqstp->rq_arg.len     = dr->argslen<<2;
1045         rqstp->rq_prot        = dr->prot;
1046         memcpy(&rqstp->rq_addr, &dr->addr, dr->addrlen);
1047         rqstp->rq_addrlen     = dr->addrlen;
1048         /* Save off transport header len in case we get deferred again */
1049         rqstp->rq_xprt_hlen   = dr->xprt_hlen;
1050         rqstp->rq_daddr       = dr->daddr;
1051         rqstp->rq_respages    = rqstp->rq_pages;
1052         return (dr->argslen<<2) - dr->xprt_hlen;
1053 }
1054
1055
1056 static struct svc_deferred_req *svc_deferred_dequeue(struct svc_xprt *xprt)
1057 {
1058         struct svc_deferred_req *dr = NULL;
1059
1060         if (!test_bit(XPT_DEFERRED, &xprt->xpt_flags))
1061                 return NULL;
1062         spin_lock(&xprt->xpt_lock);
1063         if (!list_empty(&xprt->xpt_deferred)) {
1064                 dr = list_entry(xprt->xpt_deferred.next,
1065                                 struct svc_deferred_req,
1066                                 handle.recent);
1067                 list_del_init(&dr->handle.recent);
1068         } else
1069                 clear_bit(XPT_DEFERRED, &xprt->xpt_flags);
1070         spin_unlock(&xprt->xpt_lock);
1071         return dr;
1072 }
1073
1074 /**
1075  * svc_find_xprt - find an RPC transport instance
1076  * @serv: pointer to svc_serv to search
1077  * @xcl_name: C string containing transport's class name
1078  * @af: Address family of transport's local address
1079  * @port: transport's IP port number
1080  *
1081  * Return the transport instance pointer for the endpoint accepting
1082  * connections/peer traffic from the specified transport class,
1083  * address family and port.
1084  *
1085  * Specifying 0 for the address family or port is effectively a
1086  * wild-card, and will result in matching the first transport in the
1087  * service's list that has a matching class name.
1088  */
1089 struct svc_xprt *svc_find_xprt(struct svc_serv *serv, const char *xcl_name,
1090                                const sa_family_t af, const unsigned short port)
1091 {
1092         struct svc_xprt *xprt;
1093         struct svc_xprt *found = NULL;
1094
1095         /* Sanity check the args */
1096         if (serv == NULL || xcl_name == NULL)
1097                 return found;
1098
1099         spin_lock_bh(&serv->sv_lock);
1100         list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list) {
1101                 if (strcmp(xprt->xpt_class->xcl_name, xcl_name))
1102                         continue;
1103                 if (af != AF_UNSPEC && af != xprt->xpt_local.ss_family)
1104                         continue;
1105                 if (port != 0 && port != svc_xprt_local_port(xprt))
1106                         continue;
1107                 found = xprt;
1108                 svc_xprt_get(xprt);
1109                 break;
1110         }
1111         spin_unlock_bh(&serv->sv_lock);
1112         return found;
1113 }
1114 EXPORT_SYMBOL_GPL(svc_find_xprt);
1115
1116 static int svc_one_xprt_name(const struct svc_xprt *xprt,
1117                              char *pos, int remaining)
1118 {
1119         int len;
1120
1121         len = snprintf(pos, remaining, "%s %u\n",
1122                         xprt->xpt_class->xcl_name,
1123                         svc_xprt_local_port(xprt));
1124         if (len >= remaining)
1125                 return -ENAMETOOLONG;
1126         return len;
1127 }
1128
1129 /**
1130  * svc_xprt_names - format a buffer with a list of transport names
1131  * @serv: pointer to an RPC service
1132  * @buf: pointer to a buffer to be filled in
1133  * @buflen: length of buffer to be filled in
1134  *
1135  * Fills in @buf with a string containing a list of transport names,
1136  * each name terminated with '\n'.
1137  *
1138  * Returns positive length of the filled-in string on success; otherwise
1139  * a negative errno value is returned if an error occurs.
1140  */
1141 int svc_xprt_names(struct svc_serv *serv, char *buf, const int buflen)
1142 {
1143         struct svc_xprt *xprt;
1144         int len, totlen;
1145         char *pos;
1146
1147         /* Sanity check args */
1148         if (!serv)
1149                 return 0;
1150
1151         spin_lock_bh(&serv->sv_lock);
1152
1153         pos = buf;
1154         totlen = 0;
1155         list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list) {
1156                 len = svc_one_xprt_name(xprt, pos, buflen - totlen);
1157                 if (len < 0) {
1158                         *buf = '\0';
1159                         totlen = len;
1160                 }
1161                 if (len <= 0)
1162                         break;
1163
1164                 pos += len;
1165                 totlen += len;
1166         }
1167
1168         spin_unlock_bh(&serv->sv_lock);
1169         return totlen;
1170 }
1171 EXPORT_SYMBOL_GPL(svc_xprt_names);
1172
1173
1174 /*----------------------------------------------------------------------------*/
1175
1176 static void *svc_pool_stats_start(struct seq_file *m, loff_t *pos)
1177 {
1178         unsigned int pidx = (unsigned int)*pos;
1179         struct svc_serv *serv = m->private;
1180
1181         dprintk("svc_pool_stats_start, *pidx=%u\n", pidx);
1182
1183         if (!pidx)
1184                 return SEQ_START_TOKEN;
1185         return (pidx > serv->sv_nrpools ? NULL : &serv->sv_pools[pidx-1]);
1186 }
1187
1188 static void *svc_pool_stats_next(struct seq_file *m, void *p, loff_t *pos)
1189 {
1190         struct svc_pool *pool = p;
1191         struct svc_serv *serv = m->private;
1192
1193         dprintk("svc_pool_stats_next, *pos=%llu\n", *pos);
1194
1195         if (p == SEQ_START_TOKEN) {
1196                 pool = &serv->sv_pools[0];
1197         } else {
1198                 unsigned int pidx = (pool - &serv->sv_pools[0]);
1199                 if (pidx < serv->sv_nrpools-1)
1200                         pool = &serv->sv_pools[pidx+1];
1201                 else
1202                         pool = NULL;
1203         }
1204         ++*pos;
1205         return pool;
1206 }
1207
1208 static void svc_pool_stats_stop(struct seq_file *m, void *p)
1209 {
1210 }
1211
1212 static int svc_pool_stats_show(struct seq_file *m, void *p)
1213 {
1214         struct svc_pool *pool = p;
1215
1216         if (p == SEQ_START_TOKEN) {
1217                 seq_puts(m, "# pool packets-arrived sockets-enqueued threads-woken threads-timedout\n");
1218                 return 0;
1219         }
1220
1221         seq_printf(m, "%u %lu %lu %lu %lu\n",
1222                 pool->sp_id,
1223                 pool->sp_stats.packets,
1224                 pool->sp_stats.sockets_queued,
1225                 pool->sp_stats.threads_woken,
1226                 pool->sp_stats.threads_timedout);
1227
1228         return 0;
1229 }
1230
1231 static const struct seq_operations svc_pool_stats_seq_ops = {
1232         .start  = svc_pool_stats_start,
1233         .next   = svc_pool_stats_next,
1234         .stop   = svc_pool_stats_stop,
1235         .show   = svc_pool_stats_show,
1236 };
1237
1238 int svc_pool_stats_open(struct svc_serv *serv, struct file *file)
1239 {
1240         int err;
1241
1242         err = seq_open(file, &svc_pool_stats_seq_ops);
1243         if (!err)
1244                 ((struct seq_file *) file->private_data)->private = serv;
1245         return err;
1246 }
1247 EXPORT_SYMBOL(svc_pool_stats_open);
1248
1249 /*----------------------------------------------------------------------------*/