blob: 62b4f5a2a331b8058cc36f0d5edcea4cebf207f8 [file] [log] [blame]
Chuck Levera246b012005-08-11 16:25:23 -04001/*
2 * linux/net/sunrpc/xprtsock.c
3 *
4 * Client-side transport implementation for sockets.
5 *
Alan Cox113aa832008-10-13 19:01:08 -07006 * TCP callback races fixes (C) 1998 Red Hat
7 * TCP send fixes (C) 1998 Red Hat
Chuck Levera246b012005-08-11 16:25:23 -04008 * TCP NFS related read + write fixes
9 * (C) 1999 Dave Airlie, University of Limerick, Ireland <airlied@linux.ie>
10 *
11 * Rewrite of larges part of the code in order to stabilize TCP stuff.
12 * Fix behaviour when socket buffer is full.
13 * (C) 1999 Trond Myklebust <trond.myklebust@fys.uio.no>
Chuck Lever55aa4f52005-08-11 16:25:47 -040014 *
15 * IP socket transport implementation, (C) 2005 Chuck Lever <cel@netapp.com>
Chuck Lever8f9d5b12007-08-06 11:57:53 -040016 *
17 * IPv6 support contributed by Gilles Quillard, Bull Open Source, 2005.
18 * <gilles.quillard@bull.net>
Chuck Levera246b012005-08-11 16:25:23 -040019 */
20
21#include <linux/types.h>
Chuck Lever176e21e2011-05-09 15:22:44 -040022#include <linux/string.h>
Chuck Levera246b012005-08-11 16:25:23 -040023#include <linux/slab.h>
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -040024#include <linux/module.h>
Chuck Levera246b012005-08-11 16:25:23 -040025#include <linux/capability.h>
Chuck Levera246b012005-08-11 16:25:23 -040026#include <linux/pagemap.h>
27#include <linux/errno.h>
28#include <linux/socket.h>
29#include <linux/in.h>
30#include <linux/net.h>
31#include <linux/mm.h>
Chuck Lever176e21e2011-05-09 15:22:44 -040032#include <linux/un.h>
Chuck Levera246b012005-08-11 16:25:23 -040033#include <linux/udp.h>
34#include <linux/tcp.h>
35#include <linux/sunrpc/clnt.h>
Jeff Layton59766872013-02-04 12:50:00 -050036#include <linux/sunrpc/addr.h>
Chuck Lever02107142006-01-03 09:55:49 +010037#include <linux/sunrpc/sched.h>
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030038#include <linux/sunrpc/svcsock.h>
\"Talpey, Thomas\49c36fc2007-09-10 13:47:31 -040039#include <linux/sunrpc/xprtsock.h>
Chuck Levera246b012005-08-11 16:25:23 -040040#include <linux/file.h>
Trond Myklebust9e00abc2011-07-13 19:20:49 -040041#ifdef CONFIG_SUNRPC_BACKCHANNEL
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -040042#include <linux/sunrpc/bc_xprt.h>
43#endif
Chuck Levera246b012005-08-11 16:25:23 -040044
45#include <net/sock.h>
46#include <net/checksum.h>
47#include <net/udp.h>
48#include <net/tcp.h>
49
Trond Myklebust40b5ea02013-09-04 12:16:23 -040050#include <trace/events/sunrpc.h>
51
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030052#include "sunrpc.h"
Chuck Lever176e21e2011-05-09 15:22:44 -040053
54static void xs_close(struct rpc_xprt *xprt);
55
Chuck Lever9903cd12005-08-11 16:25:26 -040056/*
Chuck Leverc556b752005-11-01 12:24:48 -050057 * xprtsock tunables
58 */
Trond Myklebust09acfea2012-03-11 15:22:54 -040059static unsigned int xprt_udp_slot_table_entries = RPC_DEF_SLOT_TABLE;
60static unsigned int xprt_tcp_slot_table_entries = RPC_MIN_SLOT_TABLE;
61static unsigned int xprt_max_tcp_slot_table_entries = RPC_MAX_SLOT_TABLE;
Chuck Leverc556b752005-11-01 12:24:48 -050062
Trond Myklebust09acfea2012-03-11 15:22:54 -040063static unsigned int xprt_min_resvport = RPC_DEF_MIN_RESVPORT;
64static unsigned int xprt_max_resvport = RPC_DEF_MAX_RESVPORT;
Chuck Leverc556b752005-11-01 12:24:48 -050065
Trond Myklebust54c09872015-02-09 11:01:02 -050066#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
67
Trond Myklebust7d1e8252009-03-11 14:38:03 -040068#define XS_TCP_LINGER_TO (15U * HZ)
Trond Myklebust25fe6142009-03-11 14:38:03 -040069static unsigned int xs_tcp_fin_timeout __read_mostly = XS_TCP_LINGER_TO;
Trond Myklebust7d1e8252009-03-11 14:38:03 -040070
Chuck Leverc556b752005-11-01 12:24:48 -050071/*
Chuck Leverfbf76682006-12-05 16:35:54 -050072 * We can register our own files under /proc/sys/sunrpc by
73 * calling register_sysctl_table() again. The files in that
74 * directory become the union of all files registered there.
75 *
76 * We simply need to make sure that we don't collide with
77 * someone else's file names!
78 */
79
Chuck Leverfbf76682006-12-05 16:35:54 -050080static unsigned int min_slot_table_size = RPC_MIN_SLOT_TABLE;
81static unsigned int max_slot_table_size = RPC_MAX_SLOT_TABLE;
Trond Myklebustd9ba1312011-07-17 18:11:30 -040082static unsigned int max_tcp_slot_table_limit = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Leverfbf76682006-12-05 16:35:54 -050083static unsigned int xprt_min_resvport_limit = RPC_MIN_RESVPORT;
84static unsigned int xprt_max_resvport_limit = RPC_MAX_RESVPORT;
85
86static struct ctl_table_header *sunrpc_table_header;
87
88/*
89 * FIXME: changing the UDP slot table size should also resize the UDP
90 * socket buffers for existing UDP transports
91 */
Joe Perchesfe2c6332013-06-11 23:04:25 -070092static struct ctl_table xs_tunables_table[] = {
Chuck Leverfbf76682006-12-05 16:35:54 -050093 {
Chuck Leverfbf76682006-12-05 16:35:54 -050094 .procname = "udp_slot_table_entries",
95 .data = &xprt_udp_slot_table_entries,
96 .maxlen = sizeof(unsigned int),
97 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080098 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -050099 .extra1 = &min_slot_table_size,
100 .extra2 = &max_slot_table_size
101 },
102 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500103 .procname = "tcp_slot_table_entries",
104 .data = &xprt_tcp_slot_table_entries,
105 .maxlen = sizeof(unsigned int),
106 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800107 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500108 .extra1 = &min_slot_table_size,
109 .extra2 = &max_slot_table_size
110 },
111 {
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400112 .procname = "tcp_max_slot_table_entries",
113 .data = &xprt_max_tcp_slot_table_entries,
114 .maxlen = sizeof(unsigned int),
115 .mode = 0644,
116 .proc_handler = proc_dointvec_minmax,
117 .extra1 = &min_slot_table_size,
118 .extra2 = &max_tcp_slot_table_limit
119 },
120 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500121 .procname = "min_resvport",
122 .data = &xprt_min_resvport,
123 .maxlen = sizeof(unsigned int),
124 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800125 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500126 .extra1 = &xprt_min_resvport_limit,
127 .extra2 = &xprt_max_resvport_limit
128 },
129 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500130 .procname = "max_resvport",
131 .data = &xprt_max_resvport,
132 .maxlen = sizeof(unsigned int),
133 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800134 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500135 .extra1 = &xprt_min_resvport_limit,
136 .extra2 = &xprt_max_resvport_limit
137 },
138 {
Trond Myklebust25fe6142009-03-11 14:38:03 -0400139 .procname = "tcp_fin_timeout",
140 .data = &xs_tcp_fin_timeout,
141 .maxlen = sizeof(xs_tcp_fin_timeout),
142 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800143 .proc_handler = proc_dointvec_jiffies,
Trond Myklebust25fe6142009-03-11 14:38:03 -0400144 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800145 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500146};
147
Joe Perchesfe2c6332013-06-11 23:04:25 -0700148static struct ctl_table sunrpc_table[] = {
Chuck Leverfbf76682006-12-05 16:35:54 -0500149 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500150 .procname = "sunrpc",
151 .mode = 0555,
152 .child = xs_tunables_table
153 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800154 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500155};
156
157#endif
158
159/*
Chuck Lever03bf4b72005-08-25 16:25:55 -0700160 * Wait duration for a reply from the RPC portmapper.
161 */
162#define XS_BIND_TO (60U * HZ)
163
164/*
165 * Delay if a UDP socket connect error occurs. This is most likely some
166 * kind of resource problem on the local host.
167 */
168#define XS_UDP_REEST_TO (2U * HZ)
169
170/*
171 * The reestablish timeout allows clients to delay for a bit before attempting
172 * to reconnect to a server that just dropped our connection.
173 *
174 * We implement an exponential backoff when trying to reestablish a TCP
175 * transport connection with the server. Some servers like to drop a TCP
176 * connection when they are overworked, so we start with a short timeout and
177 * increase over time if the server is down or not responding.
178 */
179#define XS_TCP_INIT_REEST_TO (3U * HZ)
180#define XS_TCP_MAX_REEST_TO (5U * 60 * HZ)
181
182/*
183 * TCP idle timeout; client drops the transport socket if it is idle
184 * for this long. Note that we also timeout UDP sockets to prevent
185 * holding port numbers when there is no RPC traffic.
186 */
187#define XS_IDLE_DISC_TO (5U * 60 * HZ)
188
Jeff Laytonf895b252014-11-17 16:58:04 -0500189#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Levera246b012005-08-11 16:25:23 -0400190# undef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400191# define RPCDBG_FACILITY RPCDBG_TRANS
Chuck Levera246b012005-08-11 16:25:23 -0400192#endif
193
Chuck Levera246b012005-08-11 16:25:23 -0400194#ifdef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400195static void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400196{
Chuck Lever9903cd12005-08-11 16:25:26 -0400197 u8 *buf = (u8 *) packet;
198 int j;
Chuck Levera246b012005-08-11 16:25:23 -0400199
Chuck Lever46121cf2007-01-31 12:14:08 -0500200 dprintk("RPC: %s\n", msg);
Chuck Levera246b012005-08-11 16:25:23 -0400201 for (j = 0; j < count && j < 128; j += 4) {
202 if (!(j & 31)) {
203 if (j)
204 dprintk("\n");
205 dprintk("0x%04x ", j);
206 }
207 dprintk("%02x%02x%02x%02x ",
208 buf[j], buf[j+1], buf[j+2], buf[j+3]);
209 }
210 dprintk("\n");
211}
212#else
Chuck Lever9903cd12005-08-11 16:25:26 -0400213static inline void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400214{
215 /* NOP */
216}
217#endif
218
Trond Myklebust21180712013-12-31 13:22:59 -0500219static inline struct rpc_xprt *xprt_from_sock(struct sock *sk)
220{
221 return (struct rpc_xprt *) sk->sk_user_data;
222}
223
Chuck Lever95392c52007-08-06 11:57:58 -0400224static inline struct sockaddr *xs_addr(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400225{
Chuck Lever95392c52007-08-06 11:57:58 -0400226 return (struct sockaddr *) &xprt->addr;
227}
228
Chuck Lever176e21e2011-05-09 15:22:44 -0400229static inline struct sockaddr_un *xs_addr_un(struct rpc_xprt *xprt)
230{
231 return (struct sockaddr_un *) &xprt->addr;
232}
233
Chuck Lever95392c52007-08-06 11:57:58 -0400234static inline struct sockaddr_in *xs_addr_in(struct rpc_xprt *xprt)
235{
236 return (struct sockaddr_in *) &xprt->addr;
237}
238
239static inline struct sockaddr_in6 *xs_addr_in6(struct rpc_xprt *xprt)
240{
241 return (struct sockaddr_in6 *) &xprt->addr;
242}
243
Chuck Leverc877b842009-08-09 15:09:36 -0400244static void xs_format_common_peer_addresses(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400245{
Chuck Leverc877b842009-08-09 15:09:36 -0400246 struct sockaddr *sap = xs_addr(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400247 struct sockaddr_in6 *sin6;
248 struct sockaddr_in *sin;
Chuck Lever176e21e2011-05-09 15:22:44 -0400249 struct sockaddr_un *sun;
Chuck Leverc877b842009-08-09 15:09:36 -0400250 char buf[128];
Chuck Leveredb267a2006-08-22 20:06:18 -0400251
Chuck Lever9dc3b092009-08-09 15:09:46 -0400252 switch (sap->sa_family) {
Chuck Lever176e21e2011-05-09 15:22:44 -0400253 case AF_LOCAL:
254 sun = xs_addr_un(xprt);
255 strlcpy(buf, sun->sun_path, sizeof(buf));
256 xprt->address_strings[RPC_DISPLAY_ADDR] =
257 kstrdup(buf, GFP_KERNEL);
258 break;
Chuck Lever9dc3b092009-08-09 15:09:46 -0400259 case AF_INET:
Chuck Lever176e21e2011-05-09 15:22:44 -0400260 (void)rpc_ntop(sap, buf, sizeof(buf));
261 xprt->address_strings[RPC_DISPLAY_ADDR] =
262 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400263 sin = xs_addr_in(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800264 snprintf(buf, sizeof(buf), "%08x", ntohl(sin->sin_addr.s_addr));
Chuck Lever9dc3b092009-08-09 15:09:46 -0400265 break;
266 case AF_INET6:
Chuck Lever176e21e2011-05-09 15:22:44 -0400267 (void)rpc_ntop(sap, buf, sizeof(buf));
268 xprt->address_strings[RPC_DISPLAY_ADDR] =
269 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400270 sin6 = xs_addr_in6(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800271 snprintf(buf, sizeof(buf), "%pi6", &sin6->sin6_addr);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400272 break;
273 default:
274 BUG();
Chuck Leveredb267a2006-08-22 20:06:18 -0400275 }
Chuck Lever176e21e2011-05-09 15:22:44 -0400276
Chuck Lever9dc3b092009-08-09 15:09:46 -0400277 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
Chuck Leveredb267a2006-08-22 20:06:18 -0400278}
279
Chuck Lever9dc3b092009-08-09 15:09:46 -0400280static void xs_format_common_peer_ports(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400281{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400282 struct sockaddr *sap = xs_addr(xprt);
283 char buf[128];
Chuck Lever4b6473f2007-08-06 11:57:12 -0400284
Joe Perches81160e662010-03-08 12:15:59 -0800285 snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400286 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400287
Joe Perches81160e662010-03-08 12:15:59 -0800288 snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400289 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
290}
Chuck Lever4b6473f2007-08-06 11:57:12 -0400291
Chuck Lever9dc3b092009-08-09 15:09:46 -0400292static void xs_format_peer_addresses(struct rpc_xprt *xprt,
293 const char *protocol,
294 const char *netid)
Chuck Leveredb267a2006-08-22 20:06:18 -0400295{
Chuck Leverb454ae92008-01-07 18:34:48 -0500296 xprt->address_strings[RPC_DISPLAY_PROTO] = protocol;
Chuck Leverb454ae92008-01-07 18:34:48 -0500297 xprt->address_strings[RPC_DISPLAY_NETID] = netid;
Chuck Leverc877b842009-08-09 15:09:36 -0400298 xs_format_common_peer_addresses(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400299 xs_format_common_peer_ports(xprt);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400300}
301
Chuck Lever9dc3b092009-08-09 15:09:46 -0400302static void xs_update_peer_port(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400303{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400304 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
305 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400306
Chuck Lever9dc3b092009-08-09 15:09:46 -0400307 xs_format_common_peer_ports(xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -0400308}
309
310static void xs_free_peer_addresses(struct rpc_xprt *xprt)
311{
Chuck Lever33e01dc2008-01-14 12:32:20 -0500312 unsigned int i;
313
314 for (i = 0; i < RPC_DISPLAY_MAX; i++)
315 switch (i) {
316 case RPC_DISPLAY_PROTO:
317 case RPC_DISPLAY_NETID:
318 continue;
319 default:
320 kfree(xprt->address_strings[i]);
321 }
Chuck Leveredb267a2006-08-22 20:06:18 -0400322}
323
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400324#define XS_SENDMSG_FLAGS (MSG_DONTWAIT | MSG_NOSIGNAL)
325
Trond Myklebust24c56842006-10-17 15:06:22 -0400326static int xs_send_kvec(struct socket *sock, struct sockaddr *addr, int addrlen, struct kvec *vec, unsigned int base, int more)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400327{
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400328 struct msghdr msg = {
329 .msg_name = addr,
330 .msg_namelen = addrlen,
Trond Myklebust24c56842006-10-17 15:06:22 -0400331 .msg_flags = XS_SENDMSG_FLAGS | (more ? MSG_MORE : 0),
332 };
333 struct kvec iov = {
334 .iov_base = vec->iov_base + base,
335 .iov_len = vec->iov_len - base,
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400336 };
337
Trond Myklebust24c56842006-10-17 15:06:22 -0400338 if (iov.iov_len != 0)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400339 return kernel_sendmsg(sock, &msg, &iov, 1, iov.iov_len);
340 return kernel_sendmsg(sock, &msg, NULL, 0, 0);
341}
342
Jason Baronf279cd02014-09-24 18:08:00 +0000343static int xs_send_pagedata(struct socket *sock, struct xdr_buf *xdr, unsigned int base, int more, bool zerocopy, int *sent_p)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400344{
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500345 ssize_t (*do_sendpage)(struct socket *sock, struct page *page,
346 int offset, size_t size, int flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400347 struct page **ppage;
348 unsigned int remainder;
Jason Baronf279cd02014-09-24 18:08:00 +0000349 int err;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400350
Trond Myklebust24c56842006-10-17 15:06:22 -0400351 remainder = xdr->page_len - base;
352 base += xdr->page_base;
353 ppage = xdr->pages + (base >> PAGE_SHIFT);
354 base &= ~PAGE_MASK;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500355 do_sendpage = sock->ops->sendpage;
356 if (!zerocopy)
357 do_sendpage = sock_no_sendpage;
Trond Myklebust24c56842006-10-17 15:06:22 -0400358 for(;;) {
359 unsigned int len = min_t(unsigned int, PAGE_SIZE - base, remainder);
360 int flags = XS_SENDMSG_FLAGS;
361
362 remainder -= len;
Trond Myklebust31303d62015-10-06 15:59:20 -0400363 if (more)
Trond Myklebust24c56842006-10-17 15:06:22 -0400364 flags |= MSG_MORE;
Trond Myklebust31303d62015-10-06 15:59:20 -0400365 if (remainder != 0)
366 flags |= MSG_SENDPAGE_NOTLAST | MSG_MORE;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500367 err = do_sendpage(sock, *ppage, base, len, flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400368 if (remainder == 0 || err != len)
369 break;
Jason Baronf279cd02014-09-24 18:08:00 +0000370 *sent_p += err;
Trond Myklebust24c56842006-10-17 15:06:22 -0400371 ppage++;
372 base = 0;
373 }
Jason Baronf279cd02014-09-24 18:08:00 +0000374 if (err > 0) {
375 *sent_p += err;
376 err = 0;
377 }
378 return err;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400379}
380
Chuck Lever9903cd12005-08-11 16:25:26 -0400381/**
382 * xs_sendpages - write pages directly to a socket
383 * @sock: socket to send on
384 * @addr: UDP only -- address of destination
385 * @addrlen: UDP only -- length of destination address
386 * @xdr: buffer containing this request
387 * @base: starting position in the buffer
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500388 * @zerocopy: true if it is safe to use sendpage()
Jason Baronf279cd02014-09-24 18:08:00 +0000389 * @sent_p: return the total number of bytes successfully queued for sending
Chuck Lever9903cd12005-08-11 16:25:26 -0400390 *
Chuck Levera246b012005-08-11 16:25:23 -0400391 */
Jason Baronf279cd02014-09-24 18:08:00 +0000392static int xs_sendpages(struct socket *sock, struct sockaddr *addr, int addrlen, struct xdr_buf *xdr, unsigned int base, bool zerocopy, int *sent_p)
Chuck Levera246b012005-08-11 16:25:23 -0400393{
Trond Myklebust24c56842006-10-17 15:06:22 -0400394 unsigned int remainder = xdr->len - base;
Jason Baronf279cd02014-09-24 18:08:00 +0000395 int err = 0;
396 int sent = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400397
Chuck Lever262965f2005-08-11 16:25:56 -0400398 if (unlikely(!sock))
Trond Myklebustfba91af2009-03-11 14:06:41 -0400399 return -ENOTSOCK;
Chuck Lever262965f2005-08-11 16:25:56 -0400400
Trond Myklebust24c56842006-10-17 15:06:22 -0400401 if (base != 0) {
402 addr = NULL;
403 addrlen = 0;
404 }
Chuck Lever262965f2005-08-11 16:25:56 -0400405
Trond Myklebust24c56842006-10-17 15:06:22 -0400406 if (base < xdr->head[0].iov_len || addr != NULL) {
407 unsigned int len = xdr->head[0].iov_len - base;
408 remainder -= len;
409 err = xs_send_kvec(sock, addr, addrlen, &xdr->head[0], base, remainder != 0);
410 if (remainder == 0 || err != len)
Chuck Levera246b012005-08-11 16:25:23 -0400411 goto out;
Jason Baronf279cd02014-09-24 18:08:00 +0000412 *sent_p += err;
Chuck Levera246b012005-08-11 16:25:23 -0400413 base = 0;
414 } else
Trond Myklebust24c56842006-10-17 15:06:22 -0400415 base -= xdr->head[0].iov_len;
Chuck Levera246b012005-08-11 16:25:23 -0400416
Trond Myklebust24c56842006-10-17 15:06:22 -0400417 if (base < xdr->page_len) {
418 unsigned int len = xdr->page_len - base;
419 remainder -= len;
Jason Baronf279cd02014-09-24 18:08:00 +0000420 err = xs_send_pagedata(sock, xdr, base, remainder != 0, zerocopy, &sent);
421 *sent_p += sent;
422 if (remainder == 0 || sent != len)
Chuck Levera246b012005-08-11 16:25:23 -0400423 goto out;
424 base = 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400425 } else
426 base -= xdr->page_len;
427
428 if (base >= xdr->tail[0].iov_len)
Jason Baronf279cd02014-09-24 18:08:00 +0000429 return 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400430 err = xs_send_kvec(sock, NULL, 0, &xdr->tail[0], base, 0);
Chuck Levera246b012005-08-11 16:25:23 -0400431out:
Jason Baronf279cd02014-09-24 18:08:00 +0000432 if (err > 0) {
433 *sent_p += err;
434 err = 0;
435 }
436 return err;
Chuck Levera246b012005-08-11 16:25:23 -0400437}
438
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400439static void xs_nospace_callback(struct rpc_task *task)
440{
441 struct sock_xprt *transport = container_of(task->tk_rqstp->rq_xprt, struct sock_xprt, xprt);
442
443 transport->inet->sk_write_pending--;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400444}
445
Chuck Lever9903cd12005-08-11 16:25:26 -0400446/**
Chuck Lever262965f2005-08-11 16:25:56 -0400447 * xs_nospace - place task on wait queue if transmit was incomplete
448 * @task: task to put to sleep
Chuck Lever9903cd12005-08-11 16:25:26 -0400449 *
Chuck Levera246b012005-08-11 16:25:23 -0400450 */
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400451static int xs_nospace(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400452{
Chuck Lever262965f2005-08-11 16:25:56 -0400453 struct rpc_rqst *req = task->tk_rqstp;
454 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500455 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500456 struct sock *sk = transport->inet;
Trond Myklebust24ca9a82011-11-22 14:44:28 +0200457 int ret = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -0400458
Chuck Lever46121cf2007-01-31 12:14:08 -0500459 dprintk("RPC: %5u xmit incomplete (%u left of %u)\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400460 task->tk_pid, req->rq_slen - req->rq_bytes_sent,
461 req->rq_slen);
462
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400463 /* Protect against races with write_space */
464 spin_lock_bh(&xprt->transport_lock);
Chuck Lever262965f2005-08-11 16:25:56 -0400465
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400466 /* Don't race with disconnect */
467 if (xprt_connected(xprt)) {
Trond Myklebust13331a52016-01-06 08:57:06 -0500468 /* wait for more buffer space */
469 sk->sk_write_pending++;
470 xprt_wait_for_buffer_space(task, xs_nospace_callback);
471 } else
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400472 ret = -ENOTCONN;
Chuck Lever262965f2005-08-11 16:25:56 -0400473
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400474 spin_unlock_bh(&xprt->transport_lock);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500475
476 /* Race breaker in case memory is freed before above code is called */
477 sk->sk_write_space(sk);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400478 return ret;
Chuck Lever262965f2005-08-11 16:25:56 -0400479}
480
Chuck Lever61677ee2011-05-09 15:22:34 -0400481/*
482 * Construct a stream transport record marker in @buf.
483 */
484static inline void xs_encode_stream_record_marker(struct xdr_buf *buf)
485{
486 u32 reclen = buf->len - sizeof(rpc_fraghdr);
487 rpc_fraghdr *base = buf->head[0].iov_base;
488 *base = cpu_to_be32(RPC_LAST_STREAM_FRAGMENT | reclen);
489}
490
Chuck Lever262965f2005-08-11 16:25:56 -0400491/**
Chuck Lever176e21e2011-05-09 15:22:44 -0400492 * xs_local_send_request - write an RPC request to an AF_LOCAL socket
493 * @task: RPC task that manages the state of an RPC request
494 *
495 * Return values:
496 * 0: The request has been sent
497 * EAGAIN: The socket was blocked, please call again later to
498 * complete the request
499 * ENOTCONN: Caller needs to invoke connect logic then call again
500 * other: Some other error occured, the request was not sent
501 */
502static int xs_local_send_request(struct rpc_task *task)
503{
504 struct rpc_rqst *req = task->tk_rqstp;
505 struct rpc_xprt *xprt = req->rq_xprt;
506 struct sock_xprt *transport =
507 container_of(xprt, struct sock_xprt, xprt);
508 struct xdr_buf *xdr = &req->rq_snd_buf;
509 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000510 int sent = 0;
Chuck Lever176e21e2011-05-09 15:22:44 -0400511
512 xs_encode_stream_record_marker(&req->rq_snd_buf);
513
514 xs_pktdump("packet data:",
515 req->rq_svec->iov_base, req->rq_svec->iov_len);
516
Jason Baronf279cd02014-09-24 18:08:00 +0000517 status = xs_sendpages(transport->sock, NULL, 0, xdr, req->rq_bytes_sent,
518 true, &sent);
Chuck Lever176e21e2011-05-09 15:22:44 -0400519 dprintk("RPC: %s(%u) = %d\n",
520 __func__, xdr->len - req->rq_bytes_sent, status);
NeilBrown743c69e2015-07-27 10:55:35 +1000521
522 if (status == -EAGAIN && sock_writeable(transport->inet))
523 status = -ENOBUFS;
524
Jason Baronf279cd02014-09-24 18:08:00 +0000525 if (likely(sent > 0) || status == 0) {
526 req->rq_bytes_sent += sent;
527 req->rq_xmit_bytes_sent += sent;
Chuck Lever176e21e2011-05-09 15:22:44 -0400528 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
529 req->rq_bytes_sent = 0;
530 return 0;
531 }
532 status = -EAGAIN;
533 }
534
535 switch (status) {
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400536 case -ENOBUFS:
Trond Myklebustb5872f02015-07-03 09:32:23 -0400537 break;
Chuck Lever176e21e2011-05-09 15:22:44 -0400538 case -EAGAIN:
539 status = xs_nospace(task);
540 break;
541 default:
542 dprintk("RPC: sendmsg returned unrecognized error %d\n",
543 -status);
544 case -EPIPE:
545 xs_close(xprt);
546 status = -ENOTCONN;
547 }
548
549 return status;
550}
551
552/**
Chuck Lever262965f2005-08-11 16:25:56 -0400553 * xs_udp_send_request - write an RPC request to a UDP socket
554 * @task: address of RPC task that manages the state of an RPC request
555 *
556 * Return values:
557 * 0: The request has been sent
558 * EAGAIN: The socket was blocked, please call again later to
559 * complete the request
560 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300561 * other: Some other error occurred, the request was not sent
Chuck Lever262965f2005-08-11 16:25:56 -0400562 */
563static int xs_udp_send_request(struct rpc_task *task)
564{
565 struct rpc_rqst *req = task->tk_rqstp;
566 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500567 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400568 struct xdr_buf *xdr = &req->rq_snd_buf;
Jason Baronf279cd02014-09-24 18:08:00 +0000569 int sent = 0;
Chuck Lever262965f2005-08-11 16:25:56 -0400570 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400571
Chuck Lever9903cd12005-08-11 16:25:26 -0400572 xs_pktdump("packet data:",
Chuck Levera246b012005-08-11 16:25:23 -0400573 req->rq_svec->iov_base,
574 req->rq_svec->iov_len);
575
Trond Myklebust01d37c42009-03-11 14:09:39 -0400576 if (!xprt_bound(xprt))
577 return -ENOTCONN;
Jason Baronf279cd02014-09-24 18:08:00 +0000578 status = xs_sendpages(transport->sock, xs_addr(xprt), xprt->addrlen,
579 xdr, req->rq_bytes_sent, true, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400580
Chuck Lever46121cf2007-01-31 12:14:08 -0500581 dprintk("RPC: xs_udp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400582 xdr->len - req->rq_bytes_sent, status);
Chuck Levera246b012005-08-11 16:25:23 -0400583
Jason Baron3dedbb52014-09-24 18:08:04 +0000584 /* firewall is blocking us, don't return -EAGAIN or we end up looping */
585 if (status == -EPERM)
586 goto process_status;
587
NeilBrown743c69e2015-07-27 10:55:35 +1000588 if (status == -EAGAIN && sock_writeable(transport->inet))
589 status = -ENOBUFS;
590
Jason Baronf279cd02014-09-24 18:08:00 +0000591 if (sent > 0 || status == 0) {
592 req->rq_xmit_bytes_sent += sent;
593 if (sent >= req->rq_slen)
Trond Myklebust21997002007-10-01 11:43:37 -0400594 return 0;
595 /* Still some bytes left; set up for a retry later. */
Chuck Lever262965f2005-08-11 16:25:56 -0400596 status = -EAGAIN;
Trond Myklebust21997002007-10-01 11:43:37 -0400597 }
Chuck Levera246b012005-08-11 16:25:23 -0400598
Jason Baron3dedbb52014-09-24 18:08:04 +0000599process_status:
Chuck Lever262965f2005-08-11 16:25:56 -0400600 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400601 case -ENOTSOCK:
602 status = -ENOTCONN;
603 /* Should we call xs_close() here? */
604 break;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400605 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400606 status = xs_nospace(task);
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400607 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400608 case -ENETUNREACH:
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400609 case -ENOBUFS:
Chuck Lever262965f2005-08-11 16:25:56 -0400610 case -EPIPE:
Chuck Levera246b012005-08-11 16:25:23 -0400611 case -ECONNREFUSED:
Jason Baron3dedbb52014-09-24 18:08:04 +0000612 case -EPERM:
Chuck Levera246b012005-08-11 16:25:23 -0400613 /* When the server has died, an ICMP port unreachable message
Chuck Lever9903cd12005-08-11 16:25:26 -0400614 * prompts ECONNREFUSED. */
Trond Myklebust13331a52016-01-06 08:57:06 -0500615 break;
616 default:
617 dprintk("RPC: sendmsg returned unrecognized error %d\n",
618 -status);
Chuck Levera246b012005-08-11 16:25:23 -0400619 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800620
Chuck Lever262965f2005-08-11 16:25:56 -0400621 return status;
Chuck Levera246b012005-08-11 16:25:23 -0400622}
623
Trond Myklebuste06799f2007-11-05 15:44:12 -0500624/**
Chuck Lever262965f2005-08-11 16:25:56 -0400625 * xs_tcp_send_request - write an RPC request to a TCP socket
Chuck Lever9903cd12005-08-11 16:25:26 -0400626 * @task: address of RPC task that manages the state of an RPC request
627 *
628 * Return values:
Chuck Lever262965f2005-08-11 16:25:56 -0400629 * 0: The request has been sent
630 * EAGAIN: The socket was blocked, please call again later to
631 * complete the request
632 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300633 * other: Some other error occurred, the request was not sent
Chuck Lever9903cd12005-08-11 16:25:26 -0400634 *
635 * XXX: In the case of soft timeouts, should we eventually give up
Chuck Lever262965f2005-08-11 16:25:56 -0400636 * if sendmsg is not able to make progress?
Chuck Lever9903cd12005-08-11 16:25:26 -0400637 */
Chuck Lever262965f2005-08-11 16:25:56 -0400638static int xs_tcp_send_request(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400639{
640 struct rpc_rqst *req = task->tk_rqstp;
641 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500642 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400643 struct xdr_buf *xdr = &req->rq_snd_buf;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500644 bool zerocopy = true;
Chuck Leverb595bb12007-08-06 11:56:42 -0400645 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000646 int sent;
Chuck Levera246b012005-08-11 16:25:23 -0400647
Chuck Lever61677ee2011-05-09 15:22:34 -0400648 xs_encode_stream_record_marker(&req->rq_snd_buf);
Chuck Levera246b012005-08-11 16:25:23 -0400649
Chuck Lever262965f2005-08-11 16:25:56 -0400650 xs_pktdump("packet data:",
651 req->rq_svec->iov_base,
652 req->rq_svec->iov_len);
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500653 /* Don't use zero copy if this is a resend. If the RPC call
654 * completes while the socket holds a reference to the pages,
655 * then we may end up resending corrupted data.
656 */
657 if (task->tk_flags & RPC_TASK_SENT)
658 zerocopy = false;
Chuck Levera246b012005-08-11 16:25:23 -0400659
660 /* Continue transmitting the packet/record. We must be careful
661 * to cope with writespace callbacks arriving _after_ we have
Chuck Lever262965f2005-08-11 16:25:56 -0400662 * called sendmsg(). */
Chuck Levera246b012005-08-11 16:25:23 -0400663 while (1) {
Jason Baronf279cd02014-09-24 18:08:00 +0000664 sent = 0;
665 status = xs_sendpages(transport->sock, NULL, 0, xdr,
666 req->rq_bytes_sent, zerocopy, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400667
Chuck Lever46121cf2007-01-31 12:14:08 -0500668 dprintk("RPC: xs_tcp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400669 xdr->len - req->rq_bytes_sent, status);
670
Chuck Lever262965f2005-08-11 16:25:56 -0400671 /* If we've sent the entire packet, immediately
672 * reset the count of bytes sent. */
Jason Baronf279cd02014-09-24 18:08:00 +0000673 req->rq_bytes_sent += sent;
674 req->rq_xmit_bytes_sent += sent;
Chuck Lever262965f2005-08-11 16:25:56 -0400675 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
676 req->rq_bytes_sent = 0;
677 return 0;
Chuck Levera246b012005-08-11 16:25:23 -0400678 }
679
Trond Myklebustf580dd02015-07-11 17:48:52 +0200680 if (status < 0)
681 break;
682 if (sent == 0) {
683 status = -EAGAIN;
684 break;
685 }
Chuck Levera246b012005-08-11 16:25:23 -0400686 }
NeilBrown743c69e2015-07-27 10:55:35 +1000687 if (status == -EAGAIN && sk_stream_is_writeable(transport->inet))
688 status = -ENOBUFS;
Chuck Levera246b012005-08-11 16:25:23 -0400689
Chuck Lever262965f2005-08-11 16:25:56 -0400690 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400691 case -ENOTSOCK:
692 status = -ENOTCONN;
693 /* Should we call xs_close() here? */
694 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400695 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400696 status = xs_nospace(task);
Chuck Lever262965f2005-08-11 16:25:56 -0400697 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400698 case -ECONNRESET:
Chuck Lever262965f2005-08-11 16:25:56 -0400699 case -ECONNREFUSED:
700 case -ENOTCONN:
Trond Myklebust3913c782015-02-08 21:44:04 -0500701 case -EADDRINUSE:
Trond Myklebustb5872f02015-07-03 09:32:23 -0400702 case -ENOBUFS:
Trond Myklebustb9d2bb22012-10-23 11:40:02 -0400703 case -EPIPE:
Trond Myklebust13331a52016-01-06 08:57:06 -0500704 break;
705 default:
706 dprintk("RPC: sendmsg returned unrecognized error %d\n",
707 -status);
Chuck Levera246b012005-08-11 16:25:23 -0400708 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800709
Chuck Levera246b012005-08-11 16:25:23 -0400710 return status;
711}
712
Chuck Lever9903cd12005-08-11 16:25:26 -0400713/**
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400714 * xs_tcp_release_xprt - clean up after a tcp transmission
715 * @xprt: transport
716 * @task: rpc task
717 *
718 * This cleans up if an error causes us to abort the transmission of a request.
719 * In this case, the socket may need to be reset in order to avoid confusing
720 * the server.
721 */
722static void xs_tcp_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
723{
724 struct rpc_rqst *req;
725
726 if (task != xprt->snd_task)
727 return;
728 if (task == NULL)
729 goto out_release;
730 req = task->tk_rqstp;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400731 if (req == NULL)
732 goto out_release;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400733 if (req->rq_bytes_sent == 0)
734 goto out_release;
735 if (req->rq_bytes_sent == req->rq_snd_buf.len)
736 goto out_release;
Trond Myklebusta4f08352013-01-08 09:10:21 -0500737 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400738out_release:
739 xprt_release_xprt(xprt, task);
740}
741
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400742static void xs_save_old_callbacks(struct sock_xprt *transport, struct sock *sk)
743{
744 transport->old_data_ready = sk->sk_data_ready;
745 transport->old_state_change = sk->sk_state_change;
746 transport->old_write_space = sk->sk_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500747 transport->old_error_report = sk->sk_error_report;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400748}
749
750static void xs_restore_old_callbacks(struct sock_xprt *transport, struct sock *sk)
751{
752 sk->sk_data_ready = transport->old_data_ready;
753 sk->sk_state_change = transport->old_state_change;
754 sk->sk_write_space = transport->old_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500755 sk->sk_error_report = transport->old_error_report;
756}
757
Trond Myklebust42d42a52016-05-23 09:24:55 -0400758static void xs_sock_reset_state_flags(struct rpc_xprt *xprt)
759{
760 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
761
762 clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state);
763}
764
Trond Myklebustb70ae912015-02-09 09:41:32 -0500765static void xs_sock_reset_connection_flags(struct rpc_xprt *xprt)
766{
767 smp_mb__before_atomic();
768 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
769 clear_bit(XPRT_CLOSING, &xprt->state);
Trond Myklebust42d42a52016-05-23 09:24:55 -0400770 xs_sock_reset_state_flags(xprt);
Trond Myklebustb70ae912015-02-09 09:41:32 -0500771 smp_mb__after_atomic();
772}
773
774static void xs_sock_mark_closed(struct rpc_xprt *xprt)
775{
776 xs_sock_reset_connection_flags(xprt);
777 /* Mark transport as closed and wake up all pending tasks */
778 xprt_disconnect_done(xprt);
779}
780
Trond Myklebust21180712013-12-31 13:22:59 -0500781/**
782 * xs_error_report - callback to handle TCP socket state errors
783 * @sk: socket
784 *
785 * Note: we don't call sock_error() since there may be a rpc_task
786 * using the socket, and so we don't want to clear sk->sk_err.
787 */
788static void xs_error_report(struct sock *sk)
789{
790 struct rpc_xprt *xprt;
791 int err;
792
793 read_lock_bh(&sk->sk_callback_lock);
794 if (!(xprt = xprt_from_sock(sk)))
795 goto out;
796
797 err = -sk->sk_err;
798 if (err == 0)
799 goto out;
Trond Myklebustb70ae912015-02-09 09:41:32 -0500800 /* Is this a reset event? */
801 if (sk->sk_state == TCP_CLOSE)
802 xs_sock_mark_closed(xprt);
Trond Myklebust21180712013-12-31 13:22:59 -0500803 dprintk("RPC: xs_error_report client %p, error=%d...\n",
804 xprt, -err);
Trond Myklebuste8353c762013-12-31 13:39:22 -0500805 trace_rpc_socket_error(xprt, sk->sk_socket, err);
Trond Myklebust21180712013-12-31 13:22:59 -0500806 xprt_wake_pending_tasks(xprt, err);
807 out:
808 read_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400809}
810
Chuck Leverfe315e72009-03-11 14:10:21 -0400811static void xs_reset_transport(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -0400812{
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500813 struct socket *sock = transport->sock;
814 struct sock *sk = transport->inet;
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500815 struct rpc_xprt *xprt = &transport->xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400816
Chuck Leverfe315e72009-03-11 14:10:21 -0400817 if (sk == NULL)
818 return;
Chuck Lever9903cd12005-08-11 16:25:26 -0400819
Jeff Layton264d1df2015-06-03 16:14:27 -0400820 if (atomic_read(&transport->xprt.swapper))
821 sk_clear_memalloc(sk);
822
Trond Myklebust09939202015-08-29 19:11:21 -0700823 kernel_sock_shutdown(sock, SHUT_RDWR);
824
Trond Myklebustedc1b012015-10-05 10:53:49 -0400825 mutex_lock(&transport->recv_mutex);
Chuck Levera246b012005-08-11 16:25:23 -0400826 write_lock_bh(&sk->sk_callback_lock);
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500827 transport->inet = NULL;
828 transport->sock = NULL;
Chuck Levera246b012005-08-11 16:25:23 -0400829
Chuck Lever9903cd12005-08-11 16:25:26 -0400830 sk->sk_user_data = NULL;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400831
832 xs_restore_old_callbacks(transport, sk);
Trond Myklebust0c787892015-08-29 13:36:30 -0700833 xprt_clear_connected(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400834 write_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500835 xs_sock_reset_connection_flags(xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -0400836 mutex_unlock(&transport->recv_mutex);
Chuck Levera246b012005-08-11 16:25:23 -0400837
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500838 trace_rpc_socket_close(xprt, sock);
Chuck Levera246b012005-08-11 16:25:23 -0400839 sock_release(sock);
Chuck Leverfe315e72009-03-11 14:10:21 -0400840}
841
842/**
843 * xs_close - close a socket
844 * @xprt: transport
845 *
846 * This is used when all requests are complete; ie, no DRC state remains
847 * on the server we want to save.
Trond Myklebustf75e6742009-04-21 17:18:20 -0400848 *
849 * The caller _must_ be holding XPRT_LOCKED in order to avoid issues with
850 * xs_reset_transport() zeroing the socket from underneath a writer.
Chuck Leverfe315e72009-03-11 14:10:21 -0400851 */
852static void xs_close(struct rpc_xprt *xprt)
853{
854 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
855
856 dprintk("RPC: xs_close xprt %p\n", xprt);
857
858 xs_reset_transport(transport);
Neil Brown61d0a8e2009-09-23 14:36:37 -0400859 xprt->reestablish_timeout = 0;
Chuck Leverfe315e72009-03-11 14:10:21 -0400860
Trond Myklebust62da3b22007-11-06 18:44:20 -0500861 xprt_disconnect_done(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400862}
863
Chuck Lever4a068252015-05-11 14:02:25 -0400864static void xs_inject_disconnect(struct rpc_xprt *xprt)
865{
866 dprintk("RPC: injecting transport disconnect on xprt=%p\n",
867 xprt);
868 xprt_disconnect_done(xprt);
869}
870
Kinglong Mee315f3812014-03-24 11:07:22 +0800871static void xs_xprt_free(struct rpc_xprt *xprt)
872{
873 xs_free_peer_addresses(xprt);
874 xprt_free(xprt);
875}
876
Chuck Lever9903cd12005-08-11 16:25:26 -0400877/**
878 * xs_destroy - prepare to shutdown a transport
879 * @xprt: doomed transport
880 *
881 */
882static void xs_destroy(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -0400883{
Trond Myklebust03c788272015-09-17 10:42:27 -0400884 struct sock_xprt *transport = container_of(xprt,
885 struct sock_xprt, xprt);
Chuck Lever46121cf2007-01-31 12:14:08 -0500886 dprintk("RPC: xs_destroy xprt %p\n", xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -0400887
Trond Myklebust03c788272015-09-17 10:42:27 -0400888 cancel_delayed_work_sync(&transport->connect_worker);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400889 xs_close(xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -0400890 cancel_work_sync(&transport->recv_worker);
Kinglong Mee315f3812014-03-24 11:07:22 +0800891 xs_xprt_free(xprt);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400892 module_put(THIS_MODULE);
Chuck Levera246b012005-08-11 16:25:23 -0400893}
894
Chuck Lever176e21e2011-05-09 15:22:44 -0400895static int xs_local_copy_to_xdr(struct xdr_buf *xdr, struct sk_buff *skb)
896{
897 struct xdr_skb_reader desc = {
898 .skb = skb,
899 .offset = sizeof(rpc_fraghdr),
900 .count = skb->len - sizeof(rpc_fraghdr),
901 };
902
903 if (xdr_partial_copy_from_skb(xdr, 0, &desc, xdr_skb_read_bits) < 0)
904 return -1;
905 if (desc.count)
906 return -1;
907 return 0;
908}
909
910/**
Trond Myklebusta2648092015-10-06 17:03:00 -0400911 * xs_local_data_read_skb
912 * @xprt: transport
913 * @sk: socket
914 * @skb: skbuff
Chuck Lever176e21e2011-05-09 15:22:44 -0400915 *
916 * Currently this assumes we can read the whole reply in a single gulp.
917 */
Trond Myklebusta2648092015-10-06 17:03:00 -0400918static void xs_local_data_read_skb(struct rpc_xprt *xprt,
919 struct sock *sk,
920 struct sk_buff *skb)
Chuck Lever176e21e2011-05-09 15:22:44 -0400921{
922 struct rpc_task *task;
Chuck Lever176e21e2011-05-09 15:22:44 -0400923 struct rpc_rqst *rovr;
Trond Myklebusta2648092015-10-06 17:03:00 -0400924 int repsize, copied;
Chuck Lever176e21e2011-05-09 15:22:44 -0400925 u32 _xid;
926 __be32 *xp;
927
Chuck Lever176e21e2011-05-09 15:22:44 -0400928 repsize = skb->len - sizeof(rpc_fraghdr);
929 if (repsize < 4) {
930 dprintk("RPC: impossible RPC reply size %d\n", repsize);
Trond Myklebusta2648092015-10-06 17:03:00 -0400931 return;
Chuck Lever176e21e2011-05-09 15:22:44 -0400932 }
933
934 /* Copy the XID from the skb... */
935 xp = skb_header_pointer(skb, sizeof(rpc_fraghdr), sizeof(_xid), &_xid);
936 if (xp == NULL)
Trond Myklebusta2648092015-10-06 17:03:00 -0400937 return;
Chuck Lever176e21e2011-05-09 15:22:44 -0400938
939 /* Look up and lock the request corresponding to the given XID */
Trond Myklebusta2648092015-10-06 17:03:00 -0400940 spin_lock_bh(&xprt->transport_lock);
Chuck Lever176e21e2011-05-09 15:22:44 -0400941 rovr = xprt_lookup_rqst(xprt, *xp);
942 if (!rovr)
943 goto out_unlock;
944 task = rovr->rq_task;
945
946 copied = rovr->rq_private_buf.buflen;
947 if (copied > repsize)
948 copied = repsize;
949
950 if (xs_local_copy_to_xdr(&rovr->rq_private_buf, skb)) {
951 dprintk("RPC: sk_buff copy failed\n");
952 goto out_unlock;
953 }
954
955 xprt_complete_rqst(task, copied);
956
957 out_unlock:
Trond Myklebusta2648092015-10-06 17:03:00 -0400958 spin_unlock_bh(&xprt->transport_lock);
959}
960
961static void xs_local_data_receive(struct sock_xprt *transport)
962{
963 struct sk_buff *skb;
964 struct sock *sk;
965 int err;
966
967 mutex_lock(&transport->recv_mutex);
968 sk = transport->inet;
969 if (sk == NULL)
970 goto out;
971 for (;;) {
972 skb = skb_recv_datagram(sk, 0, 1, &err);
Trond Myklebust42d42a52016-05-23 09:24:55 -0400973 if (skb != NULL) {
974 xs_local_data_read_skb(&transport->xprt, sk, skb);
975 skb_free_datagram(sk, skb);
976 continue;
977 }
978 if (!test_and_clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
Trond Myklebusta2648092015-10-06 17:03:00 -0400979 break;
Trond Myklebusta2648092015-10-06 17:03:00 -0400980 }
981out:
982 mutex_unlock(&transport->recv_mutex);
983}
984
985static void xs_local_data_receive_workfn(struct work_struct *work)
986{
987 struct sock_xprt *transport =
988 container_of(work, struct sock_xprt, recv_worker);
989 xs_local_data_receive(transport);
Chuck Lever176e21e2011-05-09 15:22:44 -0400990}
991
Chuck Lever9903cd12005-08-11 16:25:26 -0400992/**
Trond Myklebustf9b2ee72015-10-06 16:26:05 -0400993 * xs_udp_data_read_skb - receive callback for UDP sockets
994 * @xprt: transport
995 * @sk: socket
996 * @skb: skbuff
Chuck Lever9903cd12005-08-11 16:25:26 -0400997 *
998 */
Trond Myklebustf9b2ee72015-10-06 16:26:05 -0400999static void xs_udp_data_read_skb(struct rpc_xprt *xprt,
1000 struct sock *sk,
1001 struct sk_buff *skb)
Chuck Lever9903cd12005-08-11 16:25:26 -04001002{
1003 struct rpc_task *task;
Chuck Levera246b012005-08-11 16:25:23 -04001004 struct rpc_rqst *rovr;
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001005 int repsize, copied;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001006 u32 _xid;
1007 __be32 *xp;
Chuck Levera246b012005-08-11 16:25:23 -04001008
Willem de Bruijn1da8c6812016-04-07 11:44:58 -04001009 repsize = skb->len;
Chuck Levera246b012005-08-11 16:25:23 -04001010 if (repsize < 4) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001011 dprintk("RPC: impossible RPC reply size %d!\n", repsize);
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001012 return;
Chuck Levera246b012005-08-11 16:25:23 -04001013 }
1014
1015 /* Copy the XID from the skb... */
Willem de Bruijn1da8c6812016-04-07 11:44:58 -04001016 xp = skb_header_pointer(skb, 0, sizeof(_xid), &_xid);
Chuck Levera246b012005-08-11 16:25:23 -04001017 if (xp == NULL)
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001018 return;
Chuck Levera246b012005-08-11 16:25:23 -04001019
1020 /* Look up and lock the request corresponding to the given XID */
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001021 spin_lock_bh(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001022 rovr = xprt_lookup_rqst(xprt, *xp);
1023 if (!rovr)
1024 goto out_unlock;
1025 task = rovr->rq_task;
1026
Chuck Levera246b012005-08-11 16:25:23 -04001027 if ((copied = rovr->rq_private_buf.buflen) > repsize)
1028 copied = repsize;
1029
1030 /* Suck it into the iovec, verify checksum if not done by hw. */
Herbert Xu1781f7f2007-12-11 11:30:32 -08001031 if (csum_partial_copy_to_xdr(&rovr->rq_private_buf, skb)) {
Eric Dumazet02c22342016-04-27 16:44:30 -07001032 __UDPX_INC_STATS(sk, UDP_MIB_INERRORS);
Chuck Levera246b012005-08-11 16:25:23 -04001033 goto out_unlock;
Herbert Xu1781f7f2007-12-11 11:30:32 -08001034 }
1035
Eric Dumazet02c22342016-04-27 16:44:30 -07001036 __UDPX_INC_STATS(sk, UDP_MIB_INDATAGRAMS);
Chuck Levera246b012005-08-11 16:25:23 -04001037
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001038 xprt_adjust_cwnd(xprt, task, copied);
Chuck Lever1570c1e2005-08-25 16:25:52 -07001039 xprt_complete_rqst(task, copied);
Chuck Levera246b012005-08-11 16:25:23 -04001040
1041 out_unlock:
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001042 spin_unlock_bh(&xprt->transport_lock);
1043}
1044
1045static void xs_udp_data_receive(struct sock_xprt *transport)
1046{
1047 struct sk_buff *skb;
1048 struct sock *sk;
1049 int err;
1050
1051 mutex_lock(&transport->recv_mutex);
1052 sk = transport->inet;
1053 if (sk == NULL)
1054 goto out;
1055 for (;;) {
1056 skb = skb_recv_datagram(sk, 0, 1, &err);
Trond Myklebust42d42a52016-05-23 09:24:55 -04001057 if (skb != NULL) {
1058 xs_udp_data_read_skb(&transport->xprt, sk, skb);
1059 skb_free_datagram(sk, skb);
1060 continue;
1061 }
1062 if (!test_and_clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001063 break;
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001064 }
1065out:
1066 mutex_unlock(&transport->recv_mutex);
1067}
1068
1069static void xs_udp_data_receive_workfn(struct work_struct *work)
1070{
1071 struct sock_xprt *transport =
1072 container_of(work, struct sock_xprt, recv_worker);
1073 xs_udp_data_receive(transport);
1074}
1075
1076/**
1077 * xs_data_ready - "data ready" callback for UDP sockets
1078 * @sk: socket with data to read
1079 *
1080 */
1081static void xs_data_ready(struct sock *sk)
1082{
1083 struct rpc_xprt *xprt;
1084
1085 read_lock_bh(&sk->sk_callback_lock);
1086 dprintk("RPC: xs_data_ready...\n");
1087 xprt = xprt_from_sock(sk);
1088 if (xprt != NULL) {
1089 struct sock_xprt *transport = container_of(xprt,
1090 struct sock_xprt, xprt);
Trond Myklebust5157b952016-05-29 10:13:24 -04001091 transport->old_data_ready(sk);
1092 /* Any data means we had a useful conversation, so
1093 * then we don't need to delay the next reconnect
1094 */
1095 if (xprt->reestablish_timeout)
1096 xprt->reestablish_timeout = 0;
Trond Myklebust42d42a52016-05-23 09:24:55 -04001097 if (!test_and_set_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
1098 queue_work(rpciod_workqueue, &transport->recv_worker);
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001099 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001100 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001101}
1102
Trond Myklebusta519fc72012-09-12 16:49:15 -04001103/*
1104 * Helper function to force a TCP close if the server is sending
1105 * junk and/or it has put us in CLOSE_WAIT
1106 */
1107static void xs_tcp_force_close(struct rpc_xprt *xprt)
1108{
Trond Myklebusta519fc72012-09-12 16:49:15 -04001109 xprt_force_disconnect(xprt);
1110}
1111
Chuck Leverdd456472006-12-05 16:35:44 -05001112static inline void xs_tcp_read_fraghdr(struct rpc_xprt *xprt, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001113{
Chuck Lever51971132006-12-05 16:35:19 -05001114 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001115 size_t len, used;
1116 char *p;
1117
Chuck Lever51971132006-12-05 16:35:19 -05001118 p = ((char *) &transport->tcp_fraghdr) + transport->tcp_offset;
1119 len = sizeof(transport->tcp_fraghdr) - transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001120 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001121 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001122 if (used != len)
1123 return;
Chuck Lever808012f2005-08-25 16:25:49 -07001124
Chuck Lever51971132006-12-05 16:35:19 -05001125 transport->tcp_reclen = ntohl(transport->tcp_fraghdr);
1126 if (transport->tcp_reclen & RPC_LAST_STREAM_FRAGMENT)
Chuck Levere136d092006-12-05 16:35:23 -05001127 transport->tcp_flags |= TCP_RCV_LAST_FRAG;
Chuck Levera246b012005-08-11 16:25:23 -04001128 else
Chuck Levere136d092006-12-05 16:35:23 -05001129 transport->tcp_flags &= ~TCP_RCV_LAST_FRAG;
Chuck Lever51971132006-12-05 16:35:19 -05001130 transport->tcp_reclen &= RPC_FRAGMENT_SIZE_MASK;
Chuck Lever808012f2005-08-25 16:25:49 -07001131
Chuck Levere136d092006-12-05 16:35:23 -05001132 transport->tcp_flags &= ~TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001133 transport->tcp_offset = 0;
Chuck Lever808012f2005-08-25 16:25:49 -07001134
Chuck Levera246b012005-08-11 16:25:23 -04001135 /* Sanity check of the record length */
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001136 if (unlikely(transport->tcp_reclen < 8)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001137 dprintk("RPC: invalid TCP record fragment length\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001138 xs_tcp_force_close(xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -04001139 return;
Chuck Levera246b012005-08-11 16:25:23 -04001140 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001141 dprintk("RPC: reading TCP record fragment of length %d\n",
Chuck Lever51971132006-12-05 16:35:19 -05001142 transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001143}
1144
Chuck Lever51971132006-12-05 16:35:19 -05001145static void xs_tcp_check_fraghdr(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -04001146{
Chuck Lever51971132006-12-05 16:35:19 -05001147 if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001148 transport->tcp_flags |= TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001149 transport->tcp_offset = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001150 if (transport->tcp_flags & TCP_RCV_LAST_FRAG) {
1151 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1152 transport->tcp_flags |= TCP_RCV_COPY_XID;
Chuck Lever51971132006-12-05 16:35:19 -05001153 transport->tcp_copied = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001154 }
1155 }
1156}
1157
Chuck Leverdd456472006-12-05 16:35:44 -05001158static inline void xs_tcp_read_xid(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001159{
1160 size_t len, used;
1161 char *p;
1162
Chuck Lever51971132006-12-05 16:35:19 -05001163 len = sizeof(transport->tcp_xid) - transport->tcp_offset;
Chuck Lever46121cf2007-01-31 12:14:08 -05001164 dprintk("RPC: reading XID (%Zu bytes)\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001165 p = ((char *) &transport->tcp_xid) + transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001166 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001167 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001168 if (used != len)
1169 return;
Chuck Levere136d092006-12-05 16:35:23 -05001170 transport->tcp_flags &= ~TCP_RCV_COPY_XID;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001171 transport->tcp_flags |= TCP_RCV_READ_CALLDIR;
Chuck Lever51971132006-12-05 16:35:19 -05001172 transport->tcp_copied = 4;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001173 dprintk("RPC: reading %s XID %08x\n",
1174 (transport->tcp_flags & TCP_RPC_REPLY) ? "reply for"
1175 : "request with",
Chuck Lever51971132006-12-05 16:35:19 -05001176 ntohl(transport->tcp_xid));
1177 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001178}
1179
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001180static inline void xs_tcp_read_calldir(struct sock_xprt *transport,
1181 struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001182{
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001183 size_t len, used;
1184 u32 offset;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001185 char *p;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001186
1187 /*
1188 * We want transport->tcp_offset to be 8 at the end of this routine
1189 * (4 bytes for the xid and 4 bytes for the call/reply flag).
1190 * When this function is called for the first time,
1191 * transport->tcp_offset is 4 (after having already read the xid).
1192 */
1193 offset = transport->tcp_offset - sizeof(transport->tcp_xid);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001194 len = sizeof(transport->tcp_calldir) - offset;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001195 dprintk("RPC: reading CALL/REPLY flag (%Zu bytes)\n", len);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001196 p = ((char *) &transport->tcp_calldir) + offset;
1197 used = xdr_skb_read_bits(desc, p, len);
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001198 transport->tcp_offset += used;
1199 if (used != len)
1200 return;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001201 transport->tcp_flags &= ~TCP_RCV_READ_CALLDIR;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001202 /*
1203 * We don't yet have the XDR buffer, so we will write the calldir
1204 * out after we get the buffer from the 'struct rpc_rqst'
1205 */
Trond Myklebustb76ce562010-06-16 13:57:32 -04001206 switch (ntohl(transport->tcp_calldir)) {
1207 case RPC_REPLY:
1208 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1209 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001210 transport->tcp_flags |= TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001211 break;
1212 case RPC_CALL:
1213 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1214 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001215 transport->tcp_flags &= ~TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001216 break;
1217 default:
1218 dprintk("RPC: invalid request message type\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001219 xs_tcp_force_close(&transport->xprt);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001220 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001221 xs_tcp_check_fraghdr(transport);
1222}
1223
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001224static inline void xs_tcp_read_common(struct rpc_xprt *xprt,
1225 struct xdr_skb_reader *desc,
1226 struct rpc_rqst *req)
Chuck Levera246b012005-08-11 16:25:23 -04001227{
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001228 struct sock_xprt *transport =
1229 container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001230 struct xdr_buf *rcvbuf;
1231 size_t len;
1232 ssize_t r;
1233
Chuck Levera246b012005-08-11 16:25:23 -04001234 rcvbuf = &req->rq_private_buf;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001235
1236 if (transport->tcp_flags & TCP_RCV_COPY_CALLDIR) {
1237 /*
1238 * Save the RPC direction in the XDR buffer
1239 */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001240 memcpy(rcvbuf->head[0].iov_base + transport->tcp_copied,
Trond Myklebustb76ce562010-06-16 13:57:32 -04001241 &transport->tcp_calldir,
1242 sizeof(transport->tcp_calldir));
1243 transport->tcp_copied += sizeof(transport->tcp_calldir);
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001244 transport->tcp_flags &= ~TCP_RCV_COPY_CALLDIR;
Chuck Levera246b012005-08-11 16:25:23 -04001245 }
1246
Chuck Levera246b012005-08-11 16:25:23 -04001247 len = desc->count;
Chuck Lever51971132006-12-05 16:35:19 -05001248 if (len > transport->tcp_reclen - transport->tcp_offset) {
Chuck Leverdd456472006-12-05 16:35:44 -05001249 struct xdr_skb_reader my_desc;
Chuck Levera246b012005-08-11 16:25:23 -04001250
Chuck Lever51971132006-12-05 16:35:19 -05001251 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001252 memcpy(&my_desc, desc, sizeof(my_desc));
1253 my_desc.count = len;
Chuck Lever51971132006-12-05 16:35:19 -05001254 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001255 &my_desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001256 desc->count -= r;
1257 desc->offset += r;
1258 } else
Chuck Lever51971132006-12-05 16:35:19 -05001259 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001260 desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001261
1262 if (r > 0) {
Chuck Lever51971132006-12-05 16:35:19 -05001263 transport->tcp_copied += r;
1264 transport->tcp_offset += r;
Chuck Levera246b012005-08-11 16:25:23 -04001265 }
1266 if (r != len) {
1267 /* Error when copying to the receive buffer,
1268 * usually because we weren't able to allocate
1269 * additional buffer pages. All we can do now
Chuck Levere136d092006-12-05 16:35:23 -05001270 * is turn off TCP_RCV_COPY_DATA, so the request
Chuck Levera246b012005-08-11 16:25:23 -04001271 * will not receive any additional updates,
1272 * and time out.
1273 * Any remaining data from this record will
1274 * be discarded.
1275 */
Chuck Levere136d092006-12-05 16:35:23 -05001276 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever46121cf2007-01-31 12:14:08 -05001277 dprintk("RPC: XID %08x truncated request\n",
Chuck Lever51971132006-12-05 16:35:19 -05001278 ntohl(transport->tcp_xid));
Chuck Lever46121cf2007-01-31 12:14:08 -05001279 dprintk("RPC: xprt = %p, tcp_copied = %lu, "
1280 "tcp_offset = %u, tcp_reclen = %u\n",
1281 xprt, transport->tcp_copied,
1282 transport->tcp_offset, transport->tcp_reclen);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001283 return;
Chuck Levera246b012005-08-11 16:25:23 -04001284 }
1285
Chuck Lever46121cf2007-01-31 12:14:08 -05001286 dprintk("RPC: XID %08x read %Zd bytes\n",
Chuck Lever51971132006-12-05 16:35:19 -05001287 ntohl(transport->tcp_xid), r);
Chuck Lever46121cf2007-01-31 12:14:08 -05001288 dprintk("RPC: xprt = %p, tcp_copied = %lu, tcp_offset = %u, "
1289 "tcp_reclen = %u\n", xprt, transport->tcp_copied,
1290 transport->tcp_offset, transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001291
Chuck Lever51971132006-12-05 16:35:19 -05001292 if (transport->tcp_copied == req->rq_private_buf.buflen)
Chuck Levere136d092006-12-05 16:35:23 -05001293 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever51971132006-12-05 16:35:19 -05001294 else if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001295 if (transport->tcp_flags & TCP_RCV_LAST_FRAG)
1296 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Levera246b012005-08-11 16:25:23 -04001297 }
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001298}
1299
1300/*
1301 * Finds the request corresponding to the RPC xid and invokes the common
1302 * tcp read code to read the data.
1303 */
1304static inline int xs_tcp_read_reply(struct rpc_xprt *xprt,
1305 struct xdr_skb_reader *desc)
1306{
1307 struct sock_xprt *transport =
1308 container_of(xprt, struct sock_xprt, xprt);
1309 struct rpc_rqst *req;
1310
1311 dprintk("RPC: read reply XID %08x\n", ntohl(transport->tcp_xid));
1312
1313 /* Find and lock the request corresponding to this xid */
Trond Myklebustedc1b012015-10-05 10:53:49 -04001314 spin_lock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001315 req = xprt_lookup_rqst(xprt, transport->tcp_xid);
1316 if (!req) {
1317 dprintk("RPC: XID %08x request not found!\n",
1318 ntohl(transport->tcp_xid));
Trond Myklebustedc1b012015-10-05 10:53:49 -04001319 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001320 return -1;
1321 }
1322
1323 xs_tcp_read_common(xprt, desc, req);
1324
Chuck Levere136d092006-12-05 16:35:23 -05001325 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
Chuck Lever51971132006-12-05 16:35:19 -05001326 xprt_complete_rqst(req->rq_task, transport->tcp_copied);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001327
Trond Myklebustedc1b012015-10-05 10:53:49 -04001328 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001329 return 0;
1330}
1331
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001332#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001333/*
1334 * Obtains an rpc_rqst previously allocated and invokes the common
1335 * tcp read code to read the data. The result is placed in the callback
1336 * queue.
1337 * If we're unable to obtain the rpc_rqst we schedule the closing of the
1338 * connection and return -1.
1339 */
Trond Myklebust2ea24492014-02-10 11:18:39 -05001340static int xs_tcp_read_callback(struct rpc_xprt *xprt,
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001341 struct xdr_skb_reader *desc)
1342{
1343 struct sock_xprt *transport =
1344 container_of(xprt, struct sock_xprt, xprt);
1345 struct rpc_rqst *req;
1346
Trond Myklebust2ea24492014-02-10 11:18:39 -05001347 /* Look up and lock the request corresponding to the given XID */
Trond Myklebustedc1b012015-10-05 10:53:49 -04001348 spin_lock_bh(&xprt->transport_lock);
Trond Myklebust2ea24492014-02-10 11:18:39 -05001349 req = xprt_lookup_bc_request(xprt, transport->tcp_xid);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001350 if (req == NULL) {
Trond Myklebustedc1b012015-10-05 10:53:49 -04001351 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001352 printk(KERN_WARNING "Callback slot table overflowed\n");
1353 xprt_force_disconnect(xprt);
1354 return -1;
1355 }
1356
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001357 dprintk("RPC: read callback XID %08x\n", ntohl(req->rq_xid));
1358 xs_tcp_read_common(xprt, desc, req);
1359
Trond Myklebust2ea24492014-02-10 11:18:39 -05001360 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
1361 xprt_complete_bc_request(req, transport->tcp_copied);
Trond Myklebustedc1b012015-10-05 10:53:49 -04001362 spin_unlock_bh(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001363
1364 return 0;
1365}
1366
1367static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1368 struct xdr_skb_reader *desc)
1369{
1370 struct sock_xprt *transport =
1371 container_of(xprt, struct sock_xprt, xprt);
1372
1373 return (transport->tcp_flags & TCP_RPC_REPLY) ?
1374 xs_tcp_read_reply(xprt, desc) :
1375 xs_tcp_read_callback(xprt, desc);
1376}
Chuck Lever76566772015-10-24 17:28:32 -04001377
1378static int xs_tcp_bc_up(struct svc_serv *serv, struct net *net)
1379{
1380 int ret;
1381
1382 ret = svc_create_xprt(serv, "tcp-bc", net, PF_INET, 0,
1383 SVC_SOCK_ANONYMOUS);
1384 if (ret < 0)
1385 return ret;
1386 return 0;
1387}
Chuck Lever6b26cc82016-05-02 14:40:40 -04001388
1389static size_t xs_tcp_bc_maxpayload(struct rpc_xprt *xprt)
1390{
1391 return PAGE_SIZE;
1392}
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001393#else
1394static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1395 struct xdr_skb_reader *desc)
1396{
1397 return xs_tcp_read_reply(xprt, desc);
1398}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001399#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001400
1401/*
1402 * Read data off the transport. This can be either an RPC_CALL or an
1403 * RPC_REPLY. Relay the processing to helper functions.
1404 */
1405static void xs_tcp_read_data(struct rpc_xprt *xprt,
1406 struct xdr_skb_reader *desc)
1407{
1408 struct sock_xprt *transport =
1409 container_of(xprt, struct sock_xprt, xprt);
1410
1411 if (_xs_tcp_read_data(xprt, desc) == 0)
1412 xs_tcp_check_fraghdr(transport);
1413 else {
1414 /*
1415 * The transport_lock protects the request handling.
1416 * There's no need to hold it to update the tcp_flags.
1417 */
1418 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1419 }
Chuck Levera246b012005-08-11 16:25:23 -04001420}
1421
Chuck Leverdd456472006-12-05 16:35:44 -05001422static inline void xs_tcp_read_discard(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001423{
1424 size_t len;
1425
Chuck Lever51971132006-12-05 16:35:19 -05001426 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001427 if (len > desc->count)
1428 len = desc->count;
1429 desc->count -= len;
1430 desc->offset += len;
Chuck Lever51971132006-12-05 16:35:19 -05001431 transport->tcp_offset += len;
Chuck Lever46121cf2007-01-31 12:14:08 -05001432 dprintk("RPC: discarded %Zu bytes\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001433 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001434}
1435
Chuck Lever9903cd12005-08-11 16:25:26 -04001436static int xs_tcp_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb, unsigned int offset, size_t len)
Chuck Levera246b012005-08-11 16:25:23 -04001437{
1438 struct rpc_xprt *xprt = rd_desc->arg.data;
Chuck Lever51971132006-12-05 16:35:19 -05001439 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leverdd456472006-12-05 16:35:44 -05001440 struct xdr_skb_reader desc = {
Chuck Levera246b012005-08-11 16:25:23 -04001441 .skb = skb,
1442 .offset = offset,
1443 .count = len,
Chuck Lever9903cd12005-08-11 16:25:26 -04001444 };
Chuck Levera246b012005-08-11 16:25:23 -04001445
Chuck Lever46121cf2007-01-31 12:14:08 -05001446 dprintk("RPC: xs_tcp_data_recv started\n");
Chuck Levera246b012005-08-11 16:25:23 -04001447 do {
Jeff Layton1a867a02014-10-28 14:24:14 -04001448 trace_xs_tcp_data_recv(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001449 /* Read in a new fragment marker if necessary */
1450 /* Can we ever really expect to get completely empty fragments? */
Chuck Levere136d092006-12-05 16:35:23 -05001451 if (transport->tcp_flags & TCP_RCV_COPY_FRAGHDR) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001452 xs_tcp_read_fraghdr(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001453 continue;
1454 }
1455 /* Read in the xid if necessary */
Chuck Levere136d092006-12-05 16:35:23 -05001456 if (transport->tcp_flags & TCP_RCV_COPY_XID) {
Chuck Lever51971132006-12-05 16:35:19 -05001457 xs_tcp_read_xid(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001458 continue;
1459 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001460 /* Read in the call/reply flag */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001461 if (transport->tcp_flags & TCP_RCV_READ_CALLDIR) {
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001462 xs_tcp_read_calldir(transport, &desc);
1463 continue;
1464 }
Chuck Levera246b012005-08-11 16:25:23 -04001465 /* Read in the request data */
Chuck Levere136d092006-12-05 16:35:23 -05001466 if (transport->tcp_flags & TCP_RCV_COPY_DATA) {
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001467 xs_tcp_read_data(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001468 continue;
1469 }
1470 /* Skip over any trailing bytes on short reads */
Chuck Lever51971132006-12-05 16:35:19 -05001471 xs_tcp_read_discard(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001472 } while (desc.count);
Jeff Layton1a867a02014-10-28 14:24:14 -04001473 trace_xs_tcp_data_recv(transport);
Chuck Lever46121cf2007-01-31 12:14:08 -05001474 dprintk("RPC: xs_tcp_data_recv done\n");
Chuck Levera246b012005-08-11 16:25:23 -04001475 return len - desc.count;
1476}
1477
Trond Myklebust66d7a562015-10-05 11:19:20 -04001478static void xs_tcp_data_receive(struct sock_xprt *transport)
1479{
1480 struct rpc_xprt *xprt = &transport->xprt;
1481 struct sock *sk;
1482 read_descriptor_t rd_desc = {
1483 .count = 2*1024*1024,
1484 .arg.data = xprt,
1485 };
1486 unsigned long total = 0;
1487 int read = 0;
1488
Trond Myklebustedc1b012015-10-05 10:53:49 -04001489 mutex_lock(&transport->recv_mutex);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001490 sk = transport->inet;
Trond Myklebustedc1b012015-10-05 10:53:49 -04001491 if (sk == NULL)
1492 goto out;
Trond Myklebust66d7a562015-10-05 11:19:20 -04001493
1494 /* We use rd_desc to pass struct xprt to xs_tcp_data_recv */
1495 for (;;) {
Trond Myklebustedc1b012015-10-05 10:53:49 -04001496 lock_sock(sk);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001497 read = tcp_read_sock(sk, &rd_desc, xs_tcp_data_recv);
Trond Myklebust42d42a52016-05-23 09:24:55 -04001498 if (read <= 0) {
1499 clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state);
1500 release_sock(sk);
1501 if (!test_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
1502 break;
1503 } else {
1504 release_sock(sk);
1505 total += read;
1506 }
Trond Myklebust66d7a562015-10-05 11:19:20 -04001507 rd_desc.count = 65536;
1508 }
Trond Myklebustedc1b012015-10-05 10:53:49 -04001509out:
1510 mutex_unlock(&transport->recv_mutex);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001511 trace_xs_tcp_data_ready(xprt, read, total);
1512}
1513
Trond Myklebustedc1b012015-10-05 10:53:49 -04001514static void xs_tcp_data_receive_workfn(struct work_struct *work)
1515{
1516 struct sock_xprt *transport =
1517 container_of(work, struct sock_xprt, recv_worker);
1518 xs_tcp_data_receive(transport);
1519}
1520
Chuck Lever9903cd12005-08-11 16:25:26 -04001521/**
Chuck Lever9903cd12005-08-11 16:25:26 -04001522 * xs_tcp_state_change - callback to handle TCP socket state changes
1523 * @sk: socket whose state has changed
1524 *
1525 */
1526static void xs_tcp_state_change(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001527{
Chuck Lever9903cd12005-08-11 16:25:26 -04001528 struct rpc_xprt *xprt;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001529 struct sock_xprt *transport;
Chuck Levera246b012005-08-11 16:25:23 -04001530
Eric Dumazetf064af12010-09-22 12:43:39 +00001531 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001532 if (!(xprt = xprt_from_sock(sk)))
1533 goto out;
Chuck Lever46121cf2007-01-31 12:14:08 -05001534 dprintk("RPC: xs_tcp_state_change client %p...\n", xprt);
Andy Chittenden669502f2010-08-10 10:19:53 -04001535 dprintk("RPC: state %x conn %d dead %d zapped %d sk_shutdown %d\n",
Chuck Lever46121cf2007-01-31 12:14:08 -05001536 sk->sk_state, xprt_connected(xprt),
1537 sock_flag(sk, SOCK_DEAD),
Andy Chittenden669502f2010-08-10 10:19:53 -04001538 sock_flag(sk, SOCK_ZAPPED),
1539 sk->sk_shutdown);
Chuck Levera246b012005-08-11 16:25:23 -04001540
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001541 transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04001542 trace_rpc_socket_state_change(xprt, sk->sk_socket);
Chuck Levera246b012005-08-11 16:25:23 -04001543 switch (sk->sk_state) {
1544 case TCP_ESTABLISHED:
Eric Dumazetf064af12010-09-22 12:43:39 +00001545 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001546 if (!xprt_test_and_set_connected(xprt)) {
Chuck Lever51971132006-12-05 16:35:19 -05001547
Chuck Levera246b012005-08-11 16:25:23 -04001548 /* Reset TCP record info */
Chuck Lever51971132006-12-05 16:35:19 -05001549 transport->tcp_offset = 0;
1550 transport->tcp_reclen = 0;
1551 transport->tcp_copied = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001552 transport->tcp_flags =
1553 TCP_RCV_COPY_FRAGHDR | TCP_RCV_COPY_XID;
Trond Myklebust8b717982013-09-26 10:18:04 -04001554 xprt->connect_cookie++;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001555 clear_bit(XPRT_SOCK_CONNECTING, &transport->sock_state);
1556 xprt_clear_connecting(xprt);
Chuck Lever51971132006-12-05 16:35:19 -05001557
Trond Myklebust2a491992009-03-11 14:38:00 -04001558 xprt_wake_pending_tasks(xprt, -EAGAIN);
Chuck Levera246b012005-08-11 16:25:23 -04001559 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001560 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001561 break;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001562 case TCP_FIN_WAIT1:
1563 /* The client initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001564 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001565 xprt->reestablish_timeout = 0;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001566 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001567 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001568 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebustef803672007-12-31 16:19:17 -05001569 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001570 smp_mb__after_atomic();
Chuck Levera246b012005-08-11 16:25:23 -04001571 break;
Trond Myklebust632e3bd2006-01-03 09:55:55 +01001572 case TCP_CLOSE_WAIT:
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001573 /* The server initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001574 xprt->connect_cookie++;
Trond Myklebustd0bea452012-10-23 11:35:47 -04001575 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebusta519fc72012-09-12 16:49:15 -04001576 xs_tcp_force_close(xprt);
Trond Myklebust663b8852008-01-01 18:42:12 -05001577 case TCP_CLOSING:
1578 /*
1579 * If the server closed down the connection, make sure that
1580 * we back off before reconnecting
1581 */
1582 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
1583 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001584 break;
1585 case TCP_LAST_ACK:
Trond Myklebust670f9452009-03-11 14:37:58 -04001586 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001587 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001588 clear_bit(XPRT_CONNECTED, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001589 smp_mb__after_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001590 break;
1591 case TCP_CLOSE:
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001592 if (test_and_clear_bit(XPRT_SOCK_CONNECTING,
1593 &transport->sock_state))
1594 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001595 xs_sock_mark_closed(xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001596 }
1597 out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001598 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001599}
1600
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001601static void xs_write_space(struct sock *sk)
1602{
Trond Myklebust13331a52016-01-06 08:57:06 -05001603 struct socket_wq *wq;
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001604 struct rpc_xprt *xprt;
1605
Trond Myklebust13331a52016-01-06 08:57:06 -05001606 if (!sk->sk_socket)
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001607 return;
Trond Myklebust13331a52016-01-06 08:57:06 -05001608 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001609
1610 if (unlikely(!(xprt = xprt_from_sock(sk))))
1611 return;
Trond Myklebust13331a52016-01-06 08:57:06 -05001612 rcu_read_lock();
1613 wq = rcu_dereference(sk->sk_wq);
1614 if (!wq || test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags) == 0)
1615 goto out;
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001616
1617 xprt_write_space(xprt);
Trond Myklebust13331a52016-01-06 08:57:06 -05001618out:
1619 rcu_read_unlock();
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001620}
1621
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001622/**
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001623 * xs_udp_write_space - callback invoked when socket buffer space
1624 * becomes available
Chuck Lever9903cd12005-08-11 16:25:26 -04001625 * @sk: socket whose state has changed
1626 *
Chuck Levera246b012005-08-11 16:25:23 -04001627 * Called when more output buffer space is available for this socket.
1628 * We try not to wake our writers until they can make "significant"
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001629 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
Chuck Levera246b012005-08-11 16:25:23 -04001630 * with a bunch of small requests.
1631 */
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001632static void xs_udp_write_space(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001633{
Eric Dumazetf064af12010-09-22 12:43:39 +00001634 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001635
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001636 /* from net/core/sock.c:sock_def_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001637 if (sock_writeable(sk))
1638 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001639
Eric Dumazetf064af12010-09-22 12:43:39 +00001640 read_unlock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001641}
Chuck Levera246b012005-08-11 16:25:23 -04001642
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001643/**
1644 * xs_tcp_write_space - callback invoked when socket buffer space
1645 * becomes available
1646 * @sk: socket whose state has changed
1647 *
1648 * Called when more output buffer space is available for this socket.
1649 * We try not to wake our writers until they can make "significant"
1650 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
1651 * with a bunch of small requests.
1652 */
1653static void xs_tcp_write_space(struct sock *sk)
1654{
Eric Dumazetf064af12010-09-22 12:43:39 +00001655 read_lock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001656
1657 /* from net/core/stream.c:sk_stream_write_space */
Eric Dumazet64dc6132013-07-22 20:26:31 -07001658 if (sk_stream_is_writeable(sk))
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001659 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001660
Eric Dumazetf064af12010-09-22 12:43:39 +00001661 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001662}
1663
Chuck Lever470056c2005-08-25 16:25:56 -07001664static void xs_udp_do_set_buffer_size(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -04001665{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001666 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1667 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -04001668
Chuck Lever7c6e0662006-12-05 16:35:30 -05001669 if (transport->rcvsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001670 sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001671 sk->sk_rcvbuf = transport->rcvsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001672 }
Chuck Lever7c6e0662006-12-05 16:35:30 -05001673 if (transport->sndsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001674 sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001675 sk->sk_sndbuf = transport->sndsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001676 sk->sk_write_space(sk);
1677 }
1678}
1679
Chuck Lever43118c22005-08-25 16:25:49 -07001680/**
Chuck Lever470056c2005-08-25 16:25:56 -07001681 * xs_udp_set_buffer_size - set send and receive limits
Chuck Lever43118c22005-08-25 16:25:49 -07001682 * @xprt: generic transport
Chuck Lever470056c2005-08-25 16:25:56 -07001683 * @sndsize: requested size of send buffer, in bytes
1684 * @rcvsize: requested size of receive buffer, in bytes
Chuck Lever43118c22005-08-25 16:25:49 -07001685 *
Chuck Lever470056c2005-08-25 16:25:56 -07001686 * Set socket send and receive buffer size limits.
Chuck Lever43118c22005-08-25 16:25:49 -07001687 */
Chuck Lever470056c2005-08-25 16:25:56 -07001688static void xs_udp_set_buffer_size(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize)
Chuck Lever43118c22005-08-25 16:25:49 -07001689{
Chuck Lever7c6e0662006-12-05 16:35:30 -05001690 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1691
1692 transport->sndsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001693 if (sndsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001694 transport->sndsize = sndsize + 1024;
1695 transport->rcvsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001696 if (rcvsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001697 transport->rcvsize = rcvsize + 1024;
Chuck Lever470056c2005-08-25 16:25:56 -07001698
1699 xs_udp_do_set_buffer_size(xprt);
Chuck Lever43118c22005-08-25 16:25:49 -07001700}
1701
Chuck Lever46c0ee82005-08-25 16:25:52 -07001702/**
1703 * xs_udp_timer - called when a retransmit timeout occurs on a UDP transport
1704 * @task: task that timed out
1705 *
1706 * Adjust the congestion window after a retransmit timeout has occurred.
1707 */
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001708static void xs_udp_timer(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Lever46c0ee82005-08-25 16:25:52 -07001709{
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001710 xprt_adjust_cwnd(xprt, task, -ETIMEDOUT);
Chuck Lever46c0ee82005-08-25 16:25:52 -07001711}
1712
Chuck Leverb85d8802006-05-25 01:40:49 -04001713static unsigned short xs_get_random_port(void)
1714{
1715 unsigned short range = xprt_max_resvport - xprt_min_resvport;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001716 unsigned short rand = (unsigned short) prandom_u32() % range;
Chuck Leverb85d8802006-05-25 01:40:49 -04001717 return rand + xprt_min_resvport;
1718}
1719
Chuck Lever92200412006-01-03 09:55:51 +01001720/**
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001721 * xs_set_reuseaddr_port - set the socket's port and address reuse options
1722 * @sock: socket
1723 *
1724 * Note that this function has to be called on all sockets that share the
1725 * same port, and it must be called before binding.
1726 */
1727static void xs_sock_set_reuseport(struct socket *sock)
1728{
Trond Myklebust402e23b2015-02-09 17:20:14 -05001729 int opt = 1;
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001730
Trond Myklebust402e23b2015-02-09 17:20:14 -05001731 kernel_setsockopt(sock, SOL_SOCKET, SO_REUSEPORT,
1732 (char *)&opt, sizeof(opt));
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001733}
1734
1735static unsigned short xs_sock_getport(struct socket *sock)
1736{
1737 struct sockaddr_storage buf;
1738 int buflen;
1739 unsigned short port = 0;
1740
1741 if (kernel_getsockname(sock, (struct sockaddr *)&buf, &buflen) < 0)
1742 goto out;
1743 switch (buf.ss_family) {
1744 case AF_INET6:
1745 port = ntohs(((struct sockaddr_in6 *)&buf)->sin6_port);
1746 break;
1747 case AF_INET:
1748 port = ntohs(((struct sockaddr_in *)&buf)->sin_port);
1749 }
1750out:
1751 return port;
1752}
1753
1754/**
Chuck Lever92200412006-01-03 09:55:51 +01001755 * xs_set_port - reset the port number in the remote endpoint address
1756 * @xprt: generic transport
1757 * @port: new port number
1758 *
1759 */
1760static void xs_set_port(struct rpc_xprt *xprt, unsigned short port)
1761{
Chuck Lever46121cf2007-01-31 12:14:08 -05001762 dprintk("RPC: setting port for xprt %p to %u\n", xprt, port);
Chuck Leverc4efcb12006-08-22 20:06:19 -04001763
Chuck Lever9dc3b092009-08-09 15:09:46 -04001764 rpc_set_port(xs_addr(xprt), port);
1765 xs_update_peer_port(xprt);
Chuck Lever92200412006-01-03 09:55:51 +01001766}
1767
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001768static void xs_set_srcport(struct sock_xprt *transport, struct socket *sock)
1769{
1770 if (transport->srcport == 0)
1771 transport->srcport = xs_sock_getport(sock);
1772}
1773
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001774static unsigned short xs_get_srcport(struct sock_xprt *transport)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001775{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001776 unsigned short port = transport->srcport;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001777
1778 if (port == 0 && transport->xprt.resvport)
1779 port = xs_get_random_port();
1780 return port;
1781}
1782
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001783static unsigned short xs_next_srcport(struct sock_xprt *transport, unsigned short port)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001784{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001785 if (transport->srcport != 0)
1786 transport->srcport = 0;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001787 if (!transport->xprt.resvport)
1788 return 0;
1789 if (port <= xprt_min_resvport || port > xprt_max_resvport)
1790 return xprt_max_resvport;
1791 return --port;
1792}
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001793static int xs_bind(struct sock_xprt *transport, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001794{
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001795 struct sockaddr_storage myaddr;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001796 int err, nloop = 0;
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001797 unsigned short port = xs_get_srcport(transport);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001798 unsigned short last;
Chuck Levera246b012005-08-11 16:25:23 -04001799
Chris Perl0f7a6222014-09-05 15:40:21 -04001800 /*
1801 * If we are asking for any ephemeral port (i.e. port == 0 &&
1802 * transport->xprt.resvport == 0), don't bind. Let the local
1803 * port selection happen implicitly when the socket is used
1804 * (for example at connect time).
1805 *
1806 * This ensures that we can continue to establish TCP
1807 * connections even when all local ephemeral ports are already
1808 * a part of some TCP connection. This makes no difference
1809 * for UDP sockets, but also doens't harm them.
1810 *
1811 * If we're asking for any reserved port (i.e. port == 0 &&
1812 * transport->xprt.resvport == 1) xs_get_srcport above will
1813 * ensure that port is non-zero and we will bind as needed.
1814 */
1815 if (port == 0)
1816 return 0;
1817
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001818 memcpy(&myaddr, &transport->srcaddr, transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001819 do {
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001820 rpc_set_port((struct sockaddr *)&myaddr, port);
1821 err = kernel_bind(sock, (struct sockaddr *)&myaddr,
1822 transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001823 if (err == 0) {
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001824 transport->srcport = port;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001825 break;
Chuck Levera246b012005-08-11 16:25:23 -04001826 }
Trond Myklebust67a391d2007-11-05 17:40:58 -05001827 last = port;
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001828 port = xs_next_srcport(transport, port);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001829 if (port > last)
1830 nloop++;
1831 } while (err == -EADDRINUSE && nloop != 2);
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001832
Chuck Lever4232e862010-10-20 11:52:51 -04001833 if (myaddr.ss_family == AF_INET)
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001834 dprintk("RPC: %s %pI4:%u: %s (%d)\n", __func__,
1835 &((struct sockaddr_in *)&myaddr)->sin_addr,
1836 port, err ? "failed" : "ok", err);
1837 else
1838 dprintk("RPC: %s %pI6:%u: %s (%d)\n", __func__,
1839 &((struct sockaddr_in6 *)&myaddr)->sin6_addr,
1840 port, err ? "failed" : "ok", err);
Chuck Levera246b012005-08-11 16:25:23 -04001841 return err;
1842}
1843
Chuck Lever176e21e2011-05-09 15:22:44 -04001844/*
1845 * We don't support autobind on AF_LOCAL sockets
1846 */
1847static void xs_local_rpcbind(struct rpc_task *task)
1848{
Trond Myklebustfb43d172016-01-30 16:39:26 -05001849 xprt_set_bound(task->tk_xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04001850}
1851
1852static void xs_local_set_port(struct rpc_xprt *xprt, unsigned short port)
1853{
1854}
Chuck Levera246b012005-08-11 16:25:23 -04001855
Peter Zijlstraed075362006-12-06 20:35:24 -08001856#ifdef CONFIG_DEBUG_LOCK_ALLOC
1857static struct lock_class_key xs_key[2];
1858static struct lock_class_key xs_slock_key[2];
1859
Chuck Lever176e21e2011-05-09 15:22:44 -04001860static inline void xs_reclassify_socketu(struct socket *sock)
1861{
1862 struct sock *sk = sock->sk;
1863
Chuck Lever176e21e2011-05-09 15:22:44 -04001864 sock_lock_init_class_and_name(sk, "slock-AF_LOCAL-RPC",
1865 &xs_slock_key[1], "sk_lock-AF_LOCAL-RPC", &xs_key[1]);
1866}
1867
Chuck Lever8945ee52007-08-06 11:58:04 -04001868static inline void xs_reclassify_socket4(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001869{
1870 struct sock *sk = sock->sk;
Chuck Lever8945ee52007-08-06 11:58:04 -04001871
Chuck Lever8945ee52007-08-06 11:58:04 -04001872 sock_lock_init_class_and_name(sk, "slock-AF_INET-RPC",
1873 &xs_slock_key[0], "sk_lock-AF_INET-RPC", &xs_key[0]);
1874}
Peter Zijlstraed075362006-12-06 20:35:24 -08001875
Chuck Lever8945ee52007-08-06 11:58:04 -04001876static inline void xs_reclassify_socket6(struct socket *sock)
1877{
1878 struct sock *sk = sock->sk;
Peter Zijlstraed075362006-12-06 20:35:24 -08001879
Chuck Lever8945ee52007-08-06 11:58:04 -04001880 sock_lock_init_class_and_name(sk, "slock-AF_INET6-RPC",
1881 &xs_slock_key[1], "sk_lock-AF_INET6-RPC", &xs_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -08001882}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001883
1884static inline void xs_reclassify_socket(int family, struct socket *sock)
1885{
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02001886 if (WARN_ON_ONCE(!sock_allow_reclassification(sock->sk)))
Weston Andros Adamson1b7a1812012-10-23 10:43:39 -04001887 return;
1888
Chuck Lever4232e862010-10-20 11:52:51 -04001889 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04001890 case AF_LOCAL:
1891 xs_reclassify_socketu(sock);
1892 break;
Chuck Lever4232e862010-10-20 11:52:51 -04001893 case AF_INET:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001894 xs_reclassify_socket4(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001895 break;
1896 case AF_INET6:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001897 xs_reclassify_socket6(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001898 break;
1899 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001900}
Peter Zijlstraed075362006-12-06 20:35:24 -08001901#else
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001902static inline void xs_reclassify_socket(int family, struct socket *sock)
1903{
1904}
Peter Zijlstraed075362006-12-06 20:35:24 -08001905#endif
1906
NeilBrown93dc41b2013-10-31 16:14:36 +11001907static void xs_dummy_setup_socket(struct work_struct *work)
1908{
1909}
1910
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001911static struct socket *xs_create_sock(struct rpc_xprt *xprt,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001912 struct sock_xprt *transport, int family, int type,
1913 int protocol, bool reuseport)
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001914{
1915 struct socket *sock;
1916 int err;
1917
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001918 err = __sock_create(xprt->xprt_net, family, type, protocol, &sock, 1);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001919 if (err < 0) {
1920 dprintk("RPC: can't create %d transport socket (%d).\n",
1921 protocol, -err);
1922 goto out;
1923 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001924 xs_reclassify_socket(family, sock);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001925
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001926 if (reuseport)
1927 xs_sock_set_reuseport(sock);
1928
Ben Hutchings4cea2882011-02-22 21:54:34 +00001929 err = xs_bind(transport, sock);
1930 if (err) {
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001931 sock_release(sock);
1932 goto out;
1933 }
1934
1935 return sock;
1936out:
1937 return ERR_PTR(err);
1938}
1939
Chuck Lever176e21e2011-05-09 15:22:44 -04001940static int xs_local_finish_connecting(struct rpc_xprt *xprt,
1941 struct socket *sock)
1942{
1943 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
1944 xprt);
1945
1946 if (!transport->inet) {
1947 struct sock *sk = sock->sk;
1948
1949 write_lock_bh(&sk->sk_callback_lock);
1950
1951 xs_save_old_callbacks(transport, sk);
1952
1953 sk->sk_user_data = xprt;
Trond Myklebusta2648092015-10-06 17:03:00 -04001954 sk->sk_data_ready = xs_data_ready;
Chuck Lever176e21e2011-05-09 15:22:44 -04001955 sk->sk_write_space = xs_udp_write_space;
Eric Dumazetb44114572016-05-12 21:41:39 -07001956 sock_set_flag(sk, SOCK_FASYNC);
Trond Myklebust21180712013-12-31 13:22:59 -05001957 sk->sk_error_report = xs_error_report;
Trond Myklebustc2126152015-08-19 21:46:15 -05001958 sk->sk_allocation = GFP_NOIO;
Chuck Lever176e21e2011-05-09 15:22:44 -04001959
1960 xprt_clear_connected(xprt);
1961
1962 /* Reset to new socket */
1963 transport->sock = sock;
1964 transport->inet = sk;
1965
1966 write_unlock_bh(&sk->sk_callback_lock);
1967 }
1968
1969 /* Tell the socket layer to start connecting... */
1970 xprt->stat.connect_count++;
1971 xprt->stat.connect_start = jiffies;
1972 return kernel_connect(sock, xs_addr(xprt), xprt->addrlen, 0);
1973}
1974
1975/**
1976 * xs_local_setup_socket - create AF_LOCAL socket, connect to a local endpoint
Chuck Lever176e21e2011-05-09 15:22:44 -04001977 * @transport: socket transport to connect
Chuck Lever176e21e2011-05-09 15:22:44 -04001978 */
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001979static int xs_local_setup_socket(struct sock_xprt *transport)
Chuck Lever176e21e2011-05-09 15:22:44 -04001980{
Chuck Lever176e21e2011-05-09 15:22:44 -04001981 struct rpc_xprt *xprt = &transport->xprt;
1982 struct socket *sock;
1983 int status = -EIO;
1984
Chuck Lever176e21e2011-05-09 15:22:44 -04001985 status = __sock_create(xprt->xprt_net, AF_LOCAL,
1986 SOCK_STREAM, 0, &sock, 1);
1987 if (status < 0) {
1988 dprintk("RPC: can't create AF_LOCAL "
1989 "transport socket (%d).\n", -status);
1990 goto out;
1991 }
Stefan Hajnoczid1358912015-12-02 14:17:52 +08001992 xs_reclassify_socket(AF_LOCAL, sock);
Chuck Lever176e21e2011-05-09 15:22:44 -04001993
1994 dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n",
1995 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1996
1997 status = xs_local_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04001998 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever176e21e2011-05-09 15:22:44 -04001999 switch (status) {
2000 case 0:
2001 dprintk("RPC: xprt %p connected to %s\n",
2002 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2003 xprt_set_connected(xprt);
Trond Myklebust3601c4a2014-06-30 13:42:19 -04002004 case -ENOBUFS:
Chuck Lever176e21e2011-05-09 15:22:44 -04002005 break;
2006 case -ENOENT:
2007 dprintk("RPC: xprt %p: socket %s does not exist\n",
2008 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2009 break;
Trond Myklebust4a20a982012-12-15 17:02:29 -05002010 case -ECONNREFUSED:
2011 dprintk("RPC: xprt %p: connection refused for %s\n",
2012 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2013 break;
Chuck Lever176e21e2011-05-09 15:22:44 -04002014 default:
2015 printk(KERN_ERR "%s: unhandled error (%d) connecting to %s\n",
2016 __func__, -status,
2017 xprt->address_strings[RPC_DISPLAY_ADDR]);
2018 }
2019
2020out:
2021 xprt_clear_connecting(xprt);
2022 xprt_wake_pending_tasks(xprt, status);
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002023 return status;
2024}
2025
Linus Torvaldsb6669732013-02-28 18:02:55 -08002026static void xs_local_connect(struct rpc_xprt *xprt, struct rpc_task *task)
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002027{
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002028 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2029 int ret;
2030
2031 if (RPC_IS_ASYNC(task)) {
2032 /*
2033 * We want the AF_LOCAL connect to be resolved in the
2034 * filesystem namespace of the process making the rpc
2035 * call. Thus we connect synchronously.
2036 *
2037 * If we want to support asynchronous AF_LOCAL calls,
2038 * we'll need to figure out how to pass a namespace to
2039 * connect.
2040 */
2041 rpc_exit(task, -ENOTCONN);
2042 return;
2043 }
2044 ret = xs_local_setup_socket(transport);
2045 if (ret && !RPC_IS_SOFTCONN(task))
2046 msleep_interruptible(15000);
Chuck Lever176e21e2011-05-09 15:22:44 -04002047}
2048
Jeff Layton3c87ef62015-06-03 16:14:25 -04002049#if IS_ENABLED(CONFIG_SUNRPC_SWAP)
Jeff Laytond6e971d2015-06-03 16:14:28 -04002050/*
2051 * Note that this should be called with XPRT_LOCKED held (or when we otherwise
2052 * know that we have exclusive access to the socket), to guard against
2053 * races with xs_reset_transport.
2054 */
Mel Gormana564b8f2012-07-31 16:45:12 -07002055static void xs_set_memalloc(struct rpc_xprt *xprt)
2056{
2057 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
2058 xprt);
2059
Jeff Laytond6e971d2015-06-03 16:14:28 -04002060 /*
2061 * If there's no sock, then we have nothing to set. The
2062 * reconnecting process will get it for us.
2063 */
2064 if (!transport->inet)
2065 return;
Jeff Layton8e228132015-06-03 16:14:26 -04002066 if (atomic_read(&xprt->swapper))
Mel Gormana564b8f2012-07-31 16:45:12 -07002067 sk_set_memalloc(transport->inet);
2068}
2069
2070/**
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002071 * xs_enable_swap - Tag this transport as being used for swap.
Mel Gormana564b8f2012-07-31 16:45:12 -07002072 * @xprt: transport to tag
Mel Gormana564b8f2012-07-31 16:45:12 -07002073 *
Jeff Layton8e228132015-06-03 16:14:26 -04002074 * Take a reference to this transport on behalf of the rpc_clnt, and
2075 * optionally mark it for swapping if it wasn't already.
Mel Gormana564b8f2012-07-31 16:45:12 -07002076 */
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002077static int
2078xs_enable_swap(struct rpc_xprt *xprt)
Mel Gormana564b8f2012-07-31 16:45:12 -07002079{
Jeff Laytond6e971d2015-06-03 16:14:28 -04002080 struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt);
Mel Gormana564b8f2012-07-31 16:45:12 -07002081
Jeff Laytond6e971d2015-06-03 16:14:28 -04002082 if (atomic_inc_return(&xprt->swapper) != 1)
2083 return 0;
2084 if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE))
2085 return -ERESTARTSYS;
2086 if (xs->inet)
2087 sk_set_memalloc(xs->inet);
2088 xprt_release_xprt(xprt, NULL);
Jeff Layton8e228132015-06-03 16:14:26 -04002089 return 0;
Mel Gormana564b8f2012-07-31 16:45:12 -07002090}
Jeff Layton8e228132015-06-03 16:14:26 -04002091
2092/**
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002093 * xs_disable_swap - Untag this transport as being used for swap.
Jeff Layton8e228132015-06-03 16:14:26 -04002094 * @xprt: transport to tag
2095 *
2096 * Drop a "swapper" reference to this xprt on behalf of the rpc_clnt. If the
2097 * swapper refcount goes to 0, untag the socket as a memalloc socket.
2098 */
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002099static void
2100xs_disable_swap(struct rpc_xprt *xprt)
Jeff Layton8e228132015-06-03 16:14:26 -04002101{
Jeff Laytond6e971d2015-06-03 16:14:28 -04002102 struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt);
Jeff Layton8e228132015-06-03 16:14:26 -04002103
Jeff Laytond6e971d2015-06-03 16:14:28 -04002104 if (!atomic_dec_and_test(&xprt->swapper))
2105 return;
2106 if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE))
2107 return;
2108 if (xs->inet)
2109 sk_clear_memalloc(xs->inet);
2110 xprt_release_xprt(xprt, NULL);
Mel Gormana564b8f2012-07-31 16:45:12 -07002111}
Mel Gormana564b8f2012-07-31 16:45:12 -07002112#else
2113static void xs_set_memalloc(struct rpc_xprt *xprt)
2114{
2115}
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002116
2117static int
2118xs_enable_swap(struct rpc_xprt *xprt)
2119{
2120 return -EINVAL;
2121}
2122
2123static void
2124xs_disable_swap(struct rpc_xprt *xprt)
2125{
2126}
Mel Gormana564b8f2012-07-31 16:45:12 -07002127#endif
2128
Chuck Lever16be2d22007-08-06 11:57:38 -04002129static void xs_udp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04002130{
Chuck Lever16be2d22007-08-06 11:57:38 -04002131 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -04002132
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002133 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002134 struct sock *sk = sock->sk;
2135
2136 write_lock_bh(&sk->sk_callback_lock);
2137
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002138 xs_save_old_callbacks(transport, sk);
2139
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002140 sk->sk_user_data = xprt;
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04002141 sk->sk_data_ready = xs_data_ready;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002142 sk->sk_write_space = xs_udp_write_space;
Eric Dumazetb44114572016-05-12 21:41:39 -07002143 sock_set_flag(sk, SOCK_FASYNC);
Trond Myklebustc2126152015-08-19 21:46:15 -05002144 sk->sk_allocation = GFP_NOIO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002145
2146 xprt_set_connected(xprt);
2147
2148 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002149 transport->sock = sock;
2150 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002151
Mel Gormana564b8f2012-07-31 16:45:12 -07002152 xs_set_memalloc(xprt);
2153
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002154 write_unlock_bh(&sk->sk_callback_lock);
2155 }
Chuck Lever470056c2005-08-25 16:25:56 -07002156 xs_udp_do_set_buffer_size(xprt);
Chuck Lever16be2d22007-08-06 11:57:38 -04002157}
2158
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002159static void xs_udp_setup_socket(struct work_struct *work)
Chuck Levera246b012005-08-11 16:25:23 -04002160{
2161 struct sock_xprt *transport =
2162 container_of(work, struct sock_xprt, connect_worker.work);
2163 struct rpc_xprt *xprt = &transport->xprt;
2164 struct socket *sock = transport->sock;
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002165 int status = -EIO;
Chuck Levera246b012005-08-11 16:25:23 -04002166
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002167 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002168 xs_addr(xprt)->sa_family, SOCK_DGRAM,
2169 IPPROTO_UDP, false);
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002170 if (IS_ERR(sock))
Chuck Levera246b012005-08-11 16:25:23 -04002171 goto out;
Chuck Lever68e220b2007-08-06 11:57:48 -04002172
Chuck Leverc740eff2009-08-09 15:09:46 -04002173 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 Lever68e220b2007-08-06 11:57:48 -04002178
2179 xs_udp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002180 trace_rpc_socket_connect(xprt, sock, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002181 status = 0;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002182out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002183 xprt_unlock_connect(xprt, transport);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002184 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002185 xprt_wake_pending_tasks(xprt, status);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002186}
2187
Trond Myklebust4876cc72015-06-19 16:17:57 -04002188/**
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 */
2195static 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;
2199
2200 if (sock == NULL)
2201 return;
2202 if (xprt_connected(xprt)) {
2203 kernel_sock_shutdown(sock, SHUT_RDWR);
2204 trace_rpc_socket_shutdown(xprt, sock);
2205 } else
2206 xs_reset_transport(transport);
2207}
2208
Chuck Lever16be2d22007-08-06 11:57:38 -04002209static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002210{
Chuck Lever16be2d22007-08-06 11:57:38 -04002211 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002212 int ret = -ENOTCONN;
Chuck Leveredb267a2006-08-22 20:06:18 -04002213
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002214 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002215 struct sock *sk = sock->sk;
Trond Myklebust7f260e82013-09-24 11:25:22 -04002216 unsigned int keepidle = xprt->timeout->to_initval / HZ;
2217 unsigned int keepcnt = xprt->timeout->to_retries + 1;
2218 unsigned int opt_on = 1;
Trond Myklebust775f06a2015-06-20 15:31:54 -04002219 unsigned int timeo;
Trond Myklebust7f260e82013-09-24 11:25:22 -04002220
2221 /* TCP Keepalive options */
2222 kernel_setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
2223 (char *)&opt_on, sizeof(opt_on));
2224 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPIDLE,
2225 (char *)&keepidle, sizeof(keepidle));
2226 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPINTVL,
2227 (char *)&keepidle, sizeof(keepidle));
2228 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPCNT,
2229 (char *)&keepcnt, sizeof(keepcnt));
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002230
Trond Myklebust775f06a2015-06-20 15:31:54 -04002231 /* TCP user timeout (see RFC5482) */
2232 timeo = jiffies_to_msecs(xprt->timeout->to_initval) *
2233 (xprt->timeout->to_retries + 1);
2234 kernel_setsockopt(sock, SOL_TCP, TCP_USER_TIMEOUT,
2235 (char *)&timeo, sizeof(timeo));
2236
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002237 write_lock_bh(&sk->sk_callback_lock);
2238
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002239 xs_save_old_callbacks(transport, sk);
2240
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002241 sk->sk_user_data = xprt;
Trond Myklebust5157b952016-05-29 10:13:24 -04002242 sk->sk_data_ready = xs_data_ready;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002243 sk->sk_state_change = xs_tcp_state_change;
2244 sk->sk_write_space = xs_tcp_write_space;
Eric Dumazetb44114572016-05-12 21:41:39 -07002245 sock_set_flag(sk, SOCK_FASYNC);
Trond Myklebust21180712013-12-31 13:22:59 -05002246 sk->sk_error_report = xs_error_report;
Trond Myklebustc2126152015-08-19 21:46:15 -05002247 sk->sk_allocation = GFP_NOIO;
Chuck Lever3167e122005-08-25 16:25:55 -07002248
2249 /* socket options */
Chuck Lever3167e122005-08-25 16:25:55 -07002250 sock_reset_flag(sk, SOCK_LINGER);
Chuck Lever3167e122005-08-25 16:25:55 -07002251 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002252
2253 xprt_clear_connected(xprt);
2254
2255 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002256 transport->sock = sock;
2257 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002258
2259 write_unlock_bh(&sk->sk_callback_lock);
2260 }
2261
Trond Myklebust01d37c42009-03-11 14:09:39 -04002262 if (!xprt_bound(xprt))
Trond Myklebustfe19a962011-03-18 20:21:23 -04002263 goto out;
Trond Myklebust01d37c42009-03-11 14:09:39 -04002264
Mel Gormana564b8f2012-07-31 16:45:12 -07002265 xs_set_memalloc(xprt);
2266
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002267 /* Tell the socket layer to start connecting... */
Chuck Lever262ca072006-03-20 13:44:16 -05002268 xprt->stat.connect_count++;
2269 xprt->stat.connect_start = jiffies;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04002270 set_bit(XPRT_SOCK_CONNECTING, &transport->sock_state);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002271 ret = kernel_connect(sock, xs_addr(xprt), xprt->addrlen, O_NONBLOCK);
2272 switch (ret) {
2273 case 0:
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002274 xs_set_srcport(transport, sock);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002275 case -EINPROGRESS:
2276 /* SYN_SENT! */
Trond Myklebustfe19a962011-03-18 20:21:23 -04002277 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2278 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2279 }
2280out:
2281 return ret;
Chuck Lever16be2d22007-08-06 11:57:38 -04002282}
2283
2284/**
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002285 * xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint
Chuck Lever16be2d22007-08-06 11:57:38 -04002286 *
2287 * Invoked by a work queue tasklet.
2288 */
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002289static void xs_tcp_setup_socket(struct work_struct *work)
Chuck Lever16be2d22007-08-06 11:57:38 -04002290{
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002291 struct sock_xprt *transport =
2292 container_of(work, struct sock_xprt, connect_worker.work);
Chuck Lever16be2d22007-08-06 11:57:38 -04002293 struct socket *sock = transport->sock;
Pavel Emelyanova9f5f0f2010-10-04 16:52:25 +04002294 struct rpc_xprt *xprt = &transport->xprt;
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002295 int status = -EIO;
Chuck Lever16be2d22007-08-06 11:57:38 -04002296
Chuck Lever16be2d22007-08-06 11:57:38 -04002297 if (!sock) {
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002298 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002299 xs_addr(xprt)->sa_family, SOCK_STREAM,
2300 IPPROTO_TCP, true);
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002301 if (IS_ERR(sock)) {
2302 status = PTR_ERR(sock);
Chuck Lever16be2d22007-08-06 11:57:38 -04002303 goto out;
2304 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002305 }
2306
Chuck Leverc740eff2009-08-09 15:09:46 -04002307 dprintk("RPC: worker connecting xprt %p via %s to "
2308 "%s (port %s)\n", xprt,
2309 xprt->address_strings[RPC_DISPLAY_PROTO],
2310 xprt->address_strings[RPC_DISPLAY_ADDR],
2311 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever16be2d22007-08-06 11:57:38 -04002312
2313 status = xs_tcp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002314 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever46121cf2007-01-31 12:14:08 -05002315 dprintk("RPC: %p connect status %d connected %d sock state %d\n",
2316 xprt, -status, xprt_connected(xprt),
2317 sock->sk->sk_state);
Trond Myklebust2a491992009-03-11 14:38:00 -04002318 switch (status) {
Trond Myklebustf75e6742009-04-21 17:18:20 -04002319 default:
2320 printk("%s: connect returned unhandled error %d\n",
2321 __func__, status);
2322 case -EADDRNOTAVAIL:
2323 /* We're probably in TIME_WAIT. Get rid of existing socket,
2324 * and retry
2325 */
Trond Myklebusta519fc72012-09-12 16:49:15 -04002326 xs_tcp_force_close(xprt);
Trond Myklebust88b5ed72009-06-17 13:22:57 -07002327 break;
Trond Myklebust2a491992009-03-11 14:38:00 -04002328 case 0:
2329 case -EINPROGRESS:
2330 case -EALREADY:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002331 xprt_unlock_connect(xprt, transport);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002332 return;
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002333 case -EINVAL:
2334 /* Happens, for instance, if the user specified a link
2335 * local IPv6 address without a scope-id.
2336 */
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002337 case -ECONNREFUSED:
2338 case -ECONNRESET:
2339 case -ENETUNREACH:
Trond Myklebust3913c782015-02-08 21:44:04 -05002340 case -EADDRINUSE:
Trond Myklebust3601c4a2014-06-30 13:42:19 -04002341 case -ENOBUFS:
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002342 /* retry with existing socket, after a delay */
Trond Myklebust4efdd922015-02-08 15:34:28 -05002343 xs_tcp_force_close(xprt);
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002344 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04002345 }
Trond Myklebust2a491992009-03-11 14:38:00 -04002346 status = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -04002347out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002348 xprt_unlock_connect(xprt, transport);
Chuck Lever2226feb2005-08-11 16:25:38 -04002349 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002350 xprt_wake_pending_tasks(xprt, status);
Chuck Levera246b012005-08-11 16:25:23 -04002351}
2352
Chuck Lever68e220b2007-08-06 11:57:48 -04002353/**
Chuck Lever9903cd12005-08-11 16:25:26 -04002354 * xs_connect - connect a socket to a remote endpoint
Trond Myklebust1b092092013-01-08 09:26:49 -05002355 * @xprt: pointer to transport structure
Chuck Lever9903cd12005-08-11 16:25:26 -04002356 * @task: address of RPC task that manages state of connect request
2357 *
2358 * TCP: If the remote end dropped the connection, delay reconnecting.
Chuck Lever03bf4b72005-08-25 16:25:55 -07002359 *
2360 * UDP socket connects are synchronous, but we use a work queue anyway
2361 * to guarantee that even unprivileged user processes can set up a
2362 * socket on a privileged port.
2363 *
2364 * If a UDP socket connect fails, the delay behavior here prevents
2365 * retry floods (hard mounts).
Chuck Lever9903cd12005-08-11 16:25:26 -04002366 */
Trond Myklebust1b092092013-01-08 09:26:49 -05002367static void xs_connect(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -04002368{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002369 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002370
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002371 WARN_ON_ONCE(!xprt_lock_connect(xprt, task, transport));
2372
Trond Myklebust99b1a4c2015-08-13 15:33:51 -04002373 if (transport->sock != NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002374 dprintk("RPC: xs_connect delayed xprt %p for %lu "
2375 "seconds\n",
Chuck Lever03bf4b72005-08-25 16:25:55 -07002376 xprt, xprt->reestablish_timeout / HZ);
Trond Myklebust99b1a4c2015-08-13 15:33:51 -04002377
2378 /* Start by resetting any existing state */
2379 xs_reset_transport(transport);
2380
Trond Myklebustc1384c92007-06-14 18:00:42 -04002381 queue_delayed_work(rpciod_workqueue,
2382 &transport->connect_worker,
2383 xprt->reestablish_timeout);
Chuck Lever03bf4b72005-08-25 16:25:55 -07002384 xprt->reestablish_timeout <<= 1;
Neil Brown61d0a8e2009-09-23 14:36:37 -04002385 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2386 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002387 if (xprt->reestablish_timeout > XS_TCP_MAX_REEST_TO)
2388 xprt->reestablish_timeout = XS_TCP_MAX_REEST_TO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002389 } else {
Chuck Lever46121cf2007-01-31 12:14:08 -05002390 dprintk("RPC: xs_connect scheduled xprt %p\n", xprt);
Trond Myklebustc1384c92007-06-14 18:00:42 -04002391 queue_delayed_work(rpciod_workqueue,
2392 &transport->connect_worker, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002393 }
2394}
2395
Chuck Lever262ca072006-03-20 13:44:16 -05002396/**
Chuck Lever176e21e2011-05-09 15:22:44 -04002397 * xs_local_print_stats - display AF_LOCAL socket-specifc stats
2398 * @xprt: rpc_xprt struct containing statistics
2399 * @seq: output file
2400 *
2401 */
2402static void xs_local_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2403{
2404 long idle_time = 0;
2405
2406 if (xprt_connected(xprt))
2407 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2408
2409 seq_printf(seq, "\txprt:\tlocal %lu %lu %lu %ld %lu %lu %lu "
Andy Adamson15a45202012-02-14 16:19:18 -05002410 "%llu %llu %lu %llu %llu\n",
Chuck Lever176e21e2011-05-09 15:22:44 -04002411 xprt->stat.bind_count,
2412 xprt->stat.connect_count,
2413 xprt->stat.connect_time,
2414 idle_time,
2415 xprt->stat.sends,
2416 xprt->stat.recvs,
2417 xprt->stat.bad_xids,
2418 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002419 xprt->stat.bklog_u,
2420 xprt->stat.max_slots,
2421 xprt->stat.sending_u,
2422 xprt->stat.pending_u);
Chuck Lever176e21e2011-05-09 15:22:44 -04002423}
2424
2425/**
Chuck Lever262ca072006-03-20 13:44:16 -05002426 * xs_udp_print_stats - display UDP socket-specifc stats
2427 * @xprt: rpc_xprt struct containing statistics
2428 * @seq: output file
2429 *
2430 */
2431static void xs_udp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2432{
Chuck Leverc8475462006-12-05 16:35:26 -05002433 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2434
Andy Adamson15a45202012-02-14 16:19:18 -05002435 seq_printf(seq, "\txprt:\tudp %u %lu %lu %lu %lu %llu %llu "
2436 "%lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002437 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002438 xprt->stat.bind_count,
2439 xprt->stat.sends,
2440 xprt->stat.recvs,
2441 xprt->stat.bad_xids,
2442 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002443 xprt->stat.bklog_u,
2444 xprt->stat.max_slots,
2445 xprt->stat.sending_u,
2446 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002447}
2448
2449/**
2450 * xs_tcp_print_stats - display TCP socket-specifc stats
2451 * @xprt: rpc_xprt struct containing statistics
2452 * @seq: output file
2453 *
2454 */
2455static void xs_tcp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2456{
Chuck Leverc8475462006-12-05 16:35:26 -05002457 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262ca072006-03-20 13:44:16 -05002458 long idle_time = 0;
2459
2460 if (xprt_connected(xprt))
2461 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2462
Andy Adamson15a45202012-02-14 16:19:18 -05002463 seq_printf(seq, "\txprt:\ttcp %u %lu %lu %lu %ld %lu %lu %lu "
2464 "%llu %llu %lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002465 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002466 xprt->stat.bind_count,
2467 xprt->stat.connect_count,
2468 xprt->stat.connect_time,
2469 idle_time,
2470 xprt->stat.sends,
2471 xprt->stat.recvs,
2472 xprt->stat.bad_xids,
2473 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002474 xprt->stat.bklog_u,
2475 xprt->stat.max_slots,
2476 xprt->stat.sending_u,
2477 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002478}
2479
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002480/*
2481 * Allocate a bunch of pages for a scratch buffer for the rpc code. The reason
2482 * we allocate pages instead doing a kmalloc like rpc_malloc is because we want
2483 * to use the server side send routines.
2484 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002485static void *bc_malloc(struct rpc_task *task, size_t size)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002486{
2487 struct page *page;
2488 struct rpc_buffer *buf;
2489
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002490 WARN_ON_ONCE(size > PAGE_SIZE - sizeof(struct rpc_buffer));
2491 if (size > PAGE_SIZE - sizeof(struct rpc_buffer))
2492 return NULL;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002493
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002494 page = alloc_page(GFP_KERNEL);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002495 if (!page)
2496 return NULL;
2497
2498 buf = page_address(page);
2499 buf->len = PAGE_SIZE;
2500
2501 return buf->data;
2502}
2503
2504/*
2505 * Free the space allocated in the bc_alloc routine
2506 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002507static void bc_free(void *buffer)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002508{
2509 struct rpc_buffer *buf;
2510
2511 if (!buffer)
2512 return;
2513
2514 buf = container_of(buffer, struct rpc_buffer, data);
2515 free_page((unsigned long)buf);
2516}
2517
2518/*
2519 * Use the svc_sock to send the callback. Must be called with svsk->sk_mutex
2520 * held. Borrows heavily from svc_tcp_sendto and xs_tcp_send_request.
2521 */
2522static int bc_sendto(struct rpc_rqst *req)
2523{
2524 int len;
2525 struct xdr_buf *xbufp = &req->rq_snd_buf;
2526 struct rpc_xprt *xprt = req->rq_xprt;
2527 struct sock_xprt *transport =
2528 container_of(xprt, struct sock_xprt, xprt);
2529 struct socket *sock = transport->sock;
2530 unsigned long headoff;
2531 unsigned long tailoff;
2532
Chuck Lever61677ee2011-05-09 15:22:34 -04002533 xs_encode_stream_record_marker(xbufp);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002534
2535 tailoff = (unsigned long)xbufp->tail[0].iov_base & ~PAGE_MASK;
2536 headoff = (unsigned long)xbufp->head[0].iov_base & ~PAGE_MASK;
2537 len = svc_send_common(sock, xbufp,
2538 virt_to_page(xbufp->head[0].iov_base), headoff,
2539 xbufp->tail[0].iov_base, tailoff);
2540
2541 if (len != xbufp->len) {
2542 printk(KERN_NOTICE "Error sending entire callback!\n");
2543 len = -EAGAIN;
2544 }
2545
2546 return len;
2547}
2548
2549/*
2550 * The send routine. Borrows from svc_send
2551 */
2552static int bc_send_request(struct rpc_task *task)
2553{
2554 struct rpc_rqst *req = task->tk_rqstp;
2555 struct svc_xprt *xprt;
Andrzej Hajda7fc56132015-09-24 16:00:09 +02002556 int len;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002557
2558 dprintk("sending request with xid: %08x\n", ntohl(req->rq_xid));
2559 /*
2560 * Get the server socket associated with this callback xprt
2561 */
2562 xprt = req->rq_xprt->bc_xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002563
2564 /*
2565 * Grab the mutex to serialize data as the connection is shared
2566 * with the fore channel
2567 */
2568 if (!mutex_trylock(&xprt->xpt_mutex)) {
2569 rpc_sleep_on(&xprt->xpt_bc_pending, task, NULL);
2570 if (!mutex_trylock(&xprt->xpt_mutex))
2571 return -EAGAIN;
2572 rpc_wake_up_queued_task(&xprt->xpt_bc_pending, task);
2573 }
2574 if (test_bit(XPT_DEAD, &xprt->xpt_flags))
2575 len = -ENOTCONN;
2576 else
2577 len = bc_sendto(req);
2578 mutex_unlock(&xprt->xpt_mutex);
2579
2580 if (len > 0)
2581 len = 0;
2582
2583 return len;
2584}
2585
2586/*
2587 * The close routine. Since this is client initiated, we do nothing
2588 */
2589
2590static void bc_close(struct rpc_xprt *xprt)
2591{
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002592}
2593
2594/*
2595 * The xprt destroy routine. Again, because this connection is client
2596 * initiated, we do nothing
2597 */
2598
2599static void bc_destroy(struct rpc_xprt *xprt)
2600{
Kinglong Mee47f72ef2014-03-24 11:58:16 +08002601 dprintk("RPC: bc_destroy xprt %p\n", xprt);
2602
2603 xs_xprt_free(xprt);
2604 module_put(THIS_MODULE);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002605}
2606
Chuck Lever176e21e2011-05-09 15:22:44 -04002607static struct rpc_xprt_ops xs_local_ops = {
2608 .reserve_xprt = xprt_reserve_xprt,
2609 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002610 .alloc_slot = xprt_alloc_slot,
Chuck Lever176e21e2011-05-09 15:22:44 -04002611 .rpcbind = xs_local_rpcbind,
2612 .set_port = xs_local_set_port,
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002613 .connect = xs_local_connect,
Chuck Lever176e21e2011-05-09 15:22:44 -04002614 .buf_alloc = rpc_malloc,
2615 .buf_free = rpc_free,
2616 .send_request = xs_local_send_request,
2617 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2618 .close = xs_close,
Trond Myklebusta1311d82013-10-31 09:18:49 -04002619 .destroy = xs_destroy,
Chuck Lever176e21e2011-05-09 15:22:44 -04002620 .print_stats = xs_local_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002621 .enable_swap = xs_enable_swap,
2622 .disable_swap = xs_disable_swap,
Chuck Lever176e21e2011-05-09 15:22:44 -04002623};
2624
Chuck Lever262965f2005-08-11 16:25:56 -04002625static struct rpc_xprt_ops xs_udp_ops = {
Chuck Lever43118c22005-08-25 16:25:49 -07002626 .set_buffer_size = xs_udp_set_buffer_size,
Chuck Lever12a80462005-08-25 16:25:51 -07002627 .reserve_xprt = xprt_reserve_xprt_cong,
Chuck Lever49e9a892005-08-25 16:25:51 -07002628 .release_xprt = xprt_release_xprt_cong,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002629 .alloc_slot = xprt_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002630 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002631 .set_port = xs_set_port,
Chuck Lever9903cd12005-08-11 16:25:26 -04002632 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002633 .buf_alloc = rpc_malloc,
2634 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002635 .send_request = xs_udp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002636 .set_retrans_timeout = xprt_set_retrans_timeout_rtt,
Chuck Lever46c0ee82005-08-25 16:25:52 -07002637 .timer = xs_udp_timer,
Chuck Levera58dd392005-08-25 16:25:53 -07002638 .release_request = xprt_release_rqst_cong,
Chuck Lever262965f2005-08-11 16:25:56 -04002639 .close = xs_close,
2640 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002641 .print_stats = xs_udp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002642 .enable_swap = xs_enable_swap,
2643 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002644 .inject_disconnect = xs_inject_disconnect,
Chuck Lever262965f2005-08-11 16:25:56 -04002645};
2646
2647static struct rpc_xprt_ops xs_tcp_ops = {
Chuck Lever12a80462005-08-25 16:25:51 -07002648 .reserve_xprt = xprt_reserve_xprt,
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002649 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002650 .alloc_slot = xprt_lock_and_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002651 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002652 .set_port = xs_set_port,
Trond Myklebust0b9e7942010-04-16 16:41:57 -04002653 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002654 .buf_alloc = rpc_malloc,
2655 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002656 .send_request = xs_tcp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002657 .set_retrans_timeout = xprt_set_retrans_timeout_def,
Trond Myklebustc627d312015-02-10 11:06:04 -05002658 .close = xs_tcp_shutdown,
Chuck Lever9903cd12005-08-11 16:25:26 -04002659 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002660 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002661 .enable_swap = xs_enable_swap,
2662 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002663 .inject_disconnect = xs_inject_disconnect,
Chuck Lever42e5c3e2015-10-24 17:27:35 -04002664#ifdef CONFIG_SUNRPC_BACKCHANNEL
2665 .bc_setup = xprt_setup_bc,
Chuck Lever76566772015-10-24 17:28:32 -04002666 .bc_up = xs_tcp_bc_up,
Chuck Lever6b26cc82016-05-02 14:40:40 -04002667 .bc_maxpayload = xs_tcp_bc_maxpayload,
Chuck Lever42e5c3e2015-10-24 17:27:35 -04002668 .bc_free_rqst = xprt_free_bc_rqst,
2669 .bc_destroy = xprt_destroy_bc,
2670#endif
Chuck Levera246b012005-08-11 16:25:23 -04002671};
2672
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002673/*
2674 * The rpc_xprt_ops for the server backchannel
2675 */
2676
2677static struct rpc_xprt_ops bc_tcp_ops = {
2678 .reserve_xprt = xprt_reserve_xprt,
2679 .release_xprt = xprt_release_xprt,
Bryan Schumaker84e28a32012-09-24 13:39:01 -04002680 .alloc_slot = xprt_alloc_slot,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002681 .buf_alloc = bc_malloc,
2682 .buf_free = bc_free,
2683 .send_request = bc_send_request,
2684 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2685 .close = bc_close,
2686 .destroy = bc_destroy,
2687 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002688 .enable_swap = xs_enable_swap,
2689 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002690 .inject_disconnect = xs_inject_disconnect,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002691};
2692
Chuck Lever92476852010-10-20 11:53:01 -04002693static int xs_init_anyaddr(const int family, struct sockaddr *sap)
2694{
2695 static const struct sockaddr_in sin = {
2696 .sin_family = AF_INET,
2697 .sin_addr.s_addr = htonl(INADDR_ANY),
2698 };
2699 static const struct sockaddr_in6 sin6 = {
2700 .sin6_family = AF_INET6,
2701 .sin6_addr = IN6ADDR_ANY_INIT,
2702 };
2703
2704 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04002705 case AF_LOCAL:
2706 break;
Chuck Lever92476852010-10-20 11:53:01 -04002707 case AF_INET:
2708 memcpy(sap, &sin, sizeof(sin));
2709 break;
2710 case AF_INET6:
2711 memcpy(sap, &sin6, sizeof(sin6));
2712 break;
2713 default:
2714 dprintk("RPC: %s: Bad address family\n", __func__);
2715 return -EAFNOSUPPORT;
2716 }
2717 return 0;
2718}
2719
\"Talpey, Thomas\3c341b0b2007-09-10 13:47:07 -04002720static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args,
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002721 unsigned int slot_table_size,
2722 unsigned int max_slot_table_size)
Chuck Leverc8541ec2006-10-17 14:44:27 -04002723{
2724 struct rpc_xprt *xprt;
Chuck Leverffc2e512006-12-05 16:35:11 -05002725 struct sock_xprt *new;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002726
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002727 if (args->addrlen > sizeof(xprt->addr)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002728 dprintk("RPC: xs_setup_xprt: address too large\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002729 return ERR_PTR(-EBADF);
2730 }
2731
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002732 xprt = xprt_alloc(args->net, sizeof(*new), slot_table_size,
2733 max_slot_table_size);
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002734 if (xprt == NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002735 dprintk("RPC: xs_setup_xprt: couldn't allocate "
2736 "rpc_xprt\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002737 return ERR_PTR(-ENOMEM);
2738 }
2739
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002740 new = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -04002741 mutex_init(&new->recv_mutex);
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002742 memcpy(&xprt->addr, args->dstaddr, args->addrlen);
2743 xprt->addrlen = args->addrlen;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02002744 if (args->srcaddr)
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002745 memcpy(&new->srcaddr, args->srcaddr, args->addrlen);
Chuck Lever92476852010-10-20 11:53:01 -04002746 else {
2747 int err;
2748 err = xs_init_anyaddr(args->dstaddr->sa_family,
2749 (struct sockaddr *)&new->srcaddr);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002750 if (err != 0) {
2751 xprt_free(xprt);
Chuck Lever92476852010-10-20 11:53:01 -04002752 return ERR_PTR(err);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002753 }
Chuck Lever92476852010-10-20 11:53:01 -04002754 }
Chuck Leverc8541ec2006-10-17 14:44:27 -04002755
2756 return xprt;
2757}
2758
Chuck Lever176e21e2011-05-09 15:22:44 -04002759static const struct rpc_timeout xs_local_default_timeout = {
2760 .to_initval = 10 * HZ,
2761 .to_maxval = 10 * HZ,
2762 .to_retries = 2,
2763};
2764
2765/**
2766 * xs_setup_local - Set up transport to use an AF_LOCAL socket
2767 * @args: rpc transport creation arguments
2768 *
2769 * AF_LOCAL is a "tpi_cots_ord" transport, just like TCP
2770 */
2771static struct rpc_xprt *xs_setup_local(struct xprt_create *args)
2772{
2773 struct sockaddr_un *sun = (struct sockaddr_un *)args->dstaddr;
2774 struct sock_xprt *transport;
2775 struct rpc_xprt *xprt;
2776 struct rpc_xprt *ret;
2777
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002778 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2779 xprt_max_tcp_slot_table_entries);
Chuck Lever176e21e2011-05-09 15:22:44 -04002780 if (IS_ERR(xprt))
2781 return xprt;
2782 transport = container_of(xprt, struct sock_xprt, xprt);
2783
2784 xprt->prot = 0;
2785 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2786 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2787
2788 xprt->bind_timeout = XS_BIND_TO;
2789 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2790 xprt->idle_timeout = XS_IDLE_DISC_TO;
2791
2792 xprt->ops = &xs_local_ops;
2793 xprt->timeout = &xs_local_default_timeout;
2794
Trond Myklebusta2648092015-10-06 17:03:00 -04002795 INIT_WORK(&transport->recv_worker, xs_local_data_receive_workfn);
NeilBrown93dc41b2013-10-31 16:14:36 +11002796 INIT_DELAYED_WORK(&transport->connect_worker,
2797 xs_dummy_setup_socket);
2798
Chuck Lever176e21e2011-05-09 15:22:44 -04002799 switch (sun->sun_family) {
2800 case AF_LOCAL:
2801 if (sun->sun_path[0] != '/') {
2802 dprintk("RPC: bad AF_LOCAL address: %s\n",
2803 sun->sun_path);
2804 ret = ERR_PTR(-EINVAL);
2805 goto out_err;
2806 }
2807 xprt_set_bound(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002808 xs_format_peer_addresses(xprt, "local", RPCBIND_NETID_LOCAL);
J. Bruce Fields7073ea82013-02-21 10:14:22 -05002809 ret = ERR_PTR(xs_local_setup_socket(transport));
2810 if (ret)
2811 goto out_err;
Chuck Lever176e21e2011-05-09 15:22:44 -04002812 break;
2813 default:
2814 ret = ERR_PTR(-EAFNOSUPPORT);
2815 goto out_err;
2816 }
2817
2818 dprintk("RPC: set up xprt to %s via AF_LOCAL\n",
2819 xprt->address_strings[RPC_DISPLAY_ADDR]);
2820
2821 if (try_module_get(THIS_MODULE))
2822 return xprt;
2823 ret = ERR_PTR(-EINVAL);
2824out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002825 xs_xprt_free(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002826 return ret;
2827}
2828
Trond Myklebust2881ae72007-12-20 16:03:54 -05002829static const struct rpc_timeout xs_udp_default_timeout = {
2830 .to_initval = 5 * HZ,
2831 .to_maxval = 30 * HZ,
2832 .to_increment = 5 * HZ,
2833 .to_retries = 5,
2834};
2835
Chuck Lever9903cd12005-08-11 16:25:26 -04002836/**
2837 * xs_setup_udp - Set up transport to use a UDP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002838 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002839 *
2840 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002841static struct rpc_xprt *xs_setup_udp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002842{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002843 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002844 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002845 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002846 struct rpc_xprt *ret;
Chuck Levera246b012005-08-11 16:25:23 -04002847
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002848 xprt = xs_setup_xprt(args, xprt_udp_slot_table_entries,
2849 xprt_udp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002850 if (IS_ERR(xprt))
2851 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002852 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002853
Chuck Leverec739ef2006-08-22 20:06:15 -04002854 xprt->prot = IPPROTO_UDP;
Chuck Lever808012f2005-08-25 16:25:49 -07002855 xprt->tsh_size = 0;
Chuck Levera246b012005-08-11 16:25:23 -04002856 /* XXX: header size can vary due to auth type, IPv6, etc. */
2857 xprt->max_payload = (1U << 16) - (MAX_HEADER << 3);
2858
Chuck Lever03bf4b72005-08-25 16:25:55 -07002859 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002860 xprt->reestablish_timeout = XS_UDP_REEST_TO;
2861 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002862
Chuck Lever262965f2005-08-11 16:25:56 -04002863 xprt->ops = &xs_udp_ops;
Chuck Levera246b012005-08-11 16:25:23 -04002864
Trond Myklebustba7392b2007-12-20 16:03:55 -05002865 xprt->timeout = &xs_udp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002866
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04002867 INIT_WORK(&transport->recv_worker, xs_udp_data_receive_workfn);
Trond Myklebustedc1b012015-10-05 10:53:49 -04002868 INIT_DELAYED_WORK(&transport->connect_worker, xs_udp_setup_socket);
2869
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002870 switch (addr->sa_family) {
2871 case AF_INET:
2872 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2873 xprt_set_bound(xprt);
2874
Chuck Lever9dc3b092009-08-09 15:09:46 -04002875 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002876 break;
2877 case AF_INET6:
2878 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2879 xprt_set_bound(xprt);
2880
Chuck Lever9dc3b092009-08-09 15:09:46 -04002881 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002882 break;
2883 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002884 ret = ERR_PTR(-EAFNOSUPPORT);
2885 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002886 }
2887
Chuck Leverc740eff2009-08-09 15:09:46 -04002888 if (xprt_bound(xprt))
2889 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2890 xprt->address_strings[RPC_DISPLAY_ADDR],
2891 xprt->address_strings[RPC_DISPLAY_PORT],
2892 xprt->address_strings[RPC_DISPLAY_PROTO]);
2893 else
2894 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2895 xprt->address_strings[RPC_DISPLAY_ADDR],
2896 xprt->address_strings[RPC_DISPLAY_PROTO]);
Chuck Leveredb267a2006-08-22 20:06:18 -04002897
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002898 if (try_module_get(THIS_MODULE))
2899 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002900 ret = ERR_PTR(-EINVAL);
2901out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002902 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002903 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002904}
2905
Trond Myklebust2881ae72007-12-20 16:03:54 -05002906static const struct rpc_timeout xs_tcp_default_timeout = {
2907 .to_initval = 60 * HZ,
2908 .to_maxval = 60 * HZ,
2909 .to_retries = 2,
2910};
2911
Chuck Lever9903cd12005-08-11 16:25:26 -04002912/**
2913 * xs_setup_tcp - Set up transport to use a TCP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002914 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002915 *
2916 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002917static struct rpc_xprt *xs_setup_tcp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002918{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002919 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002920 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002921 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002922 struct rpc_xprt *ret;
Trond Myklebustb7993ce2013-04-14 11:42:00 -04002923 unsigned int max_slot_table_size = xprt_max_tcp_slot_table_entries;
2924
2925 if (args->flags & XPRT_CREATE_INFINITE_SLOTS)
2926 max_slot_table_size = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Levera246b012005-08-11 16:25:23 -04002927
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002928 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
Trond Myklebustb7993ce2013-04-14 11:42:00 -04002929 max_slot_table_size);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002930 if (IS_ERR(xprt))
2931 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002932 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002933
Chuck Leverec739ef2006-08-22 20:06:15 -04002934 xprt->prot = IPPROTO_TCP;
Chuck Lever808012f2005-08-25 16:25:49 -07002935 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
Chuck Lever808012f2005-08-25 16:25:49 -07002936 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
Chuck Levera246b012005-08-11 16:25:23 -04002937
Chuck Lever03bf4b72005-08-25 16:25:55 -07002938 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002939 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2940 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002941
Chuck Lever262965f2005-08-11 16:25:56 -04002942 xprt->ops = &xs_tcp_ops;
Trond Myklebustba7392b2007-12-20 16:03:55 -05002943 xprt->timeout = &xs_tcp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002944
Trond Myklebustedc1b012015-10-05 10:53:49 -04002945 INIT_WORK(&transport->recv_worker, xs_tcp_data_receive_workfn);
2946 INIT_DELAYED_WORK(&transport->connect_worker, xs_tcp_setup_socket);
2947
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002948 switch (addr->sa_family) {
2949 case AF_INET:
2950 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2951 xprt_set_bound(xprt);
2952
Chuck Lever9dc3b092009-08-09 15:09:46 -04002953 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002954 break;
2955 case AF_INET6:
2956 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2957 xprt_set_bound(xprt);
2958
Chuck Lever9dc3b092009-08-09 15:09:46 -04002959 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002960 break;
2961 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002962 ret = ERR_PTR(-EAFNOSUPPORT);
2963 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002964 }
2965
Chuck Leverc740eff2009-08-09 15:09:46 -04002966 if (xprt_bound(xprt))
2967 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2968 xprt->address_strings[RPC_DISPLAY_ADDR],
2969 xprt->address_strings[RPC_DISPLAY_PORT],
2970 xprt->address_strings[RPC_DISPLAY_PROTO]);
2971 else
2972 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2973 xprt->address_strings[RPC_DISPLAY_ADDR],
2974 xprt->address_strings[RPC_DISPLAY_PROTO]);
2975
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002976 if (try_module_get(THIS_MODULE))
2977 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002978 ret = ERR_PTR(-EINVAL);
2979out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002980 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002981 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002982}
Chuck Lever282b32e2006-12-05 16:35:51 -05002983
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002984/**
2985 * xs_setup_bc_tcp - Set up transport to use a TCP backchannel socket
2986 * @args: rpc transport creation arguments
2987 *
2988 */
2989static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
2990{
2991 struct sockaddr *addr = args->dstaddr;
2992 struct rpc_xprt *xprt;
2993 struct sock_xprt *transport;
2994 struct svc_sock *bc_sock;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002995 struct rpc_xprt *ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002996
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002997 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2998 xprt_tcp_slot_table_entries);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002999 if (IS_ERR(xprt))
3000 return xprt;
3001 transport = container_of(xprt, struct sock_xprt, xprt);
3002
3003 xprt->prot = IPPROTO_TCP;
3004 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
3005 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
3006 xprt->timeout = &xs_tcp_default_timeout;
3007
3008 /* backchannel */
3009 xprt_set_bound(xprt);
3010 xprt->bind_timeout = 0;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003011 xprt->reestablish_timeout = 0;
3012 xprt->idle_timeout = 0;
3013
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003014 xprt->ops = &bc_tcp_ops;
3015
3016 switch (addr->sa_family) {
3017 case AF_INET:
3018 xs_format_peer_addresses(xprt, "tcp",
3019 RPCBIND_NETID_TCP);
3020 break;
3021 case AF_INET6:
3022 xs_format_peer_addresses(xprt, "tcp",
3023 RPCBIND_NETID_TCP6);
3024 break;
3025 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003026 ret = ERR_PTR(-EAFNOSUPPORT);
3027 goto out_err;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003028 }
3029
Pavel Emelyanov50fa0d42010-10-05 20:49:35 +04003030 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
3031 xprt->address_strings[RPC_DISPLAY_ADDR],
3032 xprt->address_strings[RPC_DISPLAY_PORT],
3033 xprt->address_strings[RPC_DISPLAY_PROTO]);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003034
3035 /*
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003036 * Once we've associated a backchannel xprt with a connection,
Weng Meiling28303ca2013-11-30 17:56:44 +08003037 * we want to keep it around as long as the connection lasts,
3038 * in case we need to start using it for a backchannel again;
3039 * this reference won't be dropped until bc_xprt is destroyed.
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003040 */
3041 xprt_get(xprt);
3042 args->bc_xprt->xpt_bc_xprt = xprt;
3043 xprt->bc_xprt = args->bc_xprt;
3044 bc_sock = container_of(args->bc_xprt, struct svc_sock, sk_xprt);
3045 transport->sock = bc_sock->sk_sock;
3046 transport->inet = bc_sock->sk_sk;
3047
3048 /*
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003049 * Since we don't want connections for the backchannel, we set
3050 * the xprt status to connected
3051 */
3052 xprt_set_connected(xprt);
3053
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003054 if (try_module_get(THIS_MODULE))
3055 return xprt;
Kinglong Mee642aab52014-03-24 12:00:28 +08003056
3057 args->bc_xprt->xpt_bc_xprt = NULL;
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003058 xprt_put(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003059 ret = ERR_PTR(-EINVAL);
3060out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08003061 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003062 return ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003063}
3064
Chuck Lever176e21e2011-05-09 15:22:44 -04003065static struct xprt_class xs_local_transport = {
3066 .list = LIST_HEAD_INIT(xs_local_transport.list),
3067 .name = "named UNIX socket",
3068 .owner = THIS_MODULE,
3069 .ident = XPRT_TRANSPORT_LOCAL,
3070 .setup = xs_setup_local,
3071};
3072
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003073static struct xprt_class xs_udp_transport = {
3074 .list = LIST_HEAD_INIT(xs_udp_transport.list),
3075 .name = "udp",
3076 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003077 .ident = XPRT_TRANSPORT_UDP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003078 .setup = xs_setup_udp,
3079};
3080
3081static struct xprt_class xs_tcp_transport = {
3082 .list = LIST_HEAD_INIT(xs_tcp_transport.list),
3083 .name = "tcp",
3084 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003085 .ident = XPRT_TRANSPORT_TCP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003086 .setup = xs_setup_tcp,
3087};
3088
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003089static struct xprt_class xs_bc_tcp_transport = {
3090 .list = LIST_HEAD_INIT(xs_bc_tcp_transport.list),
3091 .name = "tcp NFSv4.1 backchannel",
3092 .owner = THIS_MODULE,
3093 .ident = XPRT_TRANSPORT_BC_TCP,
3094 .setup = xs_setup_bc_tcp,
3095};
3096
Chuck Lever282b32e2006-12-05 16:35:51 -05003097/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003098 * init_socket_xprt - set up xprtsock's sysctls, register with RPC client
Chuck Lever282b32e2006-12-05 16:35:51 -05003099 *
3100 */
3101int init_socket_xprt(void)
3102{
Jeff Laytonf895b252014-11-17 16:58:04 -05003103#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Eric W. Biederman2b1bec52007-02-14 00:33:24 -08003104 if (!sunrpc_table_header)
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08003105 sunrpc_table_header = register_sysctl_table(sunrpc_table);
Chuck Leverfbf76682006-12-05 16:35:54 -05003106#endif
3107
Chuck Lever176e21e2011-05-09 15:22:44 -04003108 xprt_register_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003109 xprt_register_transport(&xs_udp_transport);
3110 xprt_register_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003111 xprt_register_transport(&xs_bc_tcp_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003112
Chuck Lever282b32e2006-12-05 16:35:51 -05003113 return 0;
3114}
3115
3116/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003117 * cleanup_socket_xprt - remove xprtsock's sysctls, unregister
Chuck Lever282b32e2006-12-05 16:35:51 -05003118 *
3119 */
3120void cleanup_socket_xprt(void)
3121{
Jeff Laytonf895b252014-11-17 16:58:04 -05003122#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverfbf76682006-12-05 16:35:54 -05003123 if (sunrpc_table_header) {
3124 unregister_sysctl_table(sunrpc_table_header);
3125 sunrpc_table_header = NULL;
3126 }
3127#endif
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003128
Chuck Lever176e21e2011-05-09 15:22:44 -04003129 xprt_unregister_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003130 xprt_unregister_transport(&xs_udp_transport);
3131 xprt_unregister_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003132 xprt_unregister_transport(&xs_bc_tcp_transport);
Chuck Lever282b32e2006-12-05 16:35:51 -05003133}
Trond Myklebustcbf11072009-08-09 15:06:19 -04003134
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003135static int param_set_uint_minmax(const char *val,
3136 const struct kernel_param *kp,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003137 unsigned int min, unsigned int max)
3138{
Daniel Walter00cfaa92014-06-21 13:06:38 +01003139 unsigned int num;
Trond Myklebustcbf11072009-08-09 15:06:19 -04003140 int ret;
3141
3142 if (!val)
3143 return -EINVAL;
Daniel Walter00cfaa92014-06-21 13:06:38 +01003144 ret = kstrtouint(val, 0, &num);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003145 if (ret == -EINVAL || num < min || num > max)
3146 return -EINVAL;
3147 *((unsigned int *)kp->arg) = num;
3148 return 0;
3149}
3150
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003151static int param_set_portnr(const char *val, const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003152{
3153 return param_set_uint_minmax(val, kp,
3154 RPC_MIN_RESVPORT,
3155 RPC_MAX_RESVPORT);
3156}
3157
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303158static const struct kernel_param_ops param_ops_portnr = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003159 .set = param_set_portnr,
3160 .get = param_get_uint,
3161};
3162
Trond Myklebustcbf11072009-08-09 15:06:19 -04003163#define param_check_portnr(name, p) \
3164 __param_check(name, p, unsigned int);
3165
3166module_param_named(min_resvport, xprt_min_resvport, portnr, 0644);
3167module_param_named(max_resvport, xprt_max_resvport, portnr, 0644);
3168
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003169static int param_set_slot_table_size(const char *val,
3170 const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003171{
3172 return param_set_uint_minmax(val, kp,
3173 RPC_MIN_SLOT_TABLE,
3174 RPC_MAX_SLOT_TABLE);
3175}
3176
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303177static const struct kernel_param_ops param_ops_slot_table_size = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003178 .set = param_set_slot_table_size,
3179 .get = param_get_uint,
3180};
3181
Trond Myklebustcbf11072009-08-09 15:06:19 -04003182#define param_check_slot_table_size(name, p) \
3183 __param_check(name, p, unsigned int);
3184
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003185static int param_set_max_slot_table_size(const char *val,
3186 const struct kernel_param *kp)
3187{
3188 return param_set_uint_minmax(val, kp,
3189 RPC_MIN_SLOT_TABLE,
3190 RPC_MAX_SLOT_TABLE_LIMIT);
3191}
3192
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303193static const struct kernel_param_ops param_ops_max_slot_table_size = {
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003194 .set = param_set_max_slot_table_size,
3195 .get = param_get_uint,
3196};
3197
3198#define param_check_max_slot_table_size(name, p) \
3199 __param_check(name, p, unsigned int);
3200
Trond Myklebustcbf11072009-08-09 15:06:19 -04003201module_param_named(tcp_slot_table_entries, xprt_tcp_slot_table_entries,
3202 slot_table_size, 0644);
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003203module_param_named(tcp_max_slot_table_entries, xprt_max_tcp_slot_table_entries,
3204 max_slot_table_size, 0644);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003205module_param_named(udp_slot_table_entries, xprt_udp_slot_table_entries,
3206 slot_table_size, 0644);
3207