blob: a1951dcc577614df63fc0a3ab1e5ce92dce9d7ab [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 Tucker360d8732007-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 *);
62static void svc_sock_free(struct svc_xprt *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Tom Tuckerb700cbb2007-12-30 21:07:42 -060064static struct svc_xprt *svc_create_socket(struct svc_serv *, int,
65 struct sockaddr *, int, int);
Peter Zijlstraed075362006-12-06 20:35:24 -080066#ifdef CONFIG_DEBUG_LOCK_ALLOC
67static struct lock_class_key svc_key[2];
68static struct lock_class_key svc_slock_key[2];
69
Tom Tucker0f0257e2007-12-30 21:08:27 -060070static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -080071{
72 struct sock *sk = sock->sk;
John Heffner02b3d342007-09-12 10:42:12 +020073 BUG_ON(sock_owned_by_user(sk));
Peter Zijlstraed075362006-12-06 20:35:24 -080074 switch (sk->sk_family) {
75 case AF_INET:
76 sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060077 &svc_slock_key[0],
78 "sk_xprt.xpt_lock-AF_INET-NFSD",
79 &svc_key[0]);
Peter Zijlstraed075362006-12-06 20:35:24 -080080 break;
81
82 case AF_INET6:
83 sock_lock_init_class_and_name(sk, "slock-AF_INET6-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060084 &svc_slock_key[1],
85 "sk_xprt.xpt_lock-AF_INET6-NFSD",
86 &svc_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -080087 break;
88
89 default:
90 BUG();
91 }
92}
93#else
Tom Tucker0f0257e2007-12-30 21:08:27 -060094static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -080095{
96}
97#endif
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/*
100 * Release an skbuff after use
101 */
Tom Tucker5148bf42007-12-30 21:07:25 -0600102static void svc_release_skb(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Tom Tucker5148bf42007-12-30 21:07:25 -0600104 struct sk_buff *skb = rqstp->rq_xprt_ctxt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 struct svc_deferred_req *dr = rqstp->rq_deferred;
106
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 }
115 if (dr) {
116 rqstp->rq_deferred = NULL;
117 kfree(dr);
118 }
119}
120
Chuck Leverb92503b2007-02-12 00:53:36 -0800121union svc_pktinfo_u {
122 struct in_pktinfo pkti;
Chuck Leverb92503b2007-02-12 00:53:36 -0800123 struct in6_pktinfo pkti6;
Chuck Leverb92503b2007-02-12 00:53:36 -0800124};
David S. Millerbc375ea2007-04-12 13:35:59 -0700125#define SVC_PKTINFO_SPACE \
126 CMSG_SPACE(sizeof(union svc_pktinfo_u))
Chuck Leverb92503b2007-02-12 00:53:36 -0800127
128static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh)
129{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600130 struct svc_sock *svsk =
131 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
132 switch (svsk->sk_sk->sk_family) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800133 case AF_INET: {
134 struct in_pktinfo *pki = CMSG_DATA(cmh);
135
136 cmh->cmsg_level = SOL_IP;
137 cmh->cmsg_type = IP_PKTINFO;
138 pki->ipi_ifindex = 0;
139 pki->ipi_spec_dst.s_addr = rqstp->rq_daddr.addr.s_addr;
140 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
141 }
142 break;
NeilBrown5a05ed72007-03-06 01:42:22 -0800143
Chuck Leverb92503b2007-02-12 00:53:36 -0800144 case AF_INET6: {
145 struct in6_pktinfo *pki = CMSG_DATA(cmh);
146
147 cmh->cmsg_level = SOL_IPV6;
148 cmh->cmsg_type = IPV6_PKTINFO;
149 pki->ipi6_ifindex = 0;
150 ipv6_addr_copy(&pki->ipi6_addr,
151 &rqstp->rq_daddr.addr6);
152 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
153 }
154 break;
Chuck Leverb92503b2007-02-12 00:53:36 -0800155 }
156 return;
157}
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159/*
160 * Generic sendto routine
161 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600162static int svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600164 struct svc_sock *svsk =
165 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 struct socket *sock = svsk->sk_sock;
167 int slen;
David S. Millerbc375ea2007-04-12 13:35:59 -0700168 union {
169 struct cmsghdr hdr;
170 long all[SVC_PKTINFO_SPACE / sizeof(long)];
171 } buffer;
172 struct cmsghdr *cmh = &buffer.hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 int len = 0;
174 int result;
175 int size;
176 struct page **ppage = xdr->pages;
177 size_t base = xdr->page_base;
178 unsigned int pglen = xdr->page_len;
179 unsigned int flags = MSG_MORE;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300180 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 slen = xdr->len;
183
184 if (rqstp->rq_prot == IPPROTO_UDP) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800185 struct msghdr msg = {
186 .msg_name = &rqstp->rq_addr,
187 .msg_namelen = rqstp->rq_addrlen,
188 .msg_control = cmh,
189 .msg_controllen = sizeof(buffer),
190 .msg_flags = MSG_MORE,
191 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Chuck Leverb92503b2007-02-12 00:53:36 -0800193 svc_set_cmsg_data(rqstp, cmh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 if (sock_sendmsg(sock, &msg, 0) < 0)
196 goto out;
197 }
198
199 /* send head */
200 if (slen == xdr->head[0].iov_len)
201 flags = 0;
NeilBrown44524352006-10-04 02:15:46 -0700202 len = kernel_sendpage(sock, rqstp->rq_respages[0], 0,
203 xdr->head[0].iov_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 if (len != xdr->head[0].iov_len)
205 goto out;
206 slen -= xdr->head[0].iov_len;
207 if (slen == 0)
208 goto out;
209
210 /* send page data */
211 size = PAGE_SIZE - base < pglen ? PAGE_SIZE - base : pglen;
212 while (pglen > 0) {
213 if (slen == size)
214 flags = 0;
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700215 result = kernel_sendpage(sock, *ppage, base, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (result > 0)
217 len += result;
218 if (result != size)
219 goto out;
220 slen -= size;
221 pglen -= size;
222 size = PAGE_SIZE < pglen ? PAGE_SIZE : pglen;
223 base = 0;
224 ppage++;
225 }
226 /* send tail */
227 if (xdr->tail[0].iov_len) {
NeilBrown44524352006-10-04 02:15:46 -0700228 result = kernel_sendpage(sock, rqstp->rq_respages[0],
229 ((unsigned long)xdr->tail[0].iov_base)
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800230 & (PAGE_SIZE-1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 xdr->tail[0].iov_len, 0);
232
233 if (result > 0)
234 len += result;
235 }
236out:
Chuck Leverad06e4b2007-02-12 00:53:32 -0800237 dprintk("svc: socket %p sendto([%p %Zu... ], %d) = %d (addr %s)\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600238 svsk, xdr->head[0].iov_base, xdr->head[0].iov_len,
Chuck Leverad06e4b2007-02-12 00:53:32 -0800239 xdr->len, len, svc_print_addr(rqstp, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 return len;
242}
243
244/*
NeilBrown80212d52006-10-02 02:17:47 -0700245 * Report socket names for nfsdfs
246 */
247static int one_sock_name(char *buf, struct svc_sock *svsk)
248{
249 int len;
250
251 switch(svsk->sk_sk->sk_family) {
252 case AF_INET:
253 len = sprintf(buf, "ipv4 %s %u.%u.%u.%u %d\n",
254 svsk->sk_sk->sk_protocol==IPPROTO_UDP?
255 "udp" : "tcp",
256 NIPQUAD(inet_sk(svsk->sk_sk)->rcv_saddr),
257 inet_sk(svsk->sk_sk)->num);
258 break;
259 default:
260 len = sprintf(buf, "*unknown-%d*\n",
261 svsk->sk_sk->sk_family);
262 }
263 return len;
264}
265
266int
NeilBrownb41b66d2006-10-02 02:17:48 -0700267svc_sock_names(char *buf, struct svc_serv *serv, char *toclose)
NeilBrown80212d52006-10-02 02:17:47 -0700268{
NeilBrownb41b66d2006-10-02 02:17:48 -0700269 struct svc_sock *svsk, *closesk = NULL;
NeilBrown80212d52006-10-02 02:17:47 -0700270 int len = 0;
271
272 if (!serv)
273 return 0;
NeilBrownaaf68cf2007-02-08 14:20:30 -0800274 spin_lock_bh(&serv->sv_lock);
Tom Tucker7a182082007-12-30 21:07:53 -0600275 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list) {
NeilBrown80212d52006-10-02 02:17:47 -0700276 int onelen = one_sock_name(buf+len, svsk);
NeilBrownb41b66d2006-10-02 02:17:48 -0700277 if (toclose && strcmp(toclose, buf+len) == 0)
278 closesk = svsk;
279 else
280 len += onelen;
NeilBrown80212d52006-10-02 02:17:47 -0700281 }
NeilBrownaaf68cf2007-02-08 14:20:30 -0800282 spin_unlock_bh(&serv->sv_lock);
NeilBrownb41b66d2006-10-02 02:17:48 -0700283 if (closesk)
NeilBrown5680c442006-10-04 02:15:45 -0700284 /* Should unregister with portmap, but you cannot
285 * unregister just one protocol...
286 */
Tom Tucker7a182082007-12-30 21:07:53 -0600287 svc_close_xprt(&closesk->sk_xprt);
NeilBrown37a03472006-10-04 02:15:44 -0700288 else if (toclose)
289 return -ENOENT;
NeilBrown80212d52006-10-02 02:17:47 -0700290 return len;
291}
292EXPORT_SYMBOL(svc_sock_names);
293
294/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 * Check input queue length
296 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600297static int svc_recv_available(struct svc_sock *svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 struct socket *sock = svsk->sk_sock;
300 int avail, err;
301
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700302 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 return (err >= 0)? avail : err;
305}
306
307/*
308 * Generic recvfrom routine.
309 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600310static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr,
311 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600313 struct svc_sock *svsk =
314 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Chuck Lever1ba95102007-02-12 00:53:31 -0800315 struct msghdr msg = {
316 .msg_flags = MSG_DONTWAIT,
317 };
318 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Tom Tucker260c1d12007-12-30 21:08:29 -0600320 rqstp->rq_xprt_hlen = 0;
321
Chuck Lever1ba95102007-02-12 00:53:31 -0800322 len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
323 msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
Chuck Lever1ba95102007-02-12 00:53:31 -0800326 svsk, iov[0].iov_base, iov[0].iov_len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 return len;
328}
329
330/*
331 * Set socket snd and rcv buffer lengths
332 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600333static void svc_sock_setbufsize(struct socket *sock, unsigned int snd,
334 unsigned int rcv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336#if 0
337 mm_segment_t oldfs;
338 oldfs = get_fs(); set_fs(KERNEL_DS);
339 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
340 (char*)&snd, sizeof(snd));
341 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
342 (char*)&rcv, sizeof(rcv));
343#else
344 /* sock_setsockopt limits use to sysctl_?mem_max,
345 * which isn't acceptable. Until that is made conditional
346 * on not having CAP_SYS_RESOURCE or similar, we go direct...
347 * DaveM said I could!
348 */
349 lock_sock(sock->sk);
350 sock->sk->sk_sndbuf = snd * 2;
351 sock->sk->sk_rcvbuf = rcv * 2;
352 sock->sk->sk_userlocks |= SOCK_SNDBUF_LOCK|SOCK_RCVBUF_LOCK;
353 release_sock(sock->sk);
354#endif
355}
356/*
357 * INET callback when data has been received on the socket.
358 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600359static void svc_udp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Neil Brown939bb7e2005-09-13 01:25:39 -0700361 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Neil Brown939bb7e2005-09-13 01:25:39 -0700363 if (svsk) {
364 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600365 svsk, sk, count,
366 test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
367 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600368 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
371 wake_up_interruptible(sk->sk_sleep);
372}
373
374/*
375 * INET callback when space is newly available on the socket.
376 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600377static void svc_write_space(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
379 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
380
381 if (svsk) {
382 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600383 svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
Tom Tuckerf6150c32007-12-30 21:07:57 -0600384 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386
387 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) {
Neil Brown939bb7e2005-09-13 01:25:39 -0700388 dprintk("RPC svc_write_space: someone sleeping on %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 svsk);
390 wake_up_interruptible(sk->sk_sleep);
391 }
392}
393
Tom Tucker9dbc2402007-12-30 21:08:12 -0600394/*
395 * Copy the UDP datagram's destination address to the rqstp structure.
396 * The 'destination' address in this case is the address to which the
397 * peer sent the datagram, i.e. our local address. For multihomed
398 * hosts, this can change from msg to msg. Note that only the IP
399 * address changes, the port number should remain the same.
400 */
401static void svc_udp_get_dest_address(struct svc_rqst *rqstp,
402 struct cmsghdr *cmh)
Chuck Lever95756482007-02-12 00:53:38 -0800403{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600404 struct svc_sock *svsk =
405 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
406 switch (svsk->sk_sk->sk_family) {
Chuck Lever95756482007-02-12 00:53:38 -0800407 case AF_INET: {
NeilBrown7a37f572007-03-06 01:42:21 -0800408 struct in_pktinfo *pki = CMSG_DATA(cmh);
409 rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_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 case AF_INET6: {
NeilBrown7a37f572007-03-06 01:42:21 -0800413 struct in6_pktinfo *pki = CMSG_DATA(cmh);
414 ipv6_addr_copy(&rqstp->rq_daddr.addr6, &pki->ipi6_addr);
Chuck Lever95756482007-02-12 00:53:38 -0800415 break;
NeilBrown7a37f572007-03-06 01:42:21 -0800416 }
Chuck Lever95756482007-02-12 00:53:38 -0800417 }
Chuck Lever95756482007-02-12 00:53:38 -0800418}
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/*
421 * Receive a datagram from a UDP socket.
422 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600423static int svc_udp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600425 struct svc_sock *svsk =
426 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600427 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 struct sk_buff *skb;
David S. Millerbc375ea2007-04-12 13:35:59 -0700429 union {
430 struct cmsghdr hdr;
431 long all[SVC_PKTINFO_SPACE / sizeof(long)];
432 } buffer;
433 struct cmsghdr *cmh = &buffer.hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 int err, len;
NeilBrown7a37f572007-03-06 01:42:21 -0800435 struct msghdr msg = {
436 .msg_name = svc_addr(rqstp),
437 .msg_control = cmh,
438 .msg_controllen = sizeof(buffer),
439 .msg_flags = MSG_DONTWAIT,
440 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Tom Tucker02fc6c32007-12-30 21:07:48 -0600442 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /* udp sockets need large rcvbuf as all pending
444 * requests are still in that buffer. sndbuf must
445 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700446 * for one reply per thread. We count all threads
447 * rather than threads in a particular pool, which
448 * provides an upper bound on the number of threads
449 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 */
451 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700452 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
453 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Tom Tucker02fc6c32007-12-30 21:07:48 -0600455 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
NeilBrown05ed6902007-05-09 02:34:55 -0700456 skb = NULL;
457 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
458 0, 0, MSG_PEEK | MSG_DONTWAIT);
459 if (err >= 0)
460 skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err);
461
462 if (skb == NULL) {
463 if (err != -EAGAIN) {
464 /* possibly an icmp error */
465 dprintk("svc: recvfrom returned error %d\n", -err);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600466 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
Tom Tuckera6046f72007-12-30 21:08:01 -0600468 svc_xprt_received(&svsk->sk_xprt);
NeilBrown05ed6902007-05-09 02:34:55 -0700469 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600471 len = svc_addr_len(svc_addr(rqstp));
472 if (len < 0)
473 return len;
474 rqstp->rq_addrlen = len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700475 if (skb->tstamp.tv64 == 0) {
476 skb->tstamp = ktime_get_real();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800477 /* Don't enable netstamp, sunrpc doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 need that much accuracy */
479 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700480 svsk->sk_sk->sk_stamp = skb->tstamp;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600481 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); /* there may be more data... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 /*
484 * Maybe more packets - kick another thread ASAP.
485 */
Tom Tuckera6046f72007-12-30 21:08:01 -0600486 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 len = skb->len - sizeof(struct udphdr);
489 rqstp->rq_arg.len = len;
490
Chuck Lever95756482007-02-12 00:53:38 -0800491 rqstp->rq_prot = IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
NeilBrown7a37f572007-03-06 01:42:21 -0800493 if (cmh->cmsg_level != IPPROTO_IP ||
494 cmh->cmsg_type != IP_PKTINFO) {
495 if (net_ratelimit())
496 printk("rpcsvc: received unknown control message:"
497 "%d/%d\n",
498 cmh->cmsg_level, cmh->cmsg_type);
499 skb_free_datagram(svsk->sk_sk, skb);
500 return 0;
501 }
502 svc_udp_get_dest_address(rqstp, cmh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 if (skb_is_nonlinear(skb)) {
505 /* we have to copy */
506 local_bh_disable();
507 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
508 local_bh_enable();
509 /* checksum error */
510 skb_free_datagram(svsk->sk_sk, skb);
511 return 0;
512 }
513 local_bh_enable();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800514 skb_free_datagram(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 } else {
516 /* we can use it in-place */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600517 rqstp->rq_arg.head[0].iov_base = skb->data +
518 sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 rqstp->rq_arg.head[0].iov_len = len;
Herbert Xufb286bb2005-11-10 13:01:24 -0800520 if (skb_checksum_complete(skb)) {
521 skb_free_datagram(svsk->sk_sk, skb);
522 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
Tom Tucker5148bf42007-12-30 21:07:25 -0600524 rqstp->rq_xprt_ctxt = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526
527 rqstp->rq_arg.page_base = 0;
528 if (len <= rqstp->rq_arg.head[0].iov_len) {
529 rqstp->rq_arg.head[0].iov_len = len;
530 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700531 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 } else {
533 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700534 rqstp->rq_respages = rqstp->rq_pages + 1 +
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700535 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
537
538 if (serv->sv_stats)
539 serv->sv_stats->netudpcnt++;
540
541 return len;
542}
543
544static int
545svc_udp_sendto(struct svc_rqst *rqstp)
546{
547 int error;
548
549 error = svc_sendto(rqstp, &rqstp->rq_res);
550 if (error == -ECONNREFUSED)
551 /* ICMP error on earlier request. */
552 error = svc_sendto(rqstp, &rqstp->rq_res);
553
554 return error;
555}
556
Tom Tuckere831fe62007-12-30 21:07:29 -0600557static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp)
558{
559}
560
Tom Tucker323bee32007-12-30 21:07:31 -0600561static int svc_udp_has_wspace(struct svc_xprt *xprt)
562{
563 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600564 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600565 unsigned long required;
566
567 /*
568 * Set the SOCK_NOSPACE flag before checking the available
569 * sock space.
570 */
571 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600572 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600573 if (required*2 > sock_wspace(svsk->sk_sk))
574 return 0;
575 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
576 return 1;
577}
578
Tom Tucker38a417c2007-12-30 21:07:36 -0600579static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt)
580{
581 BUG();
582 return NULL;
583}
584
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600585static struct svc_xprt *svc_udp_create(struct svc_serv *serv,
586 struct sockaddr *sa, int salen,
587 int flags)
588{
589 return svc_create_socket(serv, IPPROTO_UDP, sa, salen, flags);
590}
591
Tom Tucker360d8732007-12-30 21:07:17 -0600592static struct svc_xprt_ops svc_udp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600593 .xpo_create = svc_udp_create,
Tom Tucker5d137992007-12-30 21:07:23 -0600594 .xpo_recvfrom = svc_udp_recvfrom,
595 .xpo_sendto = svc_udp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -0600596 .xpo_release_rqst = svc_release_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -0600597 .xpo_detach = svc_sock_detach,
598 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -0600599 .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -0600600 .xpo_has_wspace = svc_udp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -0600601 .xpo_accept = svc_udp_accept,
Tom Tucker360d8732007-12-30 21:07:17 -0600602};
603
604static struct svc_xprt_class svc_udp_class = {
605 .xcl_name = "udp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600606 .xcl_owner = THIS_MODULE,
Tom Tucker360d8732007-12-30 21:07:17 -0600607 .xcl_ops = &svc_udp_ops,
Tom Tucker49023152007-12-30 21:07:21 -0600608 .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP,
Tom Tucker360d8732007-12-30 21:07:17 -0600609};
610
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600611static void svc_udp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
NeilBrown7a37f572007-03-06 01:42:21 -0800613 int one = 1;
614 mm_segment_t oldfs;
615
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600616 svc_xprt_init(&svc_udp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600617 clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
619 svsk->sk_sk->sk_write_space = svc_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800622 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 * svc_udp_recvfrom will re-adjust if necessary
624 */
625 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600626 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
627 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Tom Tucker0f0257e2007-12-30 21:08:27 -0600629 /* data might have come in before data_ready set up */
630 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600631 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
NeilBrown7a37f572007-03-06 01:42:21 -0800632
633 oldfs = get_fs();
634 set_fs(KERNEL_DS);
635 /* make sure we get destination address info */
636 svsk->sk_sock->ops->setsockopt(svsk->sk_sock, IPPROTO_IP, IP_PKTINFO,
637 (char __user *)&one, sizeof(one));
638 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
641/*
642 * A data_ready event on a listening socket means there's a connection
643 * pending. Do not use state_change as a substitute for it.
644 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600645static void svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Neil Brown939bb7e2005-09-13 01:25:39 -0700647 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700650 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Neil Brown939bb7e2005-09-13 01:25:39 -0700652 /*
653 * This callback may called twice when a new connection
654 * is established as a child socket inherits everything
655 * from a parent LISTEN socket.
656 * 1) data_ready method of the parent socket will be called
657 * when one of child sockets become ESTABLISHED.
658 * 2) data_ready method of the child socket may be called
659 * when it receives data before the socket is accepted.
660 * In case of 2, we should ignore it silently.
661 */
662 if (sk->sk_state == TCP_LISTEN) {
663 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600664 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600665 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700666 } else
667 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
Neil Brown939bb7e2005-09-13 01:25:39 -0700669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
671 wake_up_interruptible_all(sk->sk_sleep);
672}
673
674/*
675 * A state change on a connected socket means it's dying or dead.
676 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600677static void svc_tcp_state_change(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Neil Brown939bb7e2005-09-13 01:25:39 -0700679 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700682 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Neil Brown939bb7e2005-09-13 01:25:39 -0700684 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700686 else {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600687 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600688 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
691 wake_up_interruptible_all(sk->sk_sleep);
692}
693
Tom Tucker0f0257e2007-12-30 21:08:27 -0600694static void svc_tcp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Neil Brown939bb7e2005-09-13 01:25:39 -0700696 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700699 sk, sk->sk_user_data);
700 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600701 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600702 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (sk->sk_sleep && waitqueue_active(sk->sk_sleep))
705 wake_up_interruptible(sk->sk_sleep);
706}
707
708/*
709 * Accept a TCP connection
710 */
Tom Tucker38a417c2007-12-30 21:07:36 -0600711static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Tom Tucker38a417c2007-12-30 21:07:36 -0600713 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800714 struct sockaddr_storage addr;
715 struct sockaddr *sin = (struct sockaddr *) &addr;
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600716 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 struct socket *sock = svsk->sk_sock;
718 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 struct svc_sock *newsvsk;
720 int err, slen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300721 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
724 if (!sock)
Tom Tucker38a417c2007-12-30 21:07:36 -0600725 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Tom Tucker02fc6c32007-12-30 21:07:48 -0600727 clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700728 err = kernel_accept(sock, &newsock, O_NONBLOCK);
729 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (err == -ENOMEM)
731 printk(KERN_WARNING "%s: no more sockets!\n",
732 serv->sv_name);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700733 else if (err != -EAGAIN && net_ratelimit())
734 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
735 serv->sv_name, -err);
Tom Tucker38a417c2007-12-30 21:07:36 -0600736 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Tom Tucker02fc6c32007-12-30 21:07:48 -0600738 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800740 err = kernel_getpeername(newsock, sin, &slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 if (err < 0) {
742 if (net_ratelimit())
743 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
744 serv->sv_name, -err);
745 goto failed; /* aborted connection or whatever */
746 }
747
748 /* Ideally, we would want to reject connections from unauthorized
Chuck Leverad06e4b2007-02-12 00:53:32 -0800749 * hosts here, but when we get encryption, the IP of the host won't
750 * tell us anything. For now just warn about unpriv connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 */
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800752 if (!svc_port_is_privileged(sin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 dprintk(KERN_WARNING
Chuck Leverad06e4b2007-02-12 00:53:32 -0800754 "%s: connect from unprivileged port: %s\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800755 serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800756 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
Chuck Leverad06e4b2007-02-12 00:53:32 -0800758 dprintk("%s: connect from %s\n", serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800759 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 /* make sure that a write doesn't block forever when
762 * low on memory
763 */
764 newsock->sk->sk_sndtimeo = HZ*30;
765
Chuck Lever6b174332007-02-12 00:53:28 -0800766 if (!(newsvsk = svc_setup_socket(serv, newsock, &err,
767 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 goto failed;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600769 svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen);
Frank van Maarseveena9747692007-07-09 22:21:39 +0200770 err = kernel_getsockname(newsock, sin, &slen);
771 if (unlikely(err < 0)) {
772 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
773 slen = offsetof(struct sockaddr, sa_data);
774 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600775 svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -0800776
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600777 if (serv->sv_stats)
778 serv->sv_stats->nettcpconn++;
779
780 return &newsvsk->sk_xprt;
781
782failed:
783 sock_release(newsock);
784 return NULL;
785}
786
787/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 * Receive data from a TCP socket.
789 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600790static int svc_tcp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600792 struct svc_sock *svsk =
793 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600794 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 int len;
NeilBrown3cc03b12006-10-04 02:15:47 -0700796 struct kvec *vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 int pnum, vlen;
798
799 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600800 svsk, test_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags),
801 test_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags),
802 test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Tom Tucker02fc6c32007-12-30 21:07:48 -0600804 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 /* sndbuf needs to have room for one request
806 * per thread, otherwise we can stall even when the
807 * network isn't a bottleneck.
Greg Banks3262c812006-10-02 02:17:58 -0700808 *
809 * We count all threads rather than threads in a
810 * particular pool, which provides an upper bound
811 * on the number of threads which will access the socket.
812 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 * rcvbuf just needs to be able to hold a few requests.
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800814 * Normally they will be removed from the queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 * as soon a a complete request arrives.
816 */
817 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700818 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
819 3 * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Tom Tucker02fc6c32007-12-30 21:07:48 -0600821 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 /* Receive data. If we haven't got the record length yet, get
824 * the next four bytes. Otherwise try to gobble up as much as
825 * possible up to the complete record length.
826 */
Chuck Leverc0401ea2008-04-14 12:27:30 -0400827 if (svsk->sk_tcplen < sizeof(rpc_fraghdr)) {
828 int want = sizeof(rpc_fraghdr) - svsk->sk_tcplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 struct kvec iov;
830
831 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
832 iov.iov_len = want;
833 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
834 goto error;
835 svsk->sk_tcplen += len;
836
837 if (len < want) {
Chuck Leverc0401ea2008-04-14 12:27:30 -0400838 dprintk("svc: short recvfrom while reading record "
839 "length (%d of %d)\n", len, want);
Tom Tuckera6046f72007-12-30 21:08:01 -0600840 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return -EAGAIN; /* record header not complete */
842 }
843
844 svsk->sk_reclen = ntohl(svsk->sk_reclen);
Chuck Leverc0401ea2008-04-14 12:27:30 -0400845 if (!(svsk->sk_reclen & RPC_LAST_STREAM_FRAGMENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 /* FIXME: technically, a record can be fragmented,
847 * and non-terminal fragments will not have the top
848 * bit set in the fragment length header.
849 * But apparently no known nfs clients send fragmented
850 * records. */
NeilBrown34e9a632007-01-29 13:19:52 -0800851 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400852 printk(KERN_NOTICE "RPC: multiple fragments "
853 "per record not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 goto err_delete;
855 }
Chuck Leverc0401ea2008-04-14 12:27:30 -0400856 svsk->sk_reclen &= RPC_FRAGMENT_SIZE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700858 if (svsk->sk_reclen > serv->sv_max_mesg) {
NeilBrown34e9a632007-01-29 13:19:52 -0800859 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400860 printk(KERN_NOTICE "RPC: "
861 "fragment too large: 0x%08lx\n",
862 (unsigned long)svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 goto err_delete;
864 }
865 }
866
867 /* Check whether enough data is available */
868 len = svc_recv_available(svsk);
869 if (len < 0)
870 goto error;
871
872 if (len < svsk->sk_reclen) {
873 dprintk("svc: incomplete TCP record (%d of %d)\n",
874 len, svsk->sk_reclen);
Tom Tuckera6046f72007-12-30 21:08:01 -0600875 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return -EAGAIN; /* record not complete */
877 }
878 len = svsk->sk_reclen;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600879 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
NeilBrown3cc03b12006-10-04 02:15:47 -0700881 vec = rqstp->rq_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 vec[0] = rqstp->rq_arg.head[0];
883 vlen = PAGE_SIZE;
884 pnum = 1;
885 while (vlen < len) {
NeilBrown44524352006-10-04 02:15:46 -0700886 vec[pnum].iov_base = page_address(rqstp->rq_pages[pnum]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 vec[pnum].iov_len = PAGE_SIZE;
888 pnum++;
889 vlen += PAGE_SIZE;
890 }
NeilBrown44524352006-10-04 02:15:46 -0700891 rqstp->rq_respages = &rqstp->rq_pages[pnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 /* Now receive data */
894 len = svc_recvfrom(rqstp, vec, pnum, len);
895 if (len < 0)
896 goto error;
897
898 dprintk("svc: TCP complete record (%d bytes)\n", len);
899 rqstp->rq_arg.len = len;
900 rqstp->rq_arg.page_base = 0;
901 if (len <= rqstp->rq_arg.head[0].iov_len) {
902 rqstp->rq_arg.head[0].iov_len = len;
903 rqstp->rq_arg.page_len = 0;
904 } else {
905 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
906 }
907
Tom Tucker5148bf42007-12-30 21:07:25 -0600908 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 rqstp->rq_prot = IPPROTO_TCP;
910
911 /* Reset TCP read info */
912 svsk->sk_reclen = 0;
913 svsk->sk_tcplen = 0;
914
Tom Tucker9dbc2402007-12-30 21:08:12 -0600915 svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt);
Tom Tuckera6046f72007-12-30 21:08:01 -0600916 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (serv->sv_stats)
918 serv->sv_stats->nettcpcnt++;
919
920 return len;
921
922 err_delete:
Tom Tucker02fc6c32007-12-30 21:07:48 -0600923 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return -EAGAIN;
925
926 error:
927 if (len == -EAGAIN) {
928 dprintk("RPC: TCP recvfrom got EAGAIN\n");
Tom Tuckera6046f72007-12-30 21:08:01 -0600929 svc_xprt_received(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 } else {
931 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600932 svsk->sk_xprt.xpt_server->sv_name, -len);
Olaf Kirch93fbf1a2006-01-06 00:19:56 -0800933 goto err_delete;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 }
935
936 return len;
937}
938
939/*
940 * Send out data on TCP socket.
941 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600942static int svc_tcp_sendto(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
944 struct xdr_buf *xbufp = &rqstp->rq_res;
945 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700946 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 /* Set up the first element of the reply kvec.
949 * Any other kvecs that may be in use have been taken
950 * care of by the server implementation itself.
951 */
952 reclen = htonl(0x80000000|((xbufp->len ) - 4));
953 memcpy(xbufp->head[0].iov_base, &reclen, 4);
954
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600955 if (test_bit(XPT_DEAD, &rqstp->rq_xprt->xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 return -ENOTCONN;
957
958 sent = svc_sendto(rqstp, &rqstp->rq_res);
959 if (sent != xbufp->len) {
Tom Tucker0f0257e2007-12-30 21:08:27 -0600960 printk(KERN_NOTICE
961 "rpc-srv/tcp: %s: %s %d when sending %d bytes "
962 "- shutting down socket\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600963 rqstp->rq_xprt->xpt_server->sv_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 (sent<0)?"got error":"sent only",
965 sent, xbufp->len);
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600966 set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600967 svc_xprt_enqueue(rqstp->rq_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 sent = -EAGAIN;
969 }
970 return sent;
971}
972
Tom Tuckere831fe62007-12-30 21:07:29 -0600973/*
974 * Setup response header. TCP has a 4B record length field.
975 */
976static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp)
977{
978 struct kvec *resv = &rqstp->rq_res.head[0];
979
980 /* tcp needs a space for the record length... */
981 svc_putnl(resv, 0);
982}
983
Tom Tucker323bee32007-12-30 21:07:31 -0600984static int svc_tcp_has_wspace(struct svc_xprt *xprt)
985{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600986 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600987 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600988 int required;
989 int wspace;
990
991 /*
992 * Set the SOCK_NOSPACE flag before checking the available
993 * sock space.
994 */
995 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600996 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600997 wspace = sk_stream_wspace(svsk->sk_sk);
998
999 if (wspace < sk_stream_min_wspace(svsk->sk_sk))
1000 return 0;
1001 if (required * 2 > wspace)
1002 return 0;
1003
1004 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
1005 return 1;
1006}
1007
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001008static struct svc_xprt *svc_tcp_create(struct svc_serv *serv,
1009 struct sockaddr *sa, int salen,
1010 int flags)
1011{
1012 return svc_create_socket(serv, IPPROTO_TCP, sa, salen, flags);
1013}
1014
Tom Tucker360d8732007-12-30 21:07:17 -06001015static struct svc_xprt_ops svc_tcp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001016 .xpo_create = svc_tcp_create,
Tom Tucker5d137992007-12-30 21:07:23 -06001017 .xpo_recvfrom = svc_tcp_recvfrom,
1018 .xpo_sendto = svc_tcp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -06001019 .xpo_release_rqst = svc_release_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -06001020 .xpo_detach = svc_sock_detach,
1021 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -06001022 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -06001023 .xpo_has_wspace = svc_tcp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -06001024 .xpo_accept = svc_tcp_accept,
Tom Tucker360d8732007-12-30 21:07:17 -06001025};
1026
1027static struct svc_xprt_class svc_tcp_class = {
1028 .xcl_name = "tcp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001029 .xcl_owner = THIS_MODULE,
Tom Tucker360d8732007-12-30 21:07:17 -06001030 .xcl_ops = &svc_tcp_ops,
Tom Tucker49023152007-12-30 21:07:21 -06001031 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
Tom Tucker360d8732007-12-30 21:07:17 -06001032};
1033
1034void svc_init_xprt_sock(void)
1035{
1036 svc_reg_xprt_class(&svc_tcp_class);
1037 svc_reg_xprt_class(&svc_udp_class);
1038}
1039
1040void svc_cleanup_xprt_sock(void)
1041{
1042 svc_unreg_xprt_class(&svc_tcp_class);
1043 svc_unreg_xprt_class(&svc_udp_class);
1044}
1045
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001046static void svc_tcp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
1048 struct sock *sk = svsk->sk_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001050 svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -06001051 set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (sk->sk_state == TCP_LISTEN) {
1053 dprintk("setting up TCP socket for listening\n");
Tom Tucker02fc6c32007-12-30 21:07:48 -06001054 set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 sk->sk_data_ready = svc_tcp_listen_data_ready;
Tom Tucker02fc6c32007-12-30 21:07:48 -06001056 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 } else {
1058 dprintk("setting up TCP socket for reading\n");
1059 sk->sk_state_change = svc_tcp_state_change;
1060 sk->sk_data_ready = svc_tcp_data_ready;
1061 sk->sk_write_space = svc_write_space;
1062
1063 svsk->sk_reclen = 0;
1064 svsk->sk_tcplen = 0;
1065
Chuck Leverb7872fe2008-04-14 12:27:01 -04001066 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001069 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 * svc_tcp_recvfrom will re-adjust if necessary
1071 */
1072 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001073 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
1074 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Tom Tucker02fc6c32007-12-30 21:07:48 -06001076 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
1077 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001078 if (sk->sk_state != TCP_ESTABLISHED)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001079 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081}
1082
Tom Tucker0f0257e2007-12-30 21:08:27 -06001083void svc_sock_update_bufs(struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
1085 /*
1086 * The number of server threads has changed. Update
1087 * rcvbuf and sndbuf accordingly on all sockets
1088 */
1089 struct list_head *le;
1090
1091 spin_lock_bh(&serv->sv_lock);
1092 list_for_each(le, &serv->sv_permsocks) {
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001093 struct svc_sock *svsk =
Tom Tucker7a182082007-12-30 21:07:53 -06001094 list_entry(le, struct svc_sock, sk_xprt.xpt_list);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001095 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
1097 list_for_each(le, &serv->sv_tempsocks) {
1098 struct svc_sock *svsk =
Tom Tucker7a182082007-12-30 21:07:53 -06001099 list_entry(le, struct svc_sock, sk_xprt.xpt_list);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001100 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
1102 spin_unlock_bh(&serv->sv_lock);
1103}
Jeff Layton23d42ee2008-02-07 16:34:53 -05001104EXPORT_SYMBOL(svc_sock_update_bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 * Initialize socket for RPC use and create svc_sock struct
1108 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1109 */
Chuck Lever6b174332007-02-12 00:53:28 -08001110static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1111 struct socket *sock,
1112 int *errp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
1114 struct svc_sock *svsk;
1115 struct sock *inet;
Chuck Lever6b174332007-02-12 00:53:28 -08001116 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
Chuck Leverb6632332008-08-18 19:33:44 -04001117 int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119 dprintk("svc: svc_setup_socket %p\n", sock);
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001120 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 *errp = -ENOMEM;
1122 return NULL;
1123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125 inet = sock->sk;
1126
1127 /* Register socket with portmapper */
1128 if (*errp >= 0 && pmap_register)
1129 *errp = svc_register(serv, inet->sk_protocol,
1130 ntohs(inet_sk(inet)->sport));
1131
1132 if (*errp < 0) {
1133 kfree(svsk);
1134 return NULL;
1135 }
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 inet->sk_user_data = svsk;
1138 svsk->sk_sock = sock;
1139 svsk->sk_sk = inet;
1140 svsk->sk_ostate = inet->sk_state_change;
1141 svsk->sk_odata = inet->sk_data_ready;
1142 svsk->sk_owspace = inet->sk_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 /* Initialize the socket */
1145 if (sock->type == SOCK_DGRAM)
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001146 svc_udp_init(svsk, serv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 else
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001148 svc_tcp_init(svsk, serv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Chuck Leverb6632332008-08-18 19:33:44 -04001150 /*
1151 * We start one listener per sv_serv. We want AF_INET
1152 * requests to be automatically shunted to our AF_INET6
1153 * listener using a mapped IPv4 address. Make sure
1154 * no-one starts an equivalent IPv4 listener, which
1155 * would steal our incoming connections.
1156 */
1157 val = 0;
1158 if (serv->sv_family == AF_INET6)
1159 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
1160 (char *)&val, sizeof(val));
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1163 svsk, svsk->sk_sk);
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 return svsk;
1166}
1167
NeilBrownb41b66d2006-10-02 02:17:48 -07001168int svc_addsock(struct svc_serv *serv,
1169 int fd,
Chuck Lever29373912008-10-03 17:15:38 -04001170 char *name_return)
NeilBrownb41b66d2006-10-02 02:17:48 -07001171{
1172 int err = 0;
1173 struct socket *so = sockfd_lookup(fd, &err);
1174 struct svc_sock *svsk = NULL;
1175
1176 if (!so)
1177 return err;
1178 if (so->sk->sk_family != AF_INET)
1179 err = -EAFNOSUPPORT;
1180 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1181 so->sk->sk_protocol != IPPROTO_UDP)
1182 err = -EPROTONOSUPPORT;
1183 else if (so->state > SS_UNCONNECTED)
1184 err = -EISCONN;
1185 else {
Tom Tucker2da2c212008-11-23 09:58:08 -06001186 if (!try_module_get(THIS_MODULE))
1187 err = -ENOENT;
1188 else
1189 svsk = svc_setup_socket(serv, so, &err,
1190 SVC_SOCK_DEFAULTS);
NeilBrowne79eff12007-02-12 00:53:30 -08001191 if (svsk) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001192 struct sockaddr_storage addr;
1193 struct sockaddr *sin = (struct sockaddr *)&addr;
1194 int salen;
1195 if (kernel_getsockname(svsk->sk_sock, sin, &salen) == 0)
1196 svc_xprt_set_local(&svsk->sk_xprt, sin, salen);
Tom Tucker4e5caaa2007-12-30 21:08:20 -06001197 clear_bit(XPT_TEMP, &svsk->sk_xprt.xpt_flags);
1198 spin_lock_bh(&serv->sv_lock);
1199 list_add(&svsk->sk_xprt.xpt_list, &serv->sv_permsocks);
1200 spin_unlock_bh(&serv->sv_lock);
Tom Tuckera6046f72007-12-30 21:08:01 -06001201 svc_xprt_received(&svsk->sk_xprt);
NeilBrownb41b66d2006-10-02 02:17:48 -07001202 err = 0;
Tom Tucker2da2c212008-11-23 09:58:08 -06001203 } else
1204 module_put(THIS_MODULE);
NeilBrownb41b66d2006-10-02 02:17:48 -07001205 }
1206 if (err) {
1207 sockfd_put(so);
1208 return err;
1209 }
NeilBrownb41b66d2006-10-02 02:17:48 -07001210 return one_sock_name(name_return, svsk);
1211}
1212EXPORT_SYMBOL_GPL(svc_addsock);
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214/*
1215 * Create socket for RPC service.
1216 */
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001217static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
1218 int protocol,
1219 struct sockaddr *sin, int len,
1220 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
1222 struct svc_sock *svsk;
1223 struct socket *sock;
1224 int error;
1225 int type;
Tom Tucker9dbc2402007-12-30 21:08:12 -06001226 struct sockaddr_storage addr;
1227 struct sockaddr *newsin = (struct sockaddr *)&addr;
1228 int newlen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +03001229 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Chuck Leverad06e4b2007-02-12 00:53:32 -08001231 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1232 serv->sv_program->pg_name, protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001233 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1236 printk(KERN_WARNING "svc: only UDP and TCP "
1237 "sockets supported\n");
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001238 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
1240 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1241
Chuck Lever77f1f672007-02-12 00:53:39 -08001242 error = sock_create_kern(sin->sa_family, type, protocol, &sock);
1243 if (error < 0)
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001244 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Peter Zijlstraed075362006-12-06 20:35:24 -08001246 svc_reclassify_socket(sock);
1247
Eric Sesterhenn18114742006-09-28 14:37:07 -07001248 if (type == SOCK_STREAM)
Chuck Lever77f1f672007-02-12 00:53:39 -08001249 sock->sk->sk_reuse = 1; /* allow address reuse */
1250 error = kernel_bind(sock, sin, len);
Eric Sesterhenn18114742006-09-28 14:37:07 -07001251 if (error < 0)
1252 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Tom Tucker9dbc2402007-12-30 21:08:12 -06001254 newlen = len;
1255 error = kernel_getsockname(sock, newsin, &newlen);
1256 if (error < 0)
1257 goto bummer;
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001260 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 goto bummer;
1262 }
1263
NeilBrowne79eff12007-02-12 00:53:30 -08001264 if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001265 svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001266 return (struct svc_xprt *)svsk;
NeilBrowne79eff12007-02-12 00:53:30 -08001267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269bummer:
1270 dprintk("svc: svc_create_socket error = %d\n", -error);
1271 sock_release(sock);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001272 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
1275/*
Tom Tucker755ccea2007-12-30 21:07:27 -06001276 * Detach the svc_sock from the socket so that no
1277 * more callbacks occur.
1278 */
1279static void svc_sock_detach(struct svc_xprt *xprt)
1280{
1281 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1282 struct sock *sk = svsk->sk_sk;
1283
1284 dprintk("svc: svc_sock_detach(%p)\n", svsk);
1285
1286 /* put back the old socket callbacks */
1287 sk->sk_state_change = svsk->sk_ostate;
1288 sk->sk_data_ready = svsk->sk_odata;
1289 sk->sk_write_space = svsk->sk_owspace;
1290}
1291
1292/*
1293 * Free the svc_sock's socket resources and the svc_sock itself.
1294 */
1295static void svc_sock_free(struct svc_xprt *xprt)
1296{
1297 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1298 dprintk("svc: svc_sock_free(%p)\n", svsk);
1299
Tom Tucker755ccea2007-12-30 21:07:27 -06001300 if (svsk->sk_sock->file)
1301 sockfd_put(svsk->sk_sock);
1302 else
1303 sock_release(svsk->sk_sock);
1304 kfree(svsk);
1305}