blob: 7a2a90fb2e06e0543cd752c06fedf68842f9d8de [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
107 if (skb) {
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600108 struct svc_sock *svsk =
109 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tucker5148bf42007-12-30 21:07:25 -0600110 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 dprintk("svc: service %p, releasing skb %p\n", rqstp, skb);
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600113 skb_free_datagram(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Chuck Leverb92503b2007-02-12 00:53:36 -0800117union svc_pktinfo_u {
118 struct in_pktinfo pkti;
Chuck Leverb92503b2007-02-12 00:53:36 -0800119 struct in6_pktinfo pkti6;
Chuck Leverb92503b2007-02-12 00:53:36 -0800120};
David S. Millerbc375ea2007-04-12 13:35:59 -0700121#define SVC_PKTINFO_SPACE \
122 CMSG_SPACE(sizeof(union svc_pktinfo_u))
Chuck Leverb92503b2007-02-12 00:53:36 -0800123
124static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh)
125{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600126 struct svc_sock *svsk =
127 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
128 switch (svsk->sk_sk->sk_family) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800129 case AF_INET: {
130 struct in_pktinfo *pki = CMSG_DATA(cmh);
131
132 cmh->cmsg_level = SOL_IP;
133 cmh->cmsg_type = IP_PKTINFO;
134 pki->ipi_ifindex = 0;
135 pki->ipi_spec_dst.s_addr = rqstp->rq_daddr.addr.s_addr;
136 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
137 }
138 break;
NeilBrown5a05ed72007-03-06 01:42:22 -0800139
Chuck Leverb92503b2007-02-12 00:53:36 -0800140 case AF_INET6: {
141 struct in6_pktinfo *pki = CMSG_DATA(cmh);
142
143 cmh->cmsg_level = SOL_IPV6;
144 cmh->cmsg_type = IPV6_PKTINFO;
145 pki->ipi6_ifindex = 0;
146 ipv6_addr_copy(&pki->ipi6_addr,
147 &rqstp->rq_daddr.addr6);
148 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
149 }
150 break;
Chuck Leverb92503b2007-02-12 00:53:36 -0800151 }
152 return;
153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/*
156 * Generic sendto routine
157 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600158static int svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600160 struct svc_sock *svsk =
161 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct socket *sock = svsk->sk_sock;
163 int slen;
David S. Millerbc375ea2007-04-12 13:35:59 -0700164 union {
165 struct cmsghdr hdr;
166 long all[SVC_PKTINFO_SPACE / sizeof(long)];
167 } buffer;
168 struct cmsghdr *cmh = &buffer.hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 int len = 0;
170 int result;
171 int size;
172 struct page **ppage = xdr->pages;
173 size_t base = xdr->page_base;
174 unsigned int pglen = xdr->page_len;
175 unsigned int flags = MSG_MORE;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300176 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 slen = xdr->len;
179
180 if (rqstp->rq_prot == IPPROTO_UDP) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800181 struct msghdr msg = {
182 .msg_name = &rqstp->rq_addr,
183 .msg_namelen = rqstp->rq_addrlen,
184 .msg_control = cmh,
185 .msg_controllen = sizeof(buffer),
186 .msg_flags = MSG_MORE,
187 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Chuck Leverb92503b2007-02-12 00:53:36 -0800189 svc_set_cmsg_data(rqstp, cmh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 if (sock_sendmsg(sock, &msg, 0) < 0)
192 goto out;
193 }
194
195 /* send head */
196 if (slen == xdr->head[0].iov_len)
197 flags = 0;
NeilBrown44524352006-10-04 02:15:46 -0700198 len = kernel_sendpage(sock, rqstp->rq_respages[0], 0,
199 xdr->head[0].iov_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if (len != xdr->head[0].iov_len)
201 goto out;
202 slen -= xdr->head[0].iov_len;
203 if (slen == 0)
204 goto out;
205
206 /* send page data */
207 size = PAGE_SIZE - base < pglen ? PAGE_SIZE - base : pglen;
208 while (pglen > 0) {
209 if (slen == size)
210 flags = 0;
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700211 result = kernel_sendpage(sock, *ppage, base, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (result > 0)
213 len += result;
214 if (result != size)
215 goto out;
216 slen -= size;
217 pglen -= size;
218 size = PAGE_SIZE < pglen ? PAGE_SIZE : pglen;
219 base = 0;
220 ppage++;
221 }
222 /* send tail */
223 if (xdr->tail[0].iov_len) {
NeilBrown44524352006-10-04 02:15:46 -0700224 result = kernel_sendpage(sock, rqstp->rq_respages[0],
225 ((unsigned long)xdr->tail[0].iov_base)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800226 & (PAGE_SIZE-1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 xdr->tail[0].iov_len, 0);
228
229 if (result > 0)
230 len += result;
231 }
232out:
Chuck Leverad06e4b2007-02-12 00:53:32 -0800233 dprintk("svc: socket %p sendto([%p %Zu... ], %d) = %d (addr %s)\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600234 svsk, xdr->head[0].iov_base, xdr->head[0].iov_len,
Chuck Leverad06e4b2007-02-12 00:53:32 -0800235 xdr->len, len, svc_print_addr(rqstp, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 return len;
238}
239
240/*
NeilBrown80212d52006-10-02 02:17:47 -0700241 * Report socket names for nfsdfs
242 */
243static int one_sock_name(char *buf, struct svc_sock *svsk)
244{
245 int len;
246
247 switch(svsk->sk_sk->sk_family) {
248 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -0700249 len = sprintf(buf, "ipv4 %s %pI4 %d\n",
250 svsk->sk_sk->sk_protocol == IPPROTO_UDP ?
NeilBrown80212d52006-10-02 02:17:47 -0700251 "udp" : "tcp",
Harvey Harrison21454aa2008-10-31 00:54:56 -0700252 &inet_sk(svsk->sk_sk)->rcv_saddr,
NeilBrown80212d52006-10-02 02:17:47 -0700253 inet_sk(svsk->sk_sk)->num);
254 break;
255 default:
256 len = sprintf(buf, "*unknown-%d*\n",
257 svsk->sk_sk->sk_family);
258 }
259 return len;
260}
261
262int
NeilBrownb41b66d2006-10-02 02:17:48 -0700263svc_sock_names(char *buf, struct svc_serv *serv, char *toclose)
NeilBrown80212d52006-10-02 02:17:47 -0700264{
NeilBrownb41b66d2006-10-02 02:17:48 -0700265 struct svc_sock *svsk, *closesk = NULL;
NeilBrown80212d52006-10-02 02:17:47 -0700266 int len = 0;
267
268 if (!serv)
269 return 0;
NeilBrownaaf68cf2007-02-08 14:20:30 -0800270 spin_lock_bh(&serv->sv_lock);
Tom Tucker7a182082007-12-30 21:07:53 -0600271 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list) {
NeilBrown80212d52006-10-02 02:17:47 -0700272 int onelen = one_sock_name(buf+len, svsk);
NeilBrownb41b66d2006-10-02 02:17:48 -0700273 if (toclose && strcmp(toclose, buf+len) == 0)
274 closesk = svsk;
275 else
276 len += onelen;
NeilBrown80212d52006-10-02 02:17:47 -0700277 }
NeilBrownaaf68cf2007-02-08 14:20:30 -0800278 spin_unlock_bh(&serv->sv_lock);
NeilBrownb41b66d2006-10-02 02:17:48 -0700279 if (closesk)
NeilBrown5680c442006-10-04 02:15:45 -0700280 /* Should unregister with portmap, but you cannot
281 * unregister just one protocol...
282 */
Tom Tucker7a182082007-12-30 21:07:53 -0600283 svc_close_xprt(&closesk->sk_xprt);
NeilBrown37a03472006-10-04 02:15:44 -0700284 else if (toclose)
285 return -ENOENT;
NeilBrown80212d52006-10-02 02:17:47 -0700286 return len;
287}
Trond Myklebust24c37672008-12-23 16:30:12 -0500288EXPORT_SYMBOL_GPL(svc_sock_names);
NeilBrown80212d52006-10-02 02:17:47 -0700289
290/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 * Check input queue length
292 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600293static int svc_recv_available(struct svc_sock *svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 struct socket *sock = svsk->sk_sock;
296 int avail, err;
297
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700298 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 return (err >= 0)? avail : err;
301}
302
303/*
304 * Generic recvfrom routine.
305 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600306static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr,
307 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600309 struct svc_sock *svsk =
310 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Chuck Lever1ba95102007-02-12 00:53:31 -0800311 struct msghdr msg = {
312 .msg_flags = MSG_DONTWAIT,
313 };
314 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Tom Tucker260c1d12007-12-30 21:08:29 -0600316 rqstp->rq_xprt_hlen = 0;
317
Chuck Lever1ba95102007-02-12 00:53:31 -0800318 len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
319 msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
Chuck Lever1ba95102007-02-12 00:53:31 -0800322 svsk, iov[0].iov_base, iov[0].iov_len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return len;
324}
325
326/*
327 * Set socket snd and rcv buffer lengths
328 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600329static void svc_sock_setbufsize(struct socket *sock, unsigned int snd,
330 unsigned int rcv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332#if 0
333 mm_segment_t oldfs;
334 oldfs = get_fs(); set_fs(KERNEL_DS);
335 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
336 (char*)&snd, sizeof(snd));
337 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
338 (char*)&rcv, sizeof(rcv));
339#else
340 /* sock_setsockopt limits use to sysctl_?mem_max,
341 * which isn't acceptable. Until that is made conditional
342 * on not having CAP_SYS_RESOURCE or similar, we go direct...
343 * DaveM said I could!
344 */
345 lock_sock(sock->sk);
346 sock->sk->sk_sndbuf = snd * 2;
347 sock->sk->sk_rcvbuf = rcv * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 release_sock(sock->sk);
349#endif
350}
351/*
352 * INET callback when data has been received on the socket.
353 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600354static void svc_udp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Neil Brown939bb7e2005-09-13 01:25:39 -0700356 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Neil Brown939bb7e2005-09-13 01:25:39 -0700358 if (svsk) {
359 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600360 svsk, sk, count,
361 test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
362 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600363 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
366 wake_up_interruptible(sk->sk_sleep);
367}
368
369/*
370 * INET callback when space is newly available on the socket.
371 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600372static void svc_write_space(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
374 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
375
376 if (svsk) {
377 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600378 svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
Tom Tuckerf6150c32007-12-30 21:07:57 -0600379 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381
382 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) {
Neil Brown939bb7e2005-09-13 01:25:39 -0700383 dprintk("RPC svc_write_space: someone sleeping on %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 svsk);
385 wake_up_interruptible(sk->sk_sleep);
386 }
387}
388
Tom Tucker9dbc2402007-12-30 21:08:12 -0600389/*
390 * Copy the UDP datagram's destination address to the rqstp structure.
391 * The 'destination' address in this case is the address to which the
392 * peer sent the datagram, i.e. our local address. For multihomed
393 * hosts, this can change from msg to msg. Note that only the IP
394 * address changes, the port number should remain the same.
395 */
396static void svc_udp_get_dest_address(struct svc_rqst *rqstp,
397 struct cmsghdr *cmh)
Chuck Lever95756482007-02-12 00:53:38 -0800398{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600399 struct svc_sock *svsk =
400 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
401 switch (svsk->sk_sk->sk_family) {
Chuck Lever95756482007-02-12 00:53:38 -0800402 case AF_INET: {
NeilBrown7a37f572007-03-06 01:42:21 -0800403 struct in_pktinfo *pki = CMSG_DATA(cmh);
404 rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_addr;
Chuck Lever95756482007-02-12 00:53:38 -0800405 break;
NeilBrown7a37f572007-03-06 01:42:21 -0800406 }
Chuck Lever95756482007-02-12 00:53:38 -0800407 case AF_INET6: {
NeilBrown7a37f572007-03-06 01:42:21 -0800408 struct in6_pktinfo *pki = CMSG_DATA(cmh);
409 ipv6_addr_copy(&rqstp->rq_daddr.addr6, &pki->ipi6_addr);
Chuck Lever95756482007-02-12 00:53:38 -0800410 break;
NeilBrown7a37f572007-03-06 01:42:21 -0800411 }
Chuck Lever95756482007-02-12 00:53:38 -0800412 }
Chuck Lever95756482007-02-12 00:53:38 -0800413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/*
416 * Receive a datagram from a UDP socket.
417 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600418static int svc_udp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600420 struct svc_sock *svsk =
421 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600422 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 struct sk_buff *skb;
David S. Millerbc375ea2007-04-12 13:35:59 -0700424 union {
425 struct cmsghdr hdr;
426 long all[SVC_PKTINFO_SPACE / sizeof(long)];
427 } buffer;
428 struct cmsghdr *cmh = &buffer.hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 int err, len;
NeilBrown7a37f572007-03-06 01:42:21 -0800430 struct msghdr msg = {
431 .msg_name = svc_addr(rqstp),
432 .msg_control = cmh,
433 .msg_controllen = sizeof(buffer),
434 .msg_flags = MSG_DONTWAIT,
435 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Tom Tucker02fc6c32007-12-30 21:07:48 -0600437 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 /* udp sockets need large rcvbuf as all pending
439 * requests are still in that buffer. sndbuf must
440 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700441 * for one reply per thread. We count all threads
442 * rather than threads in a particular pool, which
443 * provides an upper bound on the number of threads
444 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 */
446 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700447 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
448 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Tom Tucker02fc6c32007-12-30 21:07:48 -0600450 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
NeilBrown05ed6902007-05-09 02:34:55 -0700451 skb = NULL;
452 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
453 0, 0, MSG_PEEK | MSG_DONTWAIT);
454 if (err >= 0)
455 skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err);
456
457 if (skb == NULL) {
458 if (err != -EAGAIN) {
459 /* possibly an icmp error */
460 dprintk("svc: recvfrom returned error %d\n", -err);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600461 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
Tom Tuckera6046f72007-12-30 21:08:01 -0600463 svc_xprt_received(&svsk->sk_xprt);
NeilBrown05ed6902007-05-09 02:34:55 -0700464 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600466 len = svc_addr_len(svc_addr(rqstp));
467 if (len < 0)
468 return len;
469 rqstp->rq_addrlen = len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700470 if (skb->tstamp.tv64 == 0) {
471 skb->tstamp = ktime_get_real();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800472 /* Don't enable netstamp, sunrpc doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 need that much accuracy */
474 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700475 svsk->sk_sk->sk_stamp = skb->tstamp;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600476 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); /* there may be more data... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 /*
479 * Maybe more packets - kick another thread ASAP.
480 */
Tom Tuckera6046f72007-12-30 21:08:01 -0600481 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 len = skb->len - sizeof(struct udphdr);
484 rqstp->rq_arg.len = len;
485
Chuck Lever95756482007-02-12 00:53:38 -0800486 rqstp->rq_prot = IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
NeilBrown7a37f572007-03-06 01:42:21 -0800488 if (cmh->cmsg_level != IPPROTO_IP ||
489 cmh->cmsg_type != IP_PKTINFO) {
490 if (net_ratelimit())
491 printk("rpcsvc: received unknown control message:"
492 "%d/%d\n",
493 cmh->cmsg_level, cmh->cmsg_type);
494 skb_free_datagram(svsk->sk_sk, skb);
495 return 0;
496 }
497 svc_udp_get_dest_address(rqstp, cmh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 if (skb_is_nonlinear(skb)) {
500 /* we have to copy */
501 local_bh_disable();
502 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
503 local_bh_enable();
504 /* checksum error */
505 skb_free_datagram(svsk->sk_sk, skb);
506 return 0;
507 }
508 local_bh_enable();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800509 skb_free_datagram(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 } else {
511 /* we can use it in-place */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600512 rqstp->rq_arg.head[0].iov_base = skb->data +
513 sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 rqstp->rq_arg.head[0].iov_len = len;
Herbert Xufb286bb2005-11-10 13:01:24 -0800515 if (skb_checksum_complete(skb)) {
516 skb_free_datagram(svsk->sk_sk, skb);
517 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
Tom Tucker5148bf42007-12-30 21:07:25 -0600519 rqstp->rq_xprt_ctxt = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521
522 rqstp->rq_arg.page_base = 0;
523 if (len <= rqstp->rq_arg.head[0].iov_len) {
524 rqstp->rq_arg.head[0].iov_len = len;
525 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700526 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 } else {
528 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700529 rqstp->rq_respages = rqstp->rq_pages + 1 +
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700530 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532
533 if (serv->sv_stats)
534 serv->sv_stats->netudpcnt++;
535
536 return len;
537}
538
539static int
540svc_udp_sendto(struct svc_rqst *rqstp)
541{
542 int error;
543
544 error = svc_sendto(rqstp, &rqstp->rq_res);
545 if (error == -ECONNREFUSED)
546 /* ICMP error on earlier request. */
547 error = svc_sendto(rqstp, &rqstp->rq_res);
548
549 return error;
550}
551
Tom Tuckere831fe62007-12-30 21:07:29 -0600552static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp)
553{
554}
555
Tom Tucker323bee32007-12-30 21:07:31 -0600556static int svc_udp_has_wspace(struct svc_xprt *xprt)
557{
558 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600559 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600560 unsigned long required;
561
562 /*
563 * Set the SOCK_NOSPACE flag before checking the available
564 * sock space.
565 */
566 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600567 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600568 if (required*2 > sock_wspace(svsk->sk_sk))
569 return 0;
570 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
571 return 1;
572}
573
Tom Tucker38a417c2007-12-30 21:07:36 -0600574static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt)
575{
576 BUG();
577 return NULL;
578}
579
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600580static struct svc_xprt *svc_udp_create(struct svc_serv *serv,
581 struct sockaddr *sa, int salen,
582 int flags)
583{
584 return svc_create_socket(serv, IPPROTO_UDP, sa, salen, flags);
585}
586
Tom Tucker360d87382007-12-30 21:07:17 -0600587static struct svc_xprt_ops svc_udp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600588 .xpo_create = svc_udp_create,
Tom Tucker5d137992007-12-30 21:07:23 -0600589 .xpo_recvfrom = svc_udp_recvfrom,
590 .xpo_sendto = svc_udp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -0600591 .xpo_release_rqst = svc_release_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -0600592 .xpo_detach = svc_sock_detach,
593 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -0600594 .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -0600595 .xpo_has_wspace = svc_udp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -0600596 .xpo_accept = svc_udp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -0600597};
598
599static struct svc_xprt_class svc_udp_class = {
600 .xcl_name = "udp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600601 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -0600602 .xcl_ops = &svc_udp_ops,
Tom Tucker49023152007-12-30 21:07:21 -0600603 .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP,
Tom Tucker360d87382007-12-30 21:07:17 -0600604};
605
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600606static void svc_udp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
NeilBrown7a37f572007-03-06 01:42:21 -0800608 int one = 1;
609 mm_segment_t oldfs;
610
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600611 svc_xprt_init(&svc_udp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600612 clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
614 svsk->sk_sk->sk_write_space = svc_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800617 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 * svc_udp_recvfrom will re-adjust if necessary
619 */
620 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600621 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
622 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Tom Tucker0f0257e2007-12-30 21:08:27 -0600624 /* data might have come in before data_ready set up */
625 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600626 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
NeilBrown7a37f572007-03-06 01:42:21 -0800627
628 oldfs = get_fs();
629 set_fs(KERNEL_DS);
630 /* make sure we get destination address info */
631 svsk->sk_sock->ops->setsockopt(svsk->sk_sock, IPPROTO_IP, IP_PKTINFO,
632 (char __user *)&one, sizeof(one));
633 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
636/*
637 * A data_ready event on a listening socket means there's a connection
638 * pending. Do not use state_change as a substitute for it.
639 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600640static void svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Neil Brown939bb7e2005-09-13 01:25:39 -0700642 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700645 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Neil Brown939bb7e2005-09-13 01:25:39 -0700647 /*
648 * This callback may called twice when a new connection
649 * is established as a child socket inherits everything
650 * from a parent LISTEN socket.
651 * 1) data_ready method of the parent socket will be called
652 * when one of child sockets become ESTABLISHED.
653 * 2) data_ready method of the child socket may be called
654 * when it receives data before the socket is accepted.
655 * In case of 2, we should ignore it silently.
656 */
657 if (sk->sk_state == TCP_LISTEN) {
658 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600659 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600660 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700661 } else
662 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
Neil Brown939bb7e2005-09-13 01:25:39 -0700664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
666 wake_up_interruptible_all(sk->sk_sleep);
667}
668
669/*
670 * A state change on a connected socket means it's dying or dead.
671 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600672static void svc_tcp_state_change(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Neil Brown939bb7e2005-09-13 01:25:39 -0700674 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700677 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Neil Brown939bb7e2005-09-13 01:25:39 -0700679 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700681 else {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600682 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600683 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
686 wake_up_interruptible_all(sk->sk_sleep);
687}
688
Tom Tucker0f0257e2007-12-30 21:08:27 -0600689static void svc_tcp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Neil Brown939bb7e2005-09-13 01:25:39 -0700691 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700694 sk, sk->sk_user_data);
695 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600696 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600697 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
700 wake_up_interruptible(sk->sk_sleep);
701}
702
703/*
704 * Accept a TCP connection
705 */
Tom Tucker38a417c2007-12-30 21:07:36 -0600706static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
Tom Tucker38a417c2007-12-30 21:07:36 -0600708 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800709 struct sockaddr_storage addr;
710 struct sockaddr *sin = (struct sockaddr *) &addr;
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600711 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 struct socket *sock = svsk->sk_sock;
713 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 struct svc_sock *newsvsk;
715 int err, slen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300716 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
719 if (!sock)
Tom Tucker38a417c2007-12-30 21:07:36 -0600720 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Tom Tucker02fc6c32007-12-30 21:07:48 -0600722 clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700723 err = kernel_accept(sock, &newsock, O_NONBLOCK);
724 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (err == -ENOMEM)
726 printk(KERN_WARNING "%s: no more sockets!\n",
727 serv->sv_name);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700728 else if (err != -EAGAIN && net_ratelimit())
729 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
730 serv->sv_name, -err);
Tom Tucker38a417c2007-12-30 21:07:36 -0600731 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
Tom Tucker02fc6c32007-12-30 21:07:48 -0600733 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800735 err = kernel_getpeername(newsock, sin, &slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (err < 0) {
737 if (net_ratelimit())
738 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
739 serv->sv_name, -err);
740 goto failed; /* aborted connection or whatever */
741 }
742
743 /* Ideally, we would want to reject connections from unauthorized
Chuck Leverad06e4b2007-02-12 00:53:32 -0800744 * hosts here, but when we get encryption, the IP of the host won't
745 * tell us anything. For now just warn about unpriv connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 */
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800747 if (!svc_port_is_privileged(sin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 dprintk(KERN_WARNING
Chuck Leverad06e4b2007-02-12 00:53:32 -0800749 "%s: connect from unprivileged port: %s\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800750 serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800751 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
Chuck Leverad06e4b2007-02-12 00:53:32 -0800753 dprintk("%s: connect from %s\n", serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800754 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 /* make sure that a write doesn't block forever when
757 * low on memory
758 */
759 newsock->sk->sk_sndtimeo = HZ*30;
760
Chuck Lever6b174332007-02-12 00:53:28 -0800761 if (!(newsvsk = svc_setup_socket(serv, newsock, &err,
762 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 goto failed;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600764 svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen);
Frank van Maarseveena9747692007-07-09 22:21:39 +0200765 err = kernel_getsockname(newsock, sin, &slen);
766 if (unlikely(err < 0)) {
767 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
768 slen = offsetof(struct sockaddr, sa_data);
769 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600770 svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -0800771
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600772 if (serv->sv_stats)
773 serv->sv_stats->nettcpconn++;
774
775 return &newsvsk->sk_xprt;
776
777failed:
778 sock_release(newsock);
779 return NULL;
780}
781
782/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 * Receive data from a TCP socket.
784 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600785static int svc_tcp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600787 struct svc_sock *svsk =
788 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600789 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 int len;
NeilBrown3cc03b12006-10-04 02:15:47 -0700791 struct kvec *vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 int pnum, vlen;
793
794 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600795 svsk, test_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags),
796 test_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags),
797 test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Tom Tucker02fc6c32007-12-30 21:07:48 -0600799 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 /* Receive data. If we haven't got the record length yet, get
802 * the next four bytes. Otherwise try to gobble up as much as
803 * possible up to the complete record length.
804 */
Chuck Leverc0401ea2008-04-14 12:27:30 -0400805 if (svsk->sk_tcplen < sizeof(rpc_fraghdr)) {
806 int want = sizeof(rpc_fraghdr) - svsk->sk_tcplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 struct kvec iov;
808
809 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
810 iov.iov_len = want;
811 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
812 goto error;
813 svsk->sk_tcplen += len;
814
815 if (len < want) {
Chuck Leverc0401ea2008-04-14 12:27:30 -0400816 dprintk("svc: short recvfrom while reading record "
817 "length (%d of %d)\n", len, want);
Tom Tuckera6046f72007-12-30 21:08:01 -0600818 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return -EAGAIN; /* record header not complete */
820 }
821
822 svsk->sk_reclen = ntohl(svsk->sk_reclen);
Chuck Leverc0401ea2008-04-14 12:27:30 -0400823 if (!(svsk->sk_reclen & RPC_LAST_STREAM_FRAGMENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 /* FIXME: technically, a record can be fragmented,
825 * and non-terminal fragments will not have the top
826 * bit set in the fragment length header.
827 * But apparently no known nfs clients send fragmented
828 * records. */
NeilBrown34e9a632007-01-29 13:19:52 -0800829 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400830 printk(KERN_NOTICE "RPC: multiple fragments "
831 "per record not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 goto err_delete;
833 }
Chuck Leverc0401ea2008-04-14 12:27:30 -0400834 svsk->sk_reclen &= RPC_FRAGMENT_SIZE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700836 if (svsk->sk_reclen > serv->sv_max_mesg) {
NeilBrown34e9a632007-01-29 13:19:52 -0800837 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400838 printk(KERN_NOTICE "RPC: "
839 "fragment too large: 0x%08lx\n",
840 (unsigned long)svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 goto err_delete;
842 }
843 }
844
845 /* Check whether enough data is available */
846 len = svc_recv_available(svsk);
847 if (len < 0)
848 goto error;
849
850 if (len < svsk->sk_reclen) {
851 dprintk("svc: incomplete TCP record (%d of %d)\n",
852 len, svsk->sk_reclen);
Tom Tuckera6046f72007-12-30 21:08:01 -0600853 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return -EAGAIN; /* record not complete */
855 }
856 len = svsk->sk_reclen;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600857 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
NeilBrown3cc03b12006-10-04 02:15:47 -0700859 vec = rqstp->rq_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 vec[0] = rqstp->rq_arg.head[0];
861 vlen = PAGE_SIZE;
862 pnum = 1;
863 while (vlen < len) {
NeilBrown44524352006-10-04 02:15:46 -0700864 vec[pnum].iov_base = page_address(rqstp->rq_pages[pnum]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 vec[pnum].iov_len = PAGE_SIZE;
866 pnum++;
867 vlen += PAGE_SIZE;
868 }
NeilBrown44524352006-10-04 02:15:46 -0700869 rqstp->rq_respages = &rqstp->rq_pages[pnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 /* Now receive data */
872 len = svc_recvfrom(rqstp, vec, pnum, len);
873 if (len < 0)
874 goto error;
875
876 dprintk("svc: TCP complete record (%d bytes)\n", len);
877 rqstp->rq_arg.len = len;
878 rqstp->rq_arg.page_base = 0;
879 if (len <= rqstp->rq_arg.head[0].iov_len) {
880 rqstp->rq_arg.head[0].iov_len = len;
881 rqstp->rq_arg.page_len = 0;
882 } else {
883 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
884 }
885
Tom Tucker5148bf42007-12-30 21:07:25 -0600886 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 rqstp->rq_prot = IPPROTO_TCP;
888
889 /* Reset TCP read info */
890 svsk->sk_reclen = 0;
891 svsk->sk_tcplen = 0;
892
Tom Tucker9dbc2402007-12-30 21:08:12 -0600893 svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt);
Tom Tuckera6046f72007-12-30 21:08:01 -0600894 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (serv->sv_stats)
896 serv->sv_stats->nettcpcnt++;
897
898 return len;
899
900 err_delete:
Tom Tucker02fc6c32007-12-30 21:07:48 -0600901 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return -EAGAIN;
903
904 error:
905 if (len == -EAGAIN) {
906 dprintk("RPC: TCP recvfrom got EAGAIN\n");
Tom Tuckera6046f72007-12-30 21:08:01 -0600907 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 } else {
909 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600910 svsk->sk_xprt.xpt_server->sv_name, -len);
Olaf Kirch93fbf1a2006-01-06 00:19:56 -0800911 goto err_delete;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
913
914 return len;
915}
916
917/*
918 * Send out data on TCP socket.
919 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600920static int svc_tcp_sendto(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
922 struct xdr_buf *xbufp = &rqstp->rq_res;
923 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700924 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 /* Set up the first element of the reply kvec.
927 * Any other kvecs that may be in use have been taken
928 * care of by the server implementation itself.
929 */
930 reclen = htonl(0x80000000|((xbufp->len ) - 4));
931 memcpy(xbufp->head[0].iov_base, &reclen, 4);
932
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600933 if (test_bit(XPT_DEAD, &rqstp->rq_xprt->xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 return -ENOTCONN;
935
936 sent = svc_sendto(rqstp, &rqstp->rq_res);
937 if (sent != xbufp->len) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600938 printk(KERN_NOTICE
939 "rpc-srv/tcp: %s: %s %d when sending %d bytes "
940 "- shutting down socket\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600941 rqstp->rq_xprt->xpt_server->sv_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 (sent<0)?"got error":"sent only",
943 sent, xbufp->len);
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600944 set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600945 svc_xprt_enqueue(rqstp->rq_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 sent = -EAGAIN;
947 }
948 return sent;
949}
950
Tom Tuckere831fe62007-12-30 21:07:29 -0600951/*
952 * Setup response header. TCP has a 4B record length field.
953 */
954static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp)
955{
956 struct kvec *resv = &rqstp->rq_res.head[0];
957
958 /* tcp needs a space for the record length... */
959 svc_putnl(resv, 0);
960}
961
Tom Tucker323bee32007-12-30 21:07:31 -0600962static int svc_tcp_has_wspace(struct svc_xprt *xprt)
963{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600964 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600965 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600966 int required;
967 int wspace;
968
969 /*
970 * Set the SOCK_NOSPACE flag before checking the available
971 * sock space.
972 */
973 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600974 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600975 wspace = sk_stream_wspace(svsk->sk_sk);
976
977 if (wspace < sk_stream_min_wspace(svsk->sk_sk))
978 return 0;
979 if (required * 2 > wspace)
980 return 0;
981
982 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
983 return 1;
984}
985
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600986static struct svc_xprt *svc_tcp_create(struct svc_serv *serv,
987 struct sockaddr *sa, int salen,
988 int flags)
989{
990 return svc_create_socket(serv, IPPROTO_TCP, sa, salen, flags);
991}
992
Tom Tucker360d87382007-12-30 21:07:17 -0600993static struct svc_xprt_ops svc_tcp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600994 .xpo_create = svc_tcp_create,
Tom Tucker5d137992007-12-30 21:07:23 -0600995 .xpo_recvfrom = svc_tcp_recvfrom,
996 .xpo_sendto = svc_tcp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -0600997 .xpo_release_rqst = svc_release_skb,
Trond Myklebust69b6ba32008-12-23 16:30:11 -0500998 .xpo_detach = svc_tcp_sock_detach,
Tom Tucker755ccea2007-12-30 21:07:27 -0600999 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -06001000 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -06001001 .xpo_has_wspace = svc_tcp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -06001002 .xpo_accept = svc_tcp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -06001003};
1004
1005static struct svc_xprt_class svc_tcp_class = {
1006 .xcl_name = "tcp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001007 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -06001008 .xcl_ops = &svc_tcp_ops,
Tom Tucker49023152007-12-30 21:07:21 -06001009 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
Tom Tucker360d87382007-12-30 21:07:17 -06001010};
1011
1012void svc_init_xprt_sock(void)
1013{
1014 svc_reg_xprt_class(&svc_tcp_class);
1015 svc_reg_xprt_class(&svc_udp_class);
1016}
1017
1018void svc_cleanup_xprt_sock(void)
1019{
1020 svc_unreg_xprt_class(&svc_tcp_class);
1021 svc_unreg_xprt_class(&svc_udp_class);
1022}
1023
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001024static void svc_tcp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
1026 struct sock *sk = svsk->sk_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001028 svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -06001029 set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 if (sk->sk_state == TCP_LISTEN) {
1031 dprintk("setting up TCP socket for listening\n");
Tom Tucker02fc6c32007-12-30 21:07:48 -06001032 set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 sk->sk_data_ready = svc_tcp_listen_data_ready;
Tom Tucker02fc6c32007-12-30 21:07:48 -06001034 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 } else {
1036 dprintk("setting up TCP socket for reading\n");
1037 sk->sk_state_change = svc_tcp_state_change;
1038 sk->sk_data_ready = svc_tcp_data_ready;
1039 sk->sk_write_space = svc_write_space;
1040
1041 svsk->sk_reclen = 0;
1042 svsk->sk_tcplen = 0;
1043
Chuck Leverb7872fe2008-04-14 12:27:01 -04001044 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Tom Tucker02fc6c32007-12-30 21:07:48 -06001046 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001047 if (sk->sk_state != TCP_ESTABLISHED)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001048 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050}
1051
Tom Tucker0f0257e2007-12-30 21:08:27 -06001052void svc_sock_update_bufs(struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
1054 /*
1055 * The number of server threads has changed. Update
1056 * rcvbuf and sndbuf accordingly on all sockets
1057 */
1058 struct list_head *le;
1059
1060 spin_lock_bh(&serv->sv_lock);
1061 list_for_each(le, &serv->sv_permsocks) {
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001062 struct svc_sock *svsk =
Tom Tucker7a182082007-12-30 21:07:53 -06001063 list_entry(le, struct svc_sock, sk_xprt.xpt_list);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001064 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
1066 list_for_each(le, &serv->sv_tempsocks) {
1067 struct svc_sock *svsk =
Tom Tucker7a182082007-12-30 21:07:53 -06001068 list_entry(le, struct svc_sock, sk_xprt.xpt_list);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001069 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 }
1071 spin_unlock_bh(&serv->sv_lock);
1072}
Trond Myklebust24c37672008-12-23 16:30:12 -05001073EXPORT_SYMBOL_GPL(svc_sock_update_bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 * Initialize socket for RPC use and create svc_sock struct
1077 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1078 */
Chuck Lever6b174332007-02-12 00:53:28 -08001079static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1080 struct socket *sock,
1081 int *errp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
1083 struct svc_sock *svsk;
1084 struct sock *inet;
Chuck Lever6b174332007-02-12 00:53:28 -08001085 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
Chuck Leverb6632332008-08-18 19:33:44 -04001086 int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088 dprintk("svc: svc_setup_socket %p\n", sock);
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001089 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 *errp = -ENOMEM;
1091 return NULL;
1092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 inet = sock->sk;
1095
1096 /* Register socket with portmapper */
1097 if (*errp >= 0 && pmap_register)
1098 *errp = svc_register(serv, inet->sk_protocol,
1099 ntohs(inet_sk(inet)->sport));
1100
1101 if (*errp < 0) {
1102 kfree(svsk);
1103 return NULL;
1104 }
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 inet->sk_user_data = svsk;
1107 svsk->sk_sock = sock;
1108 svsk->sk_sk = inet;
1109 svsk->sk_ostate = inet->sk_state_change;
1110 svsk->sk_odata = inet->sk_data_ready;
1111 svsk->sk_owspace = inet->sk_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 /* Initialize the socket */
1114 if (sock->type == SOCK_DGRAM)
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001115 svc_udp_init(svsk, serv);
Olga Kornievskaia47a14ef2008-10-21 14:13:47 -04001116 else {
1117 /* initialise setting must have enough space to
1118 * receive and respond to one request.
1119 */
1120 svc_sock_setbufsize(svsk->sk_sock, 4 * serv->sv_max_mesg,
1121 4 * serv->sv_max_mesg);
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001122 svc_tcp_init(svsk, serv);
Olga Kornievskaia47a14ef2008-10-21 14:13:47 -04001123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Chuck Leverb6632332008-08-18 19:33:44 -04001125 /*
1126 * We start one listener per sv_serv. We want AF_INET
1127 * requests to be automatically shunted to our AF_INET6
1128 * listener using a mapped IPv4 address. Make sure
1129 * no-one starts an equivalent IPv4 listener, which
1130 * would steal our incoming connections.
1131 */
1132 val = 0;
1133 if (serv->sv_family == AF_INET6)
1134 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
1135 (char *)&val, sizeof(val));
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1138 svsk, svsk->sk_sk);
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 return svsk;
1141}
1142
NeilBrownb41b66d2006-10-02 02:17:48 -07001143int svc_addsock(struct svc_serv *serv,
1144 int fd,
Chuck Lever29373912008-10-03 17:15:38 -04001145 char *name_return)
NeilBrownb41b66d2006-10-02 02:17:48 -07001146{
1147 int err = 0;
1148 struct socket *so = sockfd_lookup(fd, &err);
1149 struct svc_sock *svsk = NULL;
1150
1151 if (!so)
1152 return err;
1153 if (so->sk->sk_family != AF_INET)
1154 err = -EAFNOSUPPORT;
1155 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1156 so->sk->sk_protocol != IPPROTO_UDP)
1157 err = -EPROTONOSUPPORT;
1158 else if (so->state > SS_UNCONNECTED)
1159 err = -EISCONN;
1160 else {
Tom Tucker2da2c212008-11-23 09:58:08 -06001161 if (!try_module_get(THIS_MODULE))
1162 err = -ENOENT;
1163 else
1164 svsk = svc_setup_socket(serv, so, &err,
1165 SVC_SOCK_DEFAULTS);
NeilBrowne79eff12007-02-12 00:53:30 -08001166 if (svsk) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001167 struct sockaddr_storage addr;
1168 struct sockaddr *sin = (struct sockaddr *)&addr;
1169 int salen;
1170 if (kernel_getsockname(svsk->sk_sock, sin, &salen) == 0)
1171 svc_xprt_set_local(&svsk->sk_xprt, sin, salen);
Tom Tucker4e5caaa2007-12-30 21:08:20 -06001172 clear_bit(XPT_TEMP, &svsk->sk_xprt.xpt_flags);
1173 spin_lock_bh(&serv->sv_lock);
1174 list_add(&svsk->sk_xprt.xpt_list, &serv->sv_permsocks);
1175 spin_unlock_bh(&serv->sv_lock);
Tom Tuckera6046f72007-12-30 21:08:01 -06001176 svc_xprt_received(&svsk->sk_xprt);
NeilBrownb41b66d2006-10-02 02:17:48 -07001177 err = 0;
Tom Tucker2da2c212008-11-23 09:58:08 -06001178 } else
1179 module_put(THIS_MODULE);
NeilBrownb41b66d2006-10-02 02:17:48 -07001180 }
1181 if (err) {
1182 sockfd_put(so);
1183 return err;
1184 }
NeilBrownb41b66d2006-10-02 02:17:48 -07001185 return one_sock_name(name_return, svsk);
1186}
1187EXPORT_SYMBOL_GPL(svc_addsock);
1188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189/*
1190 * Create socket for RPC service.
1191 */
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001192static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
1193 int protocol,
1194 struct sockaddr *sin, int len,
1195 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
1197 struct svc_sock *svsk;
1198 struct socket *sock;
1199 int error;
1200 int type;
Tom Tucker9dbc2402007-12-30 21:08:12 -06001201 struct sockaddr_storage addr;
1202 struct sockaddr *newsin = (struct sockaddr *)&addr;
1203 int newlen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +03001204 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Chuck Leverad06e4b2007-02-12 00:53:32 -08001206 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1207 serv->sv_program->pg_name, protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001208 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1211 printk(KERN_WARNING "svc: only UDP and TCP "
1212 "sockets supported\n");
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001213 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
1215 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1216
Chuck Lever77f1f672007-02-12 00:53:39 -08001217 error = sock_create_kern(sin->sa_family, type, protocol, &sock);
1218 if (error < 0)
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001219 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Peter Zijlstraed075362006-12-06 20:35:24 -08001221 svc_reclassify_socket(sock);
1222
Eric Sesterhenn18114742006-09-28 14:37:07 -07001223 if (type == SOCK_STREAM)
Chuck Lever77f1f672007-02-12 00:53:39 -08001224 sock->sk->sk_reuse = 1; /* allow address reuse */
1225 error = kernel_bind(sock, sin, len);
Eric Sesterhenn18114742006-09-28 14:37:07 -07001226 if (error < 0)
1227 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Tom Tucker9dbc2402007-12-30 21:08:12 -06001229 newlen = len;
1230 error = kernel_getsockname(sock, newsin, &newlen);
1231 if (error < 0)
1232 goto bummer;
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001235 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 goto bummer;
1237 }
1238
NeilBrowne79eff12007-02-12 00:53:30 -08001239 if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001240 svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001241 return (struct svc_xprt *)svsk;
NeilBrowne79eff12007-02-12 00:53:30 -08001242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244bummer:
1245 dprintk("svc: svc_create_socket error = %d\n", -error);
1246 sock_release(sock);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001247 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249
1250/*
Tom Tucker755ccea2007-12-30 21:07:27 -06001251 * Detach the svc_sock from the socket so that no
1252 * more callbacks occur.
1253 */
1254static void svc_sock_detach(struct svc_xprt *xprt)
1255{
1256 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1257 struct sock *sk = svsk->sk_sk;
1258
1259 dprintk("svc: svc_sock_detach(%p)\n", svsk);
1260
1261 /* put back the old socket callbacks */
1262 sk->sk_state_change = svsk->sk_ostate;
1263 sk->sk_data_ready = svsk->sk_odata;
1264 sk->sk_write_space = svsk->sk_owspace;
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001265
1266 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
1267 wake_up_interruptible(sk->sk_sleep);
1268}
1269
1270/*
1271 * Disconnect the socket, and reset the callbacks
1272 */
1273static void svc_tcp_sock_detach(struct svc_xprt *xprt)
1274{
1275 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1276
1277 dprintk("svc: svc_tcp_sock_detach(%p)\n", svsk);
1278
1279 svc_sock_detach(xprt);
1280
1281 if (!test_bit(XPT_LISTENER, &xprt->xpt_flags))
1282 kernel_sock_shutdown(svsk->sk_sock, SHUT_RDWR);
Tom Tucker755ccea2007-12-30 21:07:27 -06001283}
1284
1285/*
1286 * Free the svc_sock's socket resources and the svc_sock itself.
1287 */
1288static void svc_sock_free(struct svc_xprt *xprt)
1289{
1290 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1291 dprintk("svc: svc_sock_free(%p)\n", svsk);
1292
Tom Tucker755ccea2007-12-30 21:07:27 -06001293 if (svsk->sk_sock->file)
1294 sockfd_put(svsk->sk_sock);
1295 else
1296 sock_release(svsk->sk_sock);
1297 kfree(svsk);
1298}