blob: dfd686eb0b7f2de3c75132e69194da8dfba7672a [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 Tucker360d8732007-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;
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800146 pki->ipi_spec_dst.s_addr =
147 svc_daddr_in(rqstp)->sin_addr.s_addr;
Chuck Leverb92503b2007-02-12 00:53:36 -0800148 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
149 }
150 break;
NeilBrown5a05ed72007-03-06 01:42:22 -0800151
Chuck Leverb92503b2007-02-12 00:53:36 -0800152 case AF_INET6: {
153 struct in6_pktinfo *pki = CMSG_DATA(cmh);
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800154 struct sockaddr_in6 *daddr = svc_daddr_in6(rqstp);
Chuck Leverb92503b2007-02-12 00:53:36 -0800155
156 cmh->cmsg_level = SOL_IPV6;
157 cmh->cmsg_type = IPV6_PKTINFO;
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800158 pki->ipi6_ifindex = daddr->sin6_scope_id;
159 ipv6_addr_copy(&pki->ipi6_addr, &daddr->sin6_addr);
Chuck Leverb92503b2007-02-12 00:53:36 -0800160 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
161 }
162 break;
Chuck Leverb92503b2007-02-12 00:53:36 -0800163 }
Chuck Leverb92503b2007-02-12 00:53:36 -0800164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300167 * send routine intended to be shared by the fore- and back-channel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 */
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300169int svc_send_common(struct socket *sock, struct xdr_buf *xdr,
170 struct page *headpage, unsigned long headoffset,
171 struct page *tailpage, unsigned long tailoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 int result;
174 int size;
175 struct page **ppage = xdr->pages;
176 size_t base = xdr->page_base;
177 unsigned int pglen = xdr->page_len;
178 unsigned int flags = MSG_MORE;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300179 int slen;
180 int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 slen = xdr->len;
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 /* send head */
185 if (slen == xdr->head[0].iov_len)
186 flags = 0;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300187 len = kernel_sendpage(sock, headpage, headoffset,
NeilBrown44524352006-10-04 02:15:46 -0700188 xdr->head[0].iov_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (len != xdr->head[0].iov_len)
190 goto out;
191 slen -= xdr->head[0].iov_len;
192 if (slen == 0)
193 goto out;
194
195 /* send page data */
196 size = PAGE_SIZE - base < pglen ? PAGE_SIZE - base : pglen;
197 while (pglen > 0) {
198 if (slen == size)
199 flags = 0;
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700200 result = kernel_sendpage(sock, *ppage, base, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (result > 0)
202 len += result;
203 if (result != size)
204 goto out;
205 slen -= size;
206 pglen -= size;
207 size = PAGE_SIZE < pglen ? PAGE_SIZE : pglen;
208 base = 0;
209 ppage++;
210 }
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /* send tail */
213 if (xdr->tail[0].iov_len) {
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300214 result = kernel_sendpage(sock, tailpage, tailoffset,
215 xdr->tail[0].iov_len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (result > 0)
217 len += result;
218 }
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300219
220out:
221 return len;
222}
223
224
225/*
226 * Generic sendto routine
227 */
228static int svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr)
229{
230 struct svc_sock *svsk =
231 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
232 struct socket *sock = svsk->sk_sock;
233 union {
234 struct cmsghdr hdr;
235 long all[SVC_PKTINFO_SPACE / sizeof(long)];
236 } buffer;
237 struct cmsghdr *cmh = &buffer.hdr;
238 int len = 0;
239 unsigned long tailoff;
240 unsigned long headoff;
241 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
242
243 if (rqstp->rq_prot == IPPROTO_UDP) {
244 struct msghdr msg = {
245 .msg_name = &rqstp->rq_addr,
246 .msg_namelen = rqstp->rq_addrlen,
247 .msg_control = cmh,
248 .msg_controllen = sizeof(buffer),
249 .msg_flags = MSG_MORE,
250 };
251
252 svc_set_cmsg_data(rqstp, cmh);
253
254 if (sock_sendmsg(sock, &msg, 0) < 0)
255 goto out;
256 }
257
258 tailoff = ((unsigned long)xdr->tail[0].iov_base) & (PAGE_SIZE-1);
259 headoff = 0;
260 len = svc_send_common(sock, xdr, rqstp->rq_respages[0], headoff,
261 rqstp->rq_respages[0], tailoff);
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263out:
Chuck Leverad06e4b2007-02-12 00:53:32 -0800264 dprintk("svc: socket %p sendto([%p %Zu... ], %d) = %d (addr %s)\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600265 svsk, xdr->head[0].iov_base, xdr->head[0].iov_len,
Chuck Leverad06e4b2007-02-12 00:53:32 -0800266 xdr->len, len, svc_print_addr(rqstp, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 return len;
269}
270
271/*
NeilBrown80212d52006-10-02 02:17:47 -0700272 * Report socket names for nfsdfs
273 */
Chuck Levere7942b92009-04-23 19:32:48 -0400274static int svc_one_sock_name(struct svc_sock *svsk, char *buf, int remaining)
NeilBrown80212d52006-10-02 02:17:47 -0700275{
Chuck Lever017cb472009-04-23 19:33:03 -0400276 const struct sock *sk = svsk->sk_sk;
277 const char *proto_name = sk->sk_protocol == IPPROTO_UDP ?
278 "udp" : "tcp";
NeilBrown80212d52006-10-02 02:17:47 -0700279 int len;
280
Chuck Lever017cb472009-04-23 19:33:03 -0400281 switch (sk->sk_family) {
Chuck Levere7942b92009-04-23 19:32:48 -0400282 case PF_INET:
283 len = snprintf(buf, remaining, "ipv4 %s %pI4 %d\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400284 proto_name,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000285 &inet_sk(sk)->inet_rcv_saddr,
286 inet_sk(sk)->inet_num);
NeilBrown80212d52006-10-02 02:17:47 -0700287 break;
Chuck Lever58de2f82009-04-23 19:32:55 -0400288 case PF_INET6:
289 len = snprintf(buf, remaining, "ipv6 %s %pI6 %d\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400290 proto_name,
291 &inet6_sk(sk)->rcv_saddr,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000292 inet_sk(sk)->inet_num);
NeilBrown80212d52006-10-02 02:17:47 -0700293 break;
294 default:
Chuck Levere7942b92009-04-23 19:32:48 -0400295 len = snprintf(buf, remaining, "*unknown-%d*\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400296 sk->sk_family);
NeilBrown80212d52006-10-02 02:17:47 -0700297 }
Chuck Levere7942b92009-04-23 19:32:48 -0400298
299 if (len >= remaining) {
300 *buf = '\0';
301 return -ENAMETOOLONG;
NeilBrown80212d52006-10-02 02:17:47 -0700302 }
303 return len;
304}
305
Chuck Lever8435d342009-04-23 19:32:40 -0400306/**
307 * svc_sock_names - construct a list of listener names in a string
308 * @serv: pointer to RPC service
309 * @buf: pointer to a buffer to fill in with socket names
310 * @buflen: size of the buffer to be filled
311 * @toclose: pointer to '\0'-terminated C string containing the name
312 * of a listener to be closed
313 *
314 * Fills in @buf with a '\n'-separated list of names of listener
315 * sockets. If @toclose is not NULL, the socket named by @toclose
316 * is closed, and is not included in the output list.
317 *
318 * Returns positive length of the socket name string, or a negative
319 * errno value on error.
320 */
321int svc_sock_names(struct svc_serv *serv, char *buf, const size_t buflen,
322 const char *toclose)
NeilBrown80212d52006-10-02 02:17:47 -0700323{
NeilBrownb41b66d2006-10-02 02:17:48 -0700324 struct svc_sock *svsk, *closesk = NULL;
NeilBrown80212d52006-10-02 02:17:47 -0700325 int len = 0;
326
327 if (!serv)
328 return 0;
Chuck Levere7942b92009-04-23 19:32:48 -0400329
NeilBrownaaf68cf2007-02-08 14:20:30 -0800330 spin_lock_bh(&serv->sv_lock);
Tom Tucker7a182082007-12-30 21:07:53 -0600331 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list) {
Chuck Levere7942b92009-04-23 19:32:48 -0400332 int onelen = svc_one_sock_name(svsk, buf + len, buflen - len);
333 if (onelen < 0) {
334 len = onelen;
335 break;
336 }
NeilBrown39423022010-11-15 11:27:01 +1100337 if (toclose && strcmp(toclose, buf + len) == 0) {
NeilBrownb41b66d2006-10-02 02:17:48 -0700338 closesk = svsk;
NeilBrown39423022010-11-15 11:27:01 +1100339 svc_xprt_get(&closesk->sk_xprt);
340 } else
NeilBrownb41b66d2006-10-02 02:17:48 -0700341 len += onelen;
NeilBrown80212d52006-10-02 02:17:47 -0700342 }
NeilBrownaaf68cf2007-02-08 14:20:30 -0800343 spin_unlock_bh(&serv->sv_lock);
Chuck Levere7942b92009-04-23 19:32:48 -0400344
NeilBrown39423022010-11-15 11:27:01 +1100345 if (closesk) {
NeilBrown5680c442006-10-04 02:15:45 -0700346 /* Should unregister with portmap, but you cannot
347 * unregister just one protocol...
348 */
Tom Tucker7a182082007-12-30 21:07:53 -0600349 svc_close_xprt(&closesk->sk_xprt);
NeilBrown39423022010-11-15 11:27:01 +1100350 svc_xprt_put(&closesk->sk_xprt);
351 } else if (toclose)
NeilBrown37a03472006-10-04 02:15:44 -0700352 return -ENOENT;
NeilBrown80212d52006-10-02 02:17:47 -0700353 return len;
354}
Trond Myklebust24c37672008-12-23 16:30:12 -0500355EXPORT_SYMBOL_GPL(svc_sock_names);
NeilBrown80212d52006-10-02 02:17:47 -0700356
357/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 * Check input queue length
359 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600360static int svc_recv_available(struct svc_sock *svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 struct socket *sock = svsk->sk_sock;
363 int avail, err;
364
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700365 err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 return (err >= 0)? avail : err;
368}
369
370/*
371 * Generic recvfrom routine.
372 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600373static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr,
374 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600376 struct svc_sock *svsk =
377 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Chuck Lever1ba95102007-02-12 00:53:31 -0800378 struct msghdr msg = {
379 .msg_flags = MSG_DONTWAIT,
380 };
381 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Tom Tucker260c1d12007-12-30 21:08:29 -0600383 rqstp->rq_xprt_hlen = 0;
384
Chuck Lever1ba95102007-02-12 00:53:31 -0800385 len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen,
386 msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n",
Chuck Lever1ba95102007-02-12 00:53:31 -0800389 svsk, iov[0].iov_base, iov[0].iov_len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return len;
391}
392
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800393static int svc_partial_recvfrom(struct svc_rqst *rqstp,
394 struct kvec *iov, int nr,
395 int buflen, unsigned int base)
396{
397 size_t save_iovlen;
398 void __user *save_iovbase;
399 unsigned int i;
400 int ret;
401
402 if (base == 0)
403 return svc_recvfrom(rqstp, iov, nr, buflen);
404
405 for (i = 0; i < nr; i++) {
406 if (iov[i].iov_len > base)
407 break;
408 base -= iov[i].iov_len;
409 }
410 save_iovlen = iov[i].iov_len;
411 save_iovbase = iov[i].iov_base;
412 iov[i].iov_len -= base;
413 iov[i].iov_base += base;
414 ret = svc_recvfrom(rqstp, &iov[i], nr - i, buflen);
415 iov[i].iov_len = save_iovlen;
416 iov[i].iov_base = save_iovbase;
417 return ret;
418}
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/*
421 * Set socket snd and rcv buffer lengths
422 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600423static void svc_sock_setbufsize(struct socket *sock, unsigned int snd,
424 unsigned int rcv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
426#if 0
427 mm_segment_t oldfs;
428 oldfs = get_fs(); set_fs(KERNEL_DS);
429 sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF,
430 (char*)&snd, sizeof(snd));
431 sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF,
432 (char*)&rcv, sizeof(rcv));
433#else
434 /* sock_setsockopt limits use to sysctl_?mem_max,
435 * which isn't acceptable. Until that is made conditional
436 * on not having CAP_SYS_RESOURCE or similar, we go direct...
437 * DaveM said I could!
438 */
439 lock_sock(sock->sk);
440 sock->sk->sk_sndbuf = snd * 2;
441 sock->sk->sk_rcvbuf = rcv * 2;
Trond Myklebust47fcb032009-05-18 17:47:56 -0400442 sock->sk->sk_write_space(sock->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 release_sock(sock->sk);
444#endif
445}
446/*
447 * INET callback when data has been received on the socket.
448 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600449static void svc_udp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Neil Brown939bb7e2005-09-13 01:25:39 -0700451 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000452 wait_queue_head_t *wq = sk_sleep(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Neil Brown939bb7e2005-09-13 01:25:39 -0700454 if (svsk) {
455 dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600456 svsk, sk, count,
457 test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
458 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600459 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700460 }
Eric Dumazeteaefd112011-02-18 03:26:36 +0000461 if (wq && waitqueue_active(wq))
462 wake_up_interruptible(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
465/*
466 * INET callback when space is newly available on the socket.
467 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600468static void svc_write_space(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
Eric Dumazeteaefd112011-02-18 03:26:36 +0000471 wait_queue_head_t *wq = sk_sleep(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 if (svsk) {
474 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600475 svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
Tom Tuckerf6150c32007-12-30 21:07:57 -0600476 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478
Eric Dumazeteaefd112011-02-18 03:26:36 +0000479 if (wq && waitqueue_active(wq)) {
Neil Brown939bb7e2005-09-13 01:25:39 -0700480 dprintk("RPC svc_write_space: someone sleeping on %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 svsk);
Eric Dumazeteaefd112011-02-18 03:26:36 +0000482 wake_up_interruptible(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484}
485
Trond Myklebust47fcb032009-05-18 17:47:56 -0400486static void svc_tcp_write_space(struct sock *sk)
487{
488 struct socket *sock = sk->sk_socket;
489
490 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk) && sock)
491 clear_bit(SOCK_NOSPACE, &sock->flags);
492 svc_write_space(sk);
493}
494
Tom Tucker9dbc2402007-12-30 21:08:12 -0600495/*
Chuck Lever7702ce42009-07-13 10:54:26 -0400496 * See net/ipv6/ip_sockglue.c : ip_cmsg_recv_pktinfo
497 */
498static int svc_udp_get_dest_address4(struct svc_rqst *rqstp,
499 struct cmsghdr *cmh)
500{
501 struct in_pktinfo *pki = CMSG_DATA(cmh);
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800502 struct sockaddr_in *daddr = svc_daddr_in(rqstp);
503
Chuck Lever7702ce42009-07-13 10:54:26 -0400504 if (cmh->cmsg_type != IP_PKTINFO)
505 return 0;
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800506
507 daddr->sin_family = AF_INET;
508 daddr->sin_addr.s_addr = pki->ipi_spec_dst.s_addr;
Chuck Lever7702ce42009-07-13 10:54:26 -0400509 return 1;
510}
511
512/*
513 * See net/ipv6/datagram.c : datagram_recv_ctl
514 */
515static int svc_udp_get_dest_address6(struct svc_rqst *rqstp,
516 struct cmsghdr *cmh)
517{
518 struct in6_pktinfo *pki = CMSG_DATA(cmh);
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800519 struct sockaddr_in6 *daddr = svc_daddr_in6(rqstp);
520
Chuck Lever7702ce42009-07-13 10:54:26 -0400521 if (cmh->cmsg_type != IPV6_PKTINFO)
522 return 0;
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800523
524 daddr->sin6_family = AF_INET6;
525 ipv6_addr_copy(&daddr->sin6_addr, &pki->ipi6_addr);
526 daddr->sin6_scope_id = pki->ipi6_ifindex;
Chuck Lever7702ce42009-07-13 10:54:26 -0400527 return 1;
528}
529
530/*
Tom Tucker9dbc2402007-12-30 21:08:12 -0600531 * Copy the UDP datagram's destination address to the rqstp structure.
532 * The 'destination' address in this case is the address to which the
533 * peer sent the datagram, i.e. our local address. For multihomed
534 * hosts, this can change from msg to msg. Note that only the IP
535 * address changes, the port number should remain the same.
536 */
Chuck Lever7702ce42009-07-13 10:54:26 -0400537static int svc_udp_get_dest_address(struct svc_rqst *rqstp,
538 struct cmsghdr *cmh)
Chuck Lever95756482007-02-12 00:53:38 -0800539{
Chuck Lever7702ce42009-07-13 10:54:26 -0400540 switch (cmh->cmsg_level) {
541 case SOL_IP:
542 return svc_udp_get_dest_address4(rqstp, cmh);
543 case SOL_IPV6:
544 return svc_udp_get_dest_address6(rqstp, cmh);
Chuck Lever95756482007-02-12 00:53:38 -0800545 }
Chuck Lever7702ce42009-07-13 10:54:26 -0400546
547 return 0;
Chuck Lever95756482007-02-12 00:53:38 -0800548}
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550/*
551 * Receive a datagram from a UDP socket.
552 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600553static int svc_udp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600555 struct svc_sock *svsk =
556 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600557 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct sk_buff *skb;
David S. Millerbc375ea2007-04-12 13:35:59 -0700559 union {
560 struct cmsghdr hdr;
561 long all[SVC_PKTINFO_SPACE / sizeof(long)];
562 } buffer;
563 struct cmsghdr *cmh = &buffer.hdr;
NeilBrown7a37f572007-03-06 01:42:21 -0800564 struct msghdr msg = {
565 .msg_name = svc_addr(rqstp),
566 .msg_control = cmh,
567 .msg_controllen = sizeof(buffer),
568 .msg_flags = MSG_DONTWAIT,
569 };
Chuck Leverabc5c442009-04-23 19:31:25 -0400570 size_t len;
571 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Tom Tucker02fc6c32007-12-30 21:07:48 -0600573 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 /* udp sockets need large rcvbuf as all pending
575 * requests are still in that buffer. sndbuf must
576 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700577 * for one reply per thread. We count all threads
578 * rather than threads in a particular pool, which
579 * provides an upper bound on the number of threads
580 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 */
582 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700583 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
584 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Tom Tucker02fc6c32007-12-30 21:07:48 -0600586 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
NeilBrown05ed6902007-05-09 02:34:55 -0700587 skb = NULL;
588 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
589 0, 0, MSG_PEEK | MSG_DONTWAIT);
590 if (err >= 0)
591 skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err);
592
593 if (skb == NULL) {
594 if (err != -EAGAIN) {
595 /* possibly an icmp error */
596 dprintk("svc: recvfrom returned error %d\n", -err);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600597 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
NeilBrown05ed6902007-05-09 02:34:55 -0700599 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600601 len = svc_addr_len(svc_addr(rqstp));
Chuck Leverabc5c442009-04-23 19:31:25 -0400602 if (len == 0)
603 return -EAFNOSUPPORT;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600604 rqstp->rq_addrlen = len;
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700605 if (skb->tstamp.tv64 == 0) {
606 skb->tstamp = ktime_get_real();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800607 /* Don't enable netstamp, sunrpc doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 need that much accuracy */
609 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700610 svsk->sk_sk->sk_stamp = skb->tstamp;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600611 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); /* there may be more data... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 len = skb->len - sizeof(struct udphdr);
614 rqstp->rq_arg.len = len;
615
Chuck Lever95756482007-02-12 00:53:38 -0800616 rqstp->rq_prot = IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Chuck Lever7702ce42009-07-13 10:54:26 -0400618 if (!svc_udp_get_dest_address(rqstp, cmh)) {
NeilBrown7a37f572007-03-06 01:42:21 -0800619 if (net_ratelimit())
Chuck Lever7702ce42009-07-13 10:54:26 -0400620 printk(KERN_WARNING
621 "svc: received unknown control message %d/%d; "
622 "dropping RPC reply datagram\n",
623 cmh->cmsg_level, cmh->cmsg_type);
Eric Dumazet9d410c72009-10-30 05:03:53 +0000624 skb_free_datagram_locked(svsk->sk_sk, skb);
NeilBrown7a37f572007-03-06 01:42:21 -0800625 return 0;
626 }
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800627 rqstp->rq_daddrlen = svc_addr_len(svc_daddr(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 if (skb_is_nonlinear(skb)) {
630 /* we have to copy */
631 local_bh_disable();
632 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
633 local_bh_enable();
634 /* checksum error */
Eric Dumazet9d410c72009-10-30 05:03:53 +0000635 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return 0;
637 }
638 local_bh_enable();
Eric Dumazet9d410c72009-10-30 05:03:53 +0000639 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 } else {
641 /* we can use it in-place */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600642 rqstp->rq_arg.head[0].iov_base = skb->data +
643 sizeof(struct udphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 rqstp->rq_arg.head[0].iov_len = len;
Herbert Xufb286bb2005-11-10 13:01:24 -0800645 if (skb_checksum_complete(skb)) {
Eric Dumazet9d410c72009-10-30 05:03:53 +0000646 skb_free_datagram_locked(svsk->sk_sk, skb);
Herbert Xufb286bb2005-11-10 13:01:24 -0800647 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
Tom Tucker5148bf42007-12-30 21:07:25 -0600649 rqstp->rq_xprt_ctxt = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
651
652 rqstp->rq_arg.page_base = 0;
653 if (len <= rqstp->rq_arg.head[0].iov_len) {
654 rqstp->rq_arg.head[0].iov_len = len;
655 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700656 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 } else {
658 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700659 rqstp->rq_respages = rqstp->rq_pages + 1 +
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700660 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
662
663 if (serv->sv_stats)
664 serv->sv_stats->netudpcnt++;
665
666 return len;
667}
668
669static int
670svc_udp_sendto(struct svc_rqst *rqstp)
671{
672 int error;
673
674 error = svc_sendto(rqstp, &rqstp->rq_res);
675 if (error == -ECONNREFUSED)
676 /* ICMP error on earlier request. */
677 error = svc_sendto(rqstp, &rqstp->rq_res);
678
679 return error;
680}
681
Tom Tuckere831fe62007-12-30 21:07:29 -0600682static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp)
683{
684}
685
Tom Tucker323bee32007-12-30 21:07:31 -0600686static int svc_udp_has_wspace(struct svc_xprt *xprt)
687{
688 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600689 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600690 unsigned long required;
691
692 /*
693 * Set the SOCK_NOSPACE flag before checking the available
694 * sock space.
695 */
696 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600697 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600698 if (required*2 > sock_wspace(svsk->sk_sk))
699 return 0;
700 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
701 return 1;
702}
703
Tom Tucker38a417c2007-12-30 21:07:36 -0600704static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt)
705{
706 BUG();
707 return NULL;
708}
709
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600710static struct svc_xprt *svc_udp_create(struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400711 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600712 struct sockaddr *sa, int salen,
713 int flags)
714{
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400715 return svc_create_socket(serv, IPPROTO_UDP, net, sa, salen, flags);
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600716}
717
Tom Tucker360d8732007-12-30 21:07:17 -0600718static struct svc_xprt_ops svc_udp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600719 .xpo_create = svc_udp_create,
Tom Tucker5d137992007-12-30 21:07:23 -0600720 .xpo_recvfrom = svc_udp_recvfrom,
721 .xpo_sendto = svc_udp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -0600722 .xpo_release_rqst = svc_release_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -0600723 .xpo_detach = svc_sock_detach,
724 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -0600725 .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -0600726 .xpo_has_wspace = svc_udp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -0600727 .xpo_accept = svc_udp_accept,
Tom Tucker360d8732007-12-30 21:07:17 -0600728};
729
730static struct svc_xprt_class svc_udp_class = {
731 .xcl_name = "udp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600732 .xcl_owner = THIS_MODULE,
Tom Tucker360d8732007-12-30 21:07:17 -0600733 .xcl_ops = &svc_udp_ops,
Tom Tucker49023152007-12-30 21:07:21 -0600734 .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP,
Tom Tucker360d8732007-12-30 21:07:17 -0600735};
736
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600737static void svc_udp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Chuck Lever7702ce42009-07-13 10:54:26 -0400739 int err, level, optname, one = 1;
NeilBrown7a37f572007-03-06 01:42:21 -0800740
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600741 svc_xprt_init(&svc_udp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600742 clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 svsk->sk_sk->sk_data_ready = svc_udp_data_ready;
744 svsk->sk_sk->sk_write_space = svc_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800747 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 * svc_udp_recvfrom will re-adjust if necessary
749 */
750 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600751 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
752 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Tom Tucker0f0257e2007-12-30 21:08:27 -0600754 /* data might have come in before data_ready set up */
755 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600756 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
NeilBrown7a37f572007-03-06 01:42:21 -0800757
NeilBrown7a37f572007-03-06 01:42:21 -0800758 /* make sure we get destination address info */
Chuck Lever7702ce42009-07-13 10:54:26 -0400759 switch (svsk->sk_sk->sk_family) {
760 case AF_INET:
761 level = SOL_IP;
762 optname = IP_PKTINFO;
763 break;
764 case AF_INET6:
765 level = SOL_IPV6;
766 optname = IPV6_RECVPKTINFO;
767 break;
768 default:
769 BUG();
770 }
771 err = kernel_setsockopt(svsk->sk_sock, level, optname,
772 (char *)&one, sizeof(one));
773 dprintk("svc: kernel_setsockopt returned %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
775
776/*
777 * A data_ready event on a listening socket means there's a connection
778 * pending. Do not use state_change as a substitute for it.
779 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600780static void svc_tcp_listen_data_ready(struct sock *sk, int count_unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Neil Brown939bb7e2005-09-13 01:25:39 -0700782 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000783 wait_queue_head_t *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700786 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Neil Brown939bb7e2005-09-13 01:25:39 -0700788 /*
789 * This callback may called twice when a new connection
790 * is established as a child socket inherits everything
791 * from a parent LISTEN socket.
792 * 1) data_ready method of the parent socket will be called
793 * when one of child sockets become ESTABLISHED.
794 * 2) data_ready method of the child socket may be called
795 * when it receives data before the socket is accepted.
796 * In case of 2, we should ignore it silently.
797 */
798 if (sk->sk_state == TCP_LISTEN) {
799 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600800 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600801 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700802 } else
803 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
Neil Brown939bb7e2005-09-13 01:25:39 -0700805
Eric Dumazeteaefd112011-02-18 03:26:36 +0000806 wq = sk_sleep(sk);
807 if (wq && waitqueue_active(wq))
808 wake_up_interruptible_all(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
811/*
812 * A state change on a connected socket means it's dying or dead.
813 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600814static void svc_tcp_state_change(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Neil Brown939bb7e2005-09-13 01:25:39 -0700816 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000817 wait_queue_head_t *wq = sk_sleep(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700820 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Neil Brown939bb7e2005-09-13 01:25:39 -0700822 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700824 else {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600825 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600826 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
Eric Dumazeteaefd112011-02-18 03:26:36 +0000828 if (wq && waitqueue_active(wq))
829 wake_up_interruptible_all(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
Tom Tucker0f0257e2007-12-30 21:08:27 -0600832static void svc_tcp_data_ready(struct sock *sk, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Neil Brown939bb7e2005-09-13 01:25:39 -0700834 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Eric Dumazeteaefd112011-02-18 03:26:36 +0000835 wait_queue_head_t *wq = sk_sleep(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 dprintk("svc: socket %p TCP data ready (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700838 sk, sk->sk_user_data);
839 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600840 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600841 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700842 }
Eric Dumazeteaefd112011-02-18 03:26:36 +0000843 if (wq && waitqueue_active(wq))
844 wake_up_interruptible(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846
847/*
848 * Accept a TCP connection
849 */
Tom Tucker38a417c2007-12-30 21:07:36 -0600850static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
Tom Tucker38a417c2007-12-30 21:07:36 -0600852 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800853 struct sockaddr_storage addr;
854 struct sockaddr *sin = (struct sockaddr *) &addr;
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600855 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 struct socket *sock = svsk->sk_sock;
857 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 struct svc_sock *newsvsk;
859 int err, slen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300860 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
863 if (!sock)
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 clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700867 err = kernel_accept(sock, &newsock, O_NONBLOCK);
868 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (err == -ENOMEM)
870 printk(KERN_WARNING "%s: no more sockets!\n",
871 serv->sv_name);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700872 else if (err != -EAGAIN && net_ratelimit())
873 printk(KERN_WARNING "%s: accept failed (err %d)!\n",
874 serv->sv_name, -err);
Tom Tucker38a417c2007-12-30 21:07:36 -0600875 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
Tom Tucker02fc6c32007-12-30 21:07:48 -0600877 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800879 err = kernel_getpeername(newsock, sin, &slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (err < 0) {
881 if (net_ratelimit())
882 printk(KERN_WARNING "%s: peername failed (err %d)!\n",
883 serv->sv_name, -err);
884 goto failed; /* aborted connection or whatever */
885 }
886
887 /* Ideally, we would want to reject connections from unauthorized
Chuck Leverad06e4b2007-02-12 00:53:32 -0800888 * hosts here, but when we get encryption, the IP of the host won't
889 * tell us anything. For now just warn about unpriv connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 */
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800891 if (!svc_port_is_privileged(sin)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 dprintk(KERN_WARNING
Chuck Leverad06e4b2007-02-12 00:53:32 -0800893 "%s: connect from unprivileged port: %s\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800894 serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800895 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
Chuck Leverad06e4b2007-02-12 00:53:32 -0800897 dprintk("%s: connect from %s\n", serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800898 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 /* make sure that a write doesn't block forever when
901 * low on memory
902 */
903 newsock->sk->sk_sndtimeo = HZ*30;
904
Chuck Lever6b174332007-02-12 00:53:28 -0800905 if (!(newsvsk = svc_setup_socket(serv, newsock, &err,
906 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 goto failed;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600908 svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen);
Frank van Maarseveena9747692007-07-09 22:21:39 +0200909 err = kernel_getsockname(newsock, sin, &slen);
910 if (unlikely(err < 0)) {
911 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
912 slen = offsetof(struct sockaddr, sa_data);
913 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600914 svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -0800915
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600916 if (serv->sv_stats)
917 serv->sv_stats->nettcpconn++;
918
919 return &newsvsk->sk_xprt;
920
921failed:
922 sock_release(newsock);
923 return NULL;
924}
925
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800926static unsigned int svc_tcp_restore_pages(struct svc_sock *svsk, struct svc_rqst *rqstp)
927{
928 unsigned int i, len, npages;
929
930 if (svsk->sk_tcplen <= sizeof(rpc_fraghdr))
931 return 0;
932 len = svsk->sk_tcplen - sizeof(rpc_fraghdr);
933 npages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
934 for (i = 0; i < npages; i++) {
935 if (rqstp->rq_pages[i] != NULL)
936 put_page(rqstp->rq_pages[i]);
937 BUG_ON(svsk->sk_pages[i] == NULL);
938 rqstp->rq_pages[i] = svsk->sk_pages[i];
939 svsk->sk_pages[i] = NULL;
940 }
941 rqstp->rq_arg.head[0].iov_base = page_address(rqstp->rq_pages[0]);
942 return len;
943}
944
945static void svc_tcp_save_pages(struct svc_sock *svsk, struct svc_rqst *rqstp)
946{
947 unsigned int i, len, npages;
948
949 if (svsk->sk_tcplen <= sizeof(rpc_fraghdr))
950 return;
951 len = svsk->sk_tcplen - sizeof(rpc_fraghdr);
952 npages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
953 for (i = 0; i < npages; i++) {
954 svsk->sk_pages[i] = rqstp->rq_pages[i];
955 rqstp->rq_pages[i] = NULL;
956 }
957}
958
959static void svc_tcp_clear_pages(struct svc_sock *svsk)
960{
961 unsigned int i, len, npages;
962
963 if (svsk->sk_tcplen <= sizeof(rpc_fraghdr))
964 goto out;
965 len = svsk->sk_tcplen - sizeof(rpc_fraghdr);
966 npages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
967 for (i = 0; i < npages; i++) {
968 BUG_ON(svsk->sk_pages[i] == NULL);
969 put_page(svsk->sk_pages[i]);
970 svsk->sk_pages[i] = NULL;
971 }
972out:
973 svsk->sk_tcplen = 0;
974}
975
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600976/*
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300977 * Receive data.
978 * If we haven't gotten the record length yet, get the next four bytes.
979 * Otherwise try to gobble up as much as possible up to the complete
980 * record length.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 */
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300982static int svc_tcp_recv_record(struct svc_sock *svsk, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600984 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Trond Myklebust5ee78d42009-05-18 17:47:56 -0400985 unsigned int want;
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300986 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Tom Tucker02fc6c32007-12-30 21:07:48 -0600988 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Chuck Leverc0401ea2008-04-14 12:27:30 -0400990 if (svsk->sk_tcplen < sizeof(rpc_fraghdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 struct kvec iov;
992
Trond Myklebust5ee78d42009-05-18 17:47:56 -0400993 want = sizeof(rpc_fraghdr) - svsk->sk_tcplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
995 iov.iov_len = want;
996 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
997 goto error;
998 svsk->sk_tcplen += len;
999
1000 if (len < want) {
Chuck Leverc0401ea2008-04-14 12:27:30 -04001001 dprintk("svc: short recvfrom while reading record "
1002 "length (%d of %d)\n", len, want);
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001003 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
1005
1006 svsk->sk_reclen = ntohl(svsk->sk_reclen);
Chuck Leverc0401ea2008-04-14 12:27:30 -04001007 if (!(svsk->sk_reclen & RPC_LAST_STREAM_FRAGMENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 /* FIXME: technically, a record can be fragmented,
1009 * and non-terminal fragments will not have the top
1010 * bit set in the fragment length header.
1011 * But apparently no known nfs clients send fragmented
1012 * records. */
NeilBrown34e9a632007-01-29 13:19:52 -08001013 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -04001014 printk(KERN_NOTICE "RPC: multiple fragments "
1015 "per record not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 goto err_delete;
1017 }
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001018
Chuck Leverc0401ea2008-04-14 12:27:30 -04001019 svsk->sk_reclen &= RPC_FRAGMENT_SIZE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen);
NeilBrownc6b0a9f2006-10-06 00:44:05 -07001021 if (svsk->sk_reclen > serv->sv_max_mesg) {
NeilBrown34e9a632007-01-29 13:19:52 -08001022 if (net_ratelimit())
Chuck Leverc0401ea2008-04-14 12:27:30 -04001023 printk(KERN_NOTICE "RPC: "
1024 "fragment too large: 0x%08lx\n",
1025 (unsigned long)svsk->sk_reclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 goto err_delete;
1027 }
1028 }
1029
J. Bruce Fieldscc6c2122011-02-14 15:03:35 -05001030 if (svsk->sk_reclen < 8)
1031 goto err_delete; /* client is nuts. */
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 len = svsk->sk_reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001035 return len;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001036error:
1037 dprintk("RPC: TCP recv_record got %d\n", len);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001038 return len;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001039err_delete:
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001040 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001041 return -EAGAIN;
1042}
1043
Trond Myklebust586c52c2009-05-18 17:47:56 -04001044static int receive_cb_reply(struct svc_sock *svsk, struct svc_rqst *rqstp)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001045{
Trond Myklebust586c52c2009-05-18 17:47:56 -04001046 struct rpc_xprt *bc_xprt = svsk->sk_xprt.xpt_bc_xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001047 struct rpc_rqst *req = NULL;
Trond Myklebust586c52c2009-05-18 17:47:56 -04001048 struct kvec *src, *dst;
1049 __be32 *p = (__be32 *)rqstp->rq_arg.head[0].iov_base;
J. Bruce Fields48e65552011-02-14 14:52:03 -05001050 __be32 xid;
1051 __be32 calldir;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001052
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001053 xid = *p++;
1054 calldir = *p;
1055
Trond Myklebust586c52c2009-05-18 17:47:56 -04001056 if (bc_xprt)
1057 req = xprt_lookup_rqst(bc_xprt, xid);
J. Bruce Fieldsd75faea2010-11-30 19:15:01 -05001058
Trond Myklebust586c52c2009-05-18 17:47:56 -04001059 if (!req) {
1060 printk(KERN_NOTICE
1061 "%s: Got unrecognized reply: "
1062 "calldir 0x%x xpt_bc_xprt %p xid %08x\n",
1063 __func__, ntohl(calldir),
1064 bc_xprt, xid);
1065 return -EAGAIN;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001066 }
Trond Myklebust586c52c2009-05-18 17:47:56 -04001067
1068 memcpy(&req->rq_private_buf, &req->rq_rcv_buf, sizeof(struct xdr_buf));
1069 /*
1070 * XXX!: cheating for now! Only copying HEAD.
1071 * But we know this is good enough for now (in fact, for any
1072 * callback reply in the forseeable future).
1073 */
1074 dst = &req->rq_private_buf.head[0];
1075 src = &rqstp->rq_arg.head[0];
1076 if (dst->iov_len < src->iov_len)
1077 return -EAGAIN; /* whatever; just giving up. */
1078 memcpy(dst->iov_base, src->iov_base, src->iov_len);
1079 xprt_complete_rqst(req->rq_task, svsk->sk_reclen);
1080 rqstp->rq_arg.len = 0;
1081 return 0;
1082}
1083
1084static int copy_pages_to_kvecs(struct kvec *vec, struct page **pages, int len)
1085{
1086 int i = 0;
1087 int t = 0;
1088
1089 while (t < len) {
1090 vec[i].iov_base = page_address(pages[i]);
1091 vec[i].iov_len = PAGE_SIZE;
1092 i++;
1093 t += PAGE_SIZE;
1094 }
1095 return i;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001096}
1097
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001098
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001099/*
1100 * Receive data from a TCP socket.
1101 */
1102static int svc_tcp_recvfrom(struct svc_rqst *rqstp)
1103{
1104 struct svc_sock *svsk =
1105 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
1106 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
1107 int len;
1108 struct kvec *vec;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001109 unsigned int want, base;
Trond Myklebust586c52c2009-05-18 17:47:56 -04001110 __be32 *p;
1111 __be32 calldir;
Trond Myklebust5ee78d42009-05-18 17:47:56 -04001112 int pnum;
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001113
1114 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
1115 svsk, test_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags),
1116 test_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags),
1117 test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags));
1118
1119 len = svc_tcp_recv_record(svsk, rqstp);
1120 if (len < 0)
1121 goto error;
1122
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001123 base = svc_tcp_restore_pages(svsk, rqstp);
1124 want = svsk->sk_reclen - base;
1125
NeilBrown3cc03b12006-10-04 02:15:47 -07001126 vec = rqstp->rq_vec;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001127
Trond Myklebust586c52c2009-05-18 17:47:56 -04001128 pnum = copy_pages_to_kvecs(&vec[0], &rqstp->rq_pages[0],
1129 svsk->sk_reclen);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001130
NeilBrown44524352006-10-04 02:15:46 -07001131 rqstp->rq_respages = &rqstp->rq_pages[pnum];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133 /* Now receive data */
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001134 len = svc_partial_recvfrom(rqstp, vec, pnum, want, base);
1135 if (len >= 0)
1136 svsk->sk_tcplen += len;
1137 if (len != want) {
1138 if (len < 0 && len != -EAGAIN)
1139 goto err_other;
1140 svc_tcp_save_pages(svsk, rqstp);
1141 dprintk("svc: incomplete TCP record (%d of %d)\n",
1142 svsk->sk_tcplen, svsk->sk_reclen);
1143 goto err_noclose;
1144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Trond Myklebust5ee78d42009-05-18 17:47:56 -04001146 rqstp->rq_arg.len = svsk->sk_reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 rqstp->rq_arg.page_base = 0;
Trond Myklebust5ee78d42009-05-18 17:47:56 -04001148 if (rqstp->rq_arg.len <= rqstp->rq_arg.head[0].iov_len) {
1149 rqstp->rq_arg.head[0].iov_len = rqstp->rq_arg.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 rqstp->rq_arg.page_len = 0;
Trond Myklebust5ee78d42009-05-18 17:47:56 -04001151 } else
1152 rqstp->rq_arg.page_len = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Tom Tucker5148bf42007-12-30 21:07:25 -06001154 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 rqstp->rq_prot = IPPROTO_TCP;
1156
Trond Myklebust586c52c2009-05-18 17:47:56 -04001157 p = (__be32 *)rqstp->rq_arg.head[0].iov_base;
1158 calldir = p[1];
J. Bruce Fields8985ef02011-04-09 10:03:10 -04001159 if (calldir)
Trond Myklebust586c52c2009-05-18 17:47:56 -04001160 len = receive_cb_reply(svsk, rqstp);
Trond Myklebust586c52c2009-05-18 17:47:56 -04001161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 /* Reset TCP read info */
1163 svsk->sk_reclen = 0;
1164 svsk->sk_tcplen = 0;
Trond Myklebust0601f792009-05-18 17:47:56 -04001165 /* If we have more data, signal svc_xprt_enqueue() to try again */
1166 if (svc_recv_available(svsk) > sizeof(rpc_fraghdr))
1167 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
1168
J. Bruce Fields8985ef02011-04-09 10:03:10 -04001169 if (len < 0)
1170 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Tom Tucker9dbc2402007-12-30 21:08:12 -06001172 svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if (serv->sv_stats)
1174 serv->sv_stats->nettcpcnt++;
1175
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001176 dprintk("svc: TCP complete record (%d bytes)\n", rqstp->rq_arg.len);
Trond Myklebust5ee78d42009-05-18 17:47:56 -04001177 return rqstp->rq_arg.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001179error:
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001180 if (len != -EAGAIN)
1181 goto err_other;
1182 dprintk("RPC: TCP recvfrom got EAGAIN\n");
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001183 return -EAGAIN;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001184err_other:
1185 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
1186 svsk->sk_xprt.xpt_server->sv_name, -len);
1187 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
1188err_noclose:
1189 return -EAGAIN; /* record not complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
1192/*
1193 * Send out data on TCP socket.
1194 */
Tom Tucker0f0257e2007-12-30 21:08:27 -06001195static int svc_tcp_sendto(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
1197 struct xdr_buf *xbufp = &rqstp->rq_res;
1198 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001199 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 /* Set up the first element of the reply kvec.
1202 * Any other kvecs that may be in use have been taken
1203 * care of by the server implementation itself.
1204 */
1205 reclen = htonl(0x80000000|((xbufp->len ) - 4));
1206 memcpy(xbufp->head[0].iov_base, &reclen, 4);
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 sent = svc_sendto(rqstp, &rqstp->rq_res);
1209 if (sent != xbufp->len) {
Tom Tucker0f0257e2007-12-30 21:08:27 -06001210 printk(KERN_NOTICE
1211 "rpc-srv/tcp: %s: %s %d when sending %d bytes "
1212 "- shutting down socket\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001213 rqstp->rq_xprt->xpt_server->sv_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 (sent<0)?"got error":"sent only",
1215 sent, xbufp->len);
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001216 set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -06001217 svc_xprt_enqueue(rqstp->rq_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 sent = -EAGAIN;
1219 }
1220 return sent;
1221}
1222
Tom Tuckere831fe62007-12-30 21:07:29 -06001223/*
1224 * Setup response header. TCP has a 4B record length field.
1225 */
1226static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp)
1227{
1228 struct kvec *resv = &rqstp->rq_res.head[0];
1229
1230 /* tcp needs a space for the record length... */
1231 svc_putnl(resv, 0);
1232}
1233
Tom Tucker323bee32007-12-30 21:07:31 -06001234static int svc_tcp_has_wspace(struct svc_xprt *xprt)
1235{
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001236 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Trond Myklebust47fcb032009-05-18 17:47:56 -04001237 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -06001238 int required;
Tom Tucker323bee32007-12-30 21:07:31 -06001239
Trond Myklebust47fcb032009-05-18 17:47:56 -04001240 if (test_bit(XPT_LISTENER, &xprt->xpt_flags))
1241 return 1;
1242 required = atomic_read(&xprt->xpt_reserved) + serv->sv_max_mesg;
1243 if (sk_stream_wspace(svsk->sk_sk) >= required)
1244 return 1;
Tom Tucker323bee32007-12-30 21:07:31 -06001245 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Trond Myklebust47fcb032009-05-18 17:47:56 -04001246 return 0;
Tom Tucker323bee32007-12-30 21:07:31 -06001247}
1248
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001249static struct svc_xprt *svc_tcp_create(struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001250 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001251 struct sockaddr *sa, int salen,
1252 int flags)
1253{
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001254 return svc_create_socket(serv, IPPROTO_TCP, net, sa, salen, flags);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001255}
1256
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001257#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Andy Adamson1f11a032011-01-06 02:04:26 +00001258static struct svc_xprt *svc_bc_create_socket(struct svc_serv *, int,
1259 struct net *, struct sockaddr *,
1260 int, int);
1261static void svc_bc_sock_free(struct svc_xprt *xprt);
1262
1263static struct svc_xprt *svc_bc_tcp_create(struct svc_serv *serv,
1264 struct net *net,
1265 struct sockaddr *sa, int salen,
1266 int flags)
1267{
1268 return svc_bc_create_socket(serv, IPPROTO_TCP, net, sa, salen, flags);
1269}
1270
1271static void svc_bc_tcp_sock_detach(struct svc_xprt *xprt)
1272{
1273}
1274
1275static struct svc_xprt_ops svc_tcp_bc_ops = {
1276 .xpo_create = svc_bc_tcp_create,
1277 .xpo_detach = svc_bc_tcp_sock_detach,
1278 .xpo_free = svc_bc_sock_free,
1279 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
1280};
1281
1282static struct svc_xprt_class svc_tcp_bc_class = {
1283 .xcl_name = "tcp-bc",
1284 .xcl_owner = THIS_MODULE,
1285 .xcl_ops = &svc_tcp_bc_ops,
1286 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
1287};
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001288
1289static void svc_init_bc_xprt_sock(void)
1290{
1291 svc_reg_xprt_class(&svc_tcp_bc_class);
1292}
1293
1294static void svc_cleanup_bc_xprt_sock(void)
1295{
1296 svc_unreg_xprt_class(&svc_tcp_bc_class);
1297}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001298#else /* CONFIG_SUNRPC_BACKCHANNEL */
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001299static void svc_init_bc_xprt_sock(void)
1300{
1301}
1302
1303static void svc_cleanup_bc_xprt_sock(void)
1304{
1305}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001306#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Andy Adamson1f11a032011-01-06 02:04:26 +00001307
Tom Tucker360d8732007-12-30 21:07:17 -06001308static struct svc_xprt_ops svc_tcp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001309 .xpo_create = svc_tcp_create,
Tom Tucker5d137992007-12-30 21:07:23 -06001310 .xpo_recvfrom = svc_tcp_recvfrom,
1311 .xpo_sendto = svc_tcp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -06001312 .xpo_release_rqst = svc_release_skb,
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001313 .xpo_detach = svc_tcp_sock_detach,
Tom Tucker755ccea2007-12-30 21:07:27 -06001314 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -06001315 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -06001316 .xpo_has_wspace = svc_tcp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -06001317 .xpo_accept = svc_tcp_accept,
Tom Tucker360d8732007-12-30 21:07:17 -06001318};
1319
1320static struct svc_xprt_class svc_tcp_class = {
1321 .xcl_name = "tcp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001322 .xcl_owner = THIS_MODULE,
Tom Tucker360d8732007-12-30 21:07:17 -06001323 .xcl_ops = &svc_tcp_ops,
Tom Tucker49023152007-12-30 21:07:21 -06001324 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
Tom Tucker360d8732007-12-30 21:07:17 -06001325};
1326
1327void svc_init_xprt_sock(void)
1328{
1329 svc_reg_xprt_class(&svc_tcp_class);
1330 svc_reg_xprt_class(&svc_udp_class);
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001331 svc_init_bc_xprt_sock();
Tom Tucker360d8732007-12-30 21:07:17 -06001332}
1333
1334void svc_cleanup_xprt_sock(void)
1335{
1336 svc_unreg_xprt_class(&svc_tcp_class);
1337 svc_unreg_xprt_class(&svc_udp_class);
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001338 svc_cleanup_bc_xprt_sock();
Tom Tucker360d8732007-12-30 21:07:17 -06001339}
1340
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001341static void svc_tcp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342{
1343 struct sock *sk = svsk->sk_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001345 svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -06001346 set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 if (sk->sk_state == TCP_LISTEN) {
1348 dprintk("setting up TCP socket for listening\n");
Tom Tucker02fc6c32007-12-30 21:07:48 -06001349 set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 sk->sk_data_ready = svc_tcp_listen_data_ready;
Tom Tucker02fc6c32007-12-30 21:07:48 -06001351 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 } else {
1353 dprintk("setting up TCP socket for reading\n");
1354 sk->sk_state_change = svc_tcp_state_change;
1355 sk->sk_data_ready = svc_tcp_data_ready;
Trond Myklebust47fcb032009-05-18 17:47:56 -04001356 sk->sk_write_space = svc_tcp_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
1358 svsk->sk_reclen = 0;
1359 svsk->sk_tcplen = 0;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001360 memset(&svsk->sk_pages[0], 0, sizeof(svsk->sk_pages));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Chuck Leverb7872fe2008-04-14 12:27:01 -04001362 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Tom Tucker02fc6c32007-12-30 21:07:48 -06001364 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08001365 if (sk->sk_state != TCP_ESTABLISHED)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001366 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368}
1369
Tom Tucker0f0257e2007-12-30 21:08:27 -06001370void svc_sock_update_bufs(struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
1372 /*
1373 * The number of server threads has changed. Update
1374 * rcvbuf and sndbuf accordingly on all sockets
1375 */
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001376 struct svc_sock *svsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 spin_lock_bh(&serv->sv_lock);
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001379 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001380 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001381 list_for_each_entry(svsk, &serv->sv_tempsocks, sk_xprt.xpt_list)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001382 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 spin_unlock_bh(&serv->sv_lock);
1384}
Trond Myklebust24c37672008-12-23 16:30:12 -05001385EXPORT_SYMBOL_GPL(svc_sock_update_bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
1387/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 * Initialize socket for RPC use and create svc_sock struct
1389 * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF.
1390 */
Chuck Lever6b174332007-02-12 00:53:28 -08001391static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1392 struct socket *sock,
1393 int *errp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
1395 struct svc_sock *svsk;
1396 struct sock *inet;
Chuck Lever6b174332007-02-12 00:53:28 -08001397 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399 dprintk("svc: svc_setup_socket %p\n", sock);
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001400 if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 *errp = -ENOMEM;
1402 return NULL;
1403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 inet = sock->sk;
1406
1407 /* Register socket with portmapper */
1408 if (*errp >= 0 && pmap_register)
Chuck Leverbaf01ca2009-03-18 20:46:13 -04001409 *errp = svc_register(serv, inet->sk_family, inet->sk_protocol,
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001410 ntohs(inet_sk(inet)->inet_sport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 if (*errp < 0) {
1413 kfree(svsk);
1414 return NULL;
1415 }
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 inet->sk_user_data = svsk;
1418 svsk->sk_sock = sock;
1419 svsk->sk_sk = inet;
1420 svsk->sk_ostate = inet->sk_state_change;
1421 svsk->sk_odata = inet->sk_data_ready;
1422 svsk->sk_owspace = inet->sk_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424 /* Initialize the socket */
1425 if (sock->type == SOCK_DGRAM)
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001426 svc_udp_init(svsk, serv);
Olga Kornievskaia96604392008-10-21 14:13:47 -04001427 else {
1428 /* initialise setting must have enough space to
1429 * receive and respond to one request.
1430 */
1431 svc_sock_setbufsize(svsk->sk_sock, 4 * serv->sv_max_mesg,
1432 4 * serv->sv_max_mesg);
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001433 svc_tcp_init(svsk, serv);
Olga Kornievskaia96604392008-10-21 14:13:47 -04001434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 dprintk("svc: svc_setup_socket created %p (inet %p)\n",
1437 svsk, svsk->sk_sk);
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return svsk;
1440}
1441
Chuck Leverbfba9ab2009-04-23 19:32:33 -04001442/**
1443 * svc_addsock - add a listener socket to an RPC service
1444 * @serv: pointer to RPC service to which to add a new listener
1445 * @fd: file descriptor of the new listener
1446 * @name_return: pointer to buffer to fill in with name of listener
1447 * @len: size of the buffer
1448 *
1449 * Fills in socket name and returns positive length of name if successful.
1450 * Name is terminated with '\n'. On error, returns a negative errno
1451 * value.
1452 */
1453int svc_addsock(struct svc_serv *serv, const int fd, char *name_return,
1454 const size_t len)
NeilBrownb41b66d2006-10-02 02:17:48 -07001455{
1456 int err = 0;
1457 struct socket *so = sockfd_lookup(fd, &err);
1458 struct svc_sock *svsk = NULL;
1459
1460 if (!so)
1461 return err;
Aime Le Rouzic205ba422010-01-26 14:03:56 -05001462 if ((so->sk->sk_family != PF_INET) && (so->sk->sk_family != PF_INET6))
NeilBrownb41b66d2006-10-02 02:17:48 -07001463 err = -EAFNOSUPPORT;
1464 else if (so->sk->sk_protocol != IPPROTO_TCP &&
1465 so->sk->sk_protocol != IPPROTO_UDP)
1466 err = -EPROTONOSUPPORT;
1467 else if (so->state > SS_UNCONNECTED)
1468 err = -EISCONN;
1469 else {
Tom Tucker2da2c212008-11-23 09:58:08 -06001470 if (!try_module_get(THIS_MODULE))
1471 err = -ENOENT;
1472 else
1473 svsk = svc_setup_socket(serv, so, &err,
1474 SVC_SOCK_DEFAULTS);
NeilBrowne79eff12007-02-12 00:53:30 -08001475 if (svsk) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001476 struct sockaddr_storage addr;
1477 struct sockaddr *sin = (struct sockaddr *)&addr;
1478 int salen;
1479 if (kernel_getsockname(svsk->sk_sock, sin, &salen) == 0)
1480 svc_xprt_set_local(&svsk->sk_xprt, sin, salen);
Tom Tucker4e5caaa2007-12-30 21:08:20 -06001481 clear_bit(XPT_TEMP, &svsk->sk_xprt.xpt_flags);
1482 spin_lock_bh(&serv->sv_lock);
1483 list_add(&svsk->sk_xprt.xpt_list, &serv->sv_permsocks);
1484 spin_unlock_bh(&serv->sv_lock);
Tom Tuckera6046f72007-12-30 21:08:01 -06001485 svc_xprt_received(&svsk->sk_xprt);
NeilBrownb41b66d2006-10-02 02:17:48 -07001486 err = 0;
Tom Tucker2da2c212008-11-23 09:58:08 -06001487 } else
1488 module_put(THIS_MODULE);
NeilBrownb41b66d2006-10-02 02:17:48 -07001489 }
1490 if (err) {
1491 sockfd_put(so);
1492 return err;
1493 }
Chuck Levere7942b92009-04-23 19:32:48 -04001494 return svc_one_sock_name(svsk, name_return, len);
NeilBrownb41b66d2006-10-02 02:17:48 -07001495}
1496EXPORT_SYMBOL_GPL(svc_addsock);
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498/*
1499 * Create socket for RPC service.
1500 */
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001501static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
1502 int protocol,
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001503 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001504 struct sockaddr *sin, int len,
1505 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
1507 struct svc_sock *svsk;
1508 struct socket *sock;
1509 int error;
1510 int type;
Tom Tucker9dbc2402007-12-30 21:08:12 -06001511 struct sockaddr_storage addr;
1512 struct sockaddr *newsin = (struct sockaddr *)&addr;
1513 int newlen;
Trond Myklebustc69da772009-03-30 18:59:17 -04001514 int family;
1515 int val;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +03001516 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Chuck Leverad06e4b2007-02-12 00:53:32 -08001518 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1519 serv->sv_program->pg_name, protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001520 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
1522 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1523 printk(KERN_WARNING "svc: only UDP and TCP "
1524 "sockets supported\n");
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001525 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Trond Myklebustc69da772009-03-30 18:59:17 -04001528 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1529 switch (sin->sa_family) {
1530 case AF_INET6:
1531 family = PF_INET6;
1532 break;
1533 case AF_INET:
1534 family = PF_INET;
1535 break;
1536 default:
1537 return ERR_PTR(-EINVAL);
1538 }
1539
Pavel Emelyanov14ec63c2010-09-29 16:06:57 +04001540 error = __sock_create(net, family, type, protocol, &sock, 1);
Chuck Lever77f1f672007-02-12 00:53:39 -08001541 if (error < 0)
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001542 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Peter Zijlstraed075362006-12-06 20:35:24 -08001544 svc_reclassify_socket(sock);
1545
Trond Myklebustc69da772009-03-30 18:59:17 -04001546 /*
1547 * If this is an PF_INET6 listener, we want to avoid
1548 * getting requests from IPv4 remotes. Those should
1549 * be shunted to a PF_INET listener via rpcbind.
1550 */
1551 val = 1;
1552 if (family == PF_INET6)
1553 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
1554 (char *)&val, sizeof(val));
1555
Eric Sesterhenn18114742006-09-28 14:37:07 -07001556 if (type == SOCK_STREAM)
Chuck Lever77f1f672007-02-12 00:53:39 -08001557 sock->sk->sk_reuse = 1; /* allow address reuse */
1558 error = kernel_bind(sock, sin, len);
Eric Sesterhenn18114742006-09-28 14:37:07 -07001559 if (error < 0)
1560 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Tom Tucker9dbc2402007-12-30 21:08:12 -06001562 newlen = len;
1563 error = kernel_getsockname(sock, newsin, &newlen);
1564 if (error < 0)
1565 goto bummer;
1566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001568 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 goto bummer;
1570 }
1571
NeilBrowne79eff12007-02-12 00:53:30 -08001572 if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) {
Tom Tucker9dbc2402007-12-30 21:08:12 -06001573 svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001574 return (struct svc_xprt *)svsk;
NeilBrowne79eff12007-02-12 00:53:30 -08001575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577bummer:
1578 dprintk("svc: svc_create_socket error = %d\n", -error);
1579 sock_release(sock);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001580 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
1583/*
Tom Tucker755ccea2007-12-30 21:07:27 -06001584 * Detach the svc_sock from the socket so that no
1585 * more callbacks occur.
1586 */
1587static void svc_sock_detach(struct svc_xprt *xprt)
1588{
1589 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1590 struct sock *sk = svsk->sk_sk;
Eric Dumazeteaefd112011-02-18 03:26:36 +00001591 wait_queue_head_t *wq;
Tom Tucker755ccea2007-12-30 21:07:27 -06001592
1593 dprintk("svc: svc_sock_detach(%p)\n", svsk);
1594
1595 /* put back the old socket callbacks */
1596 sk->sk_state_change = svsk->sk_ostate;
1597 sk->sk_data_ready = svsk->sk_odata;
1598 sk->sk_write_space = svsk->sk_owspace;
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001599
Eric Dumazeteaefd112011-02-18 03:26:36 +00001600 wq = sk_sleep(sk);
1601 if (wq && waitqueue_active(wq))
1602 wake_up_interruptible(wq);
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001603}
1604
1605/*
1606 * Disconnect the socket, and reset the callbacks
1607 */
1608static void svc_tcp_sock_detach(struct svc_xprt *xprt)
1609{
1610 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1611
1612 dprintk("svc: svc_tcp_sock_detach(%p)\n", svsk);
1613
1614 svc_sock_detach(xprt);
1615
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001616 if (!test_bit(XPT_LISTENER, &xprt->xpt_flags)) {
1617 svc_tcp_clear_pages(svsk);
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001618 kernel_sock_shutdown(svsk->sk_sock, SHUT_RDWR);
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001619 }
Tom Tucker755ccea2007-12-30 21:07:27 -06001620}
1621
1622/*
1623 * Free the svc_sock's socket resources and the svc_sock itself.
1624 */
1625static void svc_sock_free(struct svc_xprt *xprt)
1626{
1627 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1628 dprintk("svc: svc_sock_free(%p)\n", svsk);
1629
Tom Tucker755ccea2007-12-30 21:07:27 -06001630 if (svsk->sk_sock->file)
1631 sockfd_put(svsk->sk_sock);
1632 else
1633 sock_release(svsk->sk_sock);
1634 kfree(svsk);
1635}
Benny Halevy7652e5a2009-04-01 09:23:09 -04001636
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001637#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001638/*
Andy Adamson1f11a032011-01-06 02:04:26 +00001639 * Create a back channel svc_xprt which shares the fore channel socket.
Benny Halevy7652e5a2009-04-01 09:23:09 -04001640 */
Andy Adamson1f11a032011-01-06 02:04:26 +00001641static struct svc_xprt *svc_bc_create_socket(struct svc_serv *serv,
1642 int protocol,
1643 struct net *net,
1644 struct sockaddr *sin, int len,
1645 int flags)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001646{
1647 struct svc_sock *svsk;
Andy Adamson1f11a032011-01-06 02:04:26 +00001648 struct svc_xprt *xprt;
Benny Halevy7652e5a2009-04-01 09:23:09 -04001649
Andy Adamson1f11a032011-01-06 02:04:26 +00001650 if (protocol != IPPROTO_TCP) {
1651 printk(KERN_WARNING "svc: only TCP sockets"
1652 " supported on shared back channel\n");
1653 return ERR_PTR(-EINVAL);
1654 }
1655
Benny Halevy7652e5a2009-04-01 09:23:09 -04001656 svsk = kzalloc(sizeof(*svsk), GFP_KERNEL);
1657 if (!svsk)
Andy Adamson1f11a032011-01-06 02:04:26 +00001658 return ERR_PTR(-ENOMEM);
Benny Halevy7652e5a2009-04-01 09:23:09 -04001659
1660 xprt = &svsk->sk_xprt;
Andy Adamson1f11a032011-01-06 02:04:26 +00001661 svc_xprt_init(&svc_tcp_bc_class, xprt, serv);
1662
Andy Adamson4a19de02011-01-06 02:04:35 +00001663 serv->sv_bc_xprt = xprt;
Andy Adamson1f11a032011-01-06 02:04:26 +00001664
Benny Halevy7652e5a2009-04-01 09:23:09 -04001665 return xprt;
1666}
Benny Halevy7652e5a2009-04-01 09:23:09 -04001667
1668/*
Andy Adamson1f11a032011-01-06 02:04:26 +00001669 * Free a back channel svc_sock.
Benny Halevy7652e5a2009-04-01 09:23:09 -04001670 */
Andy Adamson1f11a032011-01-06 02:04:26 +00001671static void svc_bc_sock_free(struct svc_xprt *xprt)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001672{
Andy Adamson778be232011-01-25 15:38:01 +00001673 if (xprt)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001674 kfree(container_of(xprt, struct svc_sock, sk_xprt));
1675}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001676#endif /* CONFIG_SUNRPC_BACKCHANNEL */