blob: 767d494de7a262e40a59e8842ca316ae8a61059d [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
H Hartley Sweeten177e4f92011-06-20 17:54:51 -070054#include "sunrpc.h"
55
Tom Tucker360d87382007-12-30 21:07:17 -060056#define RPCDBG_FACILITY RPCDBG_SVCXPRT
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58
59static struct svc_sock *svc_setup_socket(struct svc_serv *, struct socket *,
Chuck Lever6b174332007-02-12 00:53:28 -080060 int *errp, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static void svc_udp_data_ready(struct sock *, int);
62static int svc_udp_recvfrom(struct svc_rqst *);
63static int svc_udp_sendto(struct svc_rqst *);
Tom Tucker755ccea2007-12-30 21:07:27 -060064static void svc_sock_detach(struct svc_xprt *);
Trond Myklebust69b6ba32008-12-23 16:30:11 -050065static void svc_tcp_sock_detach(struct svc_xprt *);
Tom Tucker755ccea2007-12-30 21:07:27 -060066static void svc_sock_free(struct svc_xprt *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Tom Tuckerb700cbb2007-12-30 21:07:42 -060068static struct svc_xprt *svc_create_socket(struct svc_serv *, int,
Pavel Emelyanov62832c02010-09-29 16:04:18 +040069 struct net *, struct sockaddr *,
70 int, int);
Trond Myklebust9e00abc2011-07-13 19:20:49 -040071#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Andy Adamson1f11a032011-01-06 02:04:26 +000072static struct svc_xprt *svc_bc_create_socket(struct svc_serv *, int,
73 struct net *, struct sockaddr *,
74 int, int);
75static void svc_bc_sock_free(struct svc_xprt *xprt);
Trond Myklebust9e00abc2011-07-13 19:20:49 -040076#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Andy Adamson1f11a032011-01-06 02:04:26 +000077
Peter Zijlstraed075362006-12-06 20:35:24 -080078#ifdef CONFIG_DEBUG_LOCK_ALLOC
79static struct lock_class_key svc_key[2];
80static struct lock_class_key svc_slock_key[2];
81
Tom Tucker0f0257e2007-12-30 21:08:27 -060082static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -080083{
84 struct sock *sk = sock->sk;
John Heffner02b3d342007-09-12 10:42:12 +020085 BUG_ON(sock_owned_by_user(sk));
Peter Zijlstraed075362006-12-06 20:35:24 -080086 switch (sk->sk_family) {
87 case AF_INET:
88 sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060089 &svc_slock_key[0],
90 "sk_xprt.xpt_lock-AF_INET-NFSD",
91 &svc_key[0]);
Peter Zijlstraed075362006-12-06 20:35:24 -080092 break;
93
94 case AF_INET6:
95 sock_lock_init_class_and_name(sk, "slock-AF_INET6-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060096 &svc_slock_key[1],
97 "sk_xprt.xpt_lock-AF_INET6-NFSD",
98 &svc_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -080099 break;
100
101 default:
102 BUG();
103 }
104}
105#else
Tom Tucker0f0257e2007-12-30 21:08:27 -0600106static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -0800107{
108}
109#endif
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/*
112 * Release an skbuff after use
113 */
Tom Tucker5148bf42007-12-30 21:07:25 -0600114static void svc_release_skb(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Tom Tucker5148bf42007-12-30 21:07:25 -0600116 struct sk_buff *skb = rqstp->rq_xprt_ctxt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 if (skb) {
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600119 struct svc_sock *svsk =
120 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tucker5148bf42007-12-30 21:07:25 -0600121 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 dprintk("svc: service %p, releasing skb %p\n", rqstp, skb);
Eric Dumazet9d410c72009-10-30 05:03:53 +0000124 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Chuck Leverb92503b2007-02-12 00:53:36 -0800128union svc_pktinfo_u {
129 struct in_pktinfo pkti;
Chuck Leverb92503b2007-02-12 00:53:36 -0800130 struct in6_pktinfo pkti6;
Chuck Leverb92503b2007-02-12 00:53:36 -0800131};
David S. Millerbc375ea2007-04-12 13:35:59 -0700132#define SVC_PKTINFO_SPACE \
133 CMSG_SPACE(sizeof(union svc_pktinfo_u))
Chuck Leverb92503b2007-02-12 00:53:36 -0800134
135static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh)
136{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600137 struct svc_sock *svsk =
138 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
139 switch (svsk->sk_sk->sk_family) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800140 case AF_INET: {
141 struct in_pktinfo *pki = CMSG_DATA(cmh);
142
143 cmh->cmsg_level = SOL_IP;
144 cmh->cmsg_type = IP_PKTINFO;
145 pki->ipi_ifindex = 0;
146 pki->ipi_spec_dst.s_addr = rqstp->rq_daddr.addr.s_addr;
147 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
148 }
149 break;
NeilBrown5a05ed72007-03-06 01:42:22 -0800150
Chuck Leverb92503b2007-02-12 00:53:36 -0800151 case AF_INET6: {
152 struct in6_pktinfo *pki = CMSG_DATA(cmh);
153
154 cmh->cmsg_level = SOL_IPV6;
155 cmh->cmsg_type = IPV6_PKTINFO;
156 pki->ipi6_ifindex = 0;
157 ipv6_addr_copy(&pki->ipi6_addr,
158 &rqstp->rq_daddr.addr6);
159 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
160 }
161 break;
Chuck Leverb92503b2007-02-12 00:53:36 -0800162 }
Chuck Leverb92503b2007-02-12 00:53:36 -0800163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/*
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300166 * send routine intended to be shared by the fore- and back-channel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 */
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300168int svc_send_common(struct socket *sock, struct xdr_buf *xdr,
169 struct page *headpage, unsigned long headoffset,
170 struct page *tailpage, unsigned long tailoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 int result;
173 int size;
174 struct page **ppage = xdr->pages;
175 size_t base = xdr->page_base;
176 unsigned int pglen = xdr->page_len;
177 unsigned int flags = MSG_MORE;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300178 int slen;
179 int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 slen = xdr->len;
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 /* send head */
184 if (slen == xdr->head[0].iov_len)
185 flags = 0;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300186 len = kernel_sendpage(sock, headpage, headoffset,
NeilBrown44524352006-10-04 02:15:46 -0700187 xdr->head[0].iov_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (len != xdr->head[0].iov_len)
189 goto out;
190 slen -= xdr->head[0].iov_len;
191 if (slen == 0)
192 goto out;
193
194 /* send page data */
195 size = PAGE_SIZE - base < pglen ? PAGE_SIZE - base : pglen;
196 while (pglen > 0) {
197 if (slen == size)
198 flags = 0;
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700199 result = kernel_sendpage(sock, *ppage, base, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if (result > 0)
201 len += result;
202 if (result != size)
203 goto out;
204 slen -= size;
205 pglen -= size;
206 size = PAGE_SIZE < pglen ? PAGE_SIZE : pglen;
207 base = 0;
208 ppage++;
209 }
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* send tail */
212 if (xdr->tail[0].iov_len) {
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300213 result = kernel_sendpage(sock, tailpage, tailoffset,
214 xdr->tail[0].iov_len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (result > 0)
216 len += result;
217 }
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300218
219out:
220 return len;
221}
222
223
224/*
225 * Generic sendto routine
226 */
227static int svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr)
228{
229 struct svc_sock *svsk =
230 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
231 struct socket *sock = svsk->sk_sock;
232 union {
233 struct cmsghdr hdr;
234 long all[SVC_PKTINFO_SPACE / sizeof(long)];
235 } buffer;
236 struct cmsghdr *cmh = &buffer.hdr;
237 int len = 0;
238 unsigned long tailoff;
239 unsigned long headoff;
240 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
241
242 if (rqstp->rq_prot == IPPROTO_UDP) {
243 struct msghdr msg = {
244 .msg_name = &rqstp->rq_addr,
245 .msg_namelen = rqstp->rq_addrlen,
246 .msg_control = cmh,
247 .msg_controllen = sizeof(buffer),
248 .msg_flags = MSG_MORE,
249 };
250
251 svc_set_cmsg_data(rqstp, cmh);
252
253 if (sock_sendmsg(sock, &msg, 0) < 0)
254 goto out;
255 }
256
257 tailoff = ((unsigned long)xdr->tail[0].iov_base) & (PAGE_SIZE-1);
258 headoff = 0;
259 len = svc_send_common(sock, xdr, rqstp->rq_respages[0], headoff,
260 rqstp->rq_respages[0], tailoff);
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262out:
Chuck Leverad06e4b2007-02-12 00:53:32 -0800263 dprintk("svc: socket %p sendto([%p %Zu... ], %d) = %d (addr %s)\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600264 svsk, xdr->head[0].iov_base, xdr->head[0].iov_len,
Chuck Leverad06e4b2007-02-12 00:53:32 -0800265 xdr->len, len, svc_print_addr(rqstp, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 return len;
268}
269
270/*
NeilBrown80212d52006-10-02 02:17:47 -0700271 * Report socket names for nfsdfs
272 */
Chuck Levere7942b92009-04-23 19:32:48 -0400273static int svc_one_sock_name(struct svc_sock *svsk, char *buf, int remaining)
NeilBrown80212d52006-10-02 02:17:47 -0700274{
Chuck Lever017cb472009-04-23 19:33:03 -0400275 const struct sock *sk = svsk->sk_sk;
276 const char *proto_name = sk->sk_protocol == IPPROTO_UDP ?
277 "udp" : "tcp";
NeilBrown80212d52006-10-02 02:17:47 -0700278 int len;
279
Chuck Lever017cb472009-04-23 19:33:03 -0400280 switch (sk->sk_family) {
Chuck Levere7942b92009-04-23 19:32:48 -0400281 case PF_INET:
282 len = snprintf(buf, remaining, "ipv4 %s %pI4 %d\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400283 proto_name,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000284 &inet_sk(sk)->inet_rcv_saddr,
285 inet_sk(sk)->inet_num);
NeilBrown80212d52006-10-02 02:17:47 -0700286 break;
Chuck Lever58de2f82009-04-23 19:32:55 -0400287 case PF_INET6:
288 len = snprintf(buf, remaining, "ipv6 %s %pI6 %d\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400289 proto_name,
290 &inet6_sk(sk)->rcv_saddr,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000291 inet_sk(sk)->inet_num);
NeilBrown80212d52006-10-02 02:17:47 -0700292 break;
293 default:
Chuck Levere7942b92009-04-23 19:32:48 -0400294 len = snprintf(buf, remaining, "*unknown-%d*\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400295 sk->sk_family);
NeilBrown80212d52006-10-02 02:17:47 -0700296 }
Chuck Levere7942b92009-04-23 19:32:48 -0400297
298 if (len >= remaining) {
299 *buf = '\0';
300 return -ENAMETOOLONG;
NeilBrown80212d52006-10-02 02:17:47 -0700301 }
302 return len;
303}
304
Chuck Lever8435d342009-04-23 19:32:40 -0400305/**
306 * svc_sock_names - construct a list of listener names in a string
307 * @serv: pointer to RPC service
308 * @buf: pointer to a buffer to fill in with socket names
309 * @buflen: size of the buffer to be filled
310 * @toclose: pointer to '\0'-terminated C string containing the name
311 * of a listener to be closed
312 *
313 * Fills in @buf with a '\n'-separated list of names of listener
314 * sockets. If @toclose is not NULL, the socket named by @toclose
315 * is closed, and is not included in the output list.
316 *
317 * Returns positive length of the socket name string, or a negative
318 * errno value on error.
319 */
320int svc_sock_names(struct svc_serv *serv, char *buf, const size_t buflen,
321 const char *toclose)
NeilBrown80212d52006-10-02 02:17:47 -0700322{
NeilBrownb41b66d2006-10-02 02:17:48 -0700323 struct svc_sock *svsk, *closesk = NULL;
NeilBrown80212d52006-10-02 02:17:47 -0700324 int len = 0;
325
326 if (!serv)
327 return 0;
Chuck Levere7942b92009-04-23 19:32:48 -0400328
NeilBrownaaf68cf2007-02-08 14:20:30 -0800329 spin_lock_bh(&serv->sv_lock);
Tom Tucker7a182082007-12-30 21:07:53 -0600330 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list) {
Chuck Levere7942b92009-04-23 19:32:48 -0400331 int onelen = svc_one_sock_name(svsk, buf + len, buflen - len);
332 if (onelen < 0) {
333 len = onelen;
334 break;
335 }
NeilBrown39423022010-11-15 11:27:01 +1100336 if (toclose && strcmp(toclose, buf + len) == 0) {
NeilBrownb41b66d2006-10-02 02:17:48 -0700337 closesk = svsk;
NeilBrown39423022010-11-15 11:27:01 +1100338 svc_xprt_get(&closesk->sk_xprt);
339 } else
NeilBrownb41b66d2006-10-02 02:17:48 -0700340 len += onelen;
NeilBrown80212d52006-10-02 02:17:47 -0700341 }
NeilBrownaaf68cf2007-02-08 14:20:30 -0800342 spin_unlock_bh(&serv->sv_lock);
Chuck Levere7942b92009-04-23 19:32:48 -0400343
NeilBrown39423022010-11-15 11:27:01 +1100344 if (closesk) {
NeilBrown5680c442006-10-04 02:15:45 -0700345 /* Should unregister with portmap, but you cannot
346 * unregister just one protocol...
347 */
Tom Tucker7a182082007-12-30 21:07:53 -0600348 svc_close_xprt(&closesk->sk_xprt);
NeilBrown39423022010-11-15 11:27:01 +1100349 svc_xprt_put(&closesk->sk_xprt);
350 } else if (toclose)
NeilBrown37a03472006-10-04 02:15:44 -0700351 return -ENOENT;
NeilBrown80212d52006-10-02 02:17:47 -0700352 return len;
353}
Trond Myklebust24c37672008-12-23 16:30:12 -0500354EXPORT_SYMBOL_GPL(svc_sock_names);
NeilBrown80212d52006-10-02 02:17:47 -0700355
356/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 * Check input queue length
358 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600359static int svc_recv_available(struct svc_sock *svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 struct socket *sock = svsk->sk_sock;
362 int avail, err;
363
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700364 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 return (err >= 0)? avail : err;
367}
368
369/*
370 * Generic recvfrom routine.
371 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600372static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr,
373 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600375 struct svc_sock *svsk =
376 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Chuck Lever1ba95102007-02-12 00:53:31 -0800377 struct msghdr msg = {
378 .msg_flags = MSG_DONTWAIT,
379 };
380 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Tom Tucker260c1d12007-12-30 21:08:29 -0600382 rqstp->rq_xprt_hlen = 0;
383
Chuck Lever1ba95102007-02-12 00:53:31 -0800384 len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
385 msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
Chuck Lever1ba95102007-02-12 00:53:31 -0800388 svsk, iov[0].iov_base, iov[0].iov_len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return len;
390}
391
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800392static int svc_partial_recvfrom(struct svc_rqst *rqstp,
393 struct kvec *iov, int nr,
394 int buflen, unsigned int base)
395{
396 size_t save_iovlen;
397 void __user *save_iovbase;
398 unsigned int i;
399 int ret;
400
401 if (base == 0)
402 return svc_recvfrom(rqstp, iov, nr, buflen);
403
404 for (i = 0; i < nr; i++) {
405 if (iov[i].iov_len > base)
406 break;
407 base -= iov[i].iov_len;
408 }
409 save_iovlen = iov[i].iov_len;
410 save_iovbase = iov[i].iov_base;
411 iov[i].iov_len -= base;
412 iov[i].iov_base += base;
413 ret = svc_recvfrom(rqstp, &iov[i], nr - i, buflen);
414 iov[i].iov_len = save_iovlen;
415 iov[i].iov_base = save_iovbase;
416 return ret;
417}
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419/*
420 * Set socket snd and rcv buffer lengths
421 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600422static void svc_sock_setbufsize(struct socket *sock, unsigned int snd,
423 unsigned int rcv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
425#if 0
426 mm_segment_t oldfs;
427 oldfs = get_fs(); set_fs(KERNEL_DS);
428 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
429 (char*)&snd, sizeof(snd));
430 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
431 (char*)&rcv, sizeof(rcv));
432#else
433 /* sock_setsockopt limits use to sysctl_?mem_max,
434 * which isn't acceptable. Until that is made conditional
435 * on not having CAP_SYS_RESOURCE or similar, we go direct...
436 * DaveM said I could!
437 */
438 lock_sock(sock->sk);
439 sock->sk->sk_sndbuf = snd * 2;
440 sock->sk->sk_rcvbuf = rcv * 2;
Trond Myklebust47fcb032009-05-18 17:47:56 -0400441 sock->sk->sk_write_space(sock->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 release_sock(sock->sk);
443#endif
444}
445/*
446 * INET callback when data has been received on the socket.
447 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600448static void svc_udp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Neil Brown939bb7e2005-09-13 01:25:39 -0700450 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000451 wait_queue_head_t *wq = sk_sleep(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Neil Brown939bb7e2005-09-13 01:25:39 -0700453 if (svsk) {
454 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600455 svsk, sk, count,
456 test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
457 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600458 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700459 }
Eric Dumazeteaefd112011-02-18 03:26:36 +0000460 if (wq && waitqueue_active(wq))
461 wake_up_interruptible(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
464/*
465 * INET callback when space is newly available on the socket.
466 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600467static void svc_write_space(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
Eric Dumazeteaefd112011-02-18 03:26:36 +0000470 wait_queue_head_t *wq = sk_sleep(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 if (svsk) {
473 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600474 svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
Tom Tuckerf6150c32007-12-30 21:07:57 -0600475 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
477
Eric Dumazeteaefd112011-02-18 03:26:36 +0000478 if (wq && waitqueue_active(wq)) {
Neil Brown939bb7e2005-09-13 01:25:39 -0700479 dprintk("RPC svc_write_space: someone sleeping on %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 svsk);
Eric Dumazeteaefd112011-02-18 03:26:36 +0000481 wake_up_interruptible(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483}
484
Trond Myklebust47fcb032009-05-18 17:47:56 -0400485static void svc_tcp_write_space(struct sock *sk)
486{
487 struct socket *sock = sk->sk_socket;
488
489 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk) && sock)
490 clear_bit(SOCK_NOSPACE, &sock->flags);
491 svc_write_space(sk);
492}
493
Tom Tucker9dbc2402007-12-30 21:08:12 -0600494/*
Chuck Lever7702ce42009-07-13 10:54:26 -0400495 * See net/ipv6/ip_sockglue.c : ip_cmsg_recv_pktinfo
496 */
497static int svc_udp_get_dest_address4(struct svc_rqst *rqstp,
498 struct cmsghdr *cmh)
499{
500 struct in_pktinfo *pki = CMSG_DATA(cmh);
501 if (cmh->cmsg_type != IP_PKTINFO)
502 return 0;
503 rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_addr;
504 return 1;
505}
506
507/*
508 * See net/ipv6/datagram.c : datagram_recv_ctl
509 */
510static int svc_udp_get_dest_address6(struct svc_rqst *rqstp,
511 struct cmsghdr *cmh)
512{
513 struct in6_pktinfo *pki = CMSG_DATA(cmh);
514 if (cmh->cmsg_type != IPV6_PKTINFO)
515 return 0;
516 ipv6_addr_copy(&rqstp->rq_daddr.addr6, &pki->ipi6_addr);
517 return 1;
518}
519
520/*
Tom Tucker9dbc2402007-12-30 21:08:12 -0600521 * Copy the UDP datagram's destination address to the rqstp structure.
522 * The 'destination' address in this case is the address to which the
523 * peer sent the datagram, i.e. our local address. For multihomed
524 * hosts, this can change from msg to msg. Note that only the IP
525 * address changes, the port number should remain the same.
526 */
Chuck Lever7702ce42009-07-13 10:54:26 -0400527static int svc_udp_get_dest_address(struct svc_rqst *rqstp,
528 struct cmsghdr *cmh)
Chuck Lever95756482007-02-12 00:53:38 -0800529{
Chuck Lever7702ce42009-07-13 10:54:26 -0400530 switch (cmh->cmsg_level) {
531 case SOL_IP:
532 return svc_udp_get_dest_address4(rqstp, cmh);
533 case SOL_IPV6:
534 return svc_udp_get_dest_address6(rqstp, cmh);
Chuck Lever95756482007-02-12 00:53:38 -0800535 }
Chuck Lever7702ce42009-07-13 10:54:26 -0400536
537 return 0;
Chuck Lever95756482007-02-12 00:53:38 -0800538}
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540/*
541 * Receive a datagram from a UDP socket.
542 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600543static int svc_udp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600545 struct svc_sock *svsk =
546 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600547 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 struct sk_buff *skb;
David S. Millerbc375ea2007-04-12 13:35:59 -0700549 union {
550 struct cmsghdr hdr;
551 long all[SVC_PKTINFO_SPACE / sizeof(long)];
552 } buffer;
553 struct cmsghdr *cmh = &buffer.hdr;
NeilBrown7a37f572007-03-06 01:42:21 -0800554 struct msghdr msg = {
555 .msg_name = svc_addr(rqstp),
556 .msg_control = cmh,
557 .msg_controllen = sizeof(buffer),
558 .msg_flags = MSG_DONTWAIT,
559 };
Chuck Leverabc5c442009-04-23 19:31:25 -0400560 size_t len;
561 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Tom Tucker02fc6c32007-12-30 21:07:48 -0600563 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 /* udp sockets need large rcvbuf as all pending
565 * requests are still in that buffer. sndbuf must
566 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700567 * for one reply per thread. We count all threads
568 * rather than threads in a particular pool, which
569 * provides an upper bound on the number of threads
570 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 */
572 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700573 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
574 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Tom Tucker02fc6c32007-12-30 21:07:48 -0600576 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
NeilBrown05ed6902007-05-09 02:34:55 -0700577 skb = NULL;
578 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
579 0, 0, MSG_PEEK | MSG_DONTWAIT);
580 if (err >= 0)
581 skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err);
582
583 if (skb == NULL) {
584 if (err != -EAGAIN) {
585 /* possibly an icmp error */
586 dprintk("svc: recvfrom returned error %d\n", -err);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600587 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
NeilBrown05ed6902007-05-09 02:34:55 -0700589 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600591 len = svc_addr_len(svc_addr(rqstp));
Chuck Leverabc5c442009-04-23 19:31:25 -0400592 if (len == 0)
593 return -EAFNOSUPPORT;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600594 rqstp->rq_addrlen = len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700595 if (skb->tstamp.tv64 == 0) {
596 skb->tstamp = ktime_get_real();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800597 /* Don't enable netstamp, sunrpc doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 need that much accuracy */
599 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700600 svsk->sk_sk->sk_stamp = skb->tstamp;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600601 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); /* there may be more data... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 len = skb->len - sizeof(struct udphdr);
604 rqstp->rq_arg.len = len;
605
Chuck Lever95756482007-02-12 00:53:38 -0800606 rqstp->rq_prot = IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Chuck Lever7702ce42009-07-13 10:54:26 -0400608 if (!svc_udp_get_dest_address(rqstp, cmh)) {
NeilBrown7a37f572007-03-06 01:42:21 -0800609 if (net_ratelimit())
Chuck Lever7702ce42009-07-13 10:54:26 -0400610 printk(KERN_WARNING
611 "svc: received unknown control message %d/%d; "
612 "dropping RPC reply datagram\n",
613 cmh->cmsg_level, cmh->cmsg_type);
Eric Dumazet9d410c72009-10-30 05:03:53 +0000614 skb_free_datagram_locked(svsk->sk_sk, skb);
NeilBrown7a37f572007-03-06 01:42:21 -0800615 return 0;
616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 if (skb_is_nonlinear(skb)) {
619 /* we have to copy */
620 local_bh_disable();
621 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
622 local_bh_enable();
623 /* checksum error */
Eric Dumazet9d410c72009-10-30 05:03:53 +0000624 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return 0;
626 }
627 local_bh_enable();
Eric Dumazet9d410c72009-10-30 05:03:53 +0000628 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 } else {
630 /* we can use it in-place */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600631 rqstp->rq_arg.head[0].iov_base = skb->data +
632 sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 rqstp->rq_arg.head[0].iov_len = len;
Herbert Xufb286bb2005-11-10 13:01:24 -0800634 if (skb_checksum_complete(skb)) {
Eric Dumazet9d410c72009-10-30 05:03:53 +0000635 skb_free_datagram_locked(svsk->sk_sk, skb);
Herbert Xufb286bb2005-11-10 13:01:24 -0800636 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
Tom Tucker5148bf42007-12-30 21:07:25 -0600638 rqstp->rq_xprt_ctxt = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640
641 rqstp->rq_arg.page_base = 0;
642 if (len <= rqstp->rq_arg.head[0].iov_len) {
643 rqstp->rq_arg.head[0].iov_len = len;
644 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700645 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 } else {
647 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700648 rqstp->rq_respages = rqstp->rq_pages + 1 +
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700649 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
651
652 if (serv->sv_stats)
653 serv->sv_stats->netudpcnt++;
654
655 return len;
656}
657
658static int
659svc_udp_sendto(struct svc_rqst *rqstp)
660{
661 int error;
662
663 error = svc_sendto(rqstp, &rqstp->rq_res);
664 if (error == -ECONNREFUSED)
665 /* ICMP error on earlier request. */
666 error = svc_sendto(rqstp, &rqstp->rq_res);
667
668 return error;
669}
670
Tom Tuckere831fe62007-12-30 21:07:29 -0600671static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp)
672{
673}
674
Tom Tucker323bee32007-12-30 21:07:31 -0600675static int svc_udp_has_wspace(struct svc_xprt *xprt)
676{
677 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600678 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600679 unsigned long required;
680
681 /*
682 * Set the SOCK_NOSPACE flag before checking the available
683 * sock space.
684 */
685 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600686 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600687 if (required*2 > sock_wspace(svsk->sk_sk))
688 return 0;
689 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
690 return 1;
691}
692
Tom Tucker38a417c2007-12-30 21:07:36 -0600693static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt)
694{
695 BUG();
696 return NULL;
697}
698
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600699static struct svc_xprt *svc_udp_create(struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400700 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600701 struct sockaddr *sa, int salen,
702 int flags)
703{
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400704 return svc_create_socket(serv, IPPROTO_UDP, net, sa, salen, flags);
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600705}
706
Tom Tucker360d87382007-12-30 21:07:17 -0600707static struct svc_xprt_ops svc_udp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600708 .xpo_create = svc_udp_create,
Tom Tucker5d137992007-12-30 21:07:23 -0600709 .xpo_recvfrom = svc_udp_recvfrom,
710 .xpo_sendto = svc_udp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -0600711 .xpo_release_rqst = svc_release_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -0600712 .xpo_detach = svc_sock_detach,
713 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -0600714 .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -0600715 .xpo_has_wspace = svc_udp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -0600716 .xpo_accept = svc_udp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -0600717};
718
719static struct svc_xprt_class svc_udp_class = {
720 .xcl_name = "udp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600721 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -0600722 .xcl_ops = &svc_udp_ops,
Tom Tucker49023152007-12-30 21:07:21 -0600723 .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP,
Tom Tucker360d87382007-12-30 21:07:17 -0600724};
725
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600726static void svc_udp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Chuck Lever7702ce42009-07-13 10:54:26 -0400728 int err, level, optname, one = 1;
NeilBrown7a37f572007-03-06 01:42:21 -0800729
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600730 svc_xprt_init(&svc_udp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600731 clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
733 svsk->sk_sk->sk_write_space = svc_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800736 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 * svc_udp_recvfrom will re-adjust if necessary
738 */
739 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600740 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
741 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Tom Tucker0f0257e2007-12-30 21:08:27 -0600743 /* data might have come in before data_ready set up */
744 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600745 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
NeilBrown7a37f572007-03-06 01:42:21 -0800746
NeilBrown7a37f572007-03-06 01:42:21 -0800747 /* make sure we get destination address info */
Chuck Lever7702ce42009-07-13 10:54:26 -0400748 switch (svsk->sk_sk->sk_family) {
749 case AF_INET:
750 level = SOL_IP;
751 optname = IP_PKTINFO;
752 break;
753 case AF_INET6:
754 level = SOL_IPV6;
755 optname = IPV6_RECVPKTINFO;
756 break;
757 default:
758 BUG();
759 }
760 err = kernel_setsockopt(svsk->sk_sock, level, optname,
761 (char *)&one, sizeof(one));
762 dprintk("svc: kernel_setsockopt returned %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
765/*
766 * A data_ready event on a listening socket means there's a connection
767 * pending. Do not use state_change as a substitute for it.
768 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600769static void svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Neil Brown939bb7e2005-09-13 01:25:39 -0700771 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000772 wait_queue_head_t *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700775 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Neil Brown939bb7e2005-09-13 01:25:39 -0700777 /*
778 * This callback may called twice when a new connection
779 * is established as a child socket inherits everything
780 * from a parent LISTEN socket.
781 * 1) data_ready method of the parent socket will be called
782 * when one of child sockets become ESTABLISHED.
783 * 2) data_ready method of the child socket may be called
784 * when it receives data before the socket is accepted.
785 * In case of 2, we should ignore it silently.
786 */
787 if (sk->sk_state == TCP_LISTEN) {
788 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600789 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600790 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700791 } else
792 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
Neil Brown939bb7e2005-09-13 01:25:39 -0700794
Eric Dumazeteaefd112011-02-18 03:26:36 +0000795 wq = sk_sleep(sk);
796 if (wq && waitqueue_active(wq))
797 wake_up_interruptible_all(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
800/*
801 * A state change on a connected socket means it's dying or dead.
802 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600803static void svc_tcp_state_change(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Neil Brown939bb7e2005-09-13 01:25:39 -0700805 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000806 wait_queue_head_t *wq = sk_sleep(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700809 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Neil Brown939bb7e2005-09-13 01:25:39 -0700811 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700813 else {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600814 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600815 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
Eric Dumazeteaefd112011-02-18 03:26:36 +0000817 if (wq && waitqueue_active(wq))
818 wake_up_interruptible_all(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
Tom Tucker0f0257e2007-12-30 21:08:27 -0600821static void svc_tcp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Neil Brown939bb7e2005-09-13 01:25:39 -0700823 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000824 wait_queue_head_t *wq = sk_sleep(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700827 sk, sk->sk_user_data);
828 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600829 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600830 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700831 }
Eric Dumazeteaefd112011-02-18 03:26:36 +0000832 if (wq && waitqueue_active(wq))
833 wake_up_interruptible(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
836/*
837 * Accept a TCP connection
838 */
Tom Tucker38a417c2007-12-30 21:07:36 -0600839static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Tom Tucker38a417c2007-12-30 21:07:36 -0600841 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800842 struct sockaddr_storage addr;
843 struct sockaddr *sin = (struct sockaddr *) &addr;
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600844 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 struct socket *sock = svsk->sk_sock;
846 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 struct svc_sock *newsvsk;
848 int err, slen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300849 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
852 if (!sock)
Tom Tucker38a417c2007-12-30 21:07:36 -0600853 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Tom Tucker02fc6c32007-12-30 21:07:48 -0600855 clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700856 err = kernel_accept(sock, &newsock, O_NONBLOCK);
857 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (err == -ENOMEM)
859 printk(KERN_WARNING "%s: no more sockets!\n",
860 serv->sv_name);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700861 else if (err != -EAGAIN && net_ratelimit())
862 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
863 serv->sv_name, -err);
Tom Tucker38a417c2007-12-30 21:07:36 -0600864 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 }
Tom Tucker02fc6c32007-12-30 21:07:48 -0600866 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800868 err = kernel_getpeername(newsock, sin, &slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (err < 0) {
870 if (net_ratelimit())
871 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
872 serv->sv_name, -err);
873 goto failed; /* aborted connection or whatever */
874 }
875
876 /* Ideally, we would want to reject connections from unauthorized
Chuck Leverad06e4b2007-02-12 00:53:32 -0800877 * hosts here, but when we get encryption, the IP of the host won't
878 * tell us anything. For now just warn about unpriv connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 */
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800880 if (!svc_port_is_privileged(sin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 dprintk(KERN_WARNING
Chuck Leverad06e4b2007-02-12 00:53:32 -0800882 "%s: connect from unprivileged port: %s\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800883 serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800884 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
Chuck Leverad06e4b2007-02-12 00:53:32 -0800886 dprintk("%s: connect from %s\n", serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800887 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 /* make sure that a write doesn't block forever when
890 * low on memory
891 */
892 newsock->sk->sk_sndtimeo = HZ*30;
893
Chuck Lever6b174332007-02-12 00:53:28 -0800894 if (!(newsvsk = svc_setup_socket(serv, newsock, &err,
895 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 goto failed;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600897 svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen);
Frank van Maarseveena9747692007-07-09 22:21:39 +0200898 err = kernel_getsockname(newsock, sin, &slen);
899 if (unlikely(err < 0)) {
900 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
901 slen = offsetof(struct sockaddr, sa_data);
902 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600903 svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -0800904
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600905 if (serv->sv_stats)
906 serv->sv_stats->nettcpconn++;
907
908 return &newsvsk->sk_xprt;
909
910failed:
911 sock_release(newsock);
912 return NULL;
913}
914
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800915static unsigned int svc_tcp_restore_pages(struct svc_sock *svsk, struct svc_rqst *rqstp)
916{
917 unsigned int i, len, npages;
918
919 if (svsk->sk_tcplen <= sizeof(rpc_fraghdr))
920 return 0;
921 len = svsk->sk_tcplen - sizeof(rpc_fraghdr);
922 npages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
923 for (i = 0; i < npages; i++) {
924 if (rqstp->rq_pages[i] != NULL)
925 put_page(rqstp->rq_pages[i]);
926 BUG_ON(svsk->sk_pages[i] == NULL);
927 rqstp->rq_pages[i] = svsk->sk_pages[i];
928 svsk->sk_pages[i] = NULL;
929 }
930 rqstp->rq_arg.head[0].iov_base = page_address(rqstp->rq_pages[0]);
931 return len;
932}
933
934static void svc_tcp_save_pages(struct svc_sock *svsk, struct svc_rqst *rqstp)
935{
936 unsigned int i, len, npages;
937
938 if (svsk->sk_tcplen <= sizeof(rpc_fraghdr))
939 return;
940 len = svsk->sk_tcplen - sizeof(rpc_fraghdr);
941 npages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
942 for (i = 0; i < npages; i++) {
943 svsk->sk_pages[i] = rqstp->rq_pages[i];
944 rqstp->rq_pages[i] = NULL;
945 }
946}
947
948static void svc_tcp_clear_pages(struct svc_sock *svsk)
949{
950 unsigned int i, len, npages;
951
952 if (svsk->sk_tcplen <= sizeof(rpc_fraghdr))
953 goto out;
954 len = svsk->sk_tcplen - sizeof(rpc_fraghdr);
955 npages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
956 for (i = 0; i < npages; i++) {
957 BUG_ON(svsk->sk_pages[i] == NULL);
958 put_page(svsk->sk_pages[i]);
959 svsk->sk_pages[i] = NULL;
960 }
961out:
962 svsk->sk_tcplen = 0;
963}
964
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600965/*
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300966 * Receive data.
967 * If we haven't gotten the record length yet, get the next four bytes.
968 * Otherwise try to gobble up as much as possible up to the complete
969 * record length.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 */
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300971static int svc_tcp_recv_record(struct svc_sock *svsk, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600973 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Trond Myklebust5ee78d42009-05-18 17:47:56 -0400974 unsigned int want;
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300975 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Tom Tucker02fc6c32007-12-30 21:07:48 -0600977 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Chuck Leverc0401ea2008-04-14 12:27:30 -0400979 if (svsk->sk_tcplen < sizeof(rpc_fraghdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 struct kvec iov;
981
Trond Myklebust5ee78d42009-05-18 17:47:56 -0400982 want = sizeof(rpc_fraghdr) - svsk->sk_tcplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
984 iov.iov_len = want;
985 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
986 goto error;
987 svsk->sk_tcplen += len;
988
989 if (len < want) {
Chuck Leverc0401ea2008-04-14 12:27:30 -0400990 dprintk("svc: short recvfrom while reading record "
991 "length (%d of %d)\n", len, want);
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800992 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 }
994
995 svsk->sk_reclen = ntohl(svsk->sk_reclen);
Chuck Leverc0401ea2008-04-14 12:27:30 -0400996 if (!(svsk->sk_reclen & RPC_LAST_STREAM_FRAGMENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 /* FIXME: technically, a record can be fragmented,
998 * and non-terminal fragments will not have the top
999 * bit set in the fragment length header.
1000 * But apparently no known nfs clients send fragmented
1001 * records. */
NeilBrown34e9a632007-01-29 13:19:52 -08001002 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -04001003 printk(KERN_NOTICE "RPC: multiple fragments "
1004 "per record not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 goto err_delete;
1006 }
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001007
Chuck Leverc0401ea2008-04-14 12:27:30 -04001008 svsk->sk_reclen &= RPC_FRAGMENT_SIZE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
NeilBrownc6b0a9f2006-10-06 00:44:05 -07001010 if (svsk->sk_reclen > serv->sv_max_mesg) {
NeilBrown34e9a632007-01-29 13:19:52 -08001011 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -04001012 printk(KERN_NOTICE "RPC: "
1013 "fragment too large: 0x%08lx\n",
1014 (unsigned long)svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 goto err_delete;
1016 }
1017 }
1018
J. Bruce Fieldscc6c2122011-02-14 15:03:35 -05001019 if (svsk->sk_reclen < 8)
1020 goto err_delete; /* client is nuts. */
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 len = svsk->sk_reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001024 return len;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001025error:
1026 dprintk("RPC: TCP recv_record got %d\n", len);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001027 return len;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001028err_delete:
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001029 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001030 return -EAGAIN;
1031}
1032
Trond Myklebust586c52c2009-05-18 17:47:56 -04001033static int receive_cb_reply(struct svc_sock *svsk, struct svc_rqst *rqstp)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001034{
Trond Myklebust586c52c2009-05-18 17:47:56 -04001035 struct rpc_xprt *bc_xprt = svsk->sk_xprt.xpt_bc_xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001036 struct rpc_rqst *req = NULL;
Trond Myklebust586c52c2009-05-18 17:47:56 -04001037 struct kvec *src, *dst;
1038 __be32 *p = (__be32 *)rqstp->rq_arg.head[0].iov_base;
J. Bruce Fields48e65552011-02-14 14:52:03 -05001039 __be32 xid;
1040 __be32 calldir;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001041
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001042 xid = *p++;
1043 calldir = *p;
1044
Trond Myklebust586c52c2009-05-18 17:47:56 -04001045 if (bc_xprt)
1046 req = xprt_lookup_rqst(bc_xprt, xid);
J. Bruce Fieldsd75faea2010-11-30 19:15:01 -05001047
Trond Myklebust586c52c2009-05-18 17:47:56 -04001048 if (!req) {
1049 printk(KERN_NOTICE
1050 "%s: Got unrecognized reply: "
1051 "calldir 0x%x xpt_bc_xprt %p xid %08x\n",
1052 __func__, ntohl(calldir),
1053 bc_xprt, xid);
1054 return -EAGAIN;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001055 }
Trond Myklebust586c52c2009-05-18 17:47:56 -04001056
1057 memcpy(&req->rq_private_buf, &req->rq_rcv_buf, sizeof(struct xdr_buf));
1058 /*
1059 * XXX!: cheating for now! Only copying HEAD.
1060 * But we know this is good enough for now (in fact, for any
1061 * callback reply in the forseeable future).
1062 */
1063 dst = &req->rq_private_buf.head[0];
1064 src = &rqstp->rq_arg.head[0];
1065 if (dst->iov_len < src->iov_len)
1066 return -EAGAIN; /* whatever; just giving up. */
1067 memcpy(dst->iov_base, src->iov_base, src->iov_len);
1068 xprt_complete_rqst(req->rq_task, svsk->sk_reclen);
1069 rqstp->rq_arg.len = 0;
1070 return 0;
1071}
1072
1073static int copy_pages_to_kvecs(struct kvec *vec, struct page **pages, int len)
1074{
1075 int i = 0;
1076 int t = 0;
1077
1078 while (t < len) {
1079 vec[i].iov_base = page_address(pages[i]);
1080 vec[i].iov_len = PAGE_SIZE;
1081 i++;
1082 t += PAGE_SIZE;
1083 }
1084 return i;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001085}
1086
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001087
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001088/*
1089 * Receive data from a TCP socket.
1090 */
1091static int svc_tcp_recvfrom(struct svc_rqst *rqstp)
1092{
1093 struct svc_sock *svsk =
1094 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
1095 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
1096 int len;
1097 struct kvec *vec;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001098 unsigned int want, base;
Trond Myklebust586c52c2009-05-18 17:47:56 -04001099 __be32 *p;
1100 __be32 calldir;
Trond Myklebust5ee78d42009-05-18 17:47:56 -04001101 int pnum;
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001102
1103 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
1104 svsk, test_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags),
1105 test_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags),
1106 test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags));
1107
1108 len = svc_tcp_recv_record(svsk, rqstp);
1109 if (len < 0)
1110 goto error;
1111
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001112 base = svc_tcp_restore_pages(svsk, rqstp);
1113 want = svsk->sk_reclen - base;
1114
NeilBrown3cc03b12006-10-04 02:15:47 -07001115 vec = rqstp->rq_vec;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001116
Trond Myklebust586c52c2009-05-18 17:47:56 -04001117 pnum = copy_pages_to_kvecs(&vec[0], &rqstp->rq_pages[0],
1118 svsk->sk_reclen);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001119
NeilBrown44524352006-10-04 02:15:46 -07001120 rqstp->rq_respages = &rqstp->rq_pages[pnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 /* Now receive data */
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001123 len = svc_partial_recvfrom(rqstp, vec, pnum, want, base);
1124 if (len >= 0)
1125 svsk->sk_tcplen += len;
1126 if (len != want) {
1127 if (len < 0 && len != -EAGAIN)
1128 goto err_other;
1129 svc_tcp_save_pages(svsk, rqstp);
1130 dprintk("svc: incomplete TCP record (%d of %d)\n",
1131 svsk->sk_tcplen, svsk->sk_reclen);
1132 goto err_noclose;
1133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Trond Myklebust5ee78d42009-05-18 17:47:56 -04001135 rqstp->rq_arg.len = svsk->sk_reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 rqstp->rq_arg.page_base = 0;
Trond Myklebust5ee78d42009-05-18 17:47:56 -04001137 if (rqstp->rq_arg.len <= rqstp->rq_arg.head[0].iov_len) {
1138 rqstp->rq_arg.head[0].iov_len = rqstp->rq_arg.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 rqstp->rq_arg.page_len = 0;
Trond Myklebust5ee78d42009-05-18 17:47:56 -04001140 } else
1141 rqstp->rq_arg.page_len = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Tom Tucker5148bf42007-12-30 21:07:25 -06001143 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 rqstp->rq_prot = IPPROTO_TCP;
1145
Trond Myklebust586c52c2009-05-18 17:47:56 -04001146 p = (__be32 *)rqstp->rq_arg.head[0].iov_base;
1147 calldir = p[1];
J. Bruce Fields8985ef02011-04-09 10:03:10 -04001148 if (calldir)
Trond Myklebust586c52c2009-05-18 17:47:56 -04001149 len = receive_cb_reply(svsk, rqstp);
Trond Myklebust586c52c2009-05-18 17:47:56 -04001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 /* Reset TCP read info */
1152 svsk->sk_reclen = 0;
1153 svsk->sk_tcplen = 0;
Trond Myklebust0601f792009-05-18 17:47:56 -04001154 /* If we have more data, signal svc_xprt_enqueue() to try again */
1155 if (svc_recv_available(svsk) > sizeof(rpc_fraghdr))
1156 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
1157
J. Bruce Fields8985ef02011-04-09 10:03:10 -04001158 if (len < 0)
1159 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Tom Tucker9dbc2402007-12-30 21:08:12 -06001161 svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (serv->sv_stats)
1163 serv->sv_stats->nettcpcnt++;
1164
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001165 dprintk("svc: TCP complete record (%d bytes)\n", rqstp->rq_arg.len);
Trond Myklebust5ee78d42009-05-18 17:47:56 -04001166 return rqstp->rq_arg.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001168error:
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001169 if (len != -EAGAIN)
1170 goto err_other;
1171 dprintk("RPC: TCP recvfrom got EAGAIN\n");
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001172 return -EAGAIN;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001173err_other:
1174 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
1175 svsk->sk_xprt.xpt_server->sv_name, -len);
1176 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
1177err_noclose:
1178 return -EAGAIN; /* record not complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
1181/*
1182 * Send out data on TCP socket.
1183 */
Tom Tucker0f0257e2007-12-30 21:08:27 -06001184static int svc_tcp_sendto(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
1186 struct xdr_buf *xbufp = &rqstp->rq_res;
1187 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001188 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 /* Set up the first element of the reply kvec.
1191 * Any other kvecs that may be in use have been taken
1192 * care of by the server implementation itself.
1193 */
1194 reclen = htonl(0x80000000|((xbufp->len ) - 4));
1195 memcpy(xbufp->head[0].iov_base, &reclen, 4);
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 sent = svc_sendto(rqstp, &rqstp->rq_res);
1198 if (sent != xbufp->len) {
Tom Tucker0f0257e2007-12-30 21:08:27 -06001199 printk(KERN_NOTICE
1200 "rpc-srv/tcp: %s: %s %d when sending %d bytes "
1201 "- shutting down socket\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001202 rqstp->rq_xprt->xpt_server->sv_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 (sent<0)?"got error":"sent only",
1204 sent, xbufp->len);
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001205 set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -06001206 svc_xprt_enqueue(rqstp->rq_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 sent = -EAGAIN;
1208 }
1209 return sent;
1210}
1211
Tom Tuckere831fe62007-12-30 21:07:29 -06001212/*
1213 * Setup response header. TCP has a 4B record length field.
1214 */
1215static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp)
1216{
1217 struct kvec *resv = &rqstp->rq_res.head[0];
1218
1219 /* tcp needs a space for the record length... */
1220 svc_putnl(resv, 0);
1221}
1222
Tom Tucker323bee32007-12-30 21:07:31 -06001223static int svc_tcp_has_wspace(struct svc_xprt *xprt)
1224{
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001225 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Trond Myklebust47fcb032009-05-18 17:47:56 -04001226 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -06001227 int required;
Tom Tucker323bee32007-12-30 21:07:31 -06001228
Trond Myklebust47fcb032009-05-18 17:47:56 -04001229 if (test_bit(XPT_LISTENER, &xprt->xpt_flags))
1230 return 1;
1231 required = atomic_read(&xprt->xpt_reserved) + serv->sv_max_mesg;
1232 if (sk_stream_wspace(svsk->sk_sk) >= required)
1233 return 1;
Tom Tucker323bee32007-12-30 21:07:31 -06001234 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Trond Myklebust47fcb032009-05-18 17:47:56 -04001235 return 0;
Tom Tucker323bee32007-12-30 21:07:31 -06001236}
1237
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001238static struct svc_xprt *svc_tcp_create(struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001239 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001240 struct sockaddr *sa, int salen,
1241 int flags)
1242{
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001243 return svc_create_socket(serv, IPPROTO_TCP, net, sa, salen, flags);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001244}
1245
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001246#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Andy Adamson1f11a032011-01-06 02:04:26 +00001247static struct svc_xprt *svc_bc_create_socket(struct svc_serv *, int,
1248 struct net *, struct sockaddr *,
1249 int, int);
1250static void svc_bc_sock_free(struct svc_xprt *xprt);
1251
1252static struct svc_xprt *svc_bc_tcp_create(struct svc_serv *serv,
1253 struct net *net,
1254 struct sockaddr *sa, int salen,
1255 int flags)
1256{
1257 return svc_bc_create_socket(serv, IPPROTO_TCP, net, sa, salen, flags);
1258}
1259
1260static void svc_bc_tcp_sock_detach(struct svc_xprt *xprt)
1261{
1262}
1263
1264static struct svc_xprt_ops svc_tcp_bc_ops = {
1265 .xpo_create = svc_bc_tcp_create,
1266 .xpo_detach = svc_bc_tcp_sock_detach,
1267 .xpo_free = svc_bc_sock_free,
1268 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
1269};
1270
1271static struct svc_xprt_class svc_tcp_bc_class = {
1272 .xcl_name = "tcp-bc",
1273 .xcl_owner = THIS_MODULE,
1274 .xcl_ops = &svc_tcp_bc_ops,
1275 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
1276};
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001277
1278static void svc_init_bc_xprt_sock(void)
1279{
1280 svc_reg_xprt_class(&svc_tcp_bc_class);
1281}
1282
1283static void svc_cleanup_bc_xprt_sock(void)
1284{
1285 svc_unreg_xprt_class(&svc_tcp_bc_class);
1286}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001287#else /* CONFIG_SUNRPC_BACKCHANNEL */
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001288static void svc_init_bc_xprt_sock(void)
1289{
1290}
1291
1292static void svc_cleanup_bc_xprt_sock(void)
1293{
1294}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001295#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Andy Adamson1f11a032011-01-06 02:04:26 +00001296
Tom Tucker360d87382007-12-30 21:07:17 -06001297static struct svc_xprt_ops svc_tcp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001298 .xpo_create = svc_tcp_create,
Tom Tucker5d137992007-12-30 21:07:23 -06001299 .xpo_recvfrom = svc_tcp_recvfrom,
1300 .xpo_sendto = svc_tcp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -06001301 .xpo_release_rqst = svc_release_skb,
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001302 .xpo_detach = svc_tcp_sock_detach,
Tom Tucker755ccea2007-12-30 21:07:27 -06001303 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -06001304 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -06001305 .xpo_has_wspace = svc_tcp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -06001306 .xpo_accept = svc_tcp_accept,
Tom Tucker360d87382007-12-30 21:07:17 -06001307};
1308
1309static struct svc_xprt_class svc_tcp_class = {
1310 .xcl_name = "tcp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001311 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -06001312 .xcl_ops = &svc_tcp_ops,
Tom Tucker49023152007-12-30 21:07:21 -06001313 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
Tom Tucker360d87382007-12-30 21:07:17 -06001314};
1315
1316void svc_init_xprt_sock(void)
1317{
1318 svc_reg_xprt_class(&svc_tcp_class);
1319 svc_reg_xprt_class(&svc_udp_class);
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001320 svc_init_bc_xprt_sock();
Tom Tucker360d87382007-12-30 21:07:17 -06001321}
1322
1323void svc_cleanup_xprt_sock(void)
1324{
1325 svc_unreg_xprt_class(&svc_tcp_class);
1326 svc_unreg_xprt_class(&svc_udp_class);
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001327 svc_cleanup_bc_xprt_sock();
Tom Tucker360d87382007-12-30 21:07:17 -06001328}
1329
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001330static void svc_tcp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
1332 struct sock *sk = svsk->sk_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001334 svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -06001335 set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 if (sk->sk_state == TCP_LISTEN) {
1337 dprintk("setting up TCP socket for listening\n");
Tom Tucker02fc6c32007-12-30 21:07:48 -06001338 set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 sk->sk_data_ready = svc_tcp_listen_data_ready;
Tom Tucker02fc6c32007-12-30 21:07:48 -06001340 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 } else {
1342 dprintk("setting up TCP socket for reading\n");
1343 sk->sk_state_change = svc_tcp_state_change;
1344 sk->sk_data_ready = svc_tcp_data_ready;
Trond Myklebust47fcb032009-05-18 17:47:56 -04001345 sk->sk_write_space = svc_tcp_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 svsk->sk_reclen = 0;
1348 svsk->sk_tcplen = 0;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001349 memset(&svsk->sk_pages[0], 0, sizeof(svsk->sk_pages));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Chuck Leverb7872fe2008-04-14 12:27:01 -04001351 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Tom Tucker02fc6c32007-12-30 21:07:48 -06001353 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001354 if (sk->sk_state != TCP_ESTABLISHED)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001355 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
1357}
1358
Tom Tucker0f0257e2007-12-30 21:08:27 -06001359void svc_sock_update_bufs(struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
1361 /*
1362 * The number of server threads has changed. Update
1363 * rcvbuf and sndbuf accordingly on all sockets
1364 */
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001365 struct svc_sock *svsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 spin_lock_bh(&serv->sv_lock);
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001368 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001369 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001370 list_for_each_entry(svsk, &serv->sv_tempsocks, sk_xprt.xpt_list)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001371 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 spin_unlock_bh(&serv->sv_lock);
1373}
Trond Myklebust24c37672008-12-23 16:30:12 -05001374EXPORT_SYMBOL_GPL(svc_sock_update_bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 * Initialize socket for RPC use and create svc_sock struct
1378 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1379 */
Chuck Lever6b174332007-02-12 00:53:28 -08001380static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1381 struct socket *sock,
1382 int *errp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
1384 struct svc_sock *svsk;
1385 struct sock *inet;
Chuck Lever6b174332007-02-12 00:53:28 -08001386 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 dprintk("svc: svc_setup_socket %p\n", sock);
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001389 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 *errp = -ENOMEM;
1391 return NULL;
1392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 inet = sock->sk;
1395
1396 /* Register socket with portmapper */
1397 if (*errp >= 0 && pmap_register)
Chuck Leverbaf01ca2009-03-18 20:46:13 -04001398 *errp = svc_register(serv, inet->sk_family, inet->sk_protocol,
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001399 ntohs(inet_sk(inet)->inet_sport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 if (*errp < 0) {
1402 kfree(svsk);
1403 return NULL;
1404 }
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 inet->sk_user_data = svsk;
1407 svsk->sk_sock = sock;
1408 svsk->sk_sk = inet;
1409 svsk->sk_ostate = inet->sk_state_change;
1410 svsk->sk_odata = inet->sk_data_ready;
1411 svsk->sk_owspace = inet->sk_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 /* Initialize the socket */
1414 if (sock->type == SOCK_DGRAM)
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001415 svc_udp_init(svsk, serv);
Olga Kornievskaia96604392008-10-21 14:13:47 -04001416 else {
1417 /* initialise setting must have enough space to
1418 * receive and respond to one request.
1419 */
1420 svc_sock_setbufsize(svsk->sk_sock, 4 * serv->sv_max_mesg,
1421 4 * serv->sv_max_mesg);
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001422 svc_tcp_init(svsk, serv);
Olga Kornievskaia96604392008-10-21 14:13:47 -04001423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1426 svsk, svsk->sk_sk);
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 return svsk;
1429}
1430
Chuck Leverbfba9ab2009-04-23 19:32:33 -04001431/**
1432 * svc_addsock - add a listener socket to an RPC service
1433 * @serv: pointer to RPC service to which to add a new listener
1434 * @fd: file descriptor of the new listener
1435 * @name_return: pointer to buffer to fill in with name of listener
1436 * @len: size of the buffer
1437 *
1438 * Fills in socket name and returns positive length of name if successful.
1439 * Name is terminated with '\n'. On error, returns a negative errno
1440 * value.
1441 */
1442int svc_addsock(struct svc_serv *serv, const int fd, char *name_return,
1443 const size_t len)
NeilBrownb41b66d2006-10-02 02:17:48 -07001444{
1445 int err = 0;
1446 struct socket *so = sockfd_lookup(fd, &err);
1447 struct svc_sock *svsk = NULL;
1448
1449 if (!so)
1450 return err;
Aime Le Rouzic205ba422010-01-26 14:03:56 -05001451 if ((so->sk->sk_family != PF_INET) && (so->sk->sk_family != PF_INET6))
NeilBrownb41b66d2006-10-02 02:17:48 -07001452 err = -EAFNOSUPPORT;
1453 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1454 so->sk->sk_protocol != IPPROTO_UDP)
1455 err = -EPROTONOSUPPORT;
1456 else if (so->state > SS_UNCONNECTED)
1457 err = -EISCONN;
1458 else {
Tom Tucker2da2c212008-11-23 09:58:08 -06001459 if (!try_module_get(THIS_MODULE))
1460 err = -ENOENT;
1461 else
1462 svsk = svc_setup_socket(serv, so, &err,
1463 SVC_SOCK_DEFAULTS);
NeilBrowne79eff12007-02-12 00:53:30 -08001464 if (svsk) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001465 struct sockaddr_storage addr;
1466 struct sockaddr *sin = (struct sockaddr *)&addr;
1467 int salen;
1468 if (kernel_getsockname(svsk->sk_sock, sin, &salen) == 0)
1469 svc_xprt_set_local(&svsk->sk_xprt, sin, salen);
Tom Tucker4e5caaa2007-12-30 21:08:20 -06001470 clear_bit(XPT_TEMP, &svsk->sk_xprt.xpt_flags);
1471 spin_lock_bh(&serv->sv_lock);
1472 list_add(&svsk->sk_xprt.xpt_list, &serv->sv_permsocks);
1473 spin_unlock_bh(&serv->sv_lock);
Tom Tuckera6046f72007-12-30 21:08:01 -06001474 svc_xprt_received(&svsk->sk_xprt);
NeilBrownb41b66d2006-10-02 02:17:48 -07001475 err = 0;
Tom Tucker2da2c212008-11-23 09:58:08 -06001476 } else
1477 module_put(THIS_MODULE);
NeilBrownb41b66d2006-10-02 02:17:48 -07001478 }
1479 if (err) {
1480 sockfd_put(so);
1481 return err;
1482 }
Chuck Levere7942b92009-04-23 19:32:48 -04001483 return svc_one_sock_name(svsk, name_return, len);
NeilBrownb41b66d2006-10-02 02:17:48 -07001484}
1485EXPORT_SYMBOL_GPL(svc_addsock);
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487/*
1488 * Create socket for RPC service.
1489 */
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001490static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
1491 int protocol,
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001492 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001493 struct sockaddr *sin, int len,
1494 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495{
1496 struct svc_sock *svsk;
1497 struct socket *sock;
1498 int error;
1499 int type;
Tom Tucker9dbc2402007-12-30 21:08:12 -06001500 struct sockaddr_storage addr;
1501 struct sockaddr *newsin = (struct sockaddr *)&addr;
1502 int newlen;
Trond Myklebustc69da772009-03-30 18:59:17 -04001503 int family;
1504 int val;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +03001505 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Chuck Leverad06e4b2007-02-12 00:53:32 -08001507 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1508 serv->sv_program->pg_name, protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001509 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1512 printk(KERN_WARNING "svc: only UDP and TCP "
1513 "sockets supported\n");
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001514 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Trond Myklebustc69da772009-03-30 18:59:17 -04001517 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1518 switch (sin->sa_family) {
1519 case AF_INET6:
1520 family = PF_INET6;
1521 break;
1522 case AF_INET:
1523 family = PF_INET;
1524 break;
1525 default:
1526 return ERR_PTR(-EINVAL);
1527 }
1528
Pavel Emelyanov14ec63c2010-09-29 16:06:57 +04001529 error = __sock_create(net, family, type, protocol, &sock, 1);
Chuck Lever77f1f672007-02-12 00:53:39 -08001530 if (error < 0)
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001531 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Peter Zijlstraed075362006-12-06 20:35:24 -08001533 svc_reclassify_socket(sock);
1534
Trond Myklebustc69da772009-03-30 18:59:17 -04001535 /*
1536 * If this is an PF_INET6 listener, we want to avoid
1537 * getting requests from IPv4 remotes. Those should
1538 * be shunted to a PF_INET listener via rpcbind.
1539 */
1540 val = 1;
1541 if (family == PF_INET6)
1542 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
1543 (char *)&val, sizeof(val));
1544
Eric Sesterhenn18114742006-09-28 14:37:07 -07001545 if (type == SOCK_STREAM)
Chuck Lever77f1f672007-02-12 00:53:39 -08001546 sock->sk->sk_reuse = 1; /* allow address reuse */
1547 error = kernel_bind(sock, sin, len);
Eric Sesterhenn18114742006-09-28 14:37:07 -07001548 if (error < 0)
1549 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Tom Tucker9dbc2402007-12-30 21:08:12 -06001551 newlen = len;
1552 error = kernel_getsockname(sock, newsin, &newlen);
1553 if (error < 0)
1554 goto bummer;
1555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001557 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 goto bummer;
1559 }
1560
NeilBrowne79eff12007-02-12 00:53:30 -08001561 if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001562 svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001563 return (struct svc_xprt *)svsk;
NeilBrowne79eff12007-02-12 00:53:30 -08001564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
1566bummer:
1567 dprintk("svc: svc_create_socket error = %d\n", -error);
1568 sock_release(sock);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001569 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570}
1571
1572/*
Tom Tucker755ccea2007-12-30 21:07:27 -06001573 * Detach the svc_sock from the socket so that no
1574 * more callbacks occur.
1575 */
1576static void svc_sock_detach(struct svc_xprt *xprt)
1577{
1578 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1579 struct sock *sk = svsk->sk_sk;
Eric Dumazeteaefd112011-02-18 03:26:36 +00001580 wait_queue_head_t *wq;
Tom Tucker755ccea2007-12-30 21:07:27 -06001581
1582 dprintk("svc: svc_sock_detach(%p)\n", svsk);
1583
1584 /* put back the old socket callbacks */
1585 sk->sk_state_change = svsk->sk_ostate;
1586 sk->sk_data_ready = svsk->sk_odata;
1587 sk->sk_write_space = svsk->sk_owspace;
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001588
Eric Dumazeteaefd112011-02-18 03:26:36 +00001589 wq = sk_sleep(sk);
1590 if (wq && waitqueue_active(wq))
1591 wake_up_interruptible(wq);
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001592}
1593
1594/*
1595 * Disconnect the socket, and reset the callbacks
1596 */
1597static void svc_tcp_sock_detach(struct svc_xprt *xprt)
1598{
1599 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1600
1601 dprintk("svc: svc_tcp_sock_detach(%p)\n", svsk);
1602
1603 svc_sock_detach(xprt);
1604
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001605 if (!test_bit(XPT_LISTENER, &xprt->xpt_flags)) {
1606 svc_tcp_clear_pages(svsk);
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001607 kernel_sock_shutdown(svsk->sk_sock, SHUT_RDWR);
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001608 }
Tom Tucker755ccea2007-12-30 21:07:27 -06001609}
1610
1611/*
1612 * Free the svc_sock's socket resources and the svc_sock itself.
1613 */
1614static void svc_sock_free(struct svc_xprt *xprt)
1615{
1616 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1617 dprintk("svc: svc_sock_free(%p)\n", svsk);
1618
Tom Tucker755ccea2007-12-30 21:07:27 -06001619 if (svsk->sk_sock->file)
1620 sockfd_put(svsk->sk_sock);
1621 else
1622 sock_release(svsk->sk_sock);
1623 kfree(svsk);
1624}
Benny Halevy7652e5a2009-04-01 09:23:09 -04001625
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001626#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001627/*
Andy Adamson1f11a032011-01-06 02:04:26 +00001628 * Create a back channel svc_xprt which shares the fore channel socket.
Benny Halevy7652e5a2009-04-01 09:23:09 -04001629 */
Andy Adamson1f11a032011-01-06 02:04:26 +00001630static struct svc_xprt *svc_bc_create_socket(struct svc_serv *serv,
1631 int protocol,
1632 struct net *net,
1633 struct sockaddr *sin, int len,
1634 int flags)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001635{
1636 struct svc_sock *svsk;
Andy Adamson1f11a032011-01-06 02:04:26 +00001637 struct svc_xprt *xprt;
Benny Halevy7652e5a2009-04-01 09:23:09 -04001638
Andy Adamson1f11a032011-01-06 02:04:26 +00001639 if (protocol != IPPROTO_TCP) {
1640 printk(KERN_WARNING "svc: only TCP sockets"
1641 " supported on shared back channel\n");
1642 return ERR_PTR(-EINVAL);
1643 }
1644
Benny Halevy7652e5a2009-04-01 09:23:09 -04001645 svsk = kzalloc(sizeof(*svsk), GFP_KERNEL);
1646 if (!svsk)
Andy Adamson1f11a032011-01-06 02:04:26 +00001647 return ERR_PTR(-ENOMEM);
Benny Halevy7652e5a2009-04-01 09:23:09 -04001648
1649 xprt = &svsk->sk_xprt;
Andy Adamson1f11a032011-01-06 02:04:26 +00001650 svc_xprt_init(&svc_tcp_bc_class, xprt, serv);
1651
Andy Adamson4a19de02011-01-06 02:04:35 +00001652 serv->sv_bc_xprt = xprt;
Andy Adamson1f11a032011-01-06 02:04:26 +00001653
Benny Halevy7652e5a2009-04-01 09:23:09 -04001654 return xprt;
1655}
Benny Halevy7652e5a2009-04-01 09:23:09 -04001656
1657/*
Andy Adamson1f11a032011-01-06 02:04:26 +00001658 * Free a back channel svc_sock.
Benny Halevy7652e5a2009-04-01 09:23:09 -04001659 */
Andy Adamson1f11a032011-01-06 02:04:26 +00001660static void svc_bc_sock_free(struct svc_xprt *xprt)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001661{
Andy Adamson778be232011-01-25 15:38:01 +00001662 if (xprt)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001663 kfree(container_of(xprt, struct svc_sock, sk_xprt));
1664}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001665#endif /* CONFIG_SUNRPC_BACKCHANNEL */