blob: 54f1b3d993a650e485544f9d159adbe4c1af4671 [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
Ilpo Järvinen172589c2007-08-28 15:50:33 -070022#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/sched.h>
24#include <linux/errno.h>
25#include <linux/fcntl.h>
26#include <linux/net.h>
27#include <linux/in.h>
28#include <linux/inet.h>
29#include <linux/udp.h>
Andrew Morton91483c42005-08-09 20:20:07 -070030#include <linux/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/unistd.h>
32#include <linux/slab.h>
33#include <linux/netdevice.h>
34#include <linux/skbuff.h>
NeilBrownb41b66d2006-10-02 02:17:48 -070035#include <linux/file.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080036#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <net/sock.h>
38#include <net/checksum.h>
39#include <net/ip.h>
Chuck Leverb92503b2007-02-12 00:53:36 -080040#include <net/ipv6.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070041#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/uaccess.h>
43#include <asm/ioctls.h>
44
45#include <linux/sunrpc/types.h>
Chuck Leverad06e4b2007-02-12 00:53:32 -080046#include <linux/sunrpc/clnt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/sunrpc/xdr.h>
48#include <linux/sunrpc/svcsock.h>
49#include <linux/sunrpc/stats.h>
50
51/* SMP locking strategy:
52 *
Greg Banks3262c812006-10-02 02:17:58 -070053 * svc_pool->sp_lock protects most of the fields of that pool.
54 * svc_serv->sv_lock protects sv_tempsocks, sv_permsocks, sv_tmpcnt.
55 * when both need to be taken (rare), svc_serv->sv_lock is first.
56 * BKL protects svc_serv->sv_nrthread.
NeilBrown7ac1bea2007-05-09 02:34:48 -070057 * svc_sock->sk_lock protects the svc_sock->sk_deferred list
58 * and the ->sk_info_authunix cache.
Greg Banksc081a0c2006-10-02 02:17:57 -070059 * svc_sock->sk_flags.SK_BUSY prevents a svc_sock being enqueued multiply.
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
61 * Some flags can be set to certain values at any time
62 * providing that certain rules are followed:
63 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * SK_CONN, SK_DATA, can be set or cleared at any time.
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -080065 * after a set, svc_sock_enqueue must be called.
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 * after a clear, the socket must be read/accepted
67 * if this succeeds, it must be set again.
68 * SK_CLOSE can set at any time. It is never cleared.
NeilBrownaaf68cf2007-02-08 14:20:30 -080069 * sk_inuse contains a bias of '1' until SK_DEAD is set.
70 * so when sk_inuse hits zero, we know the socket is dead
71 * and no-one is using it.
72 * SK_DEAD can only be set while SK_BUSY is held which ensures
73 * no other thread will be using the socket or will try to
74 * set SK_DEAD.
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 *
76 */
77
Tom Tucker360d87382007-12-30 21:07:17 -060078#define RPCDBG_FACILITY RPCDBG_SVCXPRT
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80
81static struct svc_sock *svc_setup_socket(struct svc_serv *, struct socket *,
Chuck Lever6b174332007-02-12 00:53:28 -080082 int *errp, int flags);
NeilBrownaaf68cf2007-02-08 14:20:30 -080083static void svc_delete_socket(struct svc_sock *svsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static void svc_udp_data_ready(struct sock *, int);
85static int svc_udp_recvfrom(struct svc_rqst *);
86static int svc_udp_sendto(struct svc_rqst *);
NeilBrowncda1fd42007-03-06 01:42:22 -080087static void svc_close_socket(struct svc_sock *svsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89static struct svc_deferred_req *svc_deferred_dequeue(struct svc_sock *svsk);
90static int svc_deferred_recv(struct svc_rqst *rqstp);
91static struct cache_deferred_req *svc_defer(struct cache_req *req);
92
Greg Banks36bdfc82006-10-02 02:17:54 -070093/* apparently the "standard" is that clients close
94 * idle connections after 5 minutes, servers after
95 * 6 minutes
96 * http://www.connectathon.org/talks96/nfstcp.pdf
97 */
98static int svc_conn_age_period = 6*60;
99
Peter Zijlstraed075362006-12-06 20:35:24 -0800100#ifdef CONFIG_DEBUG_LOCK_ALLOC
101static struct lock_class_key svc_key[2];
102static struct lock_class_key svc_slock_key[2];
103
104static inline void svc_reclassify_socket(struct socket *sock)
105{
106 struct sock *sk = sock->sk;
John Heffner02b3d342007-09-12 10:42:12 +0200107 BUG_ON(sock_owned_by_user(sk));
Peter Zijlstraed075362006-12-06 20:35:24 -0800108 switch (sk->sk_family) {
109 case AF_INET:
110 sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD",
111 &svc_slock_key[0], "sk_lock-AF_INET-NFSD", &svc_key[0]);
112 break;
113
114 case AF_INET6:
115 sock_lock_init_class_and_name(sk, "slock-AF_INET6-NFSD",
116 &svc_slock_key[1], "sk_lock-AF_INET6-NFSD", &svc_key[1]);
117 break;
118
119 default:
120 BUG();
121 }
122}
123#else
124static inline void svc_reclassify_socket(struct socket *sock)
125{
126}
127#endif
128
Chuck Leverad06e4b2007-02-12 00:53:32 -0800129static char *__svc_print_addr(struct sockaddr *addr, char *buf, size_t len)
130{
131 switch (addr->sa_family) {
132 case AF_INET:
133 snprintf(buf, len, "%u.%u.%u.%u, port=%u",
134 NIPQUAD(((struct sockaddr_in *) addr)->sin_addr),
Al Viro582ee432007-07-26 17:33:39 +0100135 ntohs(((struct sockaddr_in *) addr)->sin_port));
Chuck Leverad06e4b2007-02-12 00:53:32 -0800136 break;
NeilBrown5a05ed72007-03-06 01:42:22 -0800137
Chuck Leverad06e4b2007-02-12 00:53:32 -0800138 case AF_INET6:
139 snprintf(buf, len, "%x:%x:%x:%x:%x:%x:%x:%x, port=%u",
140 NIP6(((struct sockaddr_in6 *) addr)->sin6_addr),
Al Viro582ee432007-07-26 17:33:39 +0100141 ntohs(((struct sockaddr_in6 *) addr)->sin6_port));
Chuck Leverad06e4b2007-02-12 00:53:32 -0800142 break;
NeilBrown5a05ed72007-03-06 01:42:22 -0800143
Chuck Leverad06e4b2007-02-12 00:53:32 -0800144 default:
145 snprintf(buf, len, "unknown address type: %d", addr->sa_family);
146 break;
147 }
148 return buf;
149}
150
151/**
152 * svc_print_addr - Format rq_addr field for printing
153 * @rqstp: svc_rqst struct containing address to print
154 * @buf: target buffer for formatted address
155 * @len: length of target buffer
156 *
157 */
158char *svc_print_addr(struct svc_rqst *rqstp, char *buf, size_t len)
159{
Chuck Lever27459f02007-02-12 00:53:34 -0800160 return __svc_print_addr(svc_addr(rqstp), buf, len);
Chuck Leverad06e4b2007-02-12 00:53:32 -0800161}
162EXPORT_SYMBOL_GPL(svc_print_addr);
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164/*
Greg Banks3262c812006-10-02 02:17:58 -0700165 * Queue up an idle server thread. Must have pool->sp_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 * Note: this is really a stack rather than a queue, so that we only
Greg Banks3262c812006-10-02 02:17:58 -0700167 * use as many different threads as we need, and the rest don't pollute
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 * the cache.
169 */
170static inline void
Greg Banks3262c812006-10-02 02:17:58 -0700171svc_thread_enqueue(struct svc_pool *pool, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Greg Banks3262c812006-10-02 02:17:58 -0700173 list_add(&rqstp->rq_list, &pool->sp_threads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
176/*
Greg Banks3262c812006-10-02 02:17:58 -0700177 * Dequeue an nfsd thread. Must have pool->sp_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 */
179static inline void
Greg Banks3262c812006-10-02 02:17:58 -0700180svc_thread_dequeue(struct svc_pool *pool, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 list_del(&rqstp->rq_list);
183}
184
185/*
186 * Release an skbuff after use
187 */
188static inline void
189svc_release_skb(struct svc_rqst *rqstp)
190{
191 struct sk_buff *skb = rqstp->rq_skbuff;
192 struct svc_deferred_req *dr = rqstp->rq_deferred;
193
194 if (skb) {
195 rqstp->rq_skbuff = NULL;
196
197 dprintk("svc: service %p, releasing skb %p\n", rqstp, skb);
198 skb_free_datagram(rqstp->rq_sock->sk_sk, skb);
199 }
200 if (dr) {
201 rqstp->rq_deferred = NULL;
202 kfree(dr);
203 }
204}
205
206/*
207 * Any space to write?
208 */
209static inline unsigned long
210svc_sock_wspace(struct svc_sock *svsk)
211{
212 int wspace;
213
214 if (svsk->sk_sock->type == SOCK_STREAM)
215 wspace = sk_stream_wspace(svsk->sk_sk);
216 else
217 wspace = sock_wspace(svsk->sk_sk);
218
219 return wspace;
220}
221
222/*
223 * Queue up a socket with data pending. If there are idle nfsd
224 * processes, wake 'em up.
225 *
226 */
227static void
228svc_sock_enqueue(struct svc_sock *svsk)
229{
230 struct svc_serv *serv = svsk->sk_server;
Greg Banksbfd24162006-10-02 02:18:01 -0700231 struct svc_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 struct svc_rqst *rqstp;
Greg Banksbfd24162006-10-02 02:18:01 -0700233 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 if (!(svsk->sk_flags &
236 ( (1<<SK_CONN)|(1<<SK_DATA)|(1<<SK_CLOSE)|(1<<SK_DEFERRED)) ))
237 return;
238 if (test_bit(SK_DEAD, &svsk->sk_flags))
239 return;
240
Greg Banksbfd24162006-10-02 02:18:01 -0700241 cpu = get_cpu();
242 pool = svc_pool_for_cpu(svsk->sk_server, cpu);
243 put_cpu();
244
Greg Banks3262c812006-10-02 02:17:58 -0700245 spin_lock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Greg Banks3262c812006-10-02 02:17:58 -0700247 if (!list_empty(&pool->sp_threads) &&
248 !list_empty(&pool->sp_sockets))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 printk(KERN_ERR
250 "svc_sock_enqueue: threads and sockets both waiting??\n");
251
252 if (test_bit(SK_DEAD, &svsk->sk_flags)) {
253 /* Don't enqueue dead sockets */
254 dprintk("svc: socket %p is dead, not enqueued\n", svsk->sk_sk);
255 goto out_unlock;
256 }
257
Greg Banksc081a0c2006-10-02 02:17:57 -0700258 /* Mark socket as busy. It will remain in this state until the
259 * server has processed all pending data and put the socket back
260 * on the idle list. We update SK_BUSY atomically because
261 * it also guards against trying to enqueue the svc_sock twice.
262 */
263 if (test_and_set_bit(SK_BUSY, &svsk->sk_flags)) {
264 /* Don't enqueue socket while already enqueued */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 dprintk("svc: socket %p busy, not enqueued\n", svsk->sk_sk);
266 goto out_unlock;
267 }
Greg Banks3262c812006-10-02 02:17:58 -0700268 BUG_ON(svsk->sk_pool != NULL);
269 svsk->sk_pool = pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700272 if (((atomic_read(&svsk->sk_reserved) + serv->sv_max_mesg)*2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 > svc_sock_wspace(svsk))
274 && !test_bit(SK_CLOSE, &svsk->sk_flags)
275 && !test_bit(SK_CONN, &svsk->sk_flags)) {
276 /* Don't enqueue while not enough space for reply */
277 dprintk("svc: socket %p no space, %d*2 > %ld, not enqueued\n",
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700278 svsk->sk_sk, atomic_read(&svsk->sk_reserved)+serv->sv_max_mesg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 svc_sock_wspace(svsk));
Greg Banks3262c812006-10-02 02:17:58 -0700280 svsk->sk_pool = NULL;
Greg Banksc081a0c2006-10-02 02:17:57 -0700281 clear_bit(SK_BUSY, &svsk->sk_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 goto out_unlock;
283 }
284 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Greg Banks3262c812006-10-02 02:17:58 -0700287 if (!list_empty(&pool->sp_threads)) {
288 rqstp = list_entry(pool->sp_threads.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 struct svc_rqst,
290 rq_list);
291 dprintk("svc: socket %p served by daemon %p\n",
292 svsk->sk_sk, rqstp);
Greg Banks3262c812006-10-02 02:17:58 -0700293 svc_thread_dequeue(pool, rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (rqstp->rq_sock)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800295 printk(KERN_ERR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 "svc_sock_enqueue: server %p, rq_sock=%p!\n",
297 rqstp, rqstp->rq_sock);
298 rqstp->rq_sock = svsk;
Greg Banksc45c3572006-10-02 02:17:54 -0700299 atomic_inc(&svsk->sk_inuse);
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700300 rqstp->rq_reserved = serv->sv_max_mesg;
Greg Banks5685f0f2006-10-02 02:17:56 -0700301 atomic_add(rqstp->rq_reserved, &svsk->sk_reserved);
Greg Banks3262c812006-10-02 02:17:58 -0700302 BUG_ON(svsk->sk_pool != pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 wake_up(&rqstp->rq_wait);
304 } else {
305 dprintk("svc: socket %p put into queue\n", svsk->sk_sk);
Greg Banks3262c812006-10-02 02:17:58 -0700306 list_add_tail(&svsk->sk_ready, &pool->sp_sockets);
307 BUG_ON(svsk->sk_pool != pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
309
310out_unlock:
Greg Banks3262c812006-10-02 02:17:58 -0700311 spin_unlock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314/*
Greg Banks3262c812006-10-02 02:17:58 -0700315 * Dequeue the first socket. Must be called with the pool->sp_lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 */
317static inline struct svc_sock *
Greg Banks3262c812006-10-02 02:17:58 -0700318svc_sock_dequeue(struct svc_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320 struct svc_sock *svsk;
321
Greg Banks3262c812006-10-02 02:17:58 -0700322 if (list_empty(&pool->sp_sockets))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return NULL;
324
Greg Banks3262c812006-10-02 02:17:58 -0700325 svsk = list_entry(pool->sp_sockets.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 struct svc_sock, sk_ready);
327 list_del_init(&svsk->sk_ready);
328
329 dprintk("svc: socket %p dequeued, inuse=%d\n",
Greg Banksc45c3572006-10-02 02:17:54 -0700330 svsk->sk_sk, atomic_read(&svsk->sk_inuse));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 return svsk;
333}
334
335/*
336 * Having read something from a socket, check whether it
337 * needs to be re-enqueued.
338 * Note: SK_DATA only gets cleared when a read-attempt finds
339 * no (or insufficient) data.
340 */
341static inline void
342svc_sock_received(struct svc_sock *svsk)
343{
Greg Banks3262c812006-10-02 02:17:58 -0700344 svsk->sk_pool = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 clear_bit(SK_BUSY, &svsk->sk_flags);
346 svc_sock_enqueue(svsk);
347}
348
349
350/**
351 * svc_reserve - change the space reserved for the reply to a request.
352 * @rqstp: The request in question
353 * @space: new max space to reserve
354 *
355 * Each request reserves some space on the output queue of the socket
356 * to make sure the reply fits. This function reduces that reserved
357 * space to be the amount of space used already, plus @space.
358 *
359 */
360void svc_reserve(struct svc_rqst *rqstp, int space)
361{
362 space += rqstp->rq_res.head[0].iov_len;
363
364 if (space < rqstp->rq_reserved) {
365 struct svc_sock *svsk = rqstp->rq_sock;
Greg Banks5685f0f2006-10-02 02:17:56 -0700366 atomic_sub((rqstp->rq_reserved - space), &svsk->sk_reserved);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 rqstp->rq_reserved = space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 svc_sock_enqueue(svsk);
370 }
371}
372
373/*
374 * Release a socket after use.
375 */
376static inline void
377svc_sock_put(struct svc_sock *svsk)
378{
NeilBrownaaf68cf2007-02-08 14:20:30 -0800379 if (atomic_dec_and_test(&svsk->sk_inuse)) {
380 BUG_ON(! test_bit(SK_DEAD, &svsk->sk_flags));
381
Andrew Morton202dd452006-10-29 22:57:57 -0800382 dprintk("svc: releasing dead socket\n");
Neil Brownd6740df2006-10-29 22:46:45 -0800383 if (svsk->sk_sock->file)
384 sockfd_put(svsk->sk_sock);
385 else
386 sock_release(svsk->sk_sock);
387 if (svsk->sk_info_authunix != NULL)
388 svcauth_unix_info_release(svsk->sk_info_authunix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 kfree(svsk);
390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393static void
394svc_sock_release(struct svc_rqst *rqstp)
395{
396 struct svc_sock *svsk = rqstp->rq_sock;
397
398 svc_release_skb(rqstp);
399
NeilBrown44524352006-10-04 02:15:46 -0700400 svc_free_res_pages(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 rqstp->rq_res.page_len = 0;
402 rqstp->rq_res.page_base = 0;
403
404
405 /* Reset response buffer and release
406 * the reservation.
407 * But first, check that enough space was reserved
408 * for the reply, otherwise we have a bug!
409 */
410 if ((rqstp->rq_res.len) > rqstp->rq_reserved)
411 printk(KERN_ERR "RPC request reserved %d but used %d\n",
412 rqstp->rq_reserved,
413 rqstp->rq_res.len);
414
415 rqstp->rq_res.head[0].iov_len = 0;
416 svc_reserve(rqstp, 0);
417 rqstp->rq_sock = NULL;
418
419 svc_sock_put(svsk);
420}
421
422/*
423 * External function to wake up a server waiting for data
Greg Banks3262c812006-10-02 02:17:58 -0700424 * This really only makes sense for services like lockd
425 * which have exactly one thread anyway.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 */
427void
428svc_wake_up(struct svc_serv *serv)
429{
430 struct svc_rqst *rqstp;
Greg Banks3262c812006-10-02 02:17:58 -0700431 unsigned int i;
432 struct svc_pool *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Greg Banks3262c812006-10-02 02:17:58 -0700434 for (i = 0; i < serv->sv_nrpools; i++) {
435 pool = &serv->sv_pools[i];
436
437 spin_lock_bh(&pool->sp_lock);
438 if (!list_empty(&pool->sp_threads)) {
439 rqstp = list_entry(pool->sp_threads.next,
440 struct svc_rqst,
441 rq_list);
442 dprintk("svc: daemon %p woken up.\n", rqstp);
443 /*
444 svc_thread_dequeue(pool, rqstp);
445 rqstp->rq_sock = NULL;
446 */
447 wake_up(&rqstp->rq_wait);
448 }
449 spin_unlock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Chuck Leverb92503b2007-02-12 00:53:36 -0800453union svc_pktinfo_u {
454 struct in_pktinfo pkti;
Chuck Leverb92503b2007-02-12 00:53:36 -0800455 struct in6_pktinfo pkti6;
Chuck Leverb92503b2007-02-12 00:53:36 -0800456};
David S. Millerbc375ea2007-04-12 13:35:59 -0700457#define SVC_PKTINFO_SPACE \
458 CMSG_SPACE(sizeof(union svc_pktinfo_u))
Chuck Leverb92503b2007-02-12 00:53:36 -0800459
460static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh)
461{
462 switch (rqstp->rq_sock->sk_sk->sk_family) {
463 case AF_INET: {
464 struct in_pktinfo *pki = CMSG_DATA(cmh);
465
466 cmh->cmsg_level = SOL_IP;
467 cmh->cmsg_type = IP_PKTINFO;
468 pki->ipi_ifindex = 0;
469 pki->ipi_spec_dst.s_addr = rqstp->rq_daddr.addr.s_addr;
470 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
471 }
472 break;
NeilBrown5a05ed72007-03-06 01:42:22 -0800473
Chuck Leverb92503b2007-02-12 00:53:36 -0800474 case AF_INET6: {
475 struct in6_pktinfo *pki = CMSG_DATA(cmh);
476
477 cmh->cmsg_level = SOL_IPV6;
478 cmh->cmsg_type = IPV6_PKTINFO;
479 pki->ipi6_ifindex = 0;
480 ipv6_addr_copy(&pki->ipi6_addr,
481 &rqstp->rq_daddr.addr6);
482 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
483 }
484 break;
Chuck Leverb92503b2007-02-12 00:53:36 -0800485 }
486 return;
487}
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489/*
490 * Generic sendto routine
491 */
492static int
493svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr)
494{
495 struct svc_sock *svsk = rqstp->rq_sock;
496 struct socket *sock = svsk->sk_sock;
497 int slen;
David S. Millerbc375ea2007-04-12 13:35:59 -0700498 union {
499 struct cmsghdr hdr;
500 long all[SVC_PKTINFO_SPACE / sizeof(long)];
501 } buffer;
502 struct cmsghdr *cmh = &buffer.hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 int len = 0;
504 int result;
505 int size;
506 struct page **ppage = xdr->pages;
507 size_t base = xdr->page_base;
508 unsigned int pglen = xdr->page_len;
509 unsigned int flags = MSG_MORE;
Chuck Leverad06e4b2007-02-12 00:53:32 -0800510 char buf[RPC_MAX_ADDRBUFLEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 slen = xdr->len;
513
514 if (rqstp->rq_prot == IPPROTO_UDP) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800515 struct msghdr msg = {
516 .msg_name = &rqstp->rq_addr,
517 .msg_namelen = rqstp->rq_addrlen,
518 .msg_control = cmh,
519 .msg_controllen = sizeof(buffer),
520 .msg_flags = MSG_MORE,
521 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Chuck Leverb92503b2007-02-12 00:53:36 -0800523 svc_set_cmsg_data(rqstp, cmh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 if (sock_sendmsg(sock, &msg, 0) < 0)
526 goto out;
527 }
528
529 /* send head */
530 if (slen == xdr->head[0].iov_len)
531 flags = 0;
NeilBrown44524352006-10-04 02:15:46 -0700532 len = kernel_sendpage(sock, rqstp->rq_respages[0], 0,
533 xdr->head[0].iov_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (len != xdr->head[0].iov_len)
535 goto out;
536 slen -= xdr->head[0].iov_len;
537 if (slen == 0)
538 goto out;
539
540 /* send page data */
541 size = PAGE_SIZE - base < pglen ? PAGE_SIZE - base : pglen;
542 while (pglen > 0) {
543 if (slen == size)
544 flags = 0;
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700545 result = kernel_sendpage(sock, *ppage, base, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (result > 0)
547 len += result;
548 if (result != size)
549 goto out;
550 slen -= size;
551 pglen -= size;
552 size = PAGE_SIZE < pglen ? PAGE_SIZE : pglen;
553 base = 0;
554 ppage++;
555 }
556 /* send tail */
557 if (xdr->tail[0].iov_len) {
NeilBrown44524352006-10-04 02:15:46 -0700558 result = kernel_sendpage(sock, rqstp->rq_respages[0],
559 ((unsigned long)xdr->tail[0].iov_base)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800560 & (PAGE_SIZE-1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 xdr->tail[0].iov_len, 0);
562
563 if (result > 0)
564 len += result;
565 }
566out:
Chuck Leverad06e4b2007-02-12 00:53:32 -0800567 dprintk("svc: socket %p sendto([%p %Zu... ], %d) = %d (addr %s)\n",
568 rqstp->rq_sock, xdr->head[0].iov_base, xdr->head[0].iov_len,
569 xdr->len, len, svc_print_addr(rqstp, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 return len;
572}
573
574/*
NeilBrown80212d52006-10-02 02:17:47 -0700575 * Report socket names for nfsdfs
576 */
577static int one_sock_name(char *buf, struct svc_sock *svsk)
578{
579 int len;
580
581 switch(svsk->sk_sk->sk_family) {
582 case AF_INET:
583 len = sprintf(buf, "ipv4 %s %u.%u.%u.%u %d\n",
584 svsk->sk_sk->sk_protocol==IPPROTO_UDP?
585 "udp" : "tcp",
586 NIPQUAD(inet_sk(svsk->sk_sk)->rcv_saddr),
587 inet_sk(svsk->sk_sk)->num);
588 break;
589 default:
590 len = sprintf(buf, "*unknown-%d*\n",
591 svsk->sk_sk->sk_family);
592 }
593 return len;
594}
595
596int
NeilBrownb41b66d2006-10-02 02:17:48 -0700597svc_sock_names(char *buf, struct svc_serv *serv, char *toclose)
NeilBrown80212d52006-10-02 02:17:47 -0700598{
NeilBrownb41b66d2006-10-02 02:17:48 -0700599 struct svc_sock *svsk, *closesk = NULL;
NeilBrown80212d52006-10-02 02:17:47 -0700600 int len = 0;
601
602 if (!serv)
603 return 0;
NeilBrownaaf68cf2007-02-08 14:20:30 -0800604 spin_lock_bh(&serv->sv_lock);
NeilBrown80212d52006-10-02 02:17:47 -0700605 list_for_each_entry(svsk, &serv->sv_permsocks, sk_list) {
606 int onelen = one_sock_name(buf+len, svsk);
NeilBrownb41b66d2006-10-02 02:17:48 -0700607 if (toclose && strcmp(toclose, buf+len) == 0)
608 closesk = svsk;
609 else
610 len += onelen;
NeilBrown80212d52006-10-02 02:17:47 -0700611 }
NeilBrownaaf68cf2007-02-08 14:20:30 -0800612 spin_unlock_bh(&serv->sv_lock);
NeilBrownb41b66d2006-10-02 02:17:48 -0700613 if (closesk)
NeilBrown5680c442006-10-04 02:15:45 -0700614 /* Should unregister with portmap, but you cannot
615 * unregister just one protocol...
616 */
NeilBrownaaf68cf2007-02-08 14:20:30 -0800617 svc_close_socket(closesk);
NeilBrown37a03472006-10-04 02:15:44 -0700618 else if (toclose)
619 return -ENOENT;
NeilBrown80212d52006-10-02 02:17:47 -0700620 return len;
621}
622EXPORT_SYMBOL(svc_sock_names);
623
624/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 * Check input queue length
626 */
627static int
628svc_recv_available(struct svc_sock *svsk)
629{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 struct socket *sock = svsk->sk_sock;
631 int avail, err;
632
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700633 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635 return (err >= 0)? avail : err;
636}
637
638/*
639 * Generic recvfrom routine.
640 */
641static int
642svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr, int buflen)
643{
Chuck Lever067d7812007-02-12 00:53:30 -0800644 struct svc_sock *svsk = rqstp->rq_sock;
Chuck Lever1ba95102007-02-12 00:53:31 -0800645 struct msghdr msg = {
646 .msg_flags = MSG_DONTWAIT,
647 };
Frank van Maarseveena9747692007-07-09 22:21:39 +0200648 struct sockaddr *sin;
Chuck Lever1ba95102007-02-12 00:53:31 -0800649 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Chuck Lever1ba95102007-02-12 00:53:31 -0800651 len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
652 msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 /* sock_recvmsg doesn't fill in the name/namelen, so we must..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 */
Chuck Lever067d7812007-02-12 00:53:30 -0800656 memcpy(&rqstp->rq_addr, &svsk->sk_remote, svsk->sk_remotelen);
657 rqstp->rq_addrlen = svsk->sk_remotelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Frank van Maarseveena9747692007-07-09 22:21:39 +0200659 /* Destination address in request is needed for binding the
660 * source address in RPC callbacks later.
661 */
662 sin = (struct sockaddr *)&svsk->sk_local;
663 switch (sin->sa_family) {
664 case AF_INET:
665 rqstp->rq_daddr.addr = ((struct sockaddr_in *)sin)->sin_addr;
666 break;
667 case AF_INET6:
668 rqstp->rq_daddr.addr6 = ((struct sockaddr_in6 *)sin)->sin6_addr;
669 break;
670 }
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
Chuck Lever1ba95102007-02-12 00:53:31 -0800673 svsk, iov[0].iov_base, iov[0].iov_len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 return len;
676}
677
678/*
679 * Set socket snd and rcv buffer lengths
680 */
681static inline void
682svc_sock_setbufsize(struct socket *sock, unsigned int snd, unsigned int rcv)
683{
684#if 0
685 mm_segment_t oldfs;
686 oldfs = get_fs(); set_fs(KERNEL_DS);
687 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
688 (char*)&snd, sizeof(snd));
689 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
690 (char*)&rcv, sizeof(rcv));
691#else
692 /* sock_setsockopt limits use to sysctl_?mem_max,
693 * which isn't acceptable. Until that is made conditional
694 * on not having CAP_SYS_RESOURCE or similar, we go direct...
695 * DaveM said I could!
696 */
697 lock_sock(sock->sk);
698 sock->sk->sk_sndbuf = snd * 2;
699 sock->sk->sk_rcvbuf = rcv * 2;
700 sock->sk->sk_userlocks |= SOCK_SNDBUF_LOCK|SOCK_RCVBUF_LOCK;
701 release_sock(sock->sk);
702#endif
703}
704/*
705 * INET callback when data has been received on the socket.
706 */
707static void
708svc_udp_data_ready(struct sock *sk, int count)
709{
Neil Brown939bb7e2005-09-13 01:25:39 -0700710 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Neil Brown939bb7e2005-09-13 01:25:39 -0700712 if (svsk) {
713 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
714 svsk, sk, count, test_bit(SK_BUSY, &svsk->sk_flags));
715 set_bit(SK_DATA, &svsk->sk_flags);
716 svc_sock_enqueue(svsk);
717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
719 wake_up_interruptible(sk->sk_sleep);
720}
721
722/*
723 * INET callback when space is newly available on the socket.
724 */
725static void
726svc_write_space(struct sock *sk)
727{
728 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
729
730 if (svsk) {
731 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
732 svsk, sk, test_bit(SK_BUSY, &svsk->sk_flags));
733 svc_sock_enqueue(svsk);
734 }
735
736 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) {
Neil Brown939bb7e2005-09-13 01:25:39 -0700737 dprintk("RPC svc_write_space: someone sleeping on %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 svsk);
739 wake_up_interruptible(sk->sk_sleep);
740 }
741}
742
NeilBrown7a37f572007-03-06 01:42:21 -0800743static inline void svc_udp_get_dest_address(struct svc_rqst *rqstp,
744 struct cmsghdr *cmh)
Chuck Lever95756482007-02-12 00:53:38 -0800745{
746 switch (rqstp->rq_sock->sk_sk->sk_family) {
747 case AF_INET: {
NeilBrown7a37f572007-03-06 01:42:21 -0800748 struct in_pktinfo *pki = CMSG_DATA(cmh);
749 rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_addr;
Chuck Lever95756482007-02-12 00:53:38 -0800750 break;
NeilBrown7a37f572007-03-06 01:42:21 -0800751 }
Chuck Lever95756482007-02-12 00:53:38 -0800752 case AF_INET6: {
NeilBrown7a37f572007-03-06 01:42:21 -0800753 struct in6_pktinfo *pki = CMSG_DATA(cmh);
754 ipv6_addr_copy(&rqstp->rq_daddr.addr6, &pki->ipi6_addr);
Chuck Lever95756482007-02-12 00:53:38 -0800755 break;
NeilBrown7a37f572007-03-06 01:42:21 -0800756 }
Chuck Lever95756482007-02-12 00:53:38 -0800757 }
Chuck Lever95756482007-02-12 00:53:38 -0800758}
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760/*
761 * Receive a datagram from a UDP socket.
762 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763static int
764svc_udp_recvfrom(struct svc_rqst *rqstp)
765{
766 struct svc_sock *svsk = rqstp->rq_sock;
767 struct svc_serv *serv = svsk->sk_server;
768 struct sk_buff *skb;
David S. Millerbc375ea2007-04-12 13:35:59 -0700769 union {
770 struct cmsghdr hdr;
771 long all[SVC_PKTINFO_SPACE / sizeof(long)];
772 } buffer;
773 struct cmsghdr *cmh = &buffer.hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 int err, len;
NeilBrown7a37f572007-03-06 01:42:21 -0800775 struct msghdr msg = {
776 .msg_name = svc_addr(rqstp),
777 .msg_control = cmh,
778 .msg_controllen = sizeof(buffer),
779 .msg_flags = MSG_DONTWAIT,
780 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if (test_and_clear_bit(SK_CHNGBUF, &svsk->sk_flags))
783 /* udp sockets need large rcvbuf as all pending
784 * requests are still in that buffer. sndbuf must
785 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700786 * for one reply per thread. We count all threads
787 * rather than threads in a particular pool, which
788 * provides an upper bound on the number of threads
789 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 */
791 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700792 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
793 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 if ((rqstp->rq_deferred = svc_deferred_dequeue(svsk))) {
796 svc_sock_received(svsk);
797 return svc_deferred_recv(rqstp);
798 }
799
NeilBrownaaf68cf2007-02-08 14:20:30 -0800800 if (test_bit(SK_CLOSE, &svsk->sk_flags)) {
801 svc_delete_socket(svsk);
802 return 0;
803 }
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 clear_bit(SK_DATA, &svsk->sk_flags);
NeilBrown05ed6902007-05-09 02:34:55 -0700806 skb = NULL;
807 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
808 0, 0, MSG_PEEK | MSG_DONTWAIT);
809 if (err >= 0)
810 skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err);
811
812 if (skb == NULL) {
813 if (err != -EAGAIN) {
814 /* possibly an icmp error */
815 dprintk("svc: recvfrom returned error %d\n", -err);
816 set_bit(SK_DATA, &svsk->sk_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
NeilBrown05ed6902007-05-09 02:34:55 -0700818 svc_sock_received(svsk);
819 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
NeilBrown7a37f572007-03-06 01:42:21 -0800821 rqstp->rq_addrlen = sizeof(rqstp->rq_addr);
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700822 if (skb->tstamp.tv64 == 0) {
823 skb->tstamp = ktime_get_real();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800824 /* Don't enable netstamp, sunrpc doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 need that much accuracy */
826 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700827 svsk->sk_sk->sk_stamp = skb->tstamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 set_bit(SK_DATA, &svsk->sk_flags); /* there may be more data... */
829
830 /*
831 * Maybe more packets - kick another thread ASAP.
832 */
833 svc_sock_received(svsk);
834
835 len = skb->len - sizeof(struct udphdr);
836 rqstp->rq_arg.len = len;
837
Chuck Lever95756482007-02-12 00:53:38 -0800838 rqstp->rq_prot = IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
NeilBrown7a37f572007-03-06 01:42:21 -0800840 if (cmh->cmsg_level != IPPROTO_IP ||
841 cmh->cmsg_type != IP_PKTINFO) {
842 if (net_ratelimit())
843 printk("rpcsvc: received unknown control message:"
844 "%d/%d\n",
845 cmh->cmsg_level, cmh->cmsg_type);
846 skb_free_datagram(svsk->sk_sk, skb);
847 return 0;
848 }
849 svc_udp_get_dest_address(rqstp, cmh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 if (skb_is_nonlinear(skb)) {
852 /* we have to copy */
853 local_bh_disable();
854 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
855 local_bh_enable();
856 /* checksum error */
857 skb_free_datagram(svsk->sk_sk, skb);
858 return 0;
859 }
860 local_bh_enable();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800861 skb_free_datagram(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 } else {
863 /* we can use it in-place */
864 rqstp->rq_arg.head[0].iov_base = skb->data + sizeof(struct udphdr);
865 rqstp->rq_arg.head[0].iov_len = len;
Herbert Xufb286bb2005-11-10 13:01:24 -0800866 if (skb_checksum_complete(skb)) {
867 skb_free_datagram(svsk->sk_sk, skb);
868 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 }
870 rqstp->rq_skbuff = skb;
871 }
872
873 rqstp->rq_arg.page_base = 0;
874 if (len <= rqstp->rq_arg.head[0].iov_len) {
875 rqstp->rq_arg.head[0].iov_len = len;
876 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700877 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 } else {
879 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700880 rqstp->rq_respages = rqstp->rq_pages + 1 +
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700881 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
883
884 if (serv->sv_stats)
885 serv->sv_stats->netudpcnt++;
886
887 return len;
888}
889
890static int
891svc_udp_sendto(struct svc_rqst *rqstp)
892{
893 int error;
894
895 error = svc_sendto(rqstp, &rqstp->rq_res);
896 if (error == -ECONNREFUSED)
897 /* ICMP error on earlier request. */
898 error = svc_sendto(rqstp, &rqstp->rq_res);
899
900 return error;
901}
902
Tom Tucker360d87382007-12-30 21:07:17 -0600903static struct svc_xprt_ops svc_udp_ops = {
904};
905
906static struct svc_xprt_class svc_udp_class = {
907 .xcl_name = "udp",
908 .xcl_ops = &svc_udp_ops,
909};
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911static void
912svc_udp_init(struct svc_sock *svsk)
913{
NeilBrown7a37f572007-03-06 01:42:21 -0800914 int one = 1;
915 mm_segment_t oldfs;
916
Tom Tucker360d87382007-12-30 21:07:17 -0600917 svc_xprt_init(&svc_udp_class, &svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
919 svsk->sk_sk->sk_write_space = svc_write_space;
920 svsk->sk_recvfrom = svc_udp_recvfrom;
921 svsk->sk_sendto = svc_udp_sendto;
922
923 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800924 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 * svc_udp_recvfrom will re-adjust if necessary
926 */
927 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700928 3 * svsk->sk_server->sv_max_mesg,
929 3 * svsk->sk_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 set_bit(SK_DATA, &svsk->sk_flags); /* might have come in before data_ready set up */
932 set_bit(SK_CHNGBUF, &svsk->sk_flags);
NeilBrown7a37f572007-03-06 01:42:21 -0800933
934 oldfs = get_fs();
935 set_fs(KERNEL_DS);
936 /* make sure we get destination address info */
937 svsk->sk_sock->ops->setsockopt(svsk->sk_sock, IPPROTO_IP, IP_PKTINFO,
938 (char __user *)&one, sizeof(one));
939 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
942/*
943 * A data_ready event on a listening socket means there's a connection
944 * pending. Do not use state_change as a substitute for it.
945 */
946static void
947svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
948{
Neil Brown939bb7e2005-09-13 01:25:39 -0700949 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700952 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Neil Brown939bb7e2005-09-13 01:25:39 -0700954 /*
955 * This callback may called twice when a new connection
956 * is established as a child socket inherits everything
957 * from a parent LISTEN socket.
958 * 1) data_ready method of the parent socket will be called
959 * when one of child sockets become ESTABLISHED.
960 * 2) data_ready method of the child socket may be called
961 * when it receives data before the socket is accepted.
962 * In case of 2, we should ignore it silently.
963 */
964 if (sk->sk_state == TCP_LISTEN) {
965 if (svsk) {
966 set_bit(SK_CONN, &svsk->sk_flags);
967 svc_sock_enqueue(svsk);
968 } else
969 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 }
Neil Brown939bb7e2005-09-13 01:25:39 -0700971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
973 wake_up_interruptible_all(sk->sk_sleep);
974}
975
976/*
977 * A state change on a connected socket means it's dying or dead.
978 */
979static void
980svc_tcp_state_change(struct sock *sk)
981{
Neil Brown939bb7e2005-09-13 01:25:39 -0700982 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700985 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Neil Brown939bb7e2005-09-13 01:25:39 -0700987 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700989 else {
990 set_bit(SK_CLOSE, &svsk->sk_flags);
991 svc_sock_enqueue(svsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
994 wake_up_interruptible_all(sk->sk_sleep);
995}
996
997static void
998svc_tcp_data_ready(struct sock *sk, int count)
999{
Neil Brown939bb7e2005-09-13 01:25:39 -07001000 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -07001003 sk, sk->sk_user_data);
1004 if (svsk) {
1005 set_bit(SK_DATA, &svsk->sk_flags);
1006 svc_sock_enqueue(svsk);
1007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
1009 wake_up_interruptible(sk->sk_sleep);
1010}
1011
Chuck Leverbcdb81a2007-02-12 00:53:37 -08001012static inline int svc_port_is_privileged(struct sockaddr *sin)
1013{
1014 switch (sin->sa_family) {
1015 case AF_INET:
1016 return ntohs(((struct sockaddr_in *)sin)->sin_port)
1017 < PROT_SOCK;
Chuck Leverbcdb81a2007-02-12 00:53:37 -08001018 case AF_INET6:
1019 return ntohs(((struct sockaddr_in6 *)sin)->sin6_port)
1020 < PROT_SOCK;
Chuck Leverbcdb81a2007-02-12 00:53:37 -08001021 default:
1022 return 0;
1023 }
1024}
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026/*
1027 * Accept a TCP connection
1028 */
1029static void
1030svc_tcp_accept(struct svc_sock *svsk)
1031{
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -08001032 struct sockaddr_storage addr;
1033 struct sockaddr *sin = (struct sockaddr *) &addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 struct svc_serv *serv = svsk->sk_server;
1035 struct socket *sock = svsk->sk_sock;
1036 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 struct svc_sock *newsvsk;
1038 int err, slen;
Chuck Leverad06e4b2007-02-12 00:53:32 -08001039 char buf[RPC_MAX_ADDRBUFLEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
1042 if (!sock)
1043 return;
1044
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001045 clear_bit(SK_CONN, &svsk->sk_flags);
1046 err = kernel_accept(sock, &newsock, O_NONBLOCK);
1047 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if (err == -ENOMEM)
1049 printk(KERN_WARNING "%s: no more sockets!\n",
1050 serv->sv_name);
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001051 else if (err != -EAGAIN && net_ratelimit())
1052 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
1053 serv->sv_name, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return;
1055 }
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 set_bit(SK_CONN, &svsk->sk_flags);
1058 svc_sock_enqueue(svsk);
1059
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -08001060 err = kernel_getpeername(newsock, sin, &slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 if (err < 0) {
1062 if (net_ratelimit())
1063 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
1064 serv->sv_name, -err);
1065 goto failed; /* aborted connection or whatever */
1066 }
1067
1068 /* Ideally, we would want to reject connections from unauthorized
Chuck Leverad06e4b2007-02-12 00:53:32 -08001069 * hosts here, but when we get encryption, the IP of the host won't
1070 * tell us anything. For now just warn about unpriv connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 */
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -08001072 if (!svc_port_is_privileged(sin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 dprintk(KERN_WARNING
Chuck Leverad06e4b2007-02-12 00:53:32 -08001074 "%s: connect from unprivileged port: %s\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001075 serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -08001076 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
Chuck Leverad06e4b2007-02-12 00:53:32 -08001078 dprintk("%s: connect from %s\n", serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -08001079 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 /* make sure that a write doesn't block forever when
1082 * low on memory
1083 */
1084 newsock->sk->sk_sndtimeo = HZ*30;
1085
Chuck Lever6b174332007-02-12 00:53:28 -08001086 if (!(newsvsk = svc_setup_socket(serv, newsock, &err,
1087 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 goto failed;
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -08001089 memcpy(&newsvsk->sk_remote, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -08001090 newsvsk->sk_remotelen = slen;
Frank van Maarseveena9747692007-07-09 22:21:39 +02001091 err = kernel_getsockname(newsock, sin, &slen);
1092 if (unlikely(err < 0)) {
1093 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
1094 slen = offsetof(struct sockaddr, sa_data);
1095 }
1096 memcpy(&newsvsk->sk_local, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -08001097
NeilBrowne79eff12007-02-12 00:53:30 -08001098 svc_sock_received(newsvsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 /* make sure that we don't have too many active connections.
1101 * If we have, something must be dropped.
1102 *
1103 * There's no point in trying to do random drop here for
1104 * DoS prevention. The NFS clients does 1 reconnect in 15
1105 * seconds. An attacker can easily beat that.
1106 *
1107 * The only somewhat efficient mechanism would be if drop
1108 * old connections from the same IP first. But right now
1109 * we don't even record the client IP in svc_sock.
1110 */
1111 if (serv->sv_tmpcnt > (serv->sv_nrthreads+3)*20) {
1112 struct svc_sock *svsk = NULL;
1113 spin_lock_bh(&serv->sv_lock);
1114 if (!list_empty(&serv->sv_tempsocks)) {
1115 if (net_ratelimit()) {
1116 /* Try to help the admin */
1117 printk(KERN_NOTICE "%s: too many open TCP "
1118 "sockets, consider increasing the "
1119 "number of nfsd threads\n",
1120 serv->sv_name);
Chuck Leverad06e4b2007-02-12 00:53:32 -08001121 printk(KERN_NOTICE
1122 "%s: last TCP connect from %s\n",
Wolfgang Walter9db619e2007-09-20 15:51:46 -04001123 serv->sv_name, __svc_print_addr(sin,
1124 buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126 /*
1127 * Always select the oldest socket. It's not fair,
1128 * but so is life
1129 */
1130 svsk = list_entry(serv->sv_tempsocks.prev,
1131 struct svc_sock,
1132 sk_list);
1133 set_bit(SK_CLOSE, &svsk->sk_flags);
Greg Banksc45c3572006-10-02 02:17:54 -07001134 atomic_inc(&svsk->sk_inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 }
1136 spin_unlock_bh(&serv->sv_lock);
1137
1138 if (svsk) {
1139 svc_sock_enqueue(svsk);
1140 svc_sock_put(svsk);
1141 }
1142
1143 }
1144
1145 if (serv->sv_stats)
1146 serv->sv_stats->nettcpconn++;
1147
1148 return;
1149
1150failed:
1151 sock_release(newsock);
1152 return;
1153}
1154
1155/*
1156 * Receive data from a TCP socket.
1157 */
1158static int
1159svc_tcp_recvfrom(struct svc_rqst *rqstp)
1160{
1161 struct svc_sock *svsk = rqstp->rq_sock;
1162 struct svc_serv *serv = svsk->sk_server;
1163 int len;
NeilBrown3cc03b12006-10-04 02:15:47 -07001164 struct kvec *vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 int pnum, vlen;
1166
1167 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
1168 svsk, test_bit(SK_DATA, &svsk->sk_flags),
1169 test_bit(SK_CONN, &svsk->sk_flags),
1170 test_bit(SK_CLOSE, &svsk->sk_flags));
1171
1172 if ((rqstp->rq_deferred = svc_deferred_dequeue(svsk))) {
1173 svc_sock_received(svsk);
1174 return svc_deferred_recv(rqstp);
1175 }
1176
1177 if (test_bit(SK_CLOSE, &svsk->sk_flags)) {
1178 svc_delete_socket(svsk);
1179 return 0;
1180 }
1181
NeilBrown1a047062006-10-19 23:29:13 -07001182 if (svsk->sk_sk->sk_state == TCP_LISTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 svc_tcp_accept(svsk);
1184 svc_sock_received(svsk);
1185 return 0;
1186 }
1187
1188 if (test_and_clear_bit(SK_CHNGBUF, &svsk->sk_flags))
1189 /* sndbuf needs to have room for one request
1190 * per thread, otherwise we can stall even when the
1191 * network isn't a bottleneck.
Greg Banks3262c812006-10-02 02:17:58 -07001192 *
1193 * We count all threads rather than threads in a
1194 * particular pool, which provides an upper bound
1195 * on the number of threads which will access the socket.
1196 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 * rcvbuf just needs to be able to hold a few requests.
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001198 * Normally they will be removed from the queue
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 * as soon a a complete request arrives.
1200 */
1201 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -07001202 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
1203 3 * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 clear_bit(SK_DATA, &svsk->sk_flags);
1206
1207 /* Receive data. If we haven't got the record length yet, get
1208 * the next four bytes. Otherwise try to gobble up as much as
1209 * possible up to the complete record length.
1210 */
1211 if (svsk->sk_tcplen < 4) {
1212 unsigned long want = 4 - svsk->sk_tcplen;
1213 struct kvec iov;
1214
1215 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
1216 iov.iov_len = want;
1217 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
1218 goto error;
1219 svsk->sk_tcplen += len;
1220
1221 if (len < want) {
1222 dprintk("svc: short recvfrom while reading record length (%d of %lu)\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001223 len, want);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 svc_sock_received(svsk);
1225 return -EAGAIN; /* record header not complete */
1226 }
1227
1228 svsk->sk_reclen = ntohl(svsk->sk_reclen);
1229 if (!(svsk->sk_reclen & 0x80000000)) {
1230 /* FIXME: technically, a record can be fragmented,
1231 * and non-terminal fragments will not have the top
1232 * bit set in the fragment length header.
1233 * But apparently no known nfs clients send fragmented
1234 * records. */
NeilBrown34e9a632007-01-29 13:19:52 -08001235 if (net_ratelimit())
1236 printk(KERN_NOTICE "RPC: bad TCP reclen 0x%08lx"
1237 " (non-terminal)\n",
1238 (unsigned long) svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 goto err_delete;
1240 }
1241 svsk->sk_reclen &= 0x7fffffff;
1242 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
NeilBrownc6b0a9f2006-10-06 00:44:05 -07001243 if (svsk->sk_reclen > serv->sv_max_mesg) {
NeilBrown34e9a632007-01-29 13:19:52 -08001244 if (net_ratelimit())
1245 printk(KERN_NOTICE "RPC: bad TCP reclen 0x%08lx"
1246 " (large)\n",
1247 (unsigned long) svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 goto err_delete;
1249 }
1250 }
1251
1252 /* Check whether enough data is available */
1253 len = svc_recv_available(svsk);
1254 if (len < 0)
1255 goto error;
1256
1257 if (len < svsk->sk_reclen) {
1258 dprintk("svc: incomplete TCP record (%d of %d)\n",
1259 len, svsk->sk_reclen);
1260 svc_sock_received(svsk);
1261 return -EAGAIN; /* record not complete */
1262 }
1263 len = svsk->sk_reclen;
1264 set_bit(SK_DATA, &svsk->sk_flags);
1265
NeilBrown3cc03b12006-10-04 02:15:47 -07001266 vec = rqstp->rq_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 vec[0] = rqstp->rq_arg.head[0];
1268 vlen = PAGE_SIZE;
1269 pnum = 1;
1270 while (vlen < len) {
NeilBrown44524352006-10-04 02:15:46 -07001271 vec[pnum].iov_base = page_address(rqstp->rq_pages[pnum]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 vec[pnum].iov_len = PAGE_SIZE;
1273 pnum++;
1274 vlen += PAGE_SIZE;
1275 }
NeilBrown44524352006-10-04 02:15:46 -07001276 rqstp->rq_respages = &rqstp->rq_pages[pnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 /* Now receive data */
1279 len = svc_recvfrom(rqstp, vec, pnum, len);
1280 if (len < 0)
1281 goto error;
1282
1283 dprintk("svc: TCP complete record (%d bytes)\n", len);
1284 rqstp->rq_arg.len = len;
1285 rqstp->rq_arg.page_base = 0;
1286 if (len <= rqstp->rq_arg.head[0].iov_len) {
1287 rqstp->rq_arg.head[0].iov_len = len;
1288 rqstp->rq_arg.page_len = 0;
1289 } else {
1290 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
1291 }
1292
1293 rqstp->rq_skbuff = NULL;
1294 rqstp->rq_prot = IPPROTO_TCP;
1295
1296 /* Reset TCP read info */
1297 svsk->sk_reclen = 0;
1298 svsk->sk_tcplen = 0;
1299
1300 svc_sock_received(svsk);
1301 if (serv->sv_stats)
1302 serv->sv_stats->nettcpcnt++;
1303
1304 return len;
1305
1306 err_delete:
1307 svc_delete_socket(svsk);
1308 return -EAGAIN;
1309
1310 error:
1311 if (len == -EAGAIN) {
1312 dprintk("RPC: TCP recvfrom got EAGAIN\n");
1313 svc_sock_received(svsk);
1314 } else {
1315 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
1316 svsk->sk_server->sv_name, -len);
Olaf Kirch93fbf1a2006-01-06 00:19:56 -08001317 goto err_delete;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 }
1319
1320 return len;
1321}
1322
1323/*
1324 * Send out data on TCP socket.
1325 */
1326static int
1327svc_tcp_sendto(struct svc_rqst *rqstp)
1328{
1329 struct xdr_buf *xbufp = &rqstp->rq_res;
1330 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001331 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 /* Set up the first element of the reply kvec.
1334 * Any other kvecs that may be in use have been taken
1335 * care of by the server implementation itself.
1336 */
1337 reclen = htonl(0x80000000|((xbufp->len ) - 4));
1338 memcpy(xbufp->head[0].iov_base, &reclen, 4);
1339
1340 if (test_bit(SK_DEAD, &rqstp->rq_sock->sk_flags))
1341 return -ENOTCONN;
1342
1343 sent = svc_sendto(rqstp, &rqstp->rq_res);
1344 if (sent != xbufp->len) {
1345 printk(KERN_NOTICE "rpc-srv/tcp: %s: %s %d when sending %d bytes - shutting down socket\n",
1346 rqstp->rq_sock->sk_server->sv_name,
1347 (sent<0)?"got error":"sent only",
1348 sent, xbufp->len);
NeilBrownaaf68cf2007-02-08 14:20:30 -08001349 set_bit(SK_CLOSE, &rqstp->rq_sock->sk_flags);
1350 svc_sock_enqueue(rqstp->rq_sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 sent = -EAGAIN;
1352 }
1353 return sent;
1354}
1355
Tom Tucker360d87382007-12-30 21:07:17 -06001356static struct svc_xprt_ops svc_tcp_ops = {
1357};
1358
1359static struct svc_xprt_class svc_tcp_class = {
1360 .xcl_name = "tcp",
1361 .xcl_ops = &svc_tcp_ops,
1362};
1363
1364void svc_init_xprt_sock(void)
1365{
1366 svc_reg_xprt_class(&svc_tcp_class);
1367 svc_reg_xprt_class(&svc_udp_class);
1368}
1369
1370void svc_cleanup_xprt_sock(void)
1371{
1372 svc_unreg_xprt_class(&svc_tcp_class);
1373 svc_unreg_xprt_class(&svc_udp_class);
1374}
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376static void
1377svc_tcp_init(struct svc_sock *svsk)
1378{
1379 struct sock *sk = svsk->sk_sk;
1380 struct tcp_sock *tp = tcp_sk(sk);
1381
Tom Tucker360d87382007-12-30 21:07:17 -06001382 svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 svsk->sk_recvfrom = svc_tcp_recvfrom;
1384 svsk->sk_sendto = svc_tcp_sendto;
1385
1386 if (sk->sk_state == TCP_LISTEN) {
1387 dprintk("setting up TCP socket for listening\n");
1388 sk->sk_data_ready = svc_tcp_listen_data_ready;
1389 set_bit(SK_CONN, &svsk->sk_flags);
1390 } else {
1391 dprintk("setting up TCP socket for reading\n");
1392 sk->sk_state_change = svc_tcp_state_change;
1393 sk->sk_data_ready = svc_tcp_data_ready;
1394 sk->sk_write_space = svc_write_space;
1395
1396 svsk->sk_reclen = 0;
1397 svsk->sk_tcplen = 0;
1398
1399 tp->nonagle = 1; /* disable Nagle's algorithm */
1400
1401 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001402 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 * svc_tcp_recvfrom will re-adjust if necessary
1404 */
1405 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -07001406 3 * svsk->sk_server->sv_max_mesg,
1407 3 * svsk->sk_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409 set_bit(SK_CHNGBUF, &svsk->sk_flags);
1410 set_bit(SK_DATA, &svsk->sk_flags);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001411 if (sk->sk_state != TCP_ESTABLISHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 set_bit(SK_CLOSE, &svsk->sk_flags);
1413 }
1414}
1415
1416void
1417svc_sock_update_bufs(struct svc_serv *serv)
1418{
1419 /*
1420 * The number of server threads has changed. Update
1421 * rcvbuf and sndbuf accordingly on all sockets
1422 */
1423 struct list_head *le;
1424
1425 spin_lock_bh(&serv->sv_lock);
1426 list_for_each(le, &serv->sv_permsocks) {
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001427 struct svc_sock *svsk =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 list_entry(le, struct svc_sock, sk_list);
1429 set_bit(SK_CHNGBUF, &svsk->sk_flags);
1430 }
1431 list_for_each(le, &serv->sv_tempsocks) {
1432 struct svc_sock *svsk =
1433 list_entry(le, struct svc_sock, sk_list);
1434 set_bit(SK_CHNGBUF, &svsk->sk_flags);
1435 }
1436 spin_unlock_bh(&serv->sv_lock);
1437}
1438
1439/*
Greg Banks3262c812006-10-02 02:17:58 -07001440 * Receive the next request on any socket. This code is carefully
1441 * organised not to touch any cachelines in the shared svc_serv
1442 * structure, only cachelines in the local svc_pool.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 */
1444int
NeilBrown6fb2b472006-10-02 02:17:50 -07001445svc_recv(struct svc_rqst *rqstp, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446{
Chuck Lever27459f02007-02-12 00:53:34 -08001447 struct svc_sock *svsk = NULL;
NeilBrown6fb2b472006-10-02 02:17:50 -07001448 struct svc_serv *serv = rqstp->rq_server;
Greg Banks3262c812006-10-02 02:17:58 -07001449 struct svc_pool *pool = rqstp->rq_pool;
NeilBrown44524352006-10-04 02:15:46 -07001450 int len, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 int pages;
1452 struct xdr_buf *arg;
1453 DECLARE_WAITQUEUE(wait, current);
1454
1455 dprintk("svc: server %p waiting for data (to = %ld)\n",
1456 rqstp, timeout);
1457
1458 if (rqstp->rq_sock)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001459 printk(KERN_ERR
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 "svc_recv: service %p, socket not NULL!\n",
1461 rqstp);
1462 if (waitqueue_active(&rqstp->rq_wait))
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001463 printk(KERN_ERR
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 "svc_recv: service %p, wait queue active!\n",
1465 rqstp);
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
1468 /* now allocate needed pages. If we get a failure, sleep briefly */
NeilBrownc6b0a9f2006-10-06 00:44:05 -07001469 pages = (serv->sv_max_mesg + PAGE_SIZE) / PAGE_SIZE;
NeilBrown44524352006-10-04 02:15:46 -07001470 for (i=0; i < pages ; i++)
1471 while (rqstp->rq_pages[i] == NULL) {
1472 struct page *p = alloc_page(GFP_KERNEL);
1473 if (!p)
1474 schedule_timeout_uninterruptible(msecs_to_jiffies(500));
1475 rqstp->rq_pages[i] = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 }
NeilBrown250f3912007-01-26 00:56:59 -08001477 rqstp->rq_pages[i++] = NULL; /* this might be seen in nfs_read_actor */
1478 BUG_ON(pages >= RPCSVC_MAXPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 /* Make arg->head point to first page and arg->pages point to rest */
1481 arg = &rqstp->rq_arg;
NeilBrown44524352006-10-04 02:15:46 -07001482 arg->head[0].iov_base = page_address(rqstp->rq_pages[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 arg->head[0].iov_len = PAGE_SIZE;
NeilBrown44524352006-10-04 02:15:46 -07001484 arg->pages = rqstp->rq_pages + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 arg->page_base = 0;
1486 /* save at least one page for response */
1487 arg->page_len = (pages-2)*PAGE_SIZE;
1488 arg->len = (pages-1)*PAGE_SIZE;
1489 arg->tail[0].iov_len = 0;
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001490
1491 try_to_freeze();
NeilBrown1887b932005-11-15 00:09:10 -08001492 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 if (signalled())
1494 return -EINTR;
1495
Greg Banks3262c812006-10-02 02:17:58 -07001496 spin_lock_bh(&pool->sp_lock);
1497 if ((svsk = svc_sock_dequeue(pool)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 rqstp->rq_sock = svsk;
Greg Banksc45c3572006-10-02 02:17:54 -07001499 atomic_inc(&svsk->sk_inuse);
NeilBrownc6b0a9f2006-10-06 00:44:05 -07001500 rqstp->rq_reserved = serv->sv_max_mesg;
Greg Banks5685f0f2006-10-02 02:17:56 -07001501 atomic_add(rqstp->rq_reserved, &svsk->sk_reserved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 } else {
1503 /* No data pending. Go to sleep */
Greg Banks3262c812006-10-02 02:17:58 -07001504 svc_thread_enqueue(pool, rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
1506 /*
1507 * We have to be able to interrupt this wait
1508 * to bring down the daemons ...
1509 */
1510 set_current_state(TASK_INTERRUPTIBLE);
1511 add_wait_queue(&rqstp->rq_wait, &wait);
Greg Banks3262c812006-10-02 02:17:58 -07001512 spin_unlock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
1514 schedule_timeout(timeout);
1515
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07001516 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Greg Banks3262c812006-10-02 02:17:58 -07001518 spin_lock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 remove_wait_queue(&rqstp->rq_wait, &wait);
1520
1521 if (!(svsk = rqstp->rq_sock)) {
Greg Banks3262c812006-10-02 02:17:58 -07001522 svc_thread_dequeue(pool, rqstp);
1523 spin_unlock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 dprintk("svc: server %p, no data yet\n", rqstp);
1525 return signalled()? -EINTR : -EAGAIN;
1526 }
1527 }
Greg Banks3262c812006-10-02 02:17:58 -07001528 spin_unlock_bh(&pool->sp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Greg Banks3262c812006-10-02 02:17:58 -07001530 dprintk("svc: server %p, pool %u, socket %p, inuse=%d\n",
1531 rqstp, pool->sp_id, svsk, atomic_read(&svsk->sk_inuse));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 len = svsk->sk_recvfrom(rqstp);
1533 dprintk("svc: got len=%d\n", len);
1534
1535 /* No data, incomplete (TCP) read, or accept() */
1536 if (len == 0 || len == -EAGAIN) {
1537 rqstp->rq_res.len = 0;
1538 svc_sock_release(rqstp);
1539 return -EAGAIN;
1540 }
1541 svsk->sk_lastrecv = get_seconds();
Greg Banks36bdfc82006-10-02 02:17:54 -07001542 clear_bit(SK_OLD, &svsk->sk_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Chuck Leverbcdb81a2007-02-12 00:53:37 -08001544 rqstp->rq_secure = svc_port_is_privileged(svc_addr(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 rqstp->rq_chandle.defer = svc_defer;
1546
1547 if (serv->sv_stats)
1548 serv->sv_stats->netcnt++;
1549 return len;
1550}
1551
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001552/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 * Drop request
1554 */
1555void
1556svc_drop(struct svc_rqst *rqstp)
1557{
1558 dprintk("svc: socket %p dropped request\n", rqstp->rq_sock);
1559 svc_sock_release(rqstp);
1560}
1561
1562/*
1563 * Return reply to client.
1564 */
1565int
1566svc_send(struct svc_rqst *rqstp)
1567{
1568 struct svc_sock *svsk;
1569 int len;
1570 struct xdr_buf *xb;
1571
1572 if ((svsk = rqstp->rq_sock) == NULL) {
1573 printk(KERN_WARNING "NULL socket pointer in %s:%d\n",
1574 __FILE__, __LINE__);
1575 return -EFAULT;
1576 }
1577
1578 /* release the receive skb before sending the reply */
1579 svc_release_skb(rqstp);
1580
1581 /* calculate over-all length */
1582 xb = & rqstp->rq_res;
1583 xb->len = xb->head[0].iov_len +
1584 xb->page_len +
1585 xb->tail[0].iov_len;
1586
Ingo Molnar57b47a52006-03-20 22:35:41 -08001587 /* Grab svsk->sk_mutex to serialize outgoing data. */
1588 mutex_lock(&svsk->sk_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 if (test_bit(SK_DEAD, &svsk->sk_flags))
1590 len = -ENOTCONN;
1591 else
1592 len = svsk->sk_sendto(rqstp);
Ingo Molnar57b47a52006-03-20 22:35:41 -08001593 mutex_unlock(&svsk->sk_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 svc_sock_release(rqstp);
1595
1596 if (len == -ECONNREFUSED || len == -ENOTCONN || len == -EAGAIN)
1597 return 0;
1598 return len;
1599}
1600
1601/*
Greg Banks36bdfc82006-10-02 02:17:54 -07001602 * Timer function to close old temporary sockets, using
1603 * a mark-and-sweep algorithm.
1604 */
1605static void
1606svc_age_temp_sockets(unsigned long closure)
1607{
1608 struct svc_serv *serv = (struct svc_serv *)closure;
1609 struct svc_sock *svsk;
1610 struct list_head *le, *next;
1611 LIST_HEAD(to_be_aged);
1612
1613 dprintk("svc_age_temp_sockets\n");
1614
1615 if (!spin_trylock_bh(&serv->sv_lock)) {
1616 /* busy, try again 1 sec later */
1617 dprintk("svc_age_temp_sockets: busy\n");
1618 mod_timer(&serv->sv_temptimer, jiffies + HZ);
1619 return;
1620 }
1621
1622 list_for_each_safe(le, next, &serv->sv_tempsocks) {
1623 svsk = list_entry(le, struct svc_sock, sk_list);
1624
1625 if (!test_and_set_bit(SK_OLD, &svsk->sk_flags))
1626 continue;
Neil Brown7a1fa062007-09-14 10:28:08 -04001627 if (atomic_read(&svsk->sk_inuse) > 1 || test_bit(SK_BUSY, &svsk->sk_flags))
Greg Banks36bdfc82006-10-02 02:17:54 -07001628 continue;
Greg Banksc45c3572006-10-02 02:17:54 -07001629 atomic_inc(&svsk->sk_inuse);
Greg Banks36bdfc82006-10-02 02:17:54 -07001630 list_move(le, &to_be_aged);
1631 set_bit(SK_CLOSE, &svsk->sk_flags);
1632 set_bit(SK_DETACHED, &svsk->sk_flags);
1633 }
1634 spin_unlock_bh(&serv->sv_lock);
1635
1636 while (!list_empty(&to_be_aged)) {
1637 le = to_be_aged.next;
1638 /* fiddling the sk_list node is safe 'cos we're SK_DETACHED */
1639 list_del_init(le);
1640 svsk = list_entry(le, struct svc_sock, sk_list);
1641
1642 dprintk("queuing svsk %p for closing, %lu seconds old\n",
1643 svsk, get_seconds() - svsk->sk_lastrecv);
1644
1645 /* a thread will dequeue and close it soon */
1646 svc_sock_enqueue(svsk);
1647 svc_sock_put(svsk);
1648 }
1649
1650 mod_timer(&serv->sv_temptimer, jiffies + svc_conn_age_period * HZ);
1651}
1652
1653/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 * Initialize socket for RPC use and create svc_sock struct
1655 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1656 */
Chuck Lever6b174332007-02-12 00:53:28 -08001657static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1658 struct socket *sock,
1659 int *errp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
1661 struct svc_sock *svsk;
1662 struct sock *inet;
Chuck Lever6b174332007-02-12 00:53:28 -08001663 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
1664 int is_temporary = flags & SVC_SOCK_TEMPORARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
1666 dprintk("svc: svc_setup_socket %p\n", sock);
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001667 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 *errp = -ENOMEM;
1669 return NULL;
1670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
1672 inet = sock->sk;
1673
1674 /* Register socket with portmapper */
1675 if (*errp >= 0 && pmap_register)
1676 *errp = svc_register(serv, inet->sk_protocol,
1677 ntohs(inet_sk(inet)->sport));
1678
1679 if (*errp < 0) {
1680 kfree(svsk);
1681 return NULL;
1682 }
1683
1684 set_bit(SK_BUSY, &svsk->sk_flags);
1685 inet->sk_user_data = svsk;
1686 svsk->sk_sock = sock;
1687 svsk->sk_sk = inet;
1688 svsk->sk_ostate = inet->sk_state_change;
1689 svsk->sk_odata = inet->sk_data_ready;
1690 svsk->sk_owspace = inet->sk_write_space;
1691 svsk->sk_server = serv;
NeilBrownaaf68cf2007-02-08 14:20:30 -08001692 atomic_set(&svsk->sk_inuse, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 svsk->sk_lastrecv = get_seconds();
NeilBrown7ac1bea2007-05-09 02:34:48 -07001694 spin_lock_init(&svsk->sk_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 INIT_LIST_HEAD(&svsk->sk_deferred);
1696 INIT_LIST_HEAD(&svsk->sk_ready);
Ingo Molnar57b47a52006-03-20 22:35:41 -08001697 mutex_init(&svsk->sk_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699 /* Initialize the socket */
1700 if (sock->type == SOCK_DGRAM)
1701 svc_udp_init(svsk);
1702 else
1703 svc_tcp_init(svsk);
1704
1705 spin_lock_bh(&serv->sv_lock);
Chuck Lever6b174332007-02-12 00:53:28 -08001706 if (is_temporary) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 set_bit(SK_TEMP, &svsk->sk_flags);
1708 list_add(&svsk->sk_list, &serv->sv_tempsocks);
1709 serv->sv_tmpcnt++;
Greg Banks36bdfc82006-10-02 02:17:54 -07001710 if (serv->sv_temptimer.function == NULL) {
1711 /* setup timer to age temp sockets */
1712 setup_timer(&serv->sv_temptimer, svc_age_temp_sockets,
1713 (unsigned long)serv);
1714 mod_timer(&serv->sv_temptimer,
1715 jiffies + svc_conn_age_period * HZ);
1716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 } else {
1718 clear_bit(SK_TEMP, &svsk->sk_flags);
1719 list_add(&svsk->sk_list, &serv->sv_permsocks);
1720 }
1721 spin_unlock_bh(&serv->sv_lock);
1722
1723 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1724 svsk, svsk->sk_sk);
1725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 return svsk;
1727}
1728
NeilBrownb41b66d2006-10-02 02:17:48 -07001729int svc_addsock(struct svc_serv *serv,
1730 int fd,
1731 char *name_return,
1732 int *proto)
1733{
1734 int err = 0;
1735 struct socket *so = sockfd_lookup(fd, &err);
1736 struct svc_sock *svsk = NULL;
1737
1738 if (!so)
1739 return err;
1740 if (so->sk->sk_family != AF_INET)
1741 err = -EAFNOSUPPORT;
1742 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1743 so->sk->sk_protocol != IPPROTO_UDP)
1744 err = -EPROTONOSUPPORT;
1745 else if (so->state > SS_UNCONNECTED)
1746 err = -EISCONN;
1747 else {
Chuck Lever6b174332007-02-12 00:53:28 -08001748 svsk = svc_setup_socket(serv, so, &err, SVC_SOCK_DEFAULTS);
NeilBrowne79eff12007-02-12 00:53:30 -08001749 if (svsk) {
1750 svc_sock_received(svsk);
NeilBrownb41b66d2006-10-02 02:17:48 -07001751 err = 0;
NeilBrowne79eff12007-02-12 00:53:30 -08001752 }
NeilBrownb41b66d2006-10-02 02:17:48 -07001753 }
1754 if (err) {
1755 sockfd_put(so);
1756 return err;
1757 }
1758 if (proto) *proto = so->sk->sk_protocol;
1759 return one_sock_name(name_return, svsk);
1760}
1761EXPORT_SYMBOL_GPL(svc_addsock);
1762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763/*
1764 * Create socket for RPC service.
1765 */
Chuck Lever6b174332007-02-12 00:53:28 -08001766static int svc_create_socket(struct svc_serv *serv, int protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001767 struct sockaddr *sin, int len, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768{
1769 struct svc_sock *svsk;
1770 struct socket *sock;
1771 int error;
1772 int type;
Chuck Leverad06e4b2007-02-12 00:53:32 -08001773 char buf[RPC_MAX_ADDRBUFLEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Chuck Leverad06e4b2007-02-12 00:53:32 -08001775 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1776 serv->sv_program->pg_name, protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001777 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1780 printk(KERN_WARNING "svc: only UDP and TCP "
1781 "sockets supported\n");
1782 return -EINVAL;
1783 }
1784 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1785
Chuck Lever77f1f672007-02-12 00:53:39 -08001786 error = sock_create_kern(sin->sa_family, type, protocol, &sock);
1787 if (error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 return error;
1789
Peter Zijlstraed075362006-12-06 20:35:24 -08001790 svc_reclassify_socket(sock);
1791
Eric Sesterhenn18114742006-09-28 14:37:07 -07001792 if (type == SOCK_STREAM)
Chuck Lever77f1f672007-02-12 00:53:39 -08001793 sock->sk->sk_reuse = 1; /* allow address reuse */
1794 error = kernel_bind(sock, sin, len);
Eric Sesterhenn18114742006-09-28 14:37:07 -07001795 if (error < 0)
1796 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001799 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 goto bummer;
1801 }
1802
NeilBrowne79eff12007-02-12 00:53:30 -08001803 if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) {
1804 svc_sock_received(svsk);
Chuck Lever6b174332007-02-12 00:53:28 -08001805 return ntohs(inet_sk(svsk->sk_sk)->sport);
NeilBrowne79eff12007-02-12 00:53:30 -08001806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808bummer:
1809 dprintk("svc: svc_create_socket error = %d\n", -error);
1810 sock_release(sock);
1811 return error;
1812}
1813
1814/*
1815 * Remove a dead socket
1816 */
NeilBrownaaf68cf2007-02-08 14:20:30 -08001817static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818svc_delete_socket(struct svc_sock *svsk)
1819{
1820 struct svc_serv *serv;
1821 struct sock *sk;
1822
1823 dprintk("svc: svc_delete_socket(%p)\n", svsk);
1824
1825 serv = svsk->sk_server;
1826 sk = svsk->sk_sk;
1827
1828 sk->sk_state_change = svsk->sk_ostate;
1829 sk->sk_data_ready = svsk->sk_odata;
1830 sk->sk_write_space = svsk->sk_owspace;
1831
1832 spin_lock_bh(&serv->sv_lock);
1833
Greg Banks36bdfc82006-10-02 02:17:54 -07001834 if (!test_and_set_bit(SK_DETACHED, &svsk->sk_flags))
1835 list_del_init(&svsk->sk_list);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001836 /*
Greg Banks3262c812006-10-02 02:17:58 -07001837 * We used to delete the svc_sock from whichever list
1838 * it's sk_ready node was on, but we don't actually
1839 * need to. This is because the only time we're called
1840 * while still attached to a queue, the queue itself
1841 * is about to be destroyed (in svc_destroy).
1842 */
NeilBrownaaf68cf2007-02-08 14:20:30 -08001843 if (!test_and_set_bit(SK_DEAD, &svsk->sk_flags)) {
1844 BUG_ON(atomic_read(&svsk->sk_inuse)<2);
1845 atomic_dec(&svsk->sk_inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 if (test_bit(SK_TEMP, &svsk->sk_flags))
1847 serv->sv_tmpcnt--;
NeilBrownaaf68cf2007-02-08 14:20:30 -08001848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Neil Brownd6740df2006-10-29 22:46:45 -08001850 spin_unlock_bh(&serv->sv_lock);
NeilBrownaaf68cf2007-02-08 14:20:30 -08001851}
1852
NeilBrowncda1fd42007-03-06 01:42:22 -08001853static void svc_close_socket(struct svc_sock *svsk)
NeilBrownaaf68cf2007-02-08 14:20:30 -08001854{
1855 set_bit(SK_CLOSE, &svsk->sk_flags);
1856 if (test_and_set_bit(SK_BUSY, &svsk->sk_flags))
1857 /* someone else will have to effect the close */
1858 return;
1859
1860 atomic_inc(&svsk->sk_inuse);
1861 svc_delete_socket(svsk);
1862 clear_bit(SK_BUSY, &svsk->sk_flags);
Neil Brownd6740df2006-10-29 22:46:45 -08001863 svc_sock_put(svsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864}
1865
NeilBrowncda1fd42007-03-06 01:42:22 -08001866void svc_force_close_socket(struct svc_sock *svsk)
1867{
1868 set_bit(SK_CLOSE, &svsk->sk_flags);
1869 if (test_bit(SK_BUSY, &svsk->sk_flags)) {
1870 /* Waiting to be processed, but no threads left,
1871 * So just remove it from the waiting list
1872 */
1873 list_del_init(&svsk->sk_ready);
1874 clear_bit(SK_BUSY, &svsk->sk_flags);
1875 }
1876 svc_close_socket(svsk);
1877}
1878
Chuck Lever6b174332007-02-12 00:53:28 -08001879/**
1880 * svc_makesock - Make a socket for nfsd and lockd
1881 * @serv: RPC server structure
1882 * @protocol: transport protocol to use
1883 * @port: port to use
Chuck Lever482fb942007-02-12 00:53:29 -08001884 * @flags: requested socket characteristics
Chuck Lever6b174332007-02-12 00:53:28 -08001885 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 */
Chuck Lever482fb942007-02-12 00:53:29 -08001887int svc_makesock(struct svc_serv *serv, int protocol, unsigned short port,
1888 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889{
Chuck Lever6b174332007-02-12 00:53:28 -08001890 struct sockaddr_in sin = {
1891 .sin_family = AF_INET,
1892 .sin_addr.s_addr = INADDR_ANY,
1893 .sin_port = htons(port),
1894 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
1896 dprintk("svc: creating socket proto = %d\n", protocol);
Chuck Lever77f1f672007-02-12 00:53:39 -08001897 return svc_create_socket(serv, protocol, (struct sockaddr *) &sin,
1898 sizeof(sin), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899}
1900
1901/*
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001902 * Handle defer and revisit of requests
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 */
1904
1905static void svc_revisit(struct cache_deferred_req *dreq, int too_many)
1906{
1907 struct svc_deferred_req *dr = container_of(dreq, struct svc_deferred_req, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 struct svc_sock *svsk;
1909
1910 if (too_many) {
1911 svc_sock_put(dr->svsk);
1912 kfree(dr);
1913 return;
1914 }
1915 dprintk("revisit queued\n");
1916 svsk = dr->svsk;
1917 dr->svsk = NULL;
NeilBrown7ac1bea2007-05-09 02:34:48 -07001918 spin_lock(&svsk->sk_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 list_add(&dr->handle.recent, &svsk->sk_deferred);
NeilBrown7ac1bea2007-05-09 02:34:48 -07001920 spin_unlock(&svsk->sk_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 set_bit(SK_DEFERRED, &svsk->sk_flags);
1922 svc_sock_enqueue(svsk);
1923 svc_sock_put(svsk);
1924}
1925
1926static struct cache_deferred_req *
1927svc_defer(struct cache_req *req)
1928{
1929 struct svc_rqst *rqstp = container_of(req, struct svc_rqst, rq_chandle);
1930 int size = sizeof(struct svc_deferred_req) + (rqstp->rq_arg.len);
1931 struct svc_deferred_req *dr;
1932
1933 if (rqstp->rq_arg.page_len)
1934 return NULL; /* if more than a page, give up FIXME */
1935 if (rqstp->rq_deferred) {
1936 dr = rqstp->rq_deferred;
1937 rqstp->rq_deferred = NULL;
1938 } else {
1939 int skip = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len;
1940 /* FIXME maybe discard if size too large */
1941 dr = kmalloc(size, GFP_KERNEL);
1942 if (dr == NULL)
1943 return NULL;
1944
1945 dr->handle.owner = rqstp->rq_server;
1946 dr->prot = rqstp->rq_prot;
Chuck Lever24422222007-02-12 00:53:33 -08001947 memcpy(&dr->addr, &rqstp->rq_addr, rqstp->rq_addrlen);
1948 dr->addrlen = rqstp->rq_addrlen;
J. Bruce Fields1918e342006-01-18 17:43:16 -08001949 dr->daddr = rqstp->rq_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 dr->argslen = rqstp->rq_arg.len >> 2;
1951 memcpy(dr->args, rqstp->rq_arg.head[0].iov_base-skip, dr->argslen<<2);
1952 }
Greg Banksc45c3572006-10-02 02:17:54 -07001953 atomic_inc(&rqstp->rq_sock->sk_inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 dr->svsk = rqstp->rq_sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956 dr->handle.revisit = svc_revisit;
1957 return &dr->handle;
1958}
1959
1960/*
1961 * recv data from a deferred request into an active one
1962 */
1963static int svc_deferred_recv(struct svc_rqst *rqstp)
1964{
1965 struct svc_deferred_req *dr = rqstp->rq_deferred;
1966
1967 rqstp->rq_arg.head[0].iov_base = dr->args;
1968 rqstp->rq_arg.head[0].iov_len = dr->argslen<<2;
1969 rqstp->rq_arg.page_len = 0;
1970 rqstp->rq_arg.len = dr->argslen<<2;
1971 rqstp->rq_prot = dr->prot;
Chuck Lever24422222007-02-12 00:53:33 -08001972 memcpy(&rqstp->rq_addr, &dr->addr, dr->addrlen);
1973 rqstp->rq_addrlen = dr->addrlen;
J. Bruce Fields1918e342006-01-18 17:43:16 -08001974 rqstp->rq_daddr = dr->daddr;
NeilBrown44524352006-10-04 02:15:46 -07001975 rqstp->rq_respages = rqstp->rq_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 return dr->argslen<<2;
1977}
1978
1979
1980static struct svc_deferred_req *svc_deferred_dequeue(struct svc_sock *svsk)
1981{
1982 struct svc_deferred_req *dr = NULL;
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 if (!test_bit(SK_DEFERRED, &svsk->sk_flags))
1985 return NULL;
NeilBrown7ac1bea2007-05-09 02:34:48 -07001986 spin_lock(&svsk->sk_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 clear_bit(SK_DEFERRED, &svsk->sk_flags);
1988 if (!list_empty(&svsk->sk_deferred)) {
1989 dr = list_entry(svsk->sk_deferred.next,
1990 struct svc_deferred_req,
1991 handle.recent);
1992 list_del_init(&dr->handle.recent);
1993 set_bit(SK_DEFERRED, &svsk->sk_flags);
1994 }
NeilBrown7ac1bea2007-05-09 02:34:48 -07001995 spin_unlock(&svsk->sk_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 return dr;
1997}