svc: Change services to use new svc_create_xprt service
[deliverable/linux.git] / net / sunrpc / svcsock.c
CommitLineData
1da177e4
LT
1/*
2 * linux/net/sunrpc/svcsock.c
3 *
4 * These are the RPC server socket internals.
5 *
6 * The server scheduling algorithm does not always distribute the load
7 * evenly when servicing a single client. May need to modify the
8 * svc_sock_enqueue procedure...
9 *
10 * TCP support is largely untested and may be a little slow. The problem
11 * is that we currently do two separate recvfrom's, one for the 4-byte
12 * record length, and the second for the actual record. This could possibly
13 * be improved by always reading a minimum size of around 100 bytes and
14 * tucking any superfluous bytes away in a temporary store. Still, that
15 * leaves write requests out in the rain. An alternative may be to peek at
16 * the first skb in the queue, and if it matches the next TCP sequence
17 * number, to extract the record marker. Yuck.
18 *
19 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
20 */
21
172589cc 22#include <linux/kernel.h>
1da177e4
LT
23#include <linux/sched.h>
24#include <linux/errno.h>
25#include <linux/fcntl.h>
26#include <linux/net.h>
27#include <linux/in.h>
28#include <linux/inet.h>
29#include <linux/udp.h>
91483c4b 30#include <linux/tcp.h>
1da177e4
LT
31#include <linux/unistd.h>
32#include <linux/slab.h>
33#include <linux/netdevice.h>
34#include <linux/skbuff.h>
b41b66d6 35#include <linux/file.h>
7dfb7103 36#include <linux/freezer.h>
1da177e4
LT
37#include <net/sock.h>
38#include <net/checksum.h>
39#include <net/ip.h>
b92503b2 40#include <net/ipv6.h>
c752f073 41#include <net/tcp_states.h>
1da177e4
LT
42#include <asm/uaccess.h>
43#include <asm/ioctls.h>
44
45#include <linux/sunrpc/types.h>
ad06e4bd 46#include <linux/sunrpc/clnt.h>
1da177e4
LT
47#include <linux/sunrpc/xdr.h>
48#include <linux/sunrpc/svcsock.h>
49#include <linux/sunrpc/stats.h>
50
51/* SMP locking strategy:
52 *
3262c816
GB
53 * svc_pool->sp_lock protects most of the fields of that pool.
54 * svc_serv->sv_lock protects sv_tempsocks, sv_permsocks, sv_tmpcnt.
55 * when both need to be taken (rare), svc_serv->sv_lock is first.
56 * BKL protects svc_serv->sv_nrthread.
7ac1bea5
N
57 * svc_sock->sk_lock protects the svc_sock->sk_deferred list
58 * and the ->sk_info_authunix cache.
c081a0c7 59 * svc_sock->sk_flags.SK_BUSY prevents a svc_sock being enqueued multiply.
1da177e4
LT
60 *
61 * Some flags can be set to certain values at any time
62 * providing that certain rules are followed:
63 *
1da177e4 64 * SK_CONN, SK_DATA, can be set or cleared at any time.
cca5172a 65 * after a set, svc_sock_enqueue must be called.
1da177e4
LT
66 * after a clear, the socket must be read/accepted
67 * if this succeeds, it must be set again.
68 * SK_CLOSE can set at any time. It is never cleared.
aaf68cfb
N
69 * sk_inuse contains a bias of '1' until SK_DEAD is set.
70 * so when sk_inuse hits zero, we know the socket is dead
71 * and no-one is using it.
72 * SK_DEAD can only be set while SK_BUSY is held which ensures
73 * no other thread will be using the socket or will try to
74 * set SK_DEAD.
1da177e4
LT
75 *
76 */
77
360d8738 78#define RPCDBG_FACILITY RPCDBG_SVCXPRT
1da177e4
LT
79
80
81static struct svc_sock *svc_setup_socket(struct svc_serv *, struct socket *,
6b174337 82 int *errp, int flags);
aaf68cfb 83static void svc_delete_socket(struct svc_sock *svsk);
1da177e4
LT
84static void svc_udp_data_ready(struct sock *, int);
85static int svc_udp_recvfrom(struct svc_rqst *);
86static int svc_udp_sendto(struct svc_rqst *);
cda1fd4a 87static void svc_close_socket(struct svc_sock *svsk);
755cceab
TT
88static void svc_sock_detach(struct svc_xprt *);
89static void svc_sock_free(struct svc_xprt *);
1da177e4
LT
90
91static struct svc_deferred_req *svc_deferred_dequeue(struct svc_sock *svsk);
92static int svc_deferred_recv(struct svc_rqst *rqstp);
93static struct cache_deferred_req *svc_defer(struct cache_req *req);
b700cbb1
TT
94static struct svc_xprt *svc_create_socket(struct svc_serv *, int,
95 struct sockaddr *, int, int);
1da177e4 96
36bdfc8b
GB
97/* apparently the "standard" is that clients close
98 * idle connections after 5 minutes, servers after
99 * 6 minutes
100 * http://www.connectathon.org/talks96/nfstcp.pdf
101 */
102static int svc_conn_age_period = 6*60;
103
ed07536e
PZ
104#ifdef CONFIG_DEBUG_LOCK_ALLOC
105static struct lock_class_key svc_key[2];
106static struct lock_class_key svc_slock_key[2];
107
108static inline void svc_reclassify_socket(struct socket *sock)
109{
110 struct sock *sk = sock->sk;
02b3d346 111 BUG_ON(sock_owned_by_user(sk));
ed07536e
PZ
112 switch (sk->sk_family) {
113 case AF_INET:
114 sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD",
115 &svc_slock_key[0], "sk_lock-AF_INET-NFSD", &svc_key[0]);
116 break;
117
118 case AF_INET6:
119 sock_lock_init_class_and_name(sk, "slock-AF_INET6-NFSD",
120 &svc_slock_key[1], "sk_lock-AF_INET6-NFSD", &svc_key[1]);
121 break;
122
123 default:
124 BUG();
125 }
126}
127#else
128static inline void svc_reclassify_socket(struct socket *sock)
129{
130}
131#endif
132
ad06e4bd
CL
133static char *__svc_print_addr(struct sockaddr *addr, char *buf, size_t len)
134{
135 switch (addr->sa_family) {
136 case AF_INET:
137 snprintf(buf, len, "%u.%u.%u.%u, port=%u",
138 NIPQUAD(((struct sockaddr_in *) addr)->sin_addr),
582ee43d 139 ntohs(((struct sockaddr_in *) addr)->sin_port));
ad06e4bd 140 break;
5a05ed73 141
ad06e4bd
CL
142 case AF_INET6:
143 snprintf(buf, len, "%x:%x:%x:%x:%x:%x:%x:%x, port=%u",
144 NIP6(((struct sockaddr_in6 *) addr)->sin6_addr),
582ee43d 145 ntohs(((struct sockaddr_in6 *) addr)->sin6_port));
ad06e4bd 146 break;
5a05ed73 147
ad06e4bd
CL
148 default:
149 snprintf(buf, len, "unknown address type: %d", addr->sa_family);
150 break;
151 }
152 return buf;
153}
154
155/**
156 * svc_print_addr - Format rq_addr field for printing
157 * @rqstp: svc_rqst struct containing address to print
158 * @buf: target buffer for formatted address
159 * @len: length of target buffer
160 *
161 */
162char *svc_print_addr(struct svc_rqst *rqstp, char *buf, size_t len)
163{
27459f09 164 return __svc_print_addr(svc_addr(rqstp), buf, len);
ad06e4bd
CL
165}
166EXPORT_SYMBOL_GPL(svc_print_addr);
167
1da177e4 168/*
3262c816 169 * Queue up an idle server thread. Must have pool->sp_lock held.
1da177e4 170 * Note: this is really a stack rather than a queue, so that we only
3262c816 171 * use as many different threads as we need, and the rest don't pollute
1da177e4
LT
172 * the cache.
173 */
174static inline void
3262c816 175svc_thread_enqueue(struct svc_pool *pool, struct svc_rqst *rqstp)
1da177e4 176{
3262c816 177 list_add(&rqstp->rq_list, &pool->sp_threads);
1da177e4
LT
178}
179
180/*
3262c816 181 * Dequeue an nfsd thread. Must have pool->sp_lock held.
1da177e4
LT
182 */
183static inline void
3262c816 184svc_thread_dequeue(struct svc_pool *pool, struct svc_rqst *rqstp)
1da177e4
LT
185{
186 list_del(&rqstp->rq_list);
187}
188
189/*
190 * Release an skbuff after use
191 */
5148bf4e 192static void svc_release_skb(struct svc_rqst *rqstp)
1da177e4 193{
5148bf4e 194 struct sk_buff *skb = rqstp->rq_xprt_ctxt;
1da177e4
LT
195 struct svc_deferred_req *dr = rqstp->rq_deferred;
196
197 if (skb) {
5148bf4e 198 rqstp->rq_xprt_ctxt = NULL;
1da177e4
LT
199
200 dprintk("svc: service %p, releasing skb %p\n", rqstp, skb);
201 skb_free_datagram(rqstp->rq_sock->sk_sk, skb);
202 }
203 if (dr) {
204 rqstp->rq_deferred = NULL;
205 kfree(dr);
206 }
207}
208
1da177e4
LT
209/*
210 * Queue up a socket with data pending. If there are idle nfsd
211 * processes, wake 'em up.
212 *
213 */
214static void
215svc_sock_enqueue(struct svc_sock *svsk)
216{
217 struct svc_serv *serv = svsk->sk_server;
bfd24160 218 struct svc_pool *pool;
1da177e4 219 struct svc_rqst *rqstp;
bfd24160 220 int cpu;
1da177e4
LT
221
222 if (!(svsk->sk_flags &
223 ( (1<<SK_CONN)|(1<<SK_DATA)|(1<<SK_CLOSE)|(1<<SK_DEFERRED)) ))
224 return;
225 if (test_bit(SK_DEAD, &svsk->sk_flags))
226 return;
227
bfd24160
GB
228 cpu = get_cpu();
229 pool = svc_pool_for_cpu(svsk->sk_server, cpu);
230 put_cpu();
231
3262c816 232 spin_lock_bh(&pool->sp_lock);
1da177e4 233
3262c816
GB
234 if (!list_empty(&pool->sp_threads) &&
235 !list_empty(&pool->sp_sockets))
1da177e4
LT
236 printk(KERN_ERR
237 "svc_sock_enqueue: threads and sockets both waiting??\n");
238
239 if (test_bit(SK_DEAD, &svsk->sk_flags)) {
240 /* Don't enqueue dead sockets */
241 dprintk("svc: socket %p is dead, not enqueued\n", svsk->sk_sk);
242 goto out_unlock;
243 }
244
c081a0c7
GB
245 /* Mark socket as busy. It will remain in this state until the
246 * server has processed all pending data and put the socket back
247 * on the idle list. We update SK_BUSY atomically because
248 * it also guards against trying to enqueue the svc_sock twice.
249 */
250 if (test_and_set_bit(SK_BUSY, &svsk->sk_flags)) {
251 /* Don't enqueue socket while already enqueued */
1da177e4
LT
252 dprintk("svc: socket %p busy, not enqueued\n", svsk->sk_sk);
253 goto out_unlock;
254 }
3262c816
GB
255 BUG_ON(svsk->sk_pool != NULL);
256 svsk->sk_pool = pool;
1da177e4 257
323bee32
TT
258 /* Handle pending connection */
259 if (test_bit(SK_CONN, &svsk->sk_flags))
260 goto process;
261
262 /* Handle close in-progress */
263 if (test_bit(SK_CLOSE, &svsk->sk_flags))
264 goto process;
265
266 /* Check if we have space to reply to a request */
267 if (!svsk->sk_xprt.xpt_ops->xpo_has_wspace(&svsk->sk_xprt)) {
1da177e4 268 /* Don't enqueue while not enough space for reply */
323bee32 269 dprintk("svc: no write space, socket %p not enqueued\n", svsk);
3262c816 270 svsk->sk_pool = NULL;
c081a0c7 271 clear_bit(SK_BUSY, &svsk->sk_flags);
1da177e4
LT
272 goto out_unlock;
273 }
1da177e4 274
323bee32 275 process:
3262c816
GB
276 if (!list_empty(&pool->sp_threads)) {
277 rqstp = list_entry(pool->sp_threads.next,
1da177e4
LT
278 struct svc_rqst,
279 rq_list);
280 dprintk("svc: socket %p served by daemon %p\n",
281 svsk->sk_sk, rqstp);
3262c816 282 svc_thread_dequeue(pool, rqstp);
1da177e4 283 if (rqstp->rq_sock)
cca5172a 284 printk(KERN_ERR
1da177e4
LT
285 "svc_sock_enqueue: server %p, rq_sock=%p!\n",
286 rqstp, rqstp->rq_sock);
287 rqstp->rq_sock = svsk;
c45c357d 288 atomic_inc(&svsk->sk_inuse);
c6b0a9f8 289 rqstp->rq_reserved = serv->sv_max_mesg;
5685f0fa 290 atomic_add(rqstp->rq_reserved, &svsk->sk_reserved);
3262c816 291 BUG_ON(svsk->sk_pool != pool);
1da177e4
LT
292 wake_up(&rqstp->rq_wait);
293 } else {
294 dprintk("svc: socket %p put into queue\n", svsk->sk_sk);
3262c816
GB
295 list_add_tail(&svsk->sk_ready, &pool->sp_sockets);
296 BUG_ON(svsk->sk_pool != pool);
1da177e4
LT
297 }
298
299out_unlock:
3262c816 300 spin_unlock_bh(&pool->sp_lock);
1da177e4
LT
301}
302
303/*
3262c816 304 * Dequeue the first socket. Must be called with the pool->sp_lock held.
1da177e4
LT
305 */
306static inline struct svc_sock *
3262c816 307svc_sock_dequeue(struct svc_pool *pool)
1da177e4
LT
308{
309 struct svc_sock *svsk;
310
3262c816 311 if (list_empty(&pool->sp_sockets))
1da177e4
LT
312 return NULL;
313
3262c816 314 svsk = list_entry(pool->sp_sockets.next,
1da177e4
LT
315 struct svc_sock, sk_ready);
316 list_del_init(&svsk->sk_ready);
317
318 dprintk("svc: socket %p dequeued, inuse=%d\n",
c45c357d 319 svsk->sk_sk, atomic_read(&svsk->sk_inuse));
1da177e4
LT
320
321 return svsk;
322}
323
324/*
325 * Having read something from a socket, check whether it
326 * needs to be re-enqueued.
327 * Note: SK_DATA only gets cleared when a read-attempt finds
328 * no (or insufficient) data.
329 */
330static inline void
331svc_sock_received(struct svc_sock *svsk)
332{
3262c816 333 svsk->sk_pool = NULL;
1da177e4
LT
334 clear_bit(SK_BUSY, &svsk->sk_flags);
335 svc_sock_enqueue(svsk);
336}
337
338
339/**
340 * svc_reserve - change the space reserved for the reply to a request.
341 * @rqstp: The request in question
342 * @space: new max space to reserve
343 *
344 * Each request reserves some space on the output queue of the socket
345 * to make sure the reply fits. This function reduces that reserved
346 * space to be the amount of space used already, plus @space.
347 *
348 */
349void svc_reserve(struct svc_rqst *rqstp, int space)
350{
351 space += rqstp->rq_res.head[0].iov_len;
352
353 if (space < rqstp->rq_reserved) {
354 struct svc_sock *svsk = rqstp->rq_sock;
5685f0fa 355 atomic_sub((rqstp->rq_reserved - space), &svsk->sk_reserved);
1da177e4 356 rqstp->rq_reserved = space;
1da177e4
LT
357
358 svc_sock_enqueue(svsk);
359 }
360}
361
362/*
363 * Release a socket after use.
364 */
365static inline void
366svc_sock_put(struct svc_sock *svsk)
367{
aaf68cfb 368 if (atomic_dec_and_test(&svsk->sk_inuse)) {
755cceab 369 BUG_ON(!test_bit(SK_DEAD, &svsk->sk_flags));
b700cbb1 370 module_put(svsk->sk_xprt.xpt_class->xcl_owner);
755cceab 371 svsk->sk_xprt.xpt_ops->xpo_free(&svsk->sk_xprt);
1da177e4 372 }
1da177e4
LT
373}
374
375static void
376svc_sock_release(struct svc_rqst *rqstp)
377{
378 struct svc_sock *svsk = rqstp->rq_sock;
379
5148bf4e 380 rqstp->rq_xprt->xpt_ops->xpo_release_rqst(rqstp);
1da177e4 381
44524359 382 svc_free_res_pages(rqstp);
1da177e4
LT
383 rqstp->rq_res.page_len = 0;
384 rqstp->rq_res.page_base = 0;
385
386
387 /* Reset response buffer and release
388 * the reservation.
389 * But first, check that enough space was reserved
390 * for the reply, otherwise we have a bug!
391 */
392 if ((rqstp->rq_res.len) > rqstp->rq_reserved)
393 printk(KERN_ERR "RPC request reserved %d but used %d\n",
394 rqstp->rq_reserved,
395 rqstp->rq_res.len);
396
397 rqstp->rq_res.head[0].iov_len = 0;
398 svc_reserve(rqstp, 0);
399 rqstp->rq_sock = NULL;
400
401 svc_sock_put(svsk);
402}
403
404/*
405 * External function to wake up a server waiting for data
3262c816
GB
406 * This really only makes sense for services like lockd
407 * which have exactly one thread anyway.
1da177e4
LT
408 */
409void
410svc_wake_up(struct svc_serv *serv)
411{
412 struct svc_rqst *rqstp;
3262c816
GB
413 unsigned int i;
414 struct svc_pool *pool;
415
416 for (i = 0; i < serv->sv_nrpools; i++) {
417 pool = &serv->sv_pools[i];
418
419 spin_lock_bh(&pool->sp_lock);
420 if (!list_empty(&pool->sp_threads)) {
421 rqstp = list_entry(pool->sp_threads.next,
422 struct svc_rqst,
423 rq_list);
424 dprintk("svc: daemon %p woken up.\n", rqstp);
425 /*
426 svc_thread_dequeue(pool, rqstp);
427 rqstp->rq_sock = NULL;
428 */
429 wake_up(&rqstp->rq_wait);
430 }
431 spin_unlock_bh(&pool->sp_lock);
1da177e4 432 }
1da177e4
LT
433}
434
b92503b2
CL
435union svc_pktinfo_u {
436 struct in_pktinfo pkti;
b92503b2 437 struct in6_pktinfo pkti6;
b92503b2 438};
bc375ea7
DM
439#define SVC_PKTINFO_SPACE \
440 CMSG_SPACE(sizeof(union svc_pktinfo_u))
b92503b2
CL
441
442static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh)
443{
444 switch (rqstp->rq_sock->sk_sk->sk_family) {
445 case AF_INET: {
446 struct in_pktinfo *pki = CMSG_DATA(cmh);
447
448 cmh->cmsg_level = SOL_IP;
449 cmh->cmsg_type = IP_PKTINFO;
450 pki->ipi_ifindex = 0;
451 pki->ipi_spec_dst.s_addr = rqstp->rq_daddr.addr.s_addr;
452 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
453 }
454 break;
5a05ed73 455
b92503b2
CL
456 case AF_INET6: {
457 struct in6_pktinfo *pki = CMSG_DATA(cmh);
458
459 cmh->cmsg_level = SOL_IPV6;
460 cmh->cmsg_type = IPV6_PKTINFO;
461 pki->ipi6_ifindex = 0;
462 ipv6_addr_copy(&pki->ipi6_addr,
463 &rqstp->rq_daddr.addr6);
464 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
465 }
466 break;
b92503b2
CL
467 }
468 return;
469}
470
1da177e4
LT
471/*
472 * Generic sendto routine
473 */
474static int
475svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr)
476{
477 struct svc_sock *svsk = rqstp->rq_sock;
478 struct socket *sock = svsk->sk_sock;
479 int slen;
bc375ea7
DM
480 union {
481 struct cmsghdr hdr;
482 long all[SVC_PKTINFO_SPACE / sizeof(long)];
483 } buffer;
484 struct cmsghdr *cmh = &buffer.hdr;
1da177e4
LT
485 int len = 0;
486 int result;
487 int size;
488 struct page **ppage = xdr->pages;
489 size_t base = xdr->page_base;
490 unsigned int pglen = xdr->page_len;
491 unsigned int flags = MSG_MORE;
ad06e4bd 492 char buf[RPC_MAX_ADDRBUFLEN];
1da177e4
LT
493
494 slen = xdr->len;
495
496 if (rqstp->rq_prot == IPPROTO_UDP) {
b92503b2
CL
497 struct msghdr msg = {
498 .msg_name = &rqstp->rq_addr,
499 .msg_namelen = rqstp->rq_addrlen,
500 .msg_control = cmh,
501 .msg_controllen = sizeof(buffer),
502 .msg_flags = MSG_MORE,
503 };
504
505 svc_set_cmsg_data(rqstp, cmh);
1da177e4
LT
506
507 if (sock_sendmsg(sock, &msg, 0) < 0)
508 goto out;
509 }
510
511 /* send head */
512 if (slen == xdr->head[0].iov_len)
513 flags = 0;
44524359
N
514 len = kernel_sendpage(sock, rqstp->rq_respages[0], 0,
515 xdr->head[0].iov_len, flags);
1da177e4
LT
516 if (len != xdr->head[0].iov_len)
517 goto out;
518 slen -= xdr->head[0].iov_len;
519 if (slen == 0)
520 goto out;
521
522 /* send page data */
523 size = PAGE_SIZE - base < pglen ? PAGE_SIZE - base : pglen;
524 while (pglen > 0) {
525 if (slen == size)
526 flags = 0;
e6242e92 527 result = kernel_sendpage(sock, *ppage, base, size, flags);
1da177e4
LT
528 if (result > 0)
529 len += result;
530 if (result != size)
531 goto out;
532 slen -= size;
533 pglen -= size;
534 size = PAGE_SIZE < pglen ? PAGE_SIZE : pglen;
535 base = 0;
536 ppage++;
537 }
538 /* send tail */
539 if (xdr->tail[0].iov_len) {
44524359
N
540 result = kernel_sendpage(sock, rqstp->rq_respages[0],
541 ((unsigned long)xdr->tail[0].iov_base)
cca5172a 542 & (PAGE_SIZE-1),
1da177e4
LT
543 xdr->tail[0].iov_len, 0);
544
545 if (result > 0)
546 len += result;
547 }
548out:
ad06e4bd
CL
549 dprintk("svc: socket %p sendto([%p %Zu... ], %d) = %d (addr %s)\n",
550 rqstp->rq_sock, xdr->head[0].iov_base, xdr->head[0].iov_len,
551 xdr->len, len, svc_print_addr(rqstp, buf, sizeof(buf)));
1da177e4
LT
552
553 return len;
554}
555
80212d59
N
556/*
557 * Report socket names for nfsdfs
558 */
559static int one_sock_name(char *buf, struct svc_sock *svsk)
560{
561 int len;
562
563 switch(svsk->sk_sk->sk_family) {
564 case AF_INET:
565 len = sprintf(buf, "ipv4 %s %u.%u.%u.%u %d\n",
566 svsk->sk_sk->sk_protocol==IPPROTO_UDP?
567 "udp" : "tcp",
568 NIPQUAD(inet_sk(svsk->sk_sk)->rcv_saddr),
569 inet_sk(svsk->sk_sk)->num);
570 break;
571 default:
572 len = sprintf(buf, "*unknown-%d*\n",
573 svsk->sk_sk->sk_family);
574 }
575 return len;
576}
577
578int
b41b66d6 579svc_sock_names(char *buf, struct svc_serv *serv, char *toclose)
80212d59 580{
b41b66d6 581 struct svc_sock *svsk, *closesk = NULL;
80212d59
N
582 int len = 0;
583
584 if (!serv)
585 return 0;
aaf68cfb 586 spin_lock_bh(&serv->sv_lock);
80212d59
N
587 list_for_each_entry(svsk, &serv->sv_permsocks, sk_list) {
588 int onelen = one_sock_name(buf+len, svsk);
b41b66d6
N
589 if (toclose && strcmp(toclose, buf+len) == 0)
590 closesk = svsk;
591 else
592 len += onelen;
80212d59 593 }
aaf68cfb 594 spin_unlock_bh(&serv->sv_lock);
b41b66d6 595 if (closesk)
5680c446
N
596 /* Should unregister with portmap, but you cannot
597 * unregister just one protocol...
598 */
aaf68cfb 599 svc_close_socket(closesk);
37a03472
N
600 else if (toclose)
601 return -ENOENT;
80212d59
N
602 return len;
603}
604EXPORT_SYMBOL(svc_sock_names);
605
1da177e4
LT
606/*
607 * Check input queue length
608 */
609static int
610svc_recv_available(struct svc_sock *svsk)
611{
1da177e4
LT
612 struct socket *sock = svsk->sk_sock;
613 int avail, err;
614
e6242e92 615 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
1da177e4
LT
616
617 return (err >= 0)? avail : err;
618}
619
620/*
621 * Generic recvfrom routine.
622 */
623static int
624svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr, int buflen)
625{
067d7817 626 struct svc_sock *svsk = rqstp->rq_sock;
1ba95105
CL
627 struct msghdr msg = {
628 .msg_flags = MSG_DONTWAIT,
629 };
a9747692 630 struct sockaddr *sin;
1ba95105 631 int len;
1da177e4 632
1ba95105
CL
633 len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
634 msg.msg_flags);
1da177e4
LT
635
636 /* sock_recvmsg doesn't fill in the name/namelen, so we must..
1da177e4 637 */
067d7817
CL
638 memcpy(&rqstp->rq_addr, &svsk->sk_remote, svsk->sk_remotelen);
639 rqstp->rq_addrlen = svsk->sk_remotelen;
1da177e4 640
a9747692
FM
641 /* Destination address in request is needed for binding the
642 * source address in RPC callbacks later.
643 */
644 sin = (struct sockaddr *)&svsk->sk_local;
645 switch (sin->sa_family) {
646 case AF_INET:
647 rqstp->rq_daddr.addr = ((struct sockaddr_in *)sin)->sin_addr;
648 break;
649 case AF_INET6:
650 rqstp->rq_daddr.addr6 = ((struct sockaddr_in6 *)sin)->sin6_addr;
651 break;
652 }
653
1da177e4 654 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
1ba95105 655 svsk, iov[0].iov_base, iov[0].iov_len, len);
1da177e4
LT
656
657 return len;
658}
659
660/*
661 * Set socket snd and rcv buffer lengths
662 */
663static inline void
664svc_sock_setbufsize(struct socket *sock, unsigned int snd, unsigned int rcv)
665{
666#if 0
667 mm_segment_t oldfs;
668 oldfs = get_fs(); set_fs(KERNEL_DS);
669 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
670 (char*)&snd, sizeof(snd));
671 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
672 (char*)&rcv, sizeof(rcv));
673#else
674 /* sock_setsockopt limits use to sysctl_?mem_max,
675 * which isn't acceptable. Until that is made conditional
676 * on not having CAP_SYS_RESOURCE or similar, we go direct...
677 * DaveM said I could!
678 */
679 lock_sock(sock->sk);
680 sock->sk->sk_sndbuf = snd * 2;
681 sock->sk->sk_rcvbuf = rcv * 2;
682 sock->sk->sk_userlocks |= SOCK_SNDBUF_LOCK|SOCK_RCVBUF_LOCK;
683 release_sock(sock->sk);
684#endif
685}
686/*
687 * INET callback when data has been received on the socket.
688 */
689static void
690svc_udp_data_ready(struct sock *sk, int count)
691{
939bb7ef 692 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
1da177e4 693
939bb7ef
NB
694 if (svsk) {
695 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
696 svsk, sk, count, test_bit(SK_BUSY, &svsk->sk_flags));
697 set_bit(SK_DATA, &svsk->sk_flags);
698 svc_sock_enqueue(svsk);
699 }
1da177e4
LT
700 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
701 wake_up_interruptible(sk->sk_sleep);
702}
703
704/*
705 * INET callback when space is newly available on the socket.
706 */
707static void
708svc_write_space(struct sock *sk)
709{
710 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
711
712 if (svsk) {
713 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
714 svsk, sk, test_bit(SK_BUSY, &svsk->sk_flags));
715 svc_sock_enqueue(svsk);
716 }
717
718 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) {
939bb7ef 719 dprintk("RPC svc_write_space: someone sleeping on %p\n",
1da177e4
LT
720 svsk);
721 wake_up_interruptible(sk->sk_sleep);
722 }
723}
724
7a37f578
N
725static inline void svc_udp_get_dest_address(struct svc_rqst *rqstp,
726 struct cmsghdr *cmh)
95756482
CL
727{
728 switch (rqstp->rq_sock->sk_sk->sk_family) {
729 case AF_INET: {
7a37f578
N
730 struct in_pktinfo *pki = CMSG_DATA(cmh);
731 rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_addr;
95756482 732 break;
7a37f578 733 }
95756482 734 case AF_INET6: {
7a37f578
N
735 struct in6_pktinfo *pki = CMSG_DATA(cmh);
736 ipv6_addr_copy(&rqstp->rq_daddr.addr6, &pki->ipi6_addr);
95756482 737 break;
7a37f578 738 }
95756482 739 }
95756482
CL
740}
741
1da177e4
LT
742/*
743 * Receive a datagram from a UDP socket.
744 */
1da177e4
LT
745static int
746svc_udp_recvfrom(struct svc_rqst *rqstp)
747{
748 struct svc_sock *svsk = rqstp->rq_sock;
749 struct svc_serv *serv = svsk->sk_server;
750 struct sk_buff *skb;
bc375ea7
DM
751 union {
752 struct cmsghdr hdr;
753 long all[SVC_PKTINFO_SPACE / sizeof(long)];
754 } buffer;
755 struct cmsghdr *cmh = &buffer.hdr;
1da177e4 756 int err, len;
7a37f578
N
757 struct msghdr msg = {
758 .msg_name = svc_addr(rqstp),
759 .msg_control = cmh,
760 .msg_controllen = sizeof(buffer),
761 .msg_flags = MSG_DONTWAIT,
762 };
1da177e4
LT
763
764 if (test_and_clear_bit(SK_CHNGBUF, &svsk->sk_flags))
765 /* udp sockets need large rcvbuf as all pending
766 * requests are still in that buffer. sndbuf must
767 * also be large enough that there is enough space
3262c816
GB
768 * for one reply per thread. We count all threads
769 * rather than threads in a particular pool, which
770 * provides an upper bound on the number of threads
771 * which will access the socket.
1da177e4
LT
772 */
773 svc_sock_setbufsize(svsk->sk_sock,
c6b0a9f8
N
774 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
775 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
1da177e4
LT
776
777 if ((rqstp->rq_deferred = svc_deferred_dequeue(svsk))) {
778 svc_sock_received(svsk);
779 return svc_deferred_recv(rqstp);
780 }
781
782 clear_bit(SK_DATA, &svsk->sk_flags);
05ed690e
N
783 skb = NULL;
784 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
785 0, 0, MSG_PEEK | MSG_DONTWAIT);
786 if (err >= 0)
787 skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err);
788
789 if (skb == NULL) {
790 if (err != -EAGAIN) {
791 /* possibly an icmp error */
792 dprintk("svc: recvfrom returned error %d\n", -err);
793 set_bit(SK_DATA, &svsk->sk_flags);
1da177e4 794 }
05ed690e
N
795 svc_sock_received(svsk);
796 return -EAGAIN;
1da177e4 797 }
7a37f578 798 rqstp->rq_addrlen = sizeof(rqstp->rq_addr);
b7aa0bf7
ED
799 if (skb->tstamp.tv64 == 0) {
800 skb->tstamp = ktime_get_real();
cca5172a 801 /* Don't enable netstamp, sunrpc doesn't
1da177e4
LT
802 need that much accuracy */
803 }
b7aa0bf7 804 svsk->sk_sk->sk_stamp = skb->tstamp;
1da177e4
LT
805 set_bit(SK_DATA, &svsk->sk_flags); /* there may be more data... */
806
807 /*
808 * Maybe more packets - kick another thread ASAP.
809 */
810 svc_sock_received(svsk);
811
812 len = skb->len - sizeof(struct udphdr);
813 rqstp->rq_arg.len = len;
814
95756482 815 rqstp->rq_prot = IPPROTO_UDP;
27459f09 816
7a37f578
N
817 if (cmh->cmsg_level != IPPROTO_IP ||
818 cmh->cmsg_type != IP_PKTINFO) {
819 if (net_ratelimit())
820 printk("rpcsvc: received unknown control message:"
821 "%d/%d\n",
822 cmh->cmsg_level, cmh->cmsg_type);
823 skb_free_datagram(svsk->sk_sk, skb);
824 return 0;
825 }
826 svc_udp_get_dest_address(rqstp, cmh);
1da177e4
LT
827
828 if (skb_is_nonlinear(skb)) {
829 /* we have to copy */
830 local_bh_disable();
831 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
832 local_bh_enable();
833 /* checksum error */
834 skb_free_datagram(svsk->sk_sk, skb);
835 return 0;
836 }
837 local_bh_enable();
cca5172a 838 skb_free_datagram(svsk->sk_sk, skb);
1da177e4
LT
839 } else {
840 /* we can use it in-place */
841 rqstp->rq_arg.head[0].iov_base = skb->data + sizeof(struct udphdr);
842 rqstp->rq_arg.head[0].iov_len = len;
fb286bb2
HX
843 if (skb_checksum_complete(skb)) {
844 skb_free_datagram(svsk->sk_sk, skb);
845 return 0;
1da177e4 846 }
5148bf4e 847 rqstp->rq_xprt_ctxt = skb;
1da177e4
LT
848 }
849
850 rqstp->rq_arg.page_base = 0;
851 if (len <= rqstp->rq_arg.head[0].iov_len) {
852 rqstp->rq_arg.head[0].iov_len = len;
853 rqstp->rq_arg.page_len = 0;
44524359 854 rqstp->rq_respages = rqstp->rq_pages+1;
1da177e4
LT
855 } else {
856 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
44524359 857 rqstp->rq_respages = rqstp->rq_pages + 1 +
172589cc 858 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
1da177e4
LT
859 }
860
861 if (serv->sv_stats)
862 serv->sv_stats->netudpcnt++;
863
864 return len;
865}
866
867static int
868svc_udp_sendto(struct svc_rqst *rqstp)
869{
870 int error;
871
872 error = svc_sendto(rqstp, &rqstp->rq_res);
873 if (error == -ECONNREFUSED)
874 /* ICMP error on earlier request. */
875 error = svc_sendto(rqstp, &rqstp->rq_res);
876
877 return error;
878}
879
e831fe65
TT
880static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp)
881{
882}
883
323bee32
TT
884static int svc_udp_has_wspace(struct svc_xprt *xprt)
885{
886 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
887 struct svc_serv *serv = svsk->sk_server;
888 unsigned long required;
889
890 /*
891 * Set the SOCK_NOSPACE flag before checking the available
892 * sock space.
893 */
894 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
895 required = atomic_read(&svsk->sk_reserved) + serv->sv_max_mesg;
896 if (required*2 > sock_wspace(svsk->sk_sk))
897 return 0;
898 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
899 return 1;
900}
901
38a417cc
TT
902static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt)
903{
904 BUG();
905 return NULL;
906}
907
b700cbb1
TT
908static struct svc_xprt *svc_udp_create(struct svc_serv *serv,
909 struct sockaddr *sa, int salen,
910 int flags)
911{
912 return svc_create_socket(serv, IPPROTO_UDP, sa, salen, flags);
913}
914
360d8738 915static struct svc_xprt_ops svc_udp_ops = {
b700cbb1 916 .xpo_create = svc_udp_create,
5d137990
TT
917 .xpo_recvfrom = svc_udp_recvfrom,
918 .xpo_sendto = svc_udp_sendto,
5148bf4e 919 .xpo_release_rqst = svc_release_skb,
755cceab
TT
920 .xpo_detach = svc_sock_detach,
921 .xpo_free = svc_sock_free,
e831fe65 922 .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr,
323bee32 923 .xpo_has_wspace = svc_udp_has_wspace,
38a417cc 924 .xpo_accept = svc_udp_accept,
360d8738
TT
925};
926
927static struct svc_xprt_class svc_udp_class = {
928 .xcl_name = "udp",
b700cbb1 929 .xcl_owner = THIS_MODULE,
360d8738 930 .xcl_ops = &svc_udp_ops,
49023155 931 .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP,
360d8738
TT
932};
933
1da177e4
LT
934static void
935svc_udp_init(struct svc_sock *svsk)
936{
7a37f578
N
937 int one = 1;
938 mm_segment_t oldfs;
939
360d8738 940 svc_xprt_init(&svc_udp_class, &svsk->sk_xprt);
1da177e4
LT
941 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
942 svsk->sk_sk->sk_write_space = svc_write_space;
1da177e4
LT
943
944 /* initialise setting must have enough space to
cca5172a 945 * receive and respond to one request.
1da177e4
LT
946 * svc_udp_recvfrom will re-adjust if necessary
947 */
948 svc_sock_setbufsize(svsk->sk_sock,
c6b0a9f8
N
949 3 * svsk->sk_server->sv_max_mesg,
950 3 * svsk->sk_server->sv_max_mesg);
1da177e4
LT
951
952 set_bit(SK_DATA, &svsk->sk_flags); /* might have come in before data_ready set up */
953 set_bit(SK_CHNGBUF, &svsk->sk_flags);
7a37f578
N
954
955 oldfs = get_fs();
956 set_fs(KERNEL_DS);
957 /* make sure we get destination address info */
958 svsk->sk_sock->ops->setsockopt(svsk->sk_sock, IPPROTO_IP, IP_PKTINFO,
959 (char __user *)&one, sizeof(one));
960 set_fs(oldfs);
1da177e4
LT
961}
962
963/*
964 * A data_ready event on a listening socket means there's a connection
965 * pending. Do not use state_change as a substitute for it.
966 */
967static void
968svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
969{
939bb7ef 970 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
1da177e4
LT
971
972 dprintk("svc: socket %p TCP (listen) state change %d\n",
939bb7ef 973 sk, sk->sk_state);
1da177e4 974
939bb7ef
NB
975 /*
976 * This callback may called twice when a new connection
977 * is established as a child socket inherits everything
978 * from a parent LISTEN socket.
979 * 1) data_ready method of the parent socket will be called
980 * when one of child sockets become ESTABLISHED.
981 * 2) data_ready method of the child socket may be called
982 * when it receives data before the socket is accepted.
983 * In case of 2, we should ignore it silently.
984 */
985 if (sk->sk_state == TCP_LISTEN) {
986 if (svsk) {
987 set_bit(SK_CONN, &svsk->sk_flags);
988 svc_sock_enqueue(svsk);
989 } else
990 printk("svc: socket %p: no user data\n", sk);
1da177e4 991 }
939bb7ef 992
1da177e4
LT
993 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
994 wake_up_interruptible_all(sk->sk_sleep);
995}
996
997/*
998 * A state change on a connected socket means it's dying or dead.
999 */
1000static void
1001svc_tcp_state_change(struct sock *sk)
1002{
939bb7ef 1003 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
1da177e4
LT
1004
1005 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
939bb7ef 1006 sk, sk->sk_state, sk->sk_user_data);
1da177e4 1007
939bb7ef 1008 if (!svsk)
1da177e4 1009 printk("svc: socket %p: no user data\n", sk);
939bb7ef
NB
1010 else {
1011 set_bit(SK_CLOSE, &svsk->sk_flags);
1012 svc_sock_enqueue(svsk);
1da177e4 1013 }
1da177e4
LT
1014 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
1015 wake_up_interruptible_all(sk->sk_sleep);
1016}
1017
1018static void
1019svc_tcp_data_ready(struct sock *sk, int count)
1020{
939bb7ef 1021 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
1da177e4
LT
1022
1023 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
939bb7ef
NB
1024 sk, sk->sk_user_data);
1025 if (svsk) {
1026 set_bit(SK_DATA, &svsk->sk_flags);
1027 svc_sock_enqueue(svsk);
1028 }
1da177e4
LT
1029 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
1030 wake_up_interruptible(sk->sk_sleep);
1031}
1032
bcdb81ae
CL
1033static inline int svc_port_is_privileged(struct sockaddr *sin)
1034{
1035 switch (sin->sa_family) {
1036 case AF_INET:
1037 return ntohs(((struct sockaddr_in *)sin)->sin_port)
1038 < PROT_SOCK;
bcdb81ae
CL
1039 case AF_INET6:
1040 return ntohs(((struct sockaddr_in6 *)sin)->sin6_port)
1041 < PROT_SOCK;
bcdb81ae
CL
1042 default:
1043 return 0;
1044 }
1045}
1046
1da177e4
LT
1047/*
1048 * Accept a TCP connection
1049 */
38a417cc 1050static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt)
1da177e4 1051{
38a417cc 1052 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
cdd88b9f 1053 struct sockaddr_storage addr;
1054 struct sockaddr *sin = (struct sockaddr *) &addr;
1da177e4
LT
1055 struct svc_serv *serv = svsk->sk_server;
1056 struct socket *sock = svsk->sk_sock;
1057 struct socket *newsock;
1da177e4
LT
1058 struct svc_sock *newsvsk;
1059 int err, slen;
ad06e4bd 1060 char buf[RPC_MAX_ADDRBUFLEN];
1da177e4
LT
1061
1062 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
1063 if (!sock)
38a417cc 1064 return NULL;
1da177e4 1065
e6242e92
SS
1066 clear_bit(SK_CONN, &svsk->sk_flags);
1067 err = kernel_accept(sock, &newsock, O_NONBLOCK);
1068 if (err < 0) {
1da177e4
LT
1069 if (err == -ENOMEM)
1070 printk(KERN_WARNING "%s: no more sockets!\n",
1071 serv->sv_name);
e6242e92 1072 else if (err != -EAGAIN && net_ratelimit())
1da177e4
LT
1073 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
1074 serv->sv_name, -err);
38a417cc 1075 return NULL;
1da177e4 1076 }
e6242e92 1077
1da177e4 1078 set_bit(SK_CONN, &svsk->sk_flags);
1da177e4 1079
cdd88b9f 1080 err = kernel_getpeername(newsock, sin, &slen);
1da177e4
LT
1081 if (err < 0) {
1082 if (net_ratelimit())
1083 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
1084 serv->sv_name, -err);
1085 goto failed; /* aborted connection or whatever */
1086 }
1087
1088 /* Ideally, we would want to reject connections from unauthorized
ad06e4bd
CL
1089 * hosts here, but when we get encryption, the IP of the host won't
1090 * tell us anything. For now just warn about unpriv connections.
1da177e4 1091 */
cdd88b9f 1092 if (!svc_port_is_privileged(sin)) {
1da177e4 1093 dprintk(KERN_WARNING
ad06e4bd 1094 "%s: connect from unprivileged port: %s\n",
cca5172a 1095 serv->sv_name,
cdd88b9f 1096 __svc_print_addr(sin, buf, sizeof(buf)));
1da177e4 1097 }
ad06e4bd 1098 dprintk("%s: connect from %s\n", serv->sv_name,
cdd88b9f 1099 __svc_print_addr(sin, buf, sizeof(buf)));
1da177e4
LT
1100
1101 /* make sure that a write doesn't block forever when
1102 * low on memory
1103 */
1104 newsock->sk->sk_sndtimeo = HZ*30;
1105
6b174337
CL
1106 if (!(newsvsk = svc_setup_socket(serv, newsock, &err,
1107 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY))))
1da177e4 1108 goto failed;
cdd88b9f 1109 memcpy(&newsvsk->sk_remote, sin, slen);
067d7817 1110 newsvsk->sk_remotelen = slen;
a9747692
FM
1111 err = kernel_getsockname(newsock, sin, &slen);
1112 if (unlikely(err < 0)) {
1113 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
1114 slen = offsetof(struct sockaddr, sa_data);
1115 }
1116 memcpy(&newsvsk->sk_local, sin, slen);
067d7817 1117
e79eff1f 1118 svc_sock_received(newsvsk);
1da177e4 1119
f9f3cc4f
TT
1120 if (serv->sv_stats)
1121 serv->sv_stats->nettcpconn++;
1122
1123 return &newsvsk->sk_xprt;
1124
1125failed:
1126 sock_release(newsock);
1127 return NULL;
1128}
1129
1130/*
1131 * Make sure that we don't have too many active connections. If we
1132 * have, something must be dropped.
1133 *
1134 * There's no point in trying to do random drop here for DoS
1135 * prevention. The NFS clients does 1 reconnect in 15 seconds. An
1136 * attacker can easily beat that.
1137 *
1138 * The only somewhat efficient mechanism would be if drop old
1139 * connections from the same IP first. But right now we don't even
1140 * record the client IP in svc_sock.
1141 */
1142static void svc_check_conn_limits(struct svc_serv *serv)
1143{
1da177e4
LT
1144 if (serv->sv_tmpcnt > (serv->sv_nrthreads+3)*20) {
1145 struct svc_sock *svsk = NULL;
1146 spin_lock_bh(&serv->sv_lock);
1147 if (!list_empty(&serv->sv_tempsocks)) {
1148 if (net_ratelimit()) {
1149 /* Try to help the admin */
1150 printk(KERN_NOTICE "%s: too many open TCP "
f9f3cc4f
TT
1151 "sockets, consider increasing the "
1152 "number of nfsd threads\n",
1153 serv->sv_name);
1da177e4
LT
1154 }
1155 /*
1156 * Always select the oldest socket. It's not fair,
1157 * but so is life
1158 */
1159 svsk = list_entry(serv->sv_tempsocks.prev,
1160 struct svc_sock,
1161 sk_list);
1162 set_bit(SK_CLOSE, &svsk->sk_flags);
c45c357d 1163 atomic_inc(&svsk->sk_inuse);
1da177e4
LT
1164 }
1165 spin_unlock_bh(&serv->sv_lock);
1166
1167 if (svsk) {
1168 svc_sock_enqueue(svsk);
1169 svc_sock_put(svsk);
1170 }
1da177e4 1171 }
1da177e4
LT
1172}
1173
1174/*
1175 * Receive data from a TCP socket.
1176 */
1177static int
1178svc_tcp_recvfrom(struct svc_rqst *rqstp)
1179{
1180 struct svc_sock *svsk = rqstp->rq_sock;
1181 struct svc_serv *serv = svsk->sk_server;
1182 int len;
3cc03b16 1183 struct kvec *vec;
1da177e4
LT
1184 int pnum, vlen;
1185
1186 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
1187 svsk, test_bit(SK_DATA, &svsk->sk_flags),
1188 test_bit(SK_CONN, &svsk->sk_flags),
1189 test_bit(SK_CLOSE, &svsk->sk_flags));
1190
1191 if ((rqstp->rq_deferred = svc_deferred_dequeue(svsk))) {
1192 svc_sock_received(svsk);
1193 return svc_deferred_recv(rqstp);
1194 }
1195
1da177e4
LT
1196 if (test_and_clear_bit(SK_CHNGBUF, &svsk->sk_flags))
1197 /* sndbuf needs to have room for one request
1198 * per thread, otherwise we can stall even when the
1199 * network isn't a bottleneck.
3262c816
GB
1200 *
1201 * We count all threads rather than threads in a
1202 * particular pool, which provides an upper bound
1203 * on the number of threads which will access the socket.
1204 *
1da177e4 1205 * rcvbuf just needs to be able to hold a few requests.
cca5172a 1206 * Normally they will be removed from the queue
1da177e4
LT
1207 * as soon a a complete request arrives.
1208 */
1209 svc_sock_setbufsize(svsk->sk_sock,
c6b0a9f8
N
1210 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
1211 3 * serv->sv_max_mesg);
1da177e4
LT
1212
1213 clear_bit(SK_DATA, &svsk->sk_flags);
1214
1215 /* Receive data. If we haven't got the record length yet, get
1216 * the next four bytes. Otherwise try to gobble up as much as
1217 * possible up to the complete record length.
1218 */
1219 if (svsk->sk_tcplen < 4) {
1220 unsigned long want = 4 - svsk->sk_tcplen;
1221 struct kvec iov;
1222
1223 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
1224 iov.iov_len = want;
1225 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
1226 goto error;
1227 svsk->sk_tcplen += len;
1228
1229 if (len < want) {
1230 dprintk("svc: short recvfrom while reading record length (%d of %lu)\n",
cca5172a 1231 len, want);
1da177e4
LT
1232 svc_sock_received(svsk);
1233 return -EAGAIN; /* record header not complete */
1234 }
1235
1236 svsk->sk_reclen = ntohl(svsk->sk_reclen);
1237 if (!(svsk->sk_reclen & 0x80000000)) {
1238 /* FIXME: technically, a record can be fragmented,
1239 * and non-terminal fragments will not have the top
1240 * bit set in the fragment length header.
1241 * But apparently no known nfs clients send fragmented
1242 * records. */
34e9a63b
N
1243 if (net_ratelimit())
1244 printk(KERN_NOTICE "RPC: bad TCP reclen 0x%08lx"
1245 " (non-terminal)\n",
1246 (unsigned long) svsk->sk_reclen);
1da177e4
LT
1247 goto err_delete;
1248 }
1249 svsk->sk_reclen &= 0x7fffffff;
1250 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
c6b0a9f8 1251 if (svsk->sk_reclen > serv->sv_max_mesg) {
34e9a63b
N
1252 if (net_ratelimit())
1253 printk(KERN_NOTICE "RPC: bad TCP reclen 0x%08lx"
1254 " (large)\n",
1255 (unsigned long) svsk->sk_reclen);
1da177e4
LT
1256 goto err_delete;
1257 }
1258 }
1259
1260 /* Check whether enough data is available */
1261 len = svc_recv_available(svsk);
1262 if (len < 0)
1263 goto error;
1264
1265 if (len < svsk->sk_reclen) {
1266 dprintk("svc: incomplete TCP record (%d of %d)\n",
1267 len, svsk->sk_reclen);
1268 svc_sock_received(svsk);
1269 return -EAGAIN; /* record not complete */
1270 }
1271 len = svsk->sk_reclen;
1272 set_bit(SK_DATA, &svsk->sk_flags);
1273
3cc03b16 1274 vec = rqstp->rq_vec;
1da177e4
LT
1275 vec[0] = rqstp->rq_arg.head[0];
1276 vlen = PAGE_SIZE;
1277 pnum = 1;
1278 while (vlen < len) {
44524359 1279 vec[pnum].iov_base = page_address(rqstp->rq_pages[pnum]);
1da177e4
LT
1280 vec[pnum].iov_len = PAGE_SIZE;
1281 pnum++;
1282 vlen += PAGE_SIZE;
1283 }
44524359 1284 rqstp->rq_respages = &rqstp->rq_pages[pnum];
1da177e4
LT
1285
1286 /* Now receive data */
1287 len = svc_recvfrom(rqstp, vec, pnum, len);
1288 if (len < 0)
1289 goto error;
1290
1291 dprintk("svc: TCP complete record (%d bytes)\n", len);
1292 rqstp->rq_arg.len = len;
1293 rqstp->rq_arg.page_base = 0;
1294 if (len <= rqstp->rq_arg.head[0].iov_len) {
1295 rqstp->rq_arg.head[0].iov_len = len;
1296 rqstp->rq_arg.page_len = 0;
1297 } else {
1298 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
1299 }
1300
5148bf4e 1301 rqstp->rq_xprt_ctxt = NULL;
1da177e4
LT
1302 rqstp->rq_prot = IPPROTO_TCP;
1303
1304 /* Reset TCP read info */
1305 svsk->sk_reclen = 0;
1306 svsk->sk_tcplen = 0;
1307
1308 svc_sock_received(svsk);
1309 if (serv->sv_stats)
1310 serv->sv_stats->nettcpcnt++;
1311
1312 return len;
1313
1314 err_delete:
d7979ae4 1315 set_bit(SK_CLOSE, &svsk->sk_flags);
1da177e4
LT
1316 return -EAGAIN;
1317
1318 error:
1319 if (len == -EAGAIN) {
1320 dprintk("RPC: TCP recvfrom got EAGAIN\n");
1321 svc_sock_received(svsk);
1322 } else {
1323 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
1324 svsk->sk_server->sv_name, -len);
93fbf1a5 1325 goto err_delete;
1da177e4
LT
1326 }
1327
1328 return len;
1329}
1330
1331/*
1332 * Send out data on TCP socket.
1333 */
1334static int
1335svc_tcp_sendto(struct svc_rqst *rqstp)
1336{
1337 struct xdr_buf *xbufp = &rqstp->rq_res;
1338 int sent;
d8ed029d 1339 __be32 reclen;
1da177e4
LT
1340
1341 /* Set up the first element of the reply kvec.
1342 * Any other kvecs that may be in use have been taken
1343 * care of by the server implementation itself.
1344 */
1345 reclen = htonl(0x80000000|((xbufp->len ) - 4));
1346 memcpy(xbufp->head[0].iov_base, &reclen, 4);
1347
1348 if (test_bit(SK_DEAD, &rqstp->rq_sock->sk_flags))
1349 return -ENOTCONN;
1350
1351 sent = svc_sendto(rqstp, &rqstp->rq_res);
1352 if (sent != xbufp->len) {
1353 printk(KERN_NOTICE "rpc-srv/tcp: %s: %s %d when sending %d bytes - shutting down socket\n",
1354 rqstp->rq_sock->sk_server->sv_name,
1355 (sent<0)?"got error":"sent only",
1356 sent, xbufp->len);
aaf68cfb
N
1357 set_bit(SK_CLOSE, &rqstp->rq_sock->sk_flags);
1358 svc_sock_enqueue(rqstp->rq_sock);
1da177e4
LT
1359 sent = -EAGAIN;
1360 }
1361 return sent;
1362}
1363
e831fe65
TT
1364/*
1365 * Setup response header. TCP has a 4B record length field.
1366 */
1367static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp)
1368{
1369 struct kvec *resv = &rqstp->rq_res.head[0];
1370
1371 /* tcp needs a space for the record length... */
1372 svc_putnl(resv, 0);
1373}
1374
323bee32
TT
1375static int svc_tcp_has_wspace(struct svc_xprt *xprt)
1376{
1377 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1378 struct svc_serv *serv = svsk->sk_server;
1379 int required;
1380 int wspace;
1381
1382 /*
1383 * Set the SOCK_NOSPACE flag before checking the available
1384 * sock space.
1385 */
1386 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
1387 required = atomic_read(&svsk->sk_reserved) + serv->sv_max_mesg;
1388 wspace = sk_stream_wspace(svsk->sk_sk);
1389
1390 if (wspace < sk_stream_min_wspace(svsk->sk_sk))
1391 return 0;
1392 if (required * 2 > wspace)
1393 return 0;
1394
1395 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
1396 return 1;
1397}
1398
b700cbb1
TT
1399static struct svc_xprt *svc_tcp_create(struct svc_serv *serv,
1400 struct sockaddr *sa, int salen,
1401 int flags)
1402{
1403 return svc_create_socket(serv, IPPROTO_TCP, sa, salen, flags);
1404}
1405
360d8738 1406static struct svc_xprt_ops svc_tcp_ops = {
b700cbb1 1407 .xpo_create = svc_tcp_create,
5d137990
TT
1408 .xpo_recvfrom = svc_tcp_recvfrom,
1409 .xpo_sendto = svc_tcp_sendto,
5148bf4e 1410 .xpo_release_rqst = svc_release_skb,
755cceab
TT
1411 .xpo_detach = svc_sock_detach,
1412 .xpo_free = svc_sock_free,
e831fe65 1413 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
323bee32 1414 .xpo_has_wspace = svc_tcp_has_wspace,
38a417cc 1415 .xpo_accept = svc_tcp_accept,
360d8738
TT
1416};
1417
1418static struct svc_xprt_class svc_tcp_class = {
1419 .xcl_name = "tcp",
b700cbb1 1420 .xcl_owner = THIS_MODULE,
360d8738 1421 .xcl_ops = &svc_tcp_ops,
49023155 1422 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
360d8738
TT
1423};
1424
1425void svc_init_xprt_sock(void)
1426{
1427 svc_reg_xprt_class(&svc_tcp_class);
1428 svc_reg_xprt_class(&svc_udp_class);
1429}
1430
1431void svc_cleanup_xprt_sock(void)
1432{
1433 svc_unreg_xprt_class(&svc_tcp_class);
1434 svc_unreg_xprt_class(&svc_udp_class);
1435}
1436
1da177e4
LT
1437static void
1438svc_tcp_init(struct svc_sock *svsk)
1439{
1440 struct sock *sk = svsk->sk_sk;
1441 struct tcp_sock *tp = tcp_sk(sk);
1442
360d8738 1443 svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt);
1da177e4
LT
1444
1445 if (sk->sk_state == TCP_LISTEN) {
1446 dprintk("setting up TCP socket for listening\n");
38a417cc 1447 set_bit(SK_LISTENER, &svsk->sk_flags);
1da177e4
LT
1448 sk->sk_data_ready = svc_tcp_listen_data_ready;
1449 set_bit(SK_CONN, &svsk->sk_flags);
1450 } else {
1451 dprintk("setting up TCP socket for reading\n");
1452 sk->sk_state_change = svc_tcp_state_change;
1453 sk->sk_data_ready = svc_tcp_data_ready;
1454 sk->sk_write_space = svc_write_space;
1455
1456 svsk->sk_reclen = 0;
1457 svsk->sk_tcplen = 0;
1458
1459 tp->nonagle = 1; /* disable Nagle's algorithm */
1460
1461 /* initialise setting must have enough space to
cca5172a 1462 * receive and respond to one request.
1da177e4
LT
1463 * svc_tcp_recvfrom will re-adjust if necessary
1464 */
1465 svc_sock_setbufsize(svsk->sk_sock,
c6b0a9f8
N
1466 3 * svsk->sk_server->sv_max_mesg,
1467 3 * svsk->sk_server->sv_max_mesg);
1da177e4
LT
1468
1469 set_bit(SK_CHNGBUF, &svsk->sk_flags);
1470 set_bit(SK_DATA, &svsk->sk_flags);
cca5172a 1471 if (sk->sk_state != TCP_ESTABLISHED)
1da177e4
LT
1472 set_bit(SK_CLOSE, &svsk->sk_flags);
1473 }
1474}
1475
1476void
1477svc_sock_update_bufs(struct svc_serv *serv)
1478{
1479 /*
1480 * The number of server threads has changed. Update
1481 * rcvbuf and sndbuf accordingly on all sockets
1482 */
1483 struct list_head *le;
1484
1485 spin_lock_bh(&serv->sv_lock);
1486 list_for_each(le, &serv->sv_permsocks) {
cca5172a 1487 struct svc_sock *svsk =
1da177e4
LT
1488 list_entry(le, struct svc_sock, sk_list);
1489 set_bit(SK_CHNGBUF, &svsk->sk_flags);
1490 }
1491 list_for_each(le, &serv->sv_tempsocks) {
1492 struct svc_sock *svsk =
1493 list_entry(le, struct svc_sock, sk_list);
1494 set_bit(SK_CHNGBUF, &svsk->sk_flags);
1495 }
1496 spin_unlock_bh(&serv->sv_lock);
1497}
1498
1499/*
3262c816
GB
1500 * Receive the next request on any socket. This code is carefully
1501 * organised not to touch any cachelines in the shared svc_serv
1502 * structure, only cachelines in the local svc_pool.
1da177e4
LT
1503 */
1504int
6fb2b47f 1505svc_recv(struct svc_rqst *rqstp, long timeout)
1da177e4 1506{
27459f09 1507 struct svc_sock *svsk = NULL;
6fb2b47f 1508 struct svc_serv *serv = rqstp->rq_server;
3262c816 1509 struct svc_pool *pool = rqstp->rq_pool;
44524359 1510 int len, i;
1da177e4
LT
1511 int pages;
1512 struct xdr_buf *arg;
1513 DECLARE_WAITQUEUE(wait, current);
1514
1515 dprintk("svc: server %p waiting for data (to = %ld)\n",
1516 rqstp, timeout);
1517
1518 if (rqstp->rq_sock)
cca5172a 1519 printk(KERN_ERR
1da177e4
LT
1520 "svc_recv: service %p, socket not NULL!\n",
1521 rqstp);
1522 if (waitqueue_active(&rqstp->rq_wait))
cca5172a 1523 printk(KERN_ERR
1da177e4
LT
1524 "svc_recv: service %p, wait queue active!\n",
1525 rqstp);
1526
1da177e4
LT
1527
1528 /* now allocate needed pages. If we get a failure, sleep briefly */
c6b0a9f8 1529 pages = (serv->sv_max_mesg + PAGE_SIZE) / PAGE_SIZE;
44524359
N
1530 for (i=0; i < pages ; i++)
1531 while (rqstp->rq_pages[i] == NULL) {
1532 struct page *p = alloc_page(GFP_KERNEL);
1533 if (!p)
1534 schedule_timeout_uninterruptible(msecs_to_jiffies(500));
1535 rqstp->rq_pages[i] = p;
1da177e4 1536 }
250f3915
N
1537 rqstp->rq_pages[i++] = NULL; /* this might be seen in nfs_read_actor */
1538 BUG_ON(pages >= RPCSVC_MAXPAGES);
1da177e4
LT
1539
1540 /* Make arg->head point to first page and arg->pages point to rest */
1541 arg = &rqstp->rq_arg;
44524359 1542 arg->head[0].iov_base = page_address(rqstp->rq_pages[0]);
1da177e4 1543 arg->head[0].iov_len = PAGE_SIZE;
44524359 1544 arg->pages = rqstp->rq_pages + 1;
1da177e4
LT
1545 arg->page_base = 0;
1546 /* save at least one page for response */
1547 arg->page_len = (pages-2)*PAGE_SIZE;
1548 arg->len = (pages-1)*PAGE_SIZE;
1549 arg->tail[0].iov_len = 0;
3e1d1d28
CL
1550
1551 try_to_freeze();
1887b935 1552 cond_resched();
1da177e4
LT
1553 if (signalled())
1554 return -EINTR;
1555
3262c816
GB
1556 spin_lock_bh(&pool->sp_lock);
1557 if ((svsk = svc_sock_dequeue(pool)) != NULL) {
1da177e4 1558 rqstp->rq_sock = svsk;
c45c357d 1559 atomic_inc(&svsk->sk_inuse);
c6b0a9f8 1560 rqstp->rq_reserved = serv->sv_max_mesg;
5685f0fa 1561 atomic_add(rqstp->rq_reserved, &svsk->sk_reserved);
1da177e4
LT
1562 } else {
1563 /* No data pending. Go to sleep */
3262c816 1564 svc_thread_enqueue(pool, rqstp);
1da177e4
LT
1565
1566 /*
1567 * We have to be able to interrupt this wait
1568 * to bring down the daemons ...
1569 */
1570 set_current_state(TASK_INTERRUPTIBLE);
1571 add_wait_queue(&rqstp->rq_wait, &wait);
3262c816 1572 spin_unlock_bh(&pool->sp_lock);
1da177e4
LT
1573
1574 schedule_timeout(timeout);
1575
3e1d1d28 1576 try_to_freeze();
1da177e4 1577
3262c816 1578 spin_lock_bh(&pool->sp_lock);
1da177e4
LT
1579 remove_wait_queue(&rqstp->rq_wait, &wait);
1580
1581 if (!(svsk = rqstp->rq_sock)) {
3262c816
GB
1582 svc_thread_dequeue(pool, rqstp);
1583 spin_unlock_bh(&pool->sp_lock);
1da177e4
LT
1584 dprintk("svc: server %p, no data yet\n", rqstp);
1585 return signalled()? -EINTR : -EAGAIN;
1586 }
1587 }
3262c816 1588 spin_unlock_bh(&pool->sp_lock);
1da177e4 1589
d7979ae4
TT
1590 len = 0;
1591 if (test_bit(SK_CLOSE, &svsk->sk_flags)) {
1592 dprintk("svc_recv: found SK_CLOSE\n");
1593 svc_delete_socket(svsk);
38a417cc
TT
1594 } else if (test_bit(SK_LISTENER, &svsk->sk_flags)) {
1595 struct svc_xprt *newxpt;
1596 newxpt = svsk->sk_xprt.xpt_ops->xpo_accept(&svsk->sk_xprt);
b700cbb1
TT
1597 if (newxpt) {
1598 /*
1599 * We know this module_get will succeed because the
1600 * listener holds a reference too
1601 */
1602 __module_get(newxpt->xpt_class->xcl_owner);
f9f3cc4f 1603 svc_check_conn_limits(svsk->sk_server);
b700cbb1 1604 }
38a417cc 1605 svc_sock_received(svsk);
d7979ae4
TT
1606 } else {
1607 dprintk("svc: server %p, pool %u, socket %p, inuse=%d\n",
1608 rqstp, pool->sp_id, svsk, atomic_read(&svsk->sk_inuse));
1609 len = svsk->sk_xprt.xpt_ops->xpo_recvfrom(rqstp);
1610 dprintk("svc: got len=%d\n", len);
1611 }
1da177e4
LT
1612
1613 /* No data, incomplete (TCP) read, or accept() */
1614 if (len == 0 || len == -EAGAIN) {
1615 rqstp->rq_res.len = 0;
1616 svc_sock_release(rqstp);
1617 return -EAGAIN;
1618 }
1619 svsk->sk_lastrecv = get_seconds();
36bdfc8b 1620 clear_bit(SK_OLD, &svsk->sk_flags);
1da177e4 1621
bcdb81ae 1622 rqstp->rq_secure = svc_port_is_privileged(svc_addr(rqstp));
1da177e4
LT
1623 rqstp->rq_chandle.defer = svc_defer;
1624
1625 if (serv->sv_stats)
1626 serv->sv_stats->netcnt++;
1627 return len;
1628}
1629
cca5172a 1630/*
1da177e4
LT
1631 * Drop request
1632 */
1633void
1634svc_drop(struct svc_rqst *rqstp)
1635{
1636 dprintk("svc: socket %p dropped request\n", rqstp->rq_sock);
1637 svc_sock_release(rqstp);
1638}
1639
1640/*
1641 * Return reply to client.
1642 */
1643int
1644svc_send(struct svc_rqst *rqstp)
1645{
1646 struct svc_sock *svsk;
1647 int len;
1648 struct xdr_buf *xb;
1649
1650 if ((svsk = rqstp->rq_sock) == NULL) {
1651 printk(KERN_WARNING "NULL socket pointer in %s:%d\n",
1652 __FILE__, __LINE__);
1653 return -EFAULT;
1654 }
1655
1656 /* release the receive skb before sending the reply */
5148bf4e 1657 rqstp->rq_xprt->xpt_ops->xpo_release_rqst(rqstp);
1da177e4
LT
1658
1659 /* calculate over-all length */
1660 xb = & rqstp->rq_res;
1661 xb->len = xb->head[0].iov_len +
1662 xb->page_len +
1663 xb->tail[0].iov_len;
1664
57b47a53
IM
1665 /* Grab svsk->sk_mutex to serialize outgoing data. */
1666 mutex_lock(&svsk->sk_mutex);
1da177e4
LT
1667 if (test_bit(SK_DEAD, &svsk->sk_flags))
1668 len = -ENOTCONN;
1669 else
5d137990 1670 len = svsk->sk_xprt.xpt_ops->xpo_sendto(rqstp);
57b47a53 1671 mutex_unlock(&svsk->sk_mutex);
1da177e4
LT
1672 svc_sock_release(rqstp);
1673
1674 if (len == -ECONNREFUSED || len == -ENOTCONN || len == -EAGAIN)
1675 return 0;
1676 return len;
1677}
1678
36bdfc8b
GB
1679/*
1680 * Timer function to close old temporary sockets, using
1681 * a mark-and-sweep algorithm.
1682 */
1683static void
1684svc_age_temp_sockets(unsigned long closure)
1685{
1686 struct svc_serv *serv = (struct svc_serv *)closure;
1687 struct svc_sock *svsk;
1688 struct list_head *le, *next;
1689 LIST_HEAD(to_be_aged);
1690
1691 dprintk("svc_age_temp_sockets\n");
1692
1693 if (!spin_trylock_bh(&serv->sv_lock)) {
1694 /* busy, try again 1 sec later */
1695 dprintk("svc_age_temp_sockets: busy\n");
1696 mod_timer(&serv->sv_temptimer, jiffies + HZ);
1697 return;
1698 }
1699
1700 list_for_each_safe(le, next, &serv->sv_tempsocks) {
1701 svsk = list_entry(le, struct svc_sock, sk_list);
1702
1703 if (!test_and_set_bit(SK_OLD, &svsk->sk_flags))
1704 continue;
7a1fa065 1705 if (atomic_read(&svsk->sk_inuse) > 1 || test_bit(SK_BUSY, &svsk->sk_flags))
36bdfc8b 1706 continue;
c45c357d 1707 atomic_inc(&svsk->sk_inuse);
36bdfc8b
GB
1708 list_move(le, &to_be_aged);
1709 set_bit(SK_CLOSE, &svsk->sk_flags);
1710 set_bit(SK_DETACHED, &svsk->sk_flags);
1711 }
1712 spin_unlock_bh(&serv->sv_lock);
1713
1714 while (!list_empty(&to_be_aged)) {
1715 le = to_be_aged.next;
1716 /* fiddling the sk_list node is safe 'cos we're SK_DETACHED */
1717 list_del_init(le);
1718 svsk = list_entry(le, struct svc_sock, sk_list);
1719
1720 dprintk("queuing svsk %p for closing, %lu seconds old\n",
1721 svsk, get_seconds() - svsk->sk_lastrecv);
1722
1723 /* a thread will dequeue and close it soon */
1724 svc_sock_enqueue(svsk);
1725 svc_sock_put(svsk);
1726 }
1727
1728 mod_timer(&serv->sv_temptimer, jiffies + svc_conn_age_period * HZ);
1729}
1730
1da177e4
LT
1731/*
1732 * Initialize socket for RPC use and create svc_sock struct
1733 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1734 */
6b174337
CL
1735static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1736 struct socket *sock,
1737 int *errp, int flags)
1da177e4
LT
1738{
1739 struct svc_sock *svsk;
1740 struct sock *inet;
6b174337
CL
1741 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
1742 int is_temporary = flags & SVC_SOCK_TEMPORARY;
1da177e4
LT
1743
1744 dprintk("svc: svc_setup_socket %p\n", sock);
0da974f4 1745 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
1da177e4
LT
1746 *errp = -ENOMEM;
1747 return NULL;
1748 }
1da177e4
LT
1749
1750 inet = sock->sk;
1751
1752 /* Register socket with portmapper */
1753 if (*errp >= 0 && pmap_register)
1754 *errp = svc_register(serv, inet->sk_protocol,
1755 ntohs(inet_sk(inet)->sport));
1756
1757 if (*errp < 0) {
1758 kfree(svsk);
1759 return NULL;
1760 }
1761
1762 set_bit(SK_BUSY, &svsk->sk_flags);
1763 inet->sk_user_data = svsk;
1764 svsk->sk_sock = sock;
1765 svsk->sk_sk = inet;
1766 svsk->sk_ostate = inet->sk_state_change;
1767 svsk->sk_odata = inet->sk_data_ready;
1768 svsk->sk_owspace = inet->sk_write_space;
1769 svsk->sk_server = serv;
aaf68cfb 1770 atomic_set(&svsk->sk_inuse, 1);
1da177e4 1771 svsk->sk_lastrecv = get_seconds();
7ac1bea5 1772 spin_lock_init(&svsk->sk_lock);
1da177e4
LT
1773 INIT_LIST_HEAD(&svsk->sk_deferred);
1774 INIT_LIST_HEAD(&svsk->sk_ready);
57b47a53 1775 mutex_init(&svsk->sk_mutex);
1da177e4
LT
1776
1777 /* Initialize the socket */
1778 if (sock->type == SOCK_DGRAM)
1779 svc_udp_init(svsk);
1780 else
1781 svc_tcp_init(svsk);
1782
1783 spin_lock_bh(&serv->sv_lock);
6b174337 1784 if (is_temporary) {
1da177e4
LT
1785 set_bit(SK_TEMP, &svsk->sk_flags);
1786 list_add(&svsk->sk_list, &serv->sv_tempsocks);
1787 serv->sv_tmpcnt++;
36bdfc8b
GB
1788 if (serv->sv_temptimer.function == NULL) {
1789 /* setup timer to age temp sockets */
1790 setup_timer(&serv->sv_temptimer, svc_age_temp_sockets,
1791 (unsigned long)serv);
1792 mod_timer(&serv->sv_temptimer,
1793 jiffies + svc_conn_age_period * HZ);
1794 }
1da177e4
LT
1795 } else {
1796 clear_bit(SK_TEMP, &svsk->sk_flags);
1797 list_add(&svsk->sk_list, &serv->sv_permsocks);
1798 }
1799 spin_unlock_bh(&serv->sv_lock);
1800
1801 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1802 svsk, svsk->sk_sk);
1803
1da177e4
LT
1804 return svsk;
1805}
1806
b41b66d6
N
1807int svc_addsock(struct svc_serv *serv,
1808 int fd,
1809 char *name_return,
1810 int *proto)
1811{
1812 int err = 0;
1813 struct socket *so = sockfd_lookup(fd, &err);
1814 struct svc_sock *svsk = NULL;
1815
1816 if (!so)
1817 return err;
1818 if (so->sk->sk_family != AF_INET)
1819 err = -EAFNOSUPPORT;
1820 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1821 so->sk->sk_protocol != IPPROTO_UDP)
1822 err = -EPROTONOSUPPORT;
1823 else if (so->state > SS_UNCONNECTED)
1824 err = -EISCONN;
1825 else {
6b174337 1826 svsk = svc_setup_socket(serv, so, &err, SVC_SOCK_DEFAULTS);
e79eff1f
N
1827 if (svsk) {
1828 svc_sock_received(svsk);
b41b66d6 1829 err = 0;
e79eff1f 1830 }
b41b66d6
N
1831 }
1832 if (err) {
1833 sockfd_put(so);
1834 return err;
1835 }
1836 if (proto) *proto = so->sk->sk_protocol;
1837 return one_sock_name(name_return, svsk);
1838}
1839EXPORT_SYMBOL_GPL(svc_addsock);
1840
1da177e4
LT
1841/*
1842 * Create socket for RPC service.
1843 */
b700cbb1
TT
1844static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
1845 int protocol,
1846 struct sockaddr *sin, int len,
1847 int flags)
1da177e4
LT
1848{
1849 struct svc_sock *svsk;
1850 struct socket *sock;
1851 int error;
1852 int type;
ad06e4bd 1853 char buf[RPC_MAX_ADDRBUFLEN];
1da177e4 1854
ad06e4bd
CL
1855 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1856 serv->sv_program->pg_name, protocol,
77f1f67a 1857 __svc_print_addr(sin, buf, sizeof(buf)));
1da177e4
LT
1858
1859 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1860 printk(KERN_WARNING "svc: only UDP and TCP "
1861 "sockets supported\n");
b700cbb1 1862 return ERR_PTR(-EINVAL);
1da177e4
LT
1863 }
1864 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1865
77f1f67a
CL
1866 error = sock_create_kern(sin->sa_family, type, protocol, &sock);
1867 if (error < 0)
b700cbb1 1868 return ERR_PTR(error);
1da177e4 1869
ed07536e
PZ
1870 svc_reclassify_socket(sock);
1871
18114746 1872 if (type == SOCK_STREAM)
77f1f67a
CL
1873 sock->sk->sk_reuse = 1; /* allow address reuse */
1874 error = kernel_bind(sock, sin, len);
18114746
ES
1875 if (error < 0)
1876 goto bummer;
1da177e4
LT
1877
1878 if (protocol == IPPROTO_TCP) {
e6242e92 1879 if ((error = kernel_listen(sock, 64)) < 0)
1da177e4
LT
1880 goto bummer;
1881 }
1882
e79eff1f
N
1883 if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) {
1884 svc_sock_received(svsk);
b700cbb1 1885 return (struct svc_xprt *)svsk;
e79eff1f 1886 }
1da177e4
LT
1887
1888bummer:
1889 dprintk("svc: svc_create_socket error = %d\n", -error);
1890 sock_release(sock);
b700cbb1 1891 return ERR_PTR(error);
1da177e4
LT
1892}
1893
755cceab
TT
1894/*
1895 * Detach the svc_sock from the socket so that no
1896 * more callbacks occur.
1897 */
1898static void svc_sock_detach(struct svc_xprt *xprt)
1899{
1900 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1901 struct sock *sk = svsk->sk_sk;
1902
1903 dprintk("svc: svc_sock_detach(%p)\n", svsk);
1904
1905 /* put back the old socket callbacks */
1906 sk->sk_state_change = svsk->sk_ostate;
1907 sk->sk_data_ready = svsk->sk_odata;
1908 sk->sk_write_space = svsk->sk_owspace;
1909}
1910
1911/*
1912 * Free the svc_sock's socket resources and the svc_sock itself.
1913 */
1914static void svc_sock_free(struct svc_xprt *xprt)
1915{
1916 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1917 dprintk("svc: svc_sock_free(%p)\n", svsk);
1918
1919 if (svsk->sk_info_authunix != NULL)
1920 svcauth_unix_info_release(svsk->sk_info_authunix);
1921 if (svsk->sk_sock->file)
1922 sockfd_put(svsk->sk_sock);
1923 else
1924 sock_release(svsk->sk_sock);
1925 kfree(svsk);
1926}
1927
1da177e4
LT
1928/*
1929 * Remove a dead socket
1930 */
aaf68cfb 1931static void
1da177e4
LT
1932svc_delete_socket(struct svc_sock *svsk)
1933{
1934 struct svc_serv *serv;
1935 struct sock *sk;
1936
1937 dprintk("svc: svc_delete_socket(%p)\n", svsk);
1938
1939 serv = svsk->sk_server;
1940 sk = svsk->sk_sk;
1941
755cceab 1942 svsk->sk_xprt.xpt_ops->xpo_detach(&svsk->sk_xprt);
1da177e4
LT
1943
1944 spin_lock_bh(&serv->sv_lock);
1945
36bdfc8b
GB
1946 if (!test_and_set_bit(SK_DETACHED, &svsk->sk_flags))
1947 list_del_init(&svsk->sk_list);
cca5172a 1948 /*
3262c816
GB
1949 * We used to delete the svc_sock from whichever list
1950 * it's sk_ready node was on, but we don't actually
1951 * need to. This is because the only time we're called
1952 * while still attached to a queue, the queue itself
1953 * is about to be destroyed (in svc_destroy).
1954 */
aaf68cfb
N
1955 if (!test_and_set_bit(SK_DEAD, &svsk->sk_flags)) {
1956 BUG_ON(atomic_read(&svsk->sk_inuse)<2);
1957 atomic_dec(&svsk->sk_inuse);
1da177e4
LT
1958 if (test_bit(SK_TEMP, &svsk->sk_flags))
1959 serv->sv_tmpcnt--;
aaf68cfb 1960 }
1da177e4 1961
d6740df9 1962 spin_unlock_bh(&serv->sv_lock);
aaf68cfb
N
1963}
1964
cda1fd4a 1965static void svc_close_socket(struct svc_sock *svsk)
aaf68cfb
N
1966{
1967 set_bit(SK_CLOSE, &svsk->sk_flags);
1968 if (test_and_set_bit(SK_BUSY, &svsk->sk_flags))
1969 /* someone else will have to effect the close */
1970 return;
1971
1972 atomic_inc(&svsk->sk_inuse);
1973 svc_delete_socket(svsk);
1974 clear_bit(SK_BUSY, &svsk->sk_flags);
d6740df9 1975 svc_sock_put(svsk);
1da177e4
LT
1976}
1977
cda1fd4a
N
1978void svc_force_close_socket(struct svc_sock *svsk)
1979{
1980 set_bit(SK_CLOSE, &svsk->sk_flags);
1981 if (test_bit(SK_BUSY, &svsk->sk_flags)) {
1982 /* Waiting to be processed, but no threads left,
1983 * So just remove it from the waiting list
1984 */
1985 list_del_init(&svsk->sk_ready);
1986 clear_bit(SK_BUSY, &svsk->sk_flags);
1987 }
1988 svc_close_socket(svsk);
1989}
1990
1da177e4 1991/*
cca5172a 1992 * Handle defer and revisit of requests
1da177e4
LT
1993 */
1994
1995static void svc_revisit(struct cache_deferred_req *dreq, int too_many)
1996{
1997 struct svc_deferred_req *dr = container_of(dreq, struct svc_deferred_req, handle);
1da177e4
LT
1998 struct svc_sock *svsk;
1999
2000 if (too_many) {
2001 svc_sock_put(dr->svsk);
2002 kfree(dr);
2003 return;
2004 }
2005 dprintk("revisit queued\n");
2006 svsk = dr->svsk;
2007 dr->svsk = NULL;
7ac1bea5 2008 spin_lock(&svsk->sk_lock);
1da177e4 2009 list_add(&dr->handle.recent, &svsk->sk_deferred);
7ac1bea5 2010 spin_unlock(&svsk->sk_lock);
1da177e4
LT
2011 set_bit(SK_DEFERRED, &svsk->sk_flags);
2012 svc_sock_enqueue(svsk);
2013 svc_sock_put(svsk);
2014}
2015
2016static struct cache_deferred_req *
2017svc_defer(struct cache_req *req)
2018{
2019 struct svc_rqst *rqstp = container_of(req, struct svc_rqst, rq_chandle);
2020 int size = sizeof(struct svc_deferred_req) + (rqstp->rq_arg.len);
2021 struct svc_deferred_req *dr;
2022
2023 if (rqstp->rq_arg.page_len)
2024 return NULL; /* if more than a page, give up FIXME */
2025 if (rqstp->rq_deferred) {
2026 dr = rqstp->rq_deferred;
2027 rqstp->rq_deferred = NULL;
2028 } else {
2029 int skip = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len;
2030 /* FIXME maybe discard if size too large */
2031 dr = kmalloc(size, GFP_KERNEL);
2032 if (dr == NULL)
2033 return NULL;
2034
2035 dr->handle.owner = rqstp->rq_server;
2036 dr->prot = rqstp->rq_prot;
24422222
CL
2037 memcpy(&dr->addr, &rqstp->rq_addr, rqstp->rq_addrlen);
2038 dr->addrlen = rqstp->rq_addrlen;
1918e341 2039 dr->daddr = rqstp->rq_daddr;
1da177e4
LT
2040 dr->argslen = rqstp->rq_arg.len >> 2;
2041 memcpy(dr->args, rqstp->rq_arg.head[0].iov_base-skip, dr->argslen<<2);
2042 }
c45c357d 2043 atomic_inc(&rqstp->rq_sock->sk_inuse);
1da177e4 2044 dr->svsk = rqstp->rq_sock;
1da177e4
LT
2045
2046 dr->handle.revisit = svc_revisit;
2047 return &dr->handle;
2048}
2049
2050/*
2051 * recv data from a deferred request into an active one
2052 */
2053static int svc_deferred_recv(struct svc_rqst *rqstp)
2054{
2055 struct svc_deferred_req *dr = rqstp->rq_deferred;
2056
2057 rqstp->rq_arg.head[0].iov_base = dr->args;
2058 rqstp->rq_arg.head[0].iov_len = dr->argslen<<2;
2059 rqstp->rq_arg.page_len = 0;
2060 rqstp->rq_arg.len = dr->argslen<<2;
2061 rqstp->rq_prot = dr->prot;
24422222
CL
2062 memcpy(&rqstp->rq_addr, &dr->addr, dr->addrlen);
2063 rqstp->rq_addrlen = dr->addrlen;
1918e341 2064 rqstp->rq_daddr = dr->daddr;
44524359 2065 rqstp->rq_respages = rqstp->rq_pages;
1da177e4
LT
2066 return dr->argslen<<2;
2067}
2068
2069
2070static struct svc_deferred_req *svc_deferred_dequeue(struct svc_sock *svsk)
2071{
2072 struct svc_deferred_req *dr = NULL;
cca5172a 2073
1da177e4
LT
2074 if (!test_bit(SK_DEFERRED, &svsk->sk_flags))
2075 return NULL;
7ac1bea5 2076 spin_lock(&svsk->sk_lock);
1da177e4
LT
2077 clear_bit(SK_DEFERRED, &svsk->sk_flags);
2078 if (!list_empty(&svsk->sk_deferred)) {
2079 dr = list_entry(svsk->sk_deferred.next,
2080 struct svc_deferred_req,
2081 handle.recent);
2082 list_del_init(&dr->handle.recent);
2083 set_bit(SK_DEFERRED, &svsk->sk_flags);
2084 }
7ac1bea5 2085 spin_unlock(&svsk->sk_lock);
1da177e4
LT
2086 return dr;
2087}
This page took 0.710558 seconds and 5 git commands to generate.