blob: 52bd1130e83a15ebbc60ee78b41069dc87c5d25e [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 Dumazetc720c7e82009-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 Dumazetc720c7e82009-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 }
NeilBrown39423022010-11-15 11:27:01 +1100327 if (toclose && strcmp(toclose, buf + len) == 0) {
NeilBrownb41b66d2006-10-02 02:17:48 -0700328 closesk = svsk;
NeilBrown39423022010-11-15 11:27:01 +1100329 svc_xprt_get(&closesk->sk_xprt);
330 } else
NeilBrownb41b66d2006-10-02 02:17:48 -0700331 len += onelen;
NeilBrown80212d52006-10-02 02:17:47 -0700332 }
NeilBrownaaf68cf2007-02-08 14:20:30 -0800333 spin_unlock_bh(&serv->sv_lock);
Chuck Levere7942b92009-04-23 19:32:48 -0400334
NeilBrown39423022010-11-15 11:27:01 +1100335 if (closesk) {
NeilBrown5680c442006-10-04 02:15:45 -0700336 /* Should unregister with portmap, but you cannot
337 * unregister just one protocol...
338 */
Tom Tucker7a182082007-12-30 21:07:53 -0600339 svc_close_xprt(&closesk->sk_xprt);
NeilBrown39423022010-11-15 11:27:01 +1100340 svc_xprt_put(&closesk->sk_xprt);
341 } else if (toclose)
NeilBrown37a03472006-10-04 02:15:44 -0700342 return -ENOENT;
NeilBrown80212d52006-10-02 02:17:47 -0700343 return len;
344}
Trond Myklebust24c37672008-12-23 16:30:12 -0500345EXPORT_SYMBOL_GPL(svc_sock_names);
NeilBrown80212d52006-10-02 02:17:47 -0700346
347/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 * Check input queue length
349 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600350static int svc_recv_available(struct svc_sock *svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 struct socket *sock = svsk->sk_sock;
353 int avail, err;
354
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700355 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 return (err >= 0)? avail : err;
358}
359
360/*
361 * Generic recvfrom routine.
362 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600363static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr,
364 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600366 struct svc_sock *svsk =
367 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Chuck Lever1ba95102007-02-12 00:53:31 -0800368 struct msghdr msg = {
369 .msg_flags = MSG_DONTWAIT,
370 };
371 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Tom Tucker260c1d12007-12-30 21:08:29 -0600373 rqstp->rq_xprt_hlen = 0;
374
Chuck Lever1ba95102007-02-12 00:53:31 -0800375 len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
376 msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
Chuck Lever1ba95102007-02-12 00:53:31 -0800379 svsk, iov[0].iov_base, iov[0].iov_len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return len;
381}
382
383/*
384 * Set socket snd and rcv buffer lengths
385 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600386static void svc_sock_setbufsize(struct socket *sock, unsigned int snd,
387 unsigned int rcv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389#if 0
390 mm_segment_t oldfs;
391 oldfs = get_fs(); set_fs(KERNEL_DS);
392 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
393 (char*)&snd, sizeof(snd));
394 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
395 (char*)&rcv, sizeof(rcv));
396#else
397 /* sock_setsockopt limits use to sysctl_?mem_max,
398 * which isn't acceptable. Until that is made conditional
399 * on not having CAP_SYS_RESOURCE or similar, we go direct...
400 * DaveM said I could!
401 */
402 lock_sock(sock->sk);
403 sock->sk->sk_sndbuf = snd * 2;
404 sock->sk->sk_rcvbuf = rcv * 2;
J. Bruce Fields7f421832009-05-27 18:51:06 -0400405 sock->sk->sk_userlocks |= SOCK_SNDBUF_LOCK|SOCK_RCVBUF_LOCK;
Trond Myklebust47fcb032009-05-18 17:47:56 -0400406 sock->sk->sk_write_space(sock->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 release_sock(sock->sk);
408#endif
409}
410/*
411 * INET callback when data has been received on the socket.
412 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600413static void svc_udp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Neil Brown939bb7e2005-09-13 01:25:39 -0700415 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Neil Brown939bb7e2005-09-13 01:25:39 -0700417 if (svsk) {
418 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600419 svsk, sk, count,
420 test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
421 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600422 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700423 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000424 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
425 wake_up_interruptible(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
428/*
429 * INET callback when space is newly available on the socket.
430 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600431static void svc_write_space(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
433 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
434
435 if (svsk) {
436 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600437 svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
Tom Tuckerf6150c32007-12-30 21:07:57 -0600438 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
440
Eric Dumazetaa395142010-04-20 13:03:51 +0000441 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) {
Neil Brown939bb7e2005-09-13 01:25:39 -0700442 dprintk("RPC svc_write_space: someone sleeping on %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 svsk);
Eric Dumazetaa395142010-04-20 13:03:51 +0000444 wake_up_interruptible(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
446}
447
Trond Myklebust47fcb032009-05-18 17:47:56 -0400448static void svc_tcp_write_space(struct sock *sk)
449{
450 struct socket *sock = sk->sk_socket;
451
452 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk) && sock)
453 clear_bit(SOCK_NOSPACE, &sock->flags);
454 svc_write_space(sk);
455}
456
Tom Tucker9dbc2402007-12-30 21:08:12 -0600457/*
Chuck Lever7702ce42009-07-13 10:54:26 -0400458 * See net/ipv6/ip_sockglue.c : ip_cmsg_recv_pktinfo
459 */
460static int svc_udp_get_dest_address4(struct svc_rqst *rqstp,
461 struct cmsghdr *cmh)
462{
463 struct in_pktinfo *pki = CMSG_DATA(cmh);
464 if (cmh->cmsg_type != IP_PKTINFO)
465 return 0;
466 rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_addr;
467 return 1;
468}
469
470/*
471 * See net/ipv6/datagram.c : datagram_recv_ctl
472 */
473static int svc_udp_get_dest_address6(struct svc_rqst *rqstp,
474 struct cmsghdr *cmh)
475{
476 struct in6_pktinfo *pki = CMSG_DATA(cmh);
477 if (cmh->cmsg_type != IPV6_PKTINFO)
478 return 0;
479 ipv6_addr_copy(&rqstp->rq_daddr.addr6, &pki->ipi6_addr);
480 return 1;
481}
482
483/*
Tom Tucker9dbc2402007-12-30 21:08:12 -0600484 * Copy the UDP datagram's destination address to the rqstp structure.
485 * The 'destination' address in this case is the address to which the
486 * peer sent the datagram, i.e. our local address. For multihomed
487 * hosts, this can change from msg to msg. Note that only the IP
488 * address changes, the port number should remain the same.
489 */
Chuck Lever7702ce42009-07-13 10:54:26 -0400490static int svc_udp_get_dest_address(struct svc_rqst *rqstp,
491 struct cmsghdr *cmh)
Chuck Lever95756482007-02-12 00:53:38 -0800492{
Chuck Lever7702ce42009-07-13 10:54:26 -0400493 switch (cmh->cmsg_level) {
494 case SOL_IP:
495 return svc_udp_get_dest_address4(rqstp, cmh);
496 case SOL_IPV6:
497 return svc_udp_get_dest_address6(rqstp, cmh);
Chuck Lever95756482007-02-12 00:53:38 -0800498 }
Chuck Lever7702ce42009-07-13 10:54:26 -0400499
500 return 0;
Chuck Lever95756482007-02-12 00:53:38 -0800501}
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503/*
504 * Receive a datagram from a UDP socket.
505 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600506static int svc_udp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600508 struct svc_sock *svsk =
509 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600510 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 struct sk_buff *skb;
David S. Millerbc375ea2007-04-12 13:35:59 -0700512 union {
513 struct cmsghdr hdr;
514 long all[SVC_PKTINFO_SPACE / sizeof(long)];
515 } buffer;
516 struct cmsghdr *cmh = &buffer.hdr;
NeilBrown7a37f572007-03-06 01:42:21 -0800517 struct msghdr msg = {
518 .msg_name = svc_addr(rqstp),
519 .msg_control = cmh,
520 .msg_controllen = sizeof(buffer),
521 .msg_flags = MSG_DONTWAIT,
522 };
Chuck Leverabc5c442009-04-23 19:31:25 -0400523 size_t len;
524 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Tom Tucker02fc6c32007-12-30 21:07:48 -0600526 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 /* udp sockets need large rcvbuf as all pending
528 * requests are still in that buffer. sndbuf must
529 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700530 * for one reply per thread. We count all threads
531 * rather than threads in a particular pool, which
532 * provides an upper bound on the number of threads
533 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 */
535 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700536 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
537 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Tom Tucker02fc6c32007-12-30 21:07:48 -0600539 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
NeilBrown05ed6902007-05-09 02:34:55 -0700540 skb = NULL;
541 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
542 0, 0, MSG_PEEK | MSG_DONTWAIT);
543 if (err >= 0)
544 skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err);
545
546 if (skb == NULL) {
547 if (err != -EAGAIN) {
548 /* possibly an icmp error */
549 dprintk("svc: recvfrom returned error %d\n", -err);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600550 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
NeilBrown05ed6902007-05-09 02:34:55 -0700552 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600554 len = svc_addr_len(svc_addr(rqstp));
Chuck Leverabc5c442009-04-23 19:31:25 -0400555 if (len == 0)
556 return -EAFNOSUPPORT;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600557 rqstp->rq_addrlen = len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700558 if (skb->tstamp.tv64 == 0) {
559 skb->tstamp = ktime_get_real();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800560 /* Don't enable netstamp, sunrpc doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 need that much accuracy */
562 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700563 svsk->sk_sk->sk_stamp = skb->tstamp;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600564 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); /* there may be more data... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 len = skb->len - sizeof(struct udphdr);
567 rqstp->rq_arg.len = len;
568
Chuck Lever95756482007-02-12 00:53:38 -0800569 rqstp->rq_prot = IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Chuck Lever7702ce42009-07-13 10:54:26 -0400571 if (!svc_udp_get_dest_address(rqstp, cmh)) {
NeilBrown7a37f572007-03-06 01:42:21 -0800572 if (net_ratelimit())
Chuck Lever7702ce42009-07-13 10:54:26 -0400573 printk(KERN_WARNING
574 "svc: received unknown control message %d/%d; "
575 "dropping RPC reply datagram\n",
576 cmh->cmsg_level, cmh->cmsg_type);
Eric Dumazet9d410c72009-10-30 05:03:53 +0000577 skb_free_datagram_locked(svsk->sk_sk, skb);
NeilBrown7a37f572007-03-06 01:42:21 -0800578 return 0;
579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 if (skb_is_nonlinear(skb)) {
582 /* we have to copy */
583 local_bh_disable();
584 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
585 local_bh_enable();
586 /* checksum error */
Eric Dumazet9d410c72009-10-30 05:03:53 +0000587 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return 0;
589 }
590 local_bh_enable();
Eric Dumazet9d410c72009-10-30 05:03:53 +0000591 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 } else {
593 /* we can use it in-place */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600594 rqstp->rq_arg.head[0].iov_base = skb->data +
595 sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 rqstp->rq_arg.head[0].iov_len = len;
Herbert Xufb286bb2005-11-10 13:01:24 -0800597 if (skb_checksum_complete(skb)) {
Eric Dumazet9d410c72009-10-30 05:03:53 +0000598 skb_free_datagram_locked(svsk->sk_sk, skb);
Herbert Xufb286bb2005-11-10 13:01:24 -0800599 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Tom Tucker5148bf42007-12-30 21:07:25 -0600601 rqstp->rq_xprt_ctxt = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
603
604 rqstp->rq_arg.page_base = 0;
605 if (len <= rqstp->rq_arg.head[0].iov_len) {
606 rqstp->rq_arg.head[0].iov_len = len;
607 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700608 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 } else {
610 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700611 rqstp->rq_respages = rqstp->rq_pages + 1 +
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700612 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
614
615 if (serv->sv_stats)
616 serv->sv_stats->netudpcnt++;
617
618 return len;
619}
620
621static int
622svc_udp_sendto(struct svc_rqst *rqstp)
623{
624 int error;
625
626 error = svc_sendto(rqstp, &rqstp->rq_res);
627 if (error == -ECONNREFUSED)
628 /* ICMP error on earlier request. */
629 error = svc_sendto(rqstp, &rqstp->rq_res);
630
631 return error;
632}
633
Tom Tuckere831fe62007-12-30 21:07:29 -0600634static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp)
635{
636}
637
Tom Tucker323bee32007-12-30 21:07:31 -0600638static int svc_udp_has_wspace(struct svc_xprt *xprt)
639{
640 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600641 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600642 unsigned long required;
643
644 /*
645 * Set the SOCK_NOSPACE flag before checking the available
646 * sock space.
647 */
648 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600649 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600650 if (required*2 > sock_wspace(svsk->sk_sk))
651 return 0;
652 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
653 return 1;
654}
655
Tom Tucker38a417c2007-12-30 21:07:36 -0600656static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt)
657{
658 BUG();
659 return NULL;
660}
661
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600662static struct svc_xprt *svc_udp_create(struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400663 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600664 struct sockaddr *sa, int salen,
665 int flags)
666{
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400667 return svc_create_socket(serv, IPPROTO_UDP, net, sa, salen, flags);
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600668}
669
Tom Tucker360d87382007-12-30 21:07:17 -0600670static struct svc_xprt_ops svc_udp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600671 .xpo_create = svc_udp_create,
Tom Tucker5d137992007-12-30 21:07:23 -0600672 .xpo_recvfrom = svc_udp_recvfrom,
673 .xpo_sendto = svc_udp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -0600674 .xpo_release_rqst = svc_release_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -0600675 .xpo_detach = svc_sock_detach,
676 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -0600677 .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -0600678 .xpo_has_wspace = svc_udp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -0600679 .xpo_accept = svc_udp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -0600680};
681
682static struct svc_xprt_class svc_udp_class = {
683 .xcl_name = "udp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600684 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -0600685 .xcl_ops = &svc_udp_ops,
Tom Tucker49023152007-12-30 21:07:21 -0600686 .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP,
Tom Tucker360d87382007-12-30 21:07:17 -0600687};
688
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600689static void svc_udp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Chuck Lever7702ce42009-07-13 10:54:26 -0400691 int err, level, optname, one = 1;
NeilBrown7a37f572007-03-06 01:42:21 -0800692
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600693 svc_xprt_init(&svc_udp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600694 clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
696 svsk->sk_sk->sk_write_space = svc_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800699 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 * svc_udp_recvfrom will re-adjust if necessary
701 */
702 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600703 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
704 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Tom Tucker0f0257e2007-12-30 21:08:27 -0600706 /* data might have come in before data_ready set up */
707 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600708 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
NeilBrown7a37f572007-03-06 01:42:21 -0800709
NeilBrown7a37f572007-03-06 01:42:21 -0800710 /* make sure we get destination address info */
Chuck Lever7702ce42009-07-13 10:54:26 -0400711 switch (svsk->sk_sk->sk_family) {
712 case AF_INET:
713 level = SOL_IP;
714 optname = IP_PKTINFO;
715 break;
716 case AF_INET6:
717 level = SOL_IPV6;
718 optname = IPV6_RECVPKTINFO;
719 break;
720 default:
721 BUG();
722 }
723 err = kernel_setsockopt(svsk->sk_sock, level, optname,
724 (char *)&one, sizeof(one));
725 dprintk("svc: kernel_setsockopt returned %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
728/*
729 * A data_ready event on a listening socket means there's a connection
730 * pending. Do not use state_change as a substitute for it.
731 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600732static void svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Neil Brown939bb7e2005-09-13 01:25:39 -0700734 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700737 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Neil Brown939bb7e2005-09-13 01:25:39 -0700739 /*
740 * This callback may called twice when a new connection
741 * is established as a child socket inherits everything
742 * from a parent LISTEN socket.
743 * 1) data_ready method of the parent socket will be called
744 * when one of child sockets become ESTABLISHED.
745 * 2) data_ready method of the child socket may be called
746 * when it receives data before the socket is accepted.
747 * In case of 2, we should ignore it silently.
748 */
749 if (sk->sk_state == TCP_LISTEN) {
750 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600751 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600752 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700753 } else
754 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
Neil Brown939bb7e2005-09-13 01:25:39 -0700756
Eric Dumazetaa395142010-04-20 13:03:51 +0000757 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
758 wake_up_interruptible_all(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
761/*
762 * A state change on a connected socket means it's dying or dead.
763 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600764static void svc_tcp_state_change(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Neil Brown939bb7e2005-09-13 01:25:39 -0700766 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700769 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Neil Brown939bb7e2005-09-13 01:25:39 -0700771 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700773 else {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600774 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600775 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000777 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
778 wake_up_interruptible_all(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
Tom Tucker0f0257e2007-12-30 21:08:27 -0600781static void svc_tcp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Neil Brown939bb7e2005-09-13 01:25:39 -0700783 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700786 sk, sk->sk_user_data);
787 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600788 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600789 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700790 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000791 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
792 wake_up_interruptible(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
795/*
796 * Accept a TCP connection
797 */
Tom Tucker38a417c2007-12-30 21:07:36 -0600798static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Tom Tucker38a417c2007-12-30 21:07:36 -0600800 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800801 struct sockaddr_storage addr;
802 struct sockaddr *sin = (struct sockaddr *) &addr;
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600803 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 struct socket *sock = svsk->sk_sock;
805 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 struct svc_sock *newsvsk;
807 int err, slen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300808 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
811 if (!sock)
Tom Tucker38a417c2007-12-30 21:07:36 -0600812 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Tom Tucker02fc6c32007-12-30 21:07:48 -0600814 clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700815 err = kernel_accept(sock, &newsock, O_NONBLOCK);
816 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (err == -ENOMEM)
818 printk(KERN_WARNING "%s: no more sockets!\n",
819 serv->sv_name);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700820 else if (err != -EAGAIN && net_ratelimit())
821 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
822 serv->sv_name, -err);
Tom Tucker38a417c2007-12-30 21:07:36 -0600823 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
Tom Tucker02fc6c32007-12-30 21:07:48 -0600825 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800827 err = kernel_getpeername(newsock, sin, &slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 if (err < 0) {
829 if (net_ratelimit())
830 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
831 serv->sv_name, -err);
832 goto failed; /* aborted connection or whatever */
833 }
834
835 /* Ideally, we would want to reject connections from unauthorized
Chuck Leverad06e4b2007-02-12 00:53:32 -0800836 * hosts here, but when we get encryption, the IP of the host won't
837 * tell us anything. For now just warn about unpriv connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 */
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800839 if (!svc_port_is_privileged(sin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 dprintk(KERN_WARNING
Chuck Leverad06e4b2007-02-12 00:53:32 -0800841 "%s: connect from unprivileged port: %s\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800842 serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800843 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
Chuck Leverad06e4b2007-02-12 00:53:32 -0800845 dprintk("%s: connect from %s\n", serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800846 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 /* make sure that a write doesn't block forever when
849 * low on memory
850 */
851 newsock->sk->sk_sndtimeo = HZ*30;
852
Chuck Lever6b174332007-02-12 00:53:28 -0800853 if (!(newsvsk = svc_setup_socket(serv, newsock, &err,
854 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 goto failed;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600856 svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen);
Frank van Maarseveena9747692007-07-09 22:21:39 +0200857 err = kernel_getsockname(newsock, sin, &slen);
858 if (unlikely(err < 0)) {
859 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
860 slen = offsetof(struct sockaddr, sa_data);
861 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600862 svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -0800863
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600864 if (serv->sv_stats)
865 serv->sv_stats->nettcpconn++;
866
867 return &newsvsk->sk_xprt;
868
869failed:
870 sock_release(newsock);
871 return NULL;
872}
873
874/*
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300875 * Receive data.
876 * If we haven't gotten the record length yet, get the next four bytes.
877 * Otherwise try to gobble up as much as possible up to the complete
878 * record length.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 */
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300880static int svc_tcp_recv_record(struct svc_sock *svsk, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600882 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300883 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
J. Bruce Fields7f421832009-05-27 18:51:06 -0400885 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
886 /* sndbuf needs to have room for one request
887 * per thread, otherwise we can stall even when the
888 * network isn't a bottleneck.
889 *
890 * We count all threads rather than threads in a
891 * particular pool, which provides an upper bound
892 * on the number of threads which will access the socket.
893 *
894 * rcvbuf just needs to be able to hold a few requests.
895 * Normally they will be removed from the queue
896 * as soon a a complete request arrives.
897 */
898 svc_sock_setbufsize(svsk->sk_sock,
899 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
900 3 * serv->sv_max_mesg);
901
Tom Tucker02fc6c32007-12-30 21:07:48 -0600902 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Chuck Leverc0401ea2008-04-14 12:27:30 -0400904 if (svsk->sk_tcplen < sizeof(rpc_fraghdr)) {
905 int want = sizeof(rpc_fraghdr) - svsk->sk_tcplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 struct kvec iov;
907
908 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
909 iov.iov_len = want;
910 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
911 goto error;
912 svsk->sk_tcplen += len;
913
914 if (len < want) {
Chuck Leverc0401ea2008-04-14 12:27:30 -0400915 dprintk("svc: short recvfrom while reading record "
916 "length (%d of %d)\n", len, want);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300917 goto err_again; /* record header not complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 }
919
920 svsk->sk_reclen = ntohl(svsk->sk_reclen);
Chuck Leverc0401ea2008-04-14 12:27:30 -0400921 if (!(svsk->sk_reclen & RPC_LAST_STREAM_FRAGMENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 /* FIXME: technically, a record can be fragmented,
923 * and non-terminal fragments will not have the top
924 * bit set in the fragment length header.
925 * But apparently no known nfs clients send fragmented
926 * records. */
NeilBrown34e9a632007-01-29 13:19:52 -0800927 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400928 printk(KERN_NOTICE "RPC: multiple fragments "
929 "per record not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 goto err_delete;
931 }
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300932
Chuck Leverc0401ea2008-04-14 12:27:30 -0400933 svsk->sk_reclen &= RPC_FRAGMENT_SIZE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700935 if (svsk->sk_reclen > serv->sv_max_mesg) {
NeilBrown34e9a632007-01-29 13:19:52 -0800936 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -0400937 printk(KERN_NOTICE "RPC: "
938 "fragment too large: 0x%08lx\n",
939 (unsigned long)svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 goto err_delete;
941 }
942 }
943
944 /* Check whether enough data is available */
945 len = svc_recv_available(svsk);
946 if (len < 0)
947 goto error;
948
949 if (len < svsk->sk_reclen) {
950 dprintk("svc: incomplete TCP record (%d of %d)\n",
951 len, svsk->sk_reclen);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300952 goto err_again; /* record not complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 }
954 len = svsk->sk_reclen;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600955 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300957 return len;
958 error:
Neil Brownb48fa6b2010-03-01 16:51:14 +1100959 if (len == -EAGAIN)
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300960 dprintk("RPC: TCP recv_record got EAGAIN\n");
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300961 return len;
962 err_delete:
963 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
964 err_again:
965 return -EAGAIN;
966}
967
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300968static int svc_process_calldir(struct svc_sock *svsk, struct svc_rqst *rqstp,
969 struct rpc_rqst **reqpp, struct kvec *vec)
970{
971 struct rpc_rqst *req = NULL;
972 u32 *p;
973 u32 xid;
974 u32 calldir;
975 int len;
976
977 len = svc_recvfrom(rqstp, vec, 1, 8);
978 if (len < 0)
979 goto error;
980
981 p = (u32 *)rqstp->rq_arg.head[0].iov_base;
982 xid = *p++;
983 calldir = *p;
984
985 if (calldir == 0) {
986 /* REQUEST is the most common case */
987 vec[0] = rqstp->rq_arg.head[0];
988 } else {
989 /* REPLY */
990 if (svsk->sk_bc_xprt)
991 req = xprt_lookup_rqst(svsk->sk_bc_xprt, xid);
992
993 if (!req) {
994 printk(KERN_NOTICE
995 "%s: Got unrecognized reply: "
996 "calldir 0x%x sk_bc_xprt %p xid %08x\n",
997 __func__, ntohl(calldir),
998 svsk->sk_bc_xprt, xid);
999 vec[0] = rqstp->rq_arg.head[0];
1000 goto out;
1001 }
1002
1003 memcpy(&req->rq_private_buf, &req->rq_rcv_buf,
1004 sizeof(struct xdr_buf));
1005 /* copy the xid and call direction */
1006 memcpy(req->rq_private_buf.head[0].iov_base,
1007 rqstp->rq_arg.head[0].iov_base, 8);
1008 vec[0] = req->rq_private_buf.head[0];
1009 }
1010 out:
1011 vec[0].iov_base += 8;
1012 vec[0].iov_len -= 8;
1013 len = svsk->sk_reclen - 8;
1014 error:
1015 *reqpp = req;
1016 return len;
1017}
1018
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001019/*
1020 * Receive data from a TCP socket.
1021 */
1022static int svc_tcp_recvfrom(struct svc_rqst *rqstp)
1023{
1024 struct svc_sock *svsk =
1025 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
1026 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
1027 int len;
1028 struct kvec *vec;
1029 int pnum, vlen;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001030 struct rpc_rqst *req = NULL;
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001031
1032 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
1033 svsk, test_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags),
1034 test_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags),
1035 test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags));
1036
1037 len = svc_tcp_recv_record(svsk, rqstp);
1038 if (len < 0)
1039 goto error;
1040
NeilBrown3cc03b12006-10-04 02:15:47 -07001041 vec = rqstp->rq_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 vec[0] = rqstp->rq_arg.head[0];
1043 vlen = PAGE_SIZE;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001044
1045 /*
1046 * We have enough data for the whole tcp record. Let's try and read the
1047 * first 8 bytes to get the xid and the call direction. We can use this
1048 * to figure out if this is a call or a reply to a callback. If
1049 * sk_reclen is < 8 (xid and calldir), then this is a malformed packet.
1050 * In that case, don't bother with the calldir and just read the data.
1051 * It will be rejected in svc_process.
1052 */
1053 if (len >= 8) {
1054 len = svc_process_calldir(svsk, rqstp, &req, vec);
1055 if (len < 0)
1056 goto err_again;
1057 vlen -= 8;
1058 }
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 pnum = 1;
1061 while (vlen < len) {
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001062 vec[pnum].iov_base = (req) ?
1063 page_address(req->rq_private_buf.pages[pnum - 1]) :
1064 page_address(rqstp->rq_pages[pnum]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 vec[pnum].iov_len = PAGE_SIZE;
1066 pnum++;
1067 vlen += PAGE_SIZE;
1068 }
NeilBrown44524352006-10-04 02:15:46 -07001069 rqstp->rq_respages = &rqstp->rq_pages[pnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 /* Now receive data */
1072 len = svc_recvfrom(rqstp, vec, pnum, len);
1073 if (len < 0)
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001074 goto err_again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001076 /*
1077 * Account for the 8 bytes we read earlier
1078 */
1079 len += 8;
1080
1081 if (req) {
1082 xprt_complete_rqst(req->rq_task, len);
1083 len = 0;
1084 goto out;
1085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 dprintk("svc: TCP complete record (%d bytes)\n", len);
1087 rqstp->rq_arg.len = len;
1088 rqstp->rq_arg.page_base = 0;
1089 if (len <= rqstp->rq_arg.head[0].iov_len) {
1090 rqstp->rq_arg.head[0].iov_len = len;
1091 rqstp->rq_arg.page_len = 0;
1092 } else {
1093 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
1094 }
1095
Tom Tucker5148bf42007-12-30 21:07:25 -06001096 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 rqstp->rq_prot = IPPROTO_TCP;
1098
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001099out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 /* Reset TCP read info */
1101 svsk->sk_reclen = 0;
1102 svsk->sk_tcplen = 0;
1103
Tom Tucker9dbc2402007-12-30 21:08:12 -06001104 svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (serv->sv_stats)
1106 serv->sv_stats->nettcpcnt++;
1107
1108 return len;
1109
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001110err_again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (len == -EAGAIN) {
1112 dprintk("RPC: TCP recvfrom got EAGAIN\n");
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001113 return len;
1114 }
1115error:
1116 if (len != -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001118 svsk->sk_xprt.xpt_server->sv_name, -len);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001119 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001121 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122}
1123
1124/*
1125 * Send out data on TCP socket.
1126 */
Tom Tucker0f0257e2007-12-30 21:08:27 -06001127static int svc_tcp_sendto(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
1129 struct xdr_buf *xbufp = &rqstp->rq_res;
1130 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001131 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133 /* Set up the first element of the reply kvec.
1134 * Any other kvecs that may be in use have been taken
1135 * care of by the server implementation itself.
1136 */
1137 reclen = htonl(0x80000000|((xbufp->len ) - 4));
1138 memcpy(xbufp->head[0].iov_base, &reclen, 4);
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 sent = svc_sendto(rqstp, &rqstp->rq_res);
1141 if (sent != xbufp->len) {
Tom Tucker0f0257e2007-12-30 21:08:27 -06001142 printk(KERN_NOTICE
1143 "rpc-srv/tcp: %s: %s %d when sending %d bytes "
1144 "- shutting down socket\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001145 rqstp->rq_xprt->xpt_server->sv_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 (sent<0)?"got error":"sent only",
1147 sent, xbufp->len);
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001148 set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -06001149 svc_xprt_enqueue(rqstp->rq_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 sent = -EAGAIN;
1151 }
1152 return sent;
1153}
1154
Tom Tuckere831fe62007-12-30 21:07:29 -06001155/*
1156 * Setup response header. TCP has a 4B record length field.
1157 */
1158static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp)
1159{
1160 struct kvec *resv = &rqstp->rq_res.head[0];
1161
1162 /* tcp needs a space for the record length... */
1163 svc_putnl(resv, 0);
1164}
1165
Tom Tucker323bee32007-12-30 21:07:31 -06001166static int svc_tcp_has_wspace(struct svc_xprt *xprt)
1167{
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001168 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Trond Myklebust47fcb032009-05-18 17:47:56 -04001169 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -06001170 int required;
Tom Tucker323bee32007-12-30 21:07:31 -06001171
Trond Myklebust47fcb032009-05-18 17:47:56 -04001172 if (test_bit(XPT_LISTENER, &xprt->xpt_flags))
1173 return 1;
1174 required = atomic_read(&xprt->xpt_reserved) + serv->sv_max_mesg;
1175 if (sk_stream_wspace(svsk->sk_sk) >= required)
1176 return 1;
Tom Tucker323bee32007-12-30 21:07:31 -06001177 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Trond Myklebust47fcb032009-05-18 17:47:56 -04001178 return 0;
Tom Tucker323bee32007-12-30 21:07:31 -06001179}
1180
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001181static struct svc_xprt *svc_tcp_create(struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001182 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001183 struct sockaddr *sa, int salen,
1184 int flags)
1185{
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001186 return svc_create_socket(serv, IPPROTO_TCP, net, sa, salen, flags);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001187}
1188
Tom Tucker360d87382007-12-30 21:07:17 -06001189static struct svc_xprt_ops svc_tcp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001190 .xpo_create = svc_tcp_create,
Tom Tucker5d137992007-12-30 21:07:23 -06001191 .xpo_recvfrom = svc_tcp_recvfrom,
1192 .xpo_sendto = svc_tcp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -06001193 .xpo_release_rqst = svc_release_skb,
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001194 .xpo_detach = svc_tcp_sock_detach,
Tom Tucker755ccea2007-12-30 21:07:27 -06001195 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -06001196 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -06001197 .xpo_has_wspace = svc_tcp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -06001198 .xpo_accept = svc_tcp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -06001199};
1200
1201static struct svc_xprt_class svc_tcp_class = {
1202 .xcl_name = "tcp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001203 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -06001204 .xcl_ops = &svc_tcp_ops,
Tom Tucker49023152007-12-30 21:07:21 -06001205 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
Tom Tucker360d87382007-12-30 21:07:17 -06001206};
1207
1208void svc_init_xprt_sock(void)
1209{
1210 svc_reg_xprt_class(&svc_tcp_class);
1211 svc_reg_xprt_class(&svc_udp_class);
1212}
1213
1214void svc_cleanup_xprt_sock(void)
1215{
1216 svc_unreg_xprt_class(&svc_tcp_class);
1217 svc_unreg_xprt_class(&svc_udp_class);
1218}
1219
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001220static void svc_tcp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
1222 struct sock *sk = svsk->sk_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001224 svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -06001225 set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (sk->sk_state == TCP_LISTEN) {
1227 dprintk("setting up TCP socket for listening\n");
Tom Tucker02fc6c32007-12-30 21:07:48 -06001228 set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 sk->sk_data_ready = svc_tcp_listen_data_ready;
Tom Tucker02fc6c32007-12-30 21:07:48 -06001230 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 } else {
1232 dprintk("setting up TCP socket for reading\n");
1233 sk->sk_state_change = svc_tcp_state_change;
1234 sk->sk_data_ready = svc_tcp_data_ready;
Trond Myklebust47fcb032009-05-18 17:47:56 -04001235 sk->sk_write_space = svc_tcp_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 svsk->sk_reclen = 0;
1238 svsk->sk_tcplen = 0;
1239
Chuck Leverb7872fe2008-04-14 12:27:01 -04001240 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
J. Bruce Fields7f421832009-05-27 18:51:06 -04001242 /* initialise setting must have enough space to
1243 * receive and respond to one request.
1244 * svc_tcp_recvfrom will re-adjust if necessary
1245 */
1246 svc_sock_setbufsize(svsk->sk_sock,
1247 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
1248 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
1249
1250 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -06001251 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001252 if (sk->sk_state != TCP_ESTABLISHED)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001253 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 }
1255}
1256
Tom Tucker0f0257e2007-12-30 21:08:27 -06001257void svc_sock_update_bufs(struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
1259 /*
1260 * The number of server threads has changed. Update
1261 * rcvbuf and sndbuf accordingly on all sockets
1262 */
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001263 struct svc_sock *svsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 spin_lock_bh(&serv->sv_lock);
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001266 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001267 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001268 list_for_each_entry(svsk, &serv->sv_tempsocks, sk_xprt.xpt_list)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001269 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 spin_unlock_bh(&serv->sv_lock);
1271}
Trond Myklebust24c37672008-12-23 16:30:12 -05001272EXPORT_SYMBOL_GPL(svc_sock_update_bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 * Initialize socket for RPC use and create svc_sock struct
1276 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1277 */
Chuck Lever6b174332007-02-12 00:53:28 -08001278static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1279 struct socket *sock,
1280 int *errp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
1282 struct svc_sock *svsk;
1283 struct sock *inet;
Chuck Lever6b174332007-02-12 00:53:28 -08001284 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 dprintk("svc: svc_setup_socket %p\n", sock);
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001287 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 *errp = -ENOMEM;
1289 return NULL;
1290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 inet = sock->sk;
1293
1294 /* Register socket with portmapper */
1295 if (*errp >= 0 && pmap_register)
Chuck Leverbaf01ca2009-03-18 20:46:13 -04001296 *errp = svc_register(serv, inet->sk_family, inet->sk_protocol,
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001297 ntohs(inet_sk(inet)->inet_sport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 if (*errp < 0) {
1300 kfree(svsk);
1301 return NULL;
1302 }
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 inet->sk_user_data = svsk;
1305 svsk->sk_sock = sock;
1306 svsk->sk_sk = inet;
1307 svsk->sk_ostate = inet->sk_state_change;
1308 svsk->sk_odata = inet->sk_data_ready;
1309 svsk->sk_owspace = inet->sk_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 /* Initialize the socket */
1312 if (sock->type == SOCK_DGRAM)
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001313 svc_udp_init(svsk, serv);
J. Bruce Fields7f421832009-05-27 18:51:06 -04001314 else
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001315 svc_tcp_init(svsk, serv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1318 svsk, svsk->sk_sk);
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 return svsk;
1321}
1322
Chuck Leverbfba9ab2009-04-23 19:32:33 -04001323/**
1324 * svc_addsock - add a listener socket to an RPC service
1325 * @serv: pointer to RPC service to which to add a new listener
1326 * @fd: file descriptor of the new listener
1327 * @name_return: pointer to buffer to fill in with name of listener
1328 * @len: size of the buffer
1329 *
1330 * Fills in socket name and returns positive length of name if successful.
1331 * Name is terminated with '\n'. On error, returns a negative errno
1332 * value.
1333 */
1334int svc_addsock(struct svc_serv *serv, const int fd, char *name_return,
1335 const size_t len)
NeilBrownb41b66d2006-10-02 02:17:48 -07001336{
1337 int err = 0;
1338 struct socket *so = sockfd_lookup(fd, &err);
1339 struct svc_sock *svsk = NULL;
1340
1341 if (!so)
1342 return err;
Aime Le Rouzic205ba422010-01-26 14:03:56 -05001343 if ((so->sk->sk_family != PF_INET) && (so->sk->sk_family != PF_INET6))
NeilBrownb41b66d2006-10-02 02:17:48 -07001344 err = -EAFNOSUPPORT;
1345 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1346 so->sk->sk_protocol != IPPROTO_UDP)
1347 err = -EPROTONOSUPPORT;
1348 else if (so->state > SS_UNCONNECTED)
1349 err = -EISCONN;
1350 else {
Tom Tucker2da2c212008-11-23 09:58:08 -06001351 if (!try_module_get(THIS_MODULE))
1352 err = -ENOENT;
1353 else
1354 svsk = svc_setup_socket(serv, so, &err,
1355 SVC_SOCK_DEFAULTS);
NeilBrowne79eff12007-02-12 00:53:30 -08001356 if (svsk) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001357 struct sockaddr_storage addr;
1358 struct sockaddr *sin = (struct sockaddr *)&addr;
1359 int salen;
1360 if (kernel_getsockname(svsk->sk_sock, sin, &salen) == 0)
1361 svc_xprt_set_local(&svsk->sk_xprt, sin, salen);
Tom Tucker4e5caaa2007-12-30 21:08:20 -06001362 clear_bit(XPT_TEMP, &svsk->sk_xprt.xpt_flags);
1363 spin_lock_bh(&serv->sv_lock);
1364 list_add(&svsk->sk_xprt.xpt_list, &serv->sv_permsocks);
1365 spin_unlock_bh(&serv->sv_lock);
Tom Tuckera6046f72007-12-30 21:08:01 -06001366 svc_xprt_received(&svsk->sk_xprt);
NeilBrownb41b66d2006-10-02 02:17:48 -07001367 err = 0;
Tom Tucker2da2c212008-11-23 09:58:08 -06001368 } else
1369 module_put(THIS_MODULE);
NeilBrownb41b66d2006-10-02 02:17:48 -07001370 }
1371 if (err) {
1372 sockfd_put(so);
1373 return err;
1374 }
Chuck Levere7942b92009-04-23 19:32:48 -04001375 return svc_one_sock_name(svsk, name_return, len);
NeilBrownb41b66d2006-10-02 02:17:48 -07001376}
1377EXPORT_SYMBOL_GPL(svc_addsock);
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379/*
1380 * Create socket for RPC service.
1381 */
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001382static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
1383 int protocol,
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001384 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001385 struct sockaddr *sin, int len,
1386 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
1388 struct svc_sock *svsk;
1389 struct socket *sock;
1390 int error;
1391 int type;
Tom Tucker9dbc2402007-12-30 21:08:12 -06001392 struct sockaddr_storage addr;
1393 struct sockaddr *newsin = (struct sockaddr *)&addr;
1394 int newlen;
Trond Myklebustc69da772009-03-30 18:59:17 -04001395 int family;
1396 int val;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +03001397 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Chuck Leverad06e4b2007-02-12 00:53:32 -08001399 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1400 serv->sv_program->pg_name, protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001401 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
1403 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1404 printk(KERN_WARNING "svc: only UDP and TCP "
1405 "sockets supported\n");
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001406 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Trond Myklebustc69da772009-03-30 18:59:17 -04001409 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1410 switch (sin->sa_family) {
1411 case AF_INET6:
1412 family = PF_INET6;
1413 break;
1414 case AF_INET:
1415 family = PF_INET;
1416 break;
1417 default:
1418 return ERR_PTR(-EINVAL);
1419 }
1420
Pavel Emelyanov14ec63c2010-09-29 16:06:57 +04001421 error = __sock_create(net, family, type, protocol, &sock, 1);
Chuck Lever77f1f672007-02-12 00:53:39 -08001422 if (error < 0)
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001423 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Peter Zijlstraed075362006-12-06 20:35:24 -08001425 svc_reclassify_socket(sock);
1426
Trond Myklebustc69da772009-03-30 18:59:17 -04001427 /*
1428 * If this is an PF_INET6 listener, we want to avoid
1429 * getting requests from IPv4 remotes. Those should
1430 * be shunted to a PF_INET listener via rpcbind.
1431 */
1432 val = 1;
1433 if (family == PF_INET6)
1434 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
1435 (char *)&val, sizeof(val));
1436
Eric Sesterhenn18114742006-09-28 14:37:07 -07001437 if (type == SOCK_STREAM)
Chuck Lever77f1f672007-02-12 00:53:39 -08001438 sock->sk->sk_reuse = 1; /* allow address reuse */
1439 error = kernel_bind(sock, sin, len);
Eric Sesterhenn18114742006-09-28 14:37:07 -07001440 if (error < 0)
1441 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Tom Tucker9dbc2402007-12-30 21:08:12 -06001443 newlen = len;
1444 error = kernel_getsockname(sock, newsin, &newlen);
1445 if (error < 0)
1446 goto bummer;
1447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001449 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 goto bummer;
1451 }
1452
NeilBrowne79eff12007-02-12 00:53:30 -08001453 if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001454 svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001455 return (struct svc_xprt *)svsk;
NeilBrowne79eff12007-02-12 00:53:30 -08001456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458bummer:
1459 dprintk("svc: svc_create_socket error = %d\n", -error);
1460 sock_release(sock);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001461 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
1463
1464/*
Tom Tucker755ccea2007-12-30 21:07:27 -06001465 * Detach the svc_sock from the socket so that no
1466 * more callbacks occur.
1467 */
1468static void svc_sock_detach(struct svc_xprt *xprt)
1469{
1470 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1471 struct sock *sk = svsk->sk_sk;
1472
1473 dprintk("svc: svc_sock_detach(%p)\n", svsk);
1474
1475 /* put back the old socket callbacks */
1476 sk->sk_state_change = svsk->sk_ostate;
1477 sk->sk_data_ready = svsk->sk_odata;
1478 sk->sk_write_space = svsk->sk_owspace;
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001479
Eric Dumazetaa395142010-04-20 13:03:51 +00001480 if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk)))
1481 wake_up_interruptible(sk_sleep(sk));
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001482}
1483
1484/*
1485 * Disconnect the socket, and reset the callbacks
1486 */
1487static void svc_tcp_sock_detach(struct svc_xprt *xprt)
1488{
1489 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1490
1491 dprintk("svc: svc_tcp_sock_detach(%p)\n", svsk);
1492
1493 svc_sock_detach(xprt);
1494
1495 if (!test_bit(XPT_LISTENER, &xprt->xpt_flags))
1496 kernel_sock_shutdown(svsk->sk_sock, SHUT_RDWR);
Tom Tucker755ccea2007-12-30 21:07:27 -06001497}
1498
1499/*
1500 * Free the svc_sock's socket resources and the svc_sock itself.
1501 */
1502static void svc_sock_free(struct svc_xprt *xprt)
1503{
1504 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1505 dprintk("svc: svc_sock_free(%p)\n", svsk);
1506
Tom Tucker755ccea2007-12-30 21:07:27 -06001507 if (svsk->sk_sock->file)
1508 sockfd_put(svsk->sk_sock);
1509 else
1510 sock_release(svsk->sk_sock);
1511 kfree(svsk);
1512}
Benny Halevy7652e5a2009-04-01 09:23:09 -04001513
1514/*
1515 * Create a svc_xprt.
1516 *
1517 * For internal use only (e.g. nfsv4.1 backchannel).
1518 * Callers should typically use the xpo_create() method.
1519 */
1520struct svc_xprt *svc_sock_create(struct svc_serv *serv, int prot)
1521{
1522 struct svc_sock *svsk;
1523 struct svc_xprt *xprt = NULL;
1524
1525 dprintk("svc: %s\n", __func__);
1526 svsk = kzalloc(sizeof(*svsk), GFP_KERNEL);
1527 if (!svsk)
1528 goto out;
1529
1530 xprt = &svsk->sk_xprt;
1531 if (prot == IPPROTO_TCP)
1532 svc_xprt_init(&svc_tcp_class, xprt, serv);
1533 else if (prot == IPPROTO_UDP)
1534 svc_xprt_init(&svc_udp_class, xprt, serv);
1535 else
1536 BUG();
1537out:
1538 dprintk("svc: %s return %p\n", __func__, xprt);
1539 return xprt;
1540}
1541EXPORT_SYMBOL_GPL(svc_sock_create);
1542
1543/*
1544 * Destroy a svc_sock.
1545 */
1546void svc_sock_destroy(struct svc_xprt *xprt)
1547{
1548 if (xprt)
1549 kfree(container_of(xprt, struct svc_sock, sk_xprt));
1550}
1551EXPORT_SYMBOL_GPL(svc_sock_destroy);