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