Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Tucker | f6150c3 | 2007-12-30 21:07:57 -0600 | [diff] [blame] | 8 | * svc_xprt_enqueue procedure... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
| 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ärvinen | 172589c | 2007-08-28 15:50:33 -0700 | [diff] [blame] | 22 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/sched.h> |
Paul Gortmaker | 3a9a231 | 2011-05-27 09:12:25 -0400 | [diff] [blame] | 24 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #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 Morton | 91483c4 | 2005-08-09 20:20:07 -0700 | [diff] [blame] | 31 | #include <linux/tcp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/unistd.h> |
| 33 | #include <linux/slab.h> |
| 34 | #include <linux/netdevice.h> |
| 35 | #include <linux/skbuff.h> |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 36 | #include <linux/file.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 37 | #include <linux/freezer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <net/sock.h> |
| 39 | #include <net/checksum.h> |
| 40 | #include <net/ip.h> |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 41 | #include <net/ipv6.h> |
Paolo Abeni | 850cbad | 2016-10-21 13:55:47 +0200 | [diff] [blame] | 42 | #include <net/udp.h> |
Chuck Lever | b7872fe | 2008-04-14 12:27:01 -0400 | [diff] [blame] | 43 | #include <net/tcp.h> |
Arnaldo Carvalho de Melo | c752f07 | 2005-08-09 20:08:28 -0700 | [diff] [blame] | 44 | #include <net/tcp_states.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 45 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <asm/ioctls.h> |
Eric Dumazet | 22911fc | 2012-06-27 00:23:44 +0000 | [diff] [blame] | 47 | #include <trace/events/skb.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | #include <linux/sunrpc/types.h> |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 50 | #include <linux/sunrpc/clnt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #include <linux/sunrpc/xdr.h> |
Chuck Lever | c0401ea | 2008-04-14 12:27:30 -0400 | [diff] [blame] | 52 | #include <linux/sunrpc/msg_prot.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #include <linux/sunrpc/svcsock.h> |
| 54 | #include <linux/sunrpc/stats.h> |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 55 | #include <linux/sunrpc/xprt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
H Hartley Sweeten | 177e4f9 | 2011-06-20 17:54:51 -0700 | [diff] [blame] | 57 | #include "sunrpc.h" |
| 58 | |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 59 | #define RPCDBG_FACILITY RPCDBG_SVCXPRT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | |
| 62 | static struct svc_sock *svc_setup_socket(struct svc_serv *, struct socket *, |
J. Bruce Fields | 72c3537 | 2012-08-13 17:46:17 -0400 | [diff] [blame] | 63 | int flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | static int svc_udp_recvfrom(struct svc_rqst *); |
| 65 | static int svc_udp_sendto(struct svc_rqst *); |
Tom Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 66 | static void svc_sock_detach(struct svc_xprt *); |
Trond Myklebust | 69b6ba3 | 2008-12-23 16:30:11 -0500 | [diff] [blame] | 67 | static void svc_tcp_sock_detach(struct svc_xprt *); |
Tom Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 68 | static void svc_sock_free(struct svc_xprt *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 70 | static struct svc_xprt *svc_create_socket(struct svc_serv *, int, |
Pavel Emelyanov | 62832c0 | 2010-09-29 16:04:18 +0400 | [diff] [blame] | 71 | struct net *, struct sockaddr *, |
| 72 | int, int); |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 73 | #if defined(CONFIG_SUNRPC_BACKCHANNEL) |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 74 | static struct svc_xprt *svc_bc_create_socket(struct svc_serv *, int, |
| 75 | struct net *, struct sockaddr *, |
| 76 | int, int); |
| 77 | static void svc_bc_sock_free(struct svc_xprt *xprt); |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 78 | #endif /* CONFIG_SUNRPC_BACKCHANNEL */ |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 79 | |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 80 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 81 | static struct lock_class_key svc_key[2]; |
| 82 | static struct lock_class_key svc_slock_key[2]; |
| 83 | |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 84 | static void svc_reclassify_socket(struct socket *sock) |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 85 | { |
| 86 | struct sock *sk = sock->sk; |
Weston Andros Adamson | 1b7a181 | 2012-10-23 10:43:39 -0400 | [diff] [blame] | 87 | |
Hannes Frederic Sowa | fafc4e1 | 2016-04-08 15:11:27 +0200 | [diff] [blame] | 88 | if (WARN_ON_ONCE(!sock_allow_reclassification(sk))) |
Weston Andros Adamson | 1b7a181 | 2012-10-23 10:43:39 -0400 | [diff] [blame] | 89 | return; |
| 90 | |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 91 | switch (sk->sk_family) { |
| 92 | case AF_INET: |
| 93 | sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD", |
Tom Tucker | def13d7 | 2007-12-30 21:08:08 -0600 | [diff] [blame] | 94 | &svc_slock_key[0], |
| 95 | "sk_xprt.xpt_lock-AF_INET-NFSD", |
| 96 | &svc_key[0]); |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 97 | break; |
| 98 | |
| 99 | case AF_INET6: |
| 100 | sock_lock_init_class_and_name(sk, "slock-AF_INET6-NFSD", |
Tom Tucker | def13d7 | 2007-12-30 21:08:08 -0600 | [diff] [blame] | 101 | &svc_slock_key[1], |
| 102 | "sk_xprt.xpt_lock-AF_INET6-NFSD", |
| 103 | &svc_key[1]); |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 104 | break; |
| 105 | |
| 106 | default: |
| 107 | BUG(); |
| 108 | } |
| 109 | } |
| 110 | #else |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 111 | static void svc_reclassify_socket(struct socket *sock) |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 112 | { |
| 113 | } |
| 114 | #endif |
| 115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | /* |
| 117 | * Release an skbuff after use |
| 118 | */ |
Tom Tucker | 5148bf4 | 2007-12-30 21:07:25 -0600 | [diff] [blame] | 119 | static void svc_release_skb(struct svc_rqst *rqstp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | { |
Tom Tucker | 5148bf4 | 2007-12-30 21:07:25 -0600 | [diff] [blame] | 121 | struct sk_buff *skb = rqstp->rq_xprt_ctxt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
| 123 | if (skb) { |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 124 | struct svc_sock *svsk = |
| 125 | container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt); |
Tom Tucker | 5148bf4 | 2007-12-30 21:07:25 -0600 | [diff] [blame] | 126 | rqstp->rq_xprt_ctxt = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
| 128 | dprintk("svc: service %p, releasing skb %p\n", rqstp, skb); |
Eric Dumazet | 9d410c7 | 2009-10-30 05:03:53 +0000 | [diff] [blame] | 129 | skb_free_datagram_locked(svsk->sk_sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | } |
| 132 | |
Paolo Abeni | 850cbad | 2016-10-21 13:55:47 +0200 | [diff] [blame] | 133 | static 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 Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 145 | union svc_pktinfo_u { |
| 146 | struct in_pktinfo pkti; |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 147 | struct in6_pktinfo pkti6; |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 148 | }; |
David S. Miller | bc375ea | 2007-04-12 13:35:59 -0700 | [diff] [blame] | 149 | #define SVC_PKTINFO_SPACE \ |
| 150 | CMSG_SPACE(sizeof(union svc_pktinfo_u)) |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 151 | |
| 152 | static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh) |
| 153 | { |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 154 | struct svc_sock *svsk = |
| 155 | container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt); |
| 156 | switch (svsk->sk_sk->sk_family) { |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 157 | 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 Jinlong | 849a1cf | 2011-08-30 17:18:41 +0800 | [diff] [blame] | 163 | pki->ipi_spec_dst.s_addr = |
| 164 | svc_daddr_in(rqstp)->sin_addr.s_addr; |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 165 | cmh->cmsg_len = CMSG_LEN(sizeof(*pki)); |
| 166 | } |
| 167 | break; |
NeilBrown | 5a05ed7 | 2007-03-06 01:42:22 -0800 | [diff] [blame] | 168 | |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 169 | case AF_INET6: { |
| 170 | struct in6_pktinfo *pki = CMSG_DATA(cmh); |
Mi Jinlong | 849a1cf | 2011-08-30 17:18:41 +0800 | [diff] [blame] | 171 | struct sockaddr_in6 *daddr = svc_daddr_in6(rqstp); |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 172 | |
| 173 | cmh->cmsg_level = SOL_IPV6; |
| 174 | cmh->cmsg_type = IPV6_PKTINFO; |
Mi Jinlong | 849a1cf | 2011-08-30 17:18:41 +0800 | [diff] [blame] | 175 | pki->ipi6_ifindex = daddr->sin6_scope_id; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 176 | pki->ipi6_addr = daddr->sin6_addr; |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 177 | cmh->cmsg_len = CMSG_LEN(sizeof(*pki)); |
| 178 | } |
| 179 | break; |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 180 | } |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 181 | } |
| 182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | /* |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 184 | * send routine intended to be shared by the fore- and back-channel |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | */ |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 186 | int 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | 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 Myklebust | 226453d | 2015-10-07 13:54:42 -0400 | [diff] [blame] | 195 | unsigned int flags = MSG_MORE | MSG_SENDPAGE_NOTLAST; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 196 | int slen; |
| 197 | int len = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
| 199 | slen = xdr->len; |
| 200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | /* send head */ |
| 202 | if (slen == xdr->head[0].iov_len) |
| 203 | flags = 0; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 204 | len = kernel_sendpage(sock, headpage, headoffset, |
NeilBrown | 4452435 | 2006-10-04 02:15:46 -0700 | [diff] [blame] | 205 | xdr->head[0].iov_len, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | 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 Samudrala | e6242e9 | 2006-08-07 20:58:01 -0700 | [diff] [blame] | 217 | result = kernel_sendpage(sock, *ppage, base, size, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | 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 Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 228 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | /* send tail */ |
| 230 | if (xdr->tail[0].iov_len) { |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 231 | result = kernel_sendpage(sock, tailpage, tailoffset, |
| 232 | xdr->tail[0].iov_len, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | if (result > 0) |
| 234 | len += result; |
| 235 | } |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 236 | |
| 237 | out: |
| 238 | return len; |
| 239 | } |
| 240 | |
| 241 | |
| 242 | /* |
| 243 | * Generic sendto routine |
| 244 | */ |
| 245 | static 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 Viro | d8725c8 | 2014-12-11 00:02:50 -0500 | [diff] [blame] | 271 | if (sock_sendmsg(sock, &msg) < 0) |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 272 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | out: |
Alexey Dobriyan | 5b5e092 | 2017-02-27 14:30:02 -0800 | [diff] [blame] | 281 | dprintk("svc: socket %p sendto([%p %zu... ], %d) = %d (addr %s)\n", |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 282 | svsk, xdr->head[0].iov_base, xdr->head[0].iov_len, |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 283 | xdr->len, len, svc_print_addr(rqstp, buf, sizeof(buf))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
| 285 | return len; |
| 286 | } |
| 287 | |
| 288 | /* |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 289 | * Report socket names for nfsdfs |
| 290 | */ |
Chuck Lever | e7942b9 | 2009-04-23 19:32:48 -0400 | [diff] [blame] | 291 | static int svc_one_sock_name(struct svc_sock *svsk, char *buf, int remaining) |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 292 | { |
Chuck Lever | 017cb47 | 2009-04-23 19:33:03 -0400 | [diff] [blame] | 293 | const struct sock *sk = svsk->sk_sk; |
| 294 | const char *proto_name = sk->sk_protocol == IPPROTO_UDP ? |
| 295 | "udp" : "tcp"; |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 296 | int len; |
| 297 | |
Chuck Lever | 017cb47 | 2009-04-23 19:33:03 -0400 | [diff] [blame] | 298 | switch (sk->sk_family) { |
Chuck Lever | e7942b9 | 2009-04-23 19:32:48 -0400 | [diff] [blame] | 299 | case PF_INET: |
| 300 | len = snprintf(buf, remaining, "ipv4 %s %pI4 %d\n", |
Chuck Lever | 017cb47 | 2009-04-23 19:33:03 -0400 | [diff] [blame] | 301 | proto_name, |
Eric Dumazet | c720c7e8 | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 302 | &inet_sk(sk)->inet_rcv_saddr, |
| 303 | inet_sk(sk)->inet_num); |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 304 | break; |
Eric Dumazet | c2bb06d | 2013-10-09 03:05:48 -0700 | [diff] [blame] | 305 | #if IS_ENABLED(CONFIG_IPV6) |
Chuck Lever | 58de2f8 | 2009-04-23 19:32:55 -0400 | [diff] [blame] | 306 | case PF_INET6: |
| 307 | len = snprintf(buf, remaining, "ipv6 %s %pI6 %d\n", |
Chuck Lever | 017cb47 | 2009-04-23 19:33:03 -0400 | [diff] [blame] | 308 | proto_name, |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 309 | &sk->sk_v6_rcv_saddr, |
Eric Dumazet | c720c7e8 | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 310 | inet_sk(sk)->inet_num); |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 311 | break; |
Eric Dumazet | c2bb06d | 2013-10-09 03:05:48 -0700 | [diff] [blame] | 312 | #endif |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 313 | default: |
Chuck Lever | e7942b9 | 2009-04-23 19:32:48 -0400 | [diff] [blame] | 314 | len = snprintf(buf, remaining, "*unknown-%d*\n", |
Chuck Lever | 017cb47 | 2009-04-23 19:33:03 -0400 | [diff] [blame] | 315 | sk->sk_family); |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 316 | } |
Chuck Lever | e7942b9 | 2009-04-23 19:32:48 -0400 | [diff] [blame] | 317 | |
| 318 | if (len >= remaining) { |
| 319 | *buf = '\0'; |
| 320 | return -ENAMETOOLONG; |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 321 | } |
| 322 | return len; |
| 323 | } |
| 324 | |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 325 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | * Generic recvfrom routine. |
| 327 | */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 328 | static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr, |
| 329 | int buflen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | { |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 331 | struct svc_sock *svsk = |
| 332 | container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt); |
Chuck Lever | 1ba9510 | 2007-02-12 00:53:31 -0800 | [diff] [blame] | 333 | struct msghdr msg = { |
| 334 | .msg_flags = MSG_DONTWAIT, |
| 335 | }; |
| 336 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Tom Tucker | 260c1d1 | 2007-12-30 21:08:29 -0600 | [diff] [blame] | 338 | rqstp->rq_xprt_hlen = 0; |
| 339 | |
Trond Myklebust | f8d1ff4 | 2014-08-03 13:03:13 -0400 | [diff] [blame] | 340 | clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
David Howells | aa563d7 | 2018-10-20 00:57:56 +0100 | [diff] [blame^] | 341 | iov_iter_kvec(&msg.msg_iter, READ, iov, nr, buflen); |
Al Viro | 1e4ed1b | 2017-07-01 17:01:59 -0400 | [diff] [blame] | 342 | len = sock_recvmsg(svsk->sk_sock, &msg, msg.msg_flags); |
Trond Myklebust | f8d1ff4 | 2014-08-03 13:03:13 -0400 | [diff] [blame] | 343 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
Alexey Dobriyan | 5b5e092 | 2017-02-27 14:30:02 -0800 | [diff] [blame] | 349 | dprintk("svc: socket %p recvfrom(%p, %zu) = %d\n", |
Chuck Lever | 1ba9510 | 2007-02-12 00:53:31 -0800 | [diff] [blame] | 350 | svsk, iov[0].iov_base, iov[0].iov_len, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | return len; |
| 352 | } |
| 353 | |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 354 | static 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 Myklebust | 09acfea | 2012-03-11 15:22:54 -0400 | [diff] [blame] | 359 | void *save_iovbase; |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 360 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | /* |
| 382 | * Set socket snd and rcv buffer lengths |
| 383 | */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 384 | static void svc_sock_setbufsize(struct socket *sock, unsigned int snd, |
| 385 | unsigned int rcv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | lock_sock(sock->sk); |
| 388 | sock->sk->sk_sndbuf = snd * 2; |
| 389 | sock->sk->sk_rcvbuf = rcv * 2; |
Trond Myklebust | 47fcb03 | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 390 | sock->sk->sk_write_space(sock->sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | release_sock(sock->sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | } |
Chuck Lever | 16e4d93 | 2014-05-19 13:40:22 -0400 | [diff] [blame] | 393 | |
Chuck Lever | 989f881 | 2018-03-27 10:49:38 -0400 | [diff] [blame] | 394 | static void svc_sock_secure_port(struct svc_rqst *rqstp) |
Chuck Lever | 16e4d93 | 2014-05-19 13:40:22 -0400 | [diff] [blame] | 395 | { |
Chuck Lever | 989f881 | 2018-03-27 10:49:38 -0400 | [diff] [blame] | 396 | 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 Lever | 16e4d93 | 2014-05-19 13:40:22 -0400 | [diff] [blame] | 400 | } |
| 401 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | /* |
| 403 | * INET callback when data has been received on the socket. |
| 404 | */ |
Trond Myklebust | fa9251a | 2016-06-24 10:55:48 -0400 | [diff] [blame] | 405 | static void svc_data_ready(struct sock *sk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | { |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 407 | struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 409 | if (svsk) { |
David S. Miller | 676d236 | 2014-04-11 16:15:36 -0400 | [diff] [blame] | 410 | dprintk("svc: socket %p(inet %p), busy=%d\n", |
| 411 | svsk, sk, |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 412 | test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags)); |
Vadim Lomovtsev | eebe53e | 2017-08-21 07:23:07 -0400 | [diff] [blame] | 413 | |
| 414 | /* Refer to svc_setup_socket() for details. */ |
| 415 | rmb(); |
Trond Myklebust | fa9251a | 2016-06-24 10:55:48 -0400 | [diff] [blame] | 416 | svsk->sk_odata(sk); |
Trond Myklebust | 4720b07 | 2016-06-24 10:55:49 -0400 | [diff] [blame] | 417 | if (!test_and_set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags)) |
| 418 | svc_xprt_enqueue(&svsk->sk_xprt); |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 419 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | /* |
| 423 | * INET callback when space is newly available on the socket. |
| 424 | */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 425 | static void svc_write_space(struct sock *sk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | { |
| 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 Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 431 | svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags)); |
Vadim Lomovtsev | eebe53e | 2017-08-21 07:23:07 -0400 | [diff] [blame] | 432 | |
| 433 | /* Refer to svc_setup_socket() for details. */ |
| 434 | rmb(); |
Trond Myklebust | fa9251a | 2016-06-24 10:55:48 -0400 | [diff] [blame] | 435 | svsk->sk_owspace(sk); |
Tom Tucker | f6150c3 | 2007-12-30 21:07:57 -0600 | [diff] [blame] | 436 | svc_xprt_enqueue(&svsk->sk_xprt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | } |
| 439 | |
Trond Myklebust | c7fb3f0 | 2014-07-24 23:59:32 -0400 | [diff] [blame] | 440 | static int svc_tcp_has_wspace(struct svc_xprt *xprt) |
| 441 | { |
Trond Myklebust | 637600f | 2016-06-24 10:55:51 -0400 | [diff] [blame] | 442 | struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt); |
Trond Myklebust | c7fb3f0 | 2014-07-24 23:59:32 -0400 | [diff] [blame] | 443 | |
| 444 | if (test_bit(XPT_LISTENER, &xprt->xpt_flags)) |
| 445 | return 1; |
Trond Myklebust | 637600f | 2016-06-24 10:55:51 -0400 | [diff] [blame] | 446 | return !test_bit(SOCK_NOSPACE, &svsk->sk_sock->flags); |
Trond Myklebust | 5187768 | 2014-07-24 23:59:33 -0400 | [diff] [blame] | 447 | } |
| 448 | |
Scott Mayhew | ea08e39 | 2016-11-11 13:16:22 -0500 | [diff] [blame] | 449 | static 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 Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 464 | /* |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 465 | * See net/ipv6/ip_sockglue.c : ip_cmsg_recv_pktinfo |
| 466 | */ |
| 467 | static int svc_udp_get_dest_address4(struct svc_rqst *rqstp, |
| 468 | struct cmsghdr *cmh) |
| 469 | { |
| 470 | struct in_pktinfo *pki = CMSG_DATA(cmh); |
Mi Jinlong | 849a1cf | 2011-08-30 17:18:41 +0800 | [diff] [blame] | 471 | struct sockaddr_in *daddr = svc_daddr_in(rqstp); |
| 472 | |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 473 | if (cmh->cmsg_type != IP_PKTINFO) |
| 474 | return 0; |
Mi Jinlong | 849a1cf | 2011-08-30 17:18:41 +0800 | [diff] [blame] | 475 | |
| 476 | daddr->sin_family = AF_INET; |
| 477 | daddr->sin_addr.s_addr = pki->ipi_spec_dst.s_addr; |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 478 | return 1; |
| 479 | } |
| 480 | |
| 481 | /* |
Tom Parkin | 73df66f | 2013-01-31 01:02:24 +0000 | [diff] [blame] | 482 | * See net/ipv6/datagram.c : ip6_datagram_recv_ctl |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 483 | */ |
| 484 | static int svc_udp_get_dest_address6(struct svc_rqst *rqstp, |
| 485 | struct cmsghdr *cmh) |
| 486 | { |
| 487 | struct in6_pktinfo *pki = CMSG_DATA(cmh); |
Mi Jinlong | 849a1cf | 2011-08-30 17:18:41 +0800 | [diff] [blame] | 488 | struct sockaddr_in6 *daddr = svc_daddr_in6(rqstp); |
| 489 | |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 490 | if (cmh->cmsg_type != IPV6_PKTINFO) |
| 491 | return 0; |
Mi Jinlong | 849a1cf | 2011-08-30 17:18:41 +0800 | [diff] [blame] | 492 | |
| 493 | daddr->sin6_family = AF_INET6; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 494 | daddr->sin6_addr = pki->ipi6_addr; |
Mi Jinlong | 849a1cf | 2011-08-30 17:18:41 +0800 | [diff] [blame] | 495 | daddr->sin6_scope_id = pki->ipi6_ifindex; |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 496 | return 1; |
| 497 | } |
| 498 | |
| 499 | /* |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 500 | * 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 Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 506 | static int svc_udp_get_dest_address(struct svc_rqst *rqstp, |
| 507 | struct cmsghdr *cmh) |
Chuck Lever | 9575648 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 508 | { |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 509 | 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 Lever | 9575648 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 514 | } |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 515 | |
| 516 | return 0; |
Chuck Lever | 9575648 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 517 | } |
| 518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | /* |
| 520 | * Receive a datagram from a UDP socket. |
| 521 | */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 522 | static int svc_udp_recvfrom(struct svc_rqst *rqstp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | { |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 524 | struct svc_sock *svsk = |
| 525 | container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt); |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 526 | struct svc_serv *serv = svsk->sk_xprt.xpt_server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | struct sk_buff *skb; |
David S. Miller | bc375ea | 2007-04-12 13:35:59 -0700 | [diff] [blame] | 528 | union { |
| 529 | struct cmsghdr hdr; |
| 530 | long all[SVC_PKTINFO_SPACE / sizeof(long)]; |
| 531 | } buffer; |
| 532 | struct cmsghdr *cmh = &buffer.hdr; |
NeilBrown | 7a37f57 | 2007-03-06 01:42:21 -0800 | [diff] [blame] | 533 | 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 Lever | abc5c44 | 2009-04-23 19:31:25 -0400 | [diff] [blame] | 539 | size_t len; |
| 540 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 542 | if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | /* 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 Banks | 3262c81 | 2006-10-02 02:17:58 -0700 | [diff] [blame] | 546 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | */ |
| 551 | svc_sock_setbufsize(svsk->sk_sock, |
NeilBrown | c6b0a9f | 2006-10-06 00:44:05 -0700 | [diff] [blame] | 552 | (serv->sv_nrthreads+3) * serv->sv_max_mesg, |
| 553 | (serv->sv_nrthreads+3) * serv->sv_max_mesg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 555 | clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
NeilBrown | 05ed690 | 2007-05-09 02:34:55 -0700 | [diff] [blame] | 556 | skb = NULL; |
| 557 | err = kernel_recvmsg(svsk->sk_sock, &msg, NULL, |
| 558 | 0, 0, MSG_PEEK | MSG_DONTWAIT); |
| 559 | if (err >= 0) |
Paolo Abeni | 7c13f97 | 2016-11-04 11:28:59 +0100 | [diff] [blame] | 560 | skb = skb_recv_udp(svsk->sk_sk, 0, 1, &err); |
NeilBrown | 05ed690 | 2007-05-09 02:34:55 -0700 | [diff] [blame] | 561 | |
| 562 | if (skb == NULL) { |
| 563 | if (err != -EAGAIN) { |
| 564 | /* possibly an icmp error */ |
| 565 | dprintk("svc: recvfrom returned error %d\n", -err); |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 566 | set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | } |
J. Bruce Fields | 9f9d2eb | 2012-08-17 21:35:24 -0400 | [diff] [blame] | 568 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | } |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 570 | len = svc_addr_len(svc_addr(rqstp)); |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 571 | rqstp->rq_addrlen = len; |
Thomas Gleixner | 2456e85 | 2016-12-25 11:38:40 +0100 | [diff] [blame] | 572 | if (skb->tstamp == 0) { |
Eric Dumazet | b7aa0bf | 2007-04-19 16:16:32 -0700 | [diff] [blame] | 573 | skb->tstamp = ktime_get_real(); |
YOSHIFUJI Hideaki | cca5172 | 2007-02-09 15:38:13 -0800 | [diff] [blame] | 574 | /* Don't enable netstamp, sunrpc doesn't |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | need that much accuracy */ |
| 576 | } |
Eric Dumazet | b7aa0bf | 2007-04-19 16:16:32 -0700 | [diff] [blame] | 577 | svsk->sk_sk->sk_stamp = skb->tstamp; |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 578 | set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); /* there may be more data... */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | |
Willem de Bruijn | 1da8c681 | 2016-04-07 11:44:58 -0400 | [diff] [blame] | 580 | len = skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | rqstp->rq_arg.len = len; |
| 582 | |
Chuck Lever | 9575648 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 583 | rqstp->rq_prot = IPPROTO_UDP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 585 | if (!svc_udp_get_dest_address(rqstp, cmh)) { |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 586 | net_warn_ratelimited("svc: received unknown control message %d/%d; dropping RPC reply datagram\n", |
| 587 | cmh->cmsg_level, cmh->cmsg_type); |
J. Bruce Fields | f23abfd | 2012-08-17 20:32:27 -0400 | [diff] [blame] | 588 | goto out_free; |
NeilBrown | 7a37f57 | 2007-03-06 01:42:21 -0800 | [diff] [blame] | 589 | } |
Mi Jinlong | 849a1cf | 2011-08-30 17:18:41 +0800 | [diff] [blame] | 590 | rqstp->rq_daddrlen = svc_addr_len(svc_daddr(rqstp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | |
| 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 Dumazet | 22911fc | 2012-06-27 00:23:44 +0000 | [diff] [blame] | 598 | goto out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | } |
| 600 | local_bh_enable(); |
Paolo Abeni | 850cbad | 2016-10-21 13:55:47 +0200 | [diff] [blame] | 601 | consume_skb(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | } else { |
| 603 | /* we can use it in-place */ |
Willem de Bruijn | 1da8c681 | 2016-04-07 11:44:58 -0400 | [diff] [blame] | 604 | rqstp->rq_arg.head[0].iov_base = skb->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | rqstp->rq_arg.head[0].iov_len = len; |
Eric Dumazet | 22911fc | 2012-06-27 00:23:44 +0000 | [diff] [blame] | 606 | if (skb_checksum_complete(skb)) |
| 607 | goto out_free; |
Tom Tucker | 5148bf4 | 2007-12-30 21:07:25 -0600 | [diff] [blame] | 608 | rqstp->rq_xprt_ctxt = skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | } |
| 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; |
NeilBrown | 4452435 | 2006-10-04 02:15:46 -0700 | [diff] [blame] | 615 | rqstp->rq_respages = rqstp->rq_pages+1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | } else { |
| 617 | rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len; |
NeilBrown | 4452435 | 2006-10-04 02:15:46 -0700 | [diff] [blame] | 618 | rqstp->rq_respages = rqstp->rq_pages + 1 + |
Ilpo Järvinen | 172589c | 2007-08-28 15:50:33 -0700 | [diff] [blame] | 619 | DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | } |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 621 | rqstp->rq_next_page = rqstp->rq_respages+1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
| 623 | if (serv->sv_stats) |
| 624 | serv->sv_stats->netudpcnt++; |
| 625 | |
| 626 | return len; |
J. Bruce Fields | f23abfd | 2012-08-17 20:32:27 -0400 | [diff] [blame] | 627 | out_free: |
Paolo Abeni | 850cbad | 2016-10-21 13:55:47 +0200 | [diff] [blame] | 628 | kfree_skb(skb); |
J. Bruce Fields | f23abfd | 2012-08-17 20:32:27 -0400 | [diff] [blame] | 629 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | static int |
| 633 | svc_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 Tucker | e831fe6 | 2007-12-30 21:07:29 -0600 | [diff] [blame] | 645 | static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp) |
| 646 | { |
| 647 | } |
| 648 | |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 649 | static int svc_udp_has_wspace(struct svc_xprt *xprt) |
| 650 | { |
| 651 | struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt); |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 652 | struct svc_serv *serv = xprt->xpt_server; |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 653 | 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 Tucker | 7a90e8c | 2007-12-30 21:07:55 -0600 | [diff] [blame] | 660 | required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg; |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 661 | 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 Tucker | 38a417c | 2007-12-30 21:07:36 -0600 | [diff] [blame] | 667 | static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt) |
| 668 | { |
| 669 | BUG(); |
| 670 | return NULL; |
| 671 | } |
| 672 | |
Scott Mayhew | ea08e39 | 2016-11-11 13:16:22 -0500 | [diff] [blame] | 673 | static void svc_udp_kill_temp_xprt(struct svc_xprt *xprt) |
| 674 | { |
| 675 | } |
| 676 | |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 677 | static struct svc_xprt *svc_udp_create(struct svc_serv *serv, |
Pavel Emelyanov | 62832c0 | 2010-09-29 16:04:18 +0400 | [diff] [blame] | 678 | struct net *net, |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 679 | struct sockaddr *sa, int salen, |
| 680 | int flags) |
| 681 | { |
Pavel Emelyanov | 62832c0 | 2010-09-29 16:04:18 +0400 | [diff] [blame] | 682 | return svc_create_socket(serv, IPPROTO_UDP, net, sa, salen, flags); |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 683 | } |
| 684 | |
Chuck Lever | 2412e92 | 2017-08-01 11:59:49 -0400 | [diff] [blame] | 685 | static const struct svc_xprt_ops svc_udp_ops = { |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 686 | .xpo_create = svc_udp_create, |
Tom Tucker | 5d13799 | 2007-12-30 21:07:23 -0600 | [diff] [blame] | 687 | .xpo_recvfrom = svc_udp_recvfrom, |
| 688 | .xpo_sendto = svc_udp_sendto, |
Paolo Abeni | 850cbad | 2016-10-21 13:55:47 +0200 | [diff] [blame] | 689 | .xpo_release_rqst = svc_release_udp_skb, |
Tom Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 690 | .xpo_detach = svc_sock_detach, |
| 691 | .xpo_free = svc_sock_free, |
Tom Tucker | e831fe6 | 2007-12-30 21:07:29 -0600 | [diff] [blame] | 692 | .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr, |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 693 | .xpo_has_wspace = svc_udp_has_wspace, |
Tom Tucker | 38a417c | 2007-12-30 21:07:36 -0600 | [diff] [blame] | 694 | .xpo_accept = svc_udp_accept, |
Chuck Lever | 16e4d93 | 2014-05-19 13:40:22 -0400 | [diff] [blame] | 695 | .xpo_secure_port = svc_sock_secure_port, |
Scott Mayhew | ea08e39 | 2016-11-11 13:16:22 -0500 | [diff] [blame] | 696 | .xpo_kill_temp_xprt = svc_udp_kill_temp_xprt, |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 697 | }; |
| 698 | |
| 699 | static struct svc_xprt_class svc_udp_class = { |
| 700 | .xcl_name = "udp", |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 701 | .xcl_owner = THIS_MODULE, |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 702 | .xcl_ops = &svc_udp_ops, |
Tom Tucker | 4902315 | 2007-12-30 21:07:21 -0600 | [diff] [blame] | 703 | .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP, |
Chuck Lever | 3c45ddf | 2014-07-16 15:38:32 -0400 | [diff] [blame] | 704 | .xcl_ident = XPRT_TRANSPORT_UDP, |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 705 | }; |
| 706 | |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 707 | static void svc_udp_init(struct svc_sock *svsk, struct svc_serv *serv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | { |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 709 | int err, level, optname, one = 1; |
NeilBrown | 7a37f57 | 2007-03-06 01:42:21 -0800 | [diff] [blame] | 710 | |
Stanislav Kinsbursky | bd4620d | 2011-12-06 14:19:10 +0300 | [diff] [blame] | 711 | svc_xprt_init(sock_net(svsk->sk_sock->sk), &svc_udp_class, |
| 712 | &svsk->sk_xprt, serv); |
Tom Tucker | def13d7 | 2007-12-30 21:08:08 -0600 | [diff] [blame] | 713 | clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags); |
Trond Myklebust | fa9251a | 2016-06-24 10:55:48 -0400 | [diff] [blame] | 714 | svsk->sk_sk->sk_data_ready = svc_data_ready; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | svsk->sk_sk->sk_write_space = svc_write_space; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
| 717 | /* initialise setting must have enough space to |
YOSHIFUJI Hideaki | cca5172 | 2007-02-09 15:38:13 -0800 | [diff] [blame] | 718 | * receive and respond to one request. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | * svc_udp_recvfrom will re-adjust if necessary |
| 720 | */ |
| 721 | svc_sock_setbufsize(svsk->sk_sock, |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 722 | 3 * svsk->sk_xprt.xpt_server->sv_max_mesg, |
| 723 | 3 * svsk->sk_xprt.xpt_server->sv_max_mesg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 725 | /* data might have come in before data_ready set up */ |
| 726 | set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 727 | set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags); |
NeilBrown | 7a37f57 | 2007-03-06 01:42:21 -0800 | [diff] [blame] | 728 | |
NeilBrown | 7a37f57 | 2007-03-06 01:42:21 -0800 | [diff] [blame] | 729 | /* make sure we get destination address info */ |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 730 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | } |
| 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. Miller | 676d236 | 2014-04-11 16:15:36 -0400 | [diff] [blame] | 751 | static void svc_tcp_listen_data_ready(struct sock *sk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | { |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 753 | struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | |
| 755 | dprintk("svc: socket %p TCP (listen) state change %d\n", |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 756 | sk, sk->sk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | |
Vadim Lomovtsev | eebe53e | 2017-08-21 07:23:07 -0400 | [diff] [blame] | 758 | if (svsk) { |
| 759 | /* Refer to svc_setup_socket() for details. */ |
| 760 | rmb(); |
Trond Myklebust | fa9251a | 2016-06-24 10:55:48 -0400 | [diff] [blame] | 761 | svsk->sk_odata(sk); |
Vadim Lomovtsev | eebe53e | 2017-08-21 07:23:07 -0400 | [diff] [blame] | 762 | } |
| 763 | |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 764 | /* |
| 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 Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 776 | set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags); |
Tom Tucker | f6150c3 | 2007-12-30 21:07:57 -0600 | [diff] [blame] | 777 | svc_xprt_enqueue(&svsk->sk_xprt); |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 778 | } else |
| 779 | printk("svc: socket %p: no user data\n", sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | } |
| 782 | |
| 783 | /* |
| 784 | * A state change on a connected socket means it's dying or dead. |
| 785 | */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 786 | static void svc_tcp_state_change(struct sock *sk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | { |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 788 | struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | |
| 790 | dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n", |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 791 | sk, sk->sk_state, sk->sk_user_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 793 | if (!svsk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | printk("svc: socket %p: no user data\n", sk); |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 795 | else { |
Vadim Lomovtsev | eebe53e | 2017-08-21 07:23:07 -0400 | [diff] [blame] | 796 | /* Refer to svc_setup_socket() for details. */ |
| 797 | rmb(); |
Trond Myklebust | fa9251a | 2016-06-24 10:55:48 -0400 | [diff] [blame] | 798 | svsk->sk_ostate(sk); |
Trond Myklebust | b2f21f7 | 2016-07-26 09:51:19 -0400 | [diff] [blame] | 799 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | } |
| 805 | |
| 806 | /* |
| 807 | * Accept a TCP connection |
| 808 | */ |
Tom Tucker | 38a417c | 2007-12-30 21:07:36 -0600 | [diff] [blame] | 809 | static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | { |
Tom Tucker | 38a417c | 2007-12-30 21:07:36 -0600 | [diff] [blame] | 811 | struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt); |
akpm@linux-foundation.org | cdd88b9 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 812 | struct sockaddr_storage addr; |
| 813 | struct sockaddr *sin = (struct sockaddr *) &addr; |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 814 | struct svc_serv *serv = svsk->sk_xprt.xpt_server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | struct socket *sock = svsk->sk_sock; |
| 816 | struct socket *newsock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | struct svc_sock *newsvsk; |
| 818 | int err, slen; |
Pavel Emelyanov | 5216a8e | 2008-02-21 10:57:45 +0300 | [diff] [blame] | 819 | RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | |
| 821 | dprintk("svc: tcp_accept %p sock %p\n", svsk, sock); |
| 822 | if (!sock) |
Tom Tucker | 38a417c | 2007-12-30 21:07:36 -0600 | [diff] [blame] | 823 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 825 | clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags); |
Sridhar Samudrala | e6242e9 | 2006-08-07 20:58:01 -0700 | [diff] [blame] | 826 | err = kernel_accept(sock, &newsock, O_NONBLOCK); |
| 827 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | if (err == -ENOMEM) |
| 829 | printk(KERN_WARNING "%s: no more sockets!\n", |
| 830 | serv->sv_name); |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 831 | else if (err != -EAGAIN) |
| 832 | net_warn_ratelimited("%s: accept failed (err %d)!\n", |
| 833 | serv->sv_name, -err); |
Tom Tucker | 38a417c | 2007-12-30 21:07:36 -0600 | [diff] [blame] | 834 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | } |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 836 | set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | |
Denys Vlasenko | 9b2c45d | 2018-02-12 20:00:20 +0100 | [diff] [blame] | 838 | err = kernel_getpeername(newsock, sin); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | if (err < 0) { |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 840 | net_warn_ratelimited("%s: peername failed (err %d)!\n", |
| 841 | serv->sv_name, -err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | goto failed; /* aborted connection or whatever */ |
| 843 | } |
Denys Vlasenko | 9b2c45d | 2018-02-12 20:00:20 +0100 | [diff] [blame] | 844 | slen = err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | |
| 846 | /* Ideally, we would want to reject connections from unauthorized |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 847 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | */ |
akpm@linux-foundation.org | cdd88b9 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 850 | if (!svc_port_is_privileged(sin)) { |
Kinglong Mee | a48fd0f | 2014-05-29 12:18:52 +0800 | [diff] [blame] | 851 | dprintk("%s: connect from unprivileged port: %s\n", |
YOSHIFUJI Hideaki | cca5172 | 2007-02-09 15:38:13 -0800 | [diff] [blame] | 852 | serv->sv_name, |
akpm@linux-foundation.org | cdd88b9 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 853 | __svc_print_addr(sin, buf, sizeof(buf))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | } |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 855 | dprintk("%s: connect from %s\n", serv->sv_name, |
akpm@linux-foundation.org | cdd88b9 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 856 | __svc_print_addr(sin, buf, sizeof(buf))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | |
Trond Myklebust | fa9251a | 2016-06-24 10:55:48 -0400 | [diff] [blame] | 858 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | /* 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 Fields | 72c3537 | 2012-08-13 17:46:17 -0400 | [diff] [blame] | 868 | newsvsk = svc_setup_socket(serv, newsock, |
| 869 | (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY)); |
| 870 | if (IS_ERR(newsvsk)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | goto failed; |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 872 | svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen); |
Denys Vlasenko | 9b2c45d | 2018-02-12 20:00:20 +0100 | [diff] [blame] | 873 | err = kernel_getsockname(newsock, sin); |
| 874 | slen = err; |
Frank van Maarseveen | a974769 | 2007-07-09 22:21:39 +0200 | [diff] [blame] | 875 | if (unlikely(err < 0)) { |
| 876 | dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err); |
| 877 | slen = offsetof(struct sockaddr, sa_data); |
| 878 | } |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 879 | svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen); |
Chuck Lever | 067d781 | 2007-02-12 00:53:30 -0800 | [diff] [blame] | 880 | |
NeilBrown | ef11ce2 | 2014-05-12 11:22:47 +1000 | [diff] [blame] | 881 | 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 Tucker | f9f3cc4 | 2007-12-30 21:07:40 -0600 | [diff] [blame] | 885 | if (serv->sv_stats) |
| 886 | serv->sv_stats->nettcpconn++; |
| 887 | |
| 888 | return &newsvsk->sk_xprt; |
| 889 | |
| 890 | failed: |
| 891 | sock_release(newsock); |
| 892 | return NULL; |
| 893 | } |
| 894 | |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 895 | static unsigned int svc_tcp_restore_pages(struct svc_sock *svsk, struct svc_rqst *rqstp) |
| 896 | { |
| 897 | unsigned int i, len, npages; |
| 898 | |
J. Bruce Fields | 8af345f | 2012-12-03 16:45:35 -0500 | [diff] [blame] | 899 | if (svsk->sk_datalen == 0) |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 900 | return 0; |
J. Bruce Fields | 8af345f | 2012-12-03 16:45:35 -0500 | [diff] [blame] | 901 | len = svsk->sk_datalen; |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 902 | 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 | |
| 914 | static void svc_tcp_save_pages(struct svc_sock *svsk, struct svc_rqst *rqstp) |
| 915 | { |
| 916 | unsigned int i, len, npages; |
| 917 | |
J. Bruce Fields | 8af345f | 2012-12-03 16:45:35 -0500 | [diff] [blame] | 918 | if (svsk->sk_datalen == 0) |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 919 | return; |
J. Bruce Fields | 8af345f | 2012-12-03 16:45:35 -0500 | [diff] [blame] | 920 | len = svsk->sk_datalen; |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 921 | 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 | |
| 928 | static void svc_tcp_clear_pages(struct svc_sock *svsk) |
| 929 | { |
| 930 | unsigned int i, len, npages; |
| 931 | |
J. Bruce Fields | 8af345f | 2012-12-03 16:45:35 -0500 | [diff] [blame] | 932 | if (svsk->sk_datalen == 0) |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 933 | goto out; |
J. Bruce Fields | 8af345f | 2012-12-03 16:45:35 -0500 | [diff] [blame] | 934 | len = svsk->sk_datalen; |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 935 | npages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT; |
| 936 | for (i = 0; i < npages; i++) { |
J. Bruce Fields | cf3aa02 | 2013-06-26 11:09:06 -0400 | [diff] [blame] | 937 | if (svsk->sk_pages[i] == NULL) { |
| 938 | WARN_ON_ONCE(1); |
| 939 | continue; |
| 940 | } |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 941 | put_page(svsk->sk_pages[i]); |
| 942 | svsk->sk_pages[i] = NULL; |
| 943 | } |
| 944 | out: |
| 945 | svsk->sk_tcplen = 0; |
J. Bruce Fields | 8af345f | 2012-12-03 16:45:35 -0500 | [diff] [blame] | 946 | svsk->sk_datalen = 0; |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 947 | } |
| 948 | |
Tom Tucker | f9f3cc4 | 2007-12-30 21:07:40 -0600 | [diff] [blame] | 949 | /* |
J. Bruce Fields | ad46ccf | 2012-12-03 16:30:42 -0500 | [diff] [blame] | 950 | * Receive fragment record header. |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 951 | * If we haven't gotten the record length yet, get the next four bytes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | */ |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 953 | static int svc_tcp_recv_record(struct svc_sock *svsk, struct svc_rqst *rqstp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | { |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 955 | struct svc_serv *serv = svsk->sk_xprt.xpt_server; |
Trond Myklebust | 5ee78d4 | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 956 | unsigned int want; |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 957 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | |
Chuck Lever | c0401ea | 2008-04-14 12:27:30 -0400 | [diff] [blame] | 959 | if (svsk->sk_tcplen < sizeof(rpc_fraghdr)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | struct kvec iov; |
| 961 | |
Trond Myklebust | 5ee78d4 | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 962 | want = sizeof(rpc_fraghdr) - svsk->sk_tcplen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | 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 Lever | c0401ea | 2008-04-14 12:27:30 -0400 | [diff] [blame] | 970 | dprintk("svc: short recvfrom while reading record " |
| 971 | "length (%d of %d)\n", len, want); |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 972 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | } |
| 974 | |
J. Bruce Fields | cc248d4 | 2012-12-03 16:11:13 -0500 | [diff] [blame] | 975 | dprintk("svc: TCP record, %d bytes\n", svc_sock_reclen(svsk)); |
J. Bruce Fields | 836fbad | 2012-12-03 15:50:38 -0500 | [diff] [blame] | 976 | if (svc_sock_reclen(svsk) + svsk->sk_datalen > |
| 977 | serv->sv_max_mesg) { |
J. Bruce Fields | 3a28e33 | 2012-12-10 18:15:07 -0500 | [diff] [blame] | 978 | net_notice_ratelimited("RPC: fragment too large: %d\n", |
| 979 | svc_sock_reclen(svsk)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | goto err_delete; |
| 981 | } |
| 982 | } |
| 983 | |
J. Bruce Fields | cc248d4 | 2012-12-03 16:11:13 -0500 | [diff] [blame] | 984 | return svc_sock_reclen(svsk); |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 985 | error: |
| 986 | dprintk("RPC: TCP recv_record got %d\n", len); |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 987 | return len; |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 988 | err_delete: |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 989 | set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags); |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 990 | return -EAGAIN; |
| 991 | } |
| 992 | |
Trond Myklebust | 586c52c | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 993 | static int receive_cb_reply(struct svc_sock *svsk, struct svc_rqst *rqstp) |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 994 | { |
Trond Myklebust | 586c52c | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 995 | struct rpc_xprt *bc_xprt = svsk->sk_xprt.xpt_bc_xprt; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 996 | struct rpc_rqst *req = NULL; |
Trond Myklebust | 586c52c | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 997 | struct kvec *src, *dst; |
| 998 | __be32 *p = (__be32 *)rqstp->rq_arg.head[0].iov_base; |
J. Bruce Fields | 48e6555 | 2011-02-14 14:52:03 -0500 | [diff] [blame] | 999 | __be32 xid; |
| 1000 | __be32 calldir; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 1001 | |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 1002 | xid = *p++; |
| 1003 | calldir = *p; |
| 1004 | |
Trond Myklebust | 093a146 | 2014-11-12 18:04:04 -0500 | [diff] [blame] | 1005 | if (!bc_xprt) |
Trond Myklebust | 586c52c | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1006 | return -EAGAIN; |
Trond Myklebust | ce7c252 | 2017-08-16 15:30:35 -0400 | [diff] [blame] | 1007 | spin_lock(&bc_xprt->recv_lock); |
Trond Myklebust | 093a146 | 2014-11-12 18:04:04 -0500 | [diff] [blame] | 1008 | req = xprt_lookup_rqst(bc_xprt, xid); |
| 1009 | if (!req) |
| 1010 | goto unlock_notfound; |
Trond Myklebust | 586c52c | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1011 | |
| 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 Myklebust | 093a146 | 2014-11-12 18:04:04 -0500 | [diff] [blame] | 1021 | goto unlock_eagain; /* whatever; just giving up. */ |
Trond Myklebust | 586c52c | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1022 | memcpy(dst->iov_base, src->iov_base, src->iov_len); |
J. Bruce Fields | cc248d4 | 2012-12-03 16:11:13 -0500 | [diff] [blame] | 1023 | xprt_complete_rqst(req->rq_task, rqstp->rq_arg.len); |
Trond Myklebust | 586c52c | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1024 | rqstp->rq_arg.len = 0; |
Trond Myklebust | ce7c252 | 2017-08-16 15:30:35 -0400 | [diff] [blame] | 1025 | spin_unlock(&bc_xprt->recv_lock); |
Trond Myklebust | 586c52c | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1026 | return 0; |
Trond Myklebust | 093a146 | 2014-11-12 18:04:04 -0500 | [diff] [blame] | 1027 | unlock_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)); |
| 1033 | unlock_eagain: |
Trond Myklebust | ce7c252 | 2017-08-16 15:30:35 -0400 | [diff] [blame] | 1034 | spin_unlock(&bc_xprt->recv_lock); |
Trond Myklebust | 093a146 | 2014-11-12 18:04:04 -0500 | [diff] [blame] | 1035 | return -EAGAIN; |
Trond Myklebust | 586c52c | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1036 | } |
| 1037 | |
| 1038 | static 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 Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 1050 | } |
| 1051 | |
J. Bruce Fields | 836fbad | 2012-12-03 15:50:38 -0500 | [diff] [blame] | 1052 | static 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 Fields | 836fbad | 2012-12-03 15:50:38 -0500 | [diff] [blame] | 1055 | 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 Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 1061 | |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 1062 | /* |
| 1063 | * Receive data from a TCP socket. |
| 1064 | */ |
| 1065 | static 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 Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 1072 | unsigned int want, base; |
Trond Myklebust | 586c52c | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1073 | __be32 *p; |
| 1074 | __be32 calldir; |
Trond Myklebust | 5ee78d4 | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1075 | int pnum; |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 1076 | |
| 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 Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 1086 | base = svc_tcp_restore_pages(svsk, rqstp); |
J. Bruce Fields | 836fbad | 2012-12-03 15:50:38 -0500 | [diff] [blame] | 1087 | want = svc_sock_reclen(svsk) - (svsk->sk_tcplen - sizeof(rpc_fraghdr)); |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 1088 | |
NeilBrown | 3cc03b1 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 1089 | vec = rqstp->rq_vec; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 1090 | |
Trond Myklebust | 586c52c | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1091 | pnum = copy_pages_to_kvecs(&vec[0], &rqstp->rq_pages[0], |
J. Bruce Fields | 836fbad | 2012-12-03 15:50:38 -0500 | [diff] [blame] | 1092 | svsk->sk_datalen + want); |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 1093 | |
NeilBrown | 4452435 | 2006-10-04 02:15:46 -0700 | [diff] [blame] | 1094 | rqstp->rq_respages = &rqstp->rq_pages[pnum]; |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 1095 | rqstp->rq_next_page = rqstp->rq_respages + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | |
| 1097 | /* Now receive data */ |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 1098 | len = svc_partial_recvfrom(rqstp, vec, pnum, want, base); |
J. Bruce Fields | 8af345f | 2012-12-03 16:45:35 -0500 | [diff] [blame] | 1099 | if (len >= 0) { |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 1100 | svsk->sk_tcplen += len; |
J. Bruce Fields | 8af345f | 2012-12-03 16:45:35 -0500 | [diff] [blame] | 1101 | svsk->sk_datalen += len; |
| 1102 | } |
J. Bruce Fields | 836fbad | 2012-12-03 15:50:38 -0500 | [diff] [blame] | 1103 | if (len != want || !svc_sock_final_rec(svsk)) { |
J. Bruce Fields | be1e444 | 2012-08-09 18:12:28 -0400 | [diff] [blame] | 1104 | svc_tcp_save_pages(svsk, rqstp); |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 1105 | if (len < 0 && len != -EAGAIN) |
J. Bruce Fields | ad46ccf | 2012-12-03 16:30:42 -0500 | [diff] [blame] | 1106 | goto err_delete; |
J. Bruce Fields | 836fbad | 2012-12-03 15:50:38 -0500 | [diff] [blame] | 1107 | if (len == want) |
| 1108 | svc_tcp_fragment_received(svsk); |
| 1109 | else |
J. Bruce Fields | 3a28e33 | 2012-12-10 18:15:07 -0500 | [diff] [blame] | 1110 | dprintk("svc: incomplete TCP record (%d of %d)\n", |
| 1111 | (int)(svsk->sk_tcplen - sizeof(rpc_fraghdr)), |
J. Bruce Fields | 836fbad | 2012-12-03 15:50:38 -0500 | [diff] [blame] | 1112 | svc_sock_reclen(svsk)); |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 1113 | goto err_noclose; |
| 1114 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | |
J. Bruce Fields | 1f691b0 | 2013-06-26 10:55:40 -0400 | [diff] [blame] | 1116 | if (svsk->sk_datalen < 8) { |
J. Bruce Fields | cf3aa02 | 2013-06-26 11:09:06 -0400 | [diff] [blame] | 1117 | svsk->sk_datalen = 0; |
J. Bruce Fields | ad46ccf | 2012-12-03 16:30:42 -0500 | [diff] [blame] | 1118 | goto err_delete; /* client is nuts. */ |
J. Bruce Fields | cf3aa02 | 2013-06-26 11:09:06 -0400 | [diff] [blame] | 1119 | } |
J. Bruce Fields | ad46ccf | 2012-12-03 16:30:42 -0500 | [diff] [blame] | 1120 | |
J. Bruce Fields | 836fbad | 2012-12-03 15:50:38 -0500 | [diff] [blame] | 1121 | rqstp->rq_arg.len = svsk->sk_datalen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | rqstp->rq_arg.page_base = 0; |
Trond Myklebust | 5ee78d4 | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1123 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | rqstp->rq_arg.page_len = 0; |
Trond Myklebust | 5ee78d4 | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1126 | } else |
| 1127 | rqstp->rq_arg.page_len = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | |
Tom Tucker | 5148bf4 | 2007-12-30 21:07:25 -0600 | [diff] [blame] | 1129 | rqstp->rq_xprt_ctxt = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | rqstp->rq_prot = IPPROTO_TCP; |
Jeff Layton | 7501cc2 | 2014-11-19 07:51:15 -0500 | [diff] [blame] | 1131 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | |
Trond Myklebust | 586c52c | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1136 | p = (__be32 *)rqstp->rq_arg.head[0].iov_base; |
| 1137 | calldir = p[1]; |
J. Bruce Fields | 8985ef0 | 2011-04-09 10:03:10 -0400 | [diff] [blame] | 1138 | if (calldir) |
Trond Myklebust | 586c52c | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1139 | len = receive_cb_reply(svsk, rqstp); |
Trond Myklebust | 586c52c | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | /* Reset TCP read info */ |
J. Bruce Fields | 8af345f | 2012-12-03 16:45:35 -0500 | [diff] [blame] | 1142 | svsk->sk_datalen = 0; |
J. Bruce Fields | 836fbad | 2012-12-03 15:50:38 -0500 | [diff] [blame] | 1143 | svc_tcp_fragment_received(svsk); |
Trond Myklebust | 0601f79 | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1144 | |
J. Bruce Fields | 8985ef0 | 2011-04-09 10:03:10 -0400 | [diff] [blame] | 1145 | if (len < 0) |
| 1146 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 1148 | svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | if (serv->sv_stats) |
| 1150 | serv->sv_stats->nettcpcnt++; |
| 1151 | |
Trond Myklebust | 5ee78d4 | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1152 | return rqstp->rq_arg.len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 1154 | error: |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 1155 | if (len != -EAGAIN) |
J. Bruce Fields | ad46ccf | 2012-12-03 16:30:42 -0500 | [diff] [blame] | 1156 | goto err_delete; |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 1157 | dprintk("RPC: TCP recvfrom got EAGAIN\n"); |
J. Bruce Fields | 9f9d2eb | 2012-08-17 21:35:24 -0400 | [diff] [blame] | 1158 | return 0; |
J. Bruce Fields | ad46ccf | 2012-12-03 16:30:42 -0500 | [diff] [blame] | 1159 | err_delete: |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 1160 | 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); |
| 1163 | err_noclose: |
J. Bruce Fields | 9f9d2eb | 2012-08-17 21:35:24 -0400 | [diff] [blame] | 1164 | return 0; /* record not complete */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | } |
| 1166 | |
| 1167 | /* |
| 1168 | * Send out data on TCP socket. |
| 1169 | */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 1170 | static int svc_tcp_sendto(struct svc_rqst *rqstp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | { |
| 1172 | struct xdr_buf *xbufp = &rqstp->rq_res; |
| 1173 | int sent; |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 1174 | __be32 reclen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | sent = svc_sendto(rqstp, &rqstp->rq_res); |
| 1184 | if (sent != xbufp->len) { |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 1185 | printk(KERN_NOTICE |
| 1186 | "rpc-srv/tcp: %s: %s %d when sending %d bytes " |
| 1187 | "- shutting down socket\n", |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 1188 | rqstp->rq_xprt->xpt_server->sv_name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | (sent<0)?"got error":"sent only", |
| 1190 | sent, xbufp->len); |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 1191 | set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags); |
Tom Tucker | f6150c3 | 2007-12-30 21:07:57 -0600 | [diff] [blame] | 1192 | svc_xprt_enqueue(rqstp->rq_xprt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | sent = -EAGAIN; |
| 1194 | } |
| 1195 | return sent; |
| 1196 | } |
| 1197 | |
Tom Tucker | e831fe6 | 2007-12-30 21:07:29 -0600 | [diff] [blame] | 1198 | /* |
| 1199 | * Setup response header. TCP has a 4B record length field. |
| 1200 | */ |
| 1201 | static 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 Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1209 | static struct svc_xprt *svc_tcp_create(struct svc_serv *serv, |
Pavel Emelyanov | 62832c0 | 2010-09-29 16:04:18 +0400 | [diff] [blame] | 1210 | struct net *net, |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1211 | struct sockaddr *sa, int salen, |
| 1212 | int flags) |
| 1213 | { |
Pavel Emelyanov | 62832c0 | 2010-09-29 16:04:18 +0400 | [diff] [blame] | 1214 | return svc_create_socket(serv, IPPROTO_TCP, net, sa, salen, flags); |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1215 | } |
| 1216 | |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 1217 | #if defined(CONFIG_SUNRPC_BACKCHANNEL) |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 1218 | static struct svc_xprt *svc_bc_create_socket(struct svc_serv *, int, |
| 1219 | struct net *, struct sockaddr *, |
| 1220 | int, int); |
| 1221 | static void svc_bc_sock_free(struct svc_xprt *xprt); |
| 1222 | |
| 1223 | static 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 | |
| 1231 | static void svc_bc_tcp_sock_detach(struct svc_xprt *xprt) |
| 1232 | { |
| 1233 | } |
| 1234 | |
Chuck Lever | 2412e92 | 2017-08-01 11:59:49 -0400 | [diff] [blame] | 1235 | static const struct svc_xprt_ops svc_tcp_bc_ops = { |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 1236 | .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 Lever | 16e4d93 | 2014-05-19 13:40:22 -0400 | [diff] [blame] | 1240 | .xpo_secure_port = svc_sock_secure_port, |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 1241 | }; |
| 1242 | |
| 1243 | static 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 Adamson | 16b2d1e | 2011-01-06 02:04:27 +0000 | [diff] [blame] | 1249 | |
| 1250 | static void svc_init_bc_xprt_sock(void) |
| 1251 | { |
| 1252 | svc_reg_xprt_class(&svc_tcp_bc_class); |
| 1253 | } |
| 1254 | |
| 1255 | static void svc_cleanup_bc_xprt_sock(void) |
| 1256 | { |
| 1257 | svc_unreg_xprt_class(&svc_tcp_bc_class); |
| 1258 | } |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 1259 | #else /* CONFIG_SUNRPC_BACKCHANNEL */ |
Andy Adamson | 16b2d1e | 2011-01-06 02:04:27 +0000 | [diff] [blame] | 1260 | static void svc_init_bc_xprt_sock(void) |
| 1261 | { |
| 1262 | } |
| 1263 | |
| 1264 | static void svc_cleanup_bc_xprt_sock(void) |
| 1265 | { |
| 1266 | } |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 1267 | #endif /* CONFIG_SUNRPC_BACKCHANNEL */ |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 1268 | |
Chuck Lever | 2412e92 | 2017-08-01 11:59:49 -0400 | [diff] [blame] | 1269 | static const struct svc_xprt_ops svc_tcp_ops = { |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1270 | .xpo_create = svc_tcp_create, |
Tom Tucker | 5d13799 | 2007-12-30 21:07:23 -0600 | [diff] [blame] | 1271 | .xpo_recvfrom = svc_tcp_recvfrom, |
| 1272 | .xpo_sendto = svc_tcp_sendto, |
Tom Tucker | 5148bf4 | 2007-12-30 21:07:25 -0600 | [diff] [blame] | 1273 | .xpo_release_rqst = svc_release_skb, |
Trond Myklebust | 69b6ba3 | 2008-12-23 16:30:11 -0500 | [diff] [blame] | 1274 | .xpo_detach = svc_tcp_sock_detach, |
Tom Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 1275 | .xpo_free = svc_sock_free, |
Tom Tucker | e831fe6 | 2007-12-30 21:07:29 -0600 | [diff] [blame] | 1276 | .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr, |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 1277 | .xpo_has_wspace = svc_tcp_has_wspace, |
Tom Tucker | 38a417c | 2007-12-30 21:07:36 -0600 | [diff] [blame] | 1278 | .xpo_accept = svc_tcp_accept, |
Chuck Lever | 16e4d93 | 2014-05-19 13:40:22 -0400 | [diff] [blame] | 1279 | .xpo_secure_port = svc_sock_secure_port, |
Scott Mayhew | ea08e39 | 2016-11-11 13:16:22 -0500 | [diff] [blame] | 1280 | .xpo_kill_temp_xprt = svc_tcp_kill_temp_xprt, |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 1281 | }; |
| 1282 | |
| 1283 | static struct svc_xprt_class svc_tcp_class = { |
| 1284 | .xcl_name = "tcp", |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1285 | .xcl_owner = THIS_MODULE, |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 1286 | .xcl_ops = &svc_tcp_ops, |
Tom Tucker | 4902315 | 2007-12-30 21:07:21 -0600 | [diff] [blame] | 1287 | .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP, |
Chuck Lever | 3c45ddf | 2014-07-16 15:38:32 -0400 | [diff] [blame] | 1288 | .xcl_ident = XPRT_TRANSPORT_TCP, |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 1289 | }; |
| 1290 | |
| 1291 | void svc_init_xprt_sock(void) |
| 1292 | { |
| 1293 | svc_reg_xprt_class(&svc_tcp_class); |
| 1294 | svc_reg_xprt_class(&svc_udp_class); |
Andy Adamson | 16b2d1e | 2011-01-06 02:04:27 +0000 | [diff] [blame] | 1295 | svc_init_bc_xprt_sock(); |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 1296 | } |
| 1297 | |
| 1298 | void svc_cleanup_xprt_sock(void) |
| 1299 | { |
| 1300 | svc_unreg_xprt_class(&svc_tcp_class); |
| 1301 | svc_unreg_xprt_class(&svc_udp_class); |
Andy Adamson | 16b2d1e | 2011-01-06 02:04:27 +0000 | [diff] [blame] | 1302 | svc_cleanup_bc_xprt_sock(); |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 1303 | } |
| 1304 | |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 1305 | static void svc_tcp_init(struct svc_sock *svsk, struct svc_serv *serv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | { |
| 1307 | struct sock *sk = svsk->sk_sk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | |
Stanislav Kinsbursky | bd4620d | 2011-12-06 14:19:10 +0300 | [diff] [blame] | 1309 | svc_xprt_init(sock_net(svsk->sk_sock->sk), &svc_tcp_class, |
| 1310 | &svsk->sk_xprt, serv); |
Tom Tucker | def13d7 | 2007-12-30 21:08:08 -0600 | [diff] [blame] | 1311 | set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags); |
Jeff Layton | 362142b2 | 2017-02-24 13:25:23 -0500 | [diff] [blame] | 1312 | set_bit(XPT_CONG_CTRL, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | if (sk->sk_state == TCP_LISTEN) { |
| 1314 | dprintk("setting up TCP socket for listening\n"); |
Chuck Lever | ece200d | 2018-03-27 10:51:00 -0400 | [diff] [blame] | 1315 | strcpy(svsk->sk_xprt.xpt_remotebuf, "listener"); |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 1316 | set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | sk->sk_data_ready = svc_tcp_listen_data_ready; |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 1318 | set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | } else { |
| 1320 | dprintk("setting up TCP socket for reading\n"); |
| 1321 | sk->sk_state_change = svc_tcp_state_change; |
Trond Myklebust | fa9251a | 2016-06-24 10:55:48 -0400 | [diff] [blame] | 1322 | sk->sk_data_ready = svc_data_ready; |
Trond Myklebust | 637600f | 2016-06-24 10:55:51 -0400 | [diff] [blame] | 1323 | sk->sk_write_space = svc_write_space; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | |
| 1325 | svsk->sk_reclen = 0; |
| 1326 | svsk->sk_tcplen = 0; |
J. Bruce Fields | 8af345f | 2012-12-03 16:45:35 -0500 | [diff] [blame] | 1327 | svsk->sk_datalen = 0; |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 1328 | memset(&svsk->sk_pages[0], 0, sizeof(svsk->sk_pages)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | |
Chuck Lever | b7872fe | 2008-04-14 12:27:01 -0400 | [diff] [blame] | 1330 | tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 1332 | set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
Trond Myklebust | b2f21f7 | 2016-07-26 09:51:19 -0400 | [diff] [blame] | 1333 | switch (sk->sk_state) { |
| 1334 | case TCP_SYN_RECV: |
| 1335 | case TCP_ESTABLISHED: |
| 1336 | break; |
| 1337 | default: |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 1338 | set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags); |
Trond Myklebust | b2f21f7 | 2016-07-26 09:51:19 -0400 | [diff] [blame] | 1339 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | } |
| 1341 | } |
| 1342 | |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 1343 | void svc_sock_update_bufs(struct svc_serv *serv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | { |
| 1345 | /* |
| 1346 | * The number of server threads has changed. Update |
| 1347 | * rcvbuf and sndbuf accordingly on all sockets |
| 1348 | */ |
Pavel Emelyanov | 8f3a6de | 2010-10-05 23:30:19 +0400 | [diff] [blame] | 1349 | struct svc_sock *svsk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | |
| 1351 | spin_lock_bh(&serv->sv_lock); |
Pavel Emelyanov | 8f3a6de | 2010-10-05 23:30:19 +0400 | [diff] [blame] | 1352 | list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list) |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 1353 | set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | spin_unlock_bh(&serv->sv_lock); |
| 1355 | } |
Trond Myklebust | 24c3767 | 2008-12-23 16:30:12 -0500 | [diff] [blame] | 1356 | EXPORT_SYMBOL_GPL(svc_sock_update_bufs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | |
| 1358 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | * Initialize socket for RPC use and create svc_sock struct |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | */ |
Chuck Lever | 6b17433 | 2007-02-12 00:53:28 -0800 | [diff] [blame] | 1361 | static struct svc_sock *svc_setup_socket(struct svc_serv *serv, |
| 1362 | struct socket *sock, |
J. Bruce Fields | 72c3537 | 2012-08-13 17:46:17 -0400 | [diff] [blame] | 1363 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | { |
| 1365 | struct svc_sock *svsk; |
| 1366 | struct sock *inet; |
Chuck Lever | 6b17433 | 2007-02-12 00:53:28 -0800 | [diff] [blame] | 1367 | int pmap_register = !(flags & SVC_SOCK_ANONYMOUS); |
J. Bruce Fields | 72c3537 | 2012-08-13 17:46:17 -0400 | [diff] [blame] | 1368 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | |
| 1370 | dprintk("svc: svc_setup_socket %p\n", sock); |
J. Bruce Fields | 72c3537 | 2012-08-13 17:46:17 -0400 | [diff] [blame] | 1371 | svsk = kzalloc(sizeof(*svsk), GFP_KERNEL); |
| 1372 | if (!svsk) |
| 1373 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | |
| 1375 | inet = sock->sk; |
| 1376 | |
| 1377 | /* Register socket with portmapper */ |
J. Bruce Fields | 72c3537 | 2012-08-13 17:46:17 -0400 | [diff] [blame] | 1378 | if (pmap_register) |
| 1379 | err = svc_register(serv, sock_net(sock->sk), inet->sk_family, |
Stanislav Kinsbursky | 5247fab | 2012-01-13 14:02:48 +0400 | [diff] [blame] | 1380 | inet->sk_protocol, |
Eric Dumazet | c720c7e8 | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 1381 | ntohs(inet_sk(inet)->inet_sport)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | |
J. Bruce Fields | 72c3537 | 2012-08-13 17:46:17 -0400 | [diff] [blame] | 1383 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | kfree(svsk); |
J. Bruce Fields | 72c3537 | 2012-08-13 17:46:17 -0400 | [diff] [blame] | 1385 | return ERR_PTR(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | } |
| 1387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | 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 Lomovtsev | eebe53e | 2017-08-21 07:23:07 -0400 | [diff] [blame] | 1393 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | |
| 1401 | /* Initialize the socket */ |
| 1402 | if (sock->type == SOCK_DGRAM) |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 1403 | svc_udp_init(svsk, serv); |
Trond Myklebust | 637600f | 2016-06-24 10:55:51 -0400 | [diff] [blame] | 1404 | else |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 1405 | svc_tcp_init(svsk, serv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | |
Trond Myklebust | c7995f8 | 2016-07-26 09:51:20 -0400 | [diff] [blame] | 1407 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | return svsk; |
| 1414 | } |
| 1415 | |
Stanislav Kinsbursky | 3064639 | 2014-02-26 16:50:01 +0300 | [diff] [blame] | 1416 | bool 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); |
| 1427 | out: |
| 1428 | return ret; |
| 1429 | } |
| 1430 | EXPORT_SYMBOL_GPL(svc_alien_sock); |
| 1431 | |
Chuck Lever | bfba9ab | 2009-04-23 19:32:33 -0400 | [diff] [blame] | 1432 | /** |
| 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 | */ |
| 1443 | int svc_addsock(struct svc_serv *serv, const int fd, char *name_return, |
| 1444 | const size_t len) |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 1445 | { |
| 1446 | int err = 0; |
| 1447 | struct socket *so = sockfd_lookup(fd, &err); |
| 1448 | struct svc_sock *svsk = NULL; |
J. Bruce Fields | a8e1007 | 2012-08-13 18:01:03 -0400 | [diff] [blame] | 1449 | struct sockaddr_storage addr; |
| 1450 | struct sockaddr *sin = (struct sockaddr *)&addr; |
| 1451 | int salen; |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 1452 | |
| 1453 | if (!so) |
| 1454 | return err; |
J. Bruce Fields | a8e1007 | 2012-08-13 18:01:03 -0400 | [diff] [blame] | 1455 | err = -EAFNOSUPPORT; |
Aime Le Rouzic | 205ba42 | 2010-01-26 14:03:56 -0500 | [diff] [blame] | 1456 | if ((so->sk->sk_family != PF_INET) && (so->sk->sk_family != PF_INET6)) |
J. Bruce Fields | a8e1007 | 2012-08-13 18:01:03 -0400 | [diff] [blame] | 1457 | goto out; |
| 1458 | err = -EPROTONOSUPPORT; |
| 1459 | if (so->sk->sk_protocol != IPPROTO_TCP && |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 1460 | so->sk->sk_protocol != IPPROTO_UDP) |
J. Bruce Fields | a8e1007 | 2012-08-13 18:01:03 -0400 | [diff] [blame] | 1461 | 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; |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 1473 | } |
Denys Vlasenko | 9b2c45d | 2018-02-12 20:00:20 +0100 | [diff] [blame] | 1474 | salen = kernel_getsockname(svsk->sk_sock, sin); |
| 1475 | if (salen >= 0) |
J. Bruce Fields | a8e1007 | 2012-08-13 18:01:03 -0400 | [diff] [blame] | 1476 | svc_xprt_set_local(&svsk->sk_xprt, sin, salen); |
J. Bruce Fields | 39b5530 | 2012-08-14 15:50:34 -0400 | [diff] [blame] | 1477 | svc_add_new_perm_xprt(serv, &svsk->sk_xprt); |
Chuck Lever | e7942b9 | 2009-04-23 19:32:48 -0400 | [diff] [blame] | 1478 | return svc_one_sock_name(svsk, name_return, len); |
J. Bruce Fields | a8e1007 | 2012-08-13 18:01:03 -0400 | [diff] [blame] | 1479 | out: |
| 1480 | sockfd_put(so); |
| 1481 | return err; |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 1482 | } |
| 1483 | EXPORT_SYMBOL_GPL(svc_addsock); |
| 1484 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | /* |
| 1486 | * Create socket for RPC service. |
| 1487 | */ |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1488 | static struct svc_xprt *svc_create_socket(struct svc_serv *serv, |
| 1489 | int protocol, |
Pavel Emelyanov | 62832c0 | 2010-09-29 16:04:18 +0400 | [diff] [blame] | 1490 | struct net *net, |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1491 | struct sockaddr *sin, int len, |
| 1492 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | { |
| 1494 | struct svc_sock *svsk; |
| 1495 | struct socket *sock; |
| 1496 | int error; |
| 1497 | int type; |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 1498 | struct sockaddr_storage addr; |
| 1499 | struct sockaddr *newsin = (struct sockaddr *)&addr; |
| 1500 | int newlen; |
Trond Myklebust | c69da77 | 2009-03-30 18:59:17 -0400 | [diff] [blame] | 1501 | int family; |
| 1502 | int val; |
Pavel Emelyanov | 5216a8e | 2008-02-21 10:57:45 +0300 | [diff] [blame] | 1503 | RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 1505 | dprintk("svc: svc_create_socket(%s, %d, %s)\n", |
| 1506 | serv->sv_program->pg_name, protocol, |
Chuck Lever | 77f1f67 | 2007-02-12 00:53:39 -0800 | [diff] [blame] | 1507 | __svc_print_addr(sin, buf, sizeof(buf))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | |
| 1509 | if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) { |
| 1510 | printk(KERN_WARNING "svc: only UDP and TCP " |
| 1511 | "sockets supported\n"); |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1512 | return ERR_PTR(-EINVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | |
Trond Myklebust | c69da77 | 2009-03-30 18:59:17 -0400 | [diff] [blame] | 1515 | 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 Emelyanov | 14ec63c | 2010-09-29 16:06:57 +0400 | [diff] [blame] | 1527 | error = __sock_create(net, family, type, protocol, &sock, 1); |
Chuck Lever | 77f1f67 | 2007-02-12 00:53:39 -0800 | [diff] [blame] | 1528 | if (error < 0) |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1529 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 1531 | svc_reclassify_socket(sock); |
| 1532 | |
Trond Myklebust | c69da77 | 2009-03-30 18:59:17 -0400 | [diff] [blame] | 1533 | /* |
| 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 Sesterhenn | 1811474 | 2006-09-28 14:37:07 -0700 | [diff] [blame] | 1543 | if (type == SOCK_STREAM) |
Pavel Emelyanov | 4a17fd5 | 2012-04-19 03:39:36 +0000 | [diff] [blame] | 1544 | sock->sk->sk_reuse = SK_CAN_REUSE; /* allow address reuse */ |
Chuck Lever | 77f1f67 | 2007-02-12 00:53:39 -0800 | [diff] [blame] | 1545 | error = kernel_bind(sock, sin, len); |
Eric Sesterhenn | 1811474 | 2006-09-28 14:37:07 -0700 | [diff] [blame] | 1546 | if (error < 0) |
| 1547 | goto bummer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1548 | |
Denys Vlasenko | 9b2c45d | 2018-02-12 20:00:20 +0100 | [diff] [blame] | 1549 | error = kernel_getsockname(sock, newsin); |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 1550 | if (error < 0) |
| 1551 | goto bummer; |
Denys Vlasenko | 9b2c45d | 2018-02-12 20:00:20 +0100 | [diff] [blame] | 1552 | newlen = error; |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 1553 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1554 | if (protocol == IPPROTO_TCP) { |
Sridhar Samudrala | e6242e9 | 2006-08-07 20:58:01 -0700 | [diff] [blame] | 1555 | if ((error = kernel_listen(sock, 64)) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1556 | goto bummer; |
| 1557 | } |
| 1558 | |
J. Bruce Fields | 72c3537 | 2012-08-13 17:46:17 -0400 | [diff] [blame] | 1559 | svsk = svc_setup_socket(serv, sock, flags); |
J. Bruce Fields | a8e1007 | 2012-08-13 18:01:03 -0400 | [diff] [blame] | 1560 | if (IS_ERR(svsk)) { |
| 1561 | error = PTR_ERR(svsk); |
| 1562 | goto bummer; |
NeilBrown | e79eff1 | 2007-02-12 00:53:30 -0800 | [diff] [blame] | 1563 | } |
J. Bruce Fields | a8e1007 | 2012-08-13 18:01:03 -0400 | [diff] [blame] | 1564 | svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen); |
| 1565 | return (struct svc_xprt *)svsk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | bummer: |
| 1567 | dprintk("svc: svc_create_socket error = %d\n", -error); |
| 1568 | sock_release(sock); |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1569 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | } |
| 1571 | |
| 1572 | /* |
Tom Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 1573 | * Detach the svc_sock from the socket so that no |
| 1574 | * more callbacks occur. |
| 1575 | */ |
| 1576 | static 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 Myklebust | 069c225 | 2016-06-24 10:55:47 -0400 | [diff] [blame] | 1584 | lock_sock(sk); |
Tom Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 1585 | sk->sk_state_change = svsk->sk_ostate; |
| 1586 | sk->sk_data_ready = svsk->sk_odata; |
| 1587 | sk->sk_write_space = svsk->sk_owspace; |
Trond Myklebust | 069c225 | 2016-06-24 10:55:47 -0400 | [diff] [blame] | 1588 | sk->sk_user_data = NULL; |
| 1589 | release_sock(sk); |
Trond Myklebust | 69b6ba3 | 2008-12-23 16:30:11 -0500 | [diff] [blame] | 1590 | } |
| 1591 | |
| 1592 | /* |
| 1593 | * Disconnect the socket, and reset the callbacks |
| 1594 | */ |
| 1595 | static 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 Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 1603 | if (!test_bit(XPT_LISTENER, &xprt->xpt_flags)) { |
| 1604 | svc_tcp_clear_pages(svsk); |
Trond Myklebust | 69b6ba3 | 2008-12-23 16:30:11 -0500 | [diff] [blame] | 1605 | kernel_sock_shutdown(svsk->sk_sock, SHUT_RDWR); |
J. Bruce Fields | 31d68ef | 2011-02-24 11:25:33 -0800 | [diff] [blame] | 1606 | } |
Tom Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 1607 | } |
| 1608 | |
| 1609 | /* |
| 1610 | * Free the svc_sock's socket resources and the svc_sock itself. |
| 1611 | */ |
| 1612 | static 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 Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 1617 | if (svsk->sk_sock->file) |
| 1618 | sockfd_put(svsk->sk_sock); |
| 1619 | else |
| 1620 | sock_release(svsk->sk_sock); |
| 1621 | kfree(svsk); |
| 1622 | } |
Benny Halevy | 7652e5a | 2009-04-01 09:23:09 -0400 | [diff] [blame] | 1623 | |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 1624 | #if defined(CONFIG_SUNRPC_BACKCHANNEL) |
Benny Halevy | 7652e5a | 2009-04-01 09:23:09 -0400 | [diff] [blame] | 1625 | /* |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 1626 | * Create a back channel svc_xprt which shares the fore channel socket. |
Benny Halevy | 7652e5a | 2009-04-01 09:23:09 -0400 | [diff] [blame] | 1627 | */ |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 1628 | static 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 Halevy | 7652e5a | 2009-04-01 09:23:09 -0400 | [diff] [blame] | 1633 | { |
| 1634 | struct svc_sock *svsk; |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 1635 | struct svc_xprt *xprt; |
Benny Halevy | 7652e5a | 2009-04-01 09:23:09 -0400 | [diff] [blame] | 1636 | |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 1637 | 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 Halevy | 7652e5a | 2009-04-01 09:23:09 -0400 | [diff] [blame] | 1643 | svsk = kzalloc(sizeof(*svsk), GFP_KERNEL); |
| 1644 | if (!svsk) |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 1645 | return ERR_PTR(-ENOMEM); |
Benny Halevy | 7652e5a | 2009-04-01 09:23:09 -0400 | [diff] [blame] | 1646 | |
| 1647 | xprt = &svsk->sk_xprt; |
Stanislav Kinsbursky | bd4620d | 2011-12-06 14:19:10 +0300 | [diff] [blame] | 1648 | svc_xprt_init(net, &svc_tcp_bc_class, xprt, serv); |
Kinglong Mee | 5427290 | 2017-03-07 17:22:43 +0800 | [diff] [blame] | 1649 | set_bit(XPT_CONG_CTRL, &svsk->sk_xprt.xpt_flags); |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 1650 | |
Andy Adamson | 4a19de0 | 2011-01-06 02:04:35 +0000 | [diff] [blame] | 1651 | serv->sv_bc_xprt = xprt; |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 1652 | |
Benny Halevy | 7652e5a | 2009-04-01 09:23:09 -0400 | [diff] [blame] | 1653 | return xprt; |
| 1654 | } |
Benny Halevy | 7652e5a | 2009-04-01 09:23:09 -0400 | [diff] [blame] | 1655 | |
| 1656 | /* |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 1657 | * Free a back channel svc_sock. |
Benny Halevy | 7652e5a | 2009-04-01 09:23:09 -0400 | [diff] [blame] | 1658 | */ |
Andy Adamson | 1f11a03 | 2011-01-06 02:04:26 +0000 | [diff] [blame] | 1659 | static void svc_bc_sock_free(struct svc_xprt *xprt) |
Benny Halevy | 7652e5a | 2009-04-01 09:23:09 -0400 | [diff] [blame] | 1660 | { |
Andy Adamson | 778be23 | 2011-01-25 15:38:01 +0000 | [diff] [blame] | 1661 | if (xprt) |
Benny Halevy | 7652e5a | 2009-04-01 09:23:09 -0400 | [diff] [blame] | 1662 | kfree(container_of(xprt, struct svc_sock, sk_xprt)); |
| 1663 | } |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 1664 | #endif /* CONFIG_SUNRPC_BACKCHANNEL */ |