Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2 | /* |
| 3 | * linux/net/sunrpc/xprtsock.c |
| 4 | * |
| 5 | * Client-side transport implementation for sockets. |
| 6 | * |
Alan Cox | 113aa83 | 2008-10-13 19:01:08 -0700 | [diff] [blame] | 7 | * TCP callback races fixes (C) 1998 Red Hat |
| 8 | * TCP send fixes (C) 1998 Red Hat |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 9 | * TCP NFS related read + write fixes |
| 10 | * (C) 1999 Dave Airlie, University of Limerick, Ireland <airlied@linux.ie> |
| 11 | * |
| 12 | * Rewrite of larges part of the code in order to stabilize TCP stuff. |
| 13 | * Fix behaviour when socket buffer is full. |
| 14 | * (C) 1999 Trond Myklebust <trond.myklebust@fys.uio.no> |
Chuck Lever | 55aa4f5 | 2005-08-11 16:25:47 -0400 | [diff] [blame] | 15 | * |
| 16 | * IP socket transport implementation, (C) 2005 Chuck Lever <cel@netapp.com> |
Chuck Lever | 8f9d5b1 | 2007-08-06 11:57:53 -0400 | [diff] [blame] | 17 | * |
| 18 | * IPv6 support contributed by Gilles Quillard, Bull Open Source, 2005. |
| 19 | * <gilles.quillard@bull.net> |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #include <linux/types.h> |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 23 | #include <linux/string.h> |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 24 | #include <linux/slab.h> |
\"Talpey, Thomas\ | bc25571 | 2007-09-10 13:46:39 -0400 | [diff] [blame] | 25 | #include <linux/module.h> |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 26 | #include <linux/capability.h> |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 27 | #include <linux/pagemap.h> |
| 28 | #include <linux/errno.h> |
| 29 | #include <linux/socket.h> |
| 30 | #include <linux/in.h> |
| 31 | #include <linux/net.h> |
| 32 | #include <linux/mm.h> |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 33 | #include <linux/un.h> |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 34 | #include <linux/udp.h> |
| 35 | #include <linux/tcp.h> |
| 36 | #include <linux/sunrpc/clnt.h> |
Jeff Layton | 5976687 | 2013-02-04 12:50:00 -0500 | [diff] [blame] | 37 | #include <linux/sunrpc/addr.h> |
Chuck Lever | 0210714 | 2006-01-03 09:55:49 +0100 | [diff] [blame] | 38 | #include <linux/sunrpc/sched.h> |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 39 | #include <linux/sunrpc/svcsock.h> |
\"Talpey, Thomas\ | 49c36fc | 2007-09-10 13:47:31 -0400 | [diff] [blame] | 40 | #include <linux/sunrpc/xprtsock.h> |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 41 | #include <linux/file.h> |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 42 | #ifdef CONFIG_SUNRPC_BACKCHANNEL |
Ricardo Labiaga | 44b98ef | 2009-04-01 09:23:02 -0400 | [diff] [blame] | 43 | #include <linux/sunrpc/bc_xprt.h> |
| 44 | #endif |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 45 | |
| 46 | #include <net/sock.h> |
| 47 | #include <net/checksum.h> |
| 48 | #include <net/udp.h> |
| 49 | #include <net/tcp.h> |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 50 | #include <linux/bvec.h> |
Trond Myklebust | 6a829eb | 2019-01-03 09:04:45 -0500 | [diff] [blame] | 51 | #include <linux/highmem.h> |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 52 | #include <linux/uio.h> |
Trond Myklebust | a1231fd | 2019-02-18 10:02:29 -0500 | [diff] [blame] | 53 | #include <linux/sched/mm.h> |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 54 | |
Trond Myklebust | 40b5ea0 | 2013-09-04 12:16:23 -0400 | [diff] [blame] | 55 | #include <trace/events/sunrpc.h> |
| 56 | |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 57 | #include "sunrpc.h" |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 58 | |
| 59 | static void xs_close(struct rpc_xprt *xprt); |
Trond Myklebust | 7196dbb | 2017-02-08 11:17:54 -0500 | [diff] [blame] | 60 | static void xs_tcp_set_socket_timeouts(struct rpc_xprt *xprt, |
| 61 | struct socket *sock); |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 62 | |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 63 | /* |
Chuck Lever | c556b75 | 2005-11-01 12:24:48 -0500 | [diff] [blame] | 64 | * xprtsock tunables |
| 65 | */ |
Trond Myklebust | 09acfea | 2012-03-11 15:22:54 -0400 | [diff] [blame] | 66 | static unsigned int xprt_udp_slot_table_entries = RPC_DEF_SLOT_TABLE; |
| 67 | static unsigned int xprt_tcp_slot_table_entries = RPC_MIN_SLOT_TABLE; |
| 68 | static unsigned int xprt_max_tcp_slot_table_entries = RPC_MAX_SLOT_TABLE; |
Chuck Lever | c556b75 | 2005-11-01 12:24:48 -0500 | [diff] [blame] | 69 | |
Trond Myklebust | 09acfea | 2012-03-11 15:22:54 -0400 | [diff] [blame] | 70 | static unsigned int xprt_min_resvport = RPC_DEF_MIN_RESVPORT; |
| 71 | static unsigned int xprt_max_resvport = RPC_DEF_MAX_RESVPORT; |
Chuck Lever | c556b75 | 2005-11-01 12:24:48 -0500 | [diff] [blame] | 72 | |
Trond Myklebust | 7d1e825 | 2009-03-11 14:38:03 -0400 | [diff] [blame] | 73 | #define XS_TCP_LINGER_TO (15U * HZ) |
Trond Myklebust | 25fe614 | 2009-03-11 14:38:03 -0400 | [diff] [blame] | 74 | static unsigned int xs_tcp_fin_timeout __read_mostly = XS_TCP_LINGER_TO; |
Trond Myklebust | 7d1e825 | 2009-03-11 14:38:03 -0400 | [diff] [blame] | 75 | |
Chuck Lever | c556b75 | 2005-11-01 12:24:48 -0500 | [diff] [blame] | 76 | /* |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 77 | * We can register our own files under /proc/sys/sunrpc by |
| 78 | * calling register_sysctl_table() again. The files in that |
| 79 | * directory become the union of all files registered there. |
| 80 | * |
| 81 | * We simply need to make sure that we don't collide with |
| 82 | * someone else's file names! |
| 83 | */ |
| 84 | |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 85 | static unsigned int min_slot_table_size = RPC_MIN_SLOT_TABLE; |
| 86 | static unsigned int max_slot_table_size = RPC_MAX_SLOT_TABLE; |
Trond Myklebust | d9ba131 | 2011-07-17 18:11:30 -0400 | [diff] [blame] | 87 | static unsigned int max_tcp_slot_table_limit = RPC_MAX_SLOT_TABLE_LIMIT; |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 88 | static unsigned int xprt_min_resvport_limit = RPC_MIN_RESVPORT; |
| 89 | static unsigned int xprt_max_resvport_limit = RPC_MAX_RESVPORT; |
| 90 | |
| 91 | static struct ctl_table_header *sunrpc_table_header; |
| 92 | |
| 93 | /* |
| 94 | * FIXME: changing the UDP slot table size should also resize the UDP |
| 95 | * socket buffers for existing UDP transports |
| 96 | */ |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 97 | static struct ctl_table xs_tunables_table[] = { |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 98 | { |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 99 | .procname = "udp_slot_table_entries", |
| 100 | .data = &xprt_udp_slot_table_entries, |
| 101 | .maxlen = sizeof(unsigned int), |
| 102 | .mode = 0644, |
Eric W. Biederman | 6d45611 | 2009-11-16 03:11:48 -0800 | [diff] [blame] | 103 | .proc_handler = proc_dointvec_minmax, |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 104 | .extra1 = &min_slot_table_size, |
| 105 | .extra2 = &max_slot_table_size |
| 106 | }, |
| 107 | { |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 108 | .procname = "tcp_slot_table_entries", |
| 109 | .data = &xprt_tcp_slot_table_entries, |
| 110 | .maxlen = sizeof(unsigned int), |
| 111 | .mode = 0644, |
Eric W. Biederman | 6d45611 | 2009-11-16 03:11:48 -0800 | [diff] [blame] | 112 | .proc_handler = proc_dointvec_minmax, |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 113 | .extra1 = &min_slot_table_size, |
| 114 | .extra2 = &max_slot_table_size |
| 115 | }, |
| 116 | { |
Trond Myklebust | d9ba131 | 2011-07-17 18:11:30 -0400 | [diff] [blame] | 117 | .procname = "tcp_max_slot_table_entries", |
| 118 | .data = &xprt_max_tcp_slot_table_entries, |
| 119 | .maxlen = sizeof(unsigned int), |
| 120 | .mode = 0644, |
| 121 | .proc_handler = proc_dointvec_minmax, |
| 122 | .extra1 = &min_slot_table_size, |
| 123 | .extra2 = &max_tcp_slot_table_limit |
| 124 | }, |
| 125 | { |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 126 | .procname = "min_resvport", |
| 127 | .data = &xprt_min_resvport, |
| 128 | .maxlen = sizeof(unsigned int), |
| 129 | .mode = 0644, |
Eric W. Biederman | 6d45611 | 2009-11-16 03:11:48 -0800 | [diff] [blame] | 130 | .proc_handler = proc_dointvec_minmax, |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 131 | .extra1 = &xprt_min_resvport_limit, |
J. Bruce Fields | 826799e | 2018-10-18 15:27:02 -0400 | [diff] [blame] | 132 | .extra2 = &xprt_max_resvport_limit |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 133 | }, |
| 134 | { |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 135 | .procname = "max_resvport", |
| 136 | .data = &xprt_max_resvport, |
| 137 | .maxlen = sizeof(unsigned int), |
| 138 | .mode = 0644, |
Eric W. Biederman | 6d45611 | 2009-11-16 03:11:48 -0800 | [diff] [blame] | 139 | .proc_handler = proc_dointvec_minmax, |
J. Bruce Fields | 826799e | 2018-10-18 15:27:02 -0400 | [diff] [blame] | 140 | .extra1 = &xprt_min_resvport_limit, |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 141 | .extra2 = &xprt_max_resvport_limit |
| 142 | }, |
| 143 | { |
Trond Myklebust | 25fe614 | 2009-03-11 14:38:03 -0400 | [diff] [blame] | 144 | .procname = "tcp_fin_timeout", |
| 145 | .data = &xs_tcp_fin_timeout, |
| 146 | .maxlen = sizeof(xs_tcp_fin_timeout), |
| 147 | .mode = 0644, |
Eric W. Biederman | 6d45611 | 2009-11-16 03:11:48 -0800 | [diff] [blame] | 148 | .proc_handler = proc_dointvec_jiffies, |
Trond Myklebust | 25fe614 | 2009-03-11 14:38:03 -0400 | [diff] [blame] | 149 | }, |
Eric W. Biederman | f8572d8 | 2009-11-05 13:32:03 -0800 | [diff] [blame] | 150 | { }, |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 151 | }; |
| 152 | |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 153 | static struct ctl_table sunrpc_table[] = { |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 154 | { |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 155 | .procname = "sunrpc", |
| 156 | .mode = 0555, |
| 157 | .child = xs_tunables_table |
| 158 | }, |
Eric W. Biederman | f8572d8 | 2009-11-05 13:32:03 -0800 | [diff] [blame] | 159 | { }, |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 160 | }; |
| 161 | |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 162 | /* |
Chuck Lever | 03bf4b7 | 2005-08-25 16:25:55 -0700 | [diff] [blame] | 163 | * Wait duration for a reply from the RPC portmapper. |
| 164 | */ |
| 165 | #define XS_BIND_TO (60U * HZ) |
| 166 | |
| 167 | /* |
| 168 | * Delay if a UDP socket connect error occurs. This is most likely some |
| 169 | * kind of resource problem on the local host. |
| 170 | */ |
| 171 | #define XS_UDP_REEST_TO (2U * HZ) |
| 172 | |
| 173 | /* |
| 174 | * The reestablish timeout allows clients to delay for a bit before attempting |
| 175 | * to reconnect to a server that just dropped our connection. |
| 176 | * |
| 177 | * We implement an exponential backoff when trying to reestablish a TCP |
| 178 | * transport connection with the server. Some servers like to drop a TCP |
| 179 | * connection when they are overworked, so we start with a short timeout and |
| 180 | * increase over time if the server is down or not responding. |
| 181 | */ |
| 182 | #define XS_TCP_INIT_REEST_TO (3U * HZ) |
Chuck Lever | 03bf4b7 | 2005-08-25 16:25:55 -0700 | [diff] [blame] | 183 | |
| 184 | /* |
| 185 | * TCP idle timeout; client drops the transport socket if it is idle |
| 186 | * for this long. Note that we also timeout UDP sockets to prevent |
| 187 | * holding port numbers when there is no RPC traffic. |
| 188 | */ |
| 189 | #define XS_IDLE_DISC_TO (5U * 60 * HZ) |
| 190 | |
Jeff Layton | f895b25 | 2014-11-17 16:58:04 -0500 | [diff] [blame] | 191 | #if IS_ENABLED(CONFIG_SUNRPC_DEBUG) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 192 | # undef RPC_DEBUG_DATA |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 193 | # define RPCDBG_FACILITY RPCDBG_TRANS |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 194 | #endif |
| 195 | |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 196 | #ifdef RPC_DEBUG_DATA |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 197 | static void xs_pktdump(char *msg, u32 *packet, unsigned int count) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 198 | { |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 199 | u8 *buf = (u8 *) packet; |
| 200 | int j; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 201 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 202 | dprintk("RPC: %s\n", msg); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 203 | for (j = 0; j < count && j < 128; j += 4) { |
| 204 | if (!(j & 31)) { |
| 205 | if (j) |
| 206 | dprintk("\n"); |
| 207 | dprintk("0x%04x ", j); |
| 208 | } |
| 209 | dprintk("%02x%02x%02x%02x ", |
| 210 | buf[j], buf[j+1], buf[j+2], buf[j+3]); |
| 211 | } |
| 212 | dprintk("\n"); |
| 213 | } |
| 214 | #else |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 215 | static inline void xs_pktdump(char *msg, u32 *packet, unsigned int count) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 216 | { |
| 217 | /* NOP */ |
| 218 | } |
| 219 | #endif |
| 220 | |
Trond Myklebust | 2118071 | 2013-12-31 13:22:59 -0500 | [diff] [blame] | 221 | static inline struct rpc_xprt *xprt_from_sock(struct sock *sk) |
| 222 | { |
| 223 | return (struct rpc_xprt *) sk->sk_user_data; |
| 224 | } |
| 225 | |
Chuck Lever | 95392c5 | 2007-08-06 11:57:58 -0400 | [diff] [blame] | 226 | static inline struct sockaddr *xs_addr(struct rpc_xprt *xprt) |
Chuck Lever | edb267a | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 227 | { |
Chuck Lever | 95392c5 | 2007-08-06 11:57:58 -0400 | [diff] [blame] | 228 | return (struct sockaddr *) &xprt->addr; |
| 229 | } |
| 230 | |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 231 | static inline struct sockaddr_un *xs_addr_un(struct rpc_xprt *xprt) |
| 232 | { |
| 233 | return (struct sockaddr_un *) &xprt->addr; |
| 234 | } |
| 235 | |
Chuck Lever | 95392c5 | 2007-08-06 11:57:58 -0400 | [diff] [blame] | 236 | static inline struct sockaddr_in *xs_addr_in(struct rpc_xprt *xprt) |
| 237 | { |
| 238 | return (struct sockaddr_in *) &xprt->addr; |
| 239 | } |
| 240 | |
| 241 | static inline struct sockaddr_in6 *xs_addr_in6(struct rpc_xprt *xprt) |
| 242 | { |
| 243 | return (struct sockaddr_in6 *) &xprt->addr; |
| 244 | } |
| 245 | |
Chuck Lever | c877b84 | 2009-08-09 15:09:36 -0400 | [diff] [blame] | 246 | static void xs_format_common_peer_addresses(struct rpc_xprt *xprt) |
Chuck Lever | edb267a | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 247 | { |
Chuck Lever | c877b84 | 2009-08-09 15:09:36 -0400 | [diff] [blame] | 248 | struct sockaddr *sap = xs_addr(xprt); |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 249 | struct sockaddr_in6 *sin6; |
| 250 | struct sockaddr_in *sin; |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 251 | struct sockaddr_un *sun; |
Chuck Lever | c877b84 | 2009-08-09 15:09:36 -0400 | [diff] [blame] | 252 | char buf[128]; |
Chuck Lever | edb267a | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 253 | |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 254 | switch (sap->sa_family) { |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 255 | case AF_LOCAL: |
| 256 | sun = xs_addr_un(xprt); |
| 257 | strlcpy(buf, sun->sun_path, sizeof(buf)); |
| 258 | xprt->address_strings[RPC_DISPLAY_ADDR] = |
| 259 | kstrdup(buf, GFP_KERNEL); |
| 260 | break; |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 261 | case AF_INET: |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 262 | (void)rpc_ntop(sap, buf, sizeof(buf)); |
| 263 | xprt->address_strings[RPC_DISPLAY_ADDR] = |
| 264 | kstrdup(buf, GFP_KERNEL); |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 265 | sin = xs_addr_in(xprt); |
Joe Perches | fc0b5791 | 2010-03-08 12:15:28 -0800 | [diff] [blame] | 266 | snprintf(buf, sizeof(buf), "%08x", ntohl(sin->sin_addr.s_addr)); |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 267 | break; |
| 268 | case AF_INET6: |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 269 | (void)rpc_ntop(sap, buf, sizeof(buf)); |
| 270 | xprt->address_strings[RPC_DISPLAY_ADDR] = |
| 271 | kstrdup(buf, GFP_KERNEL); |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 272 | sin6 = xs_addr_in6(xprt); |
Joe Perches | fc0b5791 | 2010-03-08 12:15:28 -0800 | [diff] [blame] | 273 | snprintf(buf, sizeof(buf), "%pi6", &sin6->sin6_addr); |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 274 | break; |
| 275 | default: |
| 276 | BUG(); |
Chuck Lever | edb267a | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 277 | } |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 278 | |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 279 | xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL); |
Chuck Lever | edb267a | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 280 | } |
| 281 | |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 282 | static void xs_format_common_peer_ports(struct rpc_xprt *xprt) |
Chuck Lever | 4b6473f | 2007-08-06 11:57:12 -0400 | [diff] [blame] | 283 | { |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 284 | struct sockaddr *sap = xs_addr(xprt); |
| 285 | char buf[128]; |
Chuck Lever | 4b6473f | 2007-08-06 11:57:12 -0400 | [diff] [blame] | 286 | |
Joe Perches | 81160e66 | 2010-03-08 12:15:59 -0800 | [diff] [blame] | 287 | snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap)); |
Chuck Lever | c877b84 | 2009-08-09 15:09:36 -0400 | [diff] [blame] | 288 | xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL); |
Chuck Lever | 4b6473f | 2007-08-06 11:57:12 -0400 | [diff] [blame] | 289 | |
Joe Perches | 81160e66 | 2010-03-08 12:15:59 -0800 | [diff] [blame] | 290 | snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap)); |
Chuck Lever | c877b84 | 2009-08-09 15:09:36 -0400 | [diff] [blame] | 291 | xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL); |
| 292 | } |
Chuck Lever | 4b6473f | 2007-08-06 11:57:12 -0400 | [diff] [blame] | 293 | |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 294 | static void xs_format_peer_addresses(struct rpc_xprt *xprt, |
| 295 | const char *protocol, |
| 296 | const char *netid) |
Chuck Lever | edb267a | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 297 | { |
Chuck Lever | b454ae9 | 2008-01-07 18:34:48 -0500 | [diff] [blame] | 298 | xprt->address_strings[RPC_DISPLAY_PROTO] = protocol; |
Chuck Lever | b454ae9 | 2008-01-07 18:34:48 -0500 | [diff] [blame] | 299 | xprt->address_strings[RPC_DISPLAY_NETID] = netid; |
Chuck Lever | c877b84 | 2009-08-09 15:09:36 -0400 | [diff] [blame] | 300 | xs_format_common_peer_addresses(xprt); |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 301 | xs_format_common_peer_ports(xprt); |
Chuck Lever | 4b6473f | 2007-08-06 11:57:12 -0400 | [diff] [blame] | 302 | } |
| 303 | |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 304 | static void xs_update_peer_port(struct rpc_xprt *xprt) |
Chuck Lever | 4b6473f | 2007-08-06 11:57:12 -0400 | [diff] [blame] | 305 | { |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 306 | kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]); |
| 307 | kfree(xprt->address_strings[RPC_DISPLAY_PORT]); |
Chuck Lever | 4b6473f | 2007-08-06 11:57:12 -0400 | [diff] [blame] | 308 | |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 309 | xs_format_common_peer_ports(xprt); |
Chuck Lever | edb267a | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | static void xs_free_peer_addresses(struct rpc_xprt *xprt) |
| 313 | { |
Chuck Lever | 33e01dc | 2008-01-14 12:32:20 -0500 | [diff] [blame] | 314 | unsigned int i; |
| 315 | |
| 316 | for (i = 0; i < RPC_DISPLAY_MAX; i++) |
| 317 | switch (i) { |
| 318 | case RPC_DISPLAY_PROTO: |
| 319 | case RPC_DISPLAY_NETID: |
| 320 | continue; |
| 321 | default: |
| 322 | kfree(xprt->address_strings[i]); |
| 323 | } |
Chuck Lever | edb267a | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 324 | } |
| 325 | |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 326 | static size_t |
| 327 | xs_alloc_sparse_pages(struct xdr_buf *buf, size_t want, gfp_t gfp) |
| 328 | { |
| 329 | size_t i,n; |
| 330 | |
Trond Myklebust | 16e5e90 | 2018-12-02 15:22:48 -0500 | [diff] [blame] | 331 | if (!want || !(buf->flags & XDRBUF_SPARSE_PAGES)) |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 332 | return want; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 333 | n = (buf->page_base + want + PAGE_SIZE - 1) >> PAGE_SHIFT; |
| 334 | for (i = 0; i < n; i++) { |
| 335 | if (buf->pages[i]) |
| 336 | continue; |
| 337 | buf->bvec[i].bv_page = buf->pages[i] = alloc_page(gfp); |
| 338 | if (!buf->pages[i]) { |
Trond Myklebust | 16e5e90 | 2018-12-02 15:22:48 -0500 | [diff] [blame] | 339 | i *= PAGE_SIZE; |
| 340 | return i > buf->page_base ? i - buf->page_base : 0; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 341 | } |
| 342 | } |
| 343 | return want; |
| 344 | } |
| 345 | |
| 346 | static ssize_t |
| 347 | xs_sock_recvmsg(struct socket *sock, struct msghdr *msg, int flags, size_t seek) |
| 348 | { |
| 349 | ssize_t ret; |
| 350 | if (seek != 0) |
| 351 | iov_iter_advance(&msg->msg_iter, seek); |
| 352 | ret = sock_recvmsg(sock, msg, flags); |
| 353 | return ret > 0 ? ret + seek : ret; |
| 354 | } |
| 355 | |
| 356 | static ssize_t |
| 357 | xs_read_kvec(struct socket *sock, struct msghdr *msg, int flags, |
| 358 | struct kvec *kvec, size_t count, size_t seek) |
| 359 | { |
Al Viro | 0e9b4a8 | 2018-11-01 18:19:03 -0400 | [diff] [blame] | 360 | iov_iter_kvec(&msg->msg_iter, READ, kvec, 1, count); |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 361 | return xs_sock_recvmsg(sock, msg, flags, seek); |
| 362 | } |
| 363 | |
| 364 | static ssize_t |
| 365 | xs_read_bvec(struct socket *sock, struct msghdr *msg, int flags, |
| 366 | struct bio_vec *bvec, unsigned long nr, size_t count, |
| 367 | size_t seek) |
| 368 | { |
Al Viro | 0e9b4a8 | 2018-11-01 18:19:03 -0400 | [diff] [blame] | 369 | iov_iter_bvec(&msg->msg_iter, READ, bvec, nr, count); |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 370 | return xs_sock_recvmsg(sock, msg, flags, seek); |
| 371 | } |
| 372 | |
| 373 | static ssize_t |
| 374 | xs_read_discard(struct socket *sock, struct msghdr *msg, int flags, |
| 375 | size_t count) |
| 376 | { |
Trond Myklebust | b76a5af | 2018-12-03 15:58:58 -0500 | [diff] [blame] | 377 | iov_iter_discard(&msg->msg_iter, READ, count); |
| 378 | return sock_recvmsg(sock, msg, flags); |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 379 | } |
| 380 | |
Trond Myklebust | 6a829eb | 2019-01-03 09:04:45 -0500 | [diff] [blame] | 381 | #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE |
| 382 | static void |
| 383 | xs_flush_bvec(const struct bio_vec *bvec, size_t count, size_t seek) |
| 384 | { |
| 385 | struct bvec_iter bi = { |
| 386 | .bi_size = count, |
| 387 | }; |
| 388 | struct bio_vec bv; |
| 389 | |
| 390 | bvec_iter_advance(bvec, &bi, seek & PAGE_MASK); |
| 391 | for_each_bvec(bv, bvec, bi, bi) |
| 392 | flush_dcache_page(bv.bv_page); |
| 393 | } |
| 394 | #else |
| 395 | static inline void |
| 396 | xs_flush_bvec(const struct bio_vec *bvec, size_t count, size_t seek) |
| 397 | { |
| 398 | } |
| 399 | #endif |
| 400 | |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 401 | static ssize_t |
| 402 | xs_read_xdr_buf(struct socket *sock, struct msghdr *msg, int flags, |
| 403 | struct xdr_buf *buf, size_t count, size_t seek, size_t *read) |
| 404 | { |
| 405 | size_t want, seek_init = seek, offset = 0; |
| 406 | ssize_t ret; |
| 407 | |
Trond Myklebust | e92053a | 2019-02-15 18:14:27 -0500 | [diff] [blame] | 408 | want = min_t(size_t, count, buf->head[0].iov_len); |
| 409 | if (seek < want) { |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 410 | ret = xs_read_kvec(sock, msg, flags, &buf->head[0], want, seek); |
| 411 | if (ret <= 0) |
| 412 | goto sock_err; |
| 413 | offset += ret; |
| 414 | if (offset == count || msg->msg_flags & (MSG_EOR|MSG_TRUNC)) |
| 415 | goto out; |
| 416 | if (ret != want) |
Trond Myklebust | c443305 | 2018-12-04 07:52:11 -0500 | [diff] [blame] | 417 | goto out; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 418 | seek = 0; |
| 419 | } else { |
Trond Myklebust | e92053a | 2019-02-15 18:14:27 -0500 | [diff] [blame] | 420 | seek -= want; |
| 421 | offset += want; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 422 | } |
Trond Myklebust | 16e5e90 | 2018-12-02 15:22:48 -0500 | [diff] [blame] | 423 | |
| 424 | want = xs_alloc_sparse_pages(buf, |
| 425 | min_t(size_t, count - offset, buf->page_len), |
Trond Myklebust | 12a3ad6 | 2019-03-02 10:14:02 -0500 | [diff] [blame] | 426 | GFP_KERNEL); |
Trond Myklebust | 16e5e90 | 2018-12-02 15:22:48 -0500 | [diff] [blame] | 427 | if (seek < want) { |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 428 | ret = xs_read_bvec(sock, msg, flags, buf->bvec, |
| 429 | xdr_buf_pagecount(buf), |
| 430 | want + buf->page_base, |
| 431 | seek + buf->page_base); |
| 432 | if (ret <= 0) |
| 433 | goto sock_err; |
Trond Myklebust | 6a829eb | 2019-01-03 09:04:45 -0500 | [diff] [blame] | 434 | xs_flush_bvec(buf->bvec, ret, seek + buf->page_base); |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 435 | offset += ret - buf->page_base; |
| 436 | if (offset == count || msg->msg_flags & (MSG_EOR|MSG_TRUNC)) |
| 437 | goto out; |
| 438 | if (ret != want) |
Trond Myklebust | c443305 | 2018-12-04 07:52:11 -0500 | [diff] [blame] | 439 | goto out; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 440 | seek = 0; |
| 441 | } else { |
Trond Myklebust | 16e5e90 | 2018-12-02 15:22:48 -0500 | [diff] [blame] | 442 | seek -= want; |
| 443 | offset += want; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 444 | } |
Trond Myklebust | 16e5e90 | 2018-12-02 15:22:48 -0500 | [diff] [blame] | 445 | |
Trond Myklebust | e92053a | 2019-02-15 18:14:27 -0500 | [diff] [blame] | 446 | want = min_t(size_t, count - offset, buf->tail[0].iov_len); |
| 447 | if (seek < want) { |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 448 | ret = xs_read_kvec(sock, msg, flags, &buf->tail[0], want, seek); |
| 449 | if (ret <= 0) |
| 450 | goto sock_err; |
| 451 | offset += ret; |
| 452 | if (offset == count || msg->msg_flags & (MSG_EOR|MSG_TRUNC)) |
| 453 | goto out; |
| 454 | if (ret != want) |
Trond Myklebust | c443305 | 2018-12-04 07:52:11 -0500 | [diff] [blame] | 455 | goto out; |
Trond Myklebust | 9734ad5 | 2019-03-15 12:47:34 -0400 | [diff] [blame] | 456 | } else if (offset < seek_init) |
Trond Myklebust | e92053a | 2019-02-15 18:14:27 -0500 | [diff] [blame] | 457 | offset = seek_init; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 458 | ret = -EMSGSIZE; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 459 | out: |
| 460 | *read = offset - seek_init; |
| 461 | return ret; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 462 | sock_err: |
| 463 | offset += seek; |
| 464 | goto out; |
| 465 | } |
| 466 | |
| 467 | static void |
| 468 | xs_read_header(struct sock_xprt *transport, struct xdr_buf *buf) |
| 469 | { |
| 470 | if (!transport->recv.copied) { |
| 471 | if (buf->head[0].iov_len >= transport->recv.offset) |
| 472 | memcpy(buf->head[0].iov_base, |
| 473 | &transport->recv.xid, |
| 474 | transport->recv.offset); |
| 475 | transport->recv.copied = transport->recv.offset; |
| 476 | } |
| 477 | } |
| 478 | |
| 479 | static bool |
| 480 | xs_read_stream_request_done(struct sock_xprt *transport) |
| 481 | { |
| 482 | return transport->recv.fraghdr & cpu_to_be32(RPC_LAST_STREAM_FRAGMENT); |
| 483 | } |
| 484 | |
Trond Myklebust | e92053a | 2019-02-15 18:14:27 -0500 | [diff] [blame] | 485 | static void |
| 486 | xs_read_stream_check_eor(struct sock_xprt *transport, |
| 487 | struct msghdr *msg) |
| 488 | { |
| 489 | if (xs_read_stream_request_done(transport)) |
| 490 | msg->msg_flags |= MSG_EOR; |
| 491 | } |
| 492 | |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 493 | static ssize_t |
| 494 | xs_read_stream_request(struct sock_xprt *transport, struct msghdr *msg, |
| 495 | int flags, struct rpc_rqst *req) |
| 496 | { |
| 497 | struct xdr_buf *buf = &req->rq_private_buf; |
Alakesh Haloi | 01f2f5b | 2019-03-26 02:00:01 +0000 | [diff] [blame] | 498 | size_t want, uninitialized_var(read); |
| 499 | ssize_t uninitialized_var(ret); |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 500 | |
| 501 | xs_read_header(transport, buf); |
| 502 | |
| 503 | want = transport->recv.len - transport->recv.offset; |
Trond Myklebust | e92053a | 2019-02-15 18:14:27 -0500 | [diff] [blame] | 504 | if (want != 0) { |
| 505 | ret = xs_read_xdr_buf(transport->sock, msg, flags, buf, |
| 506 | transport->recv.copied + want, |
| 507 | transport->recv.copied, |
| 508 | &read); |
| 509 | transport->recv.offset += read; |
| 510 | transport->recv.copied += read; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 511 | } |
| 512 | |
Trond Myklebust | 727fcc6 | 2019-02-15 16:53:04 -0500 | [diff] [blame] | 513 | if (transport->recv.offset == transport->recv.len) |
| 514 | xs_read_stream_check_eor(transport, msg); |
| 515 | |
Trond Myklebust | e92053a | 2019-02-15 18:14:27 -0500 | [diff] [blame] | 516 | if (want == 0) |
| 517 | return 0; |
| 518 | |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 519 | switch (ret) { |
Trond Myklebust | c443305 | 2018-12-04 07:52:11 -0500 | [diff] [blame] | 520 | default: |
| 521 | break; |
Trond Myklebust | 26781ea | 2018-12-03 15:41:38 -0500 | [diff] [blame] | 522 | case -EFAULT: |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 523 | case -EMSGSIZE: |
Trond Myklebust | 26781ea | 2018-12-03 15:41:38 -0500 | [diff] [blame] | 524 | msg->msg_flags |= MSG_TRUNC; |
Trond Myklebust | c443305 | 2018-12-04 07:52:11 -0500 | [diff] [blame] | 525 | return read; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 526 | case 0: |
| 527 | return -ESHUTDOWN; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 528 | } |
Trond Myklebust | c443305 | 2018-12-04 07:52:11 -0500 | [diff] [blame] | 529 | return ret < 0 ? ret : read; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | static size_t |
| 533 | xs_read_stream_headersize(bool isfrag) |
| 534 | { |
| 535 | if (isfrag) |
| 536 | return sizeof(__be32); |
| 537 | return 3 * sizeof(__be32); |
| 538 | } |
| 539 | |
| 540 | static ssize_t |
| 541 | xs_read_stream_header(struct sock_xprt *transport, struct msghdr *msg, |
| 542 | int flags, size_t want, size_t seek) |
| 543 | { |
| 544 | struct kvec kvec = { |
| 545 | .iov_base = &transport->recv.fraghdr, |
| 546 | .iov_len = want, |
| 547 | }; |
| 548 | return xs_read_kvec(transport->sock, msg, flags, &kvec, want, seek); |
| 549 | } |
| 550 | |
| 551 | #if defined(CONFIG_SUNRPC_BACKCHANNEL) |
| 552 | static ssize_t |
| 553 | xs_read_stream_call(struct sock_xprt *transport, struct msghdr *msg, int flags) |
| 554 | { |
| 555 | struct rpc_xprt *xprt = &transport->xprt; |
| 556 | struct rpc_rqst *req; |
| 557 | ssize_t ret; |
| 558 | |
| 559 | /* Look up and lock the request corresponding to the given XID */ |
| 560 | req = xprt_lookup_bc_request(xprt, transport->recv.xid); |
| 561 | if (!req) { |
| 562 | printk(KERN_WARNING "Callback slot table overflowed\n"); |
| 563 | return -ESHUTDOWN; |
| 564 | } |
Trond Myklebust | 45835a6 | 2019-09-12 08:04:25 -0400 | [diff] [blame^] | 565 | if (transport->recv.copied && !req->rq_private_buf.len) |
| 566 | return -ESHUTDOWN; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 567 | |
| 568 | ret = xs_read_stream_request(transport, msg, flags, req); |
| 569 | if (msg->msg_flags & (MSG_EOR|MSG_TRUNC)) |
Trond Myklebust | c443305 | 2018-12-04 07:52:11 -0500 | [diff] [blame] | 570 | xprt_complete_bc_request(req, transport->recv.copied); |
Trond Myklebust | 45835a6 | 2019-09-12 08:04:25 -0400 | [diff] [blame^] | 571 | else |
| 572 | req->rq_private_buf.len = transport->recv.copied; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 573 | |
| 574 | return ret; |
| 575 | } |
| 576 | #else /* CONFIG_SUNRPC_BACKCHANNEL */ |
| 577 | static ssize_t |
| 578 | xs_read_stream_call(struct sock_xprt *transport, struct msghdr *msg, int flags) |
| 579 | { |
| 580 | return -ESHUTDOWN; |
| 581 | } |
| 582 | #endif /* CONFIG_SUNRPC_BACKCHANNEL */ |
| 583 | |
| 584 | static ssize_t |
| 585 | xs_read_stream_reply(struct sock_xprt *transport, struct msghdr *msg, int flags) |
| 586 | { |
| 587 | struct rpc_xprt *xprt = &transport->xprt; |
| 588 | struct rpc_rqst *req; |
| 589 | ssize_t ret = 0; |
| 590 | |
| 591 | /* Look up and lock the request corresponding to the given XID */ |
| 592 | spin_lock(&xprt->queue_lock); |
| 593 | req = xprt_lookup_rqst(xprt, transport->recv.xid); |
Trond Myklebust | 45835a6 | 2019-09-12 08:04:25 -0400 | [diff] [blame^] | 594 | if (!req || (transport->recv.copied && !req->rq_private_buf.len)) { |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 595 | msg->msg_flags |= MSG_TRUNC; |
| 596 | goto out; |
| 597 | } |
| 598 | xprt_pin_rqst(req); |
| 599 | spin_unlock(&xprt->queue_lock); |
| 600 | |
| 601 | ret = xs_read_stream_request(transport, msg, flags, req); |
| 602 | |
| 603 | spin_lock(&xprt->queue_lock); |
| 604 | if (msg->msg_flags & (MSG_EOR|MSG_TRUNC)) |
Trond Myklebust | c443305 | 2018-12-04 07:52:11 -0500 | [diff] [blame] | 605 | xprt_complete_rqst(req->rq_task, transport->recv.copied); |
Trond Myklebust | 45835a6 | 2019-09-12 08:04:25 -0400 | [diff] [blame^] | 606 | else |
| 607 | req->rq_private_buf.len = transport->recv.copied; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 608 | xprt_unpin_rqst(req); |
| 609 | out: |
| 610 | spin_unlock(&xprt->queue_lock); |
| 611 | return ret; |
| 612 | } |
| 613 | |
| 614 | static ssize_t |
| 615 | xs_read_stream(struct sock_xprt *transport, int flags) |
| 616 | { |
| 617 | struct msghdr msg = { 0 }; |
| 618 | size_t want, read = 0; |
| 619 | ssize_t ret = 0; |
| 620 | |
| 621 | if (transport->recv.len == 0) { |
| 622 | want = xs_read_stream_headersize(transport->recv.copied != 0); |
| 623 | ret = xs_read_stream_header(transport, &msg, flags, want, |
| 624 | transport->recv.offset); |
| 625 | if (ret <= 0) |
| 626 | goto out_err; |
| 627 | transport->recv.offset = ret; |
Trond Myklebust | c443305 | 2018-12-04 07:52:11 -0500 | [diff] [blame] | 628 | if (transport->recv.offset != want) |
| 629 | return transport->recv.offset; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 630 | transport->recv.len = be32_to_cpu(transport->recv.fraghdr) & |
| 631 | RPC_FRAGMENT_SIZE_MASK; |
| 632 | transport->recv.offset -= sizeof(transport->recv.fraghdr); |
| 633 | read = ret; |
| 634 | } |
| 635 | |
| 636 | switch (be32_to_cpu(transport->recv.calldir)) { |
Trond Myklebust | c443305 | 2018-12-04 07:52:11 -0500 | [diff] [blame] | 637 | default: |
| 638 | msg.msg_flags |= MSG_TRUNC; |
| 639 | break; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 640 | case RPC_CALL: |
| 641 | ret = xs_read_stream_call(transport, &msg, flags); |
| 642 | break; |
| 643 | case RPC_REPLY: |
| 644 | ret = xs_read_stream_reply(transport, &msg, flags); |
| 645 | } |
| 646 | if (msg.msg_flags & MSG_TRUNC) { |
| 647 | transport->recv.calldir = cpu_to_be32(-1); |
| 648 | transport->recv.copied = -1; |
| 649 | } |
| 650 | if (ret < 0) |
| 651 | goto out_err; |
| 652 | read += ret; |
| 653 | if (transport->recv.offset < transport->recv.len) { |
Trond Myklebust | c443305 | 2018-12-04 07:52:11 -0500 | [diff] [blame] | 654 | if (!(msg.msg_flags & MSG_TRUNC)) |
| 655 | return read; |
Trond Myklebust | b76a5af | 2018-12-03 15:58:58 -0500 | [diff] [blame] | 656 | msg.msg_flags = 0; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 657 | ret = xs_read_discard(transport->sock, &msg, flags, |
| 658 | transport->recv.len - transport->recv.offset); |
| 659 | if (ret <= 0) |
| 660 | goto out_err; |
| 661 | transport->recv.offset += ret; |
| 662 | read += ret; |
| 663 | if (transport->recv.offset != transport->recv.len) |
Trond Myklebust | c443305 | 2018-12-04 07:52:11 -0500 | [diff] [blame] | 664 | return read; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 665 | } |
| 666 | if (xs_read_stream_request_done(transport)) { |
Trond Myklebust | c50b8ee | 2018-09-14 14:26:28 -0400 | [diff] [blame] | 667 | trace_xs_stream_read_request(transport); |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 668 | transport->recv.copied = 0; |
| 669 | } |
| 670 | transport->recv.offset = 0; |
| 671 | transport->recv.len = 0; |
| 672 | return read; |
| 673 | out_err: |
Trond Myklebust | 79462857 | 2018-12-03 18:49:00 -0500 | [diff] [blame] | 674 | return ret != 0 ? ret : -ESHUTDOWN; |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 675 | } |
| 676 | |
Trond Myklebust | 0ffe86f | 2019-01-30 14:51:26 -0500 | [diff] [blame] | 677 | static __poll_t xs_poll_socket(struct sock_xprt *transport) |
| 678 | { |
Trond Myklebust | a73881c | 2019-02-26 06:33:02 -0500 | [diff] [blame] | 679 | return transport->sock->ops->poll(transport->file, transport->sock, |
| 680 | NULL); |
Trond Myklebust | 0ffe86f | 2019-01-30 14:51:26 -0500 | [diff] [blame] | 681 | } |
| 682 | |
| 683 | static bool xs_poll_socket_readable(struct sock_xprt *transport) |
| 684 | { |
| 685 | __poll_t events = xs_poll_socket(transport); |
| 686 | |
| 687 | return (events & (EPOLLIN | EPOLLRDNORM)) && !(events & EPOLLRDHUP); |
| 688 | } |
| 689 | |
| 690 | static void xs_poll_check_readable(struct sock_xprt *transport) |
| 691 | { |
| 692 | |
| 693 | clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state); |
| 694 | if (!xs_poll_socket_readable(transport)) |
| 695 | return; |
| 696 | if (!test_and_set_bit(XPRT_SOCK_DATA_READY, &transport->sock_state)) |
| 697 | queue_work(xprtiod_workqueue, &transport->recv_worker); |
| 698 | } |
| 699 | |
Trond Myklebust | c50b8ee | 2018-09-14 14:26:28 -0400 | [diff] [blame] | 700 | static void xs_stream_data_receive(struct sock_xprt *transport) |
| 701 | { |
| 702 | size_t read = 0; |
| 703 | ssize_t ret = 0; |
| 704 | |
| 705 | mutex_lock(&transport->recv_mutex); |
| 706 | if (transport->sock == NULL) |
| 707 | goto out; |
Trond Myklebust | c50b8ee | 2018-09-14 14:26:28 -0400 | [diff] [blame] | 708 | for (;;) { |
| 709 | ret = xs_read_stream(transport, MSG_DONTWAIT); |
Trond Myklebust | c443305 | 2018-12-04 07:52:11 -0500 | [diff] [blame] | 710 | if (ret < 0) |
Trond Myklebust | c50b8ee | 2018-09-14 14:26:28 -0400 | [diff] [blame] | 711 | break; |
| 712 | read += ret; |
| 713 | cond_resched(); |
| 714 | } |
Trond Myklebust | 5f52a9d | 2019-02-16 09:31:47 -0500 | [diff] [blame] | 715 | if (ret == -ESHUTDOWN) |
| 716 | kernel_sock_shutdown(transport->sock, SHUT_RDWR); |
| 717 | else |
| 718 | xs_poll_check_readable(transport); |
Trond Myklebust | c50b8ee | 2018-09-14 14:26:28 -0400 | [diff] [blame] | 719 | out: |
| 720 | mutex_unlock(&transport->recv_mutex); |
| 721 | trace_xs_stream_read_data(&transport->xprt, ret, read); |
| 722 | } |
| 723 | |
| 724 | static void xs_stream_data_receive_workfn(struct work_struct *work) |
| 725 | { |
| 726 | struct sock_xprt *transport = |
| 727 | container_of(work, struct sock_xprt, recv_worker); |
Trond Myklebust | a1231fd | 2019-02-18 10:02:29 -0500 | [diff] [blame] | 728 | unsigned int pflags = memalloc_nofs_save(); |
| 729 | |
Trond Myklebust | c50b8ee | 2018-09-14 14:26:28 -0400 | [diff] [blame] | 730 | xs_stream_data_receive(transport); |
Trond Myklebust | a1231fd | 2019-02-18 10:02:29 -0500 | [diff] [blame] | 731 | memalloc_nofs_restore(pflags); |
Trond Myklebust | c50b8ee | 2018-09-14 14:26:28 -0400 | [diff] [blame] | 732 | } |
| 733 | |
Trond Myklebust | 550aebf | 2018-09-14 14:32:45 -0400 | [diff] [blame] | 734 | static void |
| 735 | xs_stream_reset_connect(struct sock_xprt *transport) |
| 736 | { |
| 737 | transport->recv.offset = 0; |
| 738 | transport->recv.len = 0; |
| 739 | transport->recv.copied = 0; |
| 740 | transport->xmit.offset = 0; |
Trond Myklebust | ae05355 | 2019-02-20 14:56:20 -0500 | [diff] [blame] | 741 | } |
| 742 | |
| 743 | static void |
| 744 | xs_stream_start_connect(struct sock_xprt *transport) |
| 745 | { |
Trond Myklebust | 550aebf | 2018-09-14 14:32:45 -0400 | [diff] [blame] | 746 | transport->xprt.stat.connect_count++; |
| 747 | transport->xprt.stat.connect_start = jiffies; |
| 748 | } |
| 749 | |
Chuck Lever | b4b5cc8 | 2005-08-11 16:25:29 -0400 | [diff] [blame] | 750 | #define XS_SENDMSG_FLAGS (MSG_DONTWAIT | MSG_NOSIGNAL) |
| 751 | |
Trond Myklebust | e791f8e | 2019-02-19 12:39:40 -0500 | [diff] [blame] | 752 | static int xs_sendmsg(struct socket *sock, struct msghdr *msg, size_t seek) |
Chuck Lever | b4b5cc8 | 2005-08-11 16:25:29 -0400 | [diff] [blame] | 753 | { |
Trond Myklebust | e791f8e | 2019-02-19 12:39:40 -0500 | [diff] [blame] | 754 | if (seek) |
| 755 | iov_iter_advance(&msg->msg_iter, seek); |
| 756 | return sock_sendmsg(sock, msg); |
| 757 | } |
Chuck Lever | b4b5cc8 | 2005-08-11 16:25:29 -0400 | [diff] [blame] | 758 | |
Trond Myklebust | e791f8e | 2019-02-19 12:39:40 -0500 | [diff] [blame] | 759 | static int xs_send_kvec(struct socket *sock, struct msghdr *msg, struct kvec *vec, size_t seek) |
| 760 | { |
Trond Myklebust | e791f8e | 2019-02-19 12:39:40 -0500 | [diff] [blame] | 761 | iov_iter_kvec(&msg->msg_iter, WRITE, vec, 1, vec->iov_len); |
| 762 | return xs_sendmsg(sock, msg, seek); |
Chuck Lever | b4b5cc8 | 2005-08-11 16:25:29 -0400 | [diff] [blame] | 763 | } |
| 764 | |
Trond Myklebust | 0472e47 | 2019-02-19 13:00:13 -0500 | [diff] [blame] | 765 | static int xs_send_pagedata(struct socket *sock, struct msghdr *msg, struct xdr_buf *xdr, size_t base) |
Chuck Lever | b4b5cc8 | 2005-08-11 16:25:29 -0400 | [diff] [blame] | 766 | { |
Jason Baron | f279cd0 | 2014-09-24 18:08:00 +0000 | [diff] [blame] | 767 | int err; |
Chuck Lever | b4b5cc8 | 2005-08-11 16:25:29 -0400 | [diff] [blame] | 768 | |
Trond Myklebust | 0472e47 | 2019-02-19 13:00:13 -0500 | [diff] [blame] | 769 | err = xdr_alloc_bvec(xdr, GFP_KERNEL); |
| 770 | if (err < 0) |
| 771 | return err; |
Trond Myklebust | 24c5684 | 2006-10-17 15:06:22 -0400 | [diff] [blame] | 772 | |
Trond Myklebust | 0472e47 | 2019-02-19 13:00:13 -0500 | [diff] [blame] | 773 | iov_iter_bvec(&msg->msg_iter, WRITE, xdr->bvec, |
| 774 | xdr_buf_pagecount(xdr), |
| 775 | xdr->page_len + xdr->page_base); |
| 776 | return xs_sendmsg(sock, msg, base + xdr->page_base); |
Chuck Lever | b4b5cc8 | 2005-08-11 16:25:29 -0400 | [diff] [blame] | 777 | } |
| 778 | |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 779 | #define xs_record_marker_len() sizeof(rpc_fraghdr) |
| 780 | |
Chuck Lever | 067fb11 | 2019-02-11 11:24:37 -0500 | [diff] [blame] | 781 | /* Common case: |
| 782 | * - stream transport |
| 783 | * - sending from byte 0 of the message |
| 784 | * - the message is wholly contained in @xdr's head iovec |
| 785 | */ |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 786 | static int xs_send_rm_and_kvec(struct socket *sock, struct msghdr *msg, |
| 787 | rpc_fraghdr marker, struct kvec *vec, size_t base) |
Chuck Lever | 067fb11 | 2019-02-11 11:24:37 -0500 | [diff] [blame] | 788 | { |
Chuck Lever | 067fb11 | 2019-02-11 11:24:37 -0500 | [diff] [blame] | 789 | struct kvec iov[2] = { |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 790 | [0] = { |
Chuck Lever | 067fb11 | 2019-02-11 11:24:37 -0500 | [diff] [blame] | 791 | .iov_base = &marker, |
| 792 | .iov_len = sizeof(marker) |
| 793 | }, |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 794 | [1] = *vec, |
Chuck Lever | 067fb11 | 2019-02-11 11:24:37 -0500 | [diff] [blame] | 795 | }; |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 796 | size_t len = iov[0].iov_len + iov[1].iov_len; |
Chuck Lever | 067fb11 | 2019-02-11 11:24:37 -0500 | [diff] [blame] | 797 | |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 798 | iov_iter_kvec(&msg->msg_iter, WRITE, iov, 2, len); |
| 799 | return xs_sendmsg(sock, msg, base); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 800 | } |
| 801 | |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 802 | /** |
| 803 | * xs_sendpages - write pages directly to a socket |
| 804 | * @sock: socket to send on |
| 805 | * @addr: UDP only -- address of destination |
| 806 | * @addrlen: UDP only -- length of destination address |
| 807 | * @xdr: buffer containing this request |
| 808 | * @base: starting position in the buffer |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 809 | * @rm: stream record marker field |
Jason Baron | f279cd0 | 2014-09-24 18:08:00 +0000 | [diff] [blame] | 810 | * @sent_p: return the total number of bytes successfully queued for sending |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 811 | * |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 812 | */ |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 813 | static int xs_sendpages(struct socket *sock, struct sockaddr *addr, int addrlen, struct xdr_buf *xdr, unsigned int base, rpc_fraghdr rm, int *sent_p) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 814 | { |
Trond Myklebust | e791f8e | 2019-02-19 12:39:40 -0500 | [diff] [blame] | 815 | struct msghdr msg = { |
| 816 | .msg_name = addr, |
| 817 | .msg_namelen = addrlen, |
| 818 | .msg_flags = XS_SENDMSG_FLAGS | MSG_MORE, |
| 819 | }; |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 820 | unsigned int rmsize = rm ? sizeof(rm) : 0; |
| 821 | unsigned int remainder = rmsize + xdr->len - base; |
| 822 | unsigned int want; |
Jason Baron | f279cd0 | 2014-09-24 18:08:00 +0000 | [diff] [blame] | 823 | int err = 0; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 824 | |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 825 | if (unlikely(!sock)) |
Trond Myklebust | fba91af | 2009-03-11 14:06:41 -0400 | [diff] [blame] | 826 | return -ENOTSOCK; |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 827 | |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 828 | want = xdr->head[0].iov_len + rmsize; |
| 829 | if (base < want) { |
| 830 | unsigned int len = want - base; |
Trond Myklebust | 24c5684 | 2006-10-17 15:06:22 -0400 | [diff] [blame] | 831 | remainder -= len; |
Trond Myklebust | e791f8e | 2019-02-19 12:39:40 -0500 | [diff] [blame] | 832 | if (remainder == 0) |
| 833 | msg.msg_flags &= ~MSG_MORE; |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 834 | if (rmsize) |
| 835 | err = xs_send_rm_and_kvec(sock, &msg, rm, |
| 836 | &xdr->head[0], base); |
Chuck Lever | 067fb11 | 2019-02-11 11:24:37 -0500 | [diff] [blame] | 837 | else |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 838 | err = xs_send_kvec(sock, &msg, &xdr->head[0], base); |
Trond Myklebust | 24c5684 | 2006-10-17 15:06:22 -0400 | [diff] [blame] | 839 | if (remainder == 0 || err != len) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 840 | goto out; |
Jason Baron | f279cd0 | 2014-09-24 18:08:00 +0000 | [diff] [blame] | 841 | *sent_p += err; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 842 | base = 0; |
| 843 | } else |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 844 | base -= want; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 845 | |
Trond Myklebust | 24c5684 | 2006-10-17 15:06:22 -0400 | [diff] [blame] | 846 | if (base < xdr->page_len) { |
| 847 | unsigned int len = xdr->page_len - base; |
| 848 | remainder -= len; |
Trond Myklebust | 0472e47 | 2019-02-19 13:00:13 -0500 | [diff] [blame] | 849 | if (remainder == 0) |
| 850 | msg.msg_flags &= ~MSG_MORE; |
| 851 | err = xs_send_pagedata(sock, &msg, xdr, base); |
| 852 | if (remainder == 0 || err != len) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 853 | goto out; |
Trond Myklebust | 0472e47 | 2019-02-19 13:00:13 -0500 | [diff] [blame] | 854 | *sent_p += err; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 855 | base = 0; |
Trond Myklebust | 24c5684 | 2006-10-17 15:06:22 -0400 | [diff] [blame] | 856 | } else |
| 857 | base -= xdr->page_len; |
| 858 | |
| 859 | if (base >= xdr->tail[0].iov_len) |
Jason Baron | f279cd0 | 2014-09-24 18:08:00 +0000 | [diff] [blame] | 860 | return 0; |
Trond Myklebust | e791f8e | 2019-02-19 12:39:40 -0500 | [diff] [blame] | 861 | msg.msg_flags &= ~MSG_MORE; |
| 862 | err = xs_send_kvec(sock, &msg, &xdr->tail[0], base); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 863 | out: |
Jason Baron | f279cd0 | 2014-09-24 18:08:00 +0000 | [diff] [blame] | 864 | if (err > 0) { |
| 865 | *sent_p += err; |
| 866 | err = 0; |
| 867 | } |
| 868 | return err; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 869 | } |
| 870 | |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 871 | /** |
Trond Myklebust | c544577 | 2018-09-03 23:39:27 -0400 | [diff] [blame] | 872 | * xs_nospace - handle transmit was incomplete |
Trond Myklebust | 50f484e | 2018-08-30 13:27:29 -0400 | [diff] [blame] | 873 | * @req: pointer to RPC request |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 874 | * |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 875 | */ |
Trond Myklebust | c544577 | 2018-09-03 23:39:27 -0400 | [diff] [blame] | 876 | static int xs_nospace(struct rpc_rqst *req) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 877 | { |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 878 | struct rpc_xprt *xprt = req->rq_xprt; |
Chuck Lever | ee0ac0c | 2006-12-05 16:35:15 -0500 | [diff] [blame] | 879 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
Trond Myklebust | 06ea0bf | 2014-02-11 09:15:54 -0500 | [diff] [blame] | 880 | struct sock *sk = transport->inet; |
Trond Myklebust | 24ca9a8 | 2011-11-22 14:44:28 +0200 | [diff] [blame] | 881 | int ret = -EAGAIN; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 882 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 883 | dprintk("RPC: %5u xmit incomplete (%u left of %u)\n", |
Trond Myklebust | c544577 | 2018-09-03 23:39:27 -0400 | [diff] [blame] | 884 | req->rq_task->tk_pid, |
| 885 | req->rq_slen - transport->xmit.offset, |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 886 | req->rq_slen); |
| 887 | |
Trond Myklebust | b6ddf64 | 2008-04-17 18:52:19 -0400 | [diff] [blame] | 888 | /* Protect against races with write_space */ |
Trond Myklebust | b5e9241 | 2019-05-02 11:21:08 -0400 | [diff] [blame] | 889 | spin_lock(&xprt->transport_lock); |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 890 | |
Trond Myklebust | b6ddf64 | 2008-04-17 18:52:19 -0400 | [diff] [blame] | 891 | /* Don't race with disconnect */ |
| 892 | if (xprt_connected(xprt)) { |
Trond Myklebust | 13331a5 | 2016-01-06 08:57:06 -0500 | [diff] [blame] | 893 | /* wait for more buffer space */ |
| 894 | sk->sk_write_pending++; |
Trond Myklebust | c544577 | 2018-09-03 23:39:27 -0400 | [diff] [blame] | 895 | xprt_wait_for_buffer_space(xprt); |
Trond Myklebust | 13331a5 | 2016-01-06 08:57:06 -0500 | [diff] [blame] | 896 | } else |
Trond Myklebust | 5e3771c | 2009-03-11 14:38:01 -0400 | [diff] [blame] | 897 | ret = -ENOTCONN; |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 898 | |
Trond Myklebust | b5e9241 | 2019-05-02 11:21:08 -0400 | [diff] [blame] | 899 | spin_unlock(&xprt->transport_lock); |
Trond Myklebust | 06ea0bf | 2014-02-11 09:15:54 -0500 | [diff] [blame] | 900 | |
| 901 | /* Race breaker in case memory is freed before above code is called */ |
David Vrabel | d48f9ce | 2016-09-19 13:58:30 +0100 | [diff] [blame] | 902 | if (ret == -EAGAIN) { |
| 903 | struct socket_wq *wq; |
| 904 | |
| 905 | rcu_read_lock(); |
| 906 | wq = rcu_dereference(sk->sk_wq); |
| 907 | set_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags); |
| 908 | rcu_read_unlock(); |
| 909 | |
| 910 | sk->sk_write_space(sk); |
| 911 | } |
Trond Myklebust | 5e3771c | 2009-03-11 14:38:01 -0400 | [diff] [blame] | 912 | return ret; |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 913 | } |
| 914 | |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 915 | static void |
| 916 | xs_stream_prepare_request(struct rpc_rqst *req) |
| 917 | { |
Trond Myklebust | 7536908 | 2019-07-17 21:22:38 -0400 | [diff] [blame] | 918 | xdr_free_bvec(&req->rq_rcv_buf); |
Trond Myklebust | 12a3ad6 | 2019-03-02 10:14:02 -0500 | [diff] [blame] | 919 | req->rq_task->tk_status = xdr_alloc_bvec(&req->rq_rcv_buf, GFP_KERNEL); |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 920 | } |
| 921 | |
Chuck Lever | 61677ee | 2011-05-09 15:22:34 -0400 | [diff] [blame] | 922 | /* |
Trond Myklebust | 4cd34e7 | 2018-08-31 10:00:02 -0400 | [diff] [blame] | 923 | * Determine if the previous message in the stream was aborted before it |
| 924 | * could complete transmission. |
| 925 | */ |
| 926 | static bool |
| 927 | xs_send_request_was_aborted(struct sock_xprt *transport, struct rpc_rqst *req) |
| 928 | { |
| 929 | return transport->xmit.offset != 0 && req->rq_bytes_sent == 0; |
| 930 | } |
| 931 | |
| 932 | /* |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 933 | * Return the stream record marker field for a record of length < 2^31-1 |
Chuck Lever | 61677ee | 2011-05-09 15:22:34 -0400 | [diff] [blame] | 934 | */ |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 935 | static rpc_fraghdr |
| 936 | xs_stream_record_marker(struct xdr_buf *xdr) |
Chuck Lever | 61677ee | 2011-05-09 15:22:34 -0400 | [diff] [blame] | 937 | { |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 938 | if (!xdr->len) |
| 939 | return 0; |
| 940 | return cpu_to_be32(RPC_LAST_STREAM_FRAGMENT | (u32)xdr->len); |
Chuck Lever | 61677ee | 2011-05-09 15:22:34 -0400 | [diff] [blame] | 941 | } |
| 942 | |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 943 | /** |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 944 | * xs_local_send_request - write an RPC request to an AF_LOCAL socket |
Trond Myklebust | 50f484e | 2018-08-30 13:27:29 -0400 | [diff] [blame] | 945 | * @req: pointer to RPC request |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 946 | * |
| 947 | * Return values: |
| 948 | * 0: The request has been sent |
| 949 | * EAGAIN: The socket was blocked, please call again later to |
| 950 | * complete the request |
| 951 | * ENOTCONN: Caller needs to invoke connect logic then call again |
| 952 | * other: Some other error occured, the request was not sent |
| 953 | */ |
Trond Myklebust | adfa714 | 2018-09-03 23:58:59 -0400 | [diff] [blame] | 954 | static int xs_local_send_request(struct rpc_rqst *req) |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 955 | { |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 956 | struct rpc_xprt *xprt = req->rq_xprt; |
| 957 | struct sock_xprt *transport = |
| 958 | container_of(xprt, struct sock_xprt, xprt); |
| 959 | struct xdr_buf *xdr = &req->rq_snd_buf; |
Trond Myklebust | 7e3d362 | 2019-06-24 19:15:44 -0400 | [diff] [blame] | 960 | rpc_fraghdr rm = xs_stream_record_marker(xdr); |
| 961 | unsigned int msglen = rm ? req->rq_slen + sizeof(rm) : req->rq_slen; |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 962 | int status; |
Jason Baron | f279cd0 | 2014-09-24 18:08:00 +0000 | [diff] [blame] | 963 | int sent = 0; |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 964 | |
Trond Myklebust | 4cd34e7 | 2018-08-31 10:00:02 -0400 | [diff] [blame] | 965 | /* Close the stream if the previous transmission was incomplete */ |
| 966 | if (xs_send_request_was_aborted(transport, req)) { |
| 967 | xs_close(xprt); |
| 968 | return -ENOTCONN; |
| 969 | } |
| 970 | |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 971 | xs_pktdump("packet data:", |
| 972 | req->rq_svec->iov_base, req->rq_svec->iov_len); |
| 973 | |
Chuck Lever | 7821575 | 2018-03-05 15:13:07 -0500 | [diff] [blame] | 974 | req->rq_xtime = ktime_get(); |
Trond Myklebust | 6c7a64e | 2018-08-13 16:54:57 -0400 | [diff] [blame] | 975 | status = xs_sendpages(transport->sock, NULL, 0, xdr, |
Trond Myklebust | 7e3d362 | 2019-06-24 19:15:44 -0400 | [diff] [blame] | 976 | transport->xmit.offset, rm, &sent); |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 977 | dprintk("RPC: %s(%u) = %d\n", |
Trond Myklebust | 6c7a64e | 2018-08-13 16:54:57 -0400 | [diff] [blame] | 978 | __func__, xdr->len - transport->xmit.offset, status); |
NeilBrown | 743c69e | 2015-07-27 10:55:35 +1000 | [diff] [blame] | 979 | |
| 980 | if (status == -EAGAIN && sock_writeable(transport->inet)) |
| 981 | status = -ENOBUFS; |
| 982 | |
Jason Baron | f279cd0 | 2014-09-24 18:08:00 +0000 | [diff] [blame] | 983 | if (likely(sent > 0) || status == 0) { |
Trond Myklebust | 6c7a64e | 2018-08-13 16:54:57 -0400 | [diff] [blame] | 984 | transport->xmit.offset += sent; |
| 985 | req->rq_bytes_sent = transport->xmit.offset; |
Trond Myklebust | 7e3d362 | 2019-06-24 19:15:44 -0400 | [diff] [blame] | 986 | if (likely(req->rq_bytes_sent >= msglen)) { |
Trond Myklebust | 6c7a64e | 2018-08-13 16:54:57 -0400 | [diff] [blame] | 987 | req->rq_xmit_bytes_sent += transport->xmit.offset; |
Trond Myklebust | 6c7a64e | 2018-08-13 16:54:57 -0400 | [diff] [blame] | 988 | transport->xmit.offset = 0; |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 989 | return 0; |
| 990 | } |
| 991 | status = -EAGAIN; |
| 992 | } |
| 993 | |
| 994 | switch (status) { |
Trond Myklebust | 3601c4a | 2014-06-30 13:42:19 -0400 | [diff] [blame] | 995 | case -ENOBUFS: |
Trond Myklebust | b5872f0 | 2015-07-03 09:32:23 -0400 | [diff] [blame] | 996 | break; |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 997 | case -EAGAIN: |
Trond Myklebust | c544577 | 2018-09-03 23:39:27 -0400 | [diff] [blame] | 998 | status = xs_nospace(req); |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 999 | break; |
| 1000 | default: |
| 1001 | dprintk("RPC: sendmsg returned unrecognized error %d\n", |
| 1002 | -status); |
Gustavo A. R. Silva | e9d4763 | 2017-10-20 11:48:30 -0500 | [diff] [blame] | 1003 | /* fall through */ |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1004 | case -EPIPE: |
| 1005 | xs_close(xprt); |
| 1006 | status = -ENOTCONN; |
| 1007 | } |
| 1008 | |
| 1009 | return status; |
| 1010 | } |
| 1011 | |
| 1012 | /** |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1013 | * xs_udp_send_request - write an RPC request to a UDP socket |
Trond Myklebust | 50f484e | 2018-08-30 13:27:29 -0400 | [diff] [blame] | 1014 | * @req: pointer to RPC request |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1015 | * |
| 1016 | * Return values: |
| 1017 | * 0: The request has been sent |
| 1018 | * EAGAIN: The socket was blocked, please call again later to |
| 1019 | * complete the request |
| 1020 | * ENOTCONN: Caller needs to invoke connect logic then call again |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1021 | * other: Some other error occurred, the request was not sent |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1022 | */ |
Trond Myklebust | adfa714 | 2018-09-03 23:58:59 -0400 | [diff] [blame] | 1023 | static int xs_udp_send_request(struct rpc_rqst *req) |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1024 | { |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1025 | struct rpc_xprt *xprt = req->rq_xprt; |
Chuck Lever | ee0ac0c | 2006-12-05 16:35:15 -0500 | [diff] [blame] | 1026 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1027 | struct xdr_buf *xdr = &req->rq_snd_buf; |
Jason Baron | f279cd0 | 2014-09-24 18:08:00 +0000 | [diff] [blame] | 1028 | int sent = 0; |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1029 | int status; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1030 | |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1031 | xs_pktdump("packet data:", |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1032 | req->rq_svec->iov_base, |
| 1033 | req->rq_svec->iov_len); |
| 1034 | |
Trond Myklebust | 01d37c4 | 2009-03-11 14:09:39 -0400 | [diff] [blame] | 1035 | if (!xprt_bound(xprt)) |
| 1036 | return -ENOTCONN; |
Trond Myklebust | 75891f5 | 2018-09-03 17:37:36 -0400 | [diff] [blame] | 1037 | |
| 1038 | if (!xprt_request_get_cong(xprt, req)) |
| 1039 | return -EBADSLT; |
| 1040 | |
Chuck Lever | 7821575 | 2018-03-05 15:13:07 -0500 | [diff] [blame] | 1041 | req->rq_xtime = ktime_get(); |
Jason Baron | f279cd0 | 2014-09-24 18:08:00 +0000 | [diff] [blame] | 1042 | status = xs_sendpages(transport->sock, xs_addr(xprt), xprt->addrlen, |
Trond Myklebust | 06b5fc3 | 2019-02-25 08:39:26 -0500 | [diff] [blame] | 1043 | xdr, 0, 0, &sent); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1044 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1045 | dprintk("RPC: xs_udp_send_request(%u) = %d\n", |
Trond Myklebust | 6c7a64e | 2018-08-13 16:54:57 -0400 | [diff] [blame] | 1046 | xdr->len, status); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1047 | |
Jason Baron | 3dedbb5 | 2014-09-24 18:08:04 +0000 | [diff] [blame] | 1048 | /* firewall is blocking us, don't return -EAGAIN or we end up looping */ |
| 1049 | if (status == -EPERM) |
| 1050 | goto process_status; |
| 1051 | |
NeilBrown | 743c69e | 2015-07-27 10:55:35 +1000 | [diff] [blame] | 1052 | if (status == -EAGAIN && sock_writeable(transport->inet)) |
| 1053 | status = -ENOBUFS; |
| 1054 | |
Jason Baron | f279cd0 | 2014-09-24 18:08:00 +0000 | [diff] [blame] | 1055 | if (sent > 0 || status == 0) { |
| 1056 | req->rq_xmit_bytes_sent += sent; |
| 1057 | if (sent >= req->rq_slen) |
Trond Myklebust | 2199700 | 2007-10-01 11:43:37 -0400 | [diff] [blame] | 1058 | return 0; |
| 1059 | /* Still some bytes left; set up for a retry later. */ |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1060 | status = -EAGAIN; |
Trond Myklebust | 2199700 | 2007-10-01 11:43:37 -0400 | [diff] [blame] | 1061 | } |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1062 | |
Jason Baron | 3dedbb5 | 2014-09-24 18:08:04 +0000 | [diff] [blame] | 1063 | process_status: |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1064 | switch (status) { |
Trond Myklebust | fba91af | 2009-03-11 14:06:41 -0400 | [diff] [blame] | 1065 | case -ENOTSOCK: |
| 1066 | status = -ENOTCONN; |
| 1067 | /* Should we call xs_close() here? */ |
| 1068 | break; |
Trond Myklebust | b6ddf64 | 2008-04-17 18:52:19 -0400 | [diff] [blame] | 1069 | case -EAGAIN: |
Trond Myklebust | c544577 | 2018-09-03 23:39:27 -0400 | [diff] [blame] | 1070 | status = xs_nospace(req); |
Trond Myklebust | b6ddf64 | 2008-04-17 18:52:19 -0400 | [diff] [blame] | 1071 | break; |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1072 | case -ENETUNREACH: |
Trond Myklebust | 3601c4a | 2014-06-30 13:42:19 -0400 | [diff] [blame] | 1073 | case -ENOBUFS: |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1074 | case -EPIPE: |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1075 | case -ECONNREFUSED: |
Jason Baron | 3dedbb5 | 2014-09-24 18:08:04 +0000 | [diff] [blame] | 1076 | case -EPERM: |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1077 | /* When the server has died, an ICMP port unreachable message |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1078 | * prompts ECONNREFUSED. */ |
Trond Myklebust | 13331a5 | 2016-01-06 08:57:06 -0500 | [diff] [blame] | 1079 | break; |
| 1080 | default: |
| 1081 | dprintk("RPC: sendmsg returned unrecognized error %d\n", |
| 1082 | -status); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1083 | } |
Bian Naimeng | 5fe46e9 | 2010-03-08 14:49:01 +0800 | [diff] [blame] | 1084 | |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1085 | return status; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1086 | } |
| 1087 | |
Trond Myklebust | e06799f | 2007-11-05 15:44:12 -0500 | [diff] [blame] | 1088 | /** |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1089 | * xs_tcp_send_request - write an RPC request to a TCP socket |
Trond Myklebust | 50f484e | 2018-08-30 13:27:29 -0400 | [diff] [blame] | 1090 | * @req: pointer to RPC request |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1091 | * |
| 1092 | * Return values: |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1093 | * 0: The request has been sent |
| 1094 | * EAGAIN: The socket was blocked, please call again later to |
| 1095 | * complete the request |
| 1096 | * ENOTCONN: Caller needs to invoke connect logic then call again |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1097 | * other: Some other error occurred, the request was not sent |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1098 | * |
| 1099 | * XXX: In the case of soft timeouts, should we eventually give up |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1100 | * if sendmsg is not able to make progress? |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1101 | */ |
Trond Myklebust | adfa714 | 2018-09-03 23:58:59 -0400 | [diff] [blame] | 1102 | static int xs_tcp_send_request(struct rpc_rqst *req) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1103 | { |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1104 | struct rpc_xprt *xprt = req->rq_xprt; |
Chuck Lever | ee0ac0c | 2006-12-05 16:35:15 -0500 | [diff] [blame] | 1105 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1106 | struct xdr_buf *xdr = &req->rq_snd_buf; |
Trond Myklebust | 7e3d362 | 2019-06-24 19:15:44 -0400 | [diff] [blame] | 1107 | rpc_fraghdr rm = xs_stream_record_marker(xdr); |
| 1108 | unsigned int msglen = rm ? req->rq_slen + sizeof(rm) : req->rq_slen; |
Trond Myklebust | 9ffadfb | 2016-05-29 00:42:03 -0400 | [diff] [blame] | 1109 | bool vm_wait = false; |
Chuck Lever | b595bb1 | 2007-08-06 11:56:42 -0400 | [diff] [blame] | 1110 | int status; |
Jason Baron | f279cd0 | 2014-09-24 18:08:00 +0000 | [diff] [blame] | 1111 | int sent; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1112 | |
Trond Myklebust | 4cd34e7 | 2018-08-31 10:00:02 -0400 | [diff] [blame] | 1113 | /* Close the stream if the previous transmission was incomplete */ |
| 1114 | if (xs_send_request_was_aborted(transport, req)) { |
| 1115 | if (transport->sock != NULL) |
| 1116 | kernel_sock_shutdown(transport->sock, SHUT_RDWR); |
| 1117 | return -ENOTCONN; |
| 1118 | } |
| 1119 | |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1120 | xs_pktdump("packet data:", |
| 1121 | req->rq_svec->iov_base, |
| 1122 | req->rq_svec->iov_len); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1123 | |
Trond Myklebust | 7196dbb | 2017-02-08 11:17:54 -0500 | [diff] [blame] | 1124 | if (test_bit(XPRT_SOCK_UPD_TIMEOUT, &transport->sock_state)) |
| 1125 | xs_tcp_set_socket_timeouts(xprt, transport->sock); |
| 1126 | |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1127 | /* Continue transmitting the packet/record. We must be careful |
| 1128 | * to cope with writespace callbacks arriving _after_ we have |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1129 | * called sendmsg(). */ |
Chuck Lever | 7821575 | 2018-03-05 15:13:07 -0500 | [diff] [blame] | 1130 | req->rq_xtime = ktime_get(); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1131 | while (1) { |
Jason Baron | f279cd0 | 2014-09-24 18:08:00 +0000 | [diff] [blame] | 1132 | sent = 0; |
| 1133 | status = xs_sendpages(transport->sock, NULL, 0, xdr, |
Trond Myklebust | 7e3d362 | 2019-06-24 19:15:44 -0400 | [diff] [blame] | 1134 | transport->xmit.offset, rm, &sent); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1135 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1136 | dprintk("RPC: xs_tcp_send_request(%u) = %d\n", |
Trond Myklebust | 6c7a64e | 2018-08-13 16:54:57 -0400 | [diff] [blame] | 1137 | xdr->len - transport->xmit.offset, status); |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1138 | |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1139 | /* If we've sent the entire packet, immediately |
| 1140 | * reset the count of bytes sent. */ |
Trond Myklebust | 6c7a64e | 2018-08-13 16:54:57 -0400 | [diff] [blame] | 1141 | transport->xmit.offset += sent; |
| 1142 | req->rq_bytes_sent = transport->xmit.offset; |
Trond Myklebust | 7e3d362 | 2019-06-24 19:15:44 -0400 | [diff] [blame] | 1143 | if (likely(req->rq_bytes_sent >= msglen)) { |
Trond Myklebust | 6c7a64e | 2018-08-13 16:54:57 -0400 | [diff] [blame] | 1144 | req->rq_xmit_bytes_sent += transport->xmit.offset; |
Trond Myklebust | 6c7a64e | 2018-08-13 16:54:57 -0400 | [diff] [blame] | 1145 | transport->xmit.offset = 0; |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1146 | return 0; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1147 | } |
| 1148 | |
Trond Myklebust | 9ffadfb | 2016-05-29 00:42:03 -0400 | [diff] [blame] | 1149 | WARN_ON_ONCE(sent == 0 && status == 0); |
| 1150 | |
| 1151 | if (status == -EAGAIN ) { |
| 1152 | /* |
| 1153 | * Return EAGAIN if we're sure we're hitting the |
| 1154 | * socket send buffer limits. |
| 1155 | */ |
| 1156 | if (test_bit(SOCK_NOSPACE, &transport->sock->flags)) |
| 1157 | break; |
| 1158 | /* |
| 1159 | * Did we hit a memory allocation failure? |
| 1160 | */ |
| 1161 | if (sent == 0) { |
| 1162 | status = -ENOBUFS; |
| 1163 | if (vm_wait) |
| 1164 | break; |
| 1165 | /* Retry, knowing now that we're below the |
| 1166 | * socket send buffer limit |
| 1167 | */ |
| 1168 | vm_wait = true; |
| 1169 | } |
| 1170 | continue; |
| 1171 | } |
Trond Myklebust | f580dd0 | 2015-07-11 17:48:52 +0200 | [diff] [blame] | 1172 | if (status < 0) |
| 1173 | break; |
Trond Myklebust | 9ffadfb | 2016-05-29 00:42:03 -0400 | [diff] [blame] | 1174 | vm_wait = false; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1175 | } |
| 1176 | |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1177 | switch (status) { |
Trond Myklebust | fba91af | 2009-03-11 14:06:41 -0400 | [diff] [blame] | 1178 | case -ENOTSOCK: |
| 1179 | status = -ENOTCONN; |
| 1180 | /* Should we call xs_close() here? */ |
| 1181 | break; |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1182 | case -EAGAIN: |
Trond Myklebust | c544577 | 2018-09-03 23:39:27 -0400 | [diff] [blame] | 1183 | status = xs_nospace(req); |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1184 | break; |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1185 | case -ECONNRESET: |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 1186 | case -ECONNREFUSED: |
| 1187 | case -ENOTCONN: |
Trond Myklebust | 3913c78 | 2015-02-08 21:44:04 -0500 | [diff] [blame] | 1188 | case -EADDRINUSE: |
Trond Myklebust | b5872f0 | 2015-07-03 09:32:23 -0400 | [diff] [blame] | 1189 | case -ENOBUFS: |
Trond Myklebust | b9d2bb2 | 2012-10-23 11:40:02 -0400 | [diff] [blame] | 1190 | case -EPIPE: |
Trond Myklebust | 13331a5 | 2016-01-06 08:57:06 -0500 | [diff] [blame] | 1191 | break; |
| 1192 | default: |
| 1193 | dprintk("RPC: sendmsg returned unrecognized error %d\n", |
| 1194 | -status); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1195 | } |
Bian Naimeng | 5fe46e9 | 2010-03-08 14:49:01 +0800 | [diff] [blame] | 1196 | |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1197 | return status; |
| 1198 | } |
| 1199 | |
Trond Myklebust | 2a9e1cf | 2008-10-28 15:21:39 -0400 | [diff] [blame] | 1200 | static void xs_save_old_callbacks(struct sock_xprt *transport, struct sock *sk) |
| 1201 | { |
| 1202 | transport->old_data_ready = sk->sk_data_ready; |
| 1203 | transport->old_state_change = sk->sk_state_change; |
| 1204 | transport->old_write_space = sk->sk_write_space; |
Trond Myklebust | 2118071 | 2013-12-31 13:22:59 -0500 | [diff] [blame] | 1205 | transport->old_error_report = sk->sk_error_report; |
Trond Myklebust | 2a9e1cf | 2008-10-28 15:21:39 -0400 | [diff] [blame] | 1206 | } |
| 1207 | |
| 1208 | static void xs_restore_old_callbacks(struct sock_xprt *transport, struct sock *sk) |
| 1209 | { |
| 1210 | sk->sk_data_ready = transport->old_data_ready; |
| 1211 | sk->sk_state_change = transport->old_state_change; |
| 1212 | sk->sk_write_space = transport->old_write_space; |
Trond Myklebust | 2118071 | 2013-12-31 13:22:59 -0500 | [diff] [blame] | 1213 | sk->sk_error_report = transport->old_error_report; |
| 1214 | } |
| 1215 | |
Trond Myklebust | 42d42a5 | 2016-05-23 09:24:55 -0400 | [diff] [blame] | 1216 | static void xs_sock_reset_state_flags(struct rpc_xprt *xprt) |
| 1217 | { |
| 1218 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
| 1219 | |
| 1220 | clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state); |
Trond Myklebust | 4f8943f | 2019-05-01 16:28:29 -0400 | [diff] [blame] | 1221 | clear_bit(XPRT_SOCK_WAKE_ERROR, &transport->sock_state); |
| 1222 | clear_bit(XPRT_SOCK_WAKE_WRITE, &transport->sock_state); |
| 1223 | clear_bit(XPRT_SOCK_WAKE_DISCONNECT, &transport->sock_state); |
| 1224 | } |
| 1225 | |
| 1226 | static void xs_run_error_worker(struct sock_xprt *transport, unsigned int nr) |
| 1227 | { |
| 1228 | set_bit(nr, &transport->sock_state); |
| 1229 | queue_work(xprtiod_workqueue, &transport->error_worker); |
Trond Myklebust | 42d42a5 | 2016-05-23 09:24:55 -0400 | [diff] [blame] | 1230 | } |
| 1231 | |
Trond Myklebust | b70ae91 | 2015-02-09 09:41:32 -0500 | [diff] [blame] | 1232 | static void xs_sock_reset_connection_flags(struct rpc_xprt *xprt) |
| 1233 | { |
| 1234 | smp_mb__before_atomic(); |
| 1235 | clear_bit(XPRT_CLOSE_WAIT, &xprt->state); |
| 1236 | clear_bit(XPRT_CLOSING, &xprt->state); |
Trond Myklebust | 42d42a5 | 2016-05-23 09:24:55 -0400 | [diff] [blame] | 1237 | xs_sock_reset_state_flags(xprt); |
Trond Myklebust | b70ae91 | 2015-02-09 09:41:32 -0500 | [diff] [blame] | 1238 | smp_mb__after_atomic(); |
| 1239 | } |
| 1240 | |
Trond Myklebust | 2118071 | 2013-12-31 13:22:59 -0500 | [diff] [blame] | 1241 | /** |
| 1242 | * xs_error_report - callback to handle TCP socket state errors |
| 1243 | * @sk: socket |
| 1244 | * |
| 1245 | * Note: we don't call sock_error() since there may be a rpc_task |
| 1246 | * using the socket, and so we don't want to clear sk->sk_err. |
| 1247 | */ |
| 1248 | static void xs_error_report(struct sock *sk) |
| 1249 | { |
Trond Myklebust | 4f8943f | 2019-05-01 16:28:29 -0400 | [diff] [blame] | 1250 | struct sock_xprt *transport; |
Trond Myklebust | 2118071 | 2013-12-31 13:22:59 -0500 | [diff] [blame] | 1251 | struct rpc_xprt *xprt; |
| 1252 | int err; |
| 1253 | |
| 1254 | read_lock_bh(&sk->sk_callback_lock); |
| 1255 | if (!(xprt = xprt_from_sock(sk))) |
| 1256 | goto out; |
| 1257 | |
Trond Myklebust | 4f8943f | 2019-05-01 16:28:29 -0400 | [diff] [blame] | 1258 | transport = container_of(xprt, struct sock_xprt, xprt); |
Trond Myklebust | 2118071 | 2013-12-31 13:22:59 -0500 | [diff] [blame] | 1259 | err = -sk->sk_err; |
| 1260 | if (err == 0) |
| 1261 | goto out; |
| 1262 | dprintk("RPC: xs_error_report client %p, error=%d...\n", |
| 1263 | xprt, -err); |
Trond Myklebust | e8353c76 | 2013-12-31 13:39:22 -0500 | [diff] [blame] | 1264 | trace_rpc_socket_error(xprt, sk->sk_socket, err); |
Trond Myklebust | 4f8943f | 2019-05-01 16:28:29 -0400 | [diff] [blame] | 1265 | xs_run_error_worker(transport, XPRT_SOCK_WAKE_ERROR); |
Trond Myklebust | 2118071 | 2013-12-31 13:22:59 -0500 | [diff] [blame] | 1266 | out: |
| 1267 | read_unlock_bh(&sk->sk_callback_lock); |
Trond Myklebust | 2a9e1cf | 2008-10-28 15:21:39 -0400 | [diff] [blame] | 1268 | } |
| 1269 | |
Chuck Lever | fe315e76 | 2009-03-11 14:10:21 -0400 | [diff] [blame] | 1270 | static void xs_reset_transport(struct sock_xprt *transport) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1271 | { |
Chuck Lever | ee0ac0c | 2006-12-05 16:35:15 -0500 | [diff] [blame] | 1272 | struct socket *sock = transport->sock; |
| 1273 | struct sock *sk = transport->inet; |
Trond Myklebust | 6cc7e90 | 2015-02-08 18:35:25 -0500 | [diff] [blame] | 1274 | struct rpc_xprt *xprt = &transport->xprt; |
Trond Myklebust | a73881c | 2019-02-26 06:33:02 -0500 | [diff] [blame] | 1275 | struct file *filp = transport->file; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1276 | |
Chuck Lever | fe315e76 | 2009-03-11 14:10:21 -0400 | [diff] [blame] | 1277 | if (sk == NULL) |
| 1278 | return; |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1279 | |
Jeff Layton | 264d1df | 2015-06-03 16:14:27 -0400 | [diff] [blame] | 1280 | if (atomic_read(&transport->xprt.swapper)) |
| 1281 | sk_clear_memalloc(sk); |
| 1282 | |
Trond Myklebust | 0993920 | 2015-08-29 19:11:21 -0700 | [diff] [blame] | 1283 | kernel_sock_shutdown(sock, SHUT_RDWR); |
| 1284 | |
Trond Myklebust | edc1b01 | 2015-10-05 10:53:49 -0400 | [diff] [blame] | 1285 | mutex_lock(&transport->recv_mutex); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1286 | write_lock_bh(&sk->sk_callback_lock); |
Chuck Lever | ee0ac0c | 2006-12-05 16:35:15 -0500 | [diff] [blame] | 1287 | transport->inet = NULL; |
| 1288 | transport->sock = NULL; |
Trond Myklebust | a73881c | 2019-02-26 06:33:02 -0500 | [diff] [blame] | 1289 | transport->file = NULL; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1290 | |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1291 | sk->sk_user_data = NULL; |
Trond Myklebust | 2a9e1cf | 2008-10-28 15:21:39 -0400 | [diff] [blame] | 1292 | |
| 1293 | xs_restore_old_callbacks(transport, sk); |
Trond Myklebust | 0c78789 | 2015-08-29 13:36:30 -0700 | [diff] [blame] | 1294 | xprt_clear_connected(xprt); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1295 | write_unlock_bh(&sk->sk_callback_lock); |
Trond Myklebust | 6cc7e90 | 2015-02-08 18:35:25 -0500 | [diff] [blame] | 1296 | xs_sock_reset_connection_flags(xprt); |
Trond Myklebust | ae05355 | 2019-02-20 14:56:20 -0500 | [diff] [blame] | 1297 | /* Reset stream record info */ |
| 1298 | xs_stream_reset_connect(transport); |
Trond Myklebust | edc1b01 | 2015-10-05 10:53:49 -0400 | [diff] [blame] | 1299 | mutex_unlock(&transport->recv_mutex); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1300 | |
Trond Myklebust | 6cc7e90 | 2015-02-08 18:35:25 -0500 | [diff] [blame] | 1301 | trace_rpc_socket_close(xprt, sock); |
Trond Myklebust | a73881c | 2019-02-26 06:33:02 -0500 | [diff] [blame] | 1302 | fput(filp); |
Trond Myklebust | 0445f92 | 2018-12-17 13:34:59 -0500 | [diff] [blame] | 1303 | |
| 1304 | xprt_disconnect_done(xprt); |
Chuck Lever | fe315e76 | 2009-03-11 14:10:21 -0400 | [diff] [blame] | 1305 | } |
| 1306 | |
| 1307 | /** |
| 1308 | * xs_close - close a socket |
| 1309 | * @xprt: transport |
| 1310 | * |
| 1311 | * This is used when all requests are complete; ie, no DRC state remains |
| 1312 | * on the server we want to save. |
Trond Myklebust | f75e674 | 2009-04-21 17:18:20 -0400 | [diff] [blame] | 1313 | * |
| 1314 | * The caller _must_ be holding XPRT_LOCKED in order to avoid issues with |
| 1315 | * xs_reset_transport() zeroing the socket from underneath a writer. |
Chuck Lever | fe315e76 | 2009-03-11 14:10:21 -0400 | [diff] [blame] | 1316 | */ |
| 1317 | static void xs_close(struct rpc_xprt *xprt) |
| 1318 | { |
| 1319 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
| 1320 | |
| 1321 | dprintk("RPC: xs_close xprt %p\n", xprt); |
| 1322 | |
| 1323 | xs_reset_transport(transport); |
Neil Brown | 61d0a8e | 2009-09-23 14:36:37 -0400 | [diff] [blame] | 1324 | xprt->reestablish_timeout = 0; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1325 | } |
| 1326 | |
Chuck Lever | 4a06825 | 2015-05-11 14:02:25 -0400 | [diff] [blame] | 1327 | static void xs_inject_disconnect(struct rpc_xprt *xprt) |
| 1328 | { |
| 1329 | dprintk("RPC: injecting transport disconnect on xprt=%p\n", |
| 1330 | xprt); |
| 1331 | xprt_disconnect_done(xprt); |
| 1332 | } |
| 1333 | |
Kinglong Mee | 315f381 | 2014-03-24 11:07:22 +0800 | [diff] [blame] | 1334 | static void xs_xprt_free(struct rpc_xprt *xprt) |
| 1335 | { |
| 1336 | xs_free_peer_addresses(xprt); |
| 1337 | xprt_free(xprt); |
| 1338 | } |
| 1339 | |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1340 | /** |
| 1341 | * xs_destroy - prepare to shutdown a transport |
| 1342 | * @xprt: doomed transport |
| 1343 | * |
| 1344 | */ |
| 1345 | static void xs_destroy(struct rpc_xprt *xprt) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1346 | { |
Trond Myklebust | 03c78827 | 2015-09-17 10:42:27 -0400 | [diff] [blame] | 1347 | struct sock_xprt *transport = container_of(xprt, |
| 1348 | struct sock_xprt, xprt); |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1349 | dprintk("RPC: xs_destroy xprt %p\n", xprt); |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1350 | |
Trond Myklebust | 03c78827 | 2015-09-17 10:42:27 -0400 | [diff] [blame] | 1351 | cancel_delayed_work_sync(&transport->connect_worker); |
Trond Myklebust | a1311d8 | 2013-10-31 09:18:49 -0400 | [diff] [blame] | 1352 | xs_close(xprt); |
Trond Myklebust | edc1b01 | 2015-10-05 10:53:49 -0400 | [diff] [blame] | 1353 | cancel_work_sync(&transport->recv_worker); |
Trond Myklebust | b5e9241 | 2019-05-02 11:21:08 -0400 | [diff] [blame] | 1354 | cancel_work_sync(&transport->error_worker); |
Kinglong Mee | 315f381 | 2014-03-24 11:07:22 +0800 | [diff] [blame] | 1355 | xs_xprt_free(xprt); |
Trond Myklebust | a1311d8 | 2013-10-31 09:18:49 -0400 | [diff] [blame] | 1356 | module_put(THIS_MODULE); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1357 | } |
| 1358 | |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1359 | /** |
Trond Myklebust | f9b2ee7 | 2015-10-06 16:26:05 -0400 | [diff] [blame] | 1360 | * xs_udp_data_read_skb - receive callback for UDP sockets |
| 1361 | * @xprt: transport |
| 1362 | * @sk: socket |
| 1363 | * @skb: skbuff |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1364 | * |
| 1365 | */ |
Trond Myklebust | f9b2ee7 | 2015-10-06 16:26:05 -0400 | [diff] [blame] | 1366 | static void xs_udp_data_read_skb(struct rpc_xprt *xprt, |
| 1367 | struct sock *sk, |
| 1368 | struct sk_buff *skb) |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1369 | { |
| 1370 | struct rpc_task *task; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1371 | struct rpc_rqst *rovr; |
Trond Myklebust | f9b2ee7 | 2015-10-06 16:26:05 -0400 | [diff] [blame] | 1372 | int repsize, copied; |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 1373 | u32 _xid; |
| 1374 | __be32 *xp; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1375 | |
Willem de Bruijn | 1da8c681 | 2016-04-07 11:44:58 -0400 | [diff] [blame] | 1376 | repsize = skb->len; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1377 | if (repsize < 4) { |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1378 | dprintk("RPC: impossible RPC reply size %d!\n", repsize); |
Trond Myklebust | f9b2ee7 | 2015-10-06 16:26:05 -0400 | [diff] [blame] | 1379 | return; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1380 | } |
| 1381 | |
| 1382 | /* Copy the XID from the skb... */ |
Willem de Bruijn | 1da8c681 | 2016-04-07 11:44:58 -0400 | [diff] [blame] | 1383 | xp = skb_header_pointer(skb, 0, sizeof(_xid), &_xid); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1384 | if (xp == NULL) |
Trond Myklebust | f9b2ee7 | 2015-10-06 16:26:05 -0400 | [diff] [blame] | 1385 | return; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1386 | |
| 1387 | /* Look up and lock the request corresponding to the given XID */ |
Trond Myklebust | 75c8415 | 2018-08-31 10:21:00 -0400 | [diff] [blame] | 1388 | spin_lock(&xprt->queue_lock); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1389 | rovr = xprt_lookup_rqst(xprt, *xp); |
| 1390 | if (!rovr) |
| 1391 | goto out_unlock; |
Trond Myklebust | 729749b | 2017-08-13 10:03:59 -0400 | [diff] [blame] | 1392 | xprt_pin_rqst(rovr); |
Chuck Lever | ecd465e | 2018-03-05 15:12:57 -0500 | [diff] [blame] | 1393 | xprt_update_rtt(rovr->rq_task); |
Trond Myklebust | 75c8415 | 2018-08-31 10:21:00 -0400 | [diff] [blame] | 1394 | spin_unlock(&xprt->queue_lock); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1395 | task = rovr->rq_task; |
| 1396 | |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1397 | if ((copied = rovr->rq_private_buf.buflen) > repsize) |
| 1398 | copied = repsize; |
| 1399 | |
| 1400 | /* Suck it into the iovec, verify checksum if not done by hw. */ |
Herbert Xu | 1781f7f | 2007-12-11 11:30:32 -0800 | [diff] [blame] | 1401 | if (csum_partial_copy_to_xdr(&rovr->rq_private_buf, skb)) { |
Trond Myklebust | 75c8415 | 2018-08-31 10:21:00 -0400 | [diff] [blame] | 1402 | spin_lock(&xprt->queue_lock); |
Trond Myklebust | 0afa6b4 | 2018-02-09 09:39:42 -0500 | [diff] [blame] | 1403 | __UDPX_INC_STATS(sk, UDP_MIB_INERRORS); |
Trond Myklebust | 729749b | 2017-08-13 10:03:59 -0400 | [diff] [blame] | 1404 | goto out_unpin; |
Herbert Xu | 1781f7f | 2007-12-11 11:30:32 -0800 | [diff] [blame] | 1405 | } |
| 1406 | |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1407 | |
Trond Myklebust | b5e9241 | 2019-05-02 11:21:08 -0400 | [diff] [blame] | 1408 | spin_lock(&xprt->transport_lock); |
Trond Myklebust | 6a24dfb | 2013-01-08 09:48:15 -0500 | [diff] [blame] | 1409 | xprt_adjust_cwnd(xprt, task, copied); |
Trond Myklebust | b5e9241 | 2019-05-02 11:21:08 -0400 | [diff] [blame] | 1410 | spin_unlock(&xprt->transport_lock); |
Trond Myklebust | 75c8415 | 2018-08-31 10:21:00 -0400 | [diff] [blame] | 1411 | spin_lock(&xprt->queue_lock); |
Chuck Lever | 1570c1e | 2005-08-25 16:25:52 -0700 | [diff] [blame] | 1412 | xprt_complete_rqst(task, copied); |
Trond Myklebust | 0afa6b4 | 2018-02-09 09:39:42 -0500 | [diff] [blame] | 1413 | __UDPX_INC_STATS(sk, UDP_MIB_INDATAGRAMS); |
Trond Myklebust | 729749b | 2017-08-13 10:03:59 -0400 | [diff] [blame] | 1414 | out_unpin: |
| 1415 | xprt_unpin_rqst(rovr); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1416 | out_unlock: |
Trond Myklebust | 75c8415 | 2018-08-31 10:21:00 -0400 | [diff] [blame] | 1417 | spin_unlock(&xprt->queue_lock); |
Trond Myklebust | f9b2ee7 | 2015-10-06 16:26:05 -0400 | [diff] [blame] | 1418 | } |
| 1419 | |
| 1420 | static void xs_udp_data_receive(struct sock_xprt *transport) |
| 1421 | { |
| 1422 | struct sk_buff *skb; |
| 1423 | struct sock *sk; |
| 1424 | int err; |
| 1425 | |
| 1426 | mutex_lock(&transport->recv_mutex); |
| 1427 | sk = transport->inet; |
| 1428 | if (sk == NULL) |
| 1429 | goto out; |
| 1430 | for (;;) { |
Paolo Abeni | 7c13f97 | 2016-11-04 11:28:59 +0100 | [diff] [blame] | 1431 | skb = skb_recv_udp(sk, 0, 1, &err); |
Trond Myklebust | 4f54614 | 2018-09-14 17:45:23 -0400 | [diff] [blame] | 1432 | if (skb == NULL) |
Trond Myklebust | f9b2ee7 | 2015-10-06 16:26:05 -0400 | [diff] [blame] | 1433 | break; |
Trond Myklebust | 4f54614 | 2018-09-14 17:45:23 -0400 | [diff] [blame] | 1434 | xs_udp_data_read_skb(&transport->xprt, sk, skb); |
| 1435 | consume_skb(skb); |
| 1436 | cond_resched(); |
Trond Myklebust | f9b2ee7 | 2015-10-06 16:26:05 -0400 | [diff] [blame] | 1437 | } |
Trond Myklebust | 0ffe86f | 2019-01-30 14:51:26 -0500 | [diff] [blame] | 1438 | xs_poll_check_readable(transport); |
Trond Myklebust | f9b2ee7 | 2015-10-06 16:26:05 -0400 | [diff] [blame] | 1439 | out: |
| 1440 | mutex_unlock(&transport->recv_mutex); |
| 1441 | } |
| 1442 | |
| 1443 | static void xs_udp_data_receive_workfn(struct work_struct *work) |
| 1444 | { |
| 1445 | struct sock_xprt *transport = |
| 1446 | container_of(work, struct sock_xprt, recv_worker); |
Trond Myklebust | a1231fd | 2019-02-18 10:02:29 -0500 | [diff] [blame] | 1447 | unsigned int pflags = memalloc_nofs_save(); |
| 1448 | |
Trond Myklebust | f9b2ee7 | 2015-10-06 16:26:05 -0400 | [diff] [blame] | 1449 | xs_udp_data_receive(transport); |
Trond Myklebust | a1231fd | 2019-02-18 10:02:29 -0500 | [diff] [blame] | 1450 | memalloc_nofs_restore(pflags); |
Trond Myklebust | f9b2ee7 | 2015-10-06 16:26:05 -0400 | [diff] [blame] | 1451 | } |
| 1452 | |
| 1453 | /** |
| 1454 | * xs_data_ready - "data ready" callback for UDP sockets |
| 1455 | * @sk: socket with data to read |
| 1456 | * |
| 1457 | */ |
| 1458 | static void xs_data_ready(struct sock *sk) |
| 1459 | { |
| 1460 | struct rpc_xprt *xprt; |
| 1461 | |
| 1462 | read_lock_bh(&sk->sk_callback_lock); |
| 1463 | dprintk("RPC: xs_data_ready...\n"); |
| 1464 | xprt = xprt_from_sock(sk); |
| 1465 | if (xprt != NULL) { |
| 1466 | struct sock_xprt *transport = container_of(xprt, |
| 1467 | struct sock_xprt, xprt); |
Trond Myklebust | 5157b95 | 2016-05-29 10:13:24 -0400 | [diff] [blame] | 1468 | transport->old_data_ready(sk); |
| 1469 | /* Any data means we had a useful conversation, so |
| 1470 | * then we don't need to delay the next reconnect |
| 1471 | */ |
| 1472 | if (xprt->reestablish_timeout) |
| 1473 | xprt->reestablish_timeout = 0; |
Trond Myklebust | 42d42a5 | 2016-05-23 09:24:55 -0400 | [diff] [blame] | 1474 | if (!test_and_set_bit(XPRT_SOCK_DATA_READY, &transport->sock_state)) |
Trond Myklebust | 40a5f1b | 2016-05-27 10:39:50 -0400 | [diff] [blame] | 1475 | queue_work(xprtiod_workqueue, &transport->recv_worker); |
Trond Myklebust | f9b2ee7 | 2015-10-06 16:26:05 -0400 | [diff] [blame] | 1476 | } |
Eric Dumazet | f064af1 | 2010-09-22 12:43:39 +0000 | [diff] [blame] | 1477 | read_unlock_bh(&sk->sk_callback_lock); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1478 | } |
| 1479 | |
Trond Myklebust | a519fc7 | 2012-09-12 16:49:15 -0400 | [diff] [blame] | 1480 | /* |
| 1481 | * Helper function to force a TCP close if the server is sending |
| 1482 | * junk and/or it has put us in CLOSE_WAIT |
| 1483 | */ |
| 1484 | static void xs_tcp_force_close(struct rpc_xprt *xprt) |
| 1485 | { |
Trond Myklebust | a519fc7 | 2012-09-12 16:49:15 -0400 | [diff] [blame] | 1486 | xprt_force_disconnect(xprt); |
| 1487 | } |
| 1488 | |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 1489 | #if defined(CONFIG_SUNRPC_BACKCHANNEL) |
Chuck Lever | 6b26cc8 | 2016-05-02 14:40:40 -0400 | [diff] [blame] | 1490 | static size_t xs_tcp_bc_maxpayload(struct rpc_xprt *xprt) |
| 1491 | { |
| 1492 | return PAGE_SIZE; |
| 1493 | } |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 1494 | #endif /* CONFIG_SUNRPC_BACKCHANNEL */ |
Ricardo Labiaga | 44b98ef | 2009-04-01 09:23:02 -0400 | [diff] [blame] | 1495 | |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1496 | /** |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1497 | * xs_tcp_state_change - callback to handle TCP socket state changes |
| 1498 | * @sk: socket whose state has changed |
| 1499 | * |
| 1500 | */ |
| 1501 | static void xs_tcp_state_change(struct sock *sk) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1502 | { |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1503 | struct rpc_xprt *xprt; |
Trond Myklebust | 0fdea1e | 2015-09-16 23:43:17 -0400 | [diff] [blame] | 1504 | struct sock_xprt *transport; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1505 | |
Eric Dumazet | f064af1 | 2010-09-22 12:43:39 +0000 | [diff] [blame] | 1506 | read_lock_bh(&sk->sk_callback_lock); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1507 | if (!(xprt = xprt_from_sock(sk))) |
| 1508 | goto out; |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1509 | dprintk("RPC: xs_tcp_state_change client %p...\n", xprt); |
Andy Chittenden | 669502f | 2010-08-10 10:19:53 -0400 | [diff] [blame] | 1510 | dprintk("RPC: state %x conn %d dead %d zapped %d sk_shutdown %d\n", |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1511 | sk->sk_state, xprt_connected(xprt), |
| 1512 | sock_flag(sk, SOCK_DEAD), |
Andy Chittenden | 669502f | 2010-08-10 10:19:53 -0400 | [diff] [blame] | 1513 | sock_flag(sk, SOCK_ZAPPED), |
| 1514 | sk->sk_shutdown); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1515 | |
Trond Myklebust | 0fdea1e | 2015-09-16 23:43:17 -0400 | [diff] [blame] | 1516 | transport = container_of(xprt, struct sock_xprt, xprt); |
Trond Myklebust | 40b5ea0 | 2013-09-04 12:16:23 -0400 | [diff] [blame] | 1517 | trace_rpc_socket_state_change(xprt, sk->sk_socket); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1518 | switch (sk->sk_state) { |
| 1519 | case TCP_ESTABLISHED: |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1520 | if (!xprt_test_and_set_connected(xprt)) { |
Trond Myklebust | 8b71798 | 2013-09-26 10:18:04 -0400 | [diff] [blame] | 1521 | xprt->connect_cookie++; |
Trond Myklebust | 0fdea1e | 2015-09-16 23:43:17 -0400 | [diff] [blame] | 1522 | clear_bit(XPRT_SOCK_CONNECTING, &transport->sock_state); |
| 1523 | xprt_clear_connecting(xprt); |
Chuck Lever | 5197113 | 2006-12-05 16:35:19 -0500 | [diff] [blame] | 1524 | |
Chuck Lever | 3968a8a | 2018-10-01 14:25:36 -0400 | [diff] [blame] | 1525 | xprt->stat.connect_count++; |
| 1526 | xprt->stat.connect_time += (long)jiffies - |
| 1527 | xprt->stat.connect_start; |
Trond Myklebust | 4f8943f | 2019-05-01 16:28:29 -0400 | [diff] [blame] | 1528 | xs_run_error_worker(transport, XPRT_SOCK_WAKE_PENDING); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1529 | } |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1530 | break; |
Trond Myklebust | 3b948ae | 2007-11-05 17:42:39 -0500 | [diff] [blame] | 1531 | case TCP_FIN_WAIT1: |
| 1532 | /* The client initiated a shutdown of the socket */ |
Trond Myklebust | 7c1d71c | 2008-04-17 16:52:57 -0400 | [diff] [blame] | 1533 | xprt->connect_cookie++; |
Trond Myklebust | 663b885 | 2008-01-01 18:42:12 -0500 | [diff] [blame] | 1534 | xprt->reestablish_timeout = 0; |
Trond Myklebust | 3b948ae | 2007-11-05 17:42:39 -0500 | [diff] [blame] | 1535 | set_bit(XPRT_CLOSING, &xprt->state); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 1536 | smp_mb__before_atomic(); |
Trond Myklebust | 3b948ae | 2007-11-05 17:42:39 -0500 | [diff] [blame] | 1537 | clear_bit(XPRT_CONNECTED, &xprt->state); |
Trond Myklebust | ef80367 | 2007-12-31 16:19:17 -0500 | [diff] [blame] | 1538 | clear_bit(XPRT_CLOSE_WAIT, &xprt->state); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 1539 | smp_mb__after_atomic(); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1540 | break; |
Trond Myklebust | 632e3bd | 2006-01-03 09:55:55 +0100 | [diff] [blame] | 1541 | case TCP_CLOSE_WAIT: |
Trond Myklebust | 3b948ae | 2007-11-05 17:42:39 -0500 | [diff] [blame] | 1542 | /* The server initiated a shutdown of the socket */ |
Trond Myklebust | 7c1d71c | 2008-04-17 16:52:57 -0400 | [diff] [blame] | 1543 | xprt->connect_cookie++; |
Trond Myklebust | d0bea45 | 2012-10-23 11:35:47 -0400 | [diff] [blame] | 1544 | clear_bit(XPRT_CONNECTED, &xprt->state); |
Trond Myklebust | 4f8943f | 2019-05-01 16:28:29 -0400 | [diff] [blame] | 1545 | xs_run_error_worker(transport, XPRT_SOCK_WAKE_DISCONNECT); |
Gustavo A. R. Silva | e9d4763 | 2017-10-20 11:48:30 -0500 | [diff] [blame] | 1546 | /* fall through */ |
Trond Myklebust | 663b885 | 2008-01-01 18:42:12 -0500 | [diff] [blame] | 1547 | case TCP_CLOSING: |
| 1548 | /* |
| 1549 | * If the server closed down the connection, make sure that |
| 1550 | * we back off before reconnecting |
| 1551 | */ |
| 1552 | if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO) |
| 1553 | xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO; |
Trond Myklebust | 3b948ae | 2007-11-05 17:42:39 -0500 | [diff] [blame] | 1554 | break; |
| 1555 | case TCP_LAST_ACK: |
Trond Myklebust | 670f945 | 2009-03-11 14:37:58 -0400 | [diff] [blame] | 1556 | set_bit(XPRT_CLOSING, &xprt->state); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 1557 | smp_mb__before_atomic(); |
Trond Myklebust | 3b948ae | 2007-11-05 17:42:39 -0500 | [diff] [blame] | 1558 | clear_bit(XPRT_CONNECTED, &xprt->state); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 1559 | smp_mb__after_atomic(); |
Trond Myklebust | 3b948ae | 2007-11-05 17:42:39 -0500 | [diff] [blame] | 1560 | break; |
| 1561 | case TCP_CLOSE: |
Trond Myklebust | 0fdea1e | 2015-09-16 23:43:17 -0400 | [diff] [blame] | 1562 | if (test_and_clear_bit(XPRT_SOCK_CONNECTING, |
| 1563 | &transport->sock_state)) |
| 1564 | xprt_clear_connecting(xprt); |
Trond Myklebust | 9b30889 | 2018-02-05 10:20:06 -0500 | [diff] [blame] | 1565 | clear_bit(XPRT_CLOSING, &xprt->state); |
Trond Myklebust | 9b30889 | 2018-02-05 10:20:06 -0500 | [diff] [blame] | 1566 | /* Trigger the socket release */ |
Trond Myklebust | 4f8943f | 2019-05-01 16:28:29 -0400 | [diff] [blame] | 1567 | xs_run_error_worker(transport, XPRT_SOCK_WAKE_DISCONNECT); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1568 | } |
| 1569 | out: |
Eric Dumazet | f064af1 | 2010-09-22 12:43:39 +0000 | [diff] [blame] | 1570 | read_unlock_bh(&sk->sk_callback_lock); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1571 | } |
| 1572 | |
Ilpo Järvinen | 1f0fa15 | 2009-02-06 23:48:33 -0800 | [diff] [blame] | 1573 | static void xs_write_space(struct sock *sk) |
| 1574 | { |
Trond Myklebust | 13331a5 | 2016-01-06 08:57:06 -0500 | [diff] [blame] | 1575 | struct socket_wq *wq; |
Trond Myklebust | 4f8943f | 2019-05-01 16:28:29 -0400 | [diff] [blame] | 1576 | struct sock_xprt *transport; |
Ilpo Järvinen | 1f0fa15 | 2009-02-06 23:48:33 -0800 | [diff] [blame] | 1577 | struct rpc_xprt *xprt; |
| 1578 | |
Trond Myklebust | 13331a5 | 2016-01-06 08:57:06 -0500 | [diff] [blame] | 1579 | if (!sk->sk_socket) |
Ilpo Järvinen | 1f0fa15 | 2009-02-06 23:48:33 -0800 | [diff] [blame] | 1580 | return; |
Trond Myklebust | 13331a5 | 2016-01-06 08:57:06 -0500 | [diff] [blame] | 1581 | clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags); |
Ilpo Järvinen | 1f0fa15 | 2009-02-06 23:48:33 -0800 | [diff] [blame] | 1582 | |
| 1583 | if (unlikely(!(xprt = xprt_from_sock(sk)))) |
| 1584 | return; |
Trond Myklebust | 4f8943f | 2019-05-01 16:28:29 -0400 | [diff] [blame] | 1585 | transport = container_of(xprt, struct sock_xprt, xprt); |
Trond Myklebust | 13331a5 | 2016-01-06 08:57:06 -0500 | [diff] [blame] | 1586 | rcu_read_lock(); |
| 1587 | wq = rcu_dereference(sk->sk_wq); |
| 1588 | if (!wq || test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags) == 0) |
| 1589 | goto out; |
Ilpo Järvinen | 1f0fa15 | 2009-02-06 23:48:33 -0800 | [diff] [blame] | 1590 | |
Trond Myklebust | 4f8943f | 2019-05-01 16:28:29 -0400 | [diff] [blame] | 1591 | xs_run_error_worker(transport, XPRT_SOCK_WAKE_WRITE); |
| 1592 | sk->sk_write_pending--; |
Trond Myklebust | 13331a5 | 2016-01-06 08:57:06 -0500 | [diff] [blame] | 1593 | out: |
| 1594 | rcu_read_unlock(); |
Ilpo Järvinen | 1f0fa15 | 2009-02-06 23:48:33 -0800 | [diff] [blame] | 1595 | } |
| 1596 | |
Trond Myklebust | 2a9e1cf | 2008-10-28 15:21:39 -0400 | [diff] [blame] | 1597 | /** |
Chuck Lever | c7b2cae | 2005-08-11 16:25:50 -0400 | [diff] [blame] | 1598 | * xs_udp_write_space - callback invoked when socket buffer space |
| 1599 | * becomes available |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 1600 | * @sk: socket whose state has changed |
| 1601 | * |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1602 | * Called when more output buffer space is available for this socket. |
| 1603 | * We try not to wake our writers until they can make "significant" |
Chuck Lever | c7b2cae | 2005-08-11 16:25:50 -0400 | [diff] [blame] | 1604 | * progress, otherwise we'll waste resources thrashing kernel_sendmsg |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1605 | * with a bunch of small requests. |
| 1606 | */ |
Chuck Lever | c7b2cae | 2005-08-11 16:25:50 -0400 | [diff] [blame] | 1607 | static void xs_udp_write_space(struct sock *sk) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1608 | { |
Eric Dumazet | f064af1 | 2010-09-22 12:43:39 +0000 | [diff] [blame] | 1609 | read_lock_bh(&sk->sk_callback_lock); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1610 | |
Chuck Lever | c7b2cae | 2005-08-11 16:25:50 -0400 | [diff] [blame] | 1611 | /* from net/core/sock.c:sock_def_write_space */ |
Ilpo Järvinen | 1f0fa15 | 2009-02-06 23:48:33 -0800 | [diff] [blame] | 1612 | if (sock_writeable(sk)) |
| 1613 | xs_write_space(sk); |
Chuck Lever | c7b2cae | 2005-08-11 16:25:50 -0400 | [diff] [blame] | 1614 | |
Eric Dumazet | f064af1 | 2010-09-22 12:43:39 +0000 | [diff] [blame] | 1615 | read_unlock_bh(&sk->sk_callback_lock); |
Chuck Lever | c7b2cae | 2005-08-11 16:25:50 -0400 | [diff] [blame] | 1616 | } |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1617 | |
Chuck Lever | c7b2cae | 2005-08-11 16:25:50 -0400 | [diff] [blame] | 1618 | /** |
| 1619 | * xs_tcp_write_space - callback invoked when socket buffer space |
| 1620 | * becomes available |
| 1621 | * @sk: socket whose state has changed |
| 1622 | * |
| 1623 | * Called when more output buffer space is available for this socket. |
| 1624 | * We try not to wake our writers until they can make "significant" |
| 1625 | * progress, otherwise we'll waste resources thrashing kernel_sendmsg |
| 1626 | * with a bunch of small requests. |
| 1627 | */ |
| 1628 | static void xs_tcp_write_space(struct sock *sk) |
| 1629 | { |
Eric Dumazet | f064af1 | 2010-09-22 12:43:39 +0000 | [diff] [blame] | 1630 | read_lock_bh(&sk->sk_callback_lock); |
Chuck Lever | c7b2cae | 2005-08-11 16:25:50 -0400 | [diff] [blame] | 1631 | |
| 1632 | /* from net/core/stream.c:sk_stream_write_space */ |
Eric Dumazet | 64dc613 | 2013-07-22 20:26:31 -0700 | [diff] [blame] | 1633 | if (sk_stream_is_writeable(sk)) |
Ilpo Järvinen | 1f0fa15 | 2009-02-06 23:48:33 -0800 | [diff] [blame] | 1634 | xs_write_space(sk); |
Chuck Lever | c7b2cae | 2005-08-11 16:25:50 -0400 | [diff] [blame] | 1635 | |
Eric Dumazet | f064af1 | 2010-09-22 12:43:39 +0000 | [diff] [blame] | 1636 | read_unlock_bh(&sk->sk_callback_lock); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1637 | } |
| 1638 | |
Chuck Lever | 470056c | 2005-08-25 16:25:56 -0700 | [diff] [blame] | 1639 | static void xs_udp_do_set_buffer_size(struct rpc_xprt *xprt) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1640 | { |
Chuck Lever | ee0ac0c | 2006-12-05 16:35:15 -0500 | [diff] [blame] | 1641 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
| 1642 | struct sock *sk = transport->inet; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1643 | |
Chuck Lever | 7c6e066 | 2006-12-05 16:35:30 -0500 | [diff] [blame] | 1644 | if (transport->rcvsize) { |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1645 | sk->sk_userlocks |= SOCK_RCVBUF_LOCK; |
Chuck Lever | 7c6e066 | 2006-12-05 16:35:30 -0500 | [diff] [blame] | 1646 | sk->sk_rcvbuf = transport->rcvsize * xprt->max_reqs * 2; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1647 | } |
Chuck Lever | 7c6e066 | 2006-12-05 16:35:30 -0500 | [diff] [blame] | 1648 | if (transport->sndsize) { |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1649 | sk->sk_userlocks |= SOCK_SNDBUF_LOCK; |
Chuck Lever | 7c6e066 | 2006-12-05 16:35:30 -0500 | [diff] [blame] | 1650 | sk->sk_sndbuf = transport->sndsize * xprt->max_reqs * 2; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1651 | sk->sk_write_space(sk); |
| 1652 | } |
| 1653 | } |
| 1654 | |
Chuck Lever | 43118c2 | 2005-08-25 16:25:49 -0700 | [diff] [blame] | 1655 | /** |
Chuck Lever | 470056c | 2005-08-25 16:25:56 -0700 | [diff] [blame] | 1656 | * xs_udp_set_buffer_size - set send and receive limits |
Chuck Lever | 43118c2 | 2005-08-25 16:25:49 -0700 | [diff] [blame] | 1657 | * @xprt: generic transport |
Chuck Lever | 470056c | 2005-08-25 16:25:56 -0700 | [diff] [blame] | 1658 | * @sndsize: requested size of send buffer, in bytes |
| 1659 | * @rcvsize: requested size of receive buffer, in bytes |
Chuck Lever | 43118c2 | 2005-08-25 16:25:49 -0700 | [diff] [blame] | 1660 | * |
Chuck Lever | 470056c | 2005-08-25 16:25:56 -0700 | [diff] [blame] | 1661 | * Set socket send and receive buffer size limits. |
Chuck Lever | 43118c2 | 2005-08-25 16:25:49 -0700 | [diff] [blame] | 1662 | */ |
Chuck Lever | 470056c | 2005-08-25 16:25:56 -0700 | [diff] [blame] | 1663 | static void xs_udp_set_buffer_size(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize) |
Chuck Lever | 43118c2 | 2005-08-25 16:25:49 -0700 | [diff] [blame] | 1664 | { |
Chuck Lever | 7c6e066 | 2006-12-05 16:35:30 -0500 | [diff] [blame] | 1665 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
| 1666 | |
| 1667 | transport->sndsize = 0; |
Chuck Lever | 470056c | 2005-08-25 16:25:56 -0700 | [diff] [blame] | 1668 | if (sndsize) |
Chuck Lever | 7c6e066 | 2006-12-05 16:35:30 -0500 | [diff] [blame] | 1669 | transport->sndsize = sndsize + 1024; |
| 1670 | transport->rcvsize = 0; |
Chuck Lever | 470056c | 2005-08-25 16:25:56 -0700 | [diff] [blame] | 1671 | if (rcvsize) |
Chuck Lever | 7c6e066 | 2006-12-05 16:35:30 -0500 | [diff] [blame] | 1672 | transport->rcvsize = rcvsize + 1024; |
Chuck Lever | 470056c | 2005-08-25 16:25:56 -0700 | [diff] [blame] | 1673 | |
| 1674 | xs_udp_do_set_buffer_size(xprt); |
Chuck Lever | 43118c2 | 2005-08-25 16:25:49 -0700 | [diff] [blame] | 1675 | } |
| 1676 | |
Chuck Lever | 46c0ee8 | 2005-08-25 16:25:52 -0700 | [diff] [blame] | 1677 | /** |
| 1678 | * xs_udp_timer - called when a retransmit timeout occurs on a UDP transport |
Chuck Lever | acf0a39 | 2018-12-19 11:00:22 -0500 | [diff] [blame] | 1679 | * @xprt: controlling transport |
Chuck Lever | 46c0ee8 | 2005-08-25 16:25:52 -0700 | [diff] [blame] | 1680 | * @task: task that timed out |
| 1681 | * |
| 1682 | * Adjust the congestion window after a retransmit timeout has occurred. |
| 1683 | */ |
Trond Myklebust | 6a24dfb | 2013-01-08 09:48:15 -0500 | [diff] [blame] | 1684 | static void xs_udp_timer(struct rpc_xprt *xprt, struct rpc_task *task) |
Chuck Lever | 46c0ee8 | 2005-08-25 16:25:52 -0700 | [diff] [blame] | 1685 | { |
Trond Myklebust | b5e9241 | 2019-05-02 11:21:08 -0400 | [diff] [blame] | 1686 | spin_lock(&xprt->transport_lock); |
Trond Myklebust | 6a24dfb | 2013-01-08 09:48:15 -0500 | [diff] [blame] | 1687 | xprt_adjust_cwnd(xprt, task, -ETIMEDOUT); |
Trond Myklebust | b5e9241 | 2019-05-02 11:21:08 -0400 | [diff] [blame] | 1688 | spin_unlock(&xprt->transport_lock); |
Chuck Lever | 46c0ee8 | 2005-08-25 16:25:52 -0700 | [diff] [blame] | 1689 | } |
| 1690 | |
J. Bruce Fields | 826799e | 2018-10-18 15:27:02 -0400 | [diff] [blame] | 1691 | static int xs_get_random_port(void) |
Chuck Lever | b85d880 | 2006-05-25 01:40:49 -0400 | [diff] [blame] | 1692 | { |
J. Bruce Fields | 826799e | 2018-10-18 15:27:02 -0400 | [diff] [blame] | 1693 | unsigned short min = xprt_min_resvport, max = xprt_max_resvport; |
| 1694 | unsigned short range; |
| 1695 | unsigned short rand; |
| 1696 | |
| 1697 | if (max < min) |
| 1698 | return -EADDRINUSE; |
| 1699 | range = max - min + 1; |
| 1700 | rand = (unsigned short) prandom_u32() % range; |
| 1701 | return rand + min; |
Chuck Lever | b85d880 | 2006-05-25 01:40:49 -0400 | [diff] [blame] | 1702 | } |
| 1703 | |
Chuck Lever | 9220041 | 2006-01-03 09:55:51 +0100 | [diff] [blame] | 1704 | /** |
Trond Myklebust | 4dda9c8 | 2015-02-08 15:00:06 -0500 | [diff] [blame] | 1705 | * xs_set_reuseaddr_port - set the socket's port and address reuse options |
| 1706 | * @sock: socket |
| 1707 | * |
| 1708 | * Note that this function has to be called on all sockets that share the |
| 1709 | * same port, and it must be called before binding. |
| 1710 | */ |
| 1711 | static void xs_sock_set_reuseport(struct socket *sock) |
| 1712 | { |
Trond Myklebust | 402e23b | 2015-02-09 17:20:14 -0500 | [diff] [blame] | 1713 | int opt = 1; |
Trond Myklebust | 4dda9c8 | 2015-02-08 15:00:06 -0500 | [diff] [blame] | 1714 | |
Trond Myklebust | 402e23b | 2015-02-09 17:20:14 -0500 | [diff] [blame] | 1715 | kernel_setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, |
| 1716 | (char *)&opt, sizeof(opt)); |
Trond Myklebust | 4dda9c8 | 2015-02-08 15:00:06 -0500 | [diff] [blame] | 1717 | } |
| 1718 | |
| 1719 | static unsigned short xs_sock_getport(struct socket *sock) |
| 1720 | { |
| 1721 | struct sockaddr_storage buf; |
Trond Myklebust | 4dda9c8 | 2015-02-08 15:00:06 -0500 | [diff] [blame] | 1722 | unsigned short port = 0; |
| 1723 | |
Denys Vlasenko | 9b2c45d | 2018-02-12 20:00:20 +0100 | [diff] [blame] | 1724 | if (kernel_getsockname(sock, (struct sockaddr *)&buf) < 0) |
Trond Myklebust | 4dda9c8 | 2015-02-08 15:00:06 -0500 | [diff] [blame] | 1725 | goto out; |
| 1726 | switch (buf.ss_family) { |
| 1727 | case AF_INET6: |
| 1728 | port = ntohs(((struct sockaddr_in6 *)&buf)->sin6_port); |
| 1729 | break; |
| 1730 | case AF_INET: |
| 1731 | port = ntohs(((struct sockaddr_in *)&buf)->sin_port); |
| 1732 | } |
| 1733 | out: |
| 1734 | return port; |
| 1735 | } |
| 1736 | |
| 1737 | /** |
Chuck Lever | 9220041 | 2006-01-03 09:55:51 +0100 | [diff] [blame] | 1738 | * xs_set_port - reset the port number in the remote endpoint address |
| 1739 | * @xprt: generic transport |
| 1740 | * @port: new port number |
| 1741 | * |
| 1742 | */ |
| 1743 | static void xs_set_port(struct rpc_xprt *xprt, unsigned short port) |
| 1744 | { |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1745 | dprintk("RPC: setting port for xprt %p to %u\n", xprt, port); |
Chuck Lever | c4efcb1 | 2006-08-22 20:06:19 -0400 | [diff] [blame] | 1746 | |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 1747 | rpc_set_port(xs_addr(xprt), port); |
| 1748 | xs_update_peer_port(xprt); |
Chuck Lever | 9220041 | 2006-01-03 09:55:51 +0100 | [diff] [blame] | 1749 | } |
| 1750 | |
Trond Myklebust | 4dda9c8 | 2015-02-08 15:00:06 -0500 | [diff] [blame] | 1751 | static void xs_set_srcport(struct sock_xprt *transport, struct socket *sock) |
| 1752 | { |
| 1753 | if (transport->srcport == 0) |
| 1754 | transport->srcport = xs_sock_getport(sock); |
| 1755 | } |
| 1756 | |
J. Bruce Fields | 826799e | 2018-10-18 15:27:02 -0400 | [diff] [blame] | 1757 | static int xs_get_srcport(struct sock_xprt *transport) |
Trond Myklebust | 67a391d | 2007-11-05 17:40:58 -0500 | [diff] [blame] | 1758 | { |
J. Bruce Fields | 826799e | 2018-10-18 15:27:02 -0400 | [diff] [blame] | 1759 | int port = transport->srcport; |
Trond Myklebust | 67a391d | 2007-11-05 17:40:58 -0500 | [diff] [blame] | 1760 | |
| 1761 | if (port == 0 && transport->xprt.resvport) |
| 1762 | port = xs_get_random_port(); |
| 1763 | return port; |
| 1764 | } |
| 1765 | |
Pavel Emelyanov | baaf4e4 | 2010-10-04 16:51:56 +0400 | [diff] [blame] | 1766 | static unsigned short xs_next_srcport(struct sock_xprt *transport, unsigned short port) |
Trond Myklebust | 67a391d | 2007-11-05 17:40:58 -0500 | [diff] [blame] | 1767 | { |
Chuck Lever | fbfffbd | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 1768 | if (transport->srcport != 0) |
| 1769 | transport->srcport = 0; |
Trond Myklebust | 67a391d | 2007-11-05 17:40:58 -0500 | [diff] [blame] | 1770 | if (!transport->xprt.resvport) |
| 1771 | return 0; |
| 1772 | if (port <= xprt_min_resvport || port > xprt_max_resvport) |
| 1773 | return xprt_max_resvport; |
| 1774 | return --port; |
| 1775 | } |
Pavel Emelyanov | beb59b6 | 2010-10-05 15:53:08 +0400 | [diff] [blame] | 1776 | static int xs_bind(struct sock_xprt *transport, struct socket *sock) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1777 | { |
Pavel Emelyanov | beb59b6 | 2010-10-05 15:53:08 +0400 | [diff] [blame] | 1778 | struct sockaddr_storage myaddr; |
Trond Myklebust | 67a391d | 2007-11-05 17:40:58 -0500 | [diff] [blame] | 1779 | int err, nloop = 0; |
J. Bruce Fields | 826799e | 2018-10-18 15:27:02 -0400 | [diff] [blame] | 1780 | int port = xs_get_srcport(transport); |
Trond Myklebust | 67a391d | 2007-11-05 17:40:58 -0500 | [diff] [blame] | 1781 | unsigned short last; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1782 | |
Chris Perl | 0f7a622 | 2014-09-05 15:40:21 -0400 | [diff] [blame] | 1783 | /* |
| 1784 | * If we are asking for any ephemeral port (i.e. port == 0 && |
| 1785 | * transport->xprt.resvport == 0), don't bind. Let the local |
| 1786 | * port selection happen implicitly when the socket is used |
| 1787 | * (for example at connect time). |
| 1788 | * |
| 1789 | * This ensures that we can continue to establish TCP |
| 1790 | * connections even when all local ephemeral ports are already |
| 1791 | * a part of some TCP connection. This makes no difference |
| 1792 | * for UDP sockets, but also doens't harm them. |
| 1793 | * |
| 1794 | * If we're asking for any reserved port (i.e. port == 0 && |
| 1795 | * transport->xprt.resvport == 1) xs_get_srcport above will |
| 1796 | * ensure that port is non-zero and we will bind as needed. |
| 1797 | */ |
J. Bruce Fields | 826799e | 2018-10-18 15:27:02 -0400 | [diff] [blame] | 1798 | if (port <= 0) |
| 1799 | return port; |
Chris Perl | 0f7a622 | 2014-09-05 15:40:21 -0400 | [diff] [blame] | 1800 | |
Pavel Emelyanov | beb59b6 | 2010-10-05 15:53:08 +0400 | [diff] [blame] | 1801 | memcpy(&myaddr, &transport->srcaddr, transport->xprt.addrlen); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1802 | do { |
Pavel Emelyanov | beb59b6 | 2010-10-05 15:53:08 +0400 | [diff] [blame] | 1803 | rpc_set_port((struct sockaddr *)&myaddr, port); |
| 1804 | err = kernel_bind(sock, (struct sockaddr *)&myaddr, |
| 1805 | transport->xprt.addrlen); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1806 | if (err == 0) { |
Chuck Lever | fbfffbd | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 1807 | transport->srcport = port; |
Frank van Maarseveen | d3bc9a1 | 2007-07-09 22:23:35 +0200 | [diff] [blame] | 1808 | break; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1809 | } |
Trond Myklebust | 67a391d | 2007-11-05 17:40:58 -0500 | [diff] [blame] | 1810 | last = port; |
Pavel Emelyanov | baaf4e4 | 2010-10-04 16:51:56 +0400 | [diff] [blame] | 1811 | port = xs_next_srcport(transport, port); |
Trond Myklebust | 67a391d | 2007-11-05 17:40:58 -0500 | [diff] [blame] | 1812 | if (port > last) |
| 1813 | nloop++; |
| 1814 | } while (err == -EADDRINUSE && nloop != 2); |
Pavel Emelyanov | beb59b6 | 2010-10-05 15:53:08 +0400 | [diff] [blame] | 1815 | |
Chuck Lever | 4232e86 | 2010-10-20 11:52:51 -0400 | [diff] [blame] | 1816 | if (myaddr.ss_family == AF_INET) |
Pavel Emelyanov | beb59b6 | 2010-10-05 15:53:08 +0400 | [diff] [blame] | 1817 | dprintk("RPC: %s %pI4:%u: %s (%d)\n", __func__, |
| 1818 | &((struct sockaddr_in *)&myaddr)->sin_addr, |
| 1819 | port, err ? "failed" : "ok", err); |
| 1820 | else |
| 1821 | dprintk("RPC: %s %pI6:%u: %s (%d)\n", __func__, |
| 1822 | &((struct sockaddr_in6 *)&myaddr)->sin6_addr, |
| 1823 | port, err ? "failed" : "ok", err); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1824 | return err; |
| 1825 | } |
| 1826 | |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1827 | /* |
| 1828 | * We don't support autobind on AF_LOCAL sockets |
| 1829 | */ |
| 1830 | static void xs_local_rpcbind(struct rpc_task *task) |
| 1831 | { |
Trond Myklebust | fb43d17 | 2016-01-30 16:39:26 -0500 | [diff] [blame] | 1832 | xprt_set_bound(task->tk_xprt); |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1833 | } |
| 1834 | |
| 1835 | static void xs_local_set_port(struct rpc_xprt *xprt, unsigned short port) |
| 1836 | { |
| 1837 | } |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 1838 | |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 1839 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 1840 | static struct lock_class_key xs_key[2]; |
| 1841 | static struct lock_class_key xs_slock_key[2]; |
| 1842 | |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1843 | static inline void xs_reclassify_socketu(struct socket *sock) |
| 1844 | { |
| 1845 | struct sock *sk = sock->sk; |
| 1846 | |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1847 | sock_lock_init_class_and_name(sk, "slock-AF_LOCAL-RPC", |
| 1848 | &xs_slock_key[1], "sk_lock-AF_LOCAL-RPC", &xs_key[1]); |
| 1849 | } |
| 1850 | |
Chuck Lever | 8945ee5 | 2007-08-06 11:58:04 -0400 | [diff] [blame] | 1851 | static inline void xs_reclassify_socket4(struct socket *sock) |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 1852 | { |
| 1853 | struct sock *sk = sock->sk; |
Chuck Lever | 8945ee5 | 2007-08-06 11:58:04 -0400 | [diff] [blame] | 1854 | |
Chuck Lever | 8945ee5 | 2007-08-06 11:58:04 -0400 | [diff] [blame] | 1855 | sock_lock_init_class_and_name(sk, "slock-AF_INET-RPC", |
| 1856 | &xs_slock_key[0], "sk_lock-AF_INET-RPC", &xs_key[0]); |
| 1857 | } |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 1858 | |
Chuck Lever | 8945ee5 | 2007-08-06 11:58:04 -0400 | [diff] [blame] | 1859 | static inline void xs_reclassify_socket6(struct socket *sock) |
| 1860 | { |
| 1861 | struct sock *sk = sock->sk; |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 1862 | |
Chuck Lever | 8945ee5 | 2007-08-06 11:58:04 -0400 | [diff] [blame] | 1863 | sock_lock_init_class_and_name(sk, "slock-AF_INET6-RPC", |
| 1864 | &xs_slock_key[1], "sk_lock-AF_INET6-RPC", &xs_key[1]); |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 1865 | } |
Pavel Emelyanov | 6bc9638 | 2010-10-04 16:56:38 +0400 | [diff] [blame] | 1866 | |
| 1867 | static inline void xs_reclassify_socket(int family, struct socket *sock) |
| 1868 | { |
Hannes Frederic Sowa | fafc4e1 | 2016-04-08 15:11:27 +0200 | [diff] [blame] | 1869 | if (WARN_ON_ONCE(!sock_allow_reclassification(sock->sk))) |
Weston Andros Adamson | 1b7a181 | 2012-10-23 10:43:39 -0400 | [diff] [blame] | 1870 | return; |
| 1871 | |
Chuck Lever | 4232e86 | 2010-10-20 11:52:51 -0400 | [diff] [blame] | 1872 | switch (family) { |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1873 | case AF_LOCAL: |
| 1874 | xs_reclassify_socketu(sock); |
| 1875 | break; |
Chuck Lever | 4232e86 | 2010-10-20 11:52:51 -0400 | [diff] [blame] | 1876 | case AF_INET: |
Pavel Emelyanov | 6bc9638 | 2010-10-04 16:56:38 +0400 | [diff] [blame] | 1877 | xs_reclassify_socket4(sock); |
Chuck Lever | 4232e86 | 2010-10-20 11:52:51 -0400 | [diff] [blame] | 1878 | break; |
| 1879 | case AF_INET6: |
Pavel Emelyanov | 6bc9638 | 2010-10-04 16:56:38 +0400 | [diff] [blame] | 1880 | xs_reclassify_socket6(sock); |
Chuck Lever | 4232e86 | 2010-10-20 11:52:51 -0400 | [diff] [blame] | 1881 | break; |
| 1882 | } |
Pavel Emelyanov | 6bc9638 | 2010-10-04 16:56:38 +0400 | [diff] [blame] | 1883 | } |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 1884 | #else |
Pavel Emelyanov | 6bc9638 | 2010-10-04 16:56:38 +0400 | [diff] [blame] | 1885 | static inline void xs_reclassify_socket(int family, struct socket *sock) |
| 1886 | { |
| 1887 | } |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 1888 | #endif |
| 1889 | |
NeilBrown | 93dc41b | 2013-10-31 16:14:36 +1100 | [diff] [blame] | 1890 | static void xs_dummy_setup_socket(struct work_struct *work) |
| 1891 | { |
| 1892 | } |
| 1893 | |
Pavel Emelyanov | 6bc9638 | 2010-10-04 16:56:38 +0400 | [diff] [blame] | 1894 | static struct socket *xs_create_sock(struct rpc_xprt *xprt, |
Trond Myklebust | 4dda9c8 | 2015-02-08 15:00:06 -0500 | [diff] [blame] | 1895 | struct sock_xprt *transport, int family, int type, |
| 1896 | int protocol, bool reuseport) |
Pavel Emelyanov | 22f7932 | 2010-10-04 16:54:26 +0400 | [diff] [blame] | 1897 | { |
Trond Myklebust | a73881c | 2019-02-26 06:33:02 -0500 | [diff] [blame] | 1898 | struct file *filp; |
Pavel Emelyanov | 22f7932 | 2010-10-04 16:54:26 +0400 | [diff] [blame] | 1899 | struct socket *sock; |
| 1900 | int err; |
| 1901 | |
Pavel Emelyanov | 6bc9638 | 2010-10-04 16:56:38 +0400 | [diff] [blame] | 1902 | err = __sock_create(xprt->xprt_net, family, type, protocol, &sock, 1); |
Pavel Emelyanov | 22f7932 | 2010-10-04 16:54:26 +0400 | [diff] [blame] | 1903 | if (err < 0) { |
| 1904 | dprintk("RPC: can't create %d transport socket (%d).\n", |
| 1905 | protocol, -err); |
| 1906 | goto out; |
| 1907 | } |
Pavel Emelyanov | 6bc9638 | 2010-10-04 16:56:38 +0400 | [diff] [blame] | 1908 | xs_reclassify_socket(family, sock); |
Pavel Emelyanov | 22f7932 | 2010-10-04 16:54:26 +0400 | [diff] [blame] | 1909 | |
Trond Myklebust | 4dda9c8 | 2015-02-08 15:00:06 -0500 | [diff] [blame] | 1910 | if (reuseport) |
| 1911 | xs_sock_set_reuseport(sock); |
| 1912 | |
Ben Hutchings | 4cea288 | 2011-02-22 21:54:34 +0000 | [diff] [blame] | 1913 | err = xs_bind(transport, sock); |
| 1914 | if (err) { |
Pavel Emelyanov | 22f7932 | 2010-10-04 16:54:26 +0400 | [diff] [blame] | 1915 | sock_release(sock); |
| 1916 | goto out; |
| 1917 | } |
| 1918 | |
Trond Myklebust | a73881c | 2019-02-26 06:33:02 -0500 | [diff] [blame] | 1919 | filp = sock_alloc_file(sock, O_NONBLOCK, NULL); |
| 1920 | if (IS_ERR(filp)) |
| 1921 | return ERR_CAST(filp); |
| 1922 | transport->file = filp; |
| 1923 | |
Pavel Emelyanov | 22f7932 | 2010-10-04 16:54:26 +0400 | [diff] [blame] | 1924 | return sock; |
| 1925 | out: |
| 1926 | return ERR_PTR(err); |
| 1927 | } |
| 1928 | |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1929 | static int xs_local_finish_connecting(struct rpc_xprt *xprt, |
| 1930 | struct socket *sock) |
| 1931 | { |
| 1932 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, |
| 1933 | xprt); |
| 1934 | |
| 1935 | if (!transport->inet) { |
| 1936 | struct sock *sk = sock->sk; |
| 1937 | |
| 1938 | write_lock_bh(&sk->sk_callback_lock); |
| 1939 | |
| 1940 | xs_save_old_callbacks(transport, sk); |
| 1941 | |
| 1942 | sk->sk_user_data = xprt; |
Trond Myklebust | a264809 | 2015-10-06 17:03:00 -0400 | [diff] [blame] | 1943 | sk->sk_data_ready = xs_data_ready; |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1944 | sk->sk_write_space = xs_udp_write_space; |
Eric Dumazet | b4411457 | 2016-05-12 21:41:39 -0700 | [diff] [blame] | 1945 | sock_set_flag(sk, SOCK_FASYNC); |
Trond Myklebust | 2118071 | 2013-12-31 13:22:59 -0500 | [diff] [blame] | 1946 | sk->sk_error_report = xs_error_report; |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1947 | |
| 1948 | xprt_clear_connected(xprt); |
| 1949 | |
| 1950 | /* Reset to new socket */ |
| 1951 | transport->sock = sock; |
| 1952 | transport->inet = sk; |
| 1953 | |
| 1954 | write_unlock_bh(&sk->sk_callback_lock); |
| 1955 | } |
| 1956 | |
Trond Myklebust | ae05355 | 2019-02-20 14:56:20 -0500 | [diff] [blame] | 1957 | xs_stream_start_connect(transport); |
Trond Myklebust | 6c7a64e | 2018-08-13 16:54:57 -0400 | [diff] [blame] | 1958 | |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1959 | return kernel_connect(sock, xs_addr(xprt), xprt->addrlen, 0); |
| 1960 | } |
| 1961 | |
| 1962 | /** |
| 1963 | * xs_local_setup_socket - create AF_LOCAL socket, connect to a local endpoint |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1964 | * @transport: socket transport to connect |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1965 | */ |
J. Bruce Fields | dc10740 | 2013-02-20 17:52:19 -0500 | [diff] [blame] | 1966 | static int xs_local_setup_socket(struct sock_xprt *transport) |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1967 | { |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1968 | struct rpc_xprt *xprt = &transport->xprt; |
Trond Myklebust | a73881c | 2019-02-26 06:33:02 -0500 | [diff] [blame] | 1969 | struct file *filp; |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1970 | struct socket *sock; |
| 1971 | int status = -EIO; |
| 1972 | |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1973 | status = __sock_create(xprt->xprt_net, AF_LOCAL, |
| 1974 | SOCK_STREAM, 0, &sock, 1); |
| 1975 | if (status < 0) { |
| 1976 | dprintk("RPC: can't create AF_LOCAL " |
| 1977 | "transport socket (%d).\n", -status); |
| 1978 | goto out; |
| 1979 | } |
Stefan Hajnoczi | d135891 | 2015-12-02 14:17:52 +0800 | [diff] [blame] | 1980 | xs_reclassify_socket(AF_LOCAL, sock); |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1981 | |
Trond Myklebust | a73881c | 2019-02-26 06:33:02 -0500 | [diff] [blame] | 1982 | filp = sock_alloc_file(sock, O_NONBLOCK, NULL); |
| 1983 | if (IS_ERR(filp)) { |
| 1984 | status = PTR_ERR(filp); |
| 1985 | goto out; |
| 1986 | } |
| 1987 | transport->file = filp; |
| 1988 | |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1989 | dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n", |
| 1990 | xprt, xprt->address_strings[RPC_DISPLAY_ADDR]); |
| 1991 | |
| 1992 | status = xs_local_finish_connecting(xprt, sock); |
Trond Myklebust | 40b5ea0 | 2013-09-04 12:16:23 -0400 | [diff] [blame] | 1993 | trace_rpc_socket_connect(xprt, sock, status); |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 1994 | switch (status) { |
| 1995 | case 0: |
| 1996 | dprintk("RPC: xprt %p connected to %s\n", |
| 1997 | xprt, xprt->address_strings[RPC_DISPLAY_ADDR]); |
Chuck Lever | 3968a8a | 2018-10-01 14:25:36 -0400 | [diff] [blame] | 1998 | xprt->stat.connect_count++; |
| 1999 | xprt->stat.connect_time += (long)jiffies - |
| 2000 | xprt->stat.connect_start; |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2001 | xprt_set_connected(xprt); |
Trond Myklebust | 3601c4a | 2014-06-30 13:42:19 -0400 | [diff] [blame] | 2002 | case -ENOBUFS: |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2003 | break; |
| 2004 | case -ENOENT: |
| 2005 | dprintk("RPC: xprt %p: socket %s does not exist\n", |
| 2006 | xprt, xprt->address_strings[RPC_DISPLAY_ADDR]); |
| 2007 | break; |
Trond Myklebust | 4a20a98 | 2012-12-15 17:02:29 -0500 | [diff] [blame] | 2008 | case -ECONNREFUSED: |
| 2009 | dprintk("RPC: xprt %p: connection refused for %s\n", |
| 2010 | xprt, xprt->address_strings[RPC_DISPLAY_ADDR]); |
| 2011 | break; |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2012 | default: |
| 2013 | printk(KERN_ERR "%s: unhandled error (%d) connecting to %s\n", |
| 2014 | __func__, -status, |
| 2015 | xprt->address_strings[RPC_DISPLAY_ADDR]); |
| 2016 | } |
| 2017 | |
| 2018 | out: |
| 2019 | xprt_clear_connecting(xprt); |
| 2020 | xprt_wake_pending_tasks(xprt, status); |
J. Bruce Fields | dc10740 | 2013-02-20 17:52:19 -0500 | [diff] [blame] | 2021 | return status; |
| 2022 | } |
| 2023 | |
Linus Torvalds | b666973 | 2013-02-28 18:02:55 -0800 | [diff] [blame] | 2024 | static void xs_local_connect(struct rpc_xprt *xprt, struct rpc_task *task) |
J. Bruce Fields | dc10740 | 2013-02-20 17:52:19 -0500 | [diff] [blame] | 2025 | { |
J. Bruce Fields | dc10740 | 2013-02-20 17:52:19 -0500 | [diff] [blame] | 2026 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
| 2027 | int ret; |
| 2028 | |
| 2029 | if (RPC_IS_ASYNC(task)) { |
| 2030 | /* |
| 2031 | * We want the AF_LOCAL connect to be resolved in the |
| 2032 | * filesystem namespace of the process making the rpc |
| 2033 | * call. Thus we connect synchronously. |
| 2034 | * |
| 2035 | * If we want to support asynchronous AF_LOCAL calls, |
| 2036 | * we'll need to figure out how to pass a namespace to |
| 2037 | * connect. |
| 2038 | */ |
Trond Myklebust | 5ad64b3 | 2019-04-07 13:58:54 -0400 | [diff] [blame] | 2039 | task->tk_rpc_status = -ENOTCONN; |
J. Bruce Fields | dc10740 | 2013-02-20 17:52:19 -0500 | [diff] [blame] | 2040 | rpc_exit(task, -ENOTCONN); |
| 2041 | return; |
| 2042 | } |
| 2043 | ret = xs_local_setup_socket(transport); |
| 2044 | if (ret && !RPC_IS_SOFTCONN(task)) |
| 2045 | msleep_interruptible(15000); |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2046 | } |
| 2047 | |
Jeff Layton | 3c87ef6 | 2015-06-03 16:14:25 -0400 | [diff] [blame] | 2048 | #if IS_ENABLED(CONFIG_SUNRPC_SWAP) |
Jeff Layton | d6e971d | 2015-06-03 16:14:28 -0400 | [diff] [blame] | 2049 | /* |
| 2050 | * Note that this should be called with XPRT_LOCKED held (or when we otherwise |
| 2051 | * know that we have exclusive access to the socket), to guard against |
| 2052 | * races with xs_reset_transport. |
| 2053 | */ |
Mel Gorman | a564b8f | 2012-07-31 16:45:12 -0700 | [diff] [blame] | 2054 | static void xs_set_memalloc(struct rpc_xprt *xprt) |
| 2055 | { |
| 2056 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, |
| 2057 | xprt); |
| 2058 | |
Jeff Layton | d6e971d | 2015-06-03 16:14:28 -0400 | [diff] [blame] | 2059 | /* |
| 2060 | * If there's no sock, then we have nothing to set. The |
| 2061 | * reconnecting process will get it for us. |
| 2062 | */ |
| 2063 | if (!transport->inet) |
| 2064 | return; |
Jeff Layton | 8e22813 | 2015-06-03 16:14:26 -0400 | [diff] [blame] | 2065 | if (atomic_read(&xprt->swapper)) |
Mel Gorman | a564b8f | 2012-07-31 16:45:12 -0700 | [diff] [blame] | 2066 | sk_set_memalloc(transport->inet); |
| 2067 | } |
| 2068 | |
| 2069 | /** |
Jeff Layton | d67fa4d | 2015-06-03 16:14:29 -0400 | [diff] [blame] | 2070 | * xs_enable_swap - Tag this transport as being used for swap. |
Mel Gorman | a564b8f | 2012-07-31 16:45:12 -0700 | [diff] [blame] | 2071 | * @xprt: transport to tag |
Mel Gorman | a564b8f | 2012-07-31 16:45:12 -0700 | [diff] [blame] | 2072 | * |
Jeff Layton | 8e22813 | 2015-06-03 16:14:26 -0400 | [diff] [blame] | 2073 | * Take a reference to this transport on behalf of the rpc_clnt, and |
| 2074 | * optionally mark it for swapping if it wasn't already. |
Mel Gorman | a564b8f | 2012-07-31 16:45:12 -0700 | [diff] [blame] | 2075 | */ |
Jeff Layton | d67fa4d | 2015-06-03 16:14:29 -0400 | [diff] [blame] | 2076 | static int |
| 2077 | xs_enable_swap(struct rpc_xprt *xprt) |
Mel Gorman | a564b8f | 2012-07-31 16:45:12 -0700 | [diff] [blame] | 2078 | { |
Jeff Layton | d6e971d | 2015-06-03 16:14:28 -0400 | [diff] [blame] | 2079 | struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt); |
Mel Gorman | a564b8f | 2012-07-31 16:45:12 -0700 | [diff] [blame] | 2080 | |
Jeff Layton | d6e971d | 2015-06-03 16:14:28 -0400 | [diff] [blame] | 2081 | if (atomic_inc_return(&xprt->swapper) != 1) |
| 2082 | return 0; |
| 2083 | if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE)) |
| 2084 | return -ERESTARTSYS; |
| 2085 | if (xs->inet) |
| 2086 | sk_set_memalloc(xs->inet); |
| 2087 | xprt_release_xprt(xprt, NULL); |
Jeff Layton | 8e22813 | 2015-06-03 16:14:26 -0400 | [diff] [blame] | 2088 | return 0; |
Mel Gorman | a564b8f | 2012-07-31 16:45:12 -0700 | [diff] [blame] | 2089 | } |
Jeff Layton | 8e22813 | 2015-06-03 16:14:26 -0400 | [diff] [blame] | 2090 | |
| 2091 | /** |
Jeff Layton | d67fa4d | 2015-06-03 16:14:29 -0400 | [diff] [blame] | 2092 | * xs_disable_swap - Untag this transport as being used for swap. |
Jeff Layton | 8e22813 | 2015-06-03 16:14:26 -0400 | [diff] [blame] | 2093 | * @xprt: transport to tag |
| 2094 | * |
| 2095 | * Drop a "swapper" reference to this xprt on behalf of the rpc_clnt. If the |
| 2096 | * swapper refcount goes to 0, untag the socket as a memalloc socket. |
| 2097 | */ |
Jeff Layton | d67fa4d | 2015-06-03 16:14:29 -0400 | [diff] [blame] | 2098 | static void |
| 2099 | xs_disable_swap(struct rpc_xprt *xprt) |
Jeff Layton | 8e22813 | 2015-06-03 16:14:26 -0400 | [diff] [blame] | 2100 | { |
Jeff Layton | d6e971d | 2015-06-03 16:14:28 -0400 | [diff] [blame] | 2101 | struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt); |
Jeff Layton | 8e22813 | 2015-06-03 16:14:26 -0400 | [diff] [blame] | 2102 | |
Jeff Layton | d6e971d | 2015-06-03 16:14:28 -0400 | [diff] [blame] | 2103 | if (!atomic_dec_and_test(&xprt->swapper)) |
| 2104 | return; |
| 2105 | if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE)) |
| 2106 | return; |
| 2107 | if (xs->inet) |
| 2108 | sk_clear_memalloc(xs->inet); |
| 2109 | xprt_release_xprt(xprt, NULL); |
Mel Gorman | a564b8f | 2012-07-31 16:45:12 -0700 | [diff] [blame] | 2110 | } |
Mel Gorman | a564b8f | 2012-07-31 16:45:12 -0700 | [diff] [blame] | 2111 | #else |
| 2112 | static void xs_set_memalloc(struct rpc_xprt *xprt) |
| 2113 | { |
| 2114 | } |
Jeff Layton | d67fa4d | 2015-06-03 16:14:29 -0400 | [diff] [blame] | 2115 | |
| 2116 | static int |
| 2117 | xs_enable_swap(struct rpc_xprt *xprt) |
| 2118 | { |
| 2119 | return -EINVAL; |
| 2120 | } |
| 2121 | |
| 2122 | static void |
| 2123 | xs_disable_swap(struct rpc_xprt *xprt) |
| 2124 | { |
| 2125 | } |
Mel Gorman | a564b8f | 2012-07-31 16:45:12 -0700 | [diff] [blame] | 2126 | #endif |
| 2127 | |
Chuck Lever | 16be2d2 | 2007-08-06 11:57:38 -0400 | [diff] [blame] | 2128 | static void xs_udp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2129 | { |
Chuck Lever | 16be2d2 | 2007-08-06 11:57:38 -0400 | [diff] [blame] | 2130 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
Chuck Lever | edb267a | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 2131 | |
Chuck Lever | ee0ac0c | 2006-12-05 16:35:15 -0500 | [diff] [blame] | 2132 | if (!transport->inet) { |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2133 | struct sock *sk = sock->sk; |
| 2134 | |
| 2135 | write_lock_bh(&sk->sk_callback_lock); |
| 2136 | |
Trond Myklebust | 2a9e1cf | 2008-10-28 15:21:39 -0400 | [diff] [blame] | 2137 | xs_save_old_callbacks(transport, sk); |
| 2138 | |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2139 | sk->sk_user_data = xprt; |
Trond Myklebust | f9b2ee7 | 2015-10-06 16:26:05 -0400 | [diff] [blame] | 2140 | sk->sk_data_ready = xs_data_ready; |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2141 | sk->sk_write_space = xs_udp_write_space; |
Eric Dumazet | b4411457 | 2016-05-12 21:41:39 -0700 | [diff] [blame] | 2142 | sock_set_flag(sk, SOCK_FASYNC); |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2143 | |
| 2144 | xprt_set_connected(xprt); |
| 2145 | |
| 2146 | /* Reset to new socket */ |
Chuck Lever | ee0ac0c | 2006-12-05 16:35:15 -0500 | [diff] [blame] | 2147 | transport->sock = sock; |
| 2148 | transport->inet = sk; |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2149 | |
Mel Gorman | a564b8f | 2012-07-31 16:45:12 -0700 | [diff] [blame] | 2150 | xs_set_memalloc(xprt); |
| 2151 | |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2152 | write_unlock_bh(&sk->sk_callback_lock); |
| 2153 | } |
Chuck Lever | 470056c | 2005-08-25 16:25:56 -0700 | [diff] [blame] | 2154 | xs_udp_do_set_buffer_size(xprt); |
Trond Myklebust | 0291017 | 2016-08-04 00:00:33 -0400 | [diff] [blame] | 2155 | |
| 2156 | xprt->stat.connect_start = jiffies; |
Chuck Lever | 16be2d2 | 2007-08-06 11:57:38 -0400 | [diff] [blame] | 2157 | } |
| 2158 | |
Pavel Emelyanov | 8c14ff2 | 2010-10-04 16:58:02 +0400 | [diff] [blame] | 2159 | static void xs_udp_setup_socket(struct work_struct *work) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2160 | { |
| 2161 | struct sock_xprt *transport = |
| 2162 | container_of(work, struct sock_xprt, connect_worker.work); |
| 2163 | struct rpc_xprt *xprt = &transport->xprt; |
Colin Ian King | d099b8a | 2017-09-18 12:21:14 +0100 | [diff] [blame] | 2164 | struct socket *sock; |
Pavel Emelyanov | b65c031 | 2010-10-04 16:53:46 +0400 | [diff] [blame] | 2165 | int status = -EIO; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2166 | |
Pavel Emelyanov | 8c14ff2 | 2010-10-04 16:58:02 +0400 | [diff] [blame] | 2167 | sock = xs_create_sock(xprt, transport, |
Trond Myklebust | 4dda9c8 | 2015-02-08 15:00:06 -0500 | [diff] [blame] | 2168 | xs_addr(xprt)->sa_family, SOCK_DGRAM, |
| 2169 | IPPROTO_UDP, false); |
Pavel Emelyanov | b65c031 | 2010-10-04 16:53:46 +0400 | [diff] [blame] | 2170 | if (IS_ERR(sock)) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2171 | goto out; |
Chuck Lever | 68e220b | 2007-08-06 11:57:48 -0400 | [diff] [blame] | 2172 | |
Chuck Lever | c740eff | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 2173 | dprintk("RPC: worker connecting xprt %p via %s to " |
| 2174 | "%s (port %s)\n", xprt, |
| 2175 | xprt->address_strings[RPC_DISPLAY_PROTO], |
| 2176 | xprt->address_strings[RPC_DISPLAY_ADDR], |
| 2177 | xprt->address_strings[RPC_DISPLAY_PORT]); |
Chuck Lever | 68e220b | 2007-08-06 11:57:48 -0400 | [diff] [blame] | 2178 | |
| 2179 | xs_udp_finish_connecting(xprt, sock); |
Trond Myklebust | 40b5ea0 | 2013-09-04 12:16:23 -0400 | [diff] [blame] | 2180 | trace_rpc_socket_connect(xprt, sock, 0); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2181 | status = 0; |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2182 | out: |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2183 | xprt_clear_connecting(xprt); |
Trond Myklebust | cf76785 | 2018-12-17 17:38:51 -0500 | [diff] [blame] | 2184 | xprt_unlock_connect(xprt, transport); |
Trond Myklebust | 7d1e825 | 2009-03-11 14:38:03 -0400 | [diff] [blame] | 2185 | xprt_wake_pending_tasks(xprt, status); |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2186 | } |
| 2187 | |
Trond Myklebust | 4876cc7 | 2015-06-19 16:17:57 -0400 | [diff] [blame] | 2188 | /** |
| 2189 | * xs_tcp_shutdown - gracefully shut down a TCP socket |
| 2190 | * @xprt: transport |
| 2191 | * |
| 2192 | * Initiates a graceful shutdown of the TCP socket by calling the |
| 2193 | * equivalent of shutdown(SHUT_RDWR); |
| 2194 | */ |
| 2195 | static void xs_tcp_shutdown(struct rpc_xprt *xprt) |
| 2196 | { |
| 2197 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
| 2198 | struct socket *sock = transport->sock; |
Trond Myklebust | 9b30889 | 2018-02-05 10:20:06 -0500 | [diff] [blame] | 2199 | int skst = transport->inet ? transport->inet->sk_state : TCP_CLOSE; |
Trond Myklebust | 4876cc7 | 2015-06-19 16:17:57 -0400 | [diff] [blame] | 2200 | |
| 2201 | if (sock == NULL) |
| 2202 | return; |
Trond Myklebust | 9b30889 | 2018-02-05 10:20:06 -0500 | [diff] [blame] | 2203 | switch (skst) { |
| 2204 | default: |
Trond Myklebust | 4876cc7 | 2015-06-19 16:17:57 -0400 | [diff] [blame] | 2205 | kernel_sock_shutdown(sock, SHUT_RDWR); |
| 2206 | trace_rpc_socket_shutdown(xprt, sock); |
Trond Myklebust | 9b30889 | 2018-02-05 10:20:06 -0500 | [diff] [blame] | 2207 | break; |
| 2208 | case TCP_CLOSE: |
| 2209 | case TCP_TIME_WAIT: |
Trond Myklebust | 4876cc7 | 2015-06-19 16:17:57 -0400 | [diff] [blame] | 2210 | xs_reset_transport(transport); |
Trond Myklebust | 9b30889 | 2018-02-05 10:20:06 -0500 | [diff] [blame] | 2211 | } |
Trond Myklebust | 4876cc7 | 2015-06-19 16:17:57 -0400 | [diff] [blame] | 2212 | } |
| 2213 | |
Trond Myklebust | 8d1b8c6 | 2017-02-08 11:17:53 -0500 | [diff] [blame] | 2214 | static void xs_tcp_set_socket_timeouts(struct rpc_xprt *xprt, |
| 2215 | struct socket *sock) |
| 2216 | { |
Trond Myklebust | 7196dbb | 2017-02-08 11:17:54 -0500 | [diff] [blame] | 2217 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
| 2218 | unsigned int keepidle; |
| 2219 | unsigned int keepcnt; |
Trond Myklebust | 8d1b8c6 | 2017-02-08 11:17:53 -0500 | [diff] [blame] | 2220 | unsigned int opt_on = 1; |
| 2221 | unsigned int timeo; |
| 2222 | |
Trond Myklebust | b5e9241 | 2019-05-02 11:21:08 -0400 | [diff] [blame] | 2223 | spin_lock(&xprt->transport_lock); |
Trond Myklebust | 7196dbb | 2017-02-08 11:17:54 -0500 | [diff] [blame] | 2224 | keepidle = DIV_ROUND_UP(xprt->timeout->to_initval, HZ); |
| 2225 | keepcnt = xprt->timeout->to_retries + 1; |
| 2226 | timeo = jiffies_to_msecs(xprt->timeout->to_initval) * |
| 2227 | (xprt->timeout->to_retries + 1); |
| 2228 | clear_bit(XPRT_SOCK_UPD_TIMEOUT, &transport->sock_state); |
Trond Myklebust | b5e9241 | 2019-05-02 11:21:08 -0400 | [diff] [blame] | 2229 | spin_unlock(&xprt->transport_lock); |
Trond Myklebust | 7196dbb | 2017-02-08 11:17:54 -0500 | [diff] [blame] | 2230 | |
Trond Myklebust | 8d1b8c6 | 2017-02-08 11:17:53 -0500 | [diff] [blame] | 2231 | /* TCP Keepalive options */ |
| 2232 | kernel_setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, |
| 2233 | (char *)&opt_on, sizeof(opt_on)); |
| 2234 | kernel_setsockopt(sock, SOL_TCP, TCP_KEEPIDLE, |
| 2235 | (char *)&keepidle, sizeof(keepidle)); |
| 2236 | kernel_setsockopt(sock, SOL_TCP, TCP_KEEPINTVL, |
| 2237 | (char *)&keepidle, sizeof(keepidle)); |
| 2238 | kernel_setsockopt(sock, SOL_TCP, TCP_KEEPCNT, |
| 2239 | (char *)&keepcnt, sizeof(keepcnt)); |
| 2240 | |
| 2241 | /* TCP user timeout (see RFC5482) */ |
Trond Myklebust | 8d1b8c6 | 2017-02-08 11:17:53 -0500 | [diff] [blame] | 2242 | kernel_setsockopt(sock, SOL_TCP, TCP_USER_TIMEOUT, |
| 2243 | (char *)&timeo, sizeof(timeo)); |
| 2244 | } |
| 2245 | |
Trond Myklebust | 7196dbb | 2017-02-08 11:17:54 -0500 | [diff] [blame] | 2246 | static void xs_tcp_set_connect_timeout(struct rpc_xprt *xprt, |
| 2247 | unsigned long connect_timeout, |
| 2248 | unsigned long reconnect_timeout) |
| 2249 | { |
| 2250 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
| 2251 | struct rpc_timeout to; |
| 2252 | unsigned long initval; |
| 2253 | |
Trond Myklebust | b5e9241 | 2019-05-02 11:21:08 -0400 | [diff] [blame] | 2254 | spin_lock(&xprt->transport_lock); |
Trond Myklebust | 7196dbb | 2017-02-08 11:17:54 -0500 | [diff] [blame] | 2255 | if (reconnect_timeout < xprt->max_reconnect_timeout) |
| 2256 | xprt->max_reconnect_timeout = reconnect_timeout; |
| 2257 | if (connect_timeout < xprt->connect_timeout) { |
| 2258 | memcpy(&to, xprt->timeout, sizeof(to)); |
| 2259 | initval = DIV_ROUND_UP(connect_timeout, to.to_retries + 1); |
| 2260 | /* Arbitrary lower limit */ |
| 2261 | if (initval < XS_TCP_INIT_REEST_TO << 1) |
| 2262 | initval = XS_TCP_INIT_REEST_TO << 1; |
| 2263 | to.to_initval = initval; |
| 2264 | to.to_maxval = initval; |
| 2265 | memcpy(&transport->tcp_timeout, &to, |
| 2266 | sizeof(transport->tcp_timeout)); |
| 2267 | xprt->timeout = &transport->tcp_timeout; |
| 2268 | xprt->connect_timeout = connect_timeout; |
| 2269 | } |
| 2270 | set_bit(XPRT_SOCK_UPD_TIMEOUT, &transport->sock_state); |
Trond Myklebust | b5e9241 | 2019-05-02 11:21:08 -0400 | [diff] [blame] | 2271 | spin_unlock(&xprt->transport_lock); |
Trond Myklebust | 7196dbb | 2017-02-08 11:17:54 -0500 | [diff] [blame] | 2272 | } |
| 2273 | |
Chuck Lever | 16be2d2 | 2007-08-06 11:57:38 -0400 | [diff] [blame] | 2274 | static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock) |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2275 | { |
Chuck Lever | 16be2d2 | 2007-08-06 11:57:38 -0400 | [diff] [blame] | 2276 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
Trond Myklebust | fe19a96 | 2011-03-18 20:21:23 -0400 | [diff] [blame] | 2277 | int ret = -ENOTCONN; |
Chuck Lever | edb267a | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 2278 | |
Chuck Lever | ee0ac0c | 2006-12-05 16:35:15 -0500 | [diff] [blame] | 2279 | if (!transport->inet) { |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2280 | struct sock *sk = sock->sk; |
NeilBrown | d88e4d8 | 2016-08-04 16:24:28 +1000 | [diff] [blame] | 2281 | unsigned int addr_pref = IPV6_PREFER_SRC_PUBLIC; |
Trond Myklebust | 7f260e8 | 2013-09-24 11:25:22 -0400 | [diff] [blame] | 2282 | |
NeilBrown | d88e4d8 | 2016-08-04 16:24:28 +1000 | [diff] [blame] | 2283 | /* Avoid temporary address, they are bad for long-lived |
| 2284 | * connections such as NFS mounts. |
| 2285 | * RFC4941, section 3.6 suggests that: |
| 2286 | * Individual applications, which have specific |
| 2287 | * knowledge about the normal duration of connections, |
| 2288 | * MAY override this as appropriate. |
| 2289 | */ |
| 2290 | kernel_setsockopt(sock, SOL_IPV6, IPV6_ADDR_PREFERENCES, |
| 2291 | (char *)&addr_pref, sizeof(addr_pref)); |
| 2292 | |
Trond Myklebust | 8d1b8c6 | 2017-02-08 11:17:53 -0500 | [diff] [blame] | 2293 | xs_tcp_set_socket_timeouts(xprt, sock); |
Trond Myklebust | 775f06a | 2015-06-20 15:31:54 -0400 | [diff] [blame] | 2294 | |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2295 | write_lock_bh(&sk->sk_callback_lock); |
| 2296 | |
Trond Myklebust | 2a9e1cf | 2008-10-28 15:21:39 -0400 | [diff] [blame] | 2297 | xs_save_old_callbacks(transport, sk); |
| 2298 | |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2299 | sk->sk_user_data = xprt; |
Trond Myklebust | 5157b95 | 2016-05-29 10:13:24 -0400 | [diff] [blame] | 2300 | sk->sk_data_ready = xs_data_ready; |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2301 | sk->sk_state_change = xs_tcp_state_change; |
| 2302 | sk->sk_write_space = xs_tcp_write_space; |
Eric Dumazet | b4411457 | 2016-05-12 21:41:39 -0700 | [diff] [blame] | 2303 | sock_set_flag(sk, SOCK_FASYNC); |
Trond Myklebust | 2118071 | 2013-12-31 13:22:59 -0500 | [diff] [blame] | 2304 | sk->sk_error_report = xs_error_report; |
Chuck Lever | 3167e12 | 2005-08-25 16:25:55 -0700 | [diff] [blame] | 2305 | |
| 2306 | /* socket options */ |
Chuck Lever | 3167e12 | 2005-08-25 16:25:55 -0700 | [diff] [blame] | 2307 | sock_reset_flag(sk, SOCK_LINGER); |
Chuck Lever | 3167e12 | 2005-08-25 16:25:55 -0700 | [diff] [blame] | 2308 | tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF; |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2309 | |
| 2310 | xprt_clear_connected(xprt); |
| 2311 | |
| 2312 | /* Reset to new socket */ |
Chuck Lever | ee0ac0c | 2006-12-05 16:35:15 -0500 | [diff] [blame] | 2313 | transport->sock = sock; |
| 2314 | transport->inet = sk; |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2315 | |
| 2316 | write_unlock_bh(&sk->sk_callback_lock); |
| 2317 | } |
| 2318 | |
Trond Myklebust | 01d37c4 | 2009-03-11 14:09:39 -0400 | [diff] [blame] | 2319 | if (!xprt_bound(xprt)) |
Trond Myklebust | fe19a96 | 2011-03-18 20:21:23 -0400 | [diff] [blame] | 2320 | goto out; |
Trond Myklebust | 01d37c4 | 2009-03-11 14:09:39 -0400 | [diff] [blame] | 2321 | |
Mel Gorman | a564b8f | 2012-07-31 16:45:12 -0700 | [diff] [blame] | 2322 | xs_set_memalloc(xprt); |
| 2323 | |
Trond Myklebust | ae05355 | 2019-02-20 14:56:20 -0500 | [diff] [blame] | 2324 | xs_stream_start_connect(transport); |
Trond Myklebust | e1806c7 | 2018-08-13 16:50:49 -0400 | [diff] [blame] | 2325 | |
Chuck Lever | b0d93ad | 2005-08-11 16:25:53 -0400 | [diff] [blame] | 2326 | /* Tell the socket layer to start connecting... */ |
Trond Myklebust | 0fdea1e | 2015-09-16 23:43:17 -0400 | [diff] [blame] | 2327 | set_bit(XPRT_SOCK_CONNECTING, &transport->sock_state); |
Trond Myklebust | fe19a96 | 2011-03-18 20:21:23 -0400 | [diff] [blame] | 2328 | ret = kernel_connect(sock, xs_addr(xprt), xprt->addrlen, O_NONBLOCK); |
| 2329 | switch (ret) { |
| 2330 | case 0: |
Trond Myklebust | 4dda9c8 | 2015-02-08 15:00:06 -0500 | [diff] [blame] | 2331 | xs_set_srcport(transport, sock); |
Gustavo A. R. Silva | e9d4763 | 2017-10-20 11:48:30 -0500 | [diff] [blame] | 2332 | /* fall through */ |
Trond Myklebust | fe19a96 | 2011-03-18 20:21:23 -0400 | [diff] [blame] | 2333 | case -EINPROGRESS: |
| 2334 | /* SYN_SENT! */ |
Trond Myklebust | fe19a96 | 2011-03-18 20:21:23 -0400 | [diff] [blame] | 2335 | if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO) |
| 2336 | xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO; |
Trond Myklebust | 1f4c17a | 2016-08-01 13:36:08 -0400 | [diff] [blame] | 2337 | break; |
| 2338 | case -EADDRNOTAVAIL: |
| 2339 | /* Source port number is unavailable. Try a new one! */ |
| 2340 | transport->srcport = 0; |
Trond Myklebust | fe19a96 | 2011-03-18 20:21:23 -0400 | [diff] [blame] | 2341 | } |
| 2342 | out: |
| 2343 | return ret; |
Chuck Lever | 16be2d2 | 2007-08-06 11:57:38 -0400 | [diff] [blame] | 2344 | } |
| 2345 | |
| 2346 | /** |
Trond Myklebust | b61d59f | 2009-03-11 14:38:04 -0400 | [diff] [blame] | 2347 | * xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint |
Chuck Lever | acf0a39 | 2018-12-19 11:00:22 -0500 | [diff] [blame] | 2348 | * @work: queued work item |
Chuck Lever | 16be2d2 | 2007-08-06 11:57:38 -0400 | [diff] [blame] | 2349 | * |
| 2350 | * Invoked by a work queue tasklet. |
| 2351 | */ |
Pavel Emelyanov | cdd518d | 2010-10-04 16:57:40 +0400 | [diff] [blame] | 2352 | static void xs_tcp_setup_socket(struct work_struct *work) |
Chuck Lever | 16be2d2 | 2007-08-06 11:57:38 -0400 | [diff] [blame] | 2353 | { |
Pavel Emelyanov | cdd518d | 2010-10-04 16:57:40 +0400 | [diff] [blame] | 2354 | struct sock_xprt *transport = |
| 2355 | container_of(work, struct sock_xprt, connect_worker.work); |
Chuck Lever | 16be2d2 | 2007-08-06 11:57:38 -0400 | [diff] [blame] | 2356 | struct socket *sock = transport->sock; |
Pavel Emelyanov | a9f5f0f | 2010-10-04 16:52:25 +0400 | [diff] [blame] | 2357 | struct rpc_xprt *xprt = &transport->xprt; |
Trond Myklebust | b61d59f | 2009-03-11 14:38:04 -0400 | [diff] [blame] | 2358 | int status = -EIO; |
Chuck Lever | 16be2d2 | 2007-08-06 11:57:38 -0400 | [diff] [blame] | 2359 | |
Chuck Lever | 16be2d2 | 2007-08-06 11:57:38 -0400 | [diff] [blame] | 2360 | if (!sock) { |
Pavel Emelyanov | cdd518d | 2010-10-04 16:57:40 +0400 | [diff] [blame] | 2361 | sock = xs_create_sock(xprt, transport, |
Trond Myklebust | 4dda9c8 | 2015-02-08 15:00:06 -0500 | [diff] [blame] | 2362 | xs_addr(xprt)->sa_family, SOCK_STREAM, |
| 2363 | IPPROTO_TCP, true); |
Trond Myklebust | b61d59f | 2009-03-11 14:38:04 -0400 | [diff] [blame] | 2364 | if (IS_ERR(sock)) { |
| 2365 | status = PTR_ERR(sock); |
Chuck Lever | 16be2d2 | 2007-08-06 11:57:38 -0400 | [diff] [blame] | 2366 | goto out; |
| 2367 | } |
Trond Myklebust | 7d1e825 | 2009-03-11 14:38:03 -0400 | [diff] [blame] | 2368 | } |
| 2369 | |
Chuck Lever | c740eff | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 2370 | dprintk("RPC: worker connecting xprt %p via %s to " |
| 2371 | "%s (port %s)\n", xprt, |
| 2372 | xprt->address_strings[RPC_DISPLAY_PROTO], |
| 2373 | xprt->address_strings[RPC_DISPLAY_ADDR], |
| 2374 | xprt->address_strings[RPC_DISPLAY_PORT]); |
Chuck Lever | 16be2d2 | 2007-08-06 11:57:38 -0400 | [diff] [blame] | 2375 | |
| 2376 | status = xs_tcp_finish_connecting(xprt, sock); |
Trond Myklebust | 40b5ea0 | 2013-09-04 12:16:23 -0400 | [diff] [blame] | 2377 | trace_rpc_socket_connect(xprt, sock, status); |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 2378 | dprintk("RPC: %p connect status %d connected %d sock state %d\n", |
| 2379 | xprt, -status, xprt_connected(xprt), |
| 2380 | sock->sk->sk_state); |
Trond Myklebust | 2a49199 | 2009-03-11 14:38:00 -0400 | [diff] [blame] | 2381 | switch (status) { |
Trond Myklebust | f75e674 | 2009-04-21 17:18:20 -0400 | [diff] [blame] | 2382 | default: |
| 2383 | printk("%s: connect returned unhandled error %d\n", |
| 2384 | __func__, status); |
Gustavo A. R. Silva | e9d4763 | 2017-10-20 11:48:30 -0500 | [diff] [blame] | 2385 | /* fall through */ |
Trond Myklebust | f75e674 | 2009-04-21 17:18:20 -0400 | [diff] [blame] | 2386 | case -EADDRNOTAVAIL: |
| 2387 | /* We're probably in TIME_WAIT. Get rid of existing socket, |
| 2388 | * and retry |
| 2389 | */ |
Trond Myklebust | a519fc7 | 2012-09-12 16:49:15 -0400 | [diff] [blame] | 2390 | xs_tcp_force_close(xprt); |
Trond Myklebust | 88b5ed7 | 2009-06-17 13:22:57 -0700 | [diff] [blame] | 2391 | break; |
Trond Myklebust | 2a49199 | 2009-03-11 14:38:00 -0400 | [diff] [blame] | 2392 | case 0: |
| 2393 | case -EINPROGRESS: |
| 2394 | case -EALREADY: |
Trond Myklebust | 718ba5b | 2015-02-08 18:19:25 -0500 | [diff] [blame] | 2395 | xprt_unlock_connect(xprt, transport); |
Trond Myklebust | 7d1e825 | 2009-03-11 14:38:03 -0400 | [diff] [blame] | 2396 | return; |
Trond Myklebust | 9fcfe0c | 2010-03-02 13:06:21 -0500 | [diff] [blame] | 2397 | case -EINVAL: |
| 2398 | /* Happens, for instance, if the user specified a link |
| 2399 | * local IPv6 address without a scope-id. |
| 2400 | */ |
Trond Myklebust | 3ed5e2a | 2013-03-04 17:29:33 -0500 | [diff] [blame] | 2401 | case -ECONNREFUSED: |
| 2402 | case -ECONNRESET: |
Trond Myklebust | eb5b46f | 2017-11-30 07:21:33 -0500 | [diff] [blame] | 2403 | case -ENETDOWN: |
Trond Myklebust | 3ed5e2a | 2013-03-04 17:29:33 -0500 | [diff] [blame] | 2404 | case -ENETUNREACH: |
Trond Myklebust | 4ba161a | 2017-11-24 12:00:24 -0500 | [diff] [blame] | 2405 | case -EHOSTUNREACH: |
Trond Myklebust | 3913c78 | 2015-02-08 21:44:04 -0500 | [diff] [blame] | 2406 | case -EADDRINUSE: |
Trond Myklebust | 3601c4a | 2014-06-30 13:42:19 -0400 | [diff] [blame] | 2407 | case -ENOBUFS: |
NeilBrown | 6ea44ad | 2017-05-25 17:00:32 +1000 | [diff] [blame] | 2408 | /* |
| 2409 | * xs_tcp_force_close() wakes tasks with -EIO. |
| 2410 | * We need to wake them first to ensure the |
| 2411 | * correct error code. |
| 2412 | */ |
| 2413 | xprt_wake_pending_tasks(xprt, status); |
Trond Myklebust | 4efdd92 | 2015-02-08 15:34:28 -0500 | [diff] [blame] | 2414 | xs_tcp_force_close(xprt); |
Trond Myklebust | 9fcfe0c | 2010-03-02 13:06:21 -0500 | [diff] [blame] | 2415 | goto out; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2416 | } |
Trond Myklebust | 2a49199 | 2009-03-11 14:38:00 -0400 | [diff] [blame] | 2417 | status = -EAGAIN; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2418 | out: |
Chuck Lever | 2226feb | 2005-08-11 16:25:38 -0400 | [diff] [blame] | 2419 | xprt_clear_connecting(xprt); |
Trond Myklebust | cf76785 | 2018-12-17 17:38:51 -0500 | [diff] [blame] | 2420 | xprt_unlock_connect(xprt, transport); |
Trond Myklebust | 7d1e825 | 2009-03-11 14:38:03 -0400 | [diff] [blame] | 2421 | xprt_wake_pending_tasks(xprt, status); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2422 | } |
| 2423 | |
Chuck Lever | 68e220b | 2007-08-06 11:57:48 -0400 | [diff] [blame] | 2424 | /** |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 2425 | * xs_connect - connect a socket to a remote endpoint |
Trond Myklebust | 1b09209 | 2013-01-08 09:26:49 -0500 | [diff] [blame] | 2426 | * @xprt: pointer to transport structure |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 2427 | * @task: address of RPC task that manages state of connect request |
| 2428 | * |
| 2429 | * TCP: If the remote end dropped the connection, delay reconnecting. |
Chuck Lever | 03bf4b7 | 2005-08-25 16:25:55 -0700 | [diff] [blame] | 2430 | * |
| 2431 | * UDP socket connects are synchronous, but we use a work queue anyway |
| 2432 | * to guarantee that even unprivileged user processes can set up a |
| 2433 | * socket on a privileged port. |
| 2434 | * |
| 2435 | * If a UDP socket connect fails, the delay behavior here prevents |
| 2436 | * retry floods (hard mounts). |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 2437 | */ |
Trond Myklebust | 1b09209 | 2013-01-08 09:26:49 -0500 | [diff] [blame] | 2438 | static void xs_connect(struct rpc_xprt *xprt, struct rpc_task *task) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2439 | { |
Chuck Lever | ee0ac0c | 2006-12-05 16:35:15 -0500 | [diff] [blame] | 2440 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
Trond Myklebust | 0291017 | 2016-08-04 00:00:33 -0400 | [diff] [blame] | 2441 | unsigned long delay = 0; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2442 | |
Trond Myklebust | 718ba5b | 2015-02-08 18:19:25 -0500 | [diff] [blame] | 2443 | WARN_ON_ONCE(!xprt_lock_connect(xprt, task, transport)); |
| 2444 | |
Trond Myklebust | 99b1a4c | 2015-08-13 15:33:51 -0400 | [diff] [blame] | 2445 | if (transport->sock != NULL) { |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 2446 | dprintk("RPC: xs_connect delayed xprt %p for %lu " |
| 2447 | "seconds\n", |
Chuck Lever | 03bf4b7 | 2005-08-25 16:25:55 -0700 | [diff] [blame] | 2448 | xprt, xprt->reestablish_timeout / HZ); |
Trond Myklebust | 99b1a4c | 2015-08-13 15:33:51 -0400 | [diff] [blame] | 2449 | |
| 2450 | /* Start by resetting any existing state */ |
| 2451 | xs_reset_transport(transport); |
| 2452 | |
Chuck Lever | 675dd90 | 2019-06-19 10:33:42 -0400 | [diff] [blame] | 2453 | delay = xprt_reconnect_delay(xprt); |
| 2454 | xprt_reconnect_backoff(xprt, XS_TCP_INIT_REEST_TO); |
Trond Myklebust | 0291017 | 2016-08-04 00:00:33 -0400 | [diff] [blame] | 2455 | |
Trond Myklebust | 0291017 | 2016-08-04 00:00:33 -0400 | [diff] [blame] | 2456 | } else |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 2457 | dprintk("RPC: xs_connect scheduled xprt %p\n", xprt); |
Trond Myklebust | 0291017 | 2016-08-04 00:00:33 -0400 | [diff] [blame] | 2458 | |
| 2459 | queue_delayed_work(xprtiod_workqueue, |
| 2460 | &transport->connect_worker, |
| 2461 | delay); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2462 | } |
| 2463 | |
Trond Myklebust | 4f8943f | 2019-05-01 16:28:29 -0400 | [diff] [blame] | 2464 | static void xs_wake_disconnect(struct sock_xprt *transport) |
| 2465 | { |
| 2466 | if (test_and_clear_bit(XPRT_SOCK_WAKE_DISCONNECT, &transport->sock_state)) |
| 2467 | xs_tcp_force_close(&transport->xprt); |
| 2468 | } |
| 2469 | |
| 2470 | static void xs_wake_write(struct sock_xprt *transport) |
| 2471 | { |
| 2472 | if (test_and_clear_bit(XPRT_SOCK_WAKE_WRITE, &transport->sock_state)) |
| 2473 | xprt_write_space(&transport->xprt); |
| 2474 | } |
| 2475 | |
| 2476 | static void xs_wake_error(struct sock_xprt *transport) |
| 2477 | { |
| 2478 | int sockerr; |
| 2479 | int sockerr_len = sizeof(sockerr); |
| 2480 | |
| 2481 | if (!test_bit(XPRT_SOCK_WAKE_ERROR, &transport->sock_state)) |
| 2482 | return; |
| 2483 | mutex_lock(&transport->recv_mutex); |
| 2484 | if (transport->sock == NULL) |
| 2485 | goto out; |
| 2486 | if (!test_and_clear_bit(XPRT_SOCK_WAKE_ERROR, &transport->sock_state)) |
| 2487 | goto out; |
| 2488 | if (kernel_getsockopt(transport->sock, SOL_SOCKET, SO_ERROR, |
| 2489 | (char *)&sockerr, &sockerr_len) != 0) |
| 2490 | goto out; |
| 2491 | if (sockerr < 0) |
| 2492 | xprt_wake_pending_tasks(&transport->xprt, sockerr); |
| 2493 | out: |
| 2494 | mutex_unlock(&transport->recv_mutex); |
| 2495 | } |
| 2496 | |
| 2497 | static void xs_wake_pending(struct sock_xprt *transport) |
| 2498 | { |
| 2499 | if (test_and_clear_bit(XPRT_SOCK_WAKE_PENDING, &transport->sock_state)) |
| 2500 | xprt_wake_pending_tasks(&transport->xprt, -EAGAIN); |
| 2501 | } |
| 2502 | |
| 2503 | static void xs_error_handle(struct work_struct *work) |
| 2504 | { |
| 2505 | struct sock_xprt *transport = container_of(work, |
| 2506 | struct sock_xprt, error_worker); |
| 2507 | |
| 2508 | xs_wake_disconnect(transport); |
| 2509 | xs_wake_write(transport); |
| 2510 | xs_wake_error(transport); |
| 2511 | xs_wake_pending(transport); |
| 2512 | } |
| 2513 | |
Chuck Lever | 262ca07 | 2006-03-20 13:44:16 -0500 | [diff] [blame] | 2514 | /** |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2515 | * xs_local_print_stats - display AF_LOCAL socket-specifc stats |
| 2516 | * @xprt: rpc_xprt struct containing statistics |
| 2517 | * @seq: output file |
| 2518 | * |
| 2519 | */ |
| 2520 | static void xs_local_print_stats(struct rpc_xprt *xprt, struct seq_file *seq) |
| 2521 | { |
| 2522 | long idle_time = 0; |
| 2523 | |
| 2524 | if (xprt_connected(xprt)) |
| 2525 | idle_time = (long)(jiffies - xprt->last_used) / HZ; |
| 2526 | |
| 2527 | seq_printf(seq, "\txprt:\tlocal %lu %lu %lu %ld %lu %lu %lu " |
Andy Adamson | 15a4520 | 2012-02-14 16:19:18 -0500 | [diff] [blame] | 2528 | "%llu %llu %lu %llu %llu\n", |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2529 | xprt->stat.bind_count, |
| 2530 | xprt->stat.connect_count, |
Chuck Lever | 8440a88 | 2018-10-01 14:25:41 -0400 | [diff] [blame] | 2531 | xprt->stat.connect_time / HZ, |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2532 | idle_time, |
| 2533 | xprt->stat.sends, |
| 2534 | xprt->stat.recvs, |
| 2535 | xprt->stat.bad_xids, |
| 2536 | xprt->stat.req_u, |
Andy Adamson | 15a4520 | 2012-02-14 16:19:18 -0500 | [diff] [blame] | 2537 | xprt->stat.bklog_u, |
| 2538 | xprt->stat.max_slots, |
| 2539 | xprt->stat.sending_u, |
| 2540 | xprt->stat.pending_u); |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2541 | } |
| 2542 | |
| 2543 | /** |
Chuck Lever | 262ca07 | 2006-03-20 13:44:16 -0500 | [diff] [blame] | 2544 | * xs_udp_print_stats - display UDP socket-specifc stats |
| 2545 | * @xprt: rpc_xprt struct containing statistics |
| 2546 | * @seq: output file |
| 2547 | * |
| 2548 | */ |
| 2549 | static void xs_udp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq) |
| 2550 | { |
Chuck Lever | c847546 | 2006-12-05 16:35:26 -0500 | [diff] [blame] | 2551 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
| 2552 | |
Andy Adamson | 15a4520 | 2012-02-14 16:19:18 -0500 | [diff] [blame] | 2553 | seq_printf(seq, "\txprt:\tudp %u %lu %lu %lu %lu %llu %llu " |
| 2554 | "%lu %llu %llu\n", |
Chuck Lever | fbfffbd | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 2555 | transport->srcport, |
Chuck Lever | 262ca07 | 2006-03-20 13:44:16 -0500 | [diff] [blame] | 2556 | xprt->stat.bind_count, |
| 2557 | xprt->stat.sends, |
| 2558 | xprt->stat.recvs, |
| 2559 | xprt->stat.bad_xids, |
| 2560 | xprt->stat.req_u, |
Andy Adamson | 15a4520 | 2012-02-14 16:19:18 -0500 | [diff] [blame] | 2561 | xprt->stat.bklog_u, |
| 2562 | xprt->stat.max_slots, |
| 2563 | xprt->stat.sending_u, |
| 2564 | xprt->stat.pending_u); |
Chuck Lever | 262ca07 | 2006-03-20 13:44:16 -0500 | [diff] [blame] | 2565 | } |
| 2566 | |
| 2567 | /** |
| 2568 | * xs_tcp_print_stats - display TCP socket-specifc stats |
| 2569 | * @xprt: rpc_xprt struct containing statistics |
| 2570 | * @seq: output file |
| 2571 | * |
| 2572 | */ |
| 2573 | static void xs_tcp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq) |
| 2574 | { |
Chuck Lever | c847546 | 2006-12-05 16:35:26 -0500 | [diff] [blame] | 2575 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
Chuck Lever | 262ca07 | 2006-03-20 13:44:16 -0500 | [diff] [blame] | 2576 | long idle_time = 0; |
| 2577 | |
| 2578 | if (xprt_connected(xprt)) |
| 2579 | idle_time = (long)(jiffies - xprt->last_used) / HZ; |
| 2580 | |
Andy Adamson | 15a4520 | 2012-02-14 16:19:18 -0500 | [diff] [blame] | 2581 | seq_printf(seq, "\txprt:\ttcp %u %lu %lu %lu %ld %lu %lu %lu " |
| 2582 | "%llu %llu %lu %llu %llu\n", |
Chuck Lever | fbfffbd | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 2583 | transport->srcport, |
Chuck Lever | 262ca07 | 2006-03-20 13:44:16 -0500 | [diff] [blame] | 2584 | xprt->stat.bind_count, |
| 2585 | xprt->stat.connect_count, |
Chuck Lever | 8440a88 | 2018-10-01 14:25:41 -0400 | [diff] [blame] | 2586 | xprt->stat.connect_time / HZ, |
Chuck Lever | 262ca07 | 2006-03-20 13:44:16 -0500 | [diff] [blame] | 2587 | idle_time, |
| 2588 | xprt->stat.sends, |
| 2589 | xprt->stat.recvs, |
| 2590 | xprt->stat.bad_xids, |
| 2591 | xprt->stat.req_u, |
Andy Adamson | 15a4520 | 2012-02-14 16:19:18 -0500 | [diff] [blame] | 2592 | xprt->stat.bklog_u, |
| 2593 | xprt->stat.max_slots, |
| 2594 | xprt->stat.sending_u, |
| 2595 | xprt->stat.pending_u); |
Chuck Lever | 262ca07 | 2006-03-20 13:44:16 -0500 | [diff] [blame] | 2596 | } |
| 2597 | |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2598 | /* |
| 2599 | * Allocate a bunch of pages for a scratch buffer for the rpc code. The reason |
| 2600 | * we allocate pages instead doing a kmalloc like rpc_malloc is because we want |
| 2601 | * to use the server side send routines. |
| 2602 | */ |
Chuck Lever | 5fe6eaa | 2016-09-15 10:55:20 -0400 | [diff] [blame] | 2603 | static int bc_malloc(struct rpc_task *task) |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2604 | { |
Chuck Lever | 5fe6eaa | 2016-09-15 10:55:20 -0400 | [diff] [blame] | 2605 | struct rpc_rqst *rqst = task->tk_rqstp; |
| 2606 | size_t size = rqst->rq_callsize; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2607 | struct page *page; |
| 2608 | struct rpc_buffer *buf; |
| 2609 | |
Chuck Lever | 5fe6eaa | 2016-09-15 10:55:20 -0400 | [diff] [blame] | 2610 | if (size > PAGE_SIZE - sizeof(struct rpc_buffer)) { |
| 2611 | WARN_ONCE(1, "xprtsock: large bc buffer request (size %zu)\n", |
| 2612 | size); |
| 2613 | return -EINVAL; |
| 2614 | } |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2615 | |
Weston Andros Adamson | b8a13d0 | 2012-10-23 10:43:43 -0400 | [diff] [blame] | 2616 | page = alloc_page(GFP_KERNEL); |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2617 | if (!page) |
Chuck Lever | 5fe6eaa | 2016-09-15 10:55:20 -0400 | [diff] [blame] | 2618 | return -ENOMEM; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2619 | |
| 2620 | buf = page_address(page); |
| 2621 | buf->len = PAGE_SIZE; |
| 2622 | |
Chuck Lever | 5fe6eaa | 2016-09-15 10:55:20 -0400 | [diff] [blame] | 2623 | rqst->rq_buffer = buf->data; |
Jeff Layton | 18e601d | 2016-10-24 20:33:23 -0400 | [diff] [blame] | 2624 | rqst->rq_rbuffer = (char *)rqst->rq_buffer + rqst->rq_callsize; |
Chuck Lever | 5fe6eaa | 2016-09-15 10:55:20 -0400 | [diff] [blame] | 2625 | return 0; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2626 | } |
| 2627 | |
| 2628 | /* |
| 2629 | * Free the space allocated in the bc_alloc routine |
| 2630 | */ |
Chuck Lever | 3435c74 | 2016-09-15 10:55:29 -0400 | [diff] [blame] | 2631 | static void bc_free(struct rpc_task *task) |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2632 | { |
Chuck Lever | 3435c74 | 2016-09-15 10:55:29 -0400 | [diff] [blame] | 2633 | void *buffer = task->tk_rqstp->rq_buffer; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2634 | struct rpc_buffer *buf; |
| 2635 | |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2636 | buf = container_of(buffer, struct rpc_buffer, data); |
| 2637 | free_page((unsigned long)buf); |
| 2638 | } |
| 2639 | |
| 2640 | /* |
| 2641 | * Use the svc_sock to send the callback. Must be called with svsk->sk_mutex |
| 2642 | * held. Borrows heavily from svc_tcp_sendto and xs_tcp_send_request. |
| 2643 | */ |
| 2644 | static int bc_sendto(struct rpc_rqst *req) |
| 2645 | { |
| 2646 | int len; |
| 2647 | struct xdr_buf *xbufp = &req->rq_snd_buf; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2648 | struct sock_xprt *transport = |
Chuck Lever | 067fb11 | 2019-02-11 11:24:37 -0500 | [diff] [blame] | 2649 | container_of(req->rq_xprt, struct sock_xprt, xprt); |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2650 | unsigned long headoff; |
| 2651 | unsigned long tailoff; |
Chuck Lever | 067fb11 | 2019-02-11 11:24:37 -0500 | [diff] [blame] | 2652 | struct page *tailpage; |
| 2653 | struct msghdr msg = { |
| 2654 | .msg_flags = MSG_MORE |
| 2655 | }; |
| 2656 | rpc_fraghdr marker = cpu_to_be32(RPC_LAST_STREAM_FRAGMENT | |
| 2657 | (u32)xbufp->len); |
| 2658 | struct kvec iov = { |
| 2659 | .iov_base = &marker, |
| 2660 | .iov_len = sizeof(marker), |
| 2661 | }; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2662 | |
Chuck Lever | 067fb11 | 2019-02-11 11:24:37 -0500 | [diff] [blame] | 2663 | len = kernel_sendmsg(transport->sock, &msg, &iov, 1, iov.iov_len); |
| 2664 | if (len != iov.iov_len) |
| 2665 | return -EAGAIN; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2666 | |
Chuck Lever | 067fb11 | 2019-02-11 11:24:37 -0500 | [diff] [blame] | 2667 | tailpage = NULL; |
| 2668 | if (xbufp->tail[0].iov_len) |
| 2669 | tailpage = virt_to_page(xbufp->tail[0].iov_base); |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2670 | tailoff = (unsigned long)xbufp->tail[0].iov_base & ~PAGE_MASK; |
| 2671 | headoff = (unsigned long)xbufp->head[0].iov_base & ~PAGE_MASK; |
Chuck Lever | 067fb11 | 2019-02-11 11:24:37 -0500 | [diff] [blame] | 2672 | len = svc_send_common(transport->sock, xbufp, |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2673 | virt_to_page(xbufp->head[0].iov_base), headoff, |
Chuck Lever | 067fb11 | 2019-02-11 11:24:37 -0500 | [diff] [blame] | 2674 | tailpage, tailoff); |
| 2675 | if (len != xbufp->len) |
| 2676 | return -EAGAIN; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2677 | return len; |
| 2678 | } |
| 2679 | |
| 2680 | /* |
| 2681 | * The send routine. Borrows from svc_send |
| 2682 | */ |
Trond Myklebust | adfa714 | 2018-09-03 23:58:59 -0400 | [diff] [blame] | 2683 | static int bc_send_request(struct rpc_rqst *req) |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2684 | { |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2685 | struct svc_xprt *xprt; |
Andrzej Hajda | 7fc5613 | 2015-09-24 16:00:09 +0200 | [diff] [blame] | 2686 | int len; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2687 | |
| 2688 | dprintk("sending request with xid: %08x\n", ntohl(req->rq_xid)); |
| 2689 | /* |
| 2690 | * Get the server socket associated with this callback xprt |
| 2691 | */ |
| 2692 | xprt = req->rq_xprt->bc_xprt; |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2693 | |
| 2694 | /* |
| 2695 | * Grab the mutex to serialize data as the connection is shared |
| 2696 | * with the fore channel |
| 2697 | */ |
Trond Myklebust | c544577 | 2018-09-03 23:39:27 -0400 | [diff] [blame] | 2698 | mutex_lock(&xprt->xpt_mutex); |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2699 | if (test_bit(XPT_DEAD, &xprt->xpt_flags)) |
| 2700 | len = -ENOTCONN; |
| 2701 | else |
| 2702 | len = bc_sendto(req); |
| 2703 | mutex_unlock(&xprt->xpt_mutex); |
| 2704 | |
| 2705 | if (len > 0) |
| 2706 | len = 0; |
| 2707 | |
| 2708 | return len; |
| 2709 | } |
| 2710 | |
| 2711 | /* |
| 2712 | * The close routine. Since this is client initiated, we do nothing |
| 2713 | */ |
| 2714 | |
| 2715 | static void bc_close(struct rpc_xprt *xprt) |
| 2716 | { |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2717 | } |
| 2718 | |
| 2719 | /* |
| 2720 | * The xprt destroy routine. Again, because this connection is client |
| 2721 | * initiated, we do nothing |
| 2722 | */ |
| 2723 | |
| 2724 | static void bc_destroy(struct rpc_xprt *xprt) |
| 2725 | { |
Kinglong Mee | 47f72ef | 2014-03-24 11:58:16 +0800 | [diff] [blame] | 2726 | dprintk("RPC: bc_destroy xprt %p\n", xprt); |
| 2727 | |
| 2728 | xs_xprt_free(xprt); |
| 2729 | module_put(THIS_MODULE); |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2730 | } |
| 2731 | |
Chuck Lever | d31ae25 | 2017-08-01 12:00:39 -0400 | [diff] [blame] | 2732 | static const struct rpc_xprt_ops xs_local_ops = { |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2733 | .reserve_xprt = xprt_reserve_xprt, |
Trond Myklebust | 4cd34e7 | 2018-08-31 10:00:02 -0400 | [diff] [blame] | 2734 | .release_xprt = xprt_release_xprt, |
Trond Myklebust | f39c1bf | 2012-09-07 11:08:50 -0400 | [diff] [blame] | 2735 | .alloc_slot = xprt_alloc_slot, |
Chuck Lever | a9cde23 | 2018-05-04 15:34:59 -0400 | [diff] [blame] | 2736 | .free_slot = xprt_free_slot, |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2737 | .rpcbind = xs_local_rpcbind, |
| 2738 | .set_port = xs_local_set_port, |
J. Bruce Fields | dc10740 | 2013-02-20 17:52:19 -0500 | [diff] [blame] | 2739 | .connect = xs_local_connect, |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2740 | .buf_alloc = rpc_malloc, |
| 2741 | .buf_free = rpc_free, |
Trond Myklebust | 550aebf | 2018-09-14 14:32:45 -0400 | [diff] [blame] | 2742 | .prepare_request = xs_stream_prepare_request, |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2743 | .send_request = xs_local_send_request, |
Trond Myklebust | 8ba6a92 | 2019-04-07 13:58:46 -0400 | [diff] [blame] | 2744 | .wait_for_reply_request = xprt_wait_for_reply_request_def, |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2745 | .close = xs_close, |
Trond Myklebust | a1311d8 | 2013-10-31 09:18:49 -0400 | [diff] [blame] | 2746 | .destroy = xs_destroy, |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2747 | .print_stats = xs_local_print_stats, |
Jeff Layton | d67fa4d | 2015-06-03 16:14:29 -0400 | [diff] [blame] | 2748 | .enable_swap = xs_enable_swap, |
| 2749 | .disable_swap = xs_disable_swap, |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2750 | }; |
| 2751 | |
Chuck Lever | d31ae25 | 2017-08-01 12:00:39 -0400 | [diff] [blame] | 2752 | static const struct rpc_xprt_ops xs_udp_ops = { |
Chuck Lever | 43118c2 | 2005-08-25 16:25:49 -0700 | [diff] [blame] | 2753 | .set_buffer_size = xs_udp_set_buffer_size, |
Chuck Lever | 12a8046 | 2005-08-25 16:25:51 -0700 | [diff] [blame] | 2754 | .reserve_xprt = xprt_reserve_xprt_cong, |
Chuck Lever | 49e9a89 | 2005-08-25 16:25:51 -0700 | [diff] [blame] | 2755 | .release_xprt = xprt_release_xprt_cong, |
Trond Myklebust | f39c1bf | 2012-09-07 11:08:50 -0400 | [diff] [blame] | 2756 | .alloc_slot = xprt_alloc_slot, |
Chuck Lever | a9cde23 | 2018-05-04 15:34:59 -0400 | [diff] [blame] | 2757 | .free_slot = xprt_free_slot, |
Chuck Lever | 45160d6 | 2007-07-01 12:13:17 -0400 | [diff] [blame] | 2758 | .rpcbind = rpcb_getport_async, |
Chuck Lever | 9220041 | 2006-01-03 09:55:51 +0100 | [diff] [blame] | 2759 | .set_port = xs_set_port, |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 2760 | .connect = xs_connect, |
Chuck Lever | 0210714 | 2006-01-03 09:55:49 +0100 | [diff] [blame] | 2761 | .buf_alloc = rpc_malloc, |
| 2762 | .buf_free = rpc_free, |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 2763 | .send_request = xs_udp_send_request, |
Trond Myklebust | 8ba6a92 | 2019-04-07 13:58:46 -0400 | [diff] [blame] | 2764 | .wait_for_reply_request = xprt_wait_for_reply_request_rtt, |
Chuck Lever | 46c0ee8 | 2005-08-25 16:25:52 -0700 | [diff] [blame] | 2765 | .timer = xs_udp_timer, |
Chuck Lever | a58dd39 | 2005-08-25 16:25:53 -0700 | [diff] [blame] | 2766 | .release_request = xprt_release_rqst_cong, |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 2767 | .close = xs_close, |
| 2768 | .destroy = xs_destroy, |
Chuck Lever | 262ca07 | 2006-03-20 13:44:16 -0500 | [diff] [blame] | 2769 | .print_stats = xs_udp_print_stats, |
Jeff Layton | d67fa4d | 2015-06-03 16:14:29 -0400 | [diff] [blame] | 2770 | .enable_swap = xs_enable_swap, |
| 2771 | .disable_swap = xs_disable_swap, |
Chuck Lever | 4a06825 | 2015-05-11 14:02:25 -0400 | [diff] [blame] | 2772 | .inject_disconnect = xs_inject_disconnect, |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 2773 | }; |
| 2774 | |
Chuck Lever | d31ae25 | 2017-08-01 12:00:39 -0400 | [diff] [blame] | 2775 | static const struct rpc_xprt_ops xs_tcp_ops = { |
Chuck Lever | 12a8046 | 2005-08-25 16:25:51 -0700 | [diff] [blame] | 2776 | .reserve_xprt = xprt_reserve_xprt, |
Trond Myklebust | 4cd34e7 | 2018-08-31 10:00:02 -0400 | [diff] [blame] | 2777 | .release_xprt = xprt_release_xprt, |
Trond Myklebust | 36bd7de | 2018-09-03 18:41:32 -0400 | [diff] [blame] | 2778 | .alloc_slot = xprt_alloc_slot, |
Chuck Lever | a9cde23 | 2018-05-04 15:34:59 -0400 | [diff] [blame] | 2779 | .free_slot = xprt_free_slot, |
Chuck Lever | 45160d6 | 2007-07-01 12:13:17 -0400 | [diff] [blame] | 2780 | .rpcbind = rpcb_getport_async, |
Chuck Lever | 9220041 | 2006-01-03 09:55:51 +0100 | [diff] [blame] | 2781 | .set_port = xs_set_port, |
Trond Myklebust | 0b9e794 | 2010-04-16 16:41:57 -0400 | [diff] [blame] | 2782 | .connect = xs_connect, |
Chuck Lever | 0210714 | 2006-01-03 09:55:49 +0100 | [diff] [blame] | 2783 | .buf_alloc = rpc_malloc, |
| 2784 | .buf_free = rpc_free, |
Trond Myklebust | 277e4ab | 2018-09-14 09:49:06 -0400 | [diff] [blame] | 2785 | .prepare_request = xs_stream_prepare_request, |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 2786 | .send_request = xs_tcp_send_request, |
Trond Myklebust | 8ba6a92 | 2019-04-07 13:58:46 -0400 | [diff] [blame] | 2787 | .wait_for_reply_request = xprt_wait_for_reply_request_def, |
Trond Myklebust | c627d31 | 2015-02-10 11:06:04 -0500 | [diff] [blame] | 2788 | .close = xs_tcp_shutdown, |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 2789 | .destroy = xs_destroy, |
Trond Myklebust | 7196dbb | 2017-02-08 11:17:54 -0500 | [diff] [blame] | 2790 | .set_connect_timeout = xs_tcp_set_connect_timeout, |
Chuck Lever | 262ca07 | 2006-03-20 13:44:16 -0500 | [diff] [blame] | 2791 | .print_stats = xs_tcp_print_stats, |
Jeff Layton | d67fa4d | 2015-06-03 16:14:29 -0400 | [diff] [blame] | 2792 | .enable_swap = xs_enable_swap, |
| 2793 | .disable_swap = xs_disable_swap, |
Chuck Lever | 4a06825 | 2015-05-11 14:02:25 -0400 | [diff] [blame] | 2794 | .inject_disconnect = xs_inject_disconnect, |
Chuck Lever | 42e5c3e | 2015-10-24 17:27:35 -0400 | [diff] [blame] | 2795 | #ifdef CONFIG_SUNRPC_BACKCHANNEL |
| 2796 | .bc_setup = xprt_setup_bc, |
Chuck Lever | 6b26cc8 | 2016-05-02 14:40:40 -0400 | [diff] [blame] | 2797 | .bc_maxpayload = xs_tcp_bc_maxpayload, |
Trond Myklebust | 7402a4f | 2019-07-16 13:51:29 -0400 | [diff] [blame] | 2798 | .bc_num_slots = xprt_bc_max_slots, |
Chuck Lever | 42e5c3e | 2015-10-24 17:27:35 -0400 | [diff] [blame] | 2799 | .bc_free_rqst = xprt_free_bc_rqst, |
| 2800 | .bc_destroy = xprt_destroy_bc, |
| 2801 | #endif |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2802 | }; |
| 2803 | |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2804 | /* |
| 2805 | * The rpc_xprt_ops for the server backchannel |
| 2806 | */ |
| 2807 | |
Chuck Lever | d31ae25 | 2017-08-01 12:00:39 -0400 | [diff] [blame] | 2808 | static const struct rpc_xprt_ops bc_tcp_ops = { |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2809 | .reserve_xprt = xprt_reserve_xprt, |
| 2810 | .release_xprt = xprt_release_xprt, |
Bryan Schumaker | 84e28a3 | 2012-09-24 13:39:01 -0400 | [diff] [blame] | 2811 | .alloc_slot = xprt_alloc_slot, |
Chuck Lever | a9cde23 | 2018-05-04 15:34:59 -0400 | [diff] [blame] | 2812 | .free_slot = xprt_free_slot, |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2813 | .buf_alloc = bc_malloc, |
| 2814 | .buf_free = bc_free, |
| 2815 | .send_request = bc_send_request, |
Trond Myklebust | 8ba6a92 | 2019-04-07 13:58:46 -0400 | [diff] [blame] | 2816 | .wait_for_reply_request = xprt_wait_for_reply_request_def, |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2817 | .close = bc_close, |
| 2818 | .destroy = bc_destroy, |
| 2819 | .print_stats = xs_tcp_print_stats, |
Jeff Layton | d67fa4d | 2015-06-03 16:14:29 -0400 | [diff] [blame] | 2820 | .enable_swap = xs_enable_swap, |
| 2821 | .disable_swap = xs_disable_swap, |
Chuck Lever | 4a06825 | 2015-05-11 14:02:25 -0400 | [diff] [blame] | 2822 | .inject_disconnect = xs_inject_disconnect, |
Rahul Iyer | 4cfc7e6 | 2009-09-10 17:32:28 +0300 | [diff] [blame] | 2823 | }; |
| 2824 | |
Chuck Lever | 9247685 | 2010-10-20 11:53:01 -0400 | [diff] [blame] | 2825 | static int xs_init_anyaddr(const int family, struct sockaddr *sap) |
| 2826 | { |
| 2827 | static const struct sockaddr_in sin = { |
| 2828 | .sin_family = AF_INET, |
| 2829 | .sin_addr.s_addr = htonl(INADDR_ANY), |
| 2830 | }; |
| 2831 | static const struct sockaddr_in6 sin6 = { |
| 2832 | .sin6_family = AF_INET6, |
| 2833 | .sin6_addr = IN6ADDR_ANY_INIT, |
| 2834 | }; |
| 2835 | |
| 2836 | switch (family) { |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2837 | case AF_LOCAL: |
| 2838 | break; |
Chuck Lever | 9247685 | 2010-10-20 11:53:01 -0400 | [diff] [blame] | 2839 | case AF_INET: |
| 2840 | memcpy(sap, &sin, sizeof(sin)); |
| 2841 | break; |
| 2842 | case AF_INET6: |
| 2843 | memcpy(sap, &sin6, sizeof(sin6)); |
| 2844 | break; |
| 2845 | default: |
| 2846 | dprintk("RPC: %s: Bad address family\n", __func__); |
| 2847 | return -EAFNOSUPPORT; |
| 2848 | } |
| 2849 | return 0; |
| 2850 | } |
| 2851 | |
\"Talpey, Thomas\ | 3c341b0b | 2007-09-10 13:47:07 -0400 | [diff] [blame] | 2852 | static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args, |
Trond Myklebust | d9ba131 | 2011-07-17 18:11:30 -0400 | [diff] [blame] | 2853 | unsigned int slot_table_size, |
| 2854 | unsigned int max_slot_table_size) |
Chuck Lever | c8541ec | 2006-10-17 14:44:27 -0400 | [diff] [blame] | 2855 | { |
| 2856 | struct rpc_xprt *xprt; |
Chuck Lever | ffc2e51 | 2006-12-05 16:35:11 -0500 | [diff] [blame] | 2857 | struct sock_xprt *new; |
Chuck Lever | c8541ec | 2006-10-17 14:44:27 -0400 | [diff] [blame] | 2858 | |
Frank van Maarseveen | 96802a0 | 2007-07-08 13:08:54 +0200 | [diff] [blame] | 2859 | if (args->addrlen > sizeof(xprt->addr)) { |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 2860 | dprintk("RPC: xs_setup_xprt: address too large\n"); |
Chuck Lever | c8541ec | 2006-10-17 14:44:27 -0400 | [diff] [blame] | 2861 | return ERR_PTR(-EBADF); |
| 2862 | } |
| 2863 | |
Trond Myklebust | d9ba131 | 2011-07-17 18:11:30 -0400 | [diff] [blame] | 2864 | xprt = xprt_alloc(args->net, sizeof(*new), slot_table_size, |
| 2865 | max_slot_table_size); |
Pavel Emelyanov | bd1722d | 2010-09-29 16:02:43 +0400 | [diff] [blame] | 2866 | if (xprt == NULL) { |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 2867 | dprintk("RPC: xs_setup_xprt: couldn't allocate " |
| 2868 | "rpc_xprt\n"); |
Chuck Lever | c8541ec | 2006-10-17 14:44:27 -0400 | [diff] [blame] | 2869 | return ERR_PTR(-ENOMEM); |
| 2870 | } |
| 2871 | |
Pavel Emelyanov | bd1722d | 2010-09-29 16:02:43 +0400 | [diff] [blame] | 2872 | new = container_of(xprt, struct sock_xprt, xprt); |
Trond Myklebust | edc1b01 | 2015-10-05 10:53:49 -0400 | [diff] [blame] | 2873 | mutex_init(&new->recv_mutex); |
Frank van Maarseveen | 96802a0 | 2007-07-08 13:08:54 +0200 | [diff] [blame] | 2874 | memcpy(&xprt->addr, args->dstaddr, args->addrlen); |
| 2875 | xprt->addrlen = args->addrlen; |
Frank van Maarseveen | d3bc9a1 | 2007-07-09 22:23:35 +0200 | [diff] [blame] | 2876 | if (args->srcaddr) |
Chuck Lever | fbfffbd | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 2877 | memcpy(&new->srcaddr, args->srcaddr, args->addrlen); |
Chuck Lever | 9247685 | 2010-10-20 11:53:01 -0400 | [diff] [blame] | 2878 | else { |
| 2879 | int err; |
| 2880 | err = xs_init_anyaddr(args->dstaddr->sa_family, |
| 2881 | (struct sockaddr *)&new->srcaddr); |
Stanislav Kinsbursky | 2aa1353 | 2011-11-10 14:33:23 +0300 | [diff] [blame] | 2882 | if (err != 0) { |
| 2883 | xprt_free(xprt); |
Chuck Lever | 9247685 | 2010-10-20 11:53:01 -0400 | [diff] [blame] | 2884 | return ERR_PTR(err); |
Stanislav Kinsbursky | 2aa1353 | 2011-11-10 14:33:23 +0300 | [diff] [blame] | 2885 | } |
Chuck Lever | 9247685 | 2010-10-20 11:53:01 -0400 | [diff] [blame] | 2886 | } |
Chuck Lever | c8541ec | 2006-10-17 14:44:27 -0400 | [diff] [blame] | 2887 | |
| 2888 | return xprt; |
| 2889 | } |
| 2890 | |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2891 | static const struct rpc_timeout xs_local_default_timeout = { |
| 2892 | .to_initval = 10 * HZ, |
| 2893 | .to_maxval = 10 * HZ, |
| 2894 | .to_retries = 2, |
| 2895 | }; |
| 2896 | |
| 2897 | /** |
| 2898 | * xs_setup_local - Set up transport to use an AF_LOCAL socket |
| 2899 | * @args: rpc transport creation arguments |
| 2900 | * |
| 2901 | * AF_LOCAL is a "tpi_cots_ord" transport, just like TCP |
| 2902 | */ |
| 2903 | static struct rpc_xprt *xs_setup_local(struct xprt_create *args) |
| 2904 | { |
| 2905 | struct sockaddr_un *sun = (struct sockaddr_un *)args->dstaddr; |
| 2906 | struct sock_xprt *transport; |
| 2907 | struct rpc_xprt *xprt; |
| 2908 | struct rpc_xprt *ret; |
| 2909 | |
Trond Myklebust | d9ba131 | 2011-07-17 18:11:30 -0400 | [diff] [blame] | 2910 | xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries, |
| 2911 | xprt_max_tcp_slot_table_entries); |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2912 | if (IS_ERR(xprt)) |
| 2913 | return xprt; |
| 2914 | transport = container_of(xprt, struct sock_xprt, xprt); |
| 2915 | |
| 2916 | xprt->prot = 0; |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2917 | xprt->max_payload = RPC_MAX_FRAGMENT_SIZE; |
| 2918 | |
| 2919 | xprt->bind_timeout = XS_BIND_TO; |
| 2920 | xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO; |
| 2921 | xprt->idle_timeout = XS_IDLE_DISC_TO; |
| 2922 | |
| 2923 | xprt->ops = &xs_local_ops; |
| 2924 | xprt->timeout = &xs_local_default_timeout; |
| 2925 | |
Trond Myklebust | 550aebf | 2018-09-14 14:32:45 -0400 | [diff] [blame] | 2926 | INIT_WORK(&transport->recv_worker, xs_stream_data_receive_workfn); |
Trond Myklebust | 4f8943f | 2019-05-01 16:28:29 -0400 | [diff] [blame] | 2927 | INIT_WORK(&transport->error_worker, xs_error_handle); |
Trond Myklebust | 550aebf | 2018-09-14 14:32:45 -0400 | [diff] [blame] | 2928 | INIT_DELAYED_WORK(&transport->connect_worker, xs_dummy_setup_socket); |
NeilBrown | 93dc41b | 2013-10-31 16:14:36 +1100 | [diff] [blame] | 2929 | |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2930 | switch (sun->sun_family) { |
| 2931 | case AF_LOCAL: |
| 2932 | if (sun->sun_path[0] != '/') { |
| 2933 | dprintk("RPC: bad AF_LOCAL address: %s\n", |
| 2934 | sun->sun_path); |
| 2935 | ret = ERR_PTR(-EINVAL); |
| 2936 | goto out_err; |
| 2937 | } |
| 2938 | xprt_set_bound(xprt); |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2939 | xs_format_peer_addresses(xprt, "local", RPCBIND_NETID_LOCAL); |
J. Bruce Fields | 7073ea8 | 2013-02-21 10:14:22 -0500 | [diff] [blame] | 2940 | ret = ERR_PTR(xs_local_setup_socket(transport)); |
| 2941 | if (ret) |
| 2942 | goto out_err; |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2943 | break; |
| 2944 | default: |
| 2945 | ret = ERR_PTR(-EAFNOSUPPORT); |
| 2946 | goto out_err; |
| 2947 | } |
| 2948 | |
| 2949 | dprintk("RPC: set up xprt to %s via AF_LOCAL\n", |
| 2950 | xprt->address_strings[RPC_DISPLAY_ADDR]); |
| 2951 | |
| 2952 | if (try_module_get(THIS_MODULE)) |
| 2953 | return xprt; |
| 2954 | ret = ERR_PTR(-EINVAL); |
| 2955 | out_err: |
Kinglong Mee | 315f381 | 2014-03-24 11:07:22 +0800 | [diff] [blame] | 2956 | xs_xprt_free(xprt); |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 2957 | return ret; |
| 2958 | } |
| 2959 | |
Trond Myklebust | 2881ae7 | 2007-12-20 16:03:54 -0500 | [diff] [blame] | 2960 | static const struct rpc_timeout xs_udp_default_timeout = { |
| 2961 | .to_initval = 5 * HZ, |
| 2962 | .to_maxval = 30 * HZ, |
| 2963 | .to_increment = 5 * HZ, |
| 2964 | .to_retries = 5, |
| 2965 | }; |
| 2966 | |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 2967 | /** |
| 2968 | * xs_setup_udp - Set up transport to use a UDP socket |
Frank van Maarseveen | 96802a0 | 2007-07-08 13:08:54 +0200 | [diff] [blame] | 2969 | * @args: rpc transport creation arguments |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 2970 | * |
| 2971 | */ |
Adrian Bunk | 483066d | 2007-10-24 18:24:02 +0200 | [diff] [blame] | 2972 | static struct rpc_xprt *xs_setup_udp(struct xprt_create *args) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2973 | { |
Chuck Lever | 8f9d5b1 | 2007-08-06 11:57:53 -0400 | [diff] [blame] | 2974 | struct sockaddr *addr = args->dstaddr; |
Chuck Lever | c8541ec | 2006-10-17 14:44:27 -0400 | [diff] [blame] | 2975 | struct rpc_xprt *xprt; |
Chuck Lever | c847546 | 2006-12-05 16:35:26 -0500 | [diff] [blame] | 2976 | struct sock_xprt *transport; |
J. Bruce Fields | 0a68b0b | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 2977 | struct rpc_xprt *ret; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2978 | |
Trond Myklebust | d9ba131 | 2011-07-17 18:11:30 -0400 | [diff] [blame] | 2979 | xprt = xs_setup_xprt(args, xprt_udp_slot_table_entries, |
| 2980 | xprt_udp_slot_table_entries); |
Chuck Lever | c8541ec | 2006-10-17 14:44:27 -0400 | [diff] [blame] | 2981 | if (IS_ERR(xprt)) |
| 2982 | return xprt; |
Chuck Lever | c847546 | 2006-12-05 16:35:26 -0500 | [diff] [blame] | 2983 | transport = container_of(xprt, struct sock_xprt, xprt); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2984 | |
Chuck Lever | ec739ef | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 2985 | xprt->prot = IPPROTO_UDP; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2986 | /* XXX: header size can vary due to auth type, IPv6, etc. */ |
| 2987 | xprt->max_payload = (1U << 16) - (MAX_HEADER << 3); |
| 2988 | |
Chuck Lever | 03bf4b7 | 2005-08-25 16:25:55 -0700 | [diff] [blame] | 2989 | xprt->bind_timeout = XS_BIND_TO; |
Chuck Lever | 03bf4b7 | 2005-08-25 16:25:55 -0700 | [diff] [blame] | 2990 | xprt->reestablish_timeout = XS_UDP_REEST_TO; |
| 2991 | xprt->idle_timeout = XS_IDLE_DISC_TO; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2992 | |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 2993 | xprt->ops = &xs_udp_ops; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2994 | |
Trond Myklebust | ba7392b | 2007-12-20 16:03:55 -0500 | [diff] [blame] | 2995 | xprt->timeout = &xs_udp_default_timeout; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 2996 | |
Trond Myklebust | f9b2ee7 | 2015-10-06 16:26:05 -0400 | [diff] [blame] | 2997 | INIT_WORK(&transport->recv_worker, xs_udp_data_receive_workfn); |
Trond Myklebust | 4f8943f | 2019-05-01 16:28:29 -0400 | [diff] [blame] | 2998 | INIT_WORK(&transport->error_worker, xs_error_handle); |
Trond Myklebust | edc1b01 | 2015-10-05 10:53:49 -0400 | [diff] [blame] | 2999 | INIT_DELAYED_WORK(&transport->connect_worker, xs_udp_setup_socket); |
| 3000 | |
Chuck Lever | 8f9d5b1 | 2007-08-06 11:57:53 -0400 | [diff] [blame] | 3001 | switch (addr->sa_family) { |
| 3002 | case AF_INET: |
| 3003 | if (((struct sockaddr_in *)addr)->sin_port != htons(0)) |
| 3004 | xprt_set_bound(xprt); |
| 3005 | |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 3006 | xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP); |
Chuck Lever | 8f9d5b1 | 2007-08-06 11:57:53 -0400 | [diff] [blame] | 3007 | break; |
| 3008 | case AF_INET6: |
| 3009 | if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0)) |
| 3010 | xprt_set_bound(xprt); |
| 3011 | |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 3012 | xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP6); |
Chuck Lever | 8f9d5b1 | 2007-08-06 11:57:53 -0400 | [diff] [blame] | 3013 | break; |
| 3014 | default: |
J. Bruce Fields | 0a68b0b | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 3015 | ret = ERR_PTR(-EAFNOSUPPORT); |
| 3016 | goto out_err; |
Chuck Lever | 8f9d5b1 | 2007-08-06 11:57:53 -0400 | [diff] [blame] | 3017 | } |
| 3018 | |
Chuck Lever | c740eff | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 3019 | if (xprt_bound(xprt)) |
| 3020 | dprintk("RPC: set up xprt to %s (port %s) via %s\n", |
| 3021 | xprt->address_strings[RPC_DISPLAY_ADDR], |
| 3022 | xprt->address_strings[RPC_DISPLAY_PORT], |
| 3023 | xprt->address_strings[RPC_DISPLAY_PROTO]); |
| 3024 | else |
| 3025 | dprintk("RPC: set up xprt to %s (autobind) via %s\n", |
| 3026 | xprt->address_strings[RPC_DISPLAY_ADDR], |
| 3027 | xprt->address_strings[RPC_DISPLAY_PROTO]); |
Chuck Lever | edb267a | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 3028 | |
\"Talpey, Thomas\ | bc25571 | 2007-09-10 13:46:39 -0400 | [diff] [blame] | 3029 | if (try_module_get(THIS_MODULE)) |
| 3030 | return xprt; |
J. Bruce Fields | 0a68b0b | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 3031 | ret = ERR_PTR(-EINVAL); |
| 3032 | out_err: |
Kinglong Mee | 315f381 | 2014-03-24 11:07:22 +0800 | [diff] [blame] | 3033 | xs_xprt_free(xprt); |
J. Bruce Fields | 0a68b0b | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 3034 | return ret; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 3035 | } |
| 3036 | |
Trond Myklebust | 2881ae7 | 2007-12-20 16:03:54 -0500 | [diff] [blame] | 3037 | static const struct rpc_timeout xs_tcp_default_timeout = { |
| 3038 | .to_initval = 60 * HZ, |
| 3039 | .to_maxval = 60 * HZ, |
| 3040 | .to_retries = 2, |
| 3041 | }; |
| 3042 | |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 3043 | /** |
| 3044 | * xs_setup_tcp - Set up transport to use a TCP socket |
Frank van Maarseveen | 96802a0 | 2007-07-08 13:08:54 +0200 | [diff] [blame] | 3045 | * @args: rpc transport creation arguments |
Chuck Lever | 9903cd1 | 2005-08-11 16:25:26 -0400 | [diff] [blame] | 3046 | * |
| 3047 | */ |
Adrian Bunk | 483066d | 2007-10-24 18:24:02 +0200 | [diff] [blame] | 3048 | static struct rpc_xprt *xs_setup_tcp(struct xprt_create *args) |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 3049 | { |
Chuck Lever | 8f9d5b1 | 2007-08-06 11:57:53 -0400 | [diff] [blame] | 3050 | struct sockaddr *addr = args->dstaddr; |
Chuck Lever | c8541ec | 2006-10-17 14:44:27 -0400 | [diff] [blame] | 3051 | struct rpc_xprt *xprt; |
Chuck Lever | c847546 | 2006-12-05 16:35:26 -0500 | [diff] [blame] | 3052 | struct sock_xprt *transport; |
J. Bruce Fields | 0a68b0b | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 3053 | struct rpc_xprt *ret; |
Trond Myklebust | b7993ce | 2013-04-14 11:42:00 -0400 | [diff] [blame] | 3054 | unsigned int max_slot_table_size = xprt_max_tcp_slot_table_entries; |
| 3055 | |
| 3056 | if (args->flags & XPRT_CREATE_INFINITE_SLOTS) |
| 3057 | max_slot_table_size = RPC_MAX_SLOT_TABLE_LIMIT; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 3058 | |
Trond Myklebust | d9ba131 | 2011-07-17 18:11:30 -0400 | [diff] [blame] | 3059 | xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries, |
Trond Myklebust | b7993ce | 2013-04-14 11:42:00 -0400 | [diff] [blame] | 3060 | max_slot_table_size); |
Chuck Lever | c8541ec | 2006-10-17 14:44:27 -0400 | [diff] [blame] | 3061 | if (IS_ERR(xprt)) |
| 3062 | return xprt; |
Chuck Lever | c847546 | 2006-12-05 16:35:26 -0500 | [diff] [blame] | 3063 | transport = container_of(xprt, struct sock_xprt, xprt); |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 3064 | |
Chuck Lever | ec739ef | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 3065 | xprt->prot = IPPROTO_TCP; |
Chuck Lever | 808012f | 2005-08-25 16:25:49 -0700 | [diff] [blame] | 3066 | xprt->max_payload = RPC_MAX_FRAGMENT_SIZE; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 3067 | |
Chuck Lever | 03bf4b7 | 2005-08-25 16:25:55 -0700 | [diff] [blame] | 3068 | xprt->bind_timeout = XS_BIND_TO; |
Chuck Lever | 03bf4b7 | 2005-08-25 16:25:55 -0700 | [diff] [blame] | 3069 | xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO; |
| 3070 | xprt->idle_timeout = XS_IDLE_DISC_TO; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 3071 | |
Chuck Lever | 262965f | 2005-08-11 16:25:56 -0400 | [diff] [blame] | 3072 | xprt->ops = &xs_tcp_ops; |
Trond Myklebust | ba7392b | 2007-12-20 16:03:55 -0500 | [diff] [blame] | 3073 | xprt->timeout = &xs_tcp_default_timeout; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 3074 | |
Trond Myklebust | 3851f1c | 2016-08-04 00:08:45 -0400 | [diff] [blame] | 3075 | xprt->max_reconnect_timeout = xprt->timeout->to_maxval; |
Trond Myklebust | 7196dbb | 2017-02-08 11:17:54 -0500 | [diff] [blame] | 3076 | xprt->connect_timeout = xprt->timeout->to_initval * |
| 3077 | (xprt->timeout->to_retries + 1); |
Trond Myklebust | 3851f1c | 2016-08-04 00:08:45 -0400 | [diff] [blame] | 3078 | |
Trond Myklebust | c50b8ee | 2018-09-14 14:26:28 -0400 | [diff] [blame] | 3079 | INIT_WORK(&transport->recv_worker, xs_stream_data_receive_workfn); |
Trond Myklebust | 4f8943f | 2019-05-01 16:28:29 -0400 | [diff] [blame] | 3080 | INIT_WORK(&transport->error_worker, xs_error_handle); |
Trond Myklebust | edc1b01 | 2015-10-05 10:53:49 -0400 | [diff] [blame] | 3081 | INIT_DELAYED_WORK(&transport->connect_worker, xs_tcp_setup_socket); |
| 3082 | |
Chuck Lever | 8f9d5b1 | 2007-08-06 11:57:53 -0400 | [diff] [blame] | 3083 | switch (addr->sa_family) { |
| 3084 | case AF_INET: |
| 3085 | if (((struct sockaddr_in *)addr)->sin_port != htons(0)) |
| 3086 | xprt_set_bound(xprt); |
| 3087 | |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 3088 | xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP); |
Chuck Lever | 8f9d5b1 | 2007-08-06 11:57:53 -0400 | [diff] [blame] | 3089 | break; |
| 3090 | case AF_INET6: |
| 3091 | if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0)) |
| 3092 | xprt_set_bound(xprt); |
| 3093 | |
Chuck Lever | 9dc3b09 | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 3094 | xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP6); |
Chuck Lever | 8f9d5b1 | 2007-08-06 11:57:53 -0400 | [diff] [blame] | 3095 | break; |
| 3096 | default: |
J. Bruce Fields | 0a68b0b | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 3097 | ret = ERR_PTR(-EAFNOSUPPORT); |
| 3098 | goto out_err; |
Chuck Lever | 8f9d5b1 | 2007-08-06 11:57:53 -0400 | [diff] [blame] | 3099 | } |
| 3100 | |
Chuck Lever | c740eff | 2009-08-09 15:09:46 -0400 | [diff] [blame] | 3101 | if (xprt_bound(xprt)) |
| 3102 | dprintk("RPC: set up xprt to %s (port %s) via %s\n", |
| 3103 | xprt->address_strings[RPC_DISPLAY_ADDR], |
| 3104 | xprt->address_strings[RPC_DISPLAY_PORT], |
| 3105 | xprt->address_strings[RPC_DISPLAY_PROTO]); |
| 3106 | else |
| 3107 | dprintk("RPC: set up xprt to %s (autobind) via %s\n", |
| 3108 | xprt->address_strings[RPC_DISPLAY_ADDR], |
| 3109 | xprt->address_strings[RPC_DISPLAY_PROTO]); |
| 3110 | |
\"Talpey, Thomas\ | bc25571 | 2007-09-10 13:46:39 -0400 | [diff] [blame] | 3111 | if (try_module_get(THIS_MODULE)) |
| 3112 | return xprt; |
J. Bruce Fields | 0a68b0b | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 3113 | ret = ERR_PTR(-EINVAL); |
| 3114 | out_err: |
Kinglong Mee | 315f381 | 2014-03-24 11:07:22 +0800 | [diff] [blame] | 3115 | xs_xprt_free(xprt); |
J. Bruce Fields | 0a68b0b | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 3116 | return ret; |
Chuck Lever | a246b01 | 2005-08-11 16:25:23 -0400 | [diff] [blame] | 3117 | } |
Chuck Lever | 282b32e | 2006-12-05 16:35:51 -0500 | [diff] [blame] | 3118 | |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3119 | /** |
| 3120 | * xs_setup_bc_tcp - Set up transport to use a TCP backchannel socket |
| 3121 | * @args: rpc transport creation arguments |
| 3122 | * |
| 3123 | */ |
| 3124 | static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args) |
| 3125 | { |
| 3126 | struct sockaddr *addr = args->dstaddr; |
| 3127 | struct rpc_xprt *xprt; |
| 3128 | struct sock_xprt *transport; |
| 3129 | struct svc_sock *bc_sock; |
J. Bruce Fields | 0a68b0b | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 3130 | struct rpc_xprt *ret; |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3131 | |
Trond Myklebust | d9ba131 | 2011-07-17 18:11:30 -0400 | [diff] [blame] | 3132 | xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries, |
| 3133 | xprt_tcp_slot_table_entries); |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3134 | if (IS_ERR(xprt)) |
| 3135 | return xprt; |
| 3136 | transport = container_of(xprt, struct sock_xprt, xprt); |
| 3137 | |
| 3138 | xprt->prot = IPPROTO_TCP; |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3139 | xprt->max_payload = RPC_MAX_FRAGMENT_SIZE; |
| 3140 | xprt->timeout = &xs_tcp_default_timeout; |
| 3141 | |
| 3142 | /* backchannel */ |
| 3143 | xprt_set_bound(xprt); |
| 3144 | xprt->bind_timeout = 0; |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3145 | xprt->reestablish_timeout = 0; |
| 3146 | xprt->idle_timeout = 0; |
| 3147 | |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3148 | xprt->ops = &bc_tcp_ops; |
| 3149 | |
| 3150 | switch (addr->sa_family) { |
| 3151 | case AF_INET: |
| 3152 | xs_format_peer_addresses(xprt, "tcp", |
| 3153 | RPCBIND_NETID_TCP); |
| 3154 | break; |
| 3155 | case AF_INET6: |
| 3156 | xs_format_peer_addresses(xprt, "tcp", |
| 3157 | RPCBIND_NETID_TCP6); |
| 3158 | break; |
| 3159 | default: |
J. Bruce Fields | 0a68b0b | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 3160 | ret = ERR_PTR(-EAFNOSUPPORT); |
| 3161 | goto out_err; |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3162 | } |
| 3163 | |
Pavel Emelyanov | 50fa0d4 | 2010-10-05 20:49:35 +0400 | [diff] [blame] | 3164 | dprintk("RPC: set up xprt to %s (port %s) via %s\n", |
| 3165 | xprt->address_strings[RPC_DISPLAY_ADDR], |
| 3166 | xprt->address_strings[RPC_DISPLAY_PORT], |
| 3167 | xprt->address_strings[RPC_DISPLAY_PROTO]); |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3168 | |
| 3169 | /* |
J. Bruce Fields | 99de8ea | 2010-12-08 12:45:44 -0500 | [diff] [blame] | 3170 | * Once we've associated a backchannel xprt with a connection, |
Weng Meiling | 28303ca | 2013-11-30 17:56:44 +0800 | [diff] [blame] | 3171 | * we want to keep it around as long as the connection lasts, |
| 3172 | * in case we need to start using it for a backchannel again; |
| 3173 | * this reference won't be dropped until bc_xprt is destroyed. |
J. Bruce Fields | 99de8ea | 2010-12-08 12:45:44 -0500 | [diff] [blame] | 3174 | */ |
| 3175 | xprt_get(xprt); |
| 3176 | args->bc_xprt->xpt_bc_xprt = xprt; |
| 3177 | xprt->bc_xprt = args->bc_xprt; |
| 3178 | bc_sock = container_of(args->bc_xprt, struct svc_sock, sk_xprt); |
| 3179 | transport->sock = bc_sock->sk_sock; |
| 3180 | transport->inet = bc_sock->sk_sk; |
| 3181 | |
| 3182 | /* |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3183 | * Since we don't want connections for the backchannel, we set |
| 3184 | * the xprt status to connected |
| 3185 | */ |
| 3186 | xprt_set_connected(xprt); |
| 3187 | |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3188 | if (try_module_get(THIS_MODULE)) |
| 3189 | return xprt; |
Kinglong Mee | 642aab5 | 2014-03-24 12:00:28 +0800 | [diff] [blame] | 3190 | |
| 3191 | args->bc_xprt->xpt_bc_xprt = NULL; |
J. Bruce Fields | 39a9bea | 2016-05-17 12:38:21 -0400 | [diff] [blame] | 3192 | args->bc_xprt->xpt_bc_xps = NULL; |
J. Bruce Fields | 99de8ea | 2010-12-08 12:45:44 -0500 | [diff] [blame] | 3193 | xprt_put(xprt); |
J. Bruce Fields | 0a68b0b | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 3194 | ret = ERR_PTR(-EINVAL); |
| 3195 | out_err: |
Kinglong Mee | 315f381 | 2014-03-24 11:07:22 +0800 | [diff] [blame] | 3196 | xs_xprt_free(xprt); |
J. Bruce Fields | 0a68b0b | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 3197 | return ret; |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3198 | } |
| 3199 | |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 3200 | static struct xprt_class xs_local_transport = { |
| 3201 | .list = LIST_HEAD_INIT(xs_local_transport.list), |
| 3202 | .name = "named UNIX socket", |
| 3203 | .owner = THIS_MODULE, |
| 3204 | .ident = XPRT_TRANSPORT_LOCAL, |
| 3205 | .setup = xs_setup_local, |
| 3206 | }; |
| 3207 | |
\"Talpey, Thomas\ | bc25571 | 2007-09-10 13:46:39 -0400 | [diff] [blame] | 3208 | static struct xprt_class xs_udp_transport = { |
| 3209 | .list = LIST_HEAD_INIT(xs_udp_transport.list), |
| 3210 | .name = "udp", |
| 3211 | .owner = THIS_MODULE, |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3212 | .ident = XPRT_TRANSPORT_UDP, |
\"Talpey, Thomas\ | bc25571 | 2007-09-10 13:46:39 -0400 | [diff] [blame] | 3213 | .setup = xs_setup_udp, |
| 3214 | }; |
| 3215 | |
| 3216 | static struct xprt_class xs_tcp_transport = { |
| 3217 | .list = LIST_HEAD_INIT(xs_tcp_transport.list), |
| 3218 | .name = "tcp", |
| 3219 | .owner = THIS_MODULE, |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3220 | .ident = XPRT_TRANSPORT_TCP, |
\"Talpey, Thomas\ | bc25571 | 2007-09-10 13:46:39 -0400 | [diff] [blame] | 3221 | .setup = xs_setup_tcp, |
| 3222 | }; |
| 3223 | |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3224 | static struct xprt_class xs_bc_tcp_transport = { |
| 3225 | .list = LIST_HEAD_INIT(xs_bc_tcp_transport.list), |
| 3226 | .name = "tcp NFSv4.1 backchannel", |
| 3227 | .owner = THIS_MODULE, |
| 3228 | .ident = XPRT_TRANSPORT_BC_TCP, |
| 3229 | .setup = xs_setup_bc_tcp, |
| 3230 | }; |
| 3231 | |
Chuck Lever | 282b32e | 2006-12-05 16:35:51 -0500 | [diff] [blame] | 3232 | /** |
\"Talpey, Thomas\ | bc25571 | 2007-09-10 13:46:39 -0400 | [diff] [blame] | 3233 | * init_socket_xprt - set up xprtsock's sysctls, register with RPC client |
Chuck Lever | 282b32e | 2006-12-05 16:35:51 -0500 | [diff] [blame] | 3234 | * |
| 3235 | */ |
| 3236 | int init_socket_xprt(void) |
| 3237 | { |
Eric W. Biederman | 2b1bec5 | 2007-02-14 00:33:24 -0800 | [diff] [blame] | 3238 | if (!sunrpc_table_header) |
Eric W. Biederman | 0b4d414 | 2007-02-14 00:34:09 -0800 | [diff] [blame] | 3239 | sunrpc_table_header = register_sysctl_table(sunrpc_table); |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 3240 | |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 3241 | xprt_register_transport(&xs_local_transport); |
\"Talpey, Thomas\ | bc25571 | 2007-09-10 13:46:39 -0400 | [diff] [blame] | 3242 | xprt_register_transport(&xs_udp_transport); |
| 3243 | xprt_register_transport(&xs_tcp_transport); |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3244 | xprt_register_transport(&xs_bc_tcp_transport); |
\"Talpey, Thomas\ | bc25571 | 2007-09-10 13:46:39 -0400 | [diff] [blame] | 3245 | |
Chuck Lever | 282b32e | 2006-12-05 16:35:51 -0500 | [diff] [blame] | 3246 | return 0; |
| 3247 | } |
| 3248 | |
| 3249 | /** |
\"Talpey, Thomas\ | bc25571 | 2007-09-10 13:46:39 -0400 | [diff] [blame] | 3250 | * cleanup_socket_xprt - remove xprtsock's sysctls, unregister |
Chuck Lever | 282b32e | 2006-12-05 16:35:51 -0500 | [diff] [blame] | 3251 | * |
| 3252 | */ |
| 3253 | void cleanup_socket_xprt(void) |
| 3254 | { |
Chuck Lever | fbf7668 | 2006-12-05 16:35:54 -0500 | [diff] [blame] | 3255 | if (sunrpc_table_header) { |
| 3256 | unregister_sysctl_table(sunrpc_table_header); |
| 3257 | sunrpc_table_header = NULL; |
| 3258 | } |
\"Talpey, Thomas\ | bc25571 | 2007-09-10 13:46:39 -0400 | [diff] [blame] | 3259 | |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 3260 | xprt_unregister_transport(&xs_local_transport); |
\"Talpey, Thomas\ | bc25571 | 2007-09-10 13:46:39 -0400 | [diff] [blame] | 3261 | xprt_unregister_transport(&xs_udp_transport); |
| 3262 | xprt_unregister_transport(&xs_tcp_transport); |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 3263 | xprt_unregister_transport(&xs_bc_tcp_transport); |
Chuck Lever | 282b32e | 2006-12-05 16:35:51 -0500 | [diff] [blame] | 3264 | } |
Trond Myklebust | cbf1107 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 3265 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 3266 | static int param_set_uint_minmax(const char *val, |
| 3267 | const struct kernel_param *kp, |
Trond Myklebust | cbf1107 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 3268 | unsigned int min, unsigned int max) |
| 3269 | { |
Daniel Walter | 00cfaa9 | 2014-06-21 13:06:38 +0100 | [diff] [blame] | 3270 | unsigned int num; |
Trond Myklebust | cbf1107 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 3271 | int ret; |
| 3272 | |
| 3273 | if (!val) |
| 3274 | return -EINVAL; |
Daniel Walter | 00cfaa9 | 2014-06-21 13:06:38 +0100 | [diff] [blame] | 3275 | ret = kstrtouint(val, 0, &num); |
Dan Carpenter | 9761a24 | 2017-02-19 00:34:59 +0300 | [diff] [blame] | 3276 | if (ret) |
| 3277 | return ret; |
| 3278 | if (num < min || num > max) |
Trond Myklebust | cbf1107 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 3279 | return -EINVAL; |
| 3280 | *((unsigned int *)kp->arg) = num; |
| 3281 | return 0; |
| 3282 | } |
| 3283 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 3284 | static int param_set_portnr(const char *val, const struct kernel_param *kp) |
Trond Myklebust | cbf1107 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 3285 | { |
Frank Sorenson | ffb6ca3 | 2016-07-08 16:35:25 -0500 | [diff] [blame] | 3286 | return param_set_uint_minmax(val, kp, |
J. Bruce Fields | 826799e | 2018-10-18 15:27:02 -0400 | [diff] [blame] | 3287 | RPC_MIN_RESVPORT, |
Trond Myklebust | cbf1107 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 3288 | RPC_MAX_RESVPORT); |
| 3289 | } |
| 3290 | |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 3291 | static const struct kernel_param_ops param_ops_portnr = { |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 3292 | .set = param_set_portnr, |
| 3293 | .get = param_get_uint, |
| 3294 | }; |
| 3295 | |
Trond Myklebust | cbf1107 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 3296 | #define param_check_portnr(name, p) \ |
| 3297 | __param_check(name, p, unsigned int); |
| 3298 | |
| 3299 | module_param_named(min_resvport, xprt_min_resvport, portnr, 0644); |
| 3300 | module_param_named(max_resvport, xprt_max_resvport, portnr, 0644); |
| 3301 | |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 3302 | static int param_set_slot_table_size(const char *val, |
| 3303 | const struct kernel_param *kp) |
Trond Myklebust | cbf1107 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 3304 | { |
| 3305 | return param_set_uint_minmax(val, kp, |
| 3306 | RPC_MIN_SLOT_TABLE, |
| 3307 | RPC_MAX_SLOT_TABLE); |
| 3308 | } |
| 3309 | |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 3310 | static const struct kernel_param_ops param_ops_slot_table_size = { |
Rusty Russell | 9bbb9e5 | 2010-08-11 23:04:12 -0600 | [diff] [blame] | 3311 | .set = param_set_slot_table_size, |
| 3312 | .get = param_get_uint, |
| 3313 | }; |
| 3314 | |
Trond Myklebust | cbf1107 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 3315 | #define param_check_slot_table_size(name, p) \ |
| 3316 | __param_check(name, p, unsigned int); |
| 3317 | |
Trond Myklebust | d9ba131 | 2011-07-17 18:11:30 -0400 | [diff] [blame] | 3318 | static int param_set_max_slot_table_size(const char *val, |
| 3319 | const struct kernel_param *kp) |
| 3320 | { |
| 3321 | return param_set_uint_minmax(val, kp, |
| 3322 | RPC_MIN_SLOT_TABLE, |
| 3323 | RPC_MAX_SLOT_TABLE_LIMIT); |
| 3324 | } |
| 3325 | |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 3326 | static const struct kernel_param_ops param_ops_max_slot_table_size = { |
Trond Myklebust | d9ba131 | 2011-07-17 18:11:30 -0400 | [diff] [blame] | 3327 | .set = param_set_max_slot_table_size, |
| 3328 | .get = param_get_uint, |
| 3329 | }; |
| 3330 | |
| 3331 | #define param_check_max_slot_table_size(name, p) \ |
| 3332 | __param_check(name, p, unsigned int); |
| 3333 | |
Trond Myklebust | cbf1107 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 3334 | module_param_named(tcp_slot_table_entries, xprt_tcp_slot_table_entries, |
| 3335 | slot_table_size, 0644); |
Trond Myklebust | d9ba131 | 2011-07-17 18:11:30 -0400 | [diff] [blame] | 3336 | module_param_named(tcp_max_slot_table_entries, xprt_max_tcp_slot_table_entries, |
| 3337 | max_slot_table_size, 0644); |
Trond Myklebust | cbf1107 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 3338 | module_param_named(udp_slot_table_entries, xprt_udp_slot_table_entries, |
| 3339 | slot_table_size, 0644); |