blob: cccfa7deb9af0d26887f025270deba4a1b6f95b0 [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
Tom Tuckerf6150c32007-12-30 21:07:57 -06008 * svc_xprt_enqueue procedure...
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
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>
Chuck Leverb7872fe2008-04-14 12:27:01 -040041#include <net/tcp.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070042#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/uaccess.h>
44#include <asm/ioctls.h>
45
46#include <linux/sunrpc/types.h>
Chuck Leverad06e4b2007-02-12 00:53:32 -080047#include <linux/sunrpc/clnt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/sunrpc/xdr.h>
Chuck Leverc0401ea2008-04-14 12:27:30 -040049#include <linux/sunrpc/msg_prot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/sunrpc/svcsock.h>
51#include <linux/sunrpc/stats.h>
52
Tom Tucker360d87382007-12-30 21:07:17 -060053#define RPCDBG_FACILITY RPCDBG_SVCXPRT
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55
56static struct svc_sock *svc_setup_socket(struct svc_serv *, struct socket *,
Chuck Lever6b174332007-02-12 00:53:28 -080057 int *errp, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static void svc_udp_data_ready(struct sock *, int);
59static int svc_udp_recvfrom(struct svc_rqst *);
60static int svc_udp_sendto(struct svc_rqst *);
Tom Tucker755ccea2007-12-30 21:07:27 -060061static void svc_sock_detach(struct svc_xprt *);
Trond Myklebust69b6ba32008-12-23 16:30:11 -050062static void svc_tcp_sock_detach(struct svc_xprt *);
Tom Tucker755ccea2007-12-30 21:07:27 -060063static void svc_sock_free(struct svc_xprt *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Tom Tuckerb700cbb2007-12-30 21:07:42 -060065static struct svc_xprt *svc_create_socket(struct svc_serv *, int,
66 struct sockaddr *, int, int);
Peter Zijlstraed075362006-12-06 20:35:24 -080067#ifdef CONFIG_DEBUG_LOCK_ALLOC
68static struct lock_class_key svc_key[2];
69static struct lock_class_key svc_slock_key[2];
70
Tom Tucker0f0257e2007-12-30 21:08:27 -060071static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -080072{
73 struct sock *sk = sock->sk;
John Heffner02b3d342007-09-12 10:42:12 +020074 BUG_ON(sock_owned_by_user(sk));
Peter Zijlstraed075362006-12-06 20:35:24 -080075 switch (sk->sk_family) {
76 case AF_INET:
77 sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060078 &svc_slock_key[0],
79 "sk_xprt.xpt_lock-AF_INET-NFSD",
80 &svc_key[0]);
Peter Zijlstraed075362006-12-06 20:35:24 -080081 break;
82
83 case AF_INET6:
84 sock_lock_init_class_and_name(sk, "slock-AF_INET6-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060085 &svc_slock_key[1],
86 "sk_xprt.xpt_lock-AF_INET6-NFSD",
87 &svc_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -080088 break;
89
90 default:
91 BUG();
92 }
93}
94#else
Tom Tucker0f0257e2007-12-30 21:08:27 -060095static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -080096{
97}
98#endif
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/*
101 * Release an skbuff after use
102 */
Tom Tucker5148bf42007-12-30 21:07:25 -0600103static void svc_release_skb(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Tom Tucker5148bf42007-12-30 21:07:25 -0600105 struct sk_buff *skb = rqstp->rq_xprt_ctxt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 struct svc_deferred_req *dr = rqstp->rq_deferred;
107
108 if (skb) {
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600109 struct svc_sock *svsk =
110 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tucker5148bf42007-12-30 21:07:25 -0600111 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 dprintk("svc: service %p, releasing skb %p\n", rqstp, skb);
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600114 skb_free_datagram(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
116 if (dr) {
117 rqstp->rq_deferred = NULL;
118 kfree(dr);
119 }
120}
121
Chuck Leverb92503b2007-02-12 00:53:36 -0800122union svc_pktinfo_u {
123 struct in_pktinfo pkti;
Chuck Leverb92503b2007-02-12 00:53:36 -0800124 struct in6_pktinfo pkti6;
Chuck Leverb92503b2007-02-12 00:53:36 -0800125};
David S. Millerbc375ea2007-04-12 13:35:59 -0700126#define SVC_PKTINFO_SPACE \
127 CMSG_SPACE(sizeof(union svc_pktinfo_u))
Chuck Leverb92503b2007-02-12 00:53:36 -0800128
129static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh)
130{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600131 struct svc_sock *svsk =
132 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
133 switch (svsk->sk_sk->sk_family) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800134 case AF_INET: {
135 struct in_pktinfo *pki = CMSG_DATA(cmh);
136
137 cmh->cmsg_level = SOL_IP;
138 cmh->cmsg_type = IP_PKTINFO;
139 pki->ipi_ifindex = 0;
140 pki->ipi_spec_dst.s_addr = rqstp->rq_daddr.addr.s_addr;
141 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
142 }
143 break;
NeilBrown5a05ed72007-03-06 01:42:22 -0800144
Chuck Leverb92503b2007-02-12 00:53:36 -0800145 case AF_INET6: {
146 struct in6_pktinfo *pki = CMSG_DATA(cmh);
147
148 cmh->cmsg_level = SOL_IPV6;
149 cmh->cmsg_type = IPV6_PKTINFO;
150 pki->ipi6_ifindex = 0;
151 ipv6_addr_copy(&pki->ipi6_addr,
152 &rqstp->rq_daddr.addr6);
153 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
154 }
155 break;
Chuck Leverb92503b2007-02-12 00:53:36 -0800156 }
157 return;
158}
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/*
161 * Generic sendto routine
162 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600163static int svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600165 struct svc_sock *svsk =
166 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 struct socket *sock = svsk->sk_sock;
168 int slen;
David S. Millerbc375ea2007-04-12 13:35:59 -0700169 union {
170 struct cmsghdr hdr;
171 long all[SVC_PKTINFO_SPACE / sizeof(long)];
172 } buffer;
173 struct cmsghdr *cmh = &buffer.hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 int len = 0;
175 int result;
176 int size;
177 struct page **ppage = xdr->pages;
178 size_t base = xdr->page_base;
179 unsigned int pglen = xdr->page_len;
180 unsigned int flags = MSG_MORE;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300181 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 slen = xdr->len;
184
185 if (rqstp->rq_prot == IPPROTO_UDP) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800186 struct msghdr msg = {
187 .msg_name = &rqstp->rq_addr,
188 .msg_namelen = rqstp->rq_addrlen,
189 .msg_control = cmh,
190 .msg_controllen = sizeof(buffer),
191 .msg_flags = MSG_MORE,
192 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Chuck Leverb92503b2007-02-12 00:53:36 -0800194 svc_set_cmsg_data(rqstp, cmh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 if (sock_sendmsg(sock, &msg, 0) < 0)
197 goto out;
198 }
199
200 /* send head */
201 if (slen == xdr->head[0].iov_len)
202 flags = 0;
NeilBrown44524352006-10-04 02:15:46 -0700203 len = kernel_sendpage(sock, rqstp->rq_respages[0], 0,
204 xdr->head[0].iov_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (len != xdr->head[0].iov_len)
206 goto out;
207 slen -= xdr->head[0].iov_len;
208 if (slen == 0)
209 goto out;
210
211 /* send page data */
212 size = PAGE_SIZE - base < pglen ? PAGE_SIZE - base : pglen;
213 while (pglen > 0) {
214 if (slen == size)
215 flags = 0;
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700216 result = kernel_sendpage(sock, *ppage, base, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (result > 0)
218 len += result;
219 if (result != size)
220 goto out;
221 slen -= size;
222 pglen -= size;
223 size = PAGE_SIZE < pglen ? PAGE_SIZE : pglen;
224 base = 0;
225 ppage++;
226 }
227 /* send tail */
228 if (xdr->tail[0].iov_len) {
NeilBrown44524352006-10-04 02:15:46 -0700229 result = kernel_sendpage(sock, rqstp->rq_respages[0],
230 ((unsigned long)xdr->tail[0].iov_base)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800231 & (PAGE_SIZE-1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 xdr->tail[0].iov_len, 0);
233
234 if (result > 0)
235 len += result;
236 }
237out:
Chuck Leverad06e4b2007-02-12 00:53:32 -0800238 dprintk("svc: socket %p sendto([%p %Zu... ], %d) = %d (addr %s)\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600239 svsk, xdr->head[0].iov_base, xdr->head[0].iov_len,
Chuck Leverad06e4b2007-02-12 00:53:32 -0800240 xdr->len, len, svc_print_addr(rqstp, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 return len;
243}
244
245/*
NeilBrown80212d52006-10-02 02:17:47 -0700246 * Report socket names for nfsdfs
247 */
248static int one_sock_name(char *buf, struct svc_sock *svsk)
249{
250 int len;
251
252 switch(svsk->sk_sk->sk_family) {
253 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -0700254 len = sprintf(buf, "ipv4 %s %pI4 %d\n",
255 svsk->sk_sk->sk_protocol == IPPROTO_UDP ?
NeilBrown80212d52006-10-02 02:17:47 -0700256 "udp" : "tcp",
Harvey Harrison21454aa2008-10-31 00:54:56 -0700257 &inet_sk(svsk->sk_sk)->rcv_saddr,
NeilBrown80212d52006-10-02 02:17:47 -0700258 inet_sk(svsk->sk_sk)->num);
259 break;
260 default:
261 len = sprintf(buf, "*unknown-%d*\n",
262 svsk->sk_sk->sk_family);
263 }
264 return len;
265}
266
267int
NeilBrownb41b66d2006-10-02 02:17:48 -0700268svc_sock_names(char *buf, struct svc_serv *serv, char *toclose)
NeilBrown80212d52006-10-02 02:17:47 -0700269{
NeilBrownb41b66d2006-10-02 02:17:48 -0700270 struct svc_sock *svsk, *closesk = NULL;
NeilBrown80212d52006-10-02 02:17:47 -0700271 int len = 0;
272
273 if (!serv)
274 return 0;
NeilBrownaaf68cf2007-02-08 14:20:30 -0800275 spin_lock_bh(&serv->sv_lock);
Tom Tucker7a182082007-12-30 21:07:53 -0600276 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list) {
NeilBrown80212d52006-10-02 02:17:47 -0700277 int onelen = one_sock_name(buf+len, svsk);
NeilBrownb41b66d2006-10-02 02:17:48 -0700278 if (toclose && strcmp(toclose, buf+len) == 0)
279 closesk = svsk;
280 else
281 len += onelen;
NeilBrown80212d52006-10-02 02:17:47 -0700282 }
NeilBrownaaf68cf2007-02-08 14:20:30 -0800283 spin_unlock_bh(&serv->sv_lock);
NeilBrownb41b66d2006-10-02 02:17:48 -0700284 if (closesk)
NeilBrown5680c442006-10-04 02:15:45 -0700285 /* Should unregister with portmap, but you cannot
286 * unregister just one protocol...
287 */
Tom Tucker7a182082007-12-30 21:07:53 -0600288 svc_close_xprt(&closesk->sk_xprt);
NeilBrown37a03472006-10-04 02:15:44 -0700289 else if (toclose)
290 return -ENOENT;
NeilBrown80212d52006-10-02 02:17:47 -0700291 return len;
292}
293EXPORT_SYMBOL(svc_sock_names);
294
295/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 * Check input queue length
297 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600298static int svc_recv_available(struct svc_sock *svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 struct socket *sock = svsk->sk_sock;
301 int avail, err;
302
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700303 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 return (err >= 0)? avail : err;
306}
307
308/*
309 * Generic recvfrom routine.
310 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600311static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr,
312 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600314 struct svc_sock *svsk =
315 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Chuck Lever1ba95102007-02-12 00:53:31 -0800316 struct msghdr msg = {
317 .msg_flags = MSG_DONTWAIT,
318 };
319 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Tom Tucker260c1d12007-12-30 21:08:29 -0600321 rqstp->rq_xprt_hlen = 0;
322
Chuck Lever1ba95102007-02-12 00:53:31 -0800323 len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
324 msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
Chuck Lever1ba95102007-02-12 00:53:31 -0800327 svsk, iov[0].iov_base, iov[0].iov_len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return len;
329}
330
331/*
332 * Set socket snd and rcv buffer lengths
333 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600334static void svc_sock_setbufsize(struct socket *sock, unsigned int snd,
335 unsigned int rcv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
337#if 0
338 mm_segment_t oldfs;
339 oldfs = get_fs(); set_fs(KERNEL_DS);
340 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
341 (char*)&snd, sizeof(snd));
342 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
343 (char*)&rcv, sizeof(rcv));
344#else
345 /* sock_setsockopt limits use to sysctl_?mem_max,
346 * which isn't acceptable. Until that is made conditional
347 * on not having CAP_SYS_RESOURCE or similar, we go direct...
348 * DaveM said I could!
349 */
350 lock_sock(sock->sk);
351 sock->sk->sk_sndbuf = snd * 2;
352 sock->sk->sk_rcvbuf = rcv * 2;
353 sock->sk->sk_userlocks |= SOCK_SNDBUF_LOCK|SOCK_RCVBUF_LOCK;
354 release_sock(sock->sk);
355#endif
356}
357/*
358 * INET callback when data has been received on the socket.
359 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600360static void svc_udp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Neil Brown939bb7e2005-09-13 01:25:39 -0700362 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Neil Brown939bb7e2005-09-13 01:25:39 -0700364 if (svsk) {
365 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600366 svsk, sk, count,
367 test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
368 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600369 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
372 wake_up_interruptible(sk->sk_sleep);
373}
374
375/*
376 * INET callback when space is newly available on the socket.
377 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600378static void svc_write_space(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
381
382 if (svsk) {
383 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600384 svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
Tom Tuckerf6150c32007-12-30 21:07:57 -0600385 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
388 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) {
Neil Brown939bb7e2005-09-13 01:25:39 -0700389 dprintk("RPC svc_write_space: someone sleeping on %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 svsk);
391 wake_up_interruptible(sk->sk_sleep);
392 }
393}
394
Tom Tucker9dbc2402007-12-30 21:08:12 -0600395/*
396 * Copy the UDP datagram's destination address to the rqstp structure.
397 * The 'destination' address in this case is the address to which the
398 * peer sent the datagram, i.e. our local address. For multihomed
399 * hosts, this can change from msg to msg. Note that only the IP
400 * address changes, the port number should remain the same.
401 */
402static void svc_udp_get_dest_address(struct svc_rqst *rqstp,
403 struct cmsghdr *cmh)
Chuck Lever95756482007-02-12 00:53:38 -0800404{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600405 struct svc_sock *svsk =
406 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
407 switch (svsk->sk_sk->sk_family) {
Chuck Lever95756482007-02-12 00:53:38 -0800408 case AF_INET: {
NeilBrown7a37f572007-03-06 01:42:21 -0800409 struct in_pktinfo *pki = CMSG_DATA(cmh);
410 rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_addr;
Chuck Lever95756482007-02-12 00:53:38 -0800411 break;
NeilBrown7a37f572007-03-06 01:42:21 -0800412 }
Chuck Lever95756482007-02-12 00:53:38 -0800413 case AF_INET6: {
NeilBrown7a37f572007-03-06 01:42:21 -0800414 struct in6_pktinfo *pki = CMSG_DATA(cmh);
415 ipv6_addr_copy(&rqstp->rq_daddr.addr6, &pki->ipi6_addr);
Chuck Lever95756482007-02-12 00:53:38 -0800416 break;
NeilBrown7a37f572007-03-06 01:42:21 -0800417 }
Chuck Lever95756482007-02-12 00:53:38 -0800418 }
Chuck Lever95756482007-02-12 00:53:38 -0800419}
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421/*
422 * Receive a datagram from a UDP socket.
423 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600424static int svc_udp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600426 struct svc_sock *svsk =
427 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600428 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 struct sk_buff *skb;
David S. Millerbc375ea2007-04-12 13:35:59 -0700430 union {
431 struct cmsghdr hdr;
432 long all[SVC_PKTINFO_SPACE / sizeof(long)];
433 } buffer;
434 struct cmsghdr *cmh = &buffer.hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 int err, len;
NeilBrown7a37f572007-03-06 01:42:21 -0800436 struct msghdr msg = {
437 .msg_name = svc_addr(rqstp),
438 .msg_control = cmh,
439 .msg_controllen = sizeof(buffer),
440 .msg_flags = MSG_DONTWAIT,
441 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Tom Tucker02fc6c32007-12-30 21:07:48 -0600443 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 /* udp sockets need large rcvbuf as all pending
445 * requests are still in that buffer. sndbuf must
446 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700447 * for one reply per thread. We count all threads
448 * rather than threads in a particular pool, which
449 * provides an upper bound on the number of threads
450 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 */
452 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700453 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
454 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Tom Tucker02fc6c32007-12-30 21:07:48 -0600456 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
NeilBrown05ed6902007-05-09 02:34:55 -0700457 skb = NULL;
458 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
459 0, 0, MSG_PEEK | MSG_DONTWAIT);
460 if (err >= 0)
461 skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err);
462
463 if (skb == NULL) {
464 if (err != -EAGAIN) {
465 /* possibly an icmp error */
466 dprintk("svc: recvfrom returned error %d\n", -err);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600467 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
Tom Tuckera6046f72007-12-30 21:08:01 -0600469 svc_xprt_received(&svsk->sk_xprt);
NeilBrown05ed6902007-05-09 02:34:55 -0700470 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600472 len = svc_addr_len(svc_addr(rqstp));
473 if (len < 0)
474 return len;
475 rqstp->rq_addrlen = len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700476 if (skb->tstamp.tv64 == 0) {
477 skb->tstamp = ktime_get_real();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800478 /* Don't enable netstamp, sunrpc doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 need that much accuracy */
480 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700481 svsk->sk_sk->sk_stamp = skb->tstamp;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600482 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); /* there may be more data... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 /*
485 * Maybe more packets - kick another thread ASAP.
486 */
Tom Tuckera6046f72007-12-30 21:08:01 -0600487 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 len = skb->len - sizeof(struct udphdr);
490 rqstp->rq_arg.len = len;
491
Chuck Lever95756482007-02-12 00:53:38 -0800492 rqstp->rq_prot = IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
NeilBrown7a37f572007-03-06 01:42:21 -0800494 if (cmh->cmsg_level != IPPROTO_IP ||
495 cmh->cmsg_type != IP_PKTINFO) {
496 if (net_ratelimit())
497 printk("rpcsvc: received unknown control message:"
498 "%d/%d\n",
499 cmh->cmsg_level, cmh->cmsg_type);
500 skb_free_datagram(svsk->sk_sk, skb);
501 return 0;
502 }
503 svc_udp_get_dest_address(rqstp, cmh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 if (skb_is_nonlinear(skb)) {
506 /* we have to copy */
507 local_bh_disable();
508 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
509 local_bh_enable();
510 /* checksum error */
511 skb_free_datagram(svsk->sk_sk, skb);
512 return 0;
513 }
514 local_bh_enable();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800515 skb_free_datagram(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 } else {
517 /* we can use it in-place */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600518 rqstp->rq_arg.head[0].iov_base = skb->data +
519 sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 rqstp->rq_arg.head[0].iov_len = len;
Herbert Xufb286bb2005-11-10 13:01:24 -0800521 if (skb_checksum_complete(skb)) {
522 skb_free_datagram(svsk->sk_sk, skb);
523 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
Tom Tucker5148bf42007-12-30 21:07:25 -0600525 rqstp->rq_xprt_ctxt = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
527
528 rqstp->rq_arg.page_base = 0;
529 if (len <= rqstp->rq_arg.head[0].iov_len) {
530 rqstp->rq_arg.head[0].iov_len = len;
531 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700532 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 } else {
534 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700535 rqstp->rq_respages = rqstp->rq_pages + 1 +
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700536 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538
539 if (serv->sv_stats)
540 serv->sv_stats->netudpcnt++;
541
542 return len;
543}
544
545static int
546svc_udp_sendto(struct svc_rqst *rqstp)
547{
548 int error;
549
550 error = svc_sendto(rqstp, &rqstp->rq_res);
551 if (error == -ECONNREFUSED)
552 /* ICMP error on earlier request. */
553 error = svc_sendto(rqstp, &rqstp->rq_res);
554
555 return error;
556}
557
Tom Tuckere831fe62007-12-30 21:07:29 -0600558static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp)
559{
560}
561
Tom Tucker323bee32007-12-30 21:07:31 -0600562static int svc_udp_has_wspace(struct svc_xprt *xprt)
563{
564 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600565 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600566 unsigned long required;
567
568 /*
569 * Set the SOCK_NOSPACE flag before checking the available
570 * sock space.
571 */
572 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600573 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600574 if (required*2 > sock_wspace(svsk->sk_sk))
575 return 0;
576 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
577 return 1;
578}
579
Tom Tucker38a417c2007-12-30 21:07:36 -0600580static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt)
581{
582 BUG();
583 return NULL;
584}
585
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600586static struct svc_xprt *svc_udp_create(struct svc_serv *serv,
587 struct sockaddr *sa, int salen,
588 int flags)
589{
590 return svc_create_socket(serv, IPPROTO_UDP, sa, salen, flags);
591}
592
Tom Tucker360d87382007-12-30 21:07:17 -0600593static struct svc_xprt_ops svc_udp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600594 .xpo_create = svc_udp_create,
Tom Tucker5d137992007-12-30 21:07:23 -0600595 .xpo_recvfrom = svc_udp_recvfrom,
596 .xpo_sendto = svc_udp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -0600597 .xpo_release_rqst = svc_release_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -0600598 .xpo_detach = svc_sock_detach,
599 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -0600600 .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -0600601 .xpo_has_wspace = svc_udp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -0600602 .xpo_accept = svc_udp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -0600603};
604
605static struct svc_xprt_class svc_udp_class = {
606 .xcl_name = "udp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600607 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -0600608 .xcl_ops = &svc_udp_ops,
Tom Tucker49023152007-12-30 21:07:21 -0600609 .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP,
Tom Tucker360d87382007-12-30 21:07:17 -0600610};
611
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600612static void svc_udp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
NeilBrown7a37f572007-03-06 01:42:21 -0800614 int one = 1;
615 mm_segment_t oldfs;
616
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600617 svc_xprt_init(&svc_udp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600618 clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
620 svsk->sk_sk->sk_write_space = svc_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800623 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 * svc_udp_recvfrom will re-adjust if necessary
625 */
626 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600627 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
628 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Tom Tucker0f0257e2007-12-30 21:08:27 -0600630 /* data might have come in before data_ready set up */
631 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600632 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
NeilBrown7a37f572007-03-06 01:42:21 -0800633
634 oldfs = get_fs();
635 set_fs(KERNEL_DS);
636 /* make sure we get destination address info */
637 svsk->sk_sock->ops->setsockopt(svsk->sk_sock, IPPROTO_IP, IP_PKTINFO,
638 (char __user *)&one, sizeof(one));
639 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
642/*
643 * A data_ready event on a listening socket means there's a connection
644 * pending. Do not use state_change as a substitute for it.
645 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600646static void svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Neil Brown939bb7e2005-09-13 01:25:39 -0700648 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700651 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Neil Brown939bb7e2005-09-13 01:25:39 -0700653 /*
654 * This callback may called twice when a new connection
655 * is established as a child socket inherits everything
656 * from a parent LISTEN socket.
657 * 1) data_ready method of the parent socket will be called
658 * when one of child sockets become ESTABLISHED.
659 * 2) data_ready method of the child socket may be called
660 * when it receives data before the socket is accepted.
661 * In case of 2, we should ignore it silently.
662 */
663 if (sk->sk_state == TCP_LISTEN) {
664 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600665 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600666 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700667 } else
668 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
Neil Brown939bb7e2005-09-13 01:25:39 -0700670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
672 wake_up_interruptible_all(sk->sk_sleep);
673}
674
675/*
676 * A state change on a connected socket means it's dying or dead.
677 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600678static void svc_tcp_state_change(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Neil Brown939bb7e2005-09-13 01:25:39 -0700680 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700683 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Neil Brown939bb7e2005-09-13 01:25:39 -0700685 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700687 else {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600688 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600689 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
692 wake_up_interruptible_all(sk->sk_sleep);
693}
694
Tom Tucker0f0257e2007-12-30 21:08:27 -0600695static void svc_tcp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Neil Brown939bb7e2005-09-13 01:25:39 -0700697 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700700 sk, sk->sk_user_data);
701 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600702 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600703 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
706 wake_up_interruptible(sk->sk_sleep);
707}
708
709/*
710 * Accept a TCP connection
711 */
Tom Tucker38a417c2007-12-30 21:07:36 -0600712static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Tom Tucker38a417c2007-12-30 21:07:36 -0600714 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800715 struct sockaddr_storage addr;
716 struct sockaddr *sin = (struct sockaddr *) &addr;
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600717 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 struct socket *sock = svsk->sk_sock;
719 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 struct svc_sock *newsvsk;
721 int err, slen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300722 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
725 if (!sock)
Tom Tucker38a417c2007-12-30 21:07:36 -0600726 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Tom Tucker02fc6c32007-12-30 21:07:48 -0600728 clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700729 err = kernel_accept(sock, &newsock, O_NONBLOCK);
730 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (err == -ENOMEM)
732 printk(KERN_WARNING "%s: no more sockets!\n",
733 serv->sv_name);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700734 else if (err != -EAGAIN && net_ratelimit())
735 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
736 serv->sv_name, -err);
Tom Tucker38a417c2007-12-30 21:07:36 -0600737 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
Tom Tucker02fc6c32007-12-30 21:07:48 -0600739 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800741 err = kernel_getpeername(newsock, sin, &slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (err < 0) {
743 if (net_ratelimit())
744 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
745 serv->sv_name, -err);
746 goto failed; /* aborted connection or whatever */
747 }
748
749 /* Ideally, we would want to reject connections from unauthorized
Chuck Leverad06e4b2007-02-12 00:53:32 -0800750 * hosts here, but when we get encryption, the IP of the host won't
751 * tell us anything. For now just warn about unpriv connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 */
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800753 if (!svc_port_is_privileged(sin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 dprintk(KERN_WARNING
Chuck Leverad06e4b2007-02-12 00:53:32 -0800755 "%s: connect from unprivileged port: %s\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800756 serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800757 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
Chuck Leverad06e4b2007-02-12 00:53:32 -0800759 dprintk("%s: connect from %s\n", serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800760 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 /* make sure that a write doesn't block forever when
763 * low on memory
764 */
765 newsock->sk->sk_sndtimeo = HZ*30;
766
Chuck Lever6b174332007-02-12 00:53:28 -0800767 if (!(newsvsk = svc_setup_socket(serv, newsock, &err,
768 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 goto failed;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600770 svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen);
Frank van Maarseveena9747692007-07-09 22:21:39 +0200771 err = kernel_getsockname(newsock, sin, &slen);
772 if (unlikely(err < 0)) {
773 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
774 slen = offsetof(struct sockaddr, sa_data);
775 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600776 svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -0800777
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600778 if (serv->sv_stats)
779 serv->sv_stats->nettcpconn++;
780
781 return &newsvsk->sk_xprt;
782
783failed:
784 sock_release(newsock);
785 return NULL;
786}
787
788/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 * Receive data from a TCP socket.
790 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600791static int svc_tcp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600793 struct svc_sock *svsk =
794 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600795 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 int len;
NeilBrown3cc03b12006-10-04 02:15:47 -0700797 struct kvec *vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 int pnum, vlen;
799
800 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600801 svsk, test_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags),
802 test_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags),
803 test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Tom Tucker02fc6c32007-12-30 21:07:48 -0600805 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /* sndbuf needs to have room for one request
807 * per thread, otherwise we can stall even when the
808 * network isn't a bottleneck.
Greg Banks3262c812006-10-02 02:17:58 -0700809 *
810 * We count all threads rather than threads in a
811 * particular pool, which provides an upper bound
812 * on the number of threads which will access the socket.
813 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 * rcvbuf just needs to be able to hold a few requests.
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800815 * Normally they will be removed from the queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 * as soon a a complete request arrives.
817 */
818 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700819 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
820 3 * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Tom Tucker02fc6c32007-12-30 21:07:48 -0600822 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 /* Receive data. If we haven't got the record length yet, get
825 * the next four bytes. Otherwise try to gobble up as much as
826 * possible up to the complete record length.
827 */
Chuck Leverc0401ea2008-04-14 12:27:30 -0400828 if (svsk->sk_tcplen < sizeof(rpc_fraghdr)) {
829 int want = sizeof(rpc_fraghdr) - svsk->sk_tcplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 struct kvec iov;
831
832 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
833 iov.iov_len = want;
834 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
835 goto error;
836 svsk->sk_tcplen += len;
837
838 if (len < want) {
Chuck Leverc0401ea2008-04-14 12:27:30 -0400839 dprintk("svc: short recvfrom while reading record "
840 "length (%d of %d)\n", len, want);
Tom Tuckera6046f72007-12-30 21:08:01 -0600841 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return -EAGAIN; /* record header not complete */
843 }
844
845 svsk->sk_reclen = ntohl(svsk->sk_reclen);
Chuck Leverc0401ea2008-04-14 12:27:30 -0400846 if (!(svsk->sk_reclen & RPC_LAST_STREAM_FRAGMENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 /* FIXME: technically, a record can be fragmented,
848 * and non-terminal fragments will not have the top
849 * bit set in the fragment length header.
850 * But apparently no known nfs clients send fragmented
851 * records. */
NeilBrown34e9a632007-01-29 13:19:52 -0800852 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400853 printk(KERN_NOTICE "RPC: multiple fragments "
854 "per record not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 goto err_delete;
856 }
Chuck Leverc0401ea2008-04-14 12:27:30 -0400857 svsk->sk_reclen &= RPC_FRAGMENT_SIZE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700859 if (svsk->sk_reclen > serv->sv_max_mesg) {
NeilBrown34e9a632007-01-29 13:19:52 -0800860 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400861 printk(KERN_NOTICE "RPC: "
862 "fragment too large: 0x%08lx\n",
863 (unsigned long)svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 goto err_delete;
865 }
866 }
867
868 /* Check whether enough data is available */
869 len = svc_recv_available(svsk);
870 if (len < 0)
871 goto error;
872
873 if (len < svsk->sk_reclen) {
874 dprintk("svc: incomplete TCP record (%d of %d)\n",
875 len, svsk->sk_reclen);
Tom Tuckera6046f72007-12-30 21:08:01 -0600876 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return -EAGAIN; /* record not complete */
878 }
879 len = svsk->sk_reclen;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600880 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
NeilBrown3cc03b12006-10-04 02:15:47 -0700882 vec = rqstp->rq_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 vec[0] = rqstp->rq_arg.head[0];
884 vlen = PAGE_SIZE;
885 pnum = 1;
886 while (vlen < len) {
NeilBrown44524352006-10-04 02:15:46 -0700887 vec[pnum].iov_base = page_address(rqstp->rq_pages[pnum]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 vec[pnum].iov_len = PAGE_SIZE;
889 pnum++;
890 vlen += PAGE_SIZE;
891 }
NeilBrown44524352006-10-04 02:15:46 -0700892 rqstp->rq_respages = &rqstp->rq_pages[pnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 /* Now receive data */
895 len = svc_recvfrom(rqstp, vec, pnum, len);
896 if (len < 0)
897 goto error;
898
899 dprintk("svc: TCP complete record (%d bytes)\n", len);
900 rqstp->rq_arg.len = len;
901 rqstp->rq_arg.page_base = 0;
902 if (len <= rqstp->rq_arg.head[0].iov_len) {
903 rqstp->rq_arg.head[0].iov_len = len;
904 rqstp->rq_arg.page_len = 0;
905 } else {
906 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
907 }
908
Tom Tucker5148bf42007-12-30 21:07:25 -0600909 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 rqstp->rq_prot = IPPROTO_TCP;
911
912 /* Reset TCP read info */
913 svsk->sk_reclen = 0;
914 svsk->sk_tcplen = 0;
915
Tom Tucker9dbc2402007-12-30 21:08:12 -0600916 svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt);
Tom Tuckera6046f72007-12-30 21:08:01 -0600917 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (serv->sv_stats)
919 serv->sv_stats->nettcpcnt++;
920
921 return len;
922
923 err_delete:
Tom Tucker02fc6c32007-12-30 21:07:48 -0600924 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return -EAGAIN;
926
927 error:
928 if (len == -EAGAIN) {
929 dprintk("RPC: TCP recvfrom got EAGAIN\n");
Tom Tuckera6046f72007-12-30 21:08:01 -0600930 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 } else {
932 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600933 svsk->sk_xprt.xpt_server->sv_name, -len);
Olaf Kirch93fbf1a2006-01-06 00:19:56 -0800934 goto err_delete;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 }
936
937 return len;
938}
939
940/*
941 * Send out data on TCP socket.
942 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600943static int svc_tcp_sendto(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
945 struct xdr_buf *xbufp = &rqstp->rq_res;
946 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700947 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 /* Set up the first element of the reply kvec.
950 * Any other kvecs that may be in use have been taken
951 * care of by the server implementation itself.
952 */
953 reclen = htonl(0x80000000|((xbufp->len ) - 4));
954 memcpy(xbufp->head[0].iov_base, &reclen, 4);
955
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600956 if (test_bit(XPT_DEAD, &rqstp->rq_xprt->xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 return -ENOTCONN;
958
959 sent = svc_sendto(rqstp, &rqstp->rq_res);
960 if (sent != xbufp->len) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600961 printk(KERN_NOTICE
962 "rpc-srv/tcp: %s: %s %d when sending %d bytes "
963 "- shutting down socket\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600964 rqstp->rq_xprt->xpt_server->sv_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 (sent<0)?"got error":"sent only",
966 sent, xbufp->len);
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600967 set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600968 svc_xprt_enqueue(rqstp->rq_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 sent = -EAGAIN;
970 }
971 return sent;
972}
973
Tom Tuckere831fe62007-12-30 21:07:29 -0600974/*
975 * Setup response header. TCP has a 4B record length field.
976 */
977static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp)
978{
979 struct kvec *resv = &rqstp->rq_res.head[0];
980
981 /* tcp needs a space for the record length... */
982 svc_putnl(resv, 0);
983}
984
Tom Tucker323bee32007-12-30 21:07:31 -0600985static int svc_tcp_has_wspace(struct svc_xprt *xprt)
986{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600987 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600988 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600989 int required;
990 int wspace;
991
992 /*
993 * Set the SOCK_NOSPACE flag before checking the available
994 * sock space.
995 */
996 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600997 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600998 wspace = sk_stream_wspace(svsk->sk_sk);
999
1000 if (wspace < sk_stream_min_wspace(svsk->sk_sk))
1001 return 0;
1002 if (required * 2 > wspace)
1003 return 0;
1004
1005 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
1006 return 1;
1007}
1008
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001009static struct svc_xprt *svc_tcp_create(struct svc_serv *serv,
1010 struct sockaddr *sa, int salen,
1011 int flags)
1012{
1013 return svc_create_socket(serv, IPPROTO_TCP, sa, salen, flags);
1014}
1015
Tom Tucker360d87382007-12-30 21:07:17 -06001016static struct svc_xprt_ops svc_tcp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001017 .xpo_create = svc_tcp_create,
Tom Tucker5d137992007-12-30 21:07:23 -06001018 .xpo_recvfrom = svc_tcp_recvfrom,
1019 .xpo_sendto = svc_tcp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -06001020 .xpo_release_rqst = svc_release_skb,
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001021 .xpo_detach = svc_tcp_sock_detach,
Tom Tucker755ccea2007-12-30 21:07:27 -06001022 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -06001023 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -06001024 .xpo_has_wspace = svc_tcp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -06001025 .xpo_accept = svc_tcp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -06001026};
1027
1028static struct svc_xprt_class svc_tcp_class = {
1029 .xcl_name = "tcp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001030 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -06001031 .xcl_ops = &svc_tcp_ops,
Tom Tucker49023152007-12-30 21:07:21 -06001032 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
Tom Tucker360d87382007-12-30 21:07:17 -06001033};
1034
1035void svc_init_xprt_sock(void)
1036{
1037 svc_reg_xprt_class(&svc_tcp_class);
1038 svc_reg_xprt_class(&svc_udp_class);
1039}
1040
1041void svc_cleanup_xprt_sock(void)
1042{
1043 svc_unreg_xprt_class(&svc_tcp_class);
1044 svc_unreg_xprt_class(&svc_udp_class);
1045}
1046
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001047static void svc_tcp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 struct sock *sk = svsk->sk_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001051 svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -06001052 set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (sk->sk_state == TCP_LISTEN) {
1054 dprintk("setting up TCP socket for listening\n");
Tom Tucker02fc6c32007-12-30 21:07:48 -06001055 set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 sk->sk_data_ready = svc_tcp_listen_data_ready;
Tom Tucker02fc6c32007-12-30 21:07:48 -06001057 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 } else {
1059 dprintk("setting up TCP socket for reading\n");
1060 sk->sk_state_change = svc_tcp_state_change;
1061 sk->sk_data_ready = svc_tcp_data_ready;
1062 sk->sk_write_space = svc_write_space;
1063
1064 svsk->sk_reclen = 0;
1065 svsk->sk_tcplen = 0;
1066
Chuck Leverb7872fe2008-04-14 12:27:01 -04001067 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001070 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 * svc_tcp_recvfrom will re-adjust if necessary
1072 */
1073 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001074 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
1075 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Tom Tucker02fc6c32007-12-30 21:07:48 -06001077 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
1078 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001079 if (sk->sk_state != TCP_ESTABLISHED)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001080 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 }
1082}
1083
Tom Tucker0f0257e2007-12-30 21:08:27 -06001084void svc_sock_update_bufs(struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
1086 /*
1087 * The number of server threads has changed. Update
1088 * rcvbuf and sndbuf accordingly on all sockets
1089 */
1090 struct list_head *le;
1091
1092 spin_lock_bh(&serv->sv_lock);
1093 list_for_each(le, &serv->sv_permsocks) {
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001094 struct svc_sock *svsk =
Tom Tucker7a182082007-12-30 21:07:53 -06001095 list_entry(le, struct svc_sock, sk_xprt.xpt_list);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001096 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098 list_for_each(le, &serv->sv_tempsocks) {
1099 struct svc_sock *svsk =
Tom Tucker7a182082007-12-30 21:07:53 -06001100 list_entry(le, struct svc_sock, sk_xprt.xpt_list);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001101 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
1103 spin_unlock_bh(&serv->sv_lock);
1104}
Jeff Layton23d42ee2008-02-07 16:34:53 -05001105EXPORT_SYMBOL(svc_sock_update_bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 * Initialize socket for RPC use and create svc_sock struct
1109 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1110 */
Chuck Lever6b174332007-02-12 00:53:28 -08001111static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1112 struct socket *sock,
1113 int *errp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
1115 struct svc_sock *svsk;
1116 struct sock *inet;
Chuck Lever6b174332007-02-12 00:53:28 -08001117 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
Chuck Leverb6632332008-08-18 19:33:44 -04001118 int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120 dprintk("svc: svc_setup_socket %p\n", sock);
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001121 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 *errp = -ENOMEM;
1123 return NULL;
1124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 inet = sock->sk;
1127
1128 /* Register socket with portmapper */
1129 if (*errp >= 0 && pmap_register)
1130 *errp = svc_register(serv, inet->sk_protocol,
1131 ntohs(inet_sk(inet)->sport));
1132
1133 if (*errp < 0) {
1134 kfree(svsk);
1135 return NULL;
1136 }
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 inet->sk_user_data = svsk;
1139 svsk->sk_sock = sock;
1140 svsk->sk_sk = inet;
1141 svsk->sk_ostate = inet->sk_state_change;
1142 svsk->sk_odata = inet->sk_data_ready;
1143 svsk->sk_owspace = inet->sk_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 /* Initialize the socket */
1146 if (sock->type == SOCK_DGRAM)
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001147 svc_udp_init(svsk, serv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 else
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001149 svc_tcp_init(svsk, serv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Chuck Leverb6632332008-08-18 19:33:44 -04001151 /*
1152 * We start one listener per sv_serv. We want AF_INET
1153 * requests to be automatically shunted to our AF_INET6
1154 * listener using a mapped IPv4 address. Make sure
1155 * no-one starts an equivalent IPv4 listener, which
1156 * would steal our incoming connections.
1157 */
1158 val = 0;
1159 if (serv->sv_family == AF_INET6)
1160 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
1161 (char *)&val, sizeof(val));
1162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1164 svsk, svsk->sk_sk);
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 return svsk;
1167}
1168
NeilBrownb41b66d2006-10-02 02:17:48 -07001169int svc_addsock(struct svc_serv *serv,
1170 int fd,
Chuck Lever29373912008-10-03 17:15:38 -04001171 char *name_return)
NeilBrownb41b66d2006-10-02 02:17:48 -07001172{
1173 int err = 0;
1174 struct socket *so = sockfd_lookup(fd, &err);
1175 struct svc_sock *svsk = NULL;
1176
1177 if (!so)
1178 return err;
1179 if (so->sk->sk_family != AF_INET)
1180 err = -EAFNOSUPPORT;
1181 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1182 so->sk->sk_protocol != IPPROTO_UDP)
1183 err = -EPROTONOSUPPORT;
1184 else if (so->state > SS_UNCONNECTED)
1185 err = -EISCONN;
1186 else {
Tom Tucker2da2c212008-11-23 09:58:08 -06001187 if (!try_module_get(THIS_MODULE))
1188 err = -ENOENT;
1189 else
1190 svsk = svc_setup_socket(serv, so, &err,
1191 SVC_SOCK_DEFAULTS);
NeilBrowne79eff12007-02-12 00:53:30 -08001192 if (svsk) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001193 struct sockaddr_storage addr;
1194 struct sockaddr *sin = (struct sockaddr *)&addr;
1195 int salen;
1196 if (kernel_getsockname(svsk->sk_sock, sin, &salen) == 0)
1197 svc_xprt_set_local(&svsk->sk_xprt, sin, salen);
Tom Tucker4e5caaa2007-12-30 21:08:20 -06001198 clear_bit(XPT_TEMP, &svsk->sk_xprt.xpt_flags);
1199 spin_lock_bh(&serv->sv_lock);
1200 list_add(&svsk->sk_xprt.xpt_list, &serv->sv_permsocks);
1201 spin_unlock_bh(&serv->sv_lock);
Tom Tuckera6046f72007-12-30 21:08:01 -06001202 svc_xprt_received(&svsk->sk_xprt);
NeilBrownb41b66d2006-10-02 02:17:48 -07001203 err = 0;
Tom Tucker2da2c212008-11-23 09:58:08 -06001204 } else
1205 module_put(THIS_MODULE);
NeilBrownb41b66d2006-10-02 02:17:48 -07001206 }
1207 if (err) {
1208 sockfd_put(so);
1209 return err;
1210 }
NeilBrownb41b66d2006-10-02 02:17:48 -07001211 return one_sock_name(name_return, svsk);
1212}
1213EXPORT_SYMBOL_GPL(svc_addsock);
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215/*
1216 * Create socket for RPC service.
1217 */
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001218static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
1219 int protocol,
1220 struct sockaddr *sin, int len,
1221 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
1223 struct svc_sock *svsk;
1224 struct socket *sock;
1225 int error;
1226 int type;
Tom Tucker9dbc2402007-12-30 21:08:12 -06001227 struct sockaddr_storage addr;
1228 struct sockaddr *newsin = (struct sockaddr *)&addr;
1229 int newlen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +03001230 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Chuck Leverad06e4b2007-02-12 00:53:32 -08001232 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1233 serv->sv_program->pg_name, protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001234 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1237 printk(KERN_WARNING "svc: only UDP and TCP "
1238 "sockets supported\n");
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001239 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 }
1241 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1242
Chuck Lever77f1f672007-02-12 00:53:39 -08001243 error = sock_create_kern(sin->sa_family, type, protocol, &sock);
1244 if (error < 0)
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001245 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Peter Zijlstraed075362006-12-06 20:35:24 -08001247 svc_reclassify_socket(sock);
1248
Eric Sesterhenn18114742006-09-28 14:37:07 -07001249 if (type == SOCK_STREAM)
Chuck Lever77f1f672007-02-12 00:53:39 -08001250 sock->sk->sk_reuse = 1; /* allow address reuse */
1251 error = kernel_bind(sock, sin, len);
Eric Sesterhenn18114742006-09-28 14:37:07 -07001252 if (error < 0)
1253 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Tom Tucker9dbc2402007-12-30 21:08:12 -06001255 newlen = len;
1256 error = kernel_getsockname(sock, newsin, &newlen);
1257 if (error < 0)
1258 goto bummer;
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001261 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 goto bummer;
1263 }
1264
NeilBrowne79eff12007-02-12 00:53:30 -08001265 if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001266 svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001267 return (struct svc_xprt *)svsk;
NeilBrowne79eff12007-02-12 00:53:30 -08001268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270bummer:
1271 dprintk("svc: svc_create_socket error = %d\n", -error);
1272 sock_release(sock);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001273 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
1276/*
Tom Tucker755ccea2007-12-30 21:07:27 -06001277 * Detach the svc_sock from the socket so that no
1278 * more callbacks occur.
1279 */
1280static void svc_sock_detach(struct svc_xprt *xprt)
1281{
1282 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1283 struct sock *sk = svsk->sk_sk;
1284
1285 dprintk("svc: svc_sock_detach(%p)\n", svsk);
1286
1287 /* put back the old socket callbacks */
1288 sk->sk_state_change = svsk->sk_ostate;
1289 sk->sk_data_ready = svsk->sk_odata;
1290 sk->sk_write_space = svsk->sk_owspace;
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001291
1292 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
1293 wake_up_interruptible(sk->sk_sleep);
1294}
1295
1296/*
1297 * Disconnect the socket, and reset the callbacks
1298 */
1299static void svc_tcp_sock_detach(struct svc_xprt *xprt)
1300{
1301 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1302
1303 dprintk("svc: svc_tcp_sock_detach(%p)\n", svsk);
1304
1305 svc_sock_detach(xprt);
1306
1307 if (!test_bit(XPT_LISTENER, &xprt->xpt_flags))
1308 kernel_sock_shutdown(svsk->sk_sock, SHUT_RDWR);
Tom Tucker755ccea2007-12-30 21:07:27 -06001309}
1310
1311/*
1312 * Free the svc_sock's socket resources and the svc_sock itself.
1313 */
1314static void svc_sock_free(struct svc_xprt *xprt)
1315{
1316 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1317 dprintk("svc: svc_sock_free(%p)\n", svsk);
1318
Tom Tucker755ccea2007-12-30 21:07:27 -06001319 if (svsk->sk_sock->file)
1320 sockfd_put(svsk->sk_sock);
1321 else
1322 sock_release(svsk->sk_sock);
1323 kfree(svsk);
1324}