blob: 99f54fb6d66903ae9b9887c76e4138838f60a43a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Andrew Morton91483c42005-08-09 20:20:07 -070029#include <linux/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/unistd.h>
31#include <linux/slab.h>
32#include <linux/netdevice.h>
33#include <linux/skbuff.h>
NeilBrownb41b66d2006-10-02 02:17:48 -070034#include <linux/file.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080035#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <net/sock.h>
37#include <net/checksum.h>
38#include <net/ip.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070039#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#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 *
Greg Banks3262c812006-10-02 02:17:58 -070050 * 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.
Greg Banks1a68d952006-10-02 02:17:55 -070054 * svc_sock->sk_defer_lock protects the svc_sock->sk_deferred list
Greg Banksc081a0c2006-10-02 02:17:57 -070055 * svc_sock->sk_flags.SK_BUSY prevents a svc_sock being enqueued multiply.
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 *
57 * Some flags can be set to certain values at any time
58 * providing that certain rules are followed:
59 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * SK_CONN, SK_DATA, can be set or cleared at any time.
61 * after a set, svc_sock_enqueue must be called.
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.
65 *
66 */
67
68#define RPCDBG_FACILITY RPCDBG_SVCSOCK
69
70
71static struct svc_sock *svc_setup_socket(struct svc_serv *, struct socket *,
72 int *errp, int pmap_reg);
73static void svc_udp_data_ready(struct sock *, int);
74static int svc_udp_recvfrom(struct svc_rqst *);
75static int svc_udp_sendto(struct svc_rqst *);
76
77static struct svc_deferred_req *svc_deferred_dequeue(struct svc_sock *svsk);
78static int svc_deferred_recv(struct svc_rqst *rqstp);
79static struct cache_deferred_req *svc_defer(struct cache_req *req);
80
Greg Banks36bdfc82006-10-02 02:17:54 -070081/* apparently the "standard" is that clients close
82 * idle connections after 5 minutes, servers after
83 * 6 minutes
84 * http://www.connectathon.org/talks96/nfstcp.pdf
85 */
86static int svc_conn_age_period = 6*60;
87
Peter Zijlstraed075362006-12-06 20:35:24 -080088#ifdef CONFIG_DEBUG_LOCK_ALLOC
89static struct lock_class_key svc_key[2];
90static struct lock_class_key svc_slock_key[2];
91
92static inline void svc_reclassify_socket(struct socket *sock)
93{
94 struct sock *sk = sock->sk;
95 BUG_ON(sk->sk_lock.owner != NULL);
96 switch (sk->sk_family) {
97 case AF_INET:
98 sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD",
99 &svc_slock_key[0], "sk_lock-AF_INET-NFSD", &svc_key[0]);
100 break;
101
102 case AF_INET6:
103 sock_lock_init_class_and_name(sk, "slock-AF_INET6-NFSD",
104 &svc_slock_key[1], "sk_lock-AF_INET6-NFSD", &svc_key[1]);
105 break;
106
107 default:
108 BUG();
109 }
110}
111#else
112static inline void svc_reclassify_socket(struct socket *sock)
113{
114}
115#endif
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/*
Greg Banks3262c812006-10-02 02:17:58 -0700118 * Queue up an idle server thread. Must have pool->sp_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * Note: this is really a stack rather than a queue, so that we only
Greg Banks3262c812006-10-02 02:17:58 -0700120 * use as many different threads as we need, and the rest don't pollute
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 * the cache.
122 */
123static inline void
Greg Banks3262c812006-10-02 02:17:58 -0700124svc_thread_enqueue(struct svc_pool *pool, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Greg Banks3262c812006-10-02 02:17:58 -0700126 list_add(&rqstp->rq_list, &pool->sp_threads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
129/*
Greg Banks3262c812006-10-02 02:17:58 -0700130 * Dequeue an nfsd thread. Must have pool->sp_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 */
132static inline void
Greg Banks3262c812006-10-02 02:17:58 -0700133svc_thread_dequeue(struct svc_pool *pool, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 list_del(&rqstp->rq_list);
136}
137
138/*
139 * Release an skbuff after use
140 */
141static inline void
142svc_release_skb(struct svc_rqst *rqstp)
143{
144 struct sk_buff *skb = rqstp->rq_skbuff;
145 struct svc_deferred_req *dr = rqstp->rq_deferred;
146
147 if (skb) {
148 rqstp->rq_skbuff = NULL;
149
150 dprintk("svc: service %p, releasing skb %p\n", rqstp, skb);
151 skb_free_datagram(rqstp->rq_sock->sk_sk, skb);
152 }
153 if (dr) {
154 rqstp->rq_deferred = NULL;
155 kfree(dr);
156 }
157}
158
159/*
160 * Any space to write?
161 */
162static inline unsigned long
163svc_sock_wspace(struct svc_sock *svsk)
164{
165 int wspace;
166
167 if (svsk->sk_sock->type == SOCK_STREAM)
168 wspace = sk_stream_wspace(svsk->sk_sk);
169 else
170 wspace = sock_wspace(svsk->sk_sk);
171
172 return wspace;
173}
174
175/*
176 * Queue up a socket with data pending. If there are idle nfsd
177 * processes, wake 'em up.
178 *
179 */
180static void
181svc_sock_enqueue(struct svc_sock *svsk)
182{
183 struct svc_serv *serv = svsk->sk_server;
Greg Banksbfd24162006-10-02 02:18:01 -0700184 struct svc_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 struct svc_rqst *rqstp;
Greg Banksbfd24162006-10-02 02:18:01 -0700186 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 if (!(svsk->sk_flags &
189 ( (1<<SK_CONN)|(1<<SK_DATA)|(1<<SK_CLOSE)|(1<<SK_DEFERRED)) ))
190 return;
191 if (test_bit(SK_DEAD, &svsk->sk_flags))
192 return;
193
Greg Banksbfd24162006-10-02 02:18:01 -0700194 cpu = get_cpu();
195 pool = svc_pool_for_cpu(svsk->sk_server, cpu);
196 put_cpu();
197
Greg Banks3262c812006-10-02 02:17:58 -0700198 spin_lock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Greg Banks3262c812006-10-02 02:17:58 -0700200 if (!list_empty(&pool->sp_threads) &&
201 !list_empty(&pool->sp_sockets))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 printk(KERN_ERR
203 "svc_sock_enqueue: threads and sockets both waiting??\n");
204
205 if (test_bit(SK_DEAD, &svsk->sk_flags)) {
206 /* Don't enqueue dead sockets */
207 dprintk("svc: socket %p is dead, not enqueued\n", svsk->sk_sk);
208 goto out_unlock;
209 }
210
Greg Banksc081a0c2006-10-02 02:17:57 -0700211 /* Mark socket as busy. It will remain in this state until the
212 * server has processed all pending data and put the socket back
213 * on the idle list. We update SK_BUSY atomically because
214 * it also guards against trying to enqueue the svc_sock twice.
215 */
216 if (test_and_set_bit(SK_BUSY, &svsk->sk_flags)) {
217 /* Don't enqueue socket while already enqueued */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 dprintk("svc: socket %p busy, not enqueued\n", svsk->sk_sk);
219 goto out_unlock;
220 }
Greg Banks3262c812006-10-02 02:17:58 -0700221 BUG_ON(svsk->sk_pool != NULL);
222 svsk->sk_pool = pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700225 if (((atomic_read(&svsk->sk_reserved) + serv->sv_max_mesg)*2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 > svc_sock_wspace(svsk))
227 && !test_bit(SK_CLOSE, &svsk->sk_flags)
228 && !test_bit(SK_CONN, &svsk->sk_flags)) {
229 /* Don't enqueue while not enough space for reply */
230 dprintk("svc: socket %p no space, %d*2 > %ld, not enqueued\n",
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700231 svsk->sk_sk, atomic_read(&svsk->sk_reserved)+serv->sv_max_mesg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 svc_sock_wspace(svsk));
Greg Banks3262c812006-10-02 02:17:58 -0700233 svsk->sk_pool = NULL;
Greg Banksc081a0c2006-10-02 02:17:57 -0700234 clear_bit(SK_BUSY, &svsk->sk_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 goto out_unlock;
236 }
237 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Greg Banks3262c812006-10-02 02:17:58 -0700240 if (!list_empty(&pool->sp_threads)) {
241 rqstp = list_entry(pool->sp_threads.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 struct svc_rqst,
243 rq_list);
244 dprintk("svc: socket %p served by daemon %p\n",
245 svsk->sk_sk, rqstp);
Greg Banks3262c812006-10-02 02:17:58 -0700246 svc_thread_dequeue(pool, rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (rqstp->rq_sock)
248 printk(KERN_ERR
249 "svc_sock_enqueue: server %p, rq_sock=%p!\n",
250 rqstp, rqstp->rq_sock);
251 rqstp->rq_sock = svsk;
Greg Banksc45c3572006-10-02 02:17:54 -0700252 atomic_inc(&svsk->sk_inuse);
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700253 rqstp->rq_reserved = serv->sv_max_mesg;
Greg Banks5685f0f2006-10-02 02:17:56 -0700254 atomic_add(rqstp->rq_reserved, &svsk->sk_reserved);
Greg Banks3262c812006-10-02 02:17:58 -0700255 BUG_ON(svsk->sk_pool != pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 wake_up(&rqstp->rq_wait);
257 } else {
258 dprintk("svc: socket %p put into queue\n", svsk->sk_sk);
Greg Banks3262c812006-10-02 02:17:58 -0700259 list_add_tail(&svsk->sk_ready, &pool->sp_sockets);
260 BUG_ON(svsk->sk_pool != pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 }
262
263out_unlock:
Greg Banks3262c812006-10-02 02:17:58 -0700264 spin_unlock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267/*
Greg Banks3262c812006-10-02 02:17:58 -0700268 * Dequeue the first socket. Must be called with the pool->sp_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
270static inline struct svc_sock *
Greg Banks3262c812006-10-02 02:17:58 -0700271svc_sock_dequeue(struct svc_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 struct svc_sock *svsk;
274
Greg Banks3262c812006-10-02 02:17:58 -0700275 if (list_empty(&pool->sp_sockets))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 return NULL;
277
Greg Banks3262c812006-10-02 02:17:58 -0700278 svsk = list_entry(pool->sp_sockets.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 struct svc_sock, sk_ready);
280 list_del_init(&svsk->sk_ready);
281
282 dprintk("svc: socket %p dequeued, inuse=%d\n",
Greg Banksc45c3572006-10-02 02:17:54 -0700283 svsk->sk_sk, atomic_read(&svsk->sk_inuse));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 return svsk;
286}
287
288/*
289 * Having read something from a socket, check whether it
290 * needs to be re-enqueued.
291 * Note: SK_DATA only gets cleared when a read-attempt finds
292 * no (or insufficient) data.
293 */
294static inline void
295svc_sock_received(struct svc_sock *svsk)
296{
Greg Banks3262c812006-10-02 02:17:58 -0700297 svsk->sk_pool = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 clear_bit(SK_BUSY, &svsk->sk_flags);
299 svc_sock_enqueue(svsk);
300}
301
302
303/**
304 * svc_reserve - change the space reserved for the reply to a request.
305 * @rqstp: The request in question
306 * @space: new max space to reserve
307 *
308 * Each request reserves some space on the output queue of the socket
309 * to make sure the reply fits. This function reduces that reserved
310 * space to be the amount of space used already, plus @space.
311 *
312 */
313void svc_reserve(struct svc_rqst *rqstp, int space)
314{
315 space += rqstp->rq_res.head[0].iov_len;
316
317 if (space < rqstp->rq_reserved) {
318 struct svc_sock *svsk = rqstp->rq_sock;
Greg Banks5685f0f2006-10-02 02:17:56 -0700319 atomic_sub((rqstp->rq_reserved - space), &svsk->sk_reserved);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 rqstp->rq_reserved = space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 svc_sock_enqueue(svsk);
323 }
324}
325
326/*
327 * Release a socket after use.
328 */
329static inline void
330svc_sock_put(struct svc_sock *svsk)
331{
Andrew Morton202dd452006-10-29 22:57:57 -0800332 if (atomic_dec_and_test(&svsk->sk_inuse) &&
333 test_bit(SK_DEAD, &svsk->sk_flags)) {
334 dprintk("svc: releasing dead socket\n");
Neil Brownd6740df2006-10-29 22:46:45 -0800335 if (svsk->sk_sock->file)
336 sockfd_put(svsk->sk_sock);
337 else
338 sock_release(svsk->sk_sock);
339 if (svsk->sk_info_authunix != NULL)
340 svcauth_unix_info_release(svsk->sk_info_authunix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 kfree(svsk);
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
345static void
346svc_sock_release(struct svc_rqst *rqstp)
347{
348 struct svc_sock *svsk = rqstp->rq_sock;
349
350 svc_release_skb(rqstp);
351
NeilBrown44524352006-10-04 02:15:46 -0700352 svc_free_res_pages(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 rqstp->rq_res.page_len = 0;
354 rqstp->rq_res.page_base = 0;
355
356
357 /* Reset response buffer and release
358 * the reservation.
359 * But first, check that enough space was reserved
360 * for the reply, otherwise we have a bug!
361 */
362 if ((rqstp->rq_res.len) > rqstp->rq_reserved)
363 printk(KERN_ERR "RPC request reserved %d but used %d\n",
364 rqstp->rq_reserved,
365 rqstp->rq_res.len);
366
367 rqstp->rq_res.head[0].iov_len = 0;
368 svc_reserve(rqstp, 0);
369 rqstp->rq_sock = NULL;
370
371 svc_sock_put(svsk);
372}
373
374/*
375 * External function to wake up a server waiting for data
Greg Banks3262c812006-10-02 02:17:58 -0700376 * This really only makes sense for services like lockd
377 * which have exactly one thread anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 */
379void
380svc_wake_up(struct svc_serv *serv)
381{
382 struct svc_rqst *rqstp;
Greg Banks3262c812006-10-02 02:17:58 -0700383 unsigned int i;
384 struct svc_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Greg Banks3262c812006-10-02 02:17:58 -0700386 for (i = 0; i < serv->sv_nrpools; i++) {
387 pool = &serv->sv_pools[i];
388
389 spin_lock_bh(&pool->sp_lock);
390 if (!list_empty(&pool->sp_threads)) {
391 rqstp = list_entry(pool->sp_threads.next,
392 struct svc_rqst,
393 rq_list);
394 dprintk("svc: daemon %p woken up.\n", rqstp);
395 /*
396 svc_thread_dequeue(pool, rqstp);
397 rqstp->rq_sock = NULL;
398 */
399 wake_up(&rqstp->rq_wait);
400 }
401 spin_unlock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405/*
406 * Generic sendto routine
407 */
408static int
409svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr)
410{
411 struct svc_sock *svsk = rqstp->rq_sock;
412 struct socket *sock = svsk->sk_sock;
413 int slen;
414 char buffer[CMSG_SPACE(sizeof(struct in_pktinfo))];
415 struct cmsghdr *cmh = (struct cmsghdr *)buffer;
416 struct in_pktinfo *pki = (struct in_pktinfo *)CMSG_DATA(cmh);
417 int len = 0;
418 int result;
419 int size;
420 struct page **ppage = xdr->pages;
421 size_t base = xdr->page_base;
422 unsigned int pglen = xdr->page_len;
423 unsigned int flags = MSG_MORE;
424
425 slen = xdr->len;
426
427 if (rqstp->rq_prot == IPPROTO_UDP) {
428 /* set the source and destination */
429 struct msghdr msg;
430 msg.msg_name = &rqstp->rq_addr;
431 msg.msg_namelen = sizeof(rqstp->rq_addr);
432 msg.msg_iov = NULL;
433 msg.msg_iovlen = 0;
434 msg.msg_flags = MSG_MORE;
435
436 msg.msg_control = cmh;
437 msg.msg_controllen = sizeof(buffer);
438 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
439 cmh->cmsg_level = SOL_IP;
440 cmh->cmsg_type = IP_PKTINFO;
441 pki->ipi_ifindex = 0;
442 pki->ipi_spec_dst.s_addr = rqstp->rq_daddr;
443
444 if (sock_sendmsg(sock, &msg, 0) < 0)
445 goto out;
446 }
447
448 /* send head */
449 if (slen == xdr->head[0].iov_len)
450 flags = 0;
NeilBrown44524352006-10-04 02:15:46 -0700451 len = kernel_sendpage(sock, rqstp->rq_respages[0], 0,
452 xdr->head[0].iov_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (len != xdr->head[0].iov_len)
454 goto out;
455 slen -= xdr->head[0].iov_len;
456 if (slen == 0)
457 goto out;
458
459 /* send page data */
460 size = PAGE_SIZE - base < pglen ? PAGE_SIZE - base : pglen;
461 while (pglen > 0) {
462 if (slen == size)
463 flags = 0;
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700464 result = kernel_sendpage(sock, *ppage, base, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (result > 0)
466 len += result;
467 if (result != size)
468 goto out;
469 slen -= size;
470 pglen -= size;
471 size = PAGE_SIZE < pglen ? PAGE_SIZE : pglen;
472 base = 0;
473 ppage++;
474 }
475 /* send tail */
476 if (xdr->tail[0].iov_len) {
NeilBrown44524352006-10-04 02:15:46 -0700477 result = kernel_sendpage(sock, rqstp->rq_respages[0],
478 ((unsigned long)xdr->tail[0].iov_base)
479 & (PAGE_SIZE-1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 xdr->tail[0].iov_len, 0);
481
482 if (result > 0)
483 len += result;
484 }
485out:
486 dprintk("svc: socket %p sendto([%p %Zu... ], %d) = %d (addr %x)\n",
487 rqstp->rq_sock, xdr->head[0].iov_base, xdr->head[0].iov_len, xdr->len, len,
488 rqstp->rq_addr.sin_addr.s_addr);
489
490 return len;
491}
492
493/*
NeilBrown80212d52006-10-02 02:17:47 -0700494 * Report socket names for nfsdfs
495 */
496static int one_sock_name(char *buf, struct svc_sock *svsk)
497{
498 int len;
499
500 switch(svsk->sk_sk->sk_family) {
501 case AF_INET:
502 len = sprintf(buf, "ipv4 %s %u.%u.%u.%u %d\n",
503 svsk->sk_sk->sk_protocol==IPPROTO_UDP?
504 "udp" : "tcp",
505 NIPQUAD(inet_sk(svsk->sk_sk)->rcv_saddr),
506 inet_sk(svsk->sk_sk)->num);
507 break;
508 default:
509 len = sprintf(buf, "*unknown-%d*\n",
510 svsk->sk_sk->sk_family);
511 }
512 return len;
513}
514
515int
NeilBrownb41b66d2006-10-02 02:17:48 -0700516svc_sock_names(char *buf, struct svc_serv *serv, char *toclose)
NeilBrown80212d52006-10-02 02:17:47 -0700517{
NeilBrownb41b66d2006-10-02 02:17:48 -0700518 struct svc_sock *svsk, *closesk = NULL;
NeilBrown80212d52006-10-02 02:17:47 -0700519 int len = 0;
520
521 if (!serv)
522 return 0;
523 spin_lock(&serv->sv_lock);
524 list_for_each_entry(svsk, &serv->sv_permsocks, sk_list) {
525 int onelen = one_sock_name(buf+len, svsk);
NeilBrownb41b66d2006-10-02 02:17:48 -0700526 if (toclose && strcmp(toclose, buf+len) == 0)
527 closesk = svsk;
528 else
529 len += onelen;
NeilBrown80212d52006-10-02 02:17:47 -0700530 }
531 spin_unlock(&serv->sv_lock);
NeilBrownb41b66d2006-10-02 02:17:48 -0700532 if (closesk)
NeilBrown5680c442006-10-04 02:15:45 -0700533 /* Should unregister with portmap, but you cannot
534 * unregister just one protocol...
535 */
NeilBrownb41b66d2006-10-02 02:17:48 -0700536 svc_delete_socket(closesk);
NeilBrown37a03472006-10-04 02:15:44 -0700537 else if (toclose)
538 return -ENOENT;
NeilBrown80212d52006-10-02 02:17:47 -0700539 return len;
540}
541EXPORT_SYMBOL(svc_sock_names);
542
543/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 * Check input queue length
545 */
546static int
547svc_recv_available(struct svc_sock *svsk)
548{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 struct socket *sock = svsk->sk_sock;
550 int avail, err;
551
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700552 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 return (err >= 0)? avail : err;
555}
556
557/*
558 * Generic recvfrom routine.
559 */
560static int
561svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr, int buflen)
562{
563 struct msghdr msg;
564 struct socket *sock;
565 int len, alen;
566
567 rqstp->rq_addrlen = sizeof(rqstp->rq_addr);
568 sock = rqstp->rq_sock->sk_sock;
569
570 msg.msg_name = &rqstp->rq_addr;
571 msg.msg_namelen = sizeof(rqstp->rq_addr);
572 msg.msg_control = NULL;
573 msg.msg_controllen = 0;
574
575 msg.msg_flags = MSG_DONTWAIT;
576
577 len = kernel_recvmsg(sock, &msg, iov, nr, buflen, MSG_DONTWAIT);
578
579 /* sock_recvmsg doesn't fill in the name/namelen, so we must..
580 * possibly we should cache this in the svc_sock structure
581 * at accept time. FIXME
582 */
583 alen = sizeof(rqstp->rq_addr);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700584 kernel_getpeername(sock, (struct sockaddr *)&rqstp->rq_addr, &alen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
587 rqstp->rq_sock, iov[0].iov_base, iov[0].iov_len, len);
588
589 return len;
590}
591
592/*
593 * Set socket snd and rcv buffer lengths
594 */
595static inline void
596svc_sock_setbufsize(struct socket *sock, unsigned int snd, unsigned int rcv)
597{
598#if 0
599 mm_segment_t oldfs;
600 oldfs = get_fs(); set_fs(KERNEL_DS);
601 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
602 (char*)&snd, sizeof(snd));
603 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
604 (char*)&rcv, sizeof(rcv));
605#else
606 /* sock_setsockopt limits use to sysctl_?mem_max,
607 * which isn't acceptable. Until that is made conditional
608 * on not having CAP_SYS_RESOURCE or similar, we go direct...
609 * DaveM said I could!
610 */
611 lock_sock(sock->sk);
612 sock->sk->sk_sndbuf = snd * 2;
613 sock->sk->sk_rcvbuf = rcv * 2;
614 sock->sk->sk_userlocks |= SOCK_SNDBUF_LOCK|SOCK_RCVBUF_LOCK;
615 release_sock(sock->sk);
616#endif
617}
618/*
619 * INET callback when data has been received on the socket.
620 */
621static void
622svc_udp_data_ready(struct sock *sk, int count)
623{
Neil Brown939bb7e2005-09-13 01:25:39 -0700624 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Neil Brown939bb7e2005-09-13 01:25:39 -0700626 if (svsk) {
627 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
628 svsk, sk, count, test_bit(SK_BUSY, &svsk->sk_flags));
629 set_bit(SK_DATA, &svsk->sk_flags);
630 svc_sock_enqueue(svsk);
631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
633 wake_up_interruptible(sk->sk_sleep);
634}
635
636/*
637 * INET callback when space is newly available on the socket.
638 */
639static void
640svc_write_space(struct sock *sk)
641{
642 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
643
644 if (svsk) {
645 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
646 svsk, sk, test_bit(SK_BUSY, &svsk->sk_flags));
647 svc_sock_enqueue(svsk);
648 }
649
650 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) {
Neil Brown939bb7e2005-09-13 01:25:39 -0700651 dprintk("RPC svc_write_space: someone sleeping on %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 svsk);
653 wake_up_interruptible(sk->sk_sleep);
654 }
655}
656
657/*
658 * Receive a datagram from a UDP socket.
659 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660static int
661svc_udp_recvfrom(struct svc_rqst *rqstp)
662{
663 struct svc_sock *svsk = rqstp->rq_sock;
664 struct svc_serv *serv = svsk->sk_server;
665 struct sk_buff *skb;
666 int err, len;
667
668 if (test_and_clear_bit(SK_CHNGBUF, &svsk->sk_flags))
669 /* udp sockets need large rcvbuf as all pending
670 * requests are still in that buffer. sndbuf must
671 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700672 * for one reply per thread. We count all threads
673 * rather than threads in a particular pool, which
674 * provides an upper bound on the number of threads
675 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 */
677 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700678 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
679 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 if ((rqstp->rq_deferred = svc_deferred_dequeue(svsk))) {
682 svc_sock_received(svsk);
683 return svc_deferred_recv(rqstp);
684 }
685
686 clear_bit(SK_DATA, &svsk->sk_flags);
687 while ((skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err)) == NULL) {
688 if (err == -EAGAIN) {
689 svc_sock_received(svsk);
690 return err;
691 }
692 /* possibly an icmp error */
693 dprintk("svc: recvfrom returned error %d\n", -err);
694 }
Patrick McHardya61bbcf2005-08-14 17:24:31 -0700695 if (skb->tstamp.off_sec == 0) {
696 struct timeval tv;
697
698 tv.tv_sec = xtime.tv_sec;
Andrew Morton4bcde032005-10-26 01:59:03 -0700699 tv.tv_usec = xtime.tv_nsec / NSEC_PER_USEC;
Patrick McHardya61bbcf2005-08-14 17:24:31 -0700700 skb_set_timestamp(skb, &tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 /* Don't enable netstamp, sunrpc doesn't
702 need that much accuracy */
703 }
Patrick McHardya61bbcf2005-08-14 17:24:31 -0700704 skb_get_timestamp(skb, &svsk->sk_sk->sk_stamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 set_bit(SK_DATA, &svsk->sk_flags); /* there may be more data... */
706
707 /*
708 * Maybe more packets - kick another thread ASAP.
709 */
710 svc_sock_received(svsk);
711
712 len = skb->len - sizeof(struct udphdr);
713 rqstp->rq_arg.len = len;
714
715 rqstp->rq_prot = IPPROTO_UDP;
716
717 /* Get sender address */
718 rqstp->rq_addr.sin_family = AF_INET;
719 rqstp->rq_addr.sin_port = skb->h.uh->source;
720 rqstp->rq_addr.sin_addr.s_addr = skb->nh.iph->saddr;
721 rqstp->rq_daddr = skb->nh.iph->daddr;
722
723 if (skb_is_nonlinear(skb)) {
724 /* we have to copy */
725 local_bh_disable();
726 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
727 local_bh_enable();
728 /* checksum error */
729 skb_free_datagram(svsk->sk_sk, skb);
730 return 0;
731 }
732 local_bh_enable();
733 skb_free_datagram(svsk->sk_sk, skb);
734 } else {
735 /* we can use it in-place */
736 rqstp->rq_arg.head[0].iov_base = skb->data + sizeof(struct udphdr);
737 rqstp->rq_arg.head[0].iov_len = len;
Herbert Xufb286bb2005-11-10 13:01:24 -0800738 if (skb_checksum_complete(skb)) {
739 skb_free_datagram(svsk->sk_sk, skb);
740 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742 rqstp->rq_skbuff = skb;
743 }
744
745 rqstp->rq_arg.page_base = 0;
746 if (len <= rqstp->rq_arg.head[0].iov_len) {
747 rqstp->rq_arg.head[0].iov_len = len;
748 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700749 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 } else {
751 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700752 rqstp->rq_respages = rqstp->rq_pages + 1 +
753 (rqstp->rq_arg.page_len + PAGE_SIZE - 1)/ PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
755
756 if (serv->sv_stats)
757 serv->sv_stats->netudpcnt++;
758
759 return len;
760}
761
762static int
763svc_udp_sendto(struct svc_rqst *rqstp)
764{
765 int error;
766
767 error = svc_sendto(rqstp, &rqstp->rq_res);
768 if (error == -ECONNREFUSED)
769 /* ICMP error on earlier request. */
770 error = svc_sendto(rqstp, &rqstp->rq_res);
771
772 return error;
773}
774
775static void
776svc_udp_init(struct svc_sock *svsk)
777{
778 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
779 svsk->sk_sk->sk_write_space = svc_write_space;
780 svsk->sk_recvfrom = svc_udp_recvfrom;
781 svsk->sk_sendto = svc_udp_sendto;
782
783 /* initialise setting must have enough space to
784 * receive and respond to one request.
785 * svc_udp_recvfrom will re-adjust if necessary
786 */
787 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700788 3 * svsk->sk_server->sv_max_mesg,
789 3 * svsk->sk_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 set_bit(SK_DATA, &svsk->sk_flags); /* might have come in before data_ready set up */
792 set_bit(SK_CHNGBUF, &svsk->sk_flags);
793}
794
795/*
796 * A data_ready event on a listening socket means there's a connection
797 * pending. Do not use state_change as a substitute for it.
798 */
799static void
800svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
801{
Neil Brown939bb7e2005-09-13 01:25:39 -0700802 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700805 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Neil Brown939bb7e2005-09-13 01:25:39 -0700807 /*
808 * This callback may called twice when a new connection
809 * is established as a child socket inherits everything
810 * from a parent LISTEN socket.
811 * 1) data_ready method of the parent socket will be called
812 * when one of child sockets become ESTABLISHED.
813 * 2) data_ready method of the child socket may be called
814 * when it receives data before the socket is accepted.
815 * In case of 2, we should ignore it silently.
816 */
817 if (sk->sk_state == TCP_LISTEN) {
818 if (svsk) {
819 set_bit(SK_CONN, &svsk->sk_flags);
820 svc_sock_enqueue(svsk);
821 } else
822 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
Neil Brown939bb7e2005-09-13 01:25:39 -0700824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
826 wake_up_interruptible_all(sk->sk_sleep);
827}
828
829/*
830 * A state change on a connected socket means it's dying or dead.
831 */
832static void
833svc_tcp_state_change(struct sock *sk)
834{
Neil Brown939bb7e2005-09-13 01:25:39 -0700835 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700838 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Neil Brown939bb7e2005-09-13 01:25:39 -0700840 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700842 else {
843 set_bit(SK_CLOSE, &svsk->sk_flags);
844 svc_sock_enqueue(svsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
847 wake_up_interruptible_all(sk->sk_sleep);
848}
849
850static void
851svc_tcp_data_ready(struct sock *sk, int count)
852{
Neil Brown939bb7e2005-09-13 01:25:39 -0700853 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700856 sk, sk->sk_user_data);
857 if (svsk) {
858 set_bit(SK_DATA, &svsk->sk_flags);
859 svc_sock_enqueue(svsk);
860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
862 wake_up_interruptible(sk->sk_sleep);
863}
864
865/*
866 * Accept a TCP connection
867 */
868static void
869svc_tcp_accept(struct svc_sock *svsk)
870{
871 struct sockaddr_in sin;
872 struct svc_serv *serv = svsk->sk_server;
873 struct socket *sock = svsk->sk_sock;
874 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 struct svc_sock *newsvsk;
876 int err, slen;
877
878 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
879 if (!sock)
880 return;
881
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700882 clear_bit(SK_CONN, &svsk->sk_flags);
883 err = kernel_accept(sock, &newsock, O_NONBLOCK);
884 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (err == -ENOMEM)
886 printk(KERN_WARNING "%s: no more sockets!\n",
887 serv->sv_name);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700888 else if (err != -EAGAIN && net_ratelimit())
889 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
890 serv->sv_name, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 return;
892 }
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 set_bit(SK_CONN, &svsk->sk_flags);
895 svc_sock_enqueue(svsk);
896
897 slen = sizeof(sin);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700898 err = kernel_getpeername(newsock, (struct sockaddr *) &sin, &slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (err < 0) {
900 if (net_ratelimit())
901 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
902 serv->sv_name, -err);
903 goto failed; /* aborted connection or whatever */
904 }
905
906 /* Ideally, we would want to reject connections from unauthorized
907 * hosts here, but when we get encription, the IP of the host won't
908 * tell us anything. For now just warn about unpriv connections.
909 */
910 if (ntohs(sin.sin_port) >= 1024) {
911 dprintk(KERN_WARNING
912 "%s: connect from unprivileged port: %u.%u.%u.%u:%d\n",
913 serv->sv_name,
914 NIPQUAD(sin.sin_addr.s_addr), ntohs(sin.sin_port));
915 }
916
917 dprintk("%s: connect from %u.%u.%u.%u:%04x\n", serv->sv_name,
918 NIPQUAD(sin.sin_addr.s_addr), ntohs(sin.sin_port));
919
920 /* make sure that a write doesn't block forever when
921 * low on memory
922 */
923 newsock->sk->sk_sndtimeo = HZ*30;
924
925 if (!(newsvsk = svc_setup_socket(serv, newsock, &err, 0)))
926 goto failed;
927
928
929 /* make sure that we don't have too many active connections.
930 * If we have, something must be dropped.
931 *
932 * There's no point in trying to do random drop here for
933 * DoS prevention. The NFS clients does 1 reconnect in 15
934 * seconds. An attacker can easily beat that.
935 *
936 * The only somewhat efficient mechanism would be if drop
937 * old connections from the same IP first. But right now
938 * we don't even record the client IP in svc_sock.
939 */
940 if (serv->sv_tmpcnt > (serv->sv_nrthreads+3)*20) {
941 struct svc_sock *svsk = NULL;
942 spin_lock_bh(&serv->sv_lock);
943 if (!list_empty(&serv->sv_tempsocks)) {
944 if (net_ratelimit()) {
945 /* Try to help the admin */
946 printk(KERN_NOTICE "%s: too many open TCP "
947 "sockets, consider increasing the "
948 "number of nfsd threads\n",
949 serv->sv_name);
950 printk(KERN_NOTICE "%s: last TCP connect from "
951 "%u.%u.%u.%u:%d\n",
952 serv->sv_name,
953 NIPQUAD(sin.sin_addr.s_addr),
954 ntohs(sin.sin_port));
955 }
956 /*
957 * Always select the oldest socket. It's not fair,
958 * but so is life
959 */
960 svsk = list_entry(serv->sv_tempsocks.prev,
961 struct svc_sock,
962 sk_list);
963 set_bit(SK_CLOSE, &svsk->sk_flags);
Greg Banksc45c3572006-10-02 02:17:54 -0700964 atomic_inc(&svsk->sk_inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
966 spin_unlock_bh(&serv->sv_lock);
967
968 if (svsk) {
969 svc_sock_enqueue(svsk);
970 svc_sock_put(svsk);
971 }
972
973 }
974
975 if (serv->sv_stats)
976 serv->sv_stats->nettcpconn++;
977
978 return;
979
980failed:
981 sock_release(newsock);
982 return;
983}
984
985/*
986 * Receive data from a TCP socket.
987 */
988static int
989svc_tcp_recvfrom(struct svc_rqst *rqstp)
990{
991 struct svc_sock *svsk = rqstp->rq_sock;
992 struct svc_serv *serv = svsk->sk_server;
993 int len;
NeilBrown3cc03b12006-10-04 02:15:47 -0700994 struct kvec *vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 int pnum, vlen;
996
997 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
998 svsk, test_bit(SK_DATA, &svsk->sk_flags),
999 test_bit(SK_CONN, &svsk->sk_flags),
1000 test_bit(SK_CLOSE, &svsk->sk_flags));
1001
1002 if ((rqstp->rq_deferred = svc_deferred_dequeue(svsk))) {
1003 svc_sock_received(svsk);
1004 return svc_deferred_recv(rqstp);
1005 }
1006
1007 if (test_bit(SK_CLOSE, &svsk->sk_flags)) {
1008 svc_delete_socket(svsk);
1009 return 0;
1010 }
1011
NeilBrown1a047062006-10-19 23:29:13 -07001012 if (svsk->sk_sk->sk_state == TCP_LISTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 svc_tcp_accept(svsk);
1014 svc_sock_received(svsk);
1015 return 0;
1016 }
1017
1018 if (test_and_clear_bit(SK_CHNGBUF, &svsk->sk_flags))
1019 /* sndbuf needs to have room for one request
1020 * per thread, otherwise we can stall even when the
1021 * network isn't a bottleneck.
Greg Banks3262c812006-10-02 02:17:58 -07001022 *
1023 * We count all threads rather than threads in a
1024 * particular pool, which provides an upper bound
1025 * on the number of threads which will access the socket.
1026 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 * rcvbuf just needs to be able to hold a few requests.
1028 * Normally they will be removed from the queue
1029 * as soon a a complete request arrives.
1030 */
1031 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -07001032 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
1033 3 * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 clear_bit(SK_DATA, &svsk->sk_flags);
1036
1037 /* Receive data. If we haven't got the record length yet, get
1038 * the next four bytes. Otherwise try to gobble up as much as
1039 * possible up to the complete record length.
1040 */
1041 if (svsk->sk_tcplen < 4) {
1042 unsigned long want = 4 - svsk->sk_tcplen;
1043 struct kvec iov;
1044
1045 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
1046 iov.iov_len = want;
1047 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
1048 goto error;
1049 svsk->sk_tcplen += len;
1050
1051 if (len < want) {
1052 dprintk("svc: short recvfrom while reading record length (%d of %lu)\n",
1053 len, want);
1054 svc_sock_received(svsk);
1055 return -EAGAIN; /* record header not complete */
1056 }
1057
1058 svsk->sk_reclen = ntohl(svsk->sk_reclen);
1059 if (!(svsk->sk_reclen & 0x80000000)) {
1060 /* FIXME: technically, a record can be fragmented,
1061 * and non-terminal fragments will not have the top
1062 * bit set in the fragment length header.
1063 * But apparently no known nfs clients send fragmented
1064 * records. */
1065 printk(KERN_NOTICE "RPC: bad TCP reclen 0x%08lx (non-terminal)\n",
1066 (unsigned long) svsk->sk_reclen);
1067 goto err_delete;
1068 }
1069 svsk->sk_reclen &= 0x7fffffff;
1070 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
NeilBrownc6b0a9f2006-10-06 00:44:05 -07001071 if (svsk->sk_reclen > serv->sv_max_mesg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 printk(KERN_NOTICE "RPC: bad TCP reclen 0x%08lx (large)\n",
1073 (unsigned long) svsk->sk_reclen);
1074 goto err_delete;
1075 }
1076 }
1077
1078 /* Check whether enough data is available */
1079 len = svc_recv_available(svsk);
1080 if (len < 0)
1081 goto error;
1082
1083 if (len < svsk->sk_reclen) {
1084 dprintk("svc: incomplete TCP record (%d of %d)\n",
1085 len, svsk->sk_reclen);
1086 svc_sock_received(svsk);
1087 return -EAGAIN; /* record not complete */
1088 }
1089 len = svsk->sk_reclen;
1090 set_bit(SK_DATA, &svsk->sk_flags);
1091
NeilBrown3cc03b12006-10-04 02:15:47 -07001092 vec = rqstp->rq_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 vec[0] = rqstp->rq_arg.head[0];
1094 vlen = PAGE_SIZE;
1095 pnum = 1;
1096 while (vlen < len) {
NeilBrown44524352006-10-04 02:15:46 -07001097 vec[pnum].iov_base = page_address(rqstp->rq_pages[pnum]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 vec[pnum].iov_len = PAGE_SIZE;
1099 pnum++;
1100 vlen += PAGE_SIZE;
1101 }
NeilBrown44524352006-10-04 02:15:46 -07001102 rqstp->rq_respages = &rqstp->rq_pages[pnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 /* Now receive data */
1105 len = svc_recvfrom(rqstp, vec, pnum, len);
1106 if (len < 0)
1107 goto error;
1108
1109 dprintk("svc: TCP complete record (%d bytes)\n", len);
1110 rqstp->rq_arg.len = len;
1111 rqstp->rq_arg.page_base = 0;
1112 if (len <= rqstp->rq_arg.head[0].iov_len) {
1113 rqstp->rq_arg.head[0].iov_len = len;
1114 rqstp->rq_arg.page_len = 0;
1115 } else {
1116 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
1117 }
1118
1119 rqstp->rq_skbuff = NULL;
1120 rqstp->rq_prot = IPPROTO_TCP;
1121
1122 /* Reset TCP read info */
1123 svsk->sk_reclen = 0;
1124 svsk->sk_tcplen = 0;
1125
1126 svc_sock_received(svsk);
1127 if (serv->sv_stats)
1128 serv->sv_stats->nettcpcnt++;
1129
1130 return len;
1131
1132 err_delete:
1133 svc_delete_socket(svsk);
1134 return -EAGAIN;
1135
1136 error:
1137 if (len == -EAGAIN) {
1138 dprintk("RPC: TCP recvfrom got EAGAIN\n");
1139 svc_sock_received(svsk);
1140 } else {
1141 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
1142 svsk->sk_server->sv_name, -len);
Olaf Kirch93fbf1a2006-01-06 00:19:56 -08001143 goto err_delete;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
1145
1146 return len;
1147}
1148
1149/*
1150 * Send out data on TCP socket.
1151 */
1152static int
1153svc_tcp_sendto(struct svc_rqst *rqstp)
1154{
1155 struct xdr_buf *xbufp = &rqstp->rq_res;
1156 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001157 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 /* Set up the first element of the reply kvec.
1160 * Any other kvecs that may be in use have been taken
1161 * care of by the server implementation itself.
1162 */
1163 reclen = htonl(0x80000000|((xbufp->len ) - 4));
1164 memcpy(xbufp->head[0].iov_base, &reclen, 4);
1165
1166 if (test_bit(SK_DEAD, &rqstp->rq_sock->sk_flags))
1167 return -ENOTCONN;
1168
1169 sent = svc_sendto(rqstp, &rqstp->rq_res);
1170 if (sent != xbufp->len) {
1171 printk(KERN_NOTICE "rpc-srv/tcp: %s: %s %d when sending %d bytes - shutting down socket\n",
1172 rqstp->rq_sock->sk_server->sv_name,
1173 (sent<0)?"got error":"sent only",
1174 sent, xbufp->len);
1175 svc_delete_socket(rqstp->rq_sock);
1176 sent = -EAGAIN;
1177 }
1178 return sent;
1179}
1180
1181static void
1182svc_tcp_init(struct svc_sock *svsk)
1183{
1184 struct sock *sk = svsk->sk_sk;
1185 struct tcp_sock *tp = tcp_sk(sk);
1186
1187 svsk->sk_recvfrom = svc_tcp_recvfrom;
1188 svsk->sk_sendto = svc_tcp_sendto;
1189
1190 if (sk->sk_state == TCP_LISTEN) {
1191 dprintk("setting up TCP socket for listening\n");
1192 sk->sk_data_ready = svc_tcp_listen_data_ready;
1193 set_bit(SK_CONN, &svsk->sk_flags);
1194 } else {
1195 dprintk("setting up TCP socket for reading\n");
1196 sk->sk_state_change = svc_tcp_state_change;
1197 sk->sk_data_ready = svc_tcp_data_ready;
1198 sk->sk_write_space = svc_write_space;
1199
1200 svsk->sk_reclen = 0;
1201 svsk->sk_tcplen = 0;
1202
1203 tp->nonagle = 1; /* disable Nagle's algorithm */
1204
1205 /* initialise setting must have enough space to
1206 * receive and respond to one request.
1207 * svc_tcp_recvfrom will re-adjust if necessary
1208 */
1209 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -07001210 3 * svsk->sk_server->sv_max_mesg,
1211 3 * svsk->sk_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 set_bit(SK_CHNGBUF, &svsk->sk_flags);
1214 set_bit(SK_DATA, &svsk->sk_flags);
1215 if (sk->sk_state != TCP_ESTABLISHED)
1216 set_bit(SK_CLOSE, &svsk->sk_flags);
1217 }
1218}
1219
1220void
1221svc_sock_update_bufs(struct svc_serv *serv)
1222{
1223 /*
1224 * The number of server threads has changed. Update
1225 * rcvbuf and sndbuf accordingly on all sockets
1226 */
1227 struct list_head *le;
1228
1229 spin_lock_bh(&serv->sv_lock);
1230 list_for_each(le, &serv->sv_permsocks) {
1231 struct svc_sock *svsk =
1232 list_entry(le, struct svc_sock, sk_list);
1233 set_bit(SK_CHNGBUF, &svsk->sk_flags);
1234 }
1235 list_for_each(le, &serv->sv_tempsocks) {
1236 struct svc_sock *svsk =
1237 list_entry(le, struct svc_sock, sk_list);
1238 set_bit(SK_CHNGBUF, &svsk->sk_flags);
1239 }
1240 spin_unlock_bh(&serv->sv_lock);
1241}
1242
1243/*
Greg Banks3262c812006-10-02 02:17:58 -07001244 * Receive the next request on any socket. This code is carefully
1245 * organised not to touch any cachelines in the shared svc_serv
1246 * structure, only cachelines in the local svc_pool.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 */
1248int
NeilBrown6fb2b472006-10-02 02:17:50 -07001249svc_recv(struct svc_rqst *rqstp, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
1251 struct svc_sock *svsk =NULL;
NeilBrown6fb2b472006-10-02 02:17:50 -07001252 struct svc_serv *serv = rqstp->rq_server;
Greg Banks3262c812006-10-02 02:17:58 -07001253 struct svc_pool *pool = rqstp->rq_pool;
NeilBrown44524352006-10-04 02:15:46 -07001254 int len, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 int pages;
1256 struct xdr_buf *arg;
1257 DECLARE_WAITQUEUE(wait, current);
1258
1259 dprintk("svc: server %p waiting for data (to = %ld)\n",
1260 rqstp, timeout);
1261
1262 if (rqstp->rq_sock)
1263 printk(KERN_ERR
1264 "svc_recv: service %p, socket not NULL!\n",
1265 rqstp);
1266 if (waitqueue_active(&rqstp->rq_wait))
1267 printk(KERN_ERR
1268 "svc_recv: service %p, wait queue active!\n",
1269 rqstp);
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 /* now allocate needed pages. If we get a failure, sleep briefly */
NeilBrownc6b0a9f2006-10-06 00:44:05 -07001273 pages = (serv->sv_max_mesg + PAGE_SIZE) / PAGE_SIZE;
NeilBrown44524352006-10-04 02:15:46 -07001274 for (i=0; i < pages ; i++)
1275 while (rqstp->rq_pages[i] == NULL) {
1276 struct page *p = alloc_page(GFP_KERNEL);
1277 if (!p)
1278 schedule_timeout_uninterruptible(msecs_to_jiffies(500));
1279 rqstp->rq_pages[i] = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 /* Make arg->head point to first page and arg->pages point to rest */
1283 arg = &rqstp->rq_arg;
NeilBrown44524352006-10-04 02:15:46 -07001284 arg->head[0].iov_base = page_address(rqstp->rq_pages[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 arg->head[0].iov_len = PAGE_SIZE;
NeilBrown44524352006-10-04 02:15:46 -07001286 arg->pages = rqstp->rq_pages + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 arg->page_base = 0;
1288 /* save at least one page for response */
1289 arg->page_len = (pages-2)*PAGE_SIZE;
1290 arg->len = (pages-1)*PAGE_SIZE;
1291 arg->tail[0].iov_len = 0;
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001292
1293 try_to_freeze();
NeilBrown1887b932005-11-15 00:09:10 -08001294 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if (signalled())
1296 return -EINTR;
1297
Greg Banks3262c812006-10-02 02:17:58 -07001298 spin_lock_bh(&pool->sp_lock);
1299 if ((svsk = svc_sock_dequeue(pool)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 rqstp->rq_sock = svsk;
Greg Banksc45c3572006-10-02 02:17:54 -07001301 atomic_inc(&svsk->sk_inuse);
NeilBrownc6b0a9f2006-10-06 00:44:05 -07001302 rqstp->rq_reserved = serv->sv_max_mesg;
Greg Banks5685f0f2006-10-02 02:17:56 -07001303 atomic_add(rqstp->rq_reserved, &svsk->sk_reserved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 } else {
1305 /* No data pending. Go to sleep */
Greg Banks3262c812006-10-02 02:17:58 -07001306 svc_thread_enqueue(pool, rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 /*
1309 * We have to be able to interrupt this wait
1310 * to bring down the daemons ...
1311 */
1312 set_current_state(TASK_INTERRUPTIBLE);
1313 add_wait_queue(&rqstp->rq_wait, &wait);
Greg Banks3262c812006-10-02 02:17:58 -07001314 spin_unlock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 schedule_timeout(timeout);
1317
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001318 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Greg Banks3262c812006-10-02 02:17:58 -07001320 spin_lock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 remove_wait_queue(&rqstp->rq_wait, &wait);
1322
1323 if (!(svsk = rqstp->rq_sock)) {
Greg Banks3262c812006-10-02 02:17:58 -07001324 svc_thread_dequeue(pool, rqstp);
1325 spin_unlock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 dprintk("svc: server %p, no data yet\n", rqstp);
1327 return signalled()? -EINTR : -EAGAIN;
1328 }
1329 }
Greg Banks3262c812006-10-02 02:17:58 -07001330 spin_unlock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Greg Banks3262c812006-10-02 02:17:58 -07001332 dprintk("svc: server %p, pool %u, socket %p, inuse=%d\n",
1333 rqstp, pool->sp_id, svsk, atomic_read(&svsk->sk_inuse));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 len = svsk->sk_recvfrom(rqstp);
1335 dprintk("svc: got len=%d\n", len);
1336
1337 /* No data, incomplete (TCP) read, or accept() */
1338 if (len == 0 || len == -EAGAIN) {
1339 rqstp->rq_res.len = 0;
1340 svc_sock_release(rqstp);
1341 return -EAGAIN;
1342 }
1343 svsk->sk_lastrecv = get_seconds();
Greg Banks36bdfc82006-10-02 02:17:54 -07001344 clear_bit(SK_OLD, &svsk->sk_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 rqstp->rq_secure = ntohs(rqstp->rq_addr.sin_port) < 1024;
1347 rqstp->rq_chandle.defer = svc_defer;
1348
1349 if (serv->sv_stats)
1350 serv->sv_stats->netcnt++;
1351 return len;
1352}
1353
1354/*
1355 * Drop request
1356 */
1357void
1358svc_drop(struct svc_rqst *rqstp)
1359{
1360 dprintk("svc: socket %p dropped request\n", rqstp->rq_sock);
1361 svc_sock_release(rqstp);
1362}
1363
1364/*
1365 * Return reply to client.
1366 */
1367int
1368svc_send(struct svc_rqst *rqstp)
1369{
1370 struct svc_sock *svsk;
1371 int len;
1372 struct xdr_buf *xb;
1373
1374 if ((svsk = rqstp->rq_sock) == NULL) {
1375 printk(KERN_WARNING "NULL socket pointer in %s:%d\n",
1376 __FILE__, __LINE__);
1377 return -EFAULT;
1378 }
1379
1380 /* release the receive skb before sending the reply */
1381 svc_release_skb(rqstp);
1382
1383 /* calculate over-all length */
1384 xb = & rqstp->rq_res;
1385 xb->len = xb->head[0].iov_len +
1386 xb->page_len +
1387 xb->tail[0].iov_len;
1388
Ingo Molnar57b47a52006-03-20 22:35:41 -08001389 /* Grab svsk->sk_mutex to serialize outgoing data. */
1390 mutex_lock(&svsk->sk_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (test_bit(SK_DEAD, &svsk->sk_flags))
1392 len = -ENOTCONN;
1393 else
1394 len = svsk->sk_sendto(rqstp);
Ingo Molnar57b47a52006-03-20 22:35:41 -08001395 mutex_unlock(&svsk->sk_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 svc_sock_release(rqstp);
1397
1398 if (len == -ECONNREFUSED || len == -ENOTCONN || len == -EAGAIN)
1399 return 0;
1400 return len;
1401}
1402
1403/*
Greg Banks36bdfc82006-10-02 02:17:54 -07001404 * Timer function to close old temporary sockets, using
1405 * a mark-and-sweep algorithm.
1406 */
1407static void
1408svc_age_temp_sockets(unsigned long closure)
1409{
1410 struct svc_serv *serv = (struct svc_serv *)closure;
1411 struct svc_sock *svsk;
1412 struct list_head *le, *next;
1413 LIST_HEAD(to_be_aged);
1414
1415 dprintk("svc_age_temp_sockets\n");
1416
1417 if (!spin_trylock_bh(&serv->sv_lock)) {
1418 /* busy, try again 1 sec later */
1419 dprintk("svc_age_temp_sockets: busy\n");
1420 mod_timer(&serv->sv_temptimer, jiffies + HZ);
1421 return;
1422 }
1423
1424 list_for_each_safe(le, next, &serv->sv_tempsocks) {
1425 svsk = list_entry(le, struct svc_sock, sk_list);
1426
1427 if (!test_and_set_bit(SK_OLD, &svsk->sk_flags))
1428 continue;
Greg Banksc45c3572006-10-02 02:17:54 -07001429 if (atomic_read(&svsk->sk_inuse) || test_bit(SK_BUSY, &svsk->sk_flags))
Greg Banks36bdfc82006-10-02 02:17:54 -07001430 continue;
Greg Banksc45c3572006-10-02 02:17:54 -07001431 atomic_inc(&svsk->sk_inuse);
Greg Banks36bdfc82006-10-02 02:17:54 -07001432 list_move(le, &to_be_aged);
1433 set_bit(SK_CLOSE, &svsk->sk_flags);
1434 set_bit(SK_DETACHED, &svsk->sk_flags);
1435 }
1436 spin_unlock_bh(&serv->sv_lock);
1437
1438 while (!list_empty(&to_be_aged)) {
1439 le = to_be_aged.next;
1440 /* fiddling the sk_list node is safe 'cos we're SK_DETACHED */
1441 list_del_init(le);
1442 svsk = list_entry(le, struct svc_sock, sk_list);
1443
1444 dprintk("queuing svsk %p for closing, %lu seconds old\n",
1445 svsk, get_seconds() - svsk->sk_lastrecv);
1446
1447 /* a thread will dequeue and close it soon */
1448 svc_sock_enqueue(svsk);
1449 svc_sock_put(svsk);
1450 }
1451
1452 mod_timer(&serv->sv_temptimer, jiffies + svc_conn_age_period * HZ);
1453}
1454
1455/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 * Initialize socket for RPC use and create svc_sock struct
1457 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1458 */
1459static struct svc_sock *
1460svc_setup_socket(struct svc_serv *serv, struct socket *sock,
1461 int *errp, int pmap_register)
1462{
1463 struct svc_sock *svsk;
1464 struct sock *inet;
1465
1466 dprintk("svc: svc_setup_socket %p\n", sock);
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001467 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 *errp = -ENOMEM;
1469 return NULL;
1470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 inet = sock->sk;
1473
1474 /* Register socket with portmapper */
1475 if (*errp >= 0 && pmap_register)
1476 *errp = svc_register(serv, inet->sk_protocol,
1477 ntohs(inet_sk(inet)->sport));
1478
1479 if (*errp < 0) {
1480 kfree(svsk);
1481 return NULL;
1482 }
1483
1484 set_bit(SK_BUSY, &svsk->sk_flags);
1485 inet->sk_user_data = svsk;
1486 svsk->sk_sock = sock;
1487 svsk->sk_sk = inet;
1488 svsk->sk_ostate = inet->sk_state_change;
1489 svsk->sk_odata = inet->sk_data_ready;
1490 svsk->sk_owspace = inet->sk_write_space;
1491 svsk->sk_server = serv;
Greg Banksc45c3572006-10-02 02:17:54 -07001492 atomic_set(&svsk->sk_inuse, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 svsk->sk_lastrecv = get_seconds();
Greg Banks1a68d952006-10-02 02:17:55 -07001494 spin_lock_init(&svsk->sk_defer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 INIT_LIST_HEAD(&svsk->sk_deferred);
1496 INIT_LIST_HEAD(&svsk->sk_ready);
Ingo Molnar57b47a52006-03-20 22:35:41 -08001497 mutex_init(&svsk->sk_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 /* Initialize the socket */
1500 if (sock->type == SOCK_DGRAM)
1501 svc_udp_init(svsk);
1502 else
1503 svc_tcp_init(svsk);
1504
1505 spin_lock_bh(&serv->sv_lock);
1506 if (!pmap_register) {
1507 set_bit(SK_TEMP, &svsk->sk_flags);
1508 list_add(&svsk->sk_list, &serv->sv_tempsocks);
1509 serv->sv_tmpcnt++;
Greg Banks36bdfc82006-10-02 02:17:54 -07001510 if (serv->sv_temptimer.function == NULL) {
1511 /* setup timer to age temp sockets */
1512 setup_timer(&serv->sv_temptimer, svc_age_temp_sockets,
1513 (unsigned long)serv);
1514 mod_timer(&serv->sv_temptimer,
1515 jiffies + svc_conn_age_period * HZ);
1516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 } else {
1518 clear_bit(SK_TEMP, &svsk->sk_flags);
1519 list_add(&svsk->sk_list, &serv->sv_permsocks);
1520 }
1521 spin_unlock_bh(&serv->sv_lock);
1522
1523 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1524 svsk, svsk->sk_sk);
1525
1526 clear_bit(SK_BUSY, &svsk->sk_flags);
1527 svc_sock_enqueue(svsk);
1528 return svsk;
1529}
1530
NeilBrownb41b66d2006-10-02 02:17:48 -07001531int svc_addsock(struct svc_serv *serv,
1532 int fd,
1533 char *name_return,
1534 int *proto)
1535{
1536 int err = 0;
1537 struct socket *so = sockfd_lookup(fd, &err);
1538 struct svc_sock *svsk = NULL;
1539
1540 if (!so)
1541 return err;
1542 if (so->sk->sk_family != AF_INET)
1543 err = -EAFNOSUPPORT;
1544 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1545 so->sk->sk_protocol != IPPROTO_UDP)
1546 err = -EPROTONOSUPPORT;
1547 else if (so->state > SS_UNCONNECTED)
1548 err = -EISCONN;
1549 else {
1550 svsk = svc_setup_socket(serv, so, &err, 1);
1551 if (svsk)
1552 err = 0;
1553 }
1554 if (err) {
1555 sockfd_put(so);
1556 return err;
1557 }
1558 if (proto) *proto = so->sk->sk_protocol;
1559 return one_sock_name(name_return, svsk);
1560}
1561EXPORT_SYMBOL_GPL(svc_addsock);
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563/*
1564 * Create socket for RPC service.
1565 */
1566static int
1567svc_create_socket(struct svc_serv *serv, int protocol, struct sockaddr_in *sin)
1568{
1569 struct svc_sock *svsk;
1570 struct socket *sock;
1571 int error;
1572 int type;
1573
1574 dprintk("svc: svc_create_socket(%s, %d, %u.%u.%u.%u:%d)\n",
1575 serv->sv_program->pg_name, protocol,
1576 NIPQUAD(sin->sin_addr.s_addr),
1577 ntohs(sin->sin_port));
1578
1579 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1580 printk(KERN_WARNING "svc: only UDP and TCP "
1581 "sockets supported\n");
1582 return -EINVAL;
1583 }
1584 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1585
1586 if ((error = sock_create_kern(PF_INET, type, protocol, &sock)) < 0)
1587 return error;
1588
Peter Zijlstraed075362006-12-06 20:35:24 -08001589 svc_reclassify_socket(sock);
1590
Eric Sesterhenn18114742006-09-28 14:37:07 -07001591 if (type == SOCK_STREAM)
1592 sock->sk->sk_reuse = 1; /* allow address reuse */
1593 error = kernel_bind(sock, (struct sockaddr *) sin,
1594 sizeof(*sin));
1595 if (error < 0)
1596 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001599 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 goto bummer;
1601 }
1602
1603 if ((svsk = svc_setup_socket(serv, sock, &error, 1)) != NULL)
1604 return 0;
1605
1606bummer:
1607 dprintk("svc: svc_create_socket error = %d\n", -error);
1608 sock_release(sock);
1609 return error;
1610}
1611
1612/*
1613 * Remove a dead socket
1614 */
1615void
1616svc_delete_socket(struct svc_sock *svsk)
1617{
1618 struct svc_serv *serv;
1619 struct sock *sk;
1620
1621 dprintk("svc: svc_delete_socket(%p)\n", svsk);
1622
1623 serv = svsk->sk_server;
1624 sk = svsk->sk_sk;
1625
1626 sk->sk_state_change = svsk->sk_ostate;
1627 sk->sk_data_ready = svsk->sk_odata;
1628 sk->sk_write_space = svsk->sk_owspace;
1629
1630 spin_lock_bh(&serv->sv_lock);
1631
Greg Banks36bdfc82006-10-02 02:17:54 -07001632 if (!test_and_set_bit(SK_DETACHED, &svsk->sk_flags))
1633 list_del_init(&svsk->sk_list);
Greg Banks3262c812006-10-02 02:17:58 -07001634 /*
1635 * We used to delete the svc_sock from whichever list
1636 * it's sk_ready node was on, but we don't actually
1637 * need to. This is because the only time we're called
1638 * while still attached to a queue, the queue itself
1639 * is about to be destroyed (in svc_destroy).
1640 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if (!test_and_set_bit(SK_DEAD, &svsk->sk_flags))
1642 if (test_bit(SK_TEMP, &svsk->sk_flags))
1643 serv->sv_tmpcnt--;
1644
Neil Brownd6740df2006-10-29 22:46:45 -08001645 /* This atomic_inc should be needed - svc_delete_socket
1646 * should have the semantic of dropping a reference.
1647 * But it doesn't yet....
1648 */
1649 atomic_inc(&svsk->sk_inuse);
1650 spin_unlock_bh(&serv->sv_lock);
1651 svc_sock_put(svsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652}
1653
1654/*
1655 * Make a socket for nfsd and lockd
1656 */
1657int
1658svc_makesock(struct svc_serv *serv, int protocol, unsigned short port)
1659{
1660 struct sockaddr_in sin;
1661
1662 dprintk("svc: creating socket proto = %d\n", protocol);
1663 sin.sin_family = AF_INET;
1664 sin.sin_addr.s_addr = INADDR_ANY;
1665 sin.sin_port = htons(port);
1666 return svc_create_socket(serv, protocol, &sin);
1667}
1668
1669/*
1670 * Handle defer and revisit of requests
1671 */
1672
1673static void svc_revisit(struct cache_deferred_req *dreq, int too_many)
1674{
1675 struct svc_deferred_req *dr = container_of(dreq, struct svc_deferred_req, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 struct svc_sock *svsk;
1677
1678 if (too_many) {
1679 svc_sock_put(dr->svsk);
1680 kfree(dr);
1681 return;
1682 }
1683 dprintk("revisit queued\n");
1684 svsk = dr->svsk;
1685 dr->svsk = NULL;
Greg Banks1a68d952006-10-02 02:17:55 -07001686 spin_lock_bh(&svsk->sk_defer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 list_add(&dr->handle.recent, &svsk->sk_deferred);
Greg Banks1a68d952006-10-02 02:17:55 -07001688 spin_unlock_bh(&svsk->sk_defer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 set_bit(SK_DEFERRED, &svsk->sk_flags);
1690 svc_sock_enqueue(svsk);
1691 svc_sock_put(svsk);
1692}
1693
1694static struct cache_deferred_req *
1695svc_defer(struct cache_req *req)
1696{
1697 struct svc_rqst *rqstp = container_of(req, struct svc_rqst, rq_chandle);
1698 int size = sizeof(struct svc_deferred_req) + (rqstp->rq_arg.len);
1699 struct svc_deferred_req *dr;
1700
1701 if (rqstp->rq_arg.page_len)
1702 return NULL; /* if more than a page, give up FIXME */
1703 if (rqstp->rq_deferred) {
1704 dr = rqstp->rq_deferred;
1705 rqstp->rq_deferred = NULL;
1706 } else {
1707 int skip = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len;
1708 /* FIXME maybe discard if size too large */
1709 dr = kmalloc(size, GFP_KERNEL);
1710 if (dr == NULL)
1711 return NULL;
1712
1713 dr->handle.owner = rqstp->rq_server;
1714 dr->prot = rqstp->rq_prot;
1715 dr->addr = rqstp->rq_addr;
J. Bruce Fields1918e342006-01-18 17:43:16 -08001716 dr->daddr = rqstp->rq_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 dr->argslen = rqstp->rq_arg.len >> 2;
1718 memcpy(dr->args, rqstp->rq_arg.head[0].iov_base-skip, dr->argslen<<2);
1719 }
Greg Banksc45c3572006-10-02 02:17:54 -07001720 atomic_inc(&rqstp->rq_sock->sk_inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 dr->svsk = rqstp->rq_sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 dr->handle.revisit = svc_revisit;
1724 return &dr->handle;
1725}
1726
1727/*
1728 * recv data from a deferred request into an active one
1729 */
1730static int svc_deferred_recv(struct svc_rqst *rqstp)
1731{
1732 struct svc_deferred_req *dr = rqstp->rq_deferred;
1733
1734 rqstp->rq_arg.head[0].iov_base = dr->args;
1735 rqstp->rq_arg.head[0].iov_len = dr->argslen<<2;
1736 rqstp->rq_arg.page_len = 0;
1737 rqstp->rq_arg.len = dr->argslen<<2;
1738 rqstp->rq_prot = dr->prot;
1739 rqstp->rq_addr = dr->addr;
J. Bruce Fields1918e342006-01-18 17:43:16 -08001740 rqstp->rq_daddr = dr->daddr;
NeilBrown44524352006-10-04 02:15:46 -07001741 rqstp->rq_respages = rqstp->rq_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 return dr->argslen<<2;
1743}
1744
1745
1746static struct svc_deferred_req *svc_deferred_dequeue(struct svc_sock *svsk)
1747{
1748 struct svc_deferred_req *dr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750 if (!test_bit(SK_DEFERRED, &svsk->sk_flags))
1751 return NULL;
Greg Banks1a68d952006-10-02 02:17:55 -07001752 spin_lock_bh(&svsk->sk_defer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 clear_bit(SK_DEFERRED, &svsk->sk_flags);
1754 if (!list_empty(&svsk->sk_deferred)) {
1755 dr = list_entry(svsk->sk_deferred.next,
1756 struct svc_deferred_req,
1757 handle.recent);
1758 list_del_init(&dr->handle.recent);
1759 set_bit(SK_DEFERRED, &svsk->sk_flags);
1760 }
Greg Banks1a68d952006-10-02 02:17:55 -07001761 spin_unlock_bh(&svsk->sk_defer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 return dr;
1763}