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