blob: 0b46ec0bf74e8e924be78a43c71421e48eb69eac [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>
Paul Gortmaker3a9a2312011-05-27 09:12:25 -040024#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/errno.h>
26#include <linux/fcntl.h>
27#include <linux/net.h>
28#include <linux/in.h>
29#include <linux/inet.h>
30#include <linux/udp.h>
Andrew Morton91483c42005-08-09 20:20:07 -070031#include <linux/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/unistd.h>
33#include <linux/slab.h>
34#include <linux/netdevice.h>
35#include <linux/skbuff.h>
NeilBrownb41b66d2006-10-02 02:17:48 -070036#include <linux/file.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080037#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <net/sock.h>
39#include <net/checksum.h>
40#include <net/ip.h>
Chuck Leverb92503b2007-02-12 00:53:36 -080041#include <net/ipv6.h>
Paolo Abeni850cbad2016-10-21 13:55:47 +020042#include <net/udp.h>
Chuck Leverb7872fe2008-04-14 12:27:01 -040043#include <net/tcp.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070044#include <net/tcp_states.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080045#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/ioctls.h>
Eric Dumazet22911fc2012-06-27 00:23:44 +000047#include <trace/events/skb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#include <linux/sunrpc/types.h>
Chuck Leverad06e4b2007-02-12 00:53:32 -080050#include <linux/sunrpc/clnt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/sunrpc/xdr.h>
Chuck Leverc0401ea2008-04-14 12:27:30 -040052#include <linux/sunrpc/msg_prot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <linux/sunrpc/svcsock.h>
54#include <linux/sunrpc/stats.h>
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030055#include <linux/sunrpc/xprt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
H Hartley Sweeten177e4f92011-06-20 17:54:51 -070057#include "sunrpc.h"
58
Tom Tucker360d87382007-12-30 21:07:17 -060059#define RPCDBG_FACILITY RPCDBG_SVCXPRT
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61
62static struct svc_sock *svc_setup_socket(struct svc_serv *, struct socket *,
J. Bruce Fields72c35372012-08-13 17:46:17 -040063 int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static int svc_udp_recvfrom(struct svc_rqst *);
65static int svc_udp_sendto(struct svc_rqst *);
Tom Tucker755ccea2007-12-30 21:07:27 -060066static void svc_sock_detach(struct svc_xprt *);
Trond Myklebust69b6ba32008-12-23 16:30:11 -050067static void svc_tcp_sock_detach(struct svc_xprt *);
Tom Tucker755ccea2007-12-30 21:07:27 -060068static void svc_sock_free(struct svc_xprt *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Tom Tuckerb700cbb2007-12-30 21:07:42 -060070static struct svc_xprt *svc_create_socket(struct svc_serv *, int,
Pavel Emelyanov62832c02010-09-29 16:04:18 +040071 struct net *, struct sockaddr *,
72 int, int);
Trond Myklebust9e00abc2011-07-13 19:20:49 -040073#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Andy Adamson1f11a032011-01-06 02:04:26 +000074static struct svc_xprt *svc_bc_create_socket(struct svc_serv *, int,
75 struct net *, struct sockaddr *,
76 int, int);
77static void svc_bc_sock_free(struct svc_xprt *xprt);
Trond Myklebust9e00abc2011-07-13 19:20:49 -040078#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Andy Adamson1f11a032011-01-06 02:04:26 +000079
Peter Zijlstraed075362006-12-06 20:35:24 -080080#ifdef CONFIG_DEBUG_LOCK_ALLOC
81static struct lock_class_key svc_key[2];
82static struct lock_class_key svc_slock_key[2];
83
Tom Tucker0f0257e2007-12-30 21:08:27 -060084static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -080085{
86 struct sock *sk = sock->sk;
Weston Andros Adamson1b7a1812012-10-23 10:43:39 -040087
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +020088 if (WARN_ON_ONCE(!sock_allow_reclassification(sk)))
Weston Andros Adamson1b7a1812012-10-23 10:43:39 -040089 return;
90
Peter Zijlstraed075362006-12-06 20:35:24 -080091 switch (sk->sk_family) {
92 case AF_INET:
93 sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -060094 &svc_slock_key[0],
95 "sk_xprt.xpt_lock-AF_INET-NFSD",
96 &svc_key[0]);
Peter Zijlstraed075362006-12-06 20:35:24 -080097 break;
98
99 case AF_INET6:
100 sock_lock_init_class_and_name(sk, "slock-AF_INET6-NFSD",
Tom Tuckerdef13d72007-12-30 21:08:08 -0600101 &svc_slock_key[1],
102 "sk_xprt.xpt_lock-AF_INET6-NFSD",
103 &svc_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -0800104 break;
105
106 default:
107 BUG();
108 }
109}
110#else
Tom Tucker0f0257e2007-12-30 21:08:27 -0600111static void svc_reclassify_socket(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -0800112{
113}
114#endif
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/*
117 * Release an skbuff after use
118 */
Tom Tucker5148bf42007-12-30 21:07:25 -0600119static void svc_release_skb(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Tom Tucker5148bf42007-12-30 21:07:25 -0600121 struct sk_buff *skb = rqstp->rq_xprt_ctxt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 if (skb) {
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600124 struct svc_sock *svsk =
125 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tucker5148bf42007-12-30 21:07:25 -0600126 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 dprintk("svc: service %p, releasing skb %p\n", rqstp, skb);
Eric Dumazet9d410c72009-10-30 05:03:53 +0000129 skb_free_datagram_locked(svsk->sk_sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
Paolo Abeni850cbad2016-10-21 13:55:47 +0200133static void svc_release_udp_skb(struct svc_rqst *rqstp)
134{
135 struct sk_buff *skb = rqstp->rq_xprt_ctxt;
136
137 if (skb) {
138 rqstp->rq_xprt_ctxt = NULL;
139
140 dprintk("svc: service %p, releasing skb %p\n", rqstp, skb);
141 consume_skb(skb);
142 }
143}
144
Chuck Leverb92503b2007-02-12 00:53:36 -0800145union svc_pktinfo_u {
146 struct in_pktinfo pkti;
Chuck Leverb92503b2007-02-12 00:53:36 -0800147 struct in6_pktinfo pkti6;
Chuck Leverb92503b2007-02-12 00:53:36 -0800148};
David S. Millerbc375ea2007-04-12 13:35:59 -0700149#define SVC_PKTINFO_SPACE \
150 CMSG_SPACE(sizeof(union svc_pktinfo_u))
Chuck Leverb92503b2007-02-12 00:53:36 -0800151
152static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh)
153{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600154 struct svc_sock *svsk =
155 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
156 switch (svsk->sk_sk->sk_family) {
Chuck Leverb92503b2007-02-12 00:53:36 -0800157 case AF_INET: {
158 struct in_pktinfo *pki = CMSG_DATA(cmh);
159
160 cmh->cmsg_level = SOL_IP;
161 cmh->cmsg_type = IP_PKTINFO;
162 pki->ipi_ifindex = 0;
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800163 pki->ipi_spec_dst.s_addr =
164 svc_daddr_in(rqstp)->sin_addr.s_addr;
Chuck Leverb92503b2007-02-12 00:53:36 -0800165 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
166 }
167 break;
NeilBrown5a05ed72007-03-06 01:42:22 -0800168
Chuck Leverb92503b2007-02-12 00:53:36 -0800169 case AF_INET6: {
170 struct in6_pktinfo *pki = CMSG_DATA(cmh);
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800171 struct sockaddr_in6 *daddr = svc_daddr_in6(rqstp);
Chuck Leverb92503b2007-02-12 00:53:36 -0800172
173 cmh->cmsg_level = SOL_IPV6;
174 cmh->cmsg_type = IPV6_PKTINFO;
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800175 pki->ipi6_ifindex = daddr->sin6_scope_id;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000176 pki->ipi6_addr = daddr->sin6_addr;
Chuck Leverb92503b2007-02-12 00:53:36 -0800177 cmh->cmsg_len = CMSG_LEN(sizeof(*pki));
178 }
179 break;
Chuck Leverb92503b2007-02-12 00:53:36 -0800180 }
Chuck Leverb92503b2007-02-12 00:53:36 -0800181}
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/*
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300184 * send routine intended to be shared by the fore- and back-channel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 */
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300186int svc_send_common(struct socket *sock, struct xdr_buf *xdr,
187 struct page *headpage, unsigned long headoffset,
188 struct page *tailpage, unsigned long tailoffset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 int result;
191 int size;
192 struct page **ppage = xdr->pages;
193 size_t base = xdr->page_base;
194 unsigned int pglen = xdr->page_len;
Trond Myklebust226453d2015-10-07 13:54:42 -0400195 unsigned int flags = MSG_MORE | MSG_SENDPAGE_NOTLAST;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300196 int slen;
197 int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 slen = xdr->len;
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 /* send head */
202 if (slen == xdr->head[0].iov_len)
203 flags = 0;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300204 len = kernel_sendpage(sock, headpage, headoffset,
NeilBrown44524352006-10-04 02:15:46 -0700205 xdr->head[0].iov_len, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (len != xdr->head[0].iov_len)
207 goto out;
208 slen -= xdr->head[0].iov_len;
209 if (slen == 0)
210 goto out;
211
212 /* send page data */
213 size = PAGE_SIZE - base < pglen ? PAGE_SIZE - base : pglen;
214 while (pglen > 0) {
215 if (slen == size)
216 flags = 0;
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700217 result = kernel_sendpage(sock, *ppage, base, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (result > 0)
219 len += result;
220 if (result != size)
221 goto out;
222 slen -= size;
223 pglen -= size;
224 size = PAGE_SIZE < pglen ? PAGE_SIZE : pglen;
225 base = 0;
226 ppage++;
227 }
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 /* send tail */
230 if (xdr->tail[0].iov_len) {
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300231 result = kernel_sendpage(sock, tailpage, tailoffset,
232 xdr->tail[0].iov_len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (result > 0)
234 len += result;
235 }
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300236
237out:
238 return len;
239}
240
241
242/*
243 * Generic sendto routine
244 */
245static int svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr)
246{
247 struct svc_sock *svsk =
248 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
249 struct socket *sock = svsk->sk_sock;
250 union {
251 struct cmsghdr hdr;
252 long all[SVC_PKTINFO_SPACE / sizeof(long)];
253 } buffer;
254 struct cmsghdr *cmh = &buffer.hdr;
255 int len = 0;
256 unsigned long tailoff;
257 unsigned long headoff;
258 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
259
260 if (rqstp->rq_prot == IPPROTO_UDP) {
261 struct msghdr msg = {
262 .msg_name = &rqstp->rq_addr,
263 .msg_namelen = rqstp->rq_addrlen,
264 .msg_control = cmh,
265 .msg_controllen = sizeof(buffer),
266 .msg_flags = MSG_MORE,
267 };
268
269 svc_set_cmsg_data(rqstp, cmh);
270
Al Virod8725c82014-12-11 00:02:50 -0500271 if (sock_sendmsg(sock, &msg) < 0)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300272 goto out;
273 }
274
275 tailoff = ((unsigned long)xdr->tail[0].iov_base) & (PAGE_SIZE-1);
276 headoff = 0;
277 len = svc_send_common(sock, xdr, rqstp->rq_respages[0], headoff,
278 rqstp->rq_respages[0], tailoff);
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280out:
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800281 dprintk("svc: socket %p sendto([%p %zu... ], %d) = %d (addr %s)\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600282 svsk, xdr->head[0].iov_base, xdr->head[0].iov_len,
Chuck Leverad06e4b2007-02-12 00:53:32 -0800283 xdr->len, len, svc_print_addr(rqstp, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 return len;
286}
287
288/*
NeilBrown80212d52006-10-02 02:17:47 -0700289 * Report socket names for nfsdfs
290 */
Chuck Levere7942b92009-04-23 19:32:48 -0400291static int svc_one_sock_name(struct svc_sock *svsk, char *buf, int remaining)
NeilBrown80212d52006-10-02 02:17:47 -0700292{
Chuck Lever017cb472009-04-23 19:33:03 -0400293 const struct sock *sk = svsk->sk_sk;
294 const char *proto_name = sk->sk_protocol == IPPROTO_UDP ?
295 "udp" : "tcp";
NeilBrown80212d52006-10-02 02:17:47 -0700296 int len;
297
Chuck Lever017cb472009-04-23 19:33:03 -0400298 switch (sk->sk_family) {
Chuck Levere7942b92009-04-23 19:32:48 -0400299 case PF_INET:
300 len = snprintf(buf, remaining, "ipv4 %s %pI4 %d\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400301 proto_name,
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000302 &inet_sk(sk)->inet_rcv_saddr,
303 inet_sk(sk)->inet_num);
NeilBrown80212d52006-10-02 02:17:47 -0700304 break;
Eric Dumazetc2bb06d2013-10-09 03:05:48 -0700305#if IS_ENABLED(CONFIG_IPV6)
Chuck Lever58de2f82009-04-23 19:32:55 -0400306 case PF_INET6:
307 len = snprintf(buf, remaining, "ipv6 %s %pI6 %d\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400308 proto_name,
Eric Dumazetefe42082013-10-03 15:42:29 -0700309 &sk->sk_v6_rcv_saddr,
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000310 inet_sk(sk)->inet_num);
NeilBrown80212d52006-10-02 02:17:47 -0700311 break;
Eric Dumazetc2bb06d2013-10-09 03:05:48 -0700312#endif
NeilBrown80212d52006-10-02 02:17:47 -0700313 default:
Chuck Levere7942b92009-04-23 19:32:48 -0400314 len = snprintf(buf, remaining, "*unknown-%d*\n",
Chuck Lever017cb472009-04-23 19:33:03 -0400315 sk->sk_family);
NeilBrown80212d52006-10-02 02:17:47 -0700316 }
Chuck Levere7942b92009-04-23 19:32:48 -0400317
318 if (len >= remaining) {
319 *buf = '\0';
320 return -ENAMETOOLONG;
NeilBrown80212d52006-10-02 02:17:47 -0700321 }
322 return len;
323}
324
NeilBrown80212d52006-10-02 02:17:47 -0700325/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 * Generic recvfrom routine.
327 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600328static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr,
329 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600331 struct svc_sock *svsk =
332 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Chuck Lever1ba95102007-02-12 00:53:31 -0800333 struct msghdr msg = {
334 .msg_flags = MSG_DONTWAIT,
335 };
336 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Tom Tucker260c1d12007-12-30 21:08:29 -0600338 rqstp->rq_xprt_hlen = 0;
339
Trond Myklebustf8d1ff42014-08-03 13:03:13 -0400340 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
David Howellsaa563d72018-10-20 00:57:56 +0100341 iov_iter_kvec(&msg.msg_iter, READ, iov, nr, buflen);
Al Viro1e4ed1b2017-07-01 17:01:59 -0400342 len = sock_recvmsg(svsk->sk_sock, &msg, msg.msg_flags);
Trond Myklebustf8d1ff42014-08-03 13:03:13 -0400343 /* If we read a full record, then assume there may be more
344 * data to read (stream based sockets only!)
345 */
346 if (len == buflen)
347 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800349 dprintk("svc: socket %p recvfrom(%p, %zu) = %d\n",
Chuck Lever1ba95102007-02-12 00:53:31 -0800350 svsk, iov[0].iov_base, iov[0].iov_len, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return len;
352}
353
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800354static int svc_partial_recvfrom(struct svc_rqst *rqstp,
355 struct kvec *iov, int nr,
356 int buflen, unsigned int base)
357{
358 size_t save_iovlen;
Trond Myklebust09acfea2012-03-11 15:22:54 -0400359 void *save_iovbase;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800360 unsigned int i;
361 int ret;
362
363 if (base == 0)
364 return svc_recvfrom(rqstp, iov, nr, buflen);
365
366 for (i = 0; i < nr; i++) {
367 if (iov[i].iov_len > base)
368 break;
369 base -= iov[i].iov_len;
370 }
371 save_iovlen = iov[i].iov_len;
372 save_iovbase = iov[i].iov_base;
373 iov[i].iov_len -= base;
374 iov[i].iov_base += base;
375 ret = svc_recvfrom(rqstp, &iov[i], nr - i, buflen);
376 iov[i].iov_len = save_iovlen;
377 iov[i].iov_base = save_iovbase;
378 return ret;
379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381/*
382 * Set socket snd and rcv buffer lengths
383 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600384static void svc_sock_setbufsize(struct socket *sock, unsigned int snd,
385 unsigned int rcv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 lock_sock(sock->sk);
388 sock->sk->sk_sndbuf = snd * 2;
389 sock->sk->sk_rcvbuf = rcv * 2;
Trond Myklebust47fcb032009-05-18 17:47:56 -0400390 sock->sk->sk_write_space(sock->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 release_sock(sock->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
Chuck Lever16e4d932014-05-19 13:40:22 -0400393
Chuck Lever989f8812018-03-27 10:49:38 -0400394static void svc_sock_secure_port(struct svc_rqst *rqstp)
Chuck Lever16e4d932014-05-19 13:40:22 -0400395{
Chuck Lever989f8812018-03-27 10:49:38 -0400396 if (svc_port_is_privileged(svc_addr(rqstp)))
397 set_bit(RQ_SECURE, &rqstp->rq_flags);
398 else
399 clear_bit(RQ_SECURE, &rqstp->rq_flags);
Chuck Lever16e4d932014-05-19 13:40:22 -0400400}
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402/*
403 * INET callback when data has been received on the socket.
404 */
Trond Myklebustfa9251a2016-06-24 10:55:48 -0400405static void svc_data_ready(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Neil Brown939bb7e2005-09-13 01:25:39 -0700407 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Neil Brown939bb7e2005-09-13 01:25:39 -0700409 if (svsk) {
David S. Miller676d2362014-04-11 16:15:36 -0400410 dprintk("svc: socket %p(inet %p), busy=%d\n",
411 svsk, sk,
Tom Tucker02fc6c32007-12-30 21:07:48 -0600412 test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
Vadim Lomovtseveebe53e2017-08-21 07:23:07 -0400413
414 /* Refer to svc_setup_socket() for details. */
415 rmb();
Trond Myklebustfa9251a2016-06-24 10:55:48 -0400416 svsk->sk_odata(sk);
Trond Myklebust4720b072016-06-24 10:55:49 -0400417 if (!test_and_set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags))
418 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
422/*
423 * INET callback when space is newly available on the socket.
424 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600425static void svc_write_space(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data);
428
429 if (svsk) {
430 dprintk("svc: socket %p(inet %p), write_space busy=%d\n",
Tom Tucker02fc6c32007-12-30 21:07:48 -0600431 svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags));
Vadim Lomovtseveebe53e2017-08-21 07:23:07 -0400432
433 /* Refer to svc_setup_socket() for details. */
434 rmb();
Trond Myklebustfa9251a2016-06-24 10:55:48 -0400435 svsk->sk_owspace(sk);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600436 svc_xprt_enqueue(&svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Trond Myklebustc7fb3f02014-07-24 23:59:32 -0400440static int svc_tcp_has_wspace(struct svc_xprt *xprt)
441{
Trond Myklebust637600f2016-06-24 10:55:51 -0400442 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Trond Myklebustc7fb3f02014-07-24 23:59:32 -0400443
444 if (test_bit(XPT_LISTENER, &xprt->xpt_flags))
445 return 1;
Trond Myklebust637600f2016-06-24 10:55:51 -0400446 return !test_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Trond Myklebust51877682014-07-24 23:59:33 -0400447}
448
Scott Mayhewea08e392016-11-11 13:16:22 -0500449static void svc_tcp_kill_temp_xprt(struct svc_xprt *xprt)
450{
451 struct svc_sock *svsk;
452 struct socket *sock;
453 struct linger no_linger = {
454 .l_onoff = 1,
455 .l_linger = 0,
456 };
457
458 svsk = container_of(xprt, struct svc_sock, sk_xprt);
459 sock = svsk->sk_sock;
460 kernel_setsockopt(sock, SOL_SOCKET, SO_LINGER,
461 (char *)&no_linger, sizeof(no_linger));
462}
463
Tom Tucker9dbc2402007-12-30 21:08:12 -0600464/*
Chuck Lever7702ce42009-07-13 10:54:26 -0400465 * See net/ipv6/ip_sockglue.c : ip_cmsg_recv_pktinfo
466 */
467static int svc_udp_get_dest_address4(struct svc_rqst *rqstp,
468 struct cmsghdr *cmh)
469{
470 struct in_pktinfo *pki = CMSG_DATA(cmh);
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800471 struct sockaddr_in *daddr = svc_daddr_in(rqstp);
472
Chuck Lever7702ce42009-07-13 10:54:26 -0400473 if (cmh->cmsg_type != IP_PKTINFO)
474 return 0;
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800475
476 daddr->sin_family = AF_INET;
477 daddr->sin_addr.s_addr = pki->ipi_spec_dst.s_addr;
Chuck Lever7702ce42009-07-13 10:54:26 -0400478 return 1;
479}
480
481/*
Tom Parkin73df66f2013-01-31 01:02:24 +0000482 * See net/ipv6/datagram.c : ip6_datagram_recv_ctl
Chuck Lever7702ce42009-07-13 10:54:26 -0400483 */
484static int svc_udp_get_dest_address6(struct svc_rqst *rqstp,
485 struct cmsghdr *cmh)
486{
487 struct in6_pktinfo *pki = CMSG_DATA(cmh);
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800488 struct sockaddr_in6 *daddr = svc_daddr_in6(rqstp);
489
Chuck Lever7702ce42009-07-13 10:54:26 -0400490 if (cmh->cmsg_type != IPV6_PKTINFO)
491 return 0;
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800492
493 daddr->sin6_family = AF_INET6;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000494 daddr->sin6_addr = pki->ipi6_addr;
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800495 daddr->sin6_scope_id = pki->ipi6_ifindex;
Chuck Lever7702ce42009-07-13 10:54:26 -0400496 return 1;
497}
498
499/*
Tom Tucker9dbc2402007-12-30 21:08:12 -0600500 * Copy the UDP datagram's destination address to the rqstp structure.
501 * The 'destination' address in this case is the address to which the
502 * peer sent the datagram, i.e. our local address. For multihomed
503 * hosts, this can change from msg to msg. Note that only the IP
504 * address changes, the port number should remain the same.
505 */
Chuck Lever7702ce42009-07-13 10:54:26 -0400506static int svc_udp_get_dest_address(struct svc_rqst *rqstp,
507 struct cmsghdr *cmh)
Chuck Lever95756482007-02-12 00:53:38 -0800508{
Chuck Lever7702ce42009-07-13 10:54:26 -0400509 switch (cmh->cmsg_level) {
510 case SOL_IP:
511 return svc_udp_get_dest_address4(rqstp, cmh);
512 case SOL_IPV6:
513 return svc_udp_get_dest_address6(rqstp, cmh);
Chuck Lever95756482007-02-12 00:53:38 -0800514 }
Chuck Lever7702ce42009-07-13 10:54:26 -0400515
516 return 0;
Chuck Lever95756482007-02-12 00:53:38 -0800517}
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519/*
520 * Receive a datagram from a UDP socket.
521 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600522static int svc_udp_recvfrom(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Tom Tucker57b1d3b2007-12-30 21:08:22 -0600524 struct svc_sock *svsk =
525 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600526 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 struct sk_buff *skb;
David S. Millerbc375ea2007-04-12 13:35:59 -0700528 union {
529 struct cmsghdr hdr;
530 long all[SVC_PKTINFO_SPACE / sizeof(long)];
531 } buffer;
532 struct cmsghdr *cmh = &buffer.hdr;
NeilBrown7a37f572007-03-06 01:42:21 -0800533 struct msghdr msg = {
534 .msg_name = svc_addr(rqstp),
535 .msg_control = cmh,
536 .msg_controllen = sizeof(buffer),
537 .msg_flags = MSG_DONTWAIT,
538 };
Chuck Leverabc5c442009-04-23 19:31:25 -0400539 size_t len;
540 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Tom Tucker02fc6c32007-12-30 21:07:48 -0600542 if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 /* udp sockets need large rcvbuf as all pending
544 * requests are still in that buffer. sndbuf must
545 * also be large enough that there is enough space
Greg Banks3262c812006-10-02 02:17:58 -0700546 * for one reply per thread. We count all threads
547 * rather than threads in a particular pool, which
548 * provides an upper bound on the number of threads
549 * which will access the socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 */
551 svc_sock_setbufsize(svsk->sk_sock,
NeilBrownc6b0a9f2006-10-06 00:44:05 -0700552 (serv->sv_nrthreads+3) * serv->sv_max_mesg,
553 (serv->sv_nrthreads+3) * serv->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Tom Tucker02fc6c32007-12-30 21:07:48 -0600555 clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
NeilBrown05ed6902007-05-09 02:34:55 -0700556 skb = NULL;
557 err = kernel_recvmsg(svsk->sk_sock, &msg, NULL,
558 0, 0, MSG_PEEK | MSG_DONTWAIT);
559 if (err >= 0)
Paolo Abeni7c13f972016-11-04 11:28:59 +0100560 skb = skb_recv_udp(svsk->sk_sk, 0, 1, &err);
NeilBrown05ed6902007-05-09 02:34:55 -0700561
562 if (skb == NULL) {
563 if (err != -EAGAIN) {
564 /* possibly an icmp error */
565 dprintk("svc: recvfrom returned error %d\n", -err);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600566 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
J. Bruce Fields9f9d2eb2012-08-17 21:35:24 -0400568 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600570 len = svc_addr_len(svc_addr(rqstp));
Tom Tucker9dbc2402007-12-30 21:08:12 -0600571 rqstp->rq_addrlen = len;
Thomas Gleixner2456e852016-12-25 11:38:40 +0100572 if (skb->tstamp == 0) {
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700573 skb->tstamp = ktime_get_real();
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800574 /* Don't enable netstamp, sunrpc doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 need that much accuracy */
576 }
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700577 svsk->sk_sk->sk_stamp = skb->tstamp;
Tom Tucker02fc6c32007-12-30 21:07:48 -0600578 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); /* there may be more data... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Willem de Bruijn1da8c6812016-04-07 11:44:58 -0400580 len = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 rqstp->rq_arg.len = len;
582
Chuck Lever95756482007-02-12 00:53:38 -0800583 rqstp->rq_prot = IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Chuck Lever7702ce42009-07-13 10:54:26 -0400585 if (!svc_udp_get_dest_address(rqstp, cmh)) {
Joe Perchese87cc472012-05-13 21:56:26 +0000586 net_warn_ratelimited("svc: received unknown control message %d/%d; dropping RPC reply datagram\n",
587 cmh->cmsg_level, cmh->cmsg_type);
J. Bruce Fieldsf23abfd2012-08-17 20:32:27 -0400588 goto out_free;
NeilBrown7a37f572007-03-06 01:42:21 -0800589 }
Mi Jinlong849a1cf2011-08-30 17:18:41 +0800590 rqstp->rq_daddrlen = svc_addr_len(svc_daddr(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 if (skb_is_nonlinear(skb)) {
593 /* we have to copy */
594 local_bh_disable();
595 if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) {
596 local_bh_enable();
597 /* checksum error */
Eric Dumazet22911fc2012-06-27 00:23:44 +0000598 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600 local_bh_enable();
Paolo Abeni850cbad2016-10-21 13:55:47 +0200601 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 } else {
603 /* we can use it in-place */
Willem de Bruijn1da8c6812016-04-07 11:44:58 -0400604 rqstp->rq_arg.head[0].iov_base = skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 rqstp->rq_arg.head[0].iov_len = len;
Eric Dumazet22911fc2012-06-27 00:23:44 +0000606 if (skb_checksum_complete(skb))
607 goto out_free;
Tom Tucker5148bf42007-12-30 21:07:25 -0600608 rqstp->rq_xprt_ctxt = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610
611 rqstp->rq_arg.page_base = 0;
612 if (len <= rqstp->rq_arg.head[0].iov_len) {
613 rqstp->rq_arg.head[0].iov_len = len;
614 rqstp->rq_arg.page_len = 0;
NeilBrown44524352006-10-04 02:15:46 -0700615 rqstp->rq_respages = rqstp->rq_pages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 } else {
617 rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len;
NeilBrown44524352006-10-04 02:15:46 -0700618 rqstp->rq_respages = rqstp->rq_pages + 1 +
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700619 DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500621 rqstp->rq_next_page = rqstp->rq_respages+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 if (serv->sv_stats)
624 serv->sv_stats->netudpcnt++;
625
626 return len;
J. Bruce Fieldsf23abfd2012-08-17 20:32:27 -0400627out_free:
Paolo Abeni850cbad2016-10-21 13:55:47 +0200628 kfree_skb(skb);
J. Bruce Fieldsf23abfd2012-08-17 20:32:27 -0400629 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
632static int
633svc_udp_sendto(struct svc_rqst *rqstp)
634{
635 int error;
636
637 error = svc_sendto(rqstp, &rqstp->rq_res);
638 if (error == -ECONNREFUSED)
639 /* ICMP error on earlier request. */
640 error = svc_sendto(rqstp, &rqstp->rq_res);
641
642 return error;
643}
644
Tom Tuckere831fe62007-12-30 21:07:29 -0600645static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp)
646{
647}
648
Tom Tucker323bee32007-12-30 21:07:31 -0600649static int svc_udp_has_wspace(struct svc_xprt *xprt)
650{
651 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600652 struct svc_serv *serv = xprt->xpt_server;
Tom Tucker323bee32007-12-30 21:07:31 -0600653 unsigned long required;
654
655 /*
656 * Set the SOCK_NOSPACE flag before checking the available
657 * sock space.
658 */
659 set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
Tom Tucker7a90e8c2007-12-30 21:07:55 -0600660 required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg;
Tom Tucker323bee32007-12-30 21:07:31 -0600661 if (required*2 > sock_wspace(svsk->sk_sk))
662 return 0;
663 clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags);
664 return 1;
665}
666
Tom Tucker38a417c2007-12-30 21:07:36 -0600667static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt)
668{
669 BUG();
670 return NULL;
671}
672
Scott Mayhewea08e392016-11-11 13:16:22 -0500673static void svc_udp_kill_temp_xprt(struct svc_xprt *xprt)
674{
675}
676
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600677static struct svc_xprt *svc_udp_create(struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400678 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600679 struct sockaddr *sa, int salen,
680 int flags)
681{
Pavel Emelyanov62832c02010-09-29 16:04:18 +0400682 return svc_create_socket(serv, IPPROTO_UDP, net, sa, salen, flags);
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600683}
684
Chuck Lever2412e922017-08-01 11:59:49 -0400685static const struct svc_xprt_ops svc_udp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600686 .xpo_create = svc_udp_create,
Tom Tucker5d137992007-12-30 21:07:23 -0600687 .xpo_recvfrom = svc_udp_recvfrom,
688 .xpo_sendto = svc_udp_sendto,
Paolo Abeni850cbad2016-10-21 13:55:47 +0200689 .xpo_release_rqst = svc_release_udp_skb,
Tom Tucker755ccea2007-12-30 21:07:27 -0600690 .xpo_detach = svc_sock_detach,
691 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -0600692 .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -0600693 .xpo_has_wspace = svc_udp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -0600694 .xpo_accept = svc_udp_accept,
Chuck Lever16e4d932014-05-19 13:40:22 -0400695 .xpo_secure_port = svc_sock_secure_port,
Scott Mayhewea08e392016-11-11 13:16:22 -0500696 .xpo_kill_temp_xprt = svc_udp_kill_temp_xprt,
Tom Tucker360d87382007-12-30 21:07:17 -0600697};
698
699static struct svc_xprt_class svc_udp_class = {
700 .xcl_name = "udp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -0600701 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -0600702 .xcl_ops = &svc_udp_ops,
Tom Tucker49023152007-12-30 21:07:21 -0600703 .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP,
Chuck Lever3c45ddf2014-07-16 15:38:32 -0400704 .xcl_ident = XPRT_TRANSPORT_UDP,
Tom Tucker360d87382007-12-30 21:07:17 -0600705};
706
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600707static void svc_udp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Chuck Lever7702ce42009-07-13 10:54:26 -0400709 int err, level, optname, one = 1;
NeilBrown7a37f572007-03-06 01:42:21 -0800710
Stanislav Kinsburskybd4620d2011-12-06 14:19:10 +0300711 svc_xprt_init(sock_net(svsk->sk_sock->sk), &svc_udp_class,
712 &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -0600713 clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Trond Myklebustfa9251a2016-06-24 10:55:48 -0400714 svsk->sk_sk->sk_data_ready = svc_data_ready;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 svsk->sk_sk->sk_write_space = svc_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 /* initialise setting must have enough space to
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800718 * receive and respond to one request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 * svc_udp_recvfrom will re-adjust if necessary
720 */
721 svc_sock_setbufsize(svsk->sk_sock,
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600722 3 * svsk->sk_xprt.xpt_server->sv_max_mesg,
723 3 * svsk->sk_xprt.xpt_server->sv_max_mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Tom Tucker0f0257e2007-12-30 21:08:27 -0600725 /* data might have come in before data_ready set up */
726 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Tom Tucker02fc6c32007-12-30 21:07:48 -0600727 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
NeilBrown7a37f572007-03-06 01:42:21 -0800728
NeilBrown7a37f572007-03-06 01:42:21 -0800729 /* make sure we get destination address info */
Chuck Lever7702ce42009-07-13 10:54:26 -0400730 switch (svsk->sk_sk->sk_family) {
731 case AF_INET:
732 level = SOL_IP;
733 optname = IP_PKTINFO;
734 break;
735 case AF_INET6:
736 level = SOL_IPV6;
737 optname = IPV6_RECVPKTINFO;
738 break;
739 default:
740 BUG();
741 }
742 err = kernel_setsockopt(svsk->sk_sock, level, optname,
743 (char *)&one, sizeof(one));
744 dprintk("svc: kernel_setsockopt returned %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
747/*
748 * A data_ready event on a listening socket means there's a connection
749 * pending. Do not use state_change as a substitute for it.
750 */
David S. Miller676d2362014-04-11 16:15:36 -0400751static void svc_tcp_listen_data_ready(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
Neil Brown939bb7e2005-09-13 01:25:39 -0700753 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 dprintk("svc: socket %p TCP (listen) state change %d\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700756 sk, sk->sk_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Vadim Lomovtseveebe53e2017-08-21 07:23:07 -0400758 if (svsk) {
759 /* Refer to svc_setup_socket() for details. */
760 rmb();
Trond Myklebustfa9251a2016-06-24 10:55:48 -0400761 svsk->sk_odata(sk);
Vadim Lomovtseveebe53e2017-08-21 07:23:07 -0400762 }
763
Neil Brown939bb7e2005-09-13 01:25:39 -0700764 /*
765 * This callback may called twice when a new connection
766 * is established as a child socket inherits everything
767 * from a parent LISTEN socket.
768 * 1) data_ready method of the parent socket will be called
769 * when one of child sockets become ESTABLISHED.
770 * 2) data_ready method of the child socket may be called
771 * when it receives data before the socket is accepted.
772 * In case of 2, we should ignore it silently.
773 */
774 if (sk->sk_state == TCP_LISTEN) {
775 if (svsk) {
Tom Tucker02fc6c32007-12-30 21:07:48 -0600776 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -0600777 svc_xprt_enqueue(&svsk->sk_xprt);
Neil Brown939bb7e2005-09-13 01:25:39 -0700778 } else
779 printk("svc: socket %p: no user data\n", sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
782
783/*
784 * A state change on a connected socket means it's dying or dead.
785 */
Tom Tucker0f0257e2007-12-30 21:08:27 -0600786static void svc_tcp_state_change(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
Neil Brown939bb7e2005-09-13 01:25:39 -0700788 struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n",
Neil Brown939bb7e2005-09-13 01:25:39 -0700791 sk, sk->sk_state, sk->sk_user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Neil Brown939bb7e2005-09-13 01:25:39 -0700793 if (!svsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 printk("svc: socket %p: no user data\n", sk);
Neil Brown939bb7e2005-09-13 01:25:39 -0700795 else {
Vadim Lomovtseveebe53e2017-08-21 07:23:07 -0400796 /* Refer to svc_setup_socket() for details. */
797 rmb();
Trond Myklebustfa9251a2016-06-24 10:55:48 -0400798 svsk->sk_ostate(sk);
Trond Myklebustb2f21f72016-07-26 09:51:19 -0400799 if (sk->sk_state != TCP_ESTABLISHED) {
800 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
801 svc_xprt_enqueue(&svsk->sk_xprt);
802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
806/*
807 * Accept a TCP connection
808 */
Tom Tucker38a417c2007-12-30 21:07:36 -0600809static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Tom Tucker38a417c2007-12-30 21:07:36 -0600811 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800812 struct sockaddr_storage addr;
813 struct sockaddr *sin = (struct sockaddr *) &addr;
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600814 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 struct socket *sock = svsk->sk_sock;
816 struct socket *newsock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 struct svc_sock *newsvsk;
818 int err, slen;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300819 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 dprintk("svc: tcp_accept %p sock %p\n", svsk, sock);
822 if (!sock)
Tom Tucker38a417c2007-12-30 21:07:36 -0600823 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Tom Tucker02fc6c32007-12-30 21:07:48 -0600825 clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Sridhar Samudralae6242e92006-08-07 20:58:01 -0700826 err = kernel_accept(sock, &newsock, O_NONBLOCK);
827 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 if (err == -ENOMEM)
829 printk(KERN_WARNING "%s: no more sockets!\n",
830 serv->sv_name);
Joe Perchese87cc472012-05-13 21:56:26 +0000831 else if (err != -EAGAIN)
832 net_warn_ratelimited("%s: accept failed (err %d)!\n",
833 serv->sv_name, -err);
Tom Tucker38a417c2007-12-30 21:07:36 -0600834 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
Tom Tucker02fc6c32007-12-30 21:07:48 -0600836 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +0100838 err = kernel_getpeername(newsock, sin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (err < 0) {
Joe Perchese87cc472012-05-13 21:56:26 +0000840 net_warn_ratelimited("%s: peername failed (err %d)!\n",
841 serv->sv_name, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 goto failed; /* aborted connection or whatever */
843 }
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +0100844 slen = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 /* Ideally, we would want to reject connections from unauthorized
Chuck Leverad06e4b2007-02-12 00:53:32 -0800847 * hosts here, but when we get encryption, the IP of the host won't
848 * tell us anything. For now just warn about unpriv connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 */
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800850 if (!svc_port_is_privileged(sin)) {
Kinglong Meea48fd0f2014-05-29 12:18:52 +0800851 dprintk("%s: connect from unprivileged port: %s\n",
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800852 serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800853 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
Chuck Leverad06e4b2007-02-12 00:53:32 -0800855 dprintk("%s: connect from %s\n", serv->sv_name,
akpm@linux-foundation.orgcdd88b92007-02-12 00:53:38 -0800856 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Trond Myklebustfa9251a2016-06-24 10:55:48 -0400858 /* Reset the inherited callbacks before calling svc_setup_socket */
859 newsock->sk->sk_state_change = svsk->sk_ostate;
860 newsock->sk->sk_data_ready = svsk->sk_odata;
861 newsock->sk->sk_write_space = svsk->sk_owspace;
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 /* make sure that a write doesn't block forever when
864 * low on memory
865 */
866 newsock->sk->sk_sndtimeo = HZ*30;
867
J. Bruce Fields72c35372012-08-13 17:46:17 -0400868 newsvsk = svc_setup_socket(serv, newsock,
869 (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY));
870 if (IS_ERR(newsvsk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 goto failed;
Tom Tucker9dbc2402007-12-30 21:08:12 -0600872 svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen);
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +0100873 err = kernel_getsockname(newsock, sin);
874 slen = err;
Frank van Maarseveena9747692007-07-09 22:21:39 +0200875 if (unlikely(err < 0)) {
876 dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err);
877 slen = offsetof(struct sockaddr, sa_data);
878 }
Tom Tucker9dbc2402007-12-30 21:08:12 -0600879 svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen);
Chuck Lever067d7812007-02-12 00:53:30 -0800880
NeilBrownef11ce22014-05-12 11:22:47 +1000881 if (sock_is_loopback(newsock->sk))
882 set_bit(XPT_LOCAL, &newsvsk->sk_xprt.xpt_flags);
883 else
884 clear_bit(XPT_LOCAL, &newsvsk->sk_xprt.xpt_flags);
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600885 if (serv->sv_stats)
886 serv->sv_stats->nettcpconn++;
887
888 return &newsvsk->sk_xprt;
889
890failed:
891 sock_release(newsock);
892 return NULL;
893}
894
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800895static unsigned int svc_tcp_restore_pages(struct svc_sock *svsk, struct svc_rqst *rqstp)
896{
897 unsigned int i, len, npages;
898
J. Bruce Fields8af345f2012-12-03 16:45:35 -0500899 if (svsk->sk_datalen == 0)
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800900 return 0;
J. Bruce Fields8af345f2012-12-03 16:45:35 -0500901 len = svsk->sk_datalen;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800902 npages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
903 for (i = 0; i < npages; i++) {
904 if (rqstp->rq_pages[i] != NULL)
905 put_page(rqstp->rq_pages[i]);
906 BUG_ON(svsk->sk_pages[i] == NULL);
907 rqstp->rq_pages[i] = svsk->sk_pages[i];
908 svsk->sk_pages[i] = NULL;
909 }
910 rqstp->rq_arg.head[0].iov_base = page_address(rqstp->rq_pages[0]);
911 return len;
912}
913
914static void svc_tcp_save_pages(struct svc_sock *svsk, struct svc_rqst *rqstp)
915{
916 unsigned int i, len, npages;
917
J. Bruce Fields8af345f2012-12-03 16:45:35 -0500918 if (svsk->sk_datalen == 0)
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800919 return;
J. Bruce Fields8af345f2012-12-03 16:45:35 -0500920 len = svsk->sk_datalen;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800921 npages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
922 for (i = 0; i < npages; i++) {
923 svsk->sk_pages[i] = rqstp->rq_pages[i];
924 rqstp->rq_pages[i] = NULL;
925 }
926}
927
928static void svc_tcp_clear_pages(struct svc_sock *svsk)
929{
930 unsigned int i, len, npages;
931
J. Bruce Fields8af345f2012-12-03 16:45:35 -0500932 if (svsk->sk_datalen == 0)
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800933 goto out;
J. Bruce Fields8af345f2012-12-03 16:45:35 -0500934 len = svsk->sk_datalen;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800935 npages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
936 for (i = 0; i < npages; i++) {
J. Bruce Fieldscf3aa022013-06-26 11:09:06 -0400937 if (svsk->sk_pages[i] == NULL) {
938 WARN_ON_ONCE(1);
939 continue;
940 }
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800941 put_page(svsk->sk_pages[i]);
942 svsk->sk_pages[i] = NULL;
943 }
944out:
945 svsk->sk_tcplen = 0;
J. Bruce Fields8af345f2012-12-03 16:45:35 -0500946 svsk->sk_datalen = 0;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800947}
948
Tom Tuckerf9f3cc42007-12-30 21:07:40 -0600949/*
J. Bruce Fieldsad46ccf2012-12-03 16:30:42 -0500950 * Receive fragment record header.
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300951 * If we haven't gotten the record length yet, get the next four bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 */
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300953static int svc_tcp_recv_record(struct svc_sock *svsk, struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Tom Tuckerbb5cf162007-12-30 21:07:50 -0600955 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
Trond Myklebust5ee78d42009-05-18 17:47:56 -0400956 unsigned int want;
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300957 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Chuck Leverc0401ea2008-04-14 12:27:30 -0400959 if (svsk->sk_tcplen < sizeof(rpc_fraghdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 struct kvec iov;
961
Trond Myklebust5ee78d42009-05-18 17:47:56 -0400962 want = sizeof(rpc_fraghdr) - svsk->sk_tcplen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen;
964 iov.iov_len = want;
965 if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0)
966 goto error;
967 svsk->sk_tcplen += len;
968
969 if (len < want) {
Chuck Leverc0401ea2008-04-14 12:27:30 -0400970 dprintk("svc: short recvfrom while reading record "
971 "length (%d of %d)\n", len, want);
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800972 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974
J. Bruce Fieldscc248d42012-12-03 16:11:13 -0500975 dprintk("svc: TCP record, %d bytes\n", svc_sock_reclen(svsk));
J. Bruce Fields836fbad2012-12-03 15:50:38 -0500976 if (svc_sock_reclen(svsk) + svsk->sk_datalen >
977 serv->sv_max_mesg) {
J. Bruce Fields3a28e332012-12-10 18:15:07 -0500978 net_notice_ratelimited("RPC: fragment too large: %d\n",
979 svc_sock_reclen(svsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 goto err_delete;
981 }
982 }
983
J. Bruce Fieldscc248d42012-12-03 16:11:13 -0500984 return svc_sock_reclen(svsk);
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800985error:
986 dprintk("RPC: TCP recv_record got %d\n", len);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300987 return len;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -0800988err_delete:
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300989 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +0300990 return -EAGAIN;
991}
992
Trond Myklebust586c52c2009-05-18 17:47:56 -0400993static int receive_cb_reply(struct svc_sock *svsk, struct svc_rqst *rqstp)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300994{
Trond Myklebust586c52c2009-05-18 17:47:56 -0400995 struct rpc_xprt *bc_xprt = svsk->sk_xprt.xpt_bc_xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300996 struct rpc_rqst *req = NULL;
Trond Myklebust586c52c2009-05-18 17:47:56 -0400997 struct kvec *src, *dst;
998 __be32 *p = (__be32 *)rqstp->rq_arg.head[0].iov_base;
J. Bruce Fields48e65552011-02-14 14:52:03 -0500999 __be32 xid;
1000 __be32 calldir;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001001
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001002 xid = *p++;
1003 calldir = *p;
1004
Trond Myklebust093a1462014-11-12 18:04:04 -05001005 if (!bc_xprt)
Trond Myklebust586c52c2009-05-18 17:47:56 -04001006 return -EAGAIN;
Trond Myklebustce7c2522017-08-16 15:30:35 -04001007 spin_lock(&bc_xprt->recv_lock);
Trond Myklebust093a1462014-11-12 18:04:04 -05001008 req = xprt_lookup_rqst(bc_xprt, xid);
1009 if (!req)
1010 goto unlock_notfound;
Trond Myklebust586c52c2009-05-18 17:47:56 -04001011
1012 memcpy(&req->rq_private_buf, &req->rq_rcv_buf, sizeof(struct xdr_buf));
1013 /*
1014 * XXX!: cheating for now! Only copying HEAD.
1015 * But we know this is good enough for now (in fact, for any
1016 * callback reply in the forseeable future).
1017 */
1018 dst = &req->rq_private_buf.head[0];
1019 src = &rqstp->rq_arg.head[0];
1020 if (dst->iov_len < src->iov_len)
Trond Myklebust093a1462014-11-12 18:04:04 -05001021 goto unlock_eagain; /* whatever; just giving up. */
Trond Myklebust586c52c2009-05-18 17:47:56 -04001022 memcpy(dst->iov_base, src->iov_base, src->iov_len);
J. Bruce Fieldscc248d42012-12-03 16:11:13 -05001023 xprt_complete_rqst(req->rq_task, rqstp->rq_arg.len);
Trond Myklebust586c52c2009-05-18 17:47:56 -04001024 rqstp->rq_arg.len = 0;
Trond Myklebustce7c2522017-08-16 15:30:35 -04001025 spin_unlock(&bc_xprt->recv_lock);
Trond Myklebust586c52c2009-05-18 17:47:56 -04001026 return 0;
Trond Myklebust093a1462014-11-12 18:04:04 -05001027unlock_notfound:
1028 printk(KERN_NOTICE
1029 "%s: Got unrecognized reply: "
1030 "calldir 0x%x xpt_bc_xprt %p xid %08x\n",
1031 __func__, ntohl(calldir),
1032 bc_xprt, ntohl(xid));
1033unlock_eagain:
Trond Myklebustce7c2522017-08-16 15:30:35 -04001034 spin_unlock(&bc_xprt->recv_lock);
Trond Myklebust093a1462014-11-12 18:04:04 -05001035 return -EAGAIN;
Trond Myklebust586c52c2009-05-18 17:47:56 -04001036}
1037
1038static int copy_pages_to_kvecs(struct kvec *vec, struct page **pages, int len)
1039{
1040 int i = 0;
1041 int t = 0;
1042
1043 while (t < len) {
1044 vec[i].iov_base = page_address(pages[i]);
1045 vec[i].iov_len = PAGE_SIZE;
1046 i++;
1047 t += PAGE_SIZE;
1048 }
1049 return i;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001050}
1051
J. Bruce Fields836fbad2012-12-03 15:50:38 -05001052static void svc_tcp_fragment_received(struct svc_sock *svsk)
1053{
1054 /* If we have more data, signal svc_xprt_enqueue() to try again */
J. Bruce Fields836fbad2012-12-03 15:50:38 -05001055 dprintk("svc: TCP %s record (%d bytes)\n",
1056 svc_sock_final_rec(svsk) ? "final" : "nonfinal",
1057 svc_sock_reclen(svsk));
1058 svsk->sk_tcplen = 0;
1059 svsk->sk_reclen = 0;
1060}
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001061
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001062/*
1063 * Receive data from a TCP socket.
1064 */
1065static int svc_tcp_recvfrom(struct svc_rqst *rqstp)
1066{
1067 struct svc_sock *svsk =
1068 container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt);
1069 struct svc_serv *serv = svsk->sk_xprt.xpt_server;
1070 int len;
1071 struct kvec *vec;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001072 unsigned int want, base;
Trond Myklebust586c52c2009-05-18 17:47:56 -04001073 __be32 *p;
1074 __be32 calldir;
Trond Myklebust5ee78d42009-05-18 17:47:56 -04001075 int pnum;
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001076
1077 dprintk("svc: tcp_recv %p data %d conn %d close %d\n",
1078 svsk, test_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags),
1079 test_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags),
1080 test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags));
1081
1082 len = svc_tcp_recv_record(svsk, rqstp);
1083 if (len < 0)
1084 goto error;
1085
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001086 base = svc_tcp_restore_pages(svsk, rqstp);
J. Bruce Fields836fbad2012-12-03 15:50:38 -05001087 want = svc_sock_reclen(svsk) - (svsk->sk_tcplen - sizeof(rpc_fraghdr));
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001088
NeilBrown3cc03b12006-10-04 02:15:47 -07001089 vec = rqstp->rq_vec;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001090
Trond Myklebust586c52c2009-05-18 17:47:56 -04001091 pnum = copy_pages_to_kvecs(&vec[0], &rqstp->rq_pages[0],
J. Bruce Fields836fbad2012-12-03 15:50:38 -05001092 svsk->sk_datalen + want);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001093
NeilBrown44524352006-10-04 02:15:46 -07001094 rqstp->rq_respages = &rqstp->rq_pages[pnum];
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05001095 rqstp->rq_next_page = rqstp->rq_respages + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 /* Now receive data */
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001098 len = svc_partial_recvfrom(rqstp, vec, pnum, want, base);
J. Bruce Fields8af345f2012-12-03 16:45:35 -05001099 if (len >= 0) {
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001100 svsk->sk_tcplen += len;
J. Bruce Fields8af345f2012-12-03 16:45:35 -05001101 svsk->sk_datalen += len;
1102 }
J. Bruce Fields836fbad2012-12-03 15:50:38 -05001103 if (len != want || !svc_sock_final_rec(svsk)) {
J. Bruce Fieldsbe1e4442012-08-09 18:12:28 -04001104 svc_tcp_save_pages(svsk, rqstp);
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001105 if (len < 0 && len != -EAGAIN)
J. Bruce Fieldsad46ccf2012-12-03 16:30:42 -05001106 goto err_delete;
J. Bruce Fields836fbad2012-12-03 15:50:38 -05001107 if (len == want)
1108 svc_tcp_fragment_received(svsk);
1109 else
J. Bruce Fields3a28e332012-12-10 18:15:07 -05001110 dprintk("svc: incomplete TCP record (%d of %d)\n",
1111 (int)(svsk->sk_tcplen - sizeof(rpc_fraghdr)),
J. Bruce Fields836fbad2012-12-03 15:50:38 -05001112 svc_sock_reclen(svsk));
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001113 goto err_noclose;
1114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
J. Bruce Fields1f691b02013-06-26 10:55:40 -04001116 if (svsk->sk_datalen < 8) {
J. Bruce Fieldscf3aa022013-06-26 11:09:06 -04001117 svsk->sk_datalen = 0;
J. Bruce Fieldsad46ccf2012-12-03 16:30:42 -05001118 goto err_delete; /* client is nuts. */
J. Bruce Fieldscf3aa022013-06-26 11:09:06 -04001119 }
J. Bruce Fieldsad46ccf2012-12-03 16:30:42 -05001120
J. Bruce Fields836fbad2012-12-03 15:50:38 -05001121 rqstp->rq_arg.len = svsk->sk_datalen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 rqstp->rq_arg.page_base = 0;
Trond Myklebust5ee78d42009-05-18 17:47:56 -04001123 if (rqstp->rq_arg.len <= rqstp->rq_arg.head[0].iov_len) {
1124 rqstp->rq_arg.head[0].iov_len = rqstp->rq_arg.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 rqstp->rq_arg.page_len = 0;
Trond Myklebust5ee78d42009-05-18 17:47:56 -04001126 } else
1127 rqstp->rq_arg.page_len = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Tom Tucker5148bf42007-12-30 21:07:25 -06001129 rqstp->rq_xprt_ctxt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 rqstp->rq_prot = IPPROTO_TCP;
Jeff Layton7501cc22014-11-19 07:51:15 -05001131 if (test_bit(XPT_LOCAL, &svsk->sk_xprt.xpt_flags))
1132 set_bit(RQ_LOCAL, &rqstp->rq_flags);
1133 else
1134 clear_bit(RQ_LOCAL, &rqstp->rq_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Trond Myklebust586c52c2009-05-18 17:47:56 -04001136 p = (__be32 *)rqstp->rq_arg.head[0].iov_base;
1137 calldir = p[1];
J. Bruce Fields8985ef02011-04-09 10:03:10 -04001138 if (calldir)
Trond Myklebust586c52c2009-05-18 17:47:56 -04001139 len = receive_cb_reply(svsk, rqstp);
Trond Myklebust586c52c2009-05-18 17:47:56 -04001140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 /* Reset TCP read info */
J. Bruce Fields8af345f2012-12-03 16:45:35 -05001142 svsk->sk_datalen = 0;
J. Bruce Fields836fbad2012-12-03 15:50:38 -05001143 svc_tcp_fragment_received(svsk);
Trond Myklebust0601f792009-05-18 17:47:56 -04001144
J. Bruce Fields8985ef02011-04-09 10:03:10 -04001145 if (len < 0)
1146 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Tom Tucker9dbc2402007-12-30 21:08:12 -06001148 svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if (serv->sv_stats)
1150 serv->sv_stats->nettcpcnt++;
1151
Trond Myklebust5ee78d42009-05-18 17:47:56 -04001152 return rqstp->rq_arg.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Alexandros Batsakis8f55f3c2009-08-20 03:34:19 +03001154error:
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001155 if (len != -EAGAIN)
J. Bruce Fieldsad46ccf2012-12-03 16:30:42 -05001156 goto err_delete;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001157 dprintk("RPC: TCP recvfrom got EAGAIN\n");
J. Bruce Fields9f9d2eb2012-08-17 21:35:24 -04001158 return 0;
J. Bruce Fieldsad46ccf2012-12-03 16:30:42 -05001159err_delete:
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001160 printk(KERN_NOTICE "%s: recvfrom returned errno %d\n",
1161 svsk->sk_xprt.xpt_server->sv_name, -len);
1162 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
1163err_noclose:
J. Bruce Fields9f9d2eb2012-08-17 21:35:24 -04001164 return 0; /* record not complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
1167/*
1168 * Send out data on TCP socket.
1169 */
Tom Tucker0f0257e2007-12-30 21:08:27 -06001170static int svc_tcp_sendto(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
1172 struct xdr_buf *xbufp = &rqstp->rq_res;
1173 int sent;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001174 __be32 reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 /* Set up the first element of the reply kvec.
1177 * Any other kvecs that may be in use have been taken
1178 * care of by the server implementation itself.
1179 */
1180 reclen = htonl(0x80000000|((xbufp->len ) - 4));
1181 memcpy(xbufp->head[0].iov_base, &reclen, 4);
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 sent = svc_sendto(rqstp, &rqstp->rq_res);
1184 if (sent != xbufp->len) {
Tom Tucker0f0257e2007-12-30 21:08:27 -06001185 printk(KERN_NOTICE
1186 "rpc-srv/tcp: %s: %s %d when sending %d bytes "
1187 "- shutting down socket\n",
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001188 rqstp->rq_xprt->xpt_server->sv_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 (sent<0)?"got error":"sent only",
1190 sent, xbufp->len);
Tom Tucker57b1d3b2007-12-30 21:08:22 -06001191 set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags);
Tom Tuckerf6150c32007-12-30 21:07:57 -06001192 svc_xprt_enqueue(rqstp->rq_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 sent = -EAGAIN;
1194 }
1195 return sent;
1196}
1197
Tom Tuckere831fe62007-12-30 21:07:29 -06001198/*
1199 * Setup response header. TCP has a 4B record length field.
1200 */
1201static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp)
1202{
1203 struct kvec *resv = &rqstp->rq_res.head[0];
1204
1205 /* tcp needs a space for the record length... */
1206 svc_putnl(resv, 0);
1207}
1208
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001209static struct svc_xprt *svc_tcp_create(struct svc_serv *serv,
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001210 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001211 struct sockaddr *sa, int salen,
1212 int flags)
1213{
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001214 return svc_create_socket(serv, IPPROTO_TCP, net, sa, salen, flags);
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001215}
1216
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001217#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Andy Adamson1f11a032011-01-06 02:04:26 +00001218static struct svc_xprt *svc_bc_create_socket(struct svc_serv *, int,
1219 struct net *, struct sockaddr *,
1220 int, int);
1221static void svc_bc_sock_free(struct svc_xprt *xprt);
1222
1223static struct svc_xprt *svc_bc_tcp_create(struct svc_serv *serv,
1224 struct net *net,
1225 struct sockaddr *sa, int salen,
1226 int flags)
1227{
1228 return svc_bc_create_socket(serv, IPPROTO_TCP, net, sa, salen, flags);
1229}
1230
1231static void svc_bc_tcp_sock_detach(struct svc_xprt *xprt)
1232{
1233}
1234
Chuck Lever2412e922017-08-01 11:59:49 -04001235static const struct svc_xprt_ops svc_tcp_bc_ops = {
Andy Adamson1f11a032011-01-06 02:04:26 +00001236 .xpo_create = svc_bc_tcp_create,
1237 .xpo_detach = svc_bc_tcp_sock_detach,
1238 .xpo_free = svc_bc_sock_free,
1239 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
Chuck Lever16e4d932014-05-19 13:40:22 -04001240 .xpo_secure_port = svc_sock_secure_port,
Andy Adamson1f11a032011-01-06 02:04:26 +00001241};
1242
1243static struct svc_xprt_class svc_tcp_bc_class = {
1244 .xcl_name = "tcp-bc",
1245 .xcl_owner = THIS_MODULE,
1246 .xcl_ops = &svc_tcp_bc_ops,
1247 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
1248};
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001249
1250static void svc_init_bc_xprt_sock(void)
1251{
1252 svc_reg_xprt_class(&svc_tcp_bc_class);
1253}
1254
1255static void svc_cleanup_bc_xprt_sock(void)
1256{
1257 svc_unreg_xprt_class(&svc_tcp_bc_class);
1258}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001259#else /* CONFIG_SUNRPC_BACKCHANNEL */
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001260static void svc_init_bc_xprt_sock(void)
1261{
1262}
1263
1264static void svc_cleanup_bc_xprt_sock(void)
1265{
1266}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001267#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Andy Adamson1f11a032011-01-06 02:04:26 +00001268
Chuck Lever2412e922017-08-01 11:59:49 -04001269static const struct svc_xprt_ops svc_tcp_ops = {
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001270 .xpo_create = svc_tcp_create,
Tom Tucker5d137992007-12-30 21:07:23 -06001271 .xpo_recvfrom = svc_tcp_recvfrom,
1272 .xpo_sendto = svc_tcp_sendto,
Tom Tucker5148bf42007-12-30 21:07:25 -06001273 .xpo_release_rqst = svc_release_skb,
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001274 .xpo_detach = svc_tcp_sock_detach,
Tom Tucker755ccea2007-12-30 21:07:27 -06001275 .xpo_free = svc_sock_free,
Tom Tuckere831fe62007-12-30 21:07:29 -06001276 .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr,
Tom Tucker323bee32007-12-30 21:07:31 -06001277 .xpo_has_wspace = svc_tcp_has_wspace,
Tom Tucker38a417c2007-12-30 21:07:36 -06001278 .xpo_accept = svc_tcp_accept,
Chuck Lever16e4d932014-05-19 13:40:22 -04001279 .xpo_secure_port = svc_sock_secure_port,
Scott Mayhewea08e392016-11-11 13:16:22 -05001280 .xpo_kill_temp_xprt = svc_tcp_kill_temp_xprt,
Tom Tucker360d87382007-12-30 21:07:17 -06001281};
1282
1283static struct svc_xprt_class svc_tcp_class = {
1284 .xcl_name = "tcp",
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001285 .xcl_owner = THIS_MODULE,
Tom Tucker360d87382007-12-30 21:07:17 -06001286 .xcl_ops = &svc_tcp_ops,
Tom Tucker49023152007-12-30 21:07:21 -06001287 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
Chuck Lever3c45ddf2014-07-16 15:38:32 -04001288 .xcl_ident = XPRT_TRANSPORT_TCP,
Tom Tucker360d87382007-12-30 21:07:17 -06001289};
1290
1291void svc_init_xprt_sock(void)
1292{
1293 svc_reg_xprt_class(&svc_tcp_class);
1294 svc_reg_xprt_class(&svc_udp_class);
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001295 svc_init_bc_xprt_sock();
Tom Tucker360d87382007-12-30 21:07:17 -06001296}
1297
1298void svc_cleanup_xprt_sock(void)
1299{
1300 svc_unreg_xprt_class(&svc_tcp_class);
1301 svc_unreg_xprt_class(&svc_udp_class);
Andy Adamson16b2d1e2011-01-06 02:04:27 +00001302 svc_cleanup_bc_xprt_sock();
Tom Tucker360d87382007-12-30 21:07:17 -06001303}
1304
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001305static void svc_tcp_init(struct svc_sock *svsk, struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
1307 struct sock *sk = svsk->sk_sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Stanislav Kinsburskybd4620d2011-12-06 14:19:10 +03001309 svc_xprt_init(sock_net(svsk->sk_sock->sk), &svc_tcp_class,
1310 &svsk->sk_xprt, serv);
Tom Tuckerdef13d72007-12-30 21:08:08 -06001311 set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags);
Jeff Layton362142b22017-02-24 13:25:23 -05001312 set_bit(XPT_CONG_CTRL, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 if (sk->sk_state == TCP_LISTEN) {
1314 dprintk("setting up TCP socket for listening\n");
Chuck Leverece200d2018-03-27 10:51:00 -04001315 strcpy(svsk->sk_xprt.xpt_remotebuf, "listener");
Tom Tucker02fc6c32007-12-30 21:07:48 -06001316 set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 sk->sk_data_ready = svc_tcp_listen_data_ready;
Tom Tucker02fc6c32007-12-30 21:07:48 -06001318 set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 } else {
1320 dprintk("setting up TCP socket for reading\n");
1321 sk->sk_state_change = svc_tcp_state_change;
Trond Myklebustfa9251a2016-06-24 10:55:48 -04001322 sk->sk_data_ready = svc_data_ready;
Trond Myklebust637600f2016-06-24 10:55:51 -04001323 sk->sk_write_space = svc_write_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
1325 svsk->sk_reclen = 0;
1326 svsk->sk_tcplen = 0;
J. Bruce Fields8af345f2012-12-03 16:45:35 -05001327 svsk->sk_datalen = 0;
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001328 memset(&svsk->sk_pages[0], 0, sizeof(svsk->sk_pages));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Chuck Leverb7872fe2008-04-14 12:27:01 -04001330 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Tom Tucker02fc6c32007-12-30 21:07:48 -06001332 set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags);
Trond Myklebustb2f21f72016-07-26 09:51:19 -04001333 switch (sk->sk_state) {
1334 case TCP_SYN_RECV:
1335 case TCP_ESTABLISHED:
1336 break;
1337 default:
Tom Tucker02fc6c32007-12-30 21:07:48 -06001338 set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags);
Trond Myklebustb2f21f72016-07-26 09:51:19 -04001339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
1341}
1342
Tom Tucker0f0257e2007-12-30 21:08:27 -06001343void svc_sock_update_bufs(struct svc_serv *serv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
1345 /*
1346 * The number of server threads has changed. Update
1347 * rcvbuf and sndbuf accordingly on all sockets
1348 */
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001349 struct svc_sock *svsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 spin_lock_bh(&serv->sv_lock);
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +04001352 list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list)
Tom Tucker02fc6c32007-12-30 21:07:48 -06001353 set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 spin_unlock_bh(&serv->sv_lock);
1355}
Trond Myklebust24c37672008-12-23 16:30:12 -05001356EXPORT_SYMBOL_GPL(svc_sock_update_bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
1358/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 * Initialize socket for RPC use and create svc_sock struct
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 */
Chuck Lever6b174332007-02-12 00:53:28 -08001361static struct svc_sock *svc_setup_socket(struct svc_serv *serv,
1362 struct socket *sock,
J. Bruce Fields72c35372012-08-13 17:46:17 -04001363 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
1365 struct svc_sock *svsk;
1366 struct sock *inet;
Chuck Lever6b174332007-02-12 00:53:28 -08001367 int pmap_register = !(flags & SVC_SOCK_ANONYMOUS);
J. Bruce Fields72c35372012-08-13 17:46:17 -04001368 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 dprintk("svc: svc_setup_socket %p\n", sock);
J. Bruce Fields72c35372012-08-13 17:46:17 -04001371 svsk = kzalloc(sizeof(*svsk), GFP_KERNEL);
1372 if (!svsk)
1373 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375 inet = sock->sk;
1376
1377 /* Register socket with portmapper */
J. Bruce Fields72c35372012-08-13 17:46:17 -04001378 if (pmap_register)
1379 err = svc_register(serv, sock_net(sock->sk), inet->sk_family,
Stanislav Kinsbursky5247fab2012-01-13 14:02:48 +04001380 inet->sk_protocol,
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001381 ntohs(inet_sk(inet)->inet_sport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
J. Bruce Fields72c35372012-08-13 17:46:17 -04001383 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 kfree(svsk);
J. Bruce Fields72c35372012-08-13 17:46:17 -04001385 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 svsk->sk_sock = sock;
1389 svsk->sk_sk = inet;
1390 svsk->sk_ostate = inet->sk_state_change;
1391 svsk->sk_odata = inet->sk_data_ready;
1392 svsk->sk_owspace = inet->sk_write_space;
Vadim Lomovtseveebe53e2017-08-21 07:23:07 -04001393 /*
1394 * This barrier is necessary in order to prevent race condition
1395 * with svc_data_ready(), svc_listen_data_ready() and others
1396 * when calling callbacks above.
1397 */
1398 wmb();
1399 inet->sk_user_data = svsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 /* Initialize the socket */
1402 if (sock->type == SOCK_DGRAM)
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001403 svc_udp_init(svsk, serv);
Trond Myklebust637600f2016-06-24 10:55:51 -04001404 else
Tom Tuckerbb5cf162007-12-30 21:07:50 -06001405 svc_tcp_init(svsk, serv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Trond Myklebustc7995f82016-07-26 09:51:20 -04001407 dprintk("svc: svc_setup_socket created %p (inet %p), "
1408 "listen %d close %d\n",
1409 svsk, svsk->sk_sk,
1410 test_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags),
1411 test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 return svsk;
1414}
1415
Stanislav Kinsbursky30646392014-02-26 16:50:01 +03001416bool svc_alien_sock(struct net *net, int fd)
1417{
1418 int err;
1419 struct socket *sock = sockfd_lookup(fd, &err);
1420 bool ret = false;
1421
1422 if (!sock)
1423 goto out;
1424 if (sock_net(sock->sk) != net)
1425 ret = true;
1426 sockfd_put(sock);
1427out:
1428 return ret;
1429}
1430EXPORT_SYMBOL_GPL(svc_alien_sock);
1431
Chuck Leverbfba9ab2009-04-23 19:32:33 -04001432/**
1433 * svc_addsock - add a listener socket to an RPC service
1434 * @serv: pointer to RPC service to which to add a new listener
1435 * @fd: file descriptor of the new listener
1436 * @name_return: pointer to buffer to fill in with name of listener
1437 * @len: size of the buffer
1438 *
1439 * Fills in socket name and returns positive length of name if successful.
1440 * Name is terminated with '\n'. On error, returns a negative errno
1441 * value.
1442 */
1443int svc_addsock(struct svc_serv *serv, const int fd, char *name_return,
1444 const size_t len)
NeilBrownb41b66d2006-10-02 02:17:48 -07001445{
1446 int err = 0;
1447 struct socket *so = sockfd_lookup(fd, &err);
1448 struct svc_sock *svsk = NULL;
J. Bruce Fieldsa8e10072012-08-13 18:01:03 -04001449 struct sockaddr_storage addr;
1450 struct sockaddr *sin = (struct sockaddr *)&addr;
1451 int salen;
NeilBrownb41b66d2006-10-02 02:17:48 -07001452
1453 if (!so)
1454 return err;
J. Bruce Fieldsa8e10072012-08-13 18:01:03 -04001455 err = -EAFNOSUPPORT;
Aime Le Rouzic205ba422010-01-26 14:03:56 -05001456 if ((so->sk->sk_family != PF_INET) && (so->sk->sk_family != PF_INET6))
J. Bruce Fieldsa8e10072012-08-13 18:01:03 -04001457 goto out;
1458 err = -EPROTONOSUPPORT;
1459 if (so->sk->sk_protocol != IPPROTO_TCP &&
NeilBrownb41b66d2006-10-02 02:17:48 -07001460 so->sk->sk_protocol != IPPROTO_UDP)
J. Bruce Fieldsa8e10072012-08-13 18:01:03 -04001461 goto out;
1462 err = -EISCONN;
1463 if (so->state > SS_UNCONNECTED)
1464 goto out;
1465 err = -ENOENT;
1466 if (!try_module_get(THIS_MODULE))
1467 goto out;
1468 svsk = svc_setup_socket(serv, so, SVC_SOCK_DEFAULTS);
1469 if (IS_ERR(svsk)) {
1470 module_put(THIS_MODULE);
1471 err = PTR_ERR(svsk);
1472 goto out;
NeilBrownb41b66d2006-10-02 02:17:48 -07001473 }
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001474 salen = kernel_getsockname(svsk->sk_sock, sin);
1475 if (salen >= 0)
J. Bruce Fieldsa8e10072012-08-13 18:01:03 -04001476 svc_xprt_set_local(&svsk->sk_xprt, sin, salen);
J. Bruce Fields39b55302012-08-14 15:50:34 -04001477 svc_add_new_perm_xprt(serv, &svsk->sk_xprt);
Chuck Levere7942b92009-04-23 19:32:48 -04001478 return svc_one_sock_name(svsk, name_return, len);
J. Bruce Fieldsa8e10072012-08-13 18:01:03 -04001479out:
1480 sockfd_put(so);
1481 return err;
NeilBrownb41b66d2006-10-02 02:17:48 -07001482}
1483EXPORT_SYMBOL_GPL(svc_addsock);
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485/*
1486 * Create socket for RPC service.
1487 */
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001488static struct svc_xprt *svc_create_socket(struct svc_serv *serv,
1489 int protocol,
Pavel Emelyanov62832c02010-09-29 16:04:18 +04001490 struct net *net,
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001491 struct sockaddr *sin, int len,
1492 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
1494 struct svc_sock *svsk;
1495 struct socket *sock;
1496 int error;
1497 int type;
Tom Tucker9dbc2402007-12-30 21:08:12 -06001498 struct sockaddr_storage addr;
1499 struct sockaddr *newsin = (struct sockaddr *)&addr;
1500 int newlen;
Trond Myklebustc69da772009-03-30 18:59:17 -04001501 int family;
1502 int val;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +03001503 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Chuck Leverad06e4b2007-02-12 00:53:32 -08001505 dprintk("svc: svc_create_socket(%s, %d, %s)\n",
1506 serv->sv_program->pg_name, protocol,
Chuck Lever77f1f672007-02-12 00:53:39 -08001507 __svc_print_addr(sin, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509 if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
1510 printk(KERN_WARNING "svc: only UDP and TCP "
1511 "sockets supported\n");
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001512 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Trond Myklebustc69da772009-03-30 18:59:17 -04001515 type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;
1516 switch (sin->sa_family) {
1517 case AF_INET6:
1518 family = PF_INET6;
1519 break;
1520 case AF_INET:
1521 family = PF_INET;
1522 break;
1523 default:
1524 return ERR_PTR(-EINVAL);
1525 }
1526
Pavel Emelyanov14ec63c2010-09-29 16:06:57 +04001527 error = __sock_create(net, family, type, protocol, &sock, 1);
Chuck Lever77f1f672007-02-12 00:53:39 -08001528 if (error < 0)
Tom Tuckerb700cbb2007-12-30 21:07:42 -06001529 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Peter Zijlstraed075362006-12-06 20:35:24 -08001531 svc_reclassify_socket(sock);
1532
Trond Myklebustc69da772009-03-30 18:59:17 -04001533 /*
1534 * If this is an PF_INET6 listener, we want to avoid
1535 * getting requests from IPv4 remotes. Those should
1536 * be shunted to a PF_INET listener via rpcbind.
1537 */
1538 val = 1;
1539 if (family == PF_INET6)
1540 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
1541 (char *)&val, sizeof(val));
1542
Eric Sesterhenn18114742006-09-28 14:37:07 -07001543 if (type == SOCK_STREAM)
Pavel Emelyanov4a17fd52012-04-19 03:39:36 +00001544 sock->sk->sk_reuse = SK_CAN_REUSE; /* allow address reuse */
Chuck Lever77f1f672007-02-12 00:53:39 -08001545 error = kernel_bind(sock, sin, len);
Eric Sesterhenn18114742006-09-28 14:37:07 -07001546 if (error < 0)
1547 goto bummer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001549 error = kernel_getsockname(sock, newsin);
Tom Tucker9dbc2402007-12-30 21:08:12 -06001550 if (error < 0)
1551 goto bummer;
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001552 newlen = error;
Tom Tucker9dbc2402007-12-30 21:08:12 -06001553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 if (protocol == IPPROTO_TCP) {
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001555 if ((error = kernel_listen(sock, 64)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 goto bummer;
1557 }
1558
J. Bruce Fields72c35372012-08-13 17:46:17 -04001559 svsk = svc_setup_socket(serv, sock, flags);
J. Bruce Fieldsa8e10072012-08-13 18:01:03 -04001560 if (IS_ERR(svsk)) {
1561 error = PTR_ERR(svsk);
1562 goto bummer;
NeilBrowne79eff12007-02-12 00:53:30 -08001563 }
J. Bruce Fieldsa8e10072012-08-13 18:01:03 -04001564 svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen);
1565 return (struct svc_xprt *)svsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566bummer:
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;
1580
1581 dprintk("svc: svc_sock_detach(%p)\n", svsk);
1582
1583 /* put back the old socket callbacks */
Trond Myklebust069c2252016-06-24 10:55:47 -04001584 lock_sock(sk);
Tom Tucker755ccea2007-12-30 21:07:27 -06001585 sk->sk_state_change = svsk->sk_ostate;
1586 sk->sk_data_ready = svsk->sk_odata;
1587 sk->sk_write_space = svsk->sk_owspace;
Trond Myklebust069c2252016-06-24 10:55:47 -04001588 sk->sk_user_data = NULL;
1589 release_sock(sk);
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001590}
1591
1592/*
1593 * Disconnect the socket, and reset the callbacks
1594 */
1595static void svc_tcp_sock_detach(struct svc_xprt *xprt)
1596{
1597 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1598
1599 dprintk("svc: svc_tcp_sock_detach(%p)\n", svsk);
1600
1601 svc_sock_detach(xprt);
1602
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001603 if (!test_bit(XPT_LISTENER, &xprt->xpt_flags)) {
1604 svc_tcp_clear_pages(svsk);
Trond Myklebust69b6ba32008-12-23 16:30:11 -05001605 kernel_sock_shutdown(svsk->sk_sock, SHUT_RDWR);
J. Bruce Fields31d68ef2011-02-24 11:25:33 -08001606 }
Tom Tucker755ccea2007-12-30 21:07:27 -06001607}
1608
1609/*
1610 * Free the svc_sock's socket resources and the svc_sock itself.
1611 */
1612static void svc_sock_free(struct svc_xprt *xprt)
1613{
1614 struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt);
1615 dprintk("svc: svc_sock_free(%p)\n", svsk);
1616
Tom Tucker755ccea2007-12-30 21:07:27 -06001617 if (svsk->sk_sock->file)
1618 sockfd_put(svsk->sk_sock);
1619 else
1620 sock_release(svsk->sk_sock);
1621 kfree(svsk);
1622}
Benny Halevy7652e5a2009-04-01 09:23:09 -04001623
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001624#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001625/*
Andy Adamson1f11a032011-01-06 02:04:26 +00001626 * Create a back channel svc_xprt which shares the fore channel socket.
Benny Halevy7652e5a2009-04-01 09:23:09 -04001627 */
Andy Adamson1f11a032011-01-06 02:04:26 +00001628static struct svc_xprt *svc_bc_create_socket(struct svc_serv *serv,
1629 int protocol,
1630 struct net *net,
1631 struct sockaddr *sin, int len,
1632 int flags)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001633{
1634 struct svc_sock *svsk;
Andy Adamson1f11a032011-01-06 02:04:26 +00001635 struct svc_xprt *xprt;
Benny Halevy7652e5a2009-04-01 09:23:09 -04001636
Andy Adamson1f11a032011-01-06 02:04:26 +00001637 if (protocol != IPPROTO_TCP) {
1638 printk(KERN_WARNING "svc: only TCP sockets"
1639 " supported on shared back channel\n");
1640 return ERR_PTR(-EINVAL);
1641 }
1642
Benny Halevy7652e5a2009-04-01 09:23:09 -04001643 svsk = kzalloc(sizeof(*svsk), GFP_KERNEL);
1644 if (!svsk)
Andy Adamson1f11a032011-01-06 02:04:26 +00001645 return ERR_PTR(-ENOMEM);
Benny Halevy7652e5a2009-04-01 09:23:09 -04001646
1647 xprt = &svsk->sk_xprt;
Stanislav Kinsburskybd4620d2011-12-06 14:19:10 +03001648 svc_xprt_init(net, &svc_tcp_bc_class, xprt, serv);
Kinglong Mee54272902017-03-07 17:22:43 +08001649 set_bit(XPT_CONG_CTRL, &svsk->sk_xprt.xpt_flags);
Andy Adamson1f11a032011-01-06 02:04:26 +00001650
Andy Adamson4a19de02011-01-06 02:04:35 +00001651 serv->sv_bc_xprt = xprt;
Andy Adamson1f11a032011-01-06 02:04:26 +00001652
Benny Halevy7652e5a2009-04-01 09:23:09 -04001653 return xprt;
1654}
Benny Halevy7652e5a2009-04-01 09:23:09 -04001655
1656/*
Andy Adamson1f11a032011-01-06 02:04:26 +00001657 * Free a back channel svc_sock.
Benny Halevy7652e5a2009-04-01 09:23:09 -04001658 */
Andy Adamson1f11a032011-01-06 02:04:26 +00001659static void svc_bc_sock_free(struct svc_xprt *xprt)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001660{
Andy Adamson778be232011-01-25 15:38:01 +00001661 if (xprt)
Benny Halevy7652e5a2009-04-01 09:23:09 -04001662 kfree(container_of(xprt, struct svc_sock, sk_xprt));
1663}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001664#endif /* CONFIG_SUNRPC_BACKCHANNEL */