blob: 88de3d093165e525b4ffe61527d61545be699716 [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>
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030052#include <linux/sunrpc/xprt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Tom Tucker360d87382007-12-30 21:07:17 -060054#define RPCDBG_FACILITY RPCDBG_SVCXPRT
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56
57static struct svc_sock *svc_setup_socket(struct svc_serv *, struct socket *,
Chuck Lever6b174332007-02-12 00:53:28 -080058 int *errp, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static void svc_udp_data_ready(struct sock *, int);
60static int svc_udp_recvfrom(struct svc_rqst *);
61static int svc_udp_sendto(struct svc_rqst *);
Tom Tucker755ccea2007-12-30 21:07:27 -060062static void svc_sock_detach(struct svc_xprt *);
Trond Myklebust69b6ba32008-12-23 16:30:11 -050063static void svc_tcp_sock_detach(struct svc_xprt *);
Tom Tucker755ccea2007-12-30 21:07:27 -060064static void svc_sock_free(struct svc_xprt *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Tom Tuckerb700cbb2007-12-30 21:07:42 -060066static struct svc_xprt *svc_create_socket(struct svc_serv *, int,
Pavel Emelyanov62832c02010-09-29 16:04:18 +040067 struct net *, struct sockaddr *,
68 int, int);
Peter Zijlstraed075362006-12-06 20:35:24 -080069#ifdef CONFIG_DEBUG_LOCK_ALLOC
70static struct lock_class_key svc_key[2];
71static struct lock_class_key svc_slock_key[2];
72
Tom Tucker0f0257e2007-12-30 21:08:27 -060073static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -080074{
75 struct sock *sk = sock->sk;
John Heffner02b3d342007-09-12 10:42:12 +020076 BUG_ON(sock_owned_by_user(sk));
Peter Zijlstraed075362006-12-06 20:35:24 -080077 switch (sk->sk_family) {
78 case AF_INET:
79 sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060080 &svc_slock_key[0],
81 "sk_xprt.xpt_lock-AF_INET-NFSD",
82 &svc_key[0]);
Peter Zijlstraed075362006-12-06 20:35:24 -080083 break;
84
85 case AF_INET6:
86 sock_lock_init_class_and_name(sk, "slock-AF_INET6-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060087 &svc_slock_key[1],
88 "sk_xprt.xpt_lock-AF_INET6-NFSD",
89 &svc_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -080090 break;
91
92 default:
93 BUG();
94 }
95}
96#else
Tom Tucker0f0257e2007-12-30 21:08:27 -060097static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -080098{
99}
100#endif
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/*
103 * Release an skbuff after use
104 */
Tom Tucker5148bf42007-12-30 21:07:25 -0600105static void svc_release_skb(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Tom Tucker5148bf42007-12-30 21:07:25 -0600107 struct sk_buff *skb = rqstp->rq_xprt_ctxt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 if (skb) {
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600110 struct svc_sock *svsk =
111 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tucker5148bf42007-12-30 21:07:25 -0600112 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 dprintk("svc: service %p, releasing skb %p\n", rqstp, skb);
Eric Dumazet9d410c72009-10-30 05:03:53 +0000115 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Chuck Leverb92503b2007-02-12 00:53:36 -0800119union svc_pktinfo_u {
120 struct in_pktinfo pkti;
Chuck Leverb92503b2007-02-12 00:53:36 -0800121 struct in6_pktinfo pkti6;
Chuck Leverb92503b2007-02-12 00:53:36 -0800122};
David S. Millerbc375ea2007-04-12 13:35:59 -0700123#define SVC_PKTINFO_SPACE \
124 CMSG_SPACE(sizeof(union svc_pktinfo_u))
Chuck Leverb92503b2007-02-12 00:53:36 -0800125
126static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh)
127{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600128 struct svc_sock *svsk =
129 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
130 switch (svsk->sk_sk->sk_family) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800131 case AF_INET: {
132 struct in_pktinfo *pki = CMSG_DATA(cmh);
133
134 cmh->cmsg_level = SOL_IP;
135 cmh->cmsg_type = IP_PKTINFO;
136 pki->ipi_ifindex = 0;
137 pki->ipi_spec_dst.s_addr = rqstp->rq_daddr.addr.s_addr;
138 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
139 }
140 break;
NeilBrown5a05ed72007-03-06 01:42:22 -0800141
Chuck Leverb92503b2007-02-12 00:53:36 -0800142 case AF_INET6: {
143 struct in6_pktinfo *pki = CMSG_DATA(cmh);
144
145 cmh->cmsg_level = SOL_IPV6;
146 cmh->cmsg_type = IPV6_PKTINFO;
147 pki->ipi6_ifindex = 0;
148 ipv6_addr_copy(&pki->ipi6_addr,
149 &rqstp->rq_daddr.addr6);
150 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
151 }
152 break;
Chuck Leverb92503b2007-02-12 00:53:36 -0800153 }
Chuck Leverb92503b2007-02-12 00:53:36 -0800154}
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/*
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300157 * send routine intended to be shared by the fore- and back-channel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 */
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300159int svc_send_common(struct socket *sock, struct xdr_buf *xdr,
160 struct page *headpage, unsigned long headoffset,
161 struct page *tailpage, unsigned long tailoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 int result;
164 int size;
165 struct page **ppage = xdr->pages;
166 size_t base = xdr->page_base;
167 unsigned int pglen = xdr->page_len;
168 unsigned int flags = MSG_MORE;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300169 int slen;
170 int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 slen = xdr->len;
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 /* send head */
175 if (slen == xdr->head[0].iov_len)
176 flags = 0;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300177 len = kernel_sendpage(sock, headpage, headoffset,
NeilBrown44524352006-10-04 02:15:46 -0700178 xdr->head[0].iov_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (len != xdr->head[0].iov_len)
180 goto out;
181 slen -= xdr->head[0].iov_len;
182 if (slen == 0)
183 goto out;
184
185 /* send page data */
186 size = PAGE_SIZE - base < pglen ? PAGE_SIZE - base : pglen;
187 while (pglen > 0) {
188 if (slen == size)
189 flags = 0;
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700190 result = kernel_sendpage(sock, *ppage, base, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (result > 0)
192 len += result;
193 if (result != size)
194 goto out;
195 slen -= size;
196 pglen -= size;
197 size = PAGE_SIZE < pglen ? PAGE_SIZE : pglen;
198 base = 0;
199 ppage++;
200 }
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* send tail */
203 if (xdr->tail[0].iov_len) {
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300204 result = kernel_sendpage(sock, tailpage, tailoffset,
205 xdr->tail[0].iov_len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (result > 0)
207 len += result;
208 }
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300209
210out:
211 return len;
212}
213
214
215/*
216 * Generic sendto routine
217 */
218static int svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr)
219{
220 struct svc_sock *svsk =
221 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
222 struct socket *sock = svsk->sk_sock;
223 union {
224 struct cmsghdr hdr;
225 long all[SVC_PKTINFO_SPACE / sizeof(long)];
226 } buffer;
227 struct cmsghdr *cmh = &buffer.hdr;
228 int len = 0;
229 unsigned long tailoff;
230 unsigned long headoff;
231 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
232
233 if (rqstp->rq_prot == IPPROTO_UDP) {
234 struct msghdr msg = {
235 .msg_name = &rqstp->rq_addr,
236 .msg_namelen = rqstp->rq_addrlen,
237 .msg_control = cmh,
238 .msg_controllen = sizeof(buffer),
239 .msg_flags = MSG_MORE,
240 };
241
242 svc_set_cmsg_data(rqstp, cmh);
243
244 if (sock_sendmsg(sock, &msg, 0) < 0)
245 goto out;
246 }
247
248 tailoff = ((unsigned long)xdr->tail[0].iov_base) & (PAGE_SIZE-1);
249 headoff = 0;
250 len = svc_send_common(sock, xdr, rqstp->rq_respages[0], headoff,
251 rqstp->rq_respages[0], tailoff);
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253out:
Chuck Leverad06e4b2007-02-12 00:53:32 -0800254 dprintk("svc: socket %p sendto([%p %Zu... ], %d) = %d (addr %s)\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600255 svsk, xdr->head[0].iov_base, xdr->head[0].iov_len,
Chuck Leverad06e4b2007-02-12 00:53:32 -0800256 xdr->len, len, svc_print_addr(rqstp, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 return len;
259}
260
261/*
NeilBrown80212d52006-10-02 02:17:47 -0700262 * Report socket names for nfsdfs
263 */
Chuck Levere7942b92009-04-23 19:32:48 -0400264static int svc_one_sock_name(struct svc_sock *svsk, char *buf, int remaining)
NeilBrown80212d52006-10-02 02:17:47 -0700265{
Chuck Lever017cb472009-04-23 19:33:03 -0400266 const struct sock *sk = svsk->sk_sk;
267 const char *proto_name = sk->sk_protocol == IPPROTO_UDP ?
268 "udp" : "tcp";
NeilBrown80212d52006-10-02 02:17:47 -0700269 int len;
270
Chuck Lever017cb472009-04-23 19:33:03 -0400271 switch (sk->sk_family) {
Chuck Levere7942b92009-04-23 19:32:48 -0400272 case PF_INET:
273 len = snprintf(buf, remaining, "ipv4 %s %pI4 %d\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400274 proto_name,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000275 &inet_sk(sk)->inet_rcv_saddr,
276 inet_sk(sk)->inet_num);
NeilBrown80212d52006-10-02 02:17:47 -0700277 break;
Chuck Lever58de2f82009-04-23 19:32:55 -0400278 case PF_INET6:
279 len = snprintf(buf, remaining, "ipv6 %s %pI6 %d\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400280 proto_name,
281 &inet6_sk(sk)->rcv_saddr,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000282 inet_sk(sk)->inet_num);
NeilBrown80212d52006-10-02 02:17:47 -0700283 break;
284 default:
Chuck Levere7942b92009-04-23 19:32:48 -0400285 len = snprintf(buf, remaining, "*unknown-%d*\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400286 sk->sk_family);
NeilBrown80212d52006-10-02 02:17:47 -0700287 }
Chuck Levere7942b92009-04-23 19:32:48 -0400288
289 if (len >= remaining) {
290 *buf = '\0';
291 return -ENAMETOOLONG;
NeilBrown80212d52006-10-02 02:17:47 -0700292 }
293 return len;
294}
295
Chuck Lever8435d342009-04-23 19:32:40 -0400296/**
297 * svc_sock_names - construct a list of listener names in a string
298 * @serv: pointer to RPC service
299 * @buf: pointer to a buffer to fill in with socket names
300 * @buflen: size of the buffer to be filled
301 * @toclose: pointer to '\0'-terminated C string containing the name
302 * of a listener to be closed
303 *
304 * Fills in @buf with a '\n'-separated list of names of listener
305 * sockets. If @toclose is not NULL, the socket named by @toclose
306 * is closed, and is not included in the output list.
307 *
308 * Returns positive length of the socket name string, or a negative
309 * errno value on error.
310 */
311int svc_sock_names(struct svc_serv *serv, char *buf, const size_t buflen,
312 const char *toclose)
NeilBrown80212d52006-10-02 02:17:47 -0700313{
NeilBrownb41b66d2006-10-02 02:17:48 -0700314 struct svc_sock *svsk, *closesk = NULL;
NeilBrown80212d52006-10-02 02:17:47 -0700315 int len = 0;
316
317 if (!serv)
318 return 0;
Chuck Levere7942b92009-04-23 19:32:48 -0400319
NeilBrownaaf68cf2007-02-08 14:20:30 -0800320 spin_lock_bh(&serv->sv_lock);
Tom Tucker7a182082007-12-30 21:07:53 -0600321 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list) {
Chuck Levere7942b92009-04-23 19:32:48 -0400322 int onelen = svc_one_sock_name(svsk, buf + len, buflen - len);
323 if (onelen < 0) {
324 len = onelen;
325 break;
326 }
327 if (toclose && strcmp(toclose, buf + len) == 0)
NeilBrownb41b66d2006-10-02 02:17:48 -0700328 closesk = svsk;
329 else
330 len += onelen;
NeilBrown80212d52006-10-02 02:17:47 -0700331 }
NeilBrownaaf68cf2007-02-08 14:20:30 -0800332 spin_unlock_bh(&serv->sv_lock);
Chuck Levere7942b92009-04-23 19:32:48 -0400333
NeilBrownb41b66d2006-10-02 02:17:48 -0700334 if (closesk)
NeilBrown5680c442006-10-04 02:15:45 -0700335 /* Should unregister with portmap, but you cannot
336 * unregister just one protocol...
337 */
Tom Tucker7a182082007-12-30 21:07:53 -0600338 svc_close_xprt(&closesk->sk_xprt);
NeilBrown37a03472006-10-04 02:15:44 -0700339 else if (toclose)
340 return -ENOENT;
NeilBrown80212d52006-10-02 02:17:47 -0700341 return len;
342}
Trond Myklebust24c37672008-12-23 16:30:12 -0500343EXPORT_SYMBOL_GPL(svc_sock_names);
NeilBrown80212d52006-10-02 02:17:47 -0700344
345/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * Check input queue length
347 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600348static int svc_recv_available(struct svc_sock *svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 struct socket *sock = svsk->sk_sock;
351 int avail, err;
352
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700353 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 return (err >= 0)? avail : err;
356}
357
358/*
359 * Generic recvfrom routine.
360 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600361static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr,
362 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600364 struct svc_sock *svsk =
365 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Chuck Lever1ba95102007-02-12 00:53:31 -0800366 struct msghdr msg = {
367 .msg_flags = MSG_DONTWAIT,
368 };
369 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Tom Tucker260c1d12007-12-30 21:08:29 -0600371 rqstp->rq_xprt_hlen = 0;
372
Chuck Lever1ba95102007-02-12 00:53:31 -0800373 len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
374 msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
Chuck Lever1ba95102007-02-12 00:53:31 -0800377 svsk, iov[0].iov_base, iov[0].iov_len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return len;
379}
380
381/*
382 * Set socket snd and rcv buffer lengths
383 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600384static void svc_sock_setbufsize(struct socket *sock, unsigned int snd,
385 unsigned int rcv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
387#if 0
388 mm_segment_t oldfs;
389 oldfs = get_fs(); set_fs(KERNEL_DS);
390 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
391 (char*)&snd, sizeof(snd));
392 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
393 (char*)&rcv, sizeof(rcv));
394#else
395 /* sock_setsockopt limits use to sysctl_?mem_max,
396 * which isn't acceptable. Until that is made conditional
397 * on not having CAP_SYS_RESOURCE or similar, we go direct...
398 * DaveM said I could!
399 */
400 lock_sock(sock->sk);
401 sock->sk->sk_sndbuf = snd * 2;
402 sock->sk->sk_rcvbuf = rcv * 2;
J. Bruce Fields7f421832009-05-27 18:51:06 -0400403 sock->sk->sk_userlocks |= SOCK_SNDBUF_LOCK|SOCK_RCVBUF_LOCK;
Trond Myklebust47fcb032009-05-18 17:47:56 -0400404 sock->sk->sk_write_space(sock->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 release_sock(sock->sk);
406#endif
407}
408/*
409 * INET callback when data has been received on the socket.
410 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600411static void svc_udp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
Neil Brown939bb7e2005-09-13 01:25:39 -0700413 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Neil Brown939bb7e2005-09-13 01:25:39 -0700415 if (svsk) {
416 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600417 svsk, sk, count,
418 test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
419 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600420 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700421 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000422 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
423 wake_up_interruptible(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
426/*
427 * INET callback when space is newly available on the socket.
428 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600429static void svc_write_space(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
431 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
432
433 if (svsk) {
434 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600435 svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
Tom Tuckerf6150c32007-12-30 21:07:57 -0600436 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
438
Eric Dumazetaa395142010-04-20 13:03:51 +0000439 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) {
Neil Brown939bb7e2005-09-13 01:25:39 -0700440 dprintk("RPC svc_write_space: someone sleeping on %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 svsk);
Eric Dumazetaa395142010-04-20 13:03:51 +0000442 wake_up_interruptible(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444}
445
Trond Myklebust47fcb032009-05-18 17:47:56 -0400446static void svc_tcp_write_space(struct sock *sk)
447{
448 struct socket *sock = sk->sk_socket;
449
450 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk) && sock)
451 clear_bit(SOCK_NOSPACE, &sock->flags);
452 svc_write_space(sk);
453}
454
Tom Tucker9dbc2402007-12-30 21:08:12 -0600455/*
Chuck Lever7702ce42009-07-13 10:54:26 -0400456 * See net/ipv6/ip_sockglue.c : ip_cmsg_recv_pktinfo
457 */
458static int svc_udp_get_dest_address4(struct svc_rqst *rqstp,
459 struct cmsghdr *cmh)
460{
461 struct in_pktinfo *pki = CMSG_DATA(cmh);
462 if (cmh->cmsg_type != IP_PKTINFO)
463 return 0;
464 rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_addr;
465 return 1;
466}
467
468/*
469 * See net/ipv6/datagram.c : datagram_recv_ctl
470 */
471static int svc_udp_get_dest_address6(struct svc_rqst *rqstp,
472 struct cmsghdr *cmh)
473{
474 struct in6_pktinfo *pki = CMSG_DATA(cmh);
475 if (cmh->cmsg_type != IPV6_PKTINFO)
476 return 0;
477 ipv6_addr_copy(&rqstp->rq_daddr.addr6, &pki->ipi6_addr);
478 return 1;
479}
480
481/*
Tom Tucker9dbc2402007-12-30 21:08:12 -0600482 * Copy the UDP datagram's destination address to the rqstp structure.
483 * The 'destination' address in this case is the address to which the
484 * peer sent the datagram, i.e. our local address. For multihomed
485 * hosts, this can change from msg to msg. Note that only the IP
486 * address changes, the port number should remain the same.
487 */
Chuck Lever7702ce42009-07-13 10:54:26 -0400488static int svc_udp_get_dest_address(struct svc_rqst *rqstp,
489 struct cmsghdr *cmh)
Chuck Lever95756482007-02-12 00:53:38 -0800490{
Chuck Lever7702ce42009-07-13 10:54:26 -0400491 switch (cmh->cmsg_level) {
492 case SOL_IP:
493 return svc_udp_get_dest_address4(rqstp, cmh);
494 case SOL_IPV6:
495 return svc_udp_get_dest_address6(rqstp, cmh);
Chuck Lever95756482007-02-12 00:53:38 -0800496 }
Chuck Lever7702ce42009-07-13 10:54:26 -0400497
498 return 0;
Chuck Lever95756482007-02-12 00:53:38 -0800499}
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501/*
502 * Receive a datagram from a UDP socket.
503 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600504static int svc_udp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600506 struct svc_sock *svsk =
507 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600508 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 struct sk_buff *skb;
David S. Millerbc375ea2007-04-12 13:35:59 -0700510 union {
511 struct cmsghdr hdr;
512 long all[SVC_PKTINFO_SPACE / sizeof(long)];
513 } buffer;
514 struct cmsghdr *cmh = &buffer.hdr;
NeilBrown7a37f572007-03-06 01:42:21 -0800515 struct msghdr msg = {
516 .msg_name = svc_addr(rqstp),
517 .msg_control = cmh,
518 .msg_controllen = sizeof(buffer),
519 .msg_flags = MSG_DONTWAIT,
520 };
Chuck Leverabc5c442009-04-23 19:31:25 -0400521 size_t len;
522 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Tom Tucker02fc6c32007-12-30 21:07:48 -0600524 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 /* udp sockets need large rcvbuf as all pending
526 * requests are still in that buffer. sndbuf must
527 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700528 * for one reply per thread. We count all threads
529 * rather than threads in a particular pool, which
530 * provides an upper bound on the number of threads
531 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 */
533 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700534 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
535 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Tom Tucker02fc6c32007-12-30 21:07:48 -0600537 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
NeilBrown05ed6902007-05-09 02:34:55 -0700538 skb = NULL;
539 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
540 0, 0, MSG_PEEK | MSG_DONTWAIT);
541 if (err >= 0)
542 skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err);
543
544 if (skb == NULL) {
545 if (err != -EAGAIN) {
546 /* possibly an icmp error */
547 dprintk("svc: recvfrom returned error %d\n", -err);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600548 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
NeilBrown05ed6902007-05-09 02:34:55 -0700550 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600552 len = svc_addr_len(svc_addr(rqstp));
Chuck Leverabc5c442009-04-23 19:31:25 -0400553 if (len == 0)
554 return -EAFNOSUPPORT;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600555 rqstp->rq_addrlen = len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700556 if (skb->tstamp.tv64 == 0) {
557 skb->tstamp = ktime_get_real();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800558 /* Don't enable netstamp, sunrpc doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 need that much accuracy */
560 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700561 svsk->sk_sk->sk_stamp = skb->tstamp;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600562 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); /* there may be more data... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 len = skb->len - sizeof(struct udphdr);
565 rqstp->rq_arg.len = len;
566
Chuck Lever95756482007-02-12 00:53:38 -0800567 rqstp->rq_prot = IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Chuck Lever7702ce42009-07-13 10:54:26 -0400569 if (!svc_udp_get_dest_address(rqstp, cmh)) {
NeilBrown7a37f572007-03-06 01:42:21 -0800570 if (net_ratelimit())
Chuck Lever7702ce42009-07-13 10:54:26 -0400571 printk(KERN_WARNING
572 "svc: received unknown control message %d/%d; "
573 "dropping RPC reply datagram\n",
574 cmh->cmsg_level, cmh->cmsg_type);
Eric Dumazet9d410c72009-10-30 05:03:53 +0000575 skb_free_datagram_locked(svsk->sk_sk, skb);
NeilBrown7a37f572007-03-06 01:42:21 -0800576 return 0;
577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 if (skb_is_nonlinear(skb)) {
580 /* we have to copy */
581 local_bh_disable();
582 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
583 local_bh_enable();
584 /* checksum error */
Eric Dumazet9d410c72009-10-30 05:03:53 +0000585 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return 0;
587 }
588 local_bh_enable();
Eric Dumazet9d410c72009-10-30 05:03:53 +0000589 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 } else {
591 /* we can use it in-place */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600592 rqstp->rq_arg.head[0].iov_base = skb->data +
593 sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 rqstp->rq_arg.head[0].iov_len = len;
Herbert Xufb286bb2005-11-10 13:01:24 -0800595 if (skb_checksum_complete(skb)) {
Eric Dumazet9d410c72009-10-30 05:03:53 +0000596 skb_free_datagram_locked(svsk->sk_sk, skb);
Herbert Xufb286bb2005-11-10 13:01:24 -0800597 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
Tom Tucker5148bf42007-12-30 21:07:25 -0600599 rqstp->rq_xprt_ctxt = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
601
602 rqstp->rq_arg.page_base = 0;
603 if (len <= rqstp->rq_arg.head[0].iov_len) {
604 rqstp->rq_arg.head[0].iov_len = len;
605 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700606 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 } else {
608 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700609 rqstp->rq_respages = rqstp->rq_pages + 1 +
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700610 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
613 if (serv->sv_stats)
614 serv->sv_stats->netudpcnt++;
615
616 return len;
617}
618
619static int
620svc_udp_sendto(struct svc_rqst *rqstp)
621{
622 int error;
623
624 error = svc_sendto(rqstp, &rqstp->rq_res);
625 if (error == -ECONNREFUSED)
626 /* ICMP error on earlier request. */
627 error = svc_sendto(rqstp, &rqstp->rq_res);
628
629 return error;
630}
631
Tom Tuckere831fe62007-12-30 21:07:29 -0600632static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp)
633{
634}
635
Tom Tucker323bee32007-12-30 21:07:31 -0600636static int svc_udp_has_wspace(struct svc_xprt *xprt)
637{
638 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600639 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600640 unsigned long required;
641
642 /*
643 * Set the SOCK_NOSPACE flag before checking the available
644 * sock space.
645 */
646 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600647 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600648 if (required*2 > sock_wspace(svsk->sk_sk))
649 return 0;
650 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
651 return 1;
652}
653
Tom Tucker38a417c2007-12-30 21:07:36 -0600654static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt)
655{
656 BUG();
657 return NULL;
658}
659
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600660static struct svc_xprt *svc_udp_create(struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400661 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600662 struct sockaddr *sa, int salen,
663 int flags)
664{
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400665 return svc_create_socket(serv, IPPROTO_UDP, net, sa, salen, flags);
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600666}
667
Tom Tucker360d87382007-12-30 21:07:17 -0600668static struct svc_xprt_ops svc_udp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600669 .xpo_create = svc_udp_create,
Tom Tucker5d137992007-12-30 21:07:23 -0600670 .xpo_recvfrom = svc_udp_recvfrom,
671 .xpo_sendto = svc_udp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -0600672 .xpo_release_rqst = svc_release_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -0600673 .xpo_detach = svc_sock_detach,
674 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -0600675 .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -0600676 .xpo_has_wspace = svc_udp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -0600677 .xpo_accept = svc_udp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -0600678};
679
680static struct svc_xprt_class svc_udp_class = {
681 .xcl_name = "udp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600682 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -0600683 .xcl_ops = &svc_udp_ops,
Tom Tucker49023152007-12-30 21:07:21 -0600684 .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP,
Tom Tucker360d87382007-12-30 21:07:17 -0600685};
686
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600687static void svc_udp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
Chuck Lever7702ce42009-07-13 10:54:26 -0400689 int err, level, optname, one = 1;
NeilBrown7a37f572007-03-06 01:42:21 -0800690
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600691 svc_xprt_init(&svc_udp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600692 clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
694 svsk->sk_sk->sk_write_space = svc_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800697 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 * svc_udp_recvfrom will re-adjust if necessary
699 */
700 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600701 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
702 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Tom Tucker0f0257e2007-12-30 21:08:27 -0600704 /* data might have come in before data_ready set up */
705 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600706 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
NeilBrown7a37f572007-03-06 01:42:21 -0800707
NeilBrown7a37f572007-03-06 01:42:21 -0800708 /* make sure we get destination address info */
Chuck Lever7702ce42009-07-13 10:54:26 -0400709 switch (svsk->sk_sk->sk_family) {
710 case AF_INET:
711 level = SOL_IP;
712 optname = IP_PKTINFO;
713 break;
714 case AF_INET6:
715 level = SOL_IPV6;
716 optname = IPV6_RECVPKTINFO;
717 break;
718 default:
719 BUG();
720 }
721 err = kernel_setsockopt(svsk->sk_sock, level, optname,
722 (char *)&one, sizeof(one));
723 dprintk("svc: kernel_setsockopt returned %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
726/*
727 * A data_ready event on a listening socket means there's a connection
728 * pending. Do not use state_change as a substitute for it.
729 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600730static void svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Neil Brown939bb7e2005-09-13 01:25:39 -0700732 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700735 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Neil Brown939bb7e2005-09-13 01:25:39 -0700737 /*
738 * This callback may called twice when a new connection
739 * is established as a child socket inherits everything
740 * from a parent LISTEN socket.
741 * 1) data_ready method of the parent socket will be called
742 * when one of child sockets become ESTABLISHED.
743 * 2) data_ready method of the child socket may be called
744 * when it receives data before the socket is accepted.
745 * In case of 2, we should ignore it silently.
746 */
747 if (sk->sk_state == TCP_LISTEN) {
748 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600749 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600750 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700751 } else
752 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
Neil Brown939bb7e2005-09-13 01:25:39 -0700754
Eric Dumazetaa395142010-04-20 13:03:51 +0000755 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
756 wake_up_interruptible_all(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759/*
760 * A state change on a connected socket means it's dying or dead.
761 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600762static void svc_tcp_state_change(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Neil Brown939bb7e2005-09-13 01:25:39 -0700764 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700767 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Neil Brown939bb7e2005-09-13 01:25:39 -0700769 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700771 else {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600772 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600773 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000775 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
776 wake_up_interruptible_all(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
Tom Tucker0f0257e2007-12-30 21:08:27 -0600779static void svc_tcp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Neil Brown939bb7e2005-09-13 01:25:39 -0700781 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700784 sk, sk->sk_user_data);
785 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600786 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600787 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700788 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000789 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
790 wake_up_interruptible(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792
793/*
794 * Accept a TCP connection
795 */
Tom Tucker38a417c2007-12-30 21:07:36 -0600796static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Tom Tucker38a417c2007-12-30 21:07:36 -0600798 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800799 struct sockaddr_storage addr;
800 struct sockaddr *sin = (struct sockaddr *) &addr;
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600801 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 struct socket *sock = svsk->sk_sock;
803 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 struct svc_sock *newsvsk;
805 int err, slen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300806 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
809 if (!sock)
Tom Tucker38a417c2007-12-30 21:07:36 -0600810 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Tom Tucker02fc6c32007-12-30 21:07:48 -0600812 clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700813 err = kernel_accept(sock, &newsock, O_NONBLOCK);
814 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (err == -ENOMEM)
816 printk(KERN_WARNING "%s: no more sockets!\n",
817 serv->sv_name);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700818 else if (err != -EAGAIN && net_ratelimit())
819 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
820 serv->sv_name, -err);
Tom Tucker38a417c2007-12-30 21:07:36 -0600821 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
Tom Tucker02fc6c32007-12-30 21:07:48 -0600823 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800825 err = kernel_getpeername(newsock, sin, &slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 if (err < 0) {
827 if (net_ratelimit())
828 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
829 serv->sv_name, -err);
830 goto failed; /* aborted connection or whatever */
831 }
832
833 /* Ideally, we would want to reject connections from unauthorized
Chuck Leverad06e4b2007-02-12 00:53:32 -0800834 * hosts here, but when we get encryption, the IP of the host won't
835 * tell us anything. For now just warn about unpriv connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 */
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800837 if (!svc_port_is_privileged(sin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 dprintk(KERN_WARNING
Chuck Leverad06e4b2007-02-12 00:53:32 -0800839 "%s: connect from unprivileged port: %s\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800840 serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800841 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
Chuck Leverad06e4b2007-02-12 00:53:32 -0800843 dprintk("%s: connect from %s\n", serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800844 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 /* make sure that a write doesn't block forever when
847 * low on memory
848 */
849 newsock->sk->sk_sndtimeo = HZ*30;
850
Chuck Lever6b174332007-02-12 00:53:28 -0800851 if (!(newsvsk = svc_setup_socket(serv, newsock, &err,
852 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 goto failed;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600854 svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen);
Frank van Maarseveena9747692007-07-09 22:21:39 +0200855 err = kernel_getsockname(newsock, sin, &slen);
856 if (unlikely(err < 0)) {
857 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
858 slen = offsetof(struct sockaddr, sa_data);
859 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600860 svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -0800861
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600862 if (serv->sv_stats)
863 serv->sv_stats->nettcpconn++;
864
865 return &newsvsk->sk_xprt;
866
867failed:
868 sock_release(newsock);
869 return NULL;
870}
871
872/*
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300873 * Receive data.
874 * If we haven't gotten the record length yet, get the next four bytes.
875 * Otherwise try to gobble up as much as possible up to the complete
876 * record length.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 */
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300878static int svc_tcp_recv_record(struct svc_sock *svsk, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600880 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300881 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
J. Bruce Fields7f421832009-05-27 18:51:06 -0400883 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
884 /* sndbuf needs to have room for one request
885 * per thread, otherwise we can stall even when the
886 * network isn't a bottleneck.
887 *
888 * We count all threads rather than threads in a
889 * particular pool, which provides an upper bound
890 * on the number of threads which will access the socket.
891 *
892 * rcvbuf just needs to be able to hold a few requests.
893 * Normally they will be removed from the queue
894 * as soon a a complete request arrives.
895 */
896 svc_sock_setbufsize(svsk->sk_sock,
897 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
898 3 * serv->sv_max_mesg);
899
Tom Tucker02fc6c32007-12-30 21:07:48 -0600900 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Chuck Leverc0401ea2008-04-14 12:27:30 -0400902 if (svsk->sk_tcplen < sizeof(rpc_fraghdr)) {
903 int want = sizeof(rpc_fraghdr) - svsk->sk_tcplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 struct kvec iov;
905
906 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
907 iov.iov_len = want;
908 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
909 goto error;
910 svsk->sk_tcplen += len;
911
912 if (len < want) {
Chuck Leverc0401ea2008-04-14 12:27:30 -0400913 dprintk("svc: short recvfrom while reading record "
914 "length (%d of %d)\n", len, want);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300915 goto err_again; /* record header not complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
917
918 svsk->sk_reclen = ntohl(svsk->sk_reclen);
Chuck Leverc0401ea2008-04-14 12:27:30 -0400919 if (!(svsk->sk_reclen & RPC_LAST_STREAM_FRAGMENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 /* FIXME: technically, a record can be fragmented,
921 * and non-terminal fragments will not have the top
922 * bit set in the fragment length header.
923 * But apparently no known nfs clients send fragmented
924 * records. */
NeilBrown34e9a632007-01-29 13:19:52 -0800925 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400926 printk(KERN_NOTICE "RPC: multiple fragments "
927 "per record not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 goto err_delete;
929 }
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300930
Chuck Leverc0401ea2008-04-14 12:27:30 -0400931 svsk->sk_reclen &= RPC_FRAGMENT_SIZE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700933 if (svsk->sk_reclen > serv->sv_max_mesg) {
NeilBrown34e9a632007-01-29 13:19:52 -0800934 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400935 printk(KERN_NOTICE "RPC: "
936 "fragment too large: 0x%08lx\n",
937 (unsigned long)svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 goto err_delete;
939 }
940 }
941
942 /* Check whether enough data is available */
943 len = svc_recv_available(svsk);
944 if (len < 0)
945 goto error;
946
947 if (len < svsk->sk_reclen) {
948 dprintk("svc: incomplete TCP record (%d of %d)\n",
949 len, svsk->sk_reclen);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300950 goto err_again; /* record not complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
952 len = svsk->sk_reclen;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600953 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300955 return len;
956 error:
Neil Brownb48fa6b2010-03-01 16:51:14 +1100957 if (len == -EAGAIN)
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300958 dprintk("RPC: TCP recv_record got EAGAIN\n");
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300959 return len;
960 err_delete:
961 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
962 err_again:
963 return -EAGAIN;
964}
965
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300966static int svc_process_calldir(struct svc_sock *svsk, struct svc_rqst *rqstp,
967 struct rpc_rqst **reqpp, struct kvec *vec)
968{
969 struct rpc_rqst *req = NULL;
970 u32 *p;
971 u32 xid;
972 u32 calldir;
973 int len;
974
975 len = svc_recvfrom(rqstp, vec, 1, 8);
976 if (len < 0)
977 goto error;
978
979 p = (u32 *)rqstp->rq_arg.head[0].iov_base;
980 xid = *p++;
981 calldir = *p;
982
983 if (calldir == 0) {
984 /* REQUEST is the most common case */
985 vec[0] = rqstp->rq_arg.head[0];
986 } else {
987 /* REPLY */
988 if (svsk->sk_bc_xprt)
989 req = xprt_lookup_rqst(svsk->sk_bc_xprt, xid);
990
991 if (!req) {
992 printk(KERN_NOTICE
993 "%s: Got unrecognized reply: "
994 "calldir 0x%x sk_bc_xprt %p xid %08x\n",
995 __func__, ntohl(calldir),
996 svsk->sk_bc_xprt, xid);
997 vec[0] = rqstp->rq_arg.head[0];
998 goto out;
999 }
1000
1001 memcpy(&req->rq_private_buf, &req->rq_rcv_buf,
1002 sizeof(struct xdr_buf));
1003 /* copy the xid and call direction */
1004 memcpy(req->rq_private_buf.head[0].iov_base,
1005 rqstp->rq_arg.head[0].iov_base, 8);
1006 vec[0] = req->rq_private_buf.head[0];
1007 }
1008 out:
1009 vec[0].iov_base += 8;
1010 vec[0].iov_len -= 8;
1011 len = svsk->sk_reclen - 8;
1012 error:
1013 *reqpp = req;
1014 return len;
1015}
1016
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001017/*
1018 * Receive data from a TCP socket.
1019 */
1020static int svc_tcp_recvfrom(struct svc_rqst *rqstp)
1021{
1022 struct svc_sock *svsk =
1023 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
1024 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
1025 int len;
1026 struct kvec *vec;
1027 int pnum, vlen;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001028 struct rpc_rqst *req = NULL;
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001029
1030 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
1031 svsk, test_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags),
1032 test_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags),
1033 test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags));
1034
1035 len = svc_tcp_recv_record(svsk, rqstp);
1036 if (len < 0)
1037 goto error;
1038
NeilBrown3cc03b12006-10-04 02:15:47 -07001039 vec = rqstp->rq_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 vec[0] = rqstp->rq_arg.head[0];
1041 vlen = PAGE_SIZE;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001042
1043 /*
1044 * We have enough data for the whole tcp record. Let's try and read the
1045 * first 8 bytes to get the xid and the call direction. We can use this
1046 * to figure out if this is a call or a reply to a callback. If
1047 * sk_reclen is < 8 (xid and calldir), then this is a malformed packet.
1048 * In that case, don't bother with the calldir and just read the data.
1049 * It will be rejected in svc_process.
1050 */
1051 if (len >= 8) {
1052 len = svc_process_calldir(svsk, rqstp, &req, vec);
1053 if (len < 0)
1054 goto err_again;
1055 vlen -= 8;
1056 }
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 pnum = 1;
1059 while (vlen < len) {
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001060 vec[pnum].iov_base = (req) ?
1061 page_address(req->rq_private_buf.pages[pnum - 1]) :
1062 page_address(rqstp->rq_pages[pnum]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 vec[pnum].iov_len = PAGE_SIZE;
1064 pnum++;
1065 vlen += PAGE_SIZE;
1066 }
NeilBrown44524352006-10-04 02:15:46 -07001067 rqstp->rq_respages = &rqstp->rq_pages[pnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069 /* Now receive data */
1070 len = svc_recvfrom(rqstp, vec, pnum, len);
1071 if (len < 0)
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001072 goto err_again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001074 /*
1075 * Account for the 8 bytes we read earlier
1076 */
1077 len += 8;
1078
1079 if (req) {
1080 xprt_complete_rqst(req->rq_task, len);
1081 len = 0;
1082 goto out;
1083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 dprintk("svc: TCP complete record (%d bytes)\n", len);
1085 rqstp->rq_arg.len = len;
1086 rqstp->rq_arg.page_base = 0;
1087 if (len <= rqstp->rq_arg.head[0].iov_len) {
1088 rqstp->rq_arg.head[0].iov_len = len;
1089 rqstp->rq_arg.page_len = 0;
1090 } else {
1091 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
1092 }
1093
Tom Tucker5148bf42007-12-30 21:07:25 -06001094 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 rqstp->rq_prot = IPPROTO_TCP;
1096
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001097out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 /* Reset TCP read info */
1099 svsk->sk_reclen = 0;
1100 svsk->sk_tcplen = 0;
1101
Tom Tucker9dbc2402007-12-30 21:08:12 -06001102 svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 if (serv->sv_stats)
1104 serv->sv_stats->nettcpcnt++;
1105
1106 return len;
1107
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001108err_again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 if (len == -EAGAIN) {
1110 dprintk("RPC: TCP recvfrom got EAGAIN\n");
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001111 return len;
1112 }
1113error:
1114 if (len != -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001116 svsk->sk_xprt.xpt_server->sv_name, -len);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001117 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001119 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
1121
1122/*
1123 * Send out data on TCP socket.
1124 */
Tom Tucker0f0257e2007-12-30 21:08:27 -06001125static int svc_tcp_sendto(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
1127 struct xdr_buf *xbufp = &rqstp->rq_res;
1128 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001129 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 /* Set up the first element of the reply kvec.
1132 * Any other kvecs that may be in use have been taken
1133 * care of by the server implementation itself.
1134 */
1135 reclen = htonl(0x80000000|((xbufp->len ) - 4));
1136 memcpy(xbufp->head[0].iov_base, &reclen, 4);
1137
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001138 if (test_bit(XPT_DEAD, &rqstp->rq_xprt->xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 return -ENOTCONN;
1140
1141 sent = svc_sendto(rqstp, &rqstp->rq_res);
1142 if (sent != xbufp->len) {
Tom Tucker0f0257e2007-12-30 21:08:27 -06001143 printk(KERN_NOTICE
1144 "rpc-srv/tcp: %s: %s %d when sending %d bytes "
1145 "- shutting down socket\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001146 rqstp->rq_xprt->xpt_server->sv_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 (sent<0)?"got error":"sent only",
1148 sent, xbufp->len);
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001149 set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -06001150 svc_xprt_enqueue(rqstp->rq_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 sent = -EAGAIN;
1152 }
1153 return sent;
1154}
1155
Tom Tuckere831fe62007-12-30 21:07:29 -06001156/*
1157 * Setup response header. TCP has a 4B record length field.
1158 */
1159static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp)
1160{
1161 struct kvec *resv = &rqstp->rq_res.head[0];
1162
1163 /* tcp needs a space for the record length... */
1164 svc_putnl(resv, 0);
1165}
1166
Tom Tucker323bee32007-12-30 21:07:31 -06001167static int svc_tcp_has_wspace(struct svc_xprt *xprt)
1168{
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001169 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Trond Myklebust47fcb032009-05-18 17:47:56 -04001170 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -06001171 int required;
Tom Tucker323bee32007-12-30 21:07:31 -06001172
Trond Myklebust47fcb032009-05-18 17:47:56 -04001173 if (test_bit(XPT_LISTENER, &xprt->xpt_flags))
1174 return 1;
1175 required = atomic_read(&xprt->xpt_reserved) + serv->sv_max_mesg;
1176 if (sk_stream_wspace(svsk->sk_sk) >= required)
1177 return 1;
Tom Tucker323bee32007-12-30 21:07:31 -06001178 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Trond Myklebust47fcb032009-05-18 17:47:56 -04001179 return 0;
Tom Tucker323bee32007-12-30 21:07:31 -06001180}
1181
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001182static struct svc_xprt *svc_tcp_create(struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001183 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001184 struct sockaddr *sa, int salen,
1185 int flags)
1186{
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001187 return svc_create_socket(serv, IPPROTO_TCP, net, sa, salen, flags);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001188}
1189
Tom Tucker360d87382007-12-30 21:07:17 -06001190static struct svc_xprt_ops svc_tcp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001191 .xpo_create = svc_tcp_create,
Tom Tucker5d137992007-12-30 21:07:23 -06001192 .xpo_recvfrom = svc_tcp_recvfrom,
1193 .xpo_sendto = svc_tcp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -06001194 .xpo_release_rqst = svc_release_skb,
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001195 .xpo_detach = svc_tcp_sock_detach,
Tom Tucker755ccea2007-12-30 21:07:27 -06001196 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -06001197 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -06001198 .xpo_has_wspace = svc_tcp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -06001199 .xpo_accept = svc_tcp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -06001200};
1201
1202static struct svc_xprt_class svc_tcp_class = {
1203 .xcl_name = "tcp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001204 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -06001205 .xcl_ops = &svc_tcp_ops,
Tom Tucker49023152007-12-30 21:07:21 -06001206 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
Tom Tucker360d87382007-12-30 21:07:17 -06001207};
1208
1209void svc_init_xprt_sock(void)
1210{
1211 svc_reg_xprt_class(&svc_tcp_class);
1212 svc_reg_xprt_class(&svc_udp_class);
1213}
1214
1215void svc_cleanup_xprt_sock(void)
1216{
1217 svc_unreg_xprt_class(&svc_tcp_class);
1218 svc_unreg_xprt_class(&svc_udp_class);
1219}
1220
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001221static void svc_tcp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
1223 struct sock *sk = svsk->sk_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001225 svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -06001226 set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (sk->sk_state == TCP_LISTEN) {
1228 dprintk("setting up TCP socket for listening\n");
Tom Tucker02fc6c32007-12-30 21:07:48 -06001229 set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 sk->sk_data_ready = svc_tcp_listen_data_ready;
Tom Tucker02fc6c32007-12-30 21:07:48 -06001231 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 } else {
1233 dprintk("setting up TCP socket for reading\n");
1234 sk->sk_state_change = svc_tcp_state_change;
1235 sk->sk_data_ready = svc_tcp_data_ready;
Trond Myklebust47fcb032009-05-18 17:47:56 -04001236 sk->sk_write_space = svc_tcp_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
1238 svsk->sk_reclen = 0;
1239 svsk->sk_tcplen = 0;
1240
Chuck Leverb7872fe2008-04-14 12:27:01 -04001241 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
J. Bruce Fields7f421832009-05-27 18:51:06 -04001243 /* initialise setting must have enough space to
1244 * receive and respond to one request.
1245 * svc_tcp_recvfrom will re-adjust if necessary
1246 */
1247 svc_sock_setbufsize(svsk->sk_sock,
1248 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
1249 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
1250
1251 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001252 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001253 if (sk->sk_state != TCP_ESTABLISHED)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001254 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 }
1256}
1257
Tom Tucker0f0257e2007-12-30 21:08:27 -06001258void svc_sock_update_bufs(struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
1260 /*
1261 * The number of server threads has changed. Update
1262 * rcvbuf and sndbuf accordingly on all sockets
1263 */
1264 struct list_head *le;
1265
1266 spin_lock_bh(&serv->sv_lock);
1267 list_for_each(le, &serv->sv_permsocks) {
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001268 struct svc_sock *svsk =
Tom Tucker7a182082007-12-30 21:07:53 -06001269 list_entry(le, struct svc_sock, sk_xprt.xpt_list);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001270 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 }
1272 list_for_each(le, &serv->sv_tempsocks) {
1273 struct svc_sock *svsk =
Tom Tucker7a182082007-12-30 21:07:53 -06001274 list_entry(le, struct svc_sock, sk_xprt.xpt_list);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001275 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
1277 spin_unlock_bh(&serv->sv_lock);
1278}
Trond Myklebust24c37672008-12-23 16:30:12 -05001279EXPORT_SYMBOL_GPL(svc_sock_update_bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 * Initialize socket for RPC use and create svc_sock struct
1283 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1284 */
Chuck Lever6b174332007-02-12 00:53:28 -08001285static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1286 struct socket *sock,
1287 int *errp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
1289 struct svc_sock *svsk;
1290 struct sock *inet;
Chuck Lever6b174332007-02-12 00:53:28 -08001291 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 dprintk("svc: svc_setup_socket %p\n", sock);
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001294 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 *errp = -ENOMEM;
1296 return NULL;
1297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 inet = sock->sk;
1300
1301 /* Register socket with portmapper */
1302 if (*errp >= 0 && pmap_register)
Chuck Leverbaf01ca2009-03-18 20:46:13 -04001303 *errp = svc_register(serv, inet->sk_family, inet->sk_protocol,
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001304 ntohs(inet_sk(inet)->inet_sport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 if (*errp < 0) {
1307 kfree(svsk);
1308 return NULL;
1309 }
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 inet->sk_user_data = svsk;
1312 svsk->sk_sock = sock;
1313 svsk->sk_sk = inet;
1314 svsk->sk_ostate = inet->sk_state_change;
1315 svsk->sk_odata = inet->sk_data_ready;
1316 svsk->sk_owspace = inet->sk_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
1318 /* Initialize the socket */
1319 if (sock->type == SOCK_DGRAM)
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001320 svc_udp_init(svsk, serv);
J. Bruce Fields7f421832009-05-27 18:51:06 -04001321 else
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001322 svc_tcp_init(svsk, serv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1325 svsk, svsk->sk_sk);
1326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 return svsk;
1328}
1329
Chuck Leverbfba9ab2009-04-23 19:32:33 -04001330/**
1331 * svc_addsock - add a listener socket to an RPC service
1332 * @serv: pointer to RPC service to which to add a new listener
1333 * @fd: file descriptor of the new listener
1334 * @name_return: pointer to buffer to fill in with name of listener
1335 * @len: size of the buffer
1336 *
1337 * Fills in socket name and returns positive length of name if successful.
1338 * Name is terminated with '\n'. On error, returns a negative errno
1339 * value.
1340 */
1341int svc_addsock(struct svc_serv *serv, const int fd, char *name_return,
1342 const size_t len)
NeilBrownb41b66d2006-10-02 02:17:48 -07001343{
1344 int err = 0;
1345 struct socket *so = sockfd_lookup(fd, &err);
1346 struct svc_sock *svsk = NULL;
1347
1348 if (!so)
1349 return err;
Aime Le Rouzic205ba422010-01-26 14:03:56 -05001350 if ((so->sk->sk_family != PF_INET) && (so->sk->sk_family != PF_INET6))
NeilBrownb41b66d2006-10-02 02:17:48 -07001351 err = -EAFNOSUPPORT;
1352 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1353 so->sk->sk_protocol != IPPROTO_UDP)
1354 err = -EPROTONOSUPPORT;
1355 else if (so->state > SS_UNCONNECTED)
1356 err = -EISCONN;
1357 else {
Tom Tucker2da2c212008-11-23 09:58:08 -06001358 if (!try_module_get(THIS_MODULE))
1359 err = -ENOENT;
1360 else
1361 svsk = svc_setup_socket(serv, so, &err,
1362 SVC_SOCK_DEFAULTS);
NeilBrowne79eff12007-02-12 00:53:30 -08001363 if (svsk) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001364 struct sockaddr_storage addr;
1365 struct sockaddr *sin = (struct sockaddr *)&addr;
1366 int salen;
1367 if (kernel_getsockname(svsk->sk_sock, sin, &salen) == 0)
1368 svc_xprt_set_local(&svsk->sk_xprt, sin, salen);
Tom Tucker4e5caaa2007-12-30 21:08:20 -06001369 clear_bit(XPT_TEMP, &svsk->sk_xprt.xpt_flags);
1370 spin_lock_bh(&serv->sv_lock);
1371 list_add(&svsk->sk_xprt.xpt_list, &serv->sv_permsocks);
1372 spin_unlock_bh(&serv->sv_lock);
Tom Tuckera6046f72007-12-30 21:08:01 -06001373 svc_xprt_received(&svsk->sk_xprt);
NeilBrownb41b66d2006-10-02 02:17:48 -07001374 err = 0;
Tom Tucker2da2c212008-11-23 09:58:08 -06001375 } else
1376 module_put(THIS_MODULE);
NeilBrownb41b66d2006-10-02 02:17:48 -07001377 }
1378 if (err) {
1379 sockfd_put(so);
1380 return err;
1381 }
Chuck Levere7942b92009-04-23 19:32:48 -04001382 return svc_one_sock_name(svsk, name_return, len);
NeilBrownb41b66d2006-10-02 02:17:48 -07001383}
1384EXPORT_SYMBOL_GPL(svc_addsock);
1385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386/*
1387 * Create socket for RPC service.
1388 */
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001389static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
1390 int protocol,
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001391 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001392 struct sockaddr *sin, int len,
1393 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
1395 struct svc_sock *svsk;
1396 struct socket *sock;
1397 int error;
1398 int type;
Tom Tucker9dbc2402007-12-30 21:08:12 -06001399 struct sockaddr_storage addr;
1400 struct sockaddr *newsin = (struct sockaddr *)&addr;
1401 int newlen;
Trond Myklebustc69da772009-03-30 18:59:17 -04001402 int family;
1403 int val;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +03001404 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Chuck Leverad06e4b2007-02-12 00:53:32 -08001406 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1407 serv->sv_program->pg_name, protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001408 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1411 printk(KERN_WARNING "svc: only UDP and TCP "
1412 "sockets supported\n");
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001413 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Trond Myklebustc69da772009-03-30 18:59:17 -04001416 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1417 switch (sin->sa_family) {
1418 case AF_INET6:
1419 family = PF_INET6;
1420 break;
1421 case AF_INET:
1422 family = PF_INET;
1423 break;
1424 default:
1425 return ERR_PTR(-EINVAL);
1426 }
1427
Pavel Emelyanov14ec63c2010-09-29 16:06:57 +04001428 error = __sock_create(net, family, type, protocol, &sock, 1);
Chuck Lever77f1f672007-02-12 00:53:39 -08001429 if (error < 0)
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001430 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Peter Zijlstraed075362006-12-06 20:35:24 -08001432 svc_reclassify_socket(sock);
1433
Trond Myklebustc69da772009-03-30 18:59:17 -04001434 /*
1435 * If this is an PF_INET6 listener, we want to avoid
1436 * getting requests from IPv4 remotes. Those should
1437 * be shunted to a PF_INET listener via rpcbind.
1438 */
1439 val = 1;
1440 if (family == PF_INET6)
1441 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
1442 (char *)&val, sizeof(val));
1443
Eric Sesterhenn18114742006-09-28 14:37:07 -07001444 if (type == SOCK_STREAM)
Chuck Lever77f1f672007-02-12 00:53:39 -08001445 sock->sk->sk_reuse = 1; /* allow address reuse */
1446 error = kernel_bind(sock, sin, len);
Eric Sesterhenn18114742006-09-28 14:37:07 -07001447 if (error < 0)
1448 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Tom Tucker9dbc2402007-12-30 21:08:12 -06001450 newlen = len;
1451 error = kernel_getsockname(sock, newsin, &newlen);
1452 if (error < 0)
1453 goto bummer;
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001456 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 goto bummer;
1458 }
1459
NeilBrowne79eff12007-02-12 00:53:30 -08001460 if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001461 svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001462 return (struct svc_xprt *)svsk;
NeilBrowne79eff12007-02-12 00:53:30 -08001463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
1465bummer:
1466 dprintk("svc: svc_create_socket error = %d\n", -error);
1467 sock_release(sock);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001468 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469}
1470
1471/*
Tom Tucker755ccea2007-12-30 21:07:27 -06001472 * Detach the svc_sock from the socket so that no
1473 * more callbacks occur.
1474 */
1475static void svc_sock_detach(struct svc_xprt *xprt)
1476{
1477 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1478 struct sock *sk = svsk->sk_sk;
1479
1480 dprintk("svc: svc_sock_detach(%p)\n", svsk);
1481
1482 /* put back the old socket callbacks */
1483 sk->sk_state_change = svsk->sk_ostate;
1484 sk->sk_data_ready = svsk->sk_odata;
1485 sk->sk_write_space = svsk->sk_owspace;
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001486
Eric Dumazetaa395142010-04-20 13:03:51 +00001487 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
1488 wake_up_interruptible(sk_sleep(sk));
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001489}
1490
1491/*
1492 * Disconnect the socket, and reset the callbacks
1493 */
1494static void svc_tcp_sock_detach(struct svc_xprt *xprt)
1495{
1496 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1497
1498 dprintk("svc: svc_tcp_sock_detach(%p)\n", svsk);
1499
1500 svc_sock_detach(xprt);
1501
1502 if (!test_bit(XPT_LISTENER, &xprt->xpt_flags))
1503 kernel_sock_shutdown(svsk->sk_sock, SHUT_RDWR);
Tom Tucker755ccea2007-12-30 21:07:27 -06001504}
1505
1506/*
1507 * Free the svc_sock's socket resources and the svc_sock itself.
1508 */
1509static void svc_sock_free(struct svc_xprt *xprt)
1510{
1511 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1512 dprintk("svc: svc_sock_free(%p)\n", svsk);
1513
Tom Tucker755ccea2007-12-30 21:07:27 -06001514 if (svsk->sk_sock->file)
1515 sockfd_put(svsk->sk_sock);
1516 else
1517 sock_release(svsk->sk_sock);
1518 kfree(svsk);
1519}
Benny Halevy7652e5a2009-04-01 09:23:09 -04001520
1521/*
1522 * Create a svc_xprt.
1523 *
1524 * For internal use only (e.g. nfsv4.1 backchannel).
1525 * Callers should typically use the xpo_create() method.
1526 */
1527struct svc_xprt *svc_sock_create(struct svc_serv *serv, int prot)
1528{
1529 struct svc_sock *svsk;
1530 struct svc_xprt *xprt = NULL;
1531
1532 dprintk("svc: %s\n", __func__);
1533 svsk = kzalloc(sizeof(*svsk), GFP_KERNEL);
1534 if (!svsk)
1535 goto out;
1536
1537 xprt = &svsk->sk_xprt;
1538 if (prot == IPPROTO_TCP)
1539 svc_xprt_init(&svc_tcp_class, xprt, serv);
1540 else if (prot == IPPROTO_UDP)
1541 svc_xprt_init(&svc_udp_class, xprt, serv);
1542 else
1543 BUG();
1544out:
1545 dprintk("svc: %s return %p\n", __func__, xprt);
1546 return xprt;
1547}
1548EXPORT_SYMBOL_GPL(svc_sock_create);
1549
1550/*
1551 * Destroy a svc_sock.
1552 */
1553void svc_sock_destroy(struct svc_xprt *xprt)
1554{
1555 if (xprt)
1556 kfree(container_of(xprt, struct svc_sock, sk_xprt));
1557}
1558EXPORT_SYMBOL_GPL(svc_sock_destroy);