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> |
| 24 | #include <linux/errno.h> |
| 25 | #include <linux/fcntl.h> |
| 26 | #include <linux/net.h> |
| 27 | #include <linux/in.h> |
| 28 | #include <linux/inet.h> |
| 29 | #include <linux/udp.h> |
Andrew Morton | 91483c4 | 2005-08-09 20:20:07 -0700 | [diff] [blame] | 30 | #include <linux/tcp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/unistd.h> |
| 32 | #include <linux/slab.h> |
| 33 | #include <linux/netdevice.h> |
| 34 | #include <linux/skbuff.h> |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 35 | #include <linux/file.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 36 | #include <linux/freezer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <net/sock.h> |
| 38 | #include <net/checksum.h> |
| 39 | #include <net/ip.h> |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 40 | #include <net/ipv6.h> |
Chuck Lever | b7872fe | 2008-04-14 12:27:01 -0400 | [diff] [blame] | 41 | #include <net/tcp.h> |
Arnaldo Carvalho de Melo | c752f07 | 2005-08-09 20:08:28 -0700 | [diff] [blame] | 42 | #include <net/tcp_states.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <asm/uaccess.h> |
| 44 | #include <asm/ioctls.h> |
| 45 | |
| 46 | #include <linux/sunrpc/types.h> |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 47 | #include <linux/sunrpc/clnt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #include <linux/sunrpc/xdr.h> |
Chuck Lever | c0401ea | 2008-04-14 12:27:30 -0400 | [diff] [blame] | 49 | #include <linux/sunrpc/msg_prot.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include <linux/sunrpc/svcsock.h> |
| 51 | #include <linux/sunrpc/stats.h> |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 52 | #include <linux/sunrpc/xprt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 54 | #define RPCDBG_FACILITY RPCDBG_SVCXPRT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | |
| 57 | static struct svc_sock *svc_setup_socket(struct svc_serv *, struct socket *, |
Chuck Lever | 6b17433 | 2007-02-12 00:53:28 -0800 | [diff] [blame] | 58 | int *errp, int flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | static void svc_udp_data_ready(struct sock *, int); |
| 60 | static int svc_udp_recvfrom(struct svc_rqst *); |
| 61 | static int svc_udp_sendto(struct svc_rqst *); |
Tom Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 62 | static void svc_sock_detach(struct svc_xprt *); |
Trond Myklebust | 69b6ba3 | 2008-12-23 16:30:11 -0500 | [diff] [blame] | 63 | static void svc_tcp_sock_detach(struct svc_xprt *); |
Tom Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 64 | static void svc_sock_free(struct svc_xprt *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 66 | static struct svc_xprt *svc_create_socket(struct svc_serv *, int, |
Pavel Emelyanov | 62832c0 | 2010-09-29 16:04:18 +0400 | [diff] [blame] | 67 | struct net *, struct sockaddr *, |
| 68 | int, int); |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 69 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 70 | static struct lock_class_key svc_key[2]; |
| 71 | static struct lock_class_key svc_slock_key[2]; |
| 72 | |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 73 | static void svc_reclassify_socket(struct socket *sock) |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 74 | { |
| 75 | struct sock *sk = sock->sk; |
John Heffner | 02b3d34 | 2007-09-12 10:42:12 +0200 | [diff] [blame] | 76 | BUG_ON(sock_owned_by_user(sk)); |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 77 | switch (sk->sk_family) { |
| 78 | case AF_INET: |
| 79 | sock_lock_init_class_and_name(sk, "slock-AF_INET-NFSD", |
Tom Tucker | def13d7 | 2007-12-30 21:08:08 -0600 | [diff] [blame] | 80 | &svc_slock_key[0], |
| 81 | "sk_xprt.xpt_lock-AF_INET-NFSD", |
| 82 | &svc_key[0]); |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 83 | break; |
| 84 | |
| 85 | case AF_INET6: |
| 86 | sock_lock_init_class_and_name(sk, "slock-AF_INET6-NFSD", |
Tom Tucker | def13d7 | 2007-12-30 21:08:08 -0600 | [diff] [blame] | 87 | &svc_slock_key[1], |
| 88 | "sk_xprt.xpt_lock-AF_INET6-NFSD", |
| 89 | &svc_key[1]); |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 90 | break; |
| 91 | |
| 92 | default: |
| 93 | BUG(); |
| 94 | } |
| 95 | } |
| 96 | #else |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 97 | static void svc_reclassify_socket(struct socket *sock) |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 98 | { |
| 99 | } |
| 100 | #endif |
| 101 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | /* |
| 103 | * Release an skbuff after use |
| 104 | */ |
Tom Tucker | 5148bf4 | 2007-12-30 21:07:25 -0600 | [diff] [blame] | 105 | static void svc_release_skb(struct svc_rqst *rqstp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | { |
Tom Tucker | 5148bf4 | 2007-12-30 21:07:25 -0600 | [diff] [blame] | 107 | struct sk_buff *skb = rqstp->rq_xprt_ctxt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | if (skb) { |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 110 | struct svc_sock *svsk = |
| 111 | container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt); |
Tom Tucker | 5148bf4 | 2007-12-30 21:07:25 -0600 | [diff] [blame] | 112 | rqstp->rq_xprt_ctxt = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
| 114 | dprintk("svc: service %p, releasing skb %p\n", rqstp, skb); |
Eric Dumazet | 9d410c7 | 2009-10-30 05:03:53 +0000 | [diff] [blame] | 115 | skb_free_datagram_locked(svsk->sk_sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | } |
| 118 | |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 119 | union svc_pktinfo_u { |
| 120 | struct in_pktinfo pkti; |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 121 | struct in6_pktinfo pkti6; |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 122 | }; |
David S. Miller | bc375ea | 2007-04-12 13:35:59 -0700 | [diff] [blame] | 123 | #define SVC_PKTINFO_SPACE \ |
| 124 | CMSG_SPACE(sizeof(union svc_pktinfo_u)) |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 125 | |
| 126 | static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh) |
| 127 | { |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 128 | struct svc_sock *svsk = |
| 129 | container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt); |
| 130 | switch (svsk->sk_sk->sk_family) { |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 131 | case AF_INET: { |
| 132 | struct in_pktinfo *pki = CMSG_DATA(cmh); |
| 133 | |
| 134 | cmh->cmsg_level = SOL_IP; |
| 135 | cmh->cmsg_type = IP_PKTINFO; |
| 136 | pki->ipi_ifindex = 0; |
| 137 | pki->ipi_spec_dst.s_addr = rqstp->rq_daddr.addr.s_addr; |
| 138 | cmh->cmsg_len = CMSG_LEN(sizeof(*pki)); |
| 139 | } |
| 140 | break; |
NeilBrown | 5a05ed7 | 2007-03-06 01:42:22 -0800 | [diff] [blame] | 141 | |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 142 | case AF_INET6: { |
| 143 | struct in6_pktinfo *pki = CMSG_DATA(cmh); |
| 144 | |
| 145 | cmh->cmsg_level = SOL_IPV6; |
| 146 | cmh->cmsg_type = IPV6_PKTINFO; |
| 147 | pki->ipi6_ifindex = 0; |
| 148 | ipv6_addr_copy(&pki->ipi6_addr, |
| 149 | &rqstp->rq_daddr.addr6); |
| 150 | cmh->cmsg_len = CMSG_LEN(sizeof(*pki)); |
| 151 | } |
| 152 | break; |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 153 | } |
Chuck Lever | b92503b | 2007-02-12 00:53:36 -0800 | [diff] [blame] | 154 | } |
| 155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | /* |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 157 | * send routine intended to be shared by the fore- and back-channel |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | */ |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 159 | int svc_send_common(struct socket *sock, struct xdr_buf *xdr, |
| 160 | struct page *headpage, unsigned long headoffset, |
| 161 | struct page *tailpage, unsigned long tailoffset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | int result; |
| 164 | int size; |
| 165 | struct page **ppage = xdr->pages; |
| 166 | size_t base = xdr->page_base; |
| 167 | unsigned int pglen = xdr->page_len; |
| 168 | unsigned int flags = MSG_MORE; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 169 | int slen; |
| 170 | int len = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
| 172 | slen = xdr->len; |
| 173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | /* send head */ |
| 175 | if (slen == xdr->head[0].iov_len) |
| 176 | flags = 0; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 177 | len = kernel_sendpage(sock, headpage, headoffset, |
NeilBrown | 4452435 | 2006-10-04 02:15:46 -0700 | [diff] [blame] | 178 | xdr->head[0].iov_len, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | if (len != xdr->head[0].iov_len) |
| 180 | goto out; |
| 181 | slen -= xdr->head[0].iov_len; |
| 182 | if (slen == 0) |
| 183 | goto out; |
| 184 | |
| 185 | /* send page data */ |
| 186 | size = PAGE_SIZE - base < pglen ? PAGE_SIZE - base : pglen; |
| 187 | while (pglen > 0) { |
| 188 | if (slen == size) |
| 189 | flags = 0; |
Sridhar Samudrala | e6242e9 | 2006-08-07 20:58:01 -0700 | [diff] [blame] | 190 | result = kernel_sendpage(sock, *ppage, base, size, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | if (result > 0) |
| 192 | len += result; |
| 193 | if (result != size) |
| 194 | goto out; |
| 195 | slen -= size; |
| 196 | pglen -= size; |
| 197 | size = PAGE_SIZE < pglen ? PAGE_SIZE : pglen; |
| 198 | base = 0; |
| 199 | ppage++; |
| 200 | } |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 201 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | /* send tail */ |
| 203 | if (xdr->tail[0].iov_len) { |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 204 | result = kernel_sendpage(sock, tailpage, tailoffset, |
| 205 | xdr->tail[0].iov_len, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | if (result > 0) |
| 207 | len += result; |
| 208 | } |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 209 | |
| 210 | out: |
| 211 | return len; |
| 212 | } |
| 213 | |
| 214 | |
| 215 | /* |
| 216 | * Generic sendto routine |
| 217 | */ |
| 218 | static int svc_sendto(struct svc_rqst *rqstp, struct xdr_buf *xdr) |
| 219 | { |
| 220 | struct svc_sock *svsk = |
| 221 | container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt); |
| 222 | struct socket *sock = svsk->sk_sock; |
| 223 | union { |
| 224 | struct cmsghdr hdr; |
| 225 | long all[SVC_PKTINFO_SPACE / sizeof(long)]; |
| 226 | } buffer; |
| 227 | struct cmsghdr *cmh = &buffer.hdr; |
| 228 | int len = 0; |
| 229 | unsigned long tailoff; |
| 230 | unsigned long headoff; |
| 231 | RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]); |
| 232 | |
| 233 | if (rqstp->rq_prot == IPPROTO_UDP) { |
| 234 | struct msghdr msg = { |
| 235 | .msg_name = &rqstp->rq_addr, |
| 236 | .msg_namelen = rqstp->rq_addrlen, |
| 237 | .msg_control = cmh, |
| 238 | .msg_controllen = sizeof(buffer), |
| 239 | .msg_flags = MSG_MORE, |
| 240 | }; |
| 241 | |
| 242 | svc_set_cmsg_data(rqstp, cmh); |
| 243 | |
| 244 | if (sock_sendmsg(sock, &msg, 0) < 0) |
| 245 | goto out; |
| 246 | } |
| 247 | |
| 248 | tailoff = ((unsigned long)xdr->tail[0].iov_base) & (PAGE_SIZE-1); |
| 249 | headoff = 0; |
| 250 | len = svc_send_common(sock, xdr, rqstp->rq_respages[0], headoff, |
| 251 | rqstp->rq_respages[0], tailoff); |
| 252 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | out: |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 254 | dprintk("svc: socket %p sendto([%p %Zu... ], %d) = %d (addr %s)\n", |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 255 | svsk, xdr->head[0].iov_base, xdr->head[0].iov_len, |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 256 | xdr->len, len, svc_print_addr(rqstp, buf, sizeof(buf))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
| 258 | return len; |
| 259 | } |
| 260 | |
| 261 | /* |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 262 | * Report socket names for nfsdfs |
| 263 | */ |
Chuck Lever | e7942b9 | 2009-04-23 19:32:48 -0400 | [diff] [blame] | 264 | 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] | 265 | { |
Chuck Lever | 017cb47 | 2009-04-23 19:33:03 -0400 | [diff] [blame] | 266 | const struct sock *sk = svsk->sk_sk; |
| 267 | const char *proto_name = sk->sk_protocol == IPPROTO_UDP ? |
| 268 | "udp" : "tcp"; |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 269 | int len; |
| 270 | |
Chuck Lever | 017cb47 | 2009-04-23 19:33:03 -0400 | [diff] [blame] | 271 | switch (sk->sk_family) { |
Chuck Lever | e7942b9 | 2009-04-23 19:32:48 -0400 | [diff] [blame] | 272 | case PF_INET: |
| 273 | len = snprintf(buf, remaining, "ipv4 %s %pI4 %d\n", |
Chuck Lever | 017cb47 | 2009-04-23 19:33:03 -0400 | [diff] [blame] | 274 | proto_name, |
Eric Dumazet | c720c7e8 | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 275 | &inet_sk(sk)->inet_rcv_saddr, |
| 276 | inet_sk(sk)->inet_num); |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 277 | break; |
Chuck Lever | 58de2f8 | 2009-04-23 19:32:55 -0400 | [diff] [blame] | 278 | case PF_INET6: |
| 279 | len = snprintf(buf, remaining, "ipv6 %s %pI6 %d\n", |
Chuck Lever | 017cb47 | 2009-04-23 19:33:03 -0400 | [diff] [blame] | 280 | proto_name, |
| 281 | &inet6_sk(sk)->rcv_saddr, |
Eric Dumazet | c720c7e8 | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 282 | inet_sk(sk)->inet_num); |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 283 | break; |
| 284 | default: |
Chuck Lever | e7942b9 | 2009-04-23 19:32:48 -0400 | [diff] [blame] | 285 | len = snprintf(buf, remaining, "*unknown-%d*\n", |
Chuck Lever | 017cb47 | 2009-04-23 19:33:03 -0400 | [diff] [blame] | 286 | sk->sk_family); |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 287 | } |
Chuck Lever | e7942b9 | 2009-04-23 19:32:48 -0400 | [diff] [blame] | 288 | |
| 289 | if (len >= remaining) { |
| 290 | *buf = '\0'; |
| 291 | return -ENAMETOOLONG; |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 292 | } |
| 293 | return len; |
| 294 | } |
| 295 | |
Chuck Lever | 8435d34 | 2009-04-23 19:32:40 -0400 | [diff] [blame] | 296 | /** |
| 297 | * svc_sock_names - construct a list of listener names in a string |
| 298 | * @serv: pointer to RPC service |
| 299 | * @buf: pointer to a buffer to fill in with socket names |
| 300 | * @buflen: size of the buffer to be filled |
| 301 | * @toclose: pointer to '\0'-terminated C string containing the name |
| 302 | * of a listener to be closed |
| 303 | * |
| 304 | * Fills in @buf with a '\n'-separated list of names of listener |
| 305 | * sockets. If @toclose is not NULL, the socket named by @toclose |
| 306 | * is closed, and is not included in the output list. |
| 307 | * |
| 308 | * Returns positive length of the socket name string, or a negative |
| 309 | * errno value on error. |
| 310 | */ |
| 311 | int svc_sock_names(struct svc_serv *serv, char *buf, const size_t buflen, |
| 312 | const char *toclose) |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 313 | { |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 314 | struct svc_sock *svsk, *closesk = NULL; |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 315 | int len = 0; |
| 316 | |
| 317 | if (!serv) |
| 318 | return 0; |
Chuck Lever | e7942b9 | 2009-04-23 19:32:48 -0400 | [diff] [blame] | 319 | |
NeilBrown | aaf68cf | 2007-02-08 14:20:30 -0800 | [diff] [blame] | 320 | spin_lock_bh(&serv->sv_lock); |
Tom Tucker | 7a18208 | 2007-12-30 21:07:53 -0600 | [diff] [blame] | 321 | list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list) { |
Chuck Lever | e7942b9 | 2009-04-23 19:32:48 -0400 | [diff] [blame] | 322 | int onelen = svc_one_sock_name(svsk, buf + len, buflen - len); |
| 323 | if (onelen < 0) { |
| 324 | len = onelen; |
| 325 | break; |
| 326 | } |
| 327 | if (toclose && strcmp(toclose, buf + len) == 0) |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 328 | closesk = svsk; |
| 329 | else |
| 330 | len += onelen; |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 331 | } |
NeilBrown | aaf68cf | 2007-02-08 14:20:30 -0800 | [diff] [blame] | 332 | spin_unlock_bh(&serv->sv_lock); |
Chuck Lever | e7942b9 | 2009-04-23 19:32:48 -0400 | [diff] [blame] | 333 | |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 334 | if (closesk) |
NeilBrown | 5680c44 | 2006-10-04 02:15:45 -0700 | [diff] [blame] | 335 | /* Should unregister with portmap, but you cannot |
| 336 | * unregister just one protocol... |
| 337 | */ |
Tom Tucker | 7a18208 | 2007-12-30 21:07:53 -0600 | [diff] [blame] | 338 | svc_close_xprt(&closesk->sk_xprt); |
NeilBrown | 37a0347 | 2006-10-04 02:15:44 -0700 | [diff] [blame] | 339 | else if (toclose) |
| 340 | return -ENOENT; |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 341 | return len; |
| 342 | } |
Trond Myklebust | 24c3767 | 2008-12-23 16:30:12 -0500 | [diff] [blame] | 343 | EXPORT_SYMBOL_GPL(svc_sock_names); |
NeilBrown | 80212d5 | 2006-10-02 02:17:47 -0700 | [diff] [blame] | 344 | |
| 345 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | * Check input queue length |
| 347 | */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 348 | static int svc_recv_available(struct svc_sock *svsk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | struct socket *sock = svsk->sk_sock; |
| 351 | int avail, err; |
| 352 | |
Sridhar Samudrala | e6242e9 | 2006-08-07 20:58:01 -0700 | [diff] [blame] | 353 | err = kernel_sock_ioctl(sock, TIOCINQ, (unsigned long) &avail); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | |
| 355 | return (err >= 0)? avail : err; |
| 356 | } |
| 357 | |
| 358 | /* |
| 359 | * Generic recvfrom routine. |
| 360 | */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 361 | static int svc_recvfrom(struct svc_rqst *rqstp, struct kvec *iov, int nr, |
| 362 | int buflen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 364 | struct svc_sock *svsk = |
| 365 | container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt); |
Chuck Lever | 1ba9510 | 2007-02-12 00:53:31 -0800 | [diff] [blame] | 366 | struct msghdr msg = { |
| 367 | .msg_flags = MSG_DONTWAIT, |
| 368 | }; |
| 369 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
Tom Tucker | 260c1d1 | 2007-12-30 21:08:29 -0600 | [diff] [blame] | 371 | rqstp->rq_xprt_hlen = 0; |
| 372 | |
Chuck Lever | 1ba9510 | 2007-02-12 00:53:31 -0800 | [diff] [blame] | 373 | len = kernel_recvmsg(svsk->sk_sock, &msg, iov, nr, buflen, |
| 374 | msg.msg_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | dprintk("svc: socket %p recvfrom(%p, %Zu) = %d\n", |
Chuck Lever | 1ba9510 | 2007-02-12 00:53:31 -0800 | [diff] [blame] | 377 | svsk, iov[0].iov_base, iov[0].iov_len, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | return len; |
| 379 | } |
| 380 | |
| 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 | { |
| 387 | #if 0 |
| 388 | mm_segment_t oldfs; |
| 389 | oldfs = get_fs(); set_fs(KERNEL_DS); |
| 390 | sock_setsockopt(sock, SOL_SOCKET, SO_SNDBUF, |
| 391 | (char*)&snd, sizeof(snd)); |
| 392 | sock_setsockopt(sock, SOL_SOCKET, SO_RCVBUF, |
| 393 | (char*)&rcv, sizeof(rcv)); |
| 394 | #else |
| 395 | /* sock_setsockopt limits use to sysctl_?mem_max, |
| 396 | * which isn't acceptable. Until that is made conditional |
| 397 | * on not having CAP_SYS_RESOURCE or similar, we go direct... |
| 398 | * DaveM said I could! |
| 399 | */ |
| 400 | lock_sock(sock->sk); |
| 401 | sock->sk->sk_sndbuf = snd * 2; |
| 402 | sock->sk->sk_rcvbuf = rcv * 2; |
J. Bruce Fields | 7f42183 | 2009-05-27 18:51:06 -0400 | [diff] [blame] | 403 | sock->sk->sk_userlocks |= SOCK_SNDBUF_LOCK|SOCK_RCVBUF_LOCK; |
Trond Myklebust | 47fcb03 | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 404 | sock->sk->sk_write_space(sock->sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | release_sock(sock->sk); |
| 406 | #endif |
| 407 | } |
| 408 | /* |
| 409 | * INET callback when data has been received on the socket. |
| 410 | */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 411 | static void svc_udp_data_ready(struct sock *sk, int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | { |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 413 | struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 415 | if (svsk) { |
| 416 | dprintk("svc: socket %p(inet %p), count=%d, busy=%d\n", |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 417 | svsk, sk, count, |
| 418 | test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags)); |
| 419 | set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
Tom Tucker | f6150c3 | 2007-12-30 21:07:57 -0600 | [diff] [blame] | 420 | svc_xprt_enqueue(&svsk->sk_xprt); |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 421 | } |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 422 | if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) |
| 423 | wake_up_interruptible(sk_sleep(sk)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | /* |
| 427 | * INET callback when space is newly available on the socket. |
| 428 | */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 429 | static void svc_write_space(struct sock *sk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | { |
| 431 | struct svc_sock *svsk = (struct svc_sock *)(sk->sk_user_data); |
| 432 | |
| 433 | if (svsk) { |
| 434 | dprintk("svc: socket %p(inet %p), write_space busy=%d\n", |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 435 | svsk, sk, test_bit(XPT_BUSY, &svsk->sk_xprt.xpt_flags)); |
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 | } |
| 438 | |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 439 | if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) { |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 440 | dprintk("RPC svc_write_space: someone sleeping on %p\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | svsk); |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 442 | wake_up_interruptible(sk_sleep(sk)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | } |
| 444 | } |
| 445 | |
Trond Myklebust | 47fcb03 | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 446 | static void svc_tcp_write_space(struct sock *sk) |
| 447 | { |
| 448 | struct socket *sock = sk->sk_socket; |
| 449 | |
| 450 | if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk) && sock) |
| 451 | clear_bit(SOCK_NOSPACE, &sock->flags); |
| 452 | svc_write_space(sk); |
| 453 | } |
| 454 | |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 455 | /* |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 456 | * See net/ipv6/ip_sockglue.c : ip_cmsg_recv_pktinfo |
| 457 | */ |
| 458 | static int svc_udp_get_dest_address4(struct svc_rqst *rqstp, |
| 459 | struct cmsghdr *cmh) |
| 460 | { |
| 461 | struct in_pktinfo *pki = CMSG_DATA(cmh); |
| 462 | if (cmh->cmsg_type != IP_PKTINFO) |
| 463 | return 0; |
| 464 | rqstp->rq_daddr.addr.s_addr = pki->ipi_spec_dst.s_addr; |
| 465 | return 1; |
| 466 | } |
| 467 | |
| 468 | /* |
| 469 | * See net/ipv6/datagram.c : datagram_recv_ctl |
| 470 | */ |
| 471 | static int svc_udp_get_dest_address6(struct svc_rqst *rqstp, |
| 472 | struct cmsghdr *cmh) |
| 473 | { |
| 474 | struct in6_pktinfo *pki = CMSG_DATA(cmh); |
| 475 | if (cmh->cmsg_type != IPV6_PKTINFO) |
| 476 | return 0; |
| 477 | ipv6_addr_copy(&rqstp->rq_daddr.addr6, &pki->ipi6_addr); |
| 478 | return 1; |
| 479 | } |
| 480 | |
| 481 | /* |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 482 | * Copy the UDP datagram's destination address to the rqstp structure. |
| 483 | * The 'destination' address in this case is the address to which the |
| 484 | * peer sent the datagram, i.e. our local address. For multihomed |
| 485 | * hosts, this can change from msg to msg. Note that only the IP |
| 486 | * address changes, the port number should remain the same. |
| 487 | */ |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 488 | static int svc_udp_get_dest_address(struct svc_rqst *rqstp, |
| 489 | struct cmsghdr *cmh) |
Chuck Lever | 9575648 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 490 | { |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 491 | switch (cmh->cmsg_level) { |
| 492 | case SOL_IP: |
| 493 | return svc_udp_get_dest_address4(rqstp, cmh); |
| 494 | case SOL_IPV6: |
| 495 | return svc_udp_get_dest_address6(rqstp, cmh); |
Chuck Lever | 9575648 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 496 | } |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 497 | |
| 498 | return 0; |
Chuck Lever | 9575648 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 499 | } |
| 500 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | /* |
| 502 | * Receive a datagram from a UDP socket. |
| 503 | */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 504 | static int svc_udp_recvfrom(struct svc_rqst *rqstp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | { |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 506 | struct svc_sock *svsk = |
| 507 | container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt); |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 508 | struct svc_serv *serv = svsk->sk_xprt.xpt_server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | struct sk_buff *skb; |
David S. Miller | bc375ea | 2007-04-12 13:35:59 -0700 | [diff] [blame] | 510 | union { |
| 511 | struct cmsghdr hdr; |
| 512 | long all[SVC_PKTINFO_SPACE / sizeof(long)]; |
| 513 | } buffer; |
| 514 | struct cmsghdr *cmh = &buffer.hdr; |
NeilBrown | 7a37f57 | 2007-03-06 01:42:21 -0800 | [diff] [blame] | 515 | struct msghdr msg = { |
| 516 | .msg_name = svc_addr(rqstp), |
| 517 | .msg_control = cmh, |
| 518 | .msg_controllen = sizeof(buffer), |
| 519 | .msg_flags = MSG_DONTWAIT, |
| 520 | }; |
Chuck Lever | abc5c44 | 2009-04-23 19:31:25 -0400 | [diff] [blame] | 521 | size_t len; |
| 522 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 524 | if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | /* udp sockets need large rcvbuf as all pending |
| 526 | * requests are still in that buffer. sndbuf must |
| 527 | * also be large enough that there is enough space |
Greg Banks | 3262c81 | 2006-10-02 02:17:58 -0700 | [diff] [blame] | 528 | * for one reply per thread. We count all threads |
| 529 | * rather than threads in a particular pool, which |
| 530 | * provides an upper bound on the number of threads |
| 531 | * which will access the socket. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | */ |
| 533 | svc_sock_setbufsize(svsk->sk_sock, |
NeilBrown | c6b0a9f | 2006-10-06 00:44:05 -0700 | [diff] [blame] | 534 | (serv->sv_nrthreads+3) * serv->sv_max_mesg, |
| 535 | (serv->sv_nrthreads+3) * serv->sv_max_mesg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 537 | clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
NeilBrown | 05ed690 | 2007-05-09 02:34:55 -0700 | [diff] [blame] | 538 | skb = NULL; |
| 539 | err = kernel_recvmsg(svsk->sk_sock, &msg, NULL, |
| 540 | 0, 0, MSG_PEEK | MSG_DONTWAIT); |
| 541 | if (err >= 0) |
| 542 | skb = skb_recv_datagram(svsk->sk_sk, 0, 1, &err); |
| 543 | |
| 544 | if (skb == NULL) { |
| 545 | if (err != -EAGAIN) { |
| 546 | /* possibly an icmp error */ |
| 547 | dprintk("svc: recvfrom returned error %d\n", -err); |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 548 | set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | } |
NeilBrown | 05ed690 | 2007-05-09 02:34:55 -0700 | [diff] [blame] | 550 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | } |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 552 | len = svc_addr_len(svc_addr(rqstp)); |
Chuck Lever | abc5c44 | 2009-04-23 19:31:25 -0400 | [diff] [blame] | 553 | if (len == 0) |
| 554 | return -EAFNOSUPPORT; |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 555 | rqstp->rq_addrlen = len; |
Eric Dumazet | b7aa0bf | 2007-04-19 16:16:32 -0700 | [diff] [blame] | 556 | if (skb->tstamp.tv64 == 0) { |
| 557 | skb->tstamp = ktime_get_real(); |
YOSHIFUJI Hideaki | cca5172 | 2007-02-09 15:38:13 -0800 | [diff] [blame] | 558 | /* Don't enable netstamp, sunrpc doesn't |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | need that much accuracy */ |
| 560 | } |
Eric Dumazet | b7aa0bf | 2007-04-19 16:16:32 -0700 | [diff] [blame] | 561 | svsk->sk_sk->sk_stamp = skb->tstamp; |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 562 | 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] | 563 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | len = skb->len - sizeof(struct udphdr); |
| 565 | rqstp->rq_arg.len = len; |
| 566 | |
Chuck Lever | 9575648 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 567 | rqstp->rq_prot = IPPROTO_UDP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 569 | if (!svc_udp_get_dest_address(rqstp, cmh)) { |
NeilBrown | 7a37f57 | 2007-03-06 01:42:21 -0800 | [diff] [blame] | 570 | if (net_ratelimit()) |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 571 | printk(KERN_WARNING |
| 572 | "svc: received unknown control message %d/%d; " |
| 573 | "dropping RPC reply datagram\n", |
| 574 | cmh->cmsg_level, cmh->cmsg_type); |
Eric Dumazet | 9d410c7 | 2009-10-30 05:03:53 +0000 | [diff] [blame] | 575 | skb_free_datagram_locked(svsk->sk_sk, skb); |
NeilBrown | 7a37f57 | 2007-03-06 01:42:21 -0800 | [diff] [blame] | 576 | return 0; |
| 577 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | |
| 579 | if (skb_is_nonlinear(skb)) { |
| 580 | /* we have to copy */ |
| 581 | local_bh_disable(); |
| 582 | if (csum_partial_copy_to_xdr(&rqstp->rq_arg, skb)) { |
| 583 | local_bh_enable(); |
| 584 | /* checksum error */ |
Eric Dumazet | 9d410c7 | 2009-10-30 05:03:53 +0000 | [diff] [blame] | 585 | skb_free_datagram_locked(svsk->sk_sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | return 0; |
| 587 | } |
| 588 | local_bh_enable(); |
Eric Dumazet | 9d410c7 | 2009-10-30 05:03:53 +0000 | [diff] [blame] | 589 | skb_free_datagram_locked(svsk->sk_sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | } else { |
| 591 | /* we can use it in-place */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 592 | rqstp->rq_arg.head[0].iov_base = skb->data + |
| 593 | sizeof(struct udphdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | rqstp->rq_arg.head[0].iov_len = len; |
Herbert Xu | fb286bb | 2005-11-10 13:01:24 -0800 | [diff] [blame] | 595 | if (skb_checksum_complete(skb)) { |
Eric Dumazet | 9d410c7 | 2009-10-30 05:03:53 +0000 | [diff] [blame] | 596 | skb_free_datagram_locked(svsk->sk_sk, skb); |
Herbert Xu | fb286bb | 2005-11-10 13:01:24 -0800 | [diff] [blame] | 597 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | } |
Tom Tucker | 5148bf4 | 2007-12-30 21:07:25 -0600 | [diff] [blame] | 599 | rqstp->rq_xprt_ctxt = skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | rqstp->rq_arg.page_base = 0; |
| 603 | if (len <= rqstp->rq_arg.head[0].iov_len) { |
| 604 | rqstp->rq_arg.head[0].iov_len = len; |
| 605 | rqstp->rq_arg.page_len = 0; |
NeilBrown | 4452435 | 2006-10-04 02:15:46 -0700 | [diff] [blame] | 606 | rqstp->rq_respages = rqstp->rq_pages+1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | } else { |
| 608 | rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len; |
NeilBrown | 4452435 | 2006-10-04 02:15:46 -0700 | [diff] [blame] | 609 | rqstp->rq_respages = rqstp->rq_pages + 1 + |
Ilpo Järvinen | 172589c | 2007-08-28 15:50:33 -0700 | [diff] [blame] | 610 | DIV_ROUND_UP(rqstp->rq_arg.page_len, PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | } |
| 612 | |
| 613 | if (serv->sv_stats) |
| 614 | serv->sv_stats->netudpcnt++; |
| 615 | |
| 616 | return len; |
| 617 | } |
| 618 | |
| 619 | static int |
| 620 | svc_udp_sendto(struct svc_rqst *rqstp) |
| 621 | { |
| 622 | int error; |
| 623 | |
| 624 | error = svc_sendto(rqstp, &rqstp->rq_res); |
| 625 | if (error == -ECONNREFUSED) |
| 626 | /* ICMP error on earlier request. */ |
| 627 | error = svc_sendto(rqstp, &rqstp->rq_res); |
| 628 | |
| 629 | return error; |
| 630 | } |
| 631 | |
Tom Tucker | e831fe6 | 2007-12-30 21:07:29 -0600 | [diff] [blame] | 632 | static void svc_udp_prep_reply_hdr(struct svc_rqst *rqstp) |
| 633 | { |
| 634 | } |
| 635 | |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 636 | static int svc_udp_has_wspace(struct svc_xprt *xprt) |
| 637 | { |
| 638 | struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt); |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 639 | struct svc_serv *serv = xprt->xpt_server; |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 640 | unsigned long required; |
| 641 | |
| 642 | /* |
| 643 | * Set the SOCK_NOSPACE flag before checking the available |
| 644 | * sock space. |
| 645 | */ |
| 646 | set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags); |
Tom Tucker | 7a90e8c | 2007-12-30 21:07:55 -0600 | [diff] [blame] | 647 | required = atomic_read(&svsk->sk_xprt.xpt_reserved) + serv->sv_max_mesg; |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 648 | if (required*2 > sock_wspace(svsk->sk_sk)) |
| 649 | return 0; |
| 650 | clear_bit(SOCK_NOSPACE, &svsk->sk_sock->flags); |
| 651 | return 1; |
| 652 | } |
| 653 | |
Tom Tucker | 38a417c | 2007-12-30 21:07:36 -0600 | [diff] [blame] | 654 | static struct svc_xprt *svc_udp_accept(struct svc_xprt *xprt) |
| 655 | { |
| 656 | BUG(); |
| 657 | return NULL; |
| 658 | } |
| 659 | |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 660 | static struct svc_xprt *svc_udp_create(struct svc_serv *serv, |
Pavel Emelyanov | 62832c0 | 2010-09-29 16:04:18 +0400 | [diff] [blame] | 661 | struct net *net, |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 662 | struct sockaddr *sa, int salen, |
| 663 | int flags) |
| 664 | { |
Pavel Emelyanov | 62832c0 | 2010-09-29 16:04:18 +0400 | [diff] [blame] | 665 | return svc_create_socket(serv, IPPROTO_UDP, net, sa, salen, flags); |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 666 | } |
| 667 | |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 668 | static struct svc_xprt_ops svc_udp_ops = { |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 669 | .xpo_create = svc_udp_create, |
Tom Tucker | 5d13799 | 2007-12-30 21:07:23 -0600 | [diff] [blame] | 670 | .xpo_recvfrom = svc_udp_recvfrom, |
| 671 | .xpo_sendto = svc_udp_sendto, |
Tom Tucker | 5148bf4 | 2007-12-30 21:07:25 -0600 | [diff] [blame] | 672 | .xpo_release_rqst = svc_release_skb, |
Tom Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 673 | .xpo_detach = svc_sock_detach, |
| 674 | .xpo_free = svc_sock_free, |
Tom Tucker | e831fe6 | 2007-12-30 21:07:29 -0600 | [diff] [blame] | 675 | .xpo_prep_reply_hdr = svc_udp_prep_reply_hdr, |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 676 | .xpo_has_wspace = svc_udp_has_wspace, |
Tom Tucker | 38a417c | 2007-12-30 21:07:36 -0600 | [diff] [blame] | 677 | .xpo_accept = svc_udp_accept, |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 678 | }; |
| 679 | |
| 680 | static struct svc_xprt_class svc_udp_class = { |
| 681 | .xcl_name = "udp", |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 682 | .xcl_owner = THIS_MODULE, |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 683 | .xcl_ops = &svc_udp_ops, |
Tom Tucker | 4902315 | 2007-12-30 21:07:21 -0600 | [diff] [blame] | 684 | .xcl_max_payload = RPCSVC_MAXPAYLOAD_UDP, |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 685 | }; |
| 686 | |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 687 | 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] | 688 | { |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 689 | int err, level, optname, one = 1; |
NeilBrown | 7a37f57 | 2007-03-06 01:42:21 -0800 | [diff] [blame] | 690 | |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 691 | svc_xprt_init(&svc_udp_class, &svsk->sk_xprt, serv); |
Tom Tucker | def13d7 | 2007-12-30 21:08:08 -0600 | [diff] [blame] | 692 | clear_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | svsk->sk_sk->sk_data_ready = svc_udp_data_ready; |
| 694 | svsk->sk_sk->sk_write_space = svc_write_space; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | |
| 696 | /* initialise setting must have enough space to |
YOSHIFUJI Hideaki | cca5172 | 2007-02-09 15:38:13 -0800 | [diff] [blame] | 697 | * receive and respond to one request. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | * svc_udp_recvfrom will re-adjust if necessary |
| 699 | */ |
| 700 | svc_sock_setbufsize(svsk->sk_sock, |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 701 | 3 * svsk->sk_xprt.xpt_server->sv_max_mesg, |
| 702 | 3 * svsk->sk_xprt.xpt_server->sv_max_mesg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 704 | /* data might have come in before data_ready set up */ |
| 705 | set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 706 | set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags); |
NeilBrown | 7a37f57 | 2007-03-06 01:42:21 -0800 | [diff] [blame] | 707 | |
NeilBrown | 7a37f57 | 2007-03-06 01:42:21 -0800 | [diff] [blame] | 708 | /* make sure we get destination address info */ |
Chuck Lever | 7702ce4 | 2009-07-13 10:54:26 -0400 | [diff] [blame] | 709 | switch (svsk->sk_sk->sk_family) { |
| 710 | case AF_INET: |
| 711 | level = SOL_IP; |
| 712 | optname = IP_PKTINFO; |
| 713 | break; |
| 714 | case AF_INET6: |
| 715 | level = SOL_IPV6; |
| 716 | optname = IPV6_RECVPKTINFO; |
| 717 | break; |
| 718 | default: |
| 719 | BUG(); |
| 720 | } |
| 721 | err = kernel_setsockopt(svsk->sk_sock, level, optname, |
| 722 | (char *)&one, sizeof(one)); |
| 723 | dprintk("svc: kernel_setsockopt returned %d\n", err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | } |
| 725 | |
| 726 | /* |
| 727 | * A data_ready event on a listening socket means there's a connection |
| 728 | * pending. Do not use state_change as a substitute for it. |
| 729 | */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 730 | static void svc_tcp_listen_data_ready(struct sock *sk, int count_unused) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | { |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 732 | struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
| 734 | dprintk("svc: socket %p TCP (listen) state change %d\n", |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 735 | sk, sk->sk_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 737 | /* |
| 738 | * This callback may called twice when a new connection |
| 739 | * is established as a child socket inherits everything |
| 740 | * from a parent LISTEN socket. |
| 741 | * 1) data_ready method of the parent socket will be called |
| 742 | * when one of child sockets become ESTABLISHED. |
| 743 | * 2) data_ready method of the child socket may be called |
| 744 | * when it receives data before the socket is accepted. |
| 745 | * In case of 2, we should ignore it silently. |
| 746 | */ |
| 747 | if (sk->sk_state == TCP_LISTEN) { |
| 748 | if (svsk) { |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 749 | set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags); |
Tom Tucker | f6150c3 | 2007-12-30 21:07:57 -0600 | [diff] [blame] | 750 | svc_xprt_enqueue(&svsk->sk_xprt); |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 751 | } else |
| 752 | printk("svc: socket %p: no user data\n", sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | } |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 754 | |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 755 | if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) |
| 756 | wake_up_interruptible_all(sk_sleep(sk)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | } |
| 758 | |
| 759 | /* |
| 760 | * A state change on a connected socket means it's dying or dead. |
| 761 | */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 762 | static void svc_tcp_state_change(struct sock *sk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | { |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 764 | struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | |
| 766 | dprintk("svc: socket %p TCP (connected) state change %d (svsk %p)\n", |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 767 | sk, sk->sk_state, sk->sk_user_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 769 | if (!svsk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | printk("svc: socket %p: no user data\n", sk); |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 771 | else { |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 772 | set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags); |
Tom Tucker | f6150c3 | 2007-12-30 21:07:57 -0600 | [diff] [blame] | 773 | svc_xprt_enqueue(&svsk->sk_xprt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | } |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 775 | if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) |
| 776 | wake_up_interruptible_all(sk_sleep(sk)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | } |
| 778 | |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 779 | static void svc_tcp_data_ready(struct sock *sk, int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | { |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 781 | struct svc_sock *svsk = (struct svc_sock *)sk->sk_user_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | |
| 783 | dprintk("svc: socket %p TCP data ready (svsk %p)\n", |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 784 | sk, sk->sk_user_data); |
| 785 | if (svsk) { |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 786 | set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
Tom Tucker | f6150c3 | 2007-12-30 21:07:57 -0600 | [diff] [blame] | 787 | svc_xprt_enqueue(&svsk->sk_xprt); |
Neil Brown | 939bb7e | 2005-09-13 01:25:39 -0700 | [diff] [blame] | 788 | } |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 789 | if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) |
| 790 | wake_up_interruptible(sk_sleep(sk)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | } |
| 792 | |
| 793 | /* |
| 794 | * Accept a TCP connection |
| 795 | */ |
Tom Tucker | 38a417c | 2007-12-30 21:07:36 -0600 | [diff] [blame] | 796 | static struct svc_xprt *svc_tcp_accept(struct svc_xprt *xprt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | { |
Tom Tucker | 38a417c | 2007-12-30 21:07:36 -0600 | [diff] [blame] | 798 | 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] | 799 | struct sockaddr_storage addr; |
| 800 | struct sockaddr *sin = (struct sockaddr *) &addr; |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 801 | struct svc_serv *serv = svsk->sk_xprt.xpt_server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | struct socket *sock = svsk->sk_sock; |
| 803 | struct socket *newsock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | struct svc_sock *newsvsk; |
| 805 | int err, slen; |
Pavel Emelyanov | 5216a8e | 2008-02-21 10:57:45 +0300 | [diff] [blame] | 806 | RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | |
| 808 | dprintk("svc: tcp_accept %p sock %p\n", svsk, sock); |
| 809 | if (!sock) |
Tom Tucker | 38a417c | 2007-12-30 21:07:36 -0600 | [diff] [blame] | 810 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 812 | clear_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags); |
Sridhar Samudrala | e6242e9 | 2006-08-07 20:58:01 -0700 | [diff] [blame] | 813 | err = kernel_accept(sock, &newsock, O_NONBLOCK); |
| 814 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | if (err == -ENOMEM) |
| 816 | printk(KERN_WARNING "%s: no more sockets!\n", |
| 817 | serv->sv_name); |
Sridhar Samudrala | e6242e9 | 2006-08-07 20:58:01 -0700 | [diff] [blame] | 818 | else if (err != -EAGAIN && net_ratelimit()) |
| 819 | printk(KERN_WARNING "%s: accept failed (err %d)!\n", |
| 820 | serv->sv_name, -err); |
Tom Tucker | 38a417c | 2007-12-30 21:07:36 -0600 | [diff] [blame] | 821 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | } |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 823 | set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | |
akpm@linux-foundation.org | cdd88b9 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 825 | err = kernel_getpeername(newsock, sin, &slen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | if (err < 0) { |
| 827 | if (net_ratelimit()) |
| 828 | printk(KERN_WARNING "%s: peername failed (err %d)!\n", |
| 829 | serv->sv_name, -err); |
| 830 | goto failed; /* aborted connection or whatever */ |
| 831 | } |
| 832 | |
| 833 | /* Ideally, we would want to reject connections from unauthorized |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 834 | * hosts here, but when we get encryption, the IP of the host won't |
| 835 | * tell us anything. For now just warn about unpriv connections. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | */ |
akpm@linux-foundation.org | cdd88b9 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 837 | if (!svc_port_is_privileged(sin)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | dprintk(KERN_WARNING |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 839 | "%s: connect from unprivileged port: %s\n", |
YOSHIFUJI Hideaki | cca5172 | 2007-02-09 15:38:13 -0800 | [diff] [blame] | 840 | serv->sv_name, |
akpm@linux-foundation.org | cdd88b9 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 841 | __svc_print_addr(sin, buf, sizeof(buf))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | } |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 843 | dprintk("%s: connect from %s\n", serv->sv_name, |
akpm@linux-foundation.org | cdd88b9 | 2007-02-12 00:53:38 -0800 | [diff] [blame] | 844 | __svc_print_addr(sin, buf, sizeof(buf))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | |
| 846 | /* make sure that a write doesn't block forever when |
| 847 | * low on memory |
| 848 | */ |
| 849 | newsock->sk->sk_sndtimeo = HZ*30; |
| 850 | |
Chuck Lever | 6b17433 | 2007-02-12 00:53:28 -0800 | [diff] [blame] | 851 | if (!(newsvsk = svc_setup_socket(serv, newsock, &err, |
| 852 | (SVC_SOCK_ANONYMOUS | SVC_SOCK_TEMPORARY)))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | goto failed; |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 854 | svc_xprt_set_remote(&newsvsk->sk_xprt, sin, slen); |
Frank van Maarseveen | a974769 | 2007-07-09 22:21:39 +0200 | [diff] [blame] | 855 | err = kernel_getsockname(newsock, sin, &slen); |
| 856 | if (unlikely(err < 0)) { |
| 857 | dprintk("svc_tcp_accept: kernel_getsockname error %d\n", -err); |
| 858 | slen = offsetof(struct sockaddr, sa_data); |
| 859 | } |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 860 | svc_xprt_set_local(&newsvsk->sk_xprt, sin, slen); |
Chuck Lever | 067d781 | 2007-02-12 00:53:30 -0800 | [diff] [blame] | 861 | |
Tom Tucker | f9f3cc4 | 2007-12-30 21:07:40 -0600 | [diff] [blame] | 862 | if (serv->sv_stats) |
| 863 | serv->sv_stats->nettcpconn++; |
| 864 | |
| 865 | return &newsvsk->sk_xprt; |
| 866 | |
| 867 | failed: |
| 868 | sock_release(newsock); |
| 869 | return NULL; |
| 870 | } |
| 871 | |
| 872 | /* |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 873 | * Receive data. |
| 874 | * If we haven't gotten the record length yet, get the next four bytes. |
| 875 | * Otherwise try to gobble up as much as possible up to the complete |
| 876 | * record length. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | */ |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 878 | 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] | 879 | { |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 880 | struct svc_serv *serv = svsk->sk_xprt.xpt_server; |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 881 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | |
J. Bruce Fields | 7f42183 | 2009-05-27 18:51:06 -0400 | [diff] [blame] | 883 | if (test_and_clear_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags)) |
| 884 | /* sndbuf needs to have room for one request |
| 885 | * per thread, otherwise we can stall even when the |
| 886 | * network isn't a bottleneck. |
| 887 | * |
| 888 | * We count all threads rather than threads in a |
| 889 | * particular pool, which provides an upper bound |
| 890 | * on the number of threads which will access the socket. |
| 891 | * |
| 892 | * rcvbuf just needs to be able to hold a few requests. |
| 893 | * Normally they will be removed from the queue |
| 894 | * as soon a a complete request arrives. |
| 895 | */ |
| 896 | svc_sock_setbufsize(svsk->sk_sock, |
| 897 | (serv->sv_nrthreads+3) * serv->sv_max_mesg, |
| 898 | 3 * serv->sv_max_mesg); |
| 899 | |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 900 | clear_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | |
Chuck Lever | c0401ea | 2008-04-14 12:27:30 -0400 | [diff] [blame] | 902 | if (svsk->sk_tcplen < sizeof(rpc_fraghdr)) { |
| 903 | int want = sizeof(rpc_fraghdr) - svsk->sk_tcplen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | struct kvec iov; |
| 905 | |
| 906 | iov.iov_base = ((char *) &svsk->sk_reclen) + svsk->sk_tcplen; |
| 907 | iov.iov_len = want; |
| 908 | if ((len = svc_recvfrom(rqstp, &iov, 1, want)) < 0) |
| 909 | goto error; |
| 910 | svsk->sk_tcplen += len; |
| 911 | |
| 912 | if (len < want) { |
Chuck Lever | c0401ea | 2008-04-14 12:27:30 -0400 | [diff] [blame] | 913 | dprintk("svc: short recvfrom while reading record " |
| 914 | "length (%d of %d)\n", len, want); |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 915 | goto err_again; /* record header not complete */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | } |
| 917 | |
| 918 | svsk->sk_reclen = ntohl(svsk->sk_reclen); |
Chuck Lever | c0401ea | 2008-04-14 12:27:30 -0400 | [diff] [blame] | 919 | if (!(svsk->sk_reclen & RPC_LAST_STREAM_FRAGMENT)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | /* FIXME: technically, a record can be fragmented, |
| 921 | * and non-terminal fragments will not have the top |
| 922 | * bit set in the fragment length header. |
| 923 | * But apparently no known nfs clients send fragmented |
| 924 | * records. */ |
NeilBrown | 34e9a63 | 2007-01-29 13:19:52 -0800 | [diff] [blame] | 925 | if (net_ratelimit()) |
Chuck Lever | c0401ea | 2008-04-14 12:27:30 -0400 | [diff] [blame] | 926 | printk(KERN_NOTICE "RPC: multiple fragments " |
| 927 | "per record not supported\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | goto err_delete; |
| 929 | } |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 930 | |
Chuck Lever | c0401ea | 2008-04-14 12:27:30 -0400 | [diff] [blame] | 931 | svsk->sk_reclen &= RPC_FRAGMENT_SIZE_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | dprintk("svc: TCP record, %d bytes\n", svsk->sk_reclen); |
NeilBrown | c6b0a9f | 2006-10-06 00:44:05 -0700 | [diff] [blame] | 933 | if (svsk->sk_reclen > serv->sv_max_mesg) { |
NeilBrown | 34e9a63 | 2007-01-29 13:19:52 -0800 | [diff] [blame] | 934 | if (net_ratelimit()) |
Chuck Lever | c0401ea | 2008-04-14 12:27:30 -0400 | [diff] [blame] | 935 | printk(KERN_NOTICE "RPC: " |
| 936 | "fragment too large: 0x%08lx\n", |
| 937 | (unsigned long)svsk->sk_reclen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | goto err_delete; |
| 939 | } |
| 940 | } |
| 941 | |
| 942 | /* Check whether enough data is available */ |
| 943 | len = svc_recv_available(svsk); |
| 944 | if (len < 0) |
| 945 | goto error; |
| 946 | |
| 947 | if (len < svsk->sk_reclen) { |
| 948 | dprintk("svc: incomplete TCP record (%d of %d)\n", |
| 949 | len, svsk->sk_reclen); |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 950 | goto err_again; /* record not complete */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | } |
| 952 | len = svsk->sk_reclen; |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 953 | set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 955 | return len; |
| 956 | error: |
Neil Brown | b48fa6b | 2010-03-01 16:51:14 +1100 | [diff] [blame] | 957 | if (len == -EAGAIN) |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 958 | dprintk("RPC: TCP recv_record got EAGAIN\n"); |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 959 | return len; |
| 960 | err_delete: |
| 961 | set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags); |
| 962 | err_again: |
| 963 | return -EAGAIN; |
| 964 | } |
| 965 | |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 966 | static int svc_process_calldir(struct svc_sock *svsk, struct svc_rqst *rqstp, |
| 967 | struct rpc_rqst **reqpp, struct kvec *vec) |
| 968 | { |
| 969 | struct rpc_rqst *req = NULL; |
| 970 | u32 *p; |
| 971 | u32 xid; |
| 972 | u32 calldir; |
| 973 | int len; |
| 974 | |
| 975 | len = svc_recvfrom(rqstp, vec, 1, 8); |
| 976 | if (len < 0) |
| 977 | goto error; |
| 978 | |
| 979 | p = (u32 *)rqstp->rq_arg.head[0].iov_base; |
| 980 | xid = *p++; |
| 981 | calldir = *p; |
| 982 | |
| 983 | if (calldir == 0) { |
| 984 | /* REQUEST is the most common case */ |
| 985 | vec[0] = rqstp->rq_arg.head[0]; |
| 986 | } else { |
| 987 | /* REPLY */ |
| 988 | if (svsk->sk_bc_xprt) |
| 989 | req = xprt_lookup_rqst(svsk->sk_bc_xprt, xid); |
| 990 | |
| 991 | if (!req) { |
| 992 | printk(KERN_NOTICE |
| 993 | "%s: Got unrecognized reply: " |
| 994 | "calldir 0x%x sk_bc_xprt %p xid %08x\n", |
| 995 | __func__, ntohl(calldir), |
| 996 | svsk->sk_bc_xprt, xid); |
| 997 | vec[0] = rqstp->rq_arg.head[0]; |
| 998 | goto out; |
| 999 | } |
| 1000 | |
| 1001 | memcpy(&req->rq_private_buf, &req->rq_rcv_buf, |
| 1002 | sizeof(struct xdr_buf)); |
| 1003 | /* copy the xid and call direction */ |
| 1004 | memcpy(req->rq_private_buf.head[0].iov_base, |
| 1005 | rqstp->rq_arg.head[0].iov_base, 8); |
| 1006 | vec[0] = req->rq_private_buf.head[0]; |
| 1007 | } |
| 1008 | out: |
| 1009 | vec[0].iov_base += 8; |
| 1010 | vec[0].iov_len -= 8; |
| 1011 | len = svsk->sk_reclen - 8; |
| 1012 | error: |
| 1013 | *reqpp = req; |
| 1014 | return len; |
| 1015 | } |
| 1016 | |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 1017 | /* |
| 1018 | * Receive data from a TCP socket. |
| 1019 | */ |
| 1020 | static int svc_tcp_recvfrom(struct svc_rqst *rqstp) |
| 1021 | { |
| 1022 | struct svc_sock *svsk = |
| 1023 | container_of(rqstp->rq_xprt, struct svc_sock, sk_xprt); |
| 1024 | struct svc_serv *serv = svsk->sk_xprt.xpt_server; |
| 1025 | int len; |
| 1026 | struct kvec *vec; |
| 1027 | int pnum, vlen; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 1028 | struct rpc_rqst *req = NULL; |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 1029 | |
| 1030 | dprintk("svc: tcp_recv %p data %d conn %d close %d\n", |
| 1031 | svsk, test_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags), |
| 1032 | test_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags), |
| 1033 | test_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags)); |
| 1034 | |
| 1035 | len = svc_tcp_recv_record(svsk, rqstp); |
| 1036 | if (len < 0) |
| 1037 | goto error; |
| 1038 | |
NeilBrown | 3cc03b1 | 2006-10-04 02:15:47 -0700 | [diff] [blame] | 1039 | vec = rqstp->rq_vec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | vec[0] = rqstp->rq_arg.head[0]; |
| 1041 | vlen = PAGE_SIZE; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 1042 | |
| 1043 | /* |
| 1044 | * We have enough data for the whole tcp record. Let's try and read the |
| 1045 | * first 8 bytes to get the xid and the call direction. We can use this |
| 1046 | * to figure out if this is a call or a reply to a callback. If |
| 1047 | * sk_reclen is < 8 (xid and calldir), then this is a malformed packet. |
| 1048 | * In that case, don't bother with the calldir and just read the data. |
| 1049 | * It will be rejected in svc_process. |
| 1050 | */ |
| 1051 | if (len >= 8) { |
| 1052 | len = svc_process_calldir(svsk, rqstp, &req, vec); |
| 1053 | if (len < 0) |
| 1054 | goto err_again; |
| 1055 | vlen -= 8; |
| 1056 | } |
| 1057 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | pnum = 1; |
| 1059 | while (vlen < len) { |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 1060 | vec[pnum].iov_base = (req) ? |
| 1061 | page_address(req->rq_private_buf.pages[pnum - 1]) : |
| 1062 | page_address(rqstp->rq_pages[pnum]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | vec[pnum].iov_len = PAGE_SIZE; |
| 1064 | pnum++; |
| 1065 | vlen += PAGE_SIZE; |
| 1066 | } |
NeilBrown | 4452435 | 2006-10-04 02:15:46 -0700 | [diff] [blame] | 1067 | rqstp->rq_respages = &rqstp->rq_pages[pnum]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | |
| 1069 | /* Now receive data */ |
| 1070 | len = svc_recvfrom(rqstp, vec, pnum, len); |
| 1071 | if (len < 0) |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 1072 | goto err_again; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 1074 | /* |
| 1075 | * Account for the 8 bytes we read earlier |
| 1076 | */ |
| 1077 | len += 8; |
| 1078 | |
| 1079 | if (req) { |
| 1080 | xprt_complete_rqst(req->rq_task, len); |
| 1081 | len = 0; |
| 1082 | goto out; |
| 1083 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | dprintk("svc: TCP complete record (%d bytes)\n", len); |
| 1085 | rqstp->rq_arg.len = len; |
| 1086 | rqstp->rq_arg.page_base = 0; |
| 1087 | if (len <= rqstp->rq_arg.head[0].iov_len) { |
| 1088 | rqstp->rq_arg.head[0].iov_len = len; |
| 1089 | rqstp->rq_arg.page_len = 0; |
| 1090 | } else { |
| 1091 | rqstp->rq_arg.page_len = len - rqstp->rq_arg.head[0].iov_len; |
| 1092 | } |
| 1093 | |
Tom Tucker | 5148bf4 | 2007-12-30 21:07:25 -0600 | [diff] [blame] | 1094 | rqstp->rq_xprt_ctxt = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | rqstp->rq_prot = IPPROTO_TCP; |
| 1096 | |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 1097 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | /* Reset TCP read info */ |
| 1099 | svsk->sk_reclen = 0; |
| 1100 | svsk->sk_tcplen = 0; |
| 1101 | |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 1102 | svc_xprt_copy_addrs(rqstp, &svsk->sk_xprt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | if (serv->sv_stats) |
| 1104 | serv->sv_stats->nettcpcnt++; |
| 1105 | |
| 1106 | return len; |
| 1107 | |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 1108 | err_again: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | if (len == -EAGAIN) { |
| 1110 | dprintk("RPC: TCP recvfrom got EAGAIN\n"); |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 1111 | return len; |
| 1112 | } |
| 1113 | error: |
| 1114 | if (len != -EAGAIN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | printk(KERN_NOTICE "%s: recvfrom returned errno %d\n", |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 1116 | svsk->sk_xprt.xpt_server->sv_name, -len); |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 1117 | set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | } |
Alexandros Batsakis | 8f55f3c | 2009-08-20 03:34:19 +0300 | [diff] [blame] | 1119 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | } |
| 1121 | |
| 1122 | /* |
| 1123 | * Send out data on TCP socket. |
| 1124 | */ |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 1125 | static int svc_tcp_sendto(struct svc_rqst *rqstp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | { |
| 1127 | struct xdr_buf *xbufp = &rqstp->rq_res; |
| 1128 | int sent; |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 1129 | __be32 reclen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | |
| 1131 | /* Set up the first element of the reply kvec. |
| 1132 | * Any other kvecs that may be in use have been taken |
| 1133 | * care of by the server implementation itself. |
| 1134 | */ |
| 1135 | reclen = htonl(0x80000000|((xbufp->len ) - 4)); |
| 1136 | memcpy(xbufp->head[0].iov_base, &reclen, 4); |
| 1137 | |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 1138 | if (test_bit(XPT_DEAD, &rqstp->rq_xprt->xpt_flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | return -ENOTCONN; |
| 1140 | |
| 1141 | sent = svc_sendto(rqstp, &rqstp->rq_res); |
| 1142 | if (sent != xbufp->len) { |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 1143 | printk(KERN_NOTICE |
| 1144 | "rpc-srv/tcp: %s: %s %d when sending %d bytes " |
| 1145 | "- shutting down socket\n", |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 1146 | rqstp->rq_xprt->xpt_server->sv_name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | (sent<0)?"got error":"sent only", |
| 1148 | sent, xbufp->len); |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 1149 | set_bit(XPT_CLOSE, &rqstp->rq_xprt->xpt_flags); |
Tom Tucker | f6150c3 | 2007-12-30 21:07:57 -0600 | [diff] [blame] | 1150 | svc_xprt_enqueue(rqstp->rq_xprt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | sent = -EAGAIN; |
| 1152 | } |
| 1153 | return sent; |
| 1154 | } |
| 1155 | |
Tom Tucker | e831fe6 | 2007-12-30 21:07:29 -0600 | [diff] [blame] | 1156 | /* |
| 1157 | * Setup response header. TCP has a 4B record length field. |
| 1158 | */ |
| 1159 | static void svc_tcp_prep_reply_hdr(struct svc_rqst *rqstp) |
| 1160 | { |
| 1161 | struct kvec *resv = &rqstp->rq_res.head[0]; |
| 1162 | |
| 1163 | /* tcp needs a space for the record length... */ |
| 1164 | svc_putnl(resv, 0); |
| 1165 | } |
| 1166 | |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 1167 | static int svc_tcp_has_wspace(struct svc_xprt *xprt) |
| 1168 | { |
Tom Tucker | 57b1d3b | 2007-12-30 21:08:22 -0600 | [diff] [blame] | 1169 | struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt); |
Trond Myklebust | 47fcb03 | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1170 | struct svc_serv *serv = svsk->sk_xprt.xpt_server; |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 1171 | int required; |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 1172 | |
Trond Myklebust | 47fcb03 | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1173 | if (test_bit(XPT_LISTENER, &xprt->xpt_flags)) |
| 1174 | return 1; |
| 1175 | required = atomic_read(&xprt->xpt_reserved) + serv->sv_max_mesg; |
| 1176 | if (sk_stream_wspace(svsk->sk_sk) >= required) |
| 1177 | return 1; |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 1178 | set_bit(SOCK_NOSPACE, &svsk->sk_sock->flags); |
Trond Myklebust | 47fcb03 | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1179 | return 0; |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 1180 | } |
| 1181 | |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1182 | static struct svc_xprt *svc_tcp_create(struct svc_serv *serv, |
Pavel Emelyanov | 62832c0 | 2010-09-29 16:04:18 +0400 | [diff] [blame] | 1183 | struct net *net, |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1184 | struct sockaddr *sa, int salen, |
| 1185 | int flags) |
| 1186 | { |
Pavel Emelyanov | 62832c0 | 2010-09-29 16:04:18 +0400 | [diff] [blame] | 1187 | return svc_create_socket(serv, IPPROTO_TCP, net, sa, salen, flags); |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1188 | } |
| 1189 | |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 1190 | static struct svc_xprt_ops svc_tcp_ops = { |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1191 | .xpo_create = svc_tcp_create, |
Tom Tucker | 5d13799 | 2007-12-30 21:07:23 -0600 | [diff] [blame] | 1192 | .xpo_recvfrom = svc_tcp_recvfrom, |
| 1193 | .xpo_sendto = svc_tcp_sendto, |
Tom Tucker | 5148bf4 | 2007-12-30 21:07:25 -0600 | [diff] [blame] | 1194 | .xpo_release_rqst = svc_release_skb, |
Trond Myklebust | 69b6ba3 | 2008-12-23 16:30:11 -0500 | [diff] [blame] | 1195 | .xpo_detach = svc_tcp_sock_detach, |
Tom Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 1196 | .xpo_free = svc_sock_free, |
Tom Tucker | e831fe6 | 2007-12-30 21:07:29 -0600 | [diff] [blame] | 1197 | .xpo_prep_reply_hdr = svc_tcp_prep_reply_hdr, |
Tom Tucker | 323bee3 | 2007-12-30 21:07:31 -0600 | [diff] [blame] | 1198 | .xpo_has_wspace = svc_tcp_has_wspace, |
Tom Tucker | 38a417c | 2007-12-30 21:07:36 -0600 | [diff] [blame] | 1199 | .xpo_accept = svc_tcp_accept, |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 1200 | }; |
| 1201 | |
| 1202 | static struct svc_xprt_class svc_tcp_class = { |
| 1203 | .xcl_name = "tcp", |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1204 | .xcl_owner = THIS_MODULE, |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 1205 | .xcl_ops = &svc_tcp_ops, |
Tom Tucker | 4902315 | 2007-12-30 21:07:21 -0600 | [diff] [blame] | 1206 | .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP, |
Tom Tucker | 360d8738 | 2007-12-30 21:07:17 -0600 | [diff] [blame] | 1207 | }; |
| 1208 | |
| 1209 | void svc_init_xprt_sock(void) |
| 1210 | { |
| 1211 | svc_reg_xprt_class(&svc_tcp_class); |
| 1212 | svc_reg_xprt_class(&svc_udp_class); |
| 1213 | } |
| 1214 | |
| 1215 | void svc_cleanup_xprt_sock(void) |
| 1216 | { |
| 1217 | svc_unreg_xprt_class(&svc_tcp_class); |
| 1218 | svc_unreg_xprt_class(&svc_udp_class); |
| 1219 | } |
| 1220 | |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 1221 | 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] | 1222 | { |
| 1223 | struct sock *sk = svsk->sk_sk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 1225 | svc_xprt_init(&svc_tcp_class, &svsk->sk_xprt, serv); |
Tom Tucker | def13d7 | 2007-12-30 21:08:08 -0600 | [diff] [blame] | 1226 | set_bit(XPT_CACHE_AUTH, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | if (sk->sk_state == TCP_LISTEN) { |
| 1228 | dprintk("setting up TCP socket for listening\n"); |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 1229 | set_bit(XPT_LISTENER, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | sk->sk_data_ready = svc_tcp_listen_data_ready; |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 1231 | set_bit(XPT_CONN, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | } else { |
| 1233 | dprintk("setting up TCP socket for reading\n"); |
| 1234 | sk->sk_state_change = svc_tcp_state_change; |
| 1235 | sk->sk_data_ready = svc_tcp_data_ready; |
Trond Myklebust | 47fcb03 | 2009-05-18 17:47:56 -0400 | [diff] [blame] | 1236 | sk->sk_write_space = svc_tcp_write_space; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | |
| 1238 | svsk->sk_reclen = 0; |
| 1239 | svsk->sk_tcplen = 0; |
| 1240 | |
Chuck Lever | b7872fe | 2008-04-14 12:27:01 -0400 | [diff] [blame] | 1241 | tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | |
J. Bruce Fields | 7f42183 | 2009-05-27 18:51:06 -0400 | [diff] [blame] | 1243 | /* initialise setting must have enough space to |
| 1244 | * receive and respond to one request. |
| 1245 | * svc_tcp_recvfrom will re-adjust if necessary |
| 1246 | */ |
| 1247 | svc_sock_setbufsize(svsk->sk_sock, |
| 1248 | 3 * svsk->sk_xprt.xpt_server->sv_max_mesg, |
| 1249 | 3 * svsk->sk_xprt.xpt_server->sv_max_mesg); |
| 1250 | |
| 1251 | set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags); |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 1252 | set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
YOSHIFUJI Hideaki | cca5172 | 2007-02-09 15:38:13 -0800 | [diff] [blame] | 1253 | if (sk->sk_state != TCP_ESTABLISHED) |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 1254 | set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | } |
| 1256 | } |
| 1257 | |
Tom Tucker | 0f0257e | 2007-12-30 21:08:27 -0600 | [diff] [blame] | 1258 | void svc_sock_update_bufs(struct svc_serv *serv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | { |
| 1260 | /* |
| 1261 | * The number of server threads has changed. Update |
| 1262 | * rcvbuf and sndbuf accordingly on all sockets |
| 1263 | */ |
Pavel Emelyanov | 8f3a6de | 2010-10-05 23:30:19 +0400 | [diff] [blame^] | 1264 | struct svc_sock *svsk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | |
| 1266 | spin_lock_bh(&serv->sv_lock); |
Pavel Emelyanov | 8f3a6de | 2010-10-05 23:30:19 +0400 | [diff] [blame^] | 1267 | list_for_each_entry(svsk, &serv->sv_permsocks, sk_xprt.xpt_list) |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 1268 | set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags); |
Pavel Emelyanov | 8f3a6de | 2010-10-05 23:30:19 +0400 | [diff] [blame^] | 1269 | list_for_each_entry(svsk, &serv->sv_tempsocks, sk_xprt.xpt_list) |
Tom Tucker | 02fc6c3 | 2007-12-30 21:07:48 -0600 | [diff] [blame] | 1270 | set_bit(XPT_CHNGBUF, &svsk->sk_xprt.xpt_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | spin_unlock_bh(&serv->sv_lock); |
| 1272 | } |
Trond Myklebust | 24c3767 | 2008-12-23 16:30:12 -0500 | [diff] [blame] | 1273 | EXPORT_SYMBOL_GPL(svc_sock_update_bufs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | |
| 1275 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | * Initialize socket for RPC use and create svc_sock struct |
| 1277 | * XXX: May want to setsockopt SO_SNDBUF and SO_RCVBUF. |
| 1278 | */ |
Chuck Lever | 6b17433 | 2007-02-12 00:53:28 -0800 | [diff] [blame] | 1279 | static struct svc_sock *svc_setup_socket(struct svc_serv *serv, |
| 1280 | struct socket *sock, |
| 1281 | int *errp, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | { |
| 1283 | struct svc_sock *svsk; |
| 1284 | struct sock *inet; |
Chuck Lever | 6b17433 | 2007-02-12 00:53:28 -0800 | [diff] [blame] | 1285 | int pmap_register = !(flags & SVC_SOCK_ANONYMOUS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | |
| 1287 | dprintk("svc: svc_setup_socket %p\n", sock); |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 1288 | if (!(svsk = kzalloc(sizeof(*svsk), GFP_KERNEL))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | *errp = -ENOMEM; |
| 1290 | return NULL; |
| 1291 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | |
| 1293 | inet = sock->sk; |
| 1294 | |
| 1295 | /* Register socket with portmapper */ |
| 1296 | if (*errp >= 0 && pmap_register) |
Chuck Lever | baf01ca | 2009-03-18 20:46:13 -0400 | [diff] [blame] | 1297 | *errp = svc_register(serv, inet->sk_family, inet->sk_protocol, |
Eric Dumazet | c720c7e8 | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 1298 | ntohs(inet_sk(inet)->inet_sport)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | |
| 1300 | if (*errp < 0) { |
| 1301 | kfree(svsk); |
| 1302 | return NULL; |
| 1303 | } |
| 1304 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | inet->sk_user_data = svsk; |
| 1306 | svsk->sk_sock = sock; |
| 1307 | svsk->sk_sk = inet; |
| 1308 | svsk->sk_ostate = inet->sk_state_change; |
| 1309 | svsk->sk_odata = inet->sk_data_ready; |
| 1310 | svsk->sk_owspace = inet->sk_write_space; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | |
| 1312 | /* Initialize the socket */ |
| 1313 | if (sock->type == SOCK_DGRAM) |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 1314 | svc_udp_init(svsk, serv); |
J. Bruce Fields | 7f42183 | 2009-05-27 18:51:06 -0400 | [diff] [blame] | 1315 | else |
Tom Tucker | bb5cf16 | 2007-12-30 21:07:50 -0600 | [diff] [blame] | 1316 | svc_tcp_init(svsk, serv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | dprintk("svc: svc_setup_socket created %p (inet %p)\n", |
| 1319 | svsk, svsk->sk_sk); |
| 1320 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | return svsk; |
| 1322 | } |
| 1323 | |
Chuck Lever | bfba9ab | 2009-04-23 19:32:33 -0400 | [diff] [blame] | 1324 | /** |
| 1325 | * svc_addsock - add a listener socket to an RPC service |
| 1326 | * @serv: pointer to RPC service to which to add a new listener |
| 1327 | * @fd: file descriptor of the new listener |
| 1328 | * @name_return: pointer to buffer to fill in with name of listener |
| 1329 | * @len: size of the buffer |
| 1330 | * |
| 1331 | * Fills in socket name and returns positive length of name if successful. |
| 1332 | * Name is terminated with '\n'. On error, returns a negative errno |
| 1333 | * value. |
| 1334 | */ |
| 1335 | int svc_addsock(struct svc_serv *serv, const int fd, char *name_return, |
| 1336 | const size_t len) |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 1337 | { |
| 1338 | int err = 0; |
| 1339 | struct socket *so = sockfd_lookup(fd, &err); |
| 1340 | struct svc_sock *svsk = NULL; |
| 1341 | |
| 1342 | if (!so) |
| 1343 | return err; |
Aime Le Rouzic | 205ba42 | 2010-01-26 14:03:56 -0500 | [diff] [blame] | 1344 | if ((so->sk->sk_family != PF_INET) && (so->sk->sk_family != PF_INET6)) |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 1345 | err = -EAFNOSUPPORT; |
| 1346 | else if (so->sk->sk_protocol != IPPROTO_TCP && |
| 1347 | so->sk->sk_protocol != IPPROTO_UDP) |
| 1348 | err = -EPROTONOSUPPORT; |
| 1349 | else if (so->state > SS_UNCONNECTED) |
| 1350 | err = -EISCONN; |
| 1351 | else { |
Tom Tucker | 2da2c21 | 2008-11-23 09:58:08 -0600 | [diff] [blame] | 1352 | if (!try_module_get(THIS_MODULE)) |
| 1353 | err = -ENOENT; |
| 1354 | else |
| 1355 | svsk = svc_setup_socket(serv, so, &err, |
| 1356 | SVC_SOCK_DEFAULTS); |
NeilBrown | e79eff1 | 2007-02-12 00:53:30 -0800 | [diff] [blame] | 1357 | if (svsk) { |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 1358 | struct sockaddr_storage addr; |
| 1359 | struct sockaddr *sin = (struct sockaddr *)&addr; |
| 1360 | int salen; |
| 1361 | if (kernel_getsockname(svsk->sk_sock, sin, &salen) == 0) |
| 1362 | svc_xprt_set_local(&svsk->sk_xprt, sin, salen); |
Tom Tucker | 4e5caaa | 2007-12-30 21:08:20 -0600 | [diff] [blame] | 1363 | clear_bit(XPT_TEMP, &svsk->sk_xprt.xpt_flags); |
| 1364 | spin_lock_bh(&serv->sv_lock); |
| 1365 | list_add(&svsk->sk_xprt.xpt_list, &serv->sv_permsocks); |
| 1366 | spin_unlock_bh(&serv->sv_lock); |
Tom Tucker | a6046f7 | 2007-12-30 21:08:01 -0600 | [diff] [blame] | 1367 | svc_xprt_received(&svsk->sk_xprt); |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 1368 | err = 0; |
Tom Tucker | 2da2c21 | 2008-11-23 09:58:08 -0600 | [diff] [blame] | 1369 | } else |
| 1370 | module_put(THIS_MODULE); |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 1371 | } |
| 1372 | if (err) { |
| 1373 | sockfd_put(so); |
| 1374 | return err; |
| 1375 | } |
Chuck Lever | e7942b9 | 2009-04-23 19:32:48 -0400 | [diff] [blame] | 1376 | return svc_one_sock_name(svsk, name_return, len); |
NeilBrown | b41b66d | 2006-10-02 02:17:48 -0700 | [diff] [blame] | 1377 | } |
| 1378 | EXPORT_SYMBOL_GPL(svc_addsock); |
| 1379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | /* |
| 1381 | * Create socket for RPC service. |
| 1382 | */ |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1383 | static struct svc_xprt *svc_create_socket(struct svc_serv *serv, |
| 1384 | int protocol, |
Pavel Emelyanov | 62832c0 | 2010-09-29 16:04:18 +0400 | [diff] [blame] | 1385 | struct net *net, |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1386 | struct sockaddr *sin, int len, |
| 1387 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | { |
| 1389 | struct svc_sock *svsk; |
| 1390 | struct socket *sock; |
| 1391 | int error; |
| 1392 | int type; |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 1393 | struct sockaddr_storage addr; |
| 1394 | struct sockaddr *newsin = (struct sockaddr *)&addr; |
| 1395 | int newlen; |
Trond Myklebust | c69da77 | 2009-03-30 18:59:17 -0400 | [diff] [blame] | 1396 | int family; |
| 1397 | int val; |
Pavel Emelyanov | 5216a8e | 2008-02-21 10:57:45 +0300 | [diff] [blame] | 1398 | RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 1400 | dprintk("svc: svc_create_socket(%s, %d, %s)\n", |
| 1401 | serv->sv_program->pg_name, protocol, |
Chuck Lever | 77f1f67 | 2007-02-12 00:53:39 -0800 | [diff] [blame] | 1402 | __svc_print_addr(sin, buf, sizeof(buf))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | |
| 1404 | if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) { |
| 1405 | printk(KERN_WARNING "svc: only UDP and TCP " |
| 1406 | "sockets supported\n"); |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1407 | return ERR_PTR(-EINVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | |
Trond Myklebust | c69da77 | 2009-03-30 18:59:17 -0400 | [diff] [blame] | 1410 | type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM; |
| 1411 | switch (sin->sa_family) { |
| 1412 | case AF_INET6: |
| 1413 | family = PF_INET6; |
| 1414 | break; |
| 1415 | case AF_INET: |
| 1416 | family = PF_INET; |
| 1417 | break; |
| 1418 | default: |
| 1419 | return ERR_PTR(-EINVAL); |
| 1420 | } |
| 1421 | |
Pavel Emelyanov | 14ec63c | 2010-09-29 16:06:57 +0400 | [diff] [blame] | 1422 | error = __sock_create(net, family, type, protocol, &sock, 1); |
Chuck Lever | 77f1f67 | 2007-02-12 00:53:39 -0800 | [diff] [blame] | 1423 | if (error < 0) |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1424 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 1426 | svc_reclassify_socket(sock); |
| 1427 | |
Trond Myklebust | c69da77 | 2009-03-30 18:59:17 -0400 | [diff] [blame] | 1428 | /* |
| 1429 | * If this is an PF_INET6 listener, we want to avoid |
| 1430 | * getting requests from IPv4 remotes. Those should |
| 1431 | * be shunted to a PF_INET listener via rpcbind. |
| 1432 | */ |
| 1433 | val = 1; |
| 1434 | if (family == PF_INET6) |
| 1435 | kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY, |
| 1436 | (char *)&val, sizeof(val)); |
| 1437 | |
Eric Sesterhenn | 1811474 | 2006-09-28 14:37:07 -0700 | [diff] [blame] | 1438 | if (type == SOCK_STREAM) |
Chuck Lever | 77f1f67 | 2007-02-12 00:53:39 -0800 | [diff] [blame] | 1439 | sock->sk->sk_reuse = 1; /* allow address reuse */ |
| 1440 | error = kernel_bind(sock, sin, len); |
Eric Sesterhenn | 1811474 | 2006-09-28 14:37:07 -0700 | [diff] [blame] | 1441 | if (error < 0) |
| 1442 | goto bummer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 1444 | newlen = len; |
| 1445 | error = kernel_getsockname(sock, newsin, &newlen); |
| 1446 | if (error < 0) |
| 1447 | goto bummer; |
| 1448 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1449 | if (protocol == IPPROTO_TCP) { |
Sridhar Samudrala | e6242e9 | 2006-08-07 20:58:01 -0700 | [diff] [blame] | 1450 | if ((error = kernel_listen(sock, 64)) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | goto bummer; |
| 1452 | } |
| 1453 | |
NeilBrown | e79eff1 | 2007-02-12 00:53:30 -0800 | [diff] [blame] | 1454 | if ((svsk = svc_setup_socket(serv, sock, &error, flags)) != NULL) { |
Tom Tucker | 9dbc240 | 2007-12-30 21:08:12 -0600 | [diff] [blame] | 1455 | svc_xprt_set_local(&svsk->sk_xprt, newsin, newlen); |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1456 | return (struct svc_xprt *)svsk; |
NeilBrown | e79eff1 | 2007-02-12 00:53:30 -0800 | [diff] [blame] | 1457 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | |
| 1459 | bummer: |
| 1460 | dprintk("svc: svc_create_socket error = %d\n", -error); |
| 1461 | sock_release(sock); |
Tom Tucker | b700cbb | 2007-12-30 21:07:42 -0600 | [diff] [blame] | 1462 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | } |
| 1464 | |
| 1465 | /* |
Tom Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 1466 | * Detach the svc_sock from the socket so that no |
| 1467 | * more callbacks occur. |
| 1468 | */ |
| 1469 | static void svc_sock_detach(struct svc_xprt *xprt) |
| 1470 | { |
| 1471 | struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt); |
| 1472 | struct sock *sk = svsk->sk_sk; |
| 1473 | |
| 1474 | dprintk("svc: svc_sock_detach(%p)\n", svsk); |
| 1475 | |
| 1476 | /* put back the old socket callbacks */ |
| 1477 | sk->sk_state_change = svsk->sk_ostate; |
| 1478 | sk->sk_data_ready = svsk->sk_odata; |
| 1479 | sk->sk_write_space = svsk->sk_owspace; |
Trond Myklebust | 69b6ba3 | 2008-12-23 16:30:11 -0500 | [diff] [blame] | 1480 | |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 1481 | if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) |
| 1482 | wake_up_interruptible(sk_sleep(sk)); |
Trond Myklebust | 69b6ba3 | 2008-12-23 16:30:11 -0500 | [diff] [blame] | 1483 | } |
| 1484 | |
| 1485 | /* |
| 1486 | * Disconnect the socket, and reset the callbacks |
| 1487 | */ |
| 1488 | static void svc_tcp_sock_detach(struct svc_xprt *xprt) |
| 1489 | { |
| 1490 | struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt); |
| 1491 | |
| 1492 | dprintk("svc: svc_tcp_sock_detach(%p)\n", svsk); |
| 1493 | |
| 1494 | svc_sock_detach(xprt); |
| 1495 | |
| 1496 | if (!test_bit(XPT_LISTENER, &xprt->xpt_flags)) |
| 1497 | kernel_sock_shutdown(svsk->sk_sock, SHUT_RDWR); |
Tom Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 1498 | } |
| 1499 | |
| 1500 | /* |
| 1501 | * Free the svc_sock's socket resources and the svc_sock itself. |
| 1502 | */ |
| 1503 | static void svc_sock_free(struct svc_xprt *xprt) |
| 1504 | { |
| 1505 | struct svc_sock *svsk = container_of(xprt, struct svc_sock, sk_xprt); |
| 1506 | dprintk("svc: svc_sock_free(%p)\n", svsk); |
| 1507 | |
Tom Tucker | 755ccea | 2007-12-30 21:07:27 -0600 | [diff] [blame] | 1508 | if (svsk->sk_sock->file) |
| 1509 | sockfd_put(svsk->sk_sock); |
| 1510 | else |
| 1511 | sock_release(svsk->sk_sock); |
| 1512 | kfree(svsk); |
| 1513 | } |
Benny Halevy | 7652e5a | 2009-04-01 09:23:09 -0400 | [diff] [blame] | 1514 | |
| 1515 | /* |
| 1516 | * Create a svc_xprt. |
| 1517 | * |
| 1518 | * For internal use only (e.g. nfsv4.1 backchannel). |
| 1519 | * Callers should typically use the xpo_create() method. |
| 1520 | */ |
| 1521 | struct svc_xprt *svc_sock_create(struct svc_serv *serv, int prot) |
| 1522 | { |
| 1523 | struct svc_sock *svsk; |
| 1524 | struct svc_xprt *xprt = NULL; |
| 1525 | |
| 1526 | dprintk("svc: %s\n", __func__); |
| 1527 | svsk = kzalloc(sizeof(*svsk), GFP_KERNEL); |
| 1528 | if (!svsk) |
| 1529 | goto out; |
| 1530 | |
| 1531 | xprt = &svsk->sk_xprt; |
| 1532 | if (prot == IPPROTO_TCP) |
| 1533 | svc_xprt_init(&svc_tcp_class, xprt, serv); |
| 1534 | else if (prot == IPPROTO_UDP) |
| 1535 | svc_xprt_init(&svc_udp_class, xprt, serv); |
| 1536 | else |
| 1537 | BUG(); |
| 1538 | out: |
| 1539 | dprintk("svc: %s return %p\n", __func__, xprt); |
| 1540 | return xprt; |
| 1541 | } |
| 1542 | EXPORT_SYMBOL_GPL(svc_sock_create); |
| 1543 | |
| 1544 | /* |
| 1545 | * Destroy a svc_sock. |
| 1546 | */ |
| 1547 | void svc_sock_destroy(struct svc_xprt *xprt) |
| 1548 | { |
| 1549 | if (xprt) |
| 1550 | kfree(container_of(xprt, struct svc_sock, sk_xprt)); |
| 1551 | } |
| 1552 | EXPORT_SYMBOL_GPL(svc_sock_destroy); |