blob: 1a85e0ed0b4841792cd5b6a7d86864cbc2d334a3 [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;
363 if (remainder != 0 || more)
364 flags |= MSG_MORE;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500365 err = do_sendpage(sock, *ppage, base, len, flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400366 if (remainder == 0 || err != len)
367 break;
Jason Baronf279cd02014-09-24 18:08:00 +0000368 *sent_p += err;
Trond Myklebust24c56842006-10-17 15:06:22 -0400369 ppage++;
370 base = 0;
371 }
Jason Baronf279cd02014-09-24 18:08:00 +0000372 if (err > 0) {
373 *sent_p += err;
374 err = 0;
375 }
376 return err;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400377}
378
Chuck Lever9903cd12005-08-11 16:25:26 -0400379/**
380 * xs_sendpages - write pages directly to a socket
381 * @sock: socket to send on
382 * @addr: UDP only -- address of destination
383 * @addrlen: UDP only -- length of destination address
384 * @xdr: buffer containing this request
385 * @base: starting position in the buffer
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500386 * @zerocopy: true if it is safe to use sendpage()
Jason Baronf279cd02014-09-24 18:08:00 +0000387 * @sent_p: return the total number of bytes successfully queued for sending
Chuck Lever9903cd12005-08-11 16:25:26 -0400388 *
Chuck Levera246b012005-08-11 16:25:23 -0400389 */
Jason Baronf279cd02014-09-24 18:08:00 +0000390static 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 -0400391{
Trond Myklebust24c56842006-10-17 15:06:22 -0400392 unsigned int remainder = xdr->len - base;
Jason Baronf279cd02014-09-24 18:08:00 +0000393 int err = 0;
394 int sent = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400395
Chuck Lever262965f2005-08-11 16:25:56 -0400396 if (unlikely(!sock))
Trond Myklebustfba91af2009-03-11 14:06:41 -0400397 return -ENOTSOCK;
Chuck Lever262965f2005-08-11 16:25:56 -0400398
399 clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400400 if (base != 0) {
401 addr = NULL;
402 addrlen = 0;
403 }
Chuck Lever262965f2005-08-11 16:25:56 -0400404
Trond Myklebust24c56842006-10-17 15:06:22 -0400405 if (base < xdr->head[0].iov_len || addr != NULL) {
406 unsigned int len = xdr->head[0].iov_len - base;
407 remainder -= len;
408 err = xs_send_kvec(sock, addr, addrlen, &xdr->head[0], base, remainder != 0);
409 if (remainder == 0 || err != len)
Chuck Levera246b012005-08-11 16:25:23 -0400410 goto out;
Jason Baronf279cd02014-09-24 18:08:00 +0000411 *sent_p += err;
Chuck Levera246b012005-08-11 16:25:23 -0400412 base = 0;
413 } else
Trond Myklebust24c56842006-10-17 15:06:22 -0400414 base -= xdr->head[0].iov_len;
Chuck Levera246b012005-08-11 16:25:23 -0400415
Trond Myklebust24c56842006-10-17 15:06:22 -0400416 if (base < xdr->page_len) {
417 unsigned int len = xdr->page_len - base;
418 remainder -= len;
Jason Baronf279cd02014-09-24 18:08:00 +0000419 err = xs_send_pagedata(sock, xdr, base, remainder != 0, zerocopy, &sent);
420 *sent_p += sent;
421 if (remainder == 0 || sent != len)
Chuck Levera246b012005-08-11 16:25:23 -0400422 goto out;
423 base = 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400424 } else
425 base -= xdr->page_len;
426
427 if (base >= xdr->tail[0].iov_len)
Jason Baronf279cd02014-09-24 18:08:00 +0000428 return 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400429 err = xs_send_kvec(sock, NULL, 0, &xdr->tail[0], base, 0);
Chuck Levera246b012005-08-11 16:25:23 -0400430out:
Jason Baronf279cd02014-09-24 18:08:00 +0000431 if (err > 0) {
432 *sent_p += err;
433 err = 0;
434 }
435 return err;
Chuck Levera246b012005-08-11 16:25:23 -0400436}
437
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400438static void xs_nospace_callback(struct rpc_task *task)
439{
440 struct sock_xprt *transport = container_of(task->tk_rqstp->rq_xprt, struct sock_xprt, xprt);
441
442 transport->inet->sk_write_pending--;
443 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
444}
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)) {
468 if (test_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags)) {
469 /*
470 * Notify TCP that we're limited by the application
471 * window size
472 */
473 set_bit(SOCK_NOSPACE, &transport->sock->flags);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500474 sk->sk_write_pending++;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400475 /* ...and wait for more buffer space */
476 xprt_wait_for_buffer_space(task, xs_nospace_callback);
477 }
478 } else {
479 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400480 ret = -ENOTCONN;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400481 }
Chuck Lever262965f2005-08-11 16:25:56 -0400482
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400483 spin_unlock_bh(&xprt->transport_lock);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500484
485 /* Race breaker in case memory is freed before above code is called */
486 sk->sk_write_space(sk);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400487 return ret;
Chuck Lever262965f2005-08-11 16:25:56 -0400488}
489
Chuck Lever61677ee2011-05-09 15:22:34 -0400490/*
491 * Construct a stream transport record marker in @buf.
492 */
493static inline void xs_encode_stream_record_marker(struct xdr_buf *buf)
494{
495 u32 reclen = buf->len - sizeof(rpc_fraghdr);
496 rpc_fraghdr *base = buf->head[0].iov_base;
497 *base = cpu_to_be32(RPC_LAST_STREAM_FRAGMENT | reclen);
498}
499
Chuck Lever262965f2005-08-11 16:25:56 -0400500/**
Chuck Lever176e21e2011-05-09 15:22:44 -0400501 * xs_local_send_request - write an RPC request to an AF_LOCAL socket
502 * @task: RPC task that manages the state of an RPC request
503 *
504 * Return values:
505 * 0: The request has been sent
506 * EAGAIN: The socket was blocked, please call again later to
507 * complete the request
508 * ENOTCONN: Caller needs to invoke connect logic then call again
509 * other: Some other error occured, the request was not sent
510 */
511static int xs_local_send_request(struct rpc_task *task)
512{
513 struct rpc_rqst *req = task->tk_rqstp;
514 struct rpc_xprt *xprt = req->rq_xprt;
515 struct sock_xprt *transport =
516 container_of(xprt, struct sock_xprt, xprt);
517 struct xdr_buf *xdr = &req->rq_snd_buf;
518 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000519 int sent = 0;
Chuck Lever176e21e2011-05-09 15:22:44 -0400520
521 xs_encode_stream_record_marker(&req->rq_snd_buf);
522
523 xs_pktdump("packet data:",
524 req->rq_svec->iov_base, req->rq_svec->iov_len);
525
Jason Baronf279cd02014-09-24 18:08:00 +0000526 status = xs_sendpages(transport->sock, NULL, 0, xdr, req->rq_bytes_sent,
527 true, &sent);
Chuck Lever176e21e2011-05-09 15:22:44 -0400528 dprintk("RPC: %s(%u) = %d\n",
529 __func__, xdr->len - req->rq_bytes_sent, status);
NeilBrown743c69e2015-07-27 10:55:35 +1000530
531 if (status == -EAGAIN && sock_writeable(transport->inet))
532 status = -ENOBUFS;
533
Jason Baronf279cd02014-09-24 18:08:00 +0000534 if (likely(sent > 0) || status == 0) {
535 req->rq_bytes_sent += sent;
536 req->rq_xmit_bytes_sent += sent;
Chuck Lever176e21e2011-05-09 15:22:44 -0400537 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
538 req->rq_bytes_sent = 0;
539 return 0;
540 }
541 status = -EAGAIN;
542 }
543
544 switch (status) {
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400545 case -ENOBUFS:
Trond Myklebustb5872f02015-07-03 09:32:23 -0400546 break;
Chuck Lever176e21e2011-05-09 15:22:44 -0400547 case -EAGAIN:
548 status = xs_nospace(task);
549 break;
550 default:
551 dprintk("RPC: sendmsg returned unrecognized error %d\n",
552 -status);
553 case -EPIPE:
554 xs_close(xprt);
555 status = -ENOTCONN;
556 }
557
558 return status;
559}
560
561/**
Chuck Lever262965f2005-08-11 16:25:56 -0400562 * xs_udp_send_request - write an RPC request to a UDP socket
563 * @task: address of RPC task that manages the state of an RPC request
564 *
565 * Return values:
566 * 0: The request has been sent
567 * EAGAIN: The socket was blocked, please call again later to
568 * complete the request
569 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300570 * other: Some other error occurred, the request was not sent
Chuck Lever262965f2005-08-11 16:25:56 -0400571 */
572static int xs_udp_send_request(struct rpc_task *task)
573{
574 struct rpc_rqst *req = task->tk_rqstp;
575 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500576 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400577 struct xdr_buf *xdr = &req->rq_snd_buf;
Jason Baronf279cd02014-09-24 18:08:00 +0000578 int sent = 0;
Chuck Lever262965f2005-08-11 16:25:56 -0400579 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400580
Chuck Lever9903cd12005-08-11 16:25:26 -0400581 xs_pktdump("packet data:",
Chuck Levera246b012005-08-11 16:25:23 -0400582 req->rq_svec->iov_base,
583 req->rq_svec->iov_len);
584
Trond Myklebust01d37c42009-03-11 14:09:39 -0400585 if (!xprt_bound(xprt))
586 return -ENOTCONN;
Jason Baronf279cd02014-09-24 18:08:00 +0000587 status = xs_sendpages(transport->sock, xs_addr(xprt), xprt->addrlen,
588 xdr, req->rq_bytes_sent, true, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400589
Chuck Lever46121cf2007-01-31 12:14:08 -0500590 dprintk("RPC: xs_udp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400591 xdr->len - req->rq_bytes_sent, status);
Chuck Levera246b012005-08-11 16:25:23 -0400592
Jason Baron3dedbb52014-09-24 18:08:04 +0000593 /* firewall is blocking us, don't return -EAGAIN or we end up looping */
594 if (status == -EPERM)
595 goto process_status;
596
NeilBrown743c69e2015-07-27 10:55:35 +1000597 if (status == -EAGAIN && sock_writeable(transport->inet))
598 status = -ENOBUFS;
599
Jason Baronf279cd02014-09-24 18:08:00 +0000600 if (sent > 0 || status == 0) {
601 req->rq_xmit_bytes_sent += sent;
602 if (sent >= req->rq_slen)
Trond Myklebust21997002007-10-01 11:43:37 -0400603 return 0;
604 /* Still some bytes left; set up for a retry later. */
Chuck Lever262965f2005-08-11 16:25:56 -0400605 status = -EAGAIN;
Trond Myklebust21997002007-10-01 11:43:37 -0400606 }
Chuck Levera246b012005-08-11 16:25:23 -0400607
Jason Baron3dedbb52014-09-24 18:08:04 +0000608process_status:
Chuck Lever262965f2005-08-11 16:25:56 -0400609 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400610 case -ENOTSOCK:
611 status = -ENOTCONN;
612 /* Should we call xs_close() here? */
613 break;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400614 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400615 status = xs_nospace(task);
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400616 break;
Trond Myklebustc8485e42009-03-11 14:37:59 -0400617 default:
618 dprintk("RPC: sendmsg returned unrecognized error %d\n",
619 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400620 case -ENETUNREACH:
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400621 case -ENOBUFS:
Chuck Lever262965f2005-08-11 16:25:56 -0400622 case -EPIPE:
Chuck Levera246b012005-08-11 16:25:23 -0400623 case -ECONNREFUSED:
Jason Baron3dedbb52014-09-24 18:08:04 +0000624 case -EPERM:
Chuck Levera246b012005-08-11 16:25:23 -0400625 /* When the server has died, an ICMP port unreachable message
Chuck Lever9903cd12005-08-11 16:25:26 -0400626 * prompts ECONNREFUSED. */
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400627 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400628 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800629
Chuck Lever262965f2005-08-11 16:25:56 -0400630 return status;
Chuck Levera246b012005-08-11 16:25:23 -0400631}
632
Trond Myklebuste06799f2007-11-05 15:44:12 -0500633/**
Chuck Lever262965f2005-08-11 16:25:56 -0400634 * xs_tcp_send_request - write an RPC request to a TCP socket
Chuck Lever9903cd12005-08-11 16:25:26 -0400635 * @task: address of RPC task that manages the state of an RPC request
636 *
637 * Return values:
Chuck Lever262965f2005-08-11 16:25:56 -0400638 * 0: The request has been sent
639 * EAGAIN: The socket was blocked, please call again later to
640 * complete the request
641 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300642 * other: Some other error occurred, the request was not sent
Chuck Lever9903cd12005-08-11 16:25:26 -0400643 *
644 * XXX: In the case of soft timeouts, should we eventually give up
Chuck Lever262965f2005-08-11 16:25:56 -0400645 * if sendmsg is not able to make progress?
Chuck Lever9903cd12005-08-11 16:25:26 -0400646 */
Chuck Lever262965f2005-08-11 16:25:56 -0400647static int xs_tcp_send_request(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400648{
649 struct rpc_rqst *req = task->tk_rqstp;
650 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500651 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400652 struct xdr_buf *xdr = &req->rq_snd_buf;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500653 bool zerocopy = true;
Chuck Leverb595bb12007-08-06 11:56:42 -0400654 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000655 int sent;
Chuck Levera246b012005-08-11 16:25:23 -0400656
Chuck Lever61677ee2011-05-09 15:22:34 -0400657 xs_encode_stream_record_marker(&req->rq_snd_buf);
Chuck Levera246b012005-08-11 16:25:23 -0400658
Chuck Lever262965f2005-08-11 16:25:56 -0400659 xs_pktdump("packet data:",
660 req->rq_svec->iov_base,
661 req->rq_svec->iov_len);
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500662 /* Don't use zero copy if this is a resend. If the RPC call
663 * completes while the socket holds a reference to the pages,
664 * then we may end up resending corrupted data.
665 */
666 if (task->tk_flags & RPC_TASK_SENT)
667 zerocopy = false;
Chuck Levera246b012005-08-11 16:25:23 -0400668
669 /* Continue transmitting the packet/record. We must be careful
670 * to cope with writespace callbacks arriving _after_ we have
Chuck Lever262965f2005-08-11 16:25:56 -0400671 * called sendmsg(). */
Chuck Levera246b012005-08-11 16:25:23 -0400672 while (1) {
Jason Baronf279cd02014-09-24 18:08:00 +0000673 sent = 0;
674 status = xs_sendpages(transport->sock, NULL, 0, xdr,
675 req->rq_bytes_sent, zerocopy, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400676
Chuck Lever46121cf2007-01-31 12:14:08 -0500677 dprintk("RPC: xs_tcp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400678 xdr->len - req->rq_bytes_sent, status);
679
Chuck Lever262965f2005-08-11 16:25:56 -0400680 /* If we've sent the entire packet, immediately
681 * reset the count of bytes sent. */
Jason Baronf279cd02014-09-24 18:08:00 +0000682 req->rq_bytes_sent += sent;
683 req->rq_xmit_bytes_sent += sent;
Chuck Lever262965f2005-08-11 16:25:56 -0400684 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
685 req->rq_bytes_sent = 0;
686 return 0;
Chuck Levera246b012005-08-11 16:25:23 -0400687 }
688
Trond Myklebustf580dd02015-07-11 17:48:52 +0200689 if (status < 0)
690 break;
691 if (sent == 0) {
692 status = -EAGAIN;
693 break;
694 }
Chuck Levera246b012005-08-11 16:25:23 -0400695 }
NeilBrown743c69e2015-07-27 10:55:35 +1000696 if (status == -EAGAIN && sk_stream_is_writeable(transport->inet))
697 status = -ENOBUFS;
Chuck Levera246b012005-08-11 16:25:23 -0400698
Chuck Lever262965f2005-08-11 16:25:56 -0400699 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400700 case -ENOTSOCK:
701 status = -ENOTCONN;
702 /* Should we call xs_close() here? */
703 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400704 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400705 status = xs_nospace(task);
Chuck Lever262965f2005-08-11 16:25:56 -0400706 break;
707 default:
Chuck Lever46121cf2007-01-31 12:14:08 -0500708 dprintk("RPC: sendmsg returned unrecognized error %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400709 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400710 case -ECONNRESET:
Chuck Lever262965f2005-08-11 16:25:56 -0400711 case -ECONNREFUSED:
712 case -ENOTCONN:
Trond Myklebust3913c782015-02-08 21:44:04 -0500713 case -EADDRINUSE:
Trond Myklebustb5872f02015-07-03 09:32:23 -0400714 case -ENOBUFS:
Trond Myklebustb9d2bb22012-10-23 11:40:02 -0400715 case -EPIPE:
Chuck Lever262965f2005-08-11 16:25:56 -0400716 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400717 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800718
Chuck Levera246b012005-08-11 16:25:23 -0400719 return status;
720}
721
Chuck Lever9903cd12005-08-11 16:25:26 -0400722/**
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400723 * xs_tcp_release_xprt - clean up after a tcp transmission
724 * @xprt: transport
725 * @task: rpc task
726 *
727 * This cleans up if an error causes us to abort the transmission of a request.
728 * In this case, the socket may need to be reset in order to avoid confusing
729 * the server.
730 */
731static void xs_tcp_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
732{
733 struct rpc_rqst *req;
734
735 if (task != xprt->snd_task)
736 return;
737 if (task == NULL)
738 goto out_release;
739 req = task->tk_rqstp;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400740 if (req == NULL)
741 goto out_release;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400742 if (req->rq_bytes_sent == 0)
743 goto out_release;
744 if (req->rq_bytes_sent == req->rq_snd_buf.len)
745 goto out_release;
Trond Myklebusta4f08352013-01-08 09:10:21 -0500746 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400747out_release:
748 xprt_release_xprt(xprt, task);
749}
750
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400751static void xs_save_old_callbacks(struct sock_xprt *transport, struct sock *sk)
752{
753 transport->old_data_ready = sk->sk_data_ready;
754 transport->old_state_change = sk->sk_state_change;
755 transport->old_write_space = sk->sk_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500756 transport->old_error_report = sk->sk_error_report;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400757}
758
759static void xs_restore_old_callbacks(struct sock_xprt *transport, struct sock *sk)
760{
761 sk->sk_data_ready = transport->old_data_ready;
762 sk->sk_state_change = transport->old_state_change;
763 sk->sk_write_space = transport->old_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500764 sk->sk_error_report = transport->old_error_report;
765}
766
Trond Myklebustb70ae912015-02-09 09:41:32 -0500767static void xs_sock_reset_connection_flags(struct rpc_xprt *xprt)
768{
769 smp_mb__before_atomic();
770 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
771 clear_bit(XPRT_CLOSING, &xprt->state);
772 smp_mb__after_atomic();
773}
774
775static void xs_sock_mark_closed(struct rpc_xprt *xprt)
776{
777 xs_sock_reset_connection_flags(xprt);
778 /* Mark transport as closed and wake up all pending tasks */
779 xprt_disconnect_done(xprt);
780}
781
Trond Myklebust21180712013-12-31 13:22:59 -0500782/**
783 * xs_error_report - callback to handle TCP socket state errors
784 * @sk: socket
785 *
786 * Note: we don't call sock_error() since there may be a rpc_task
787 * using the socket, and so we don't want to clear sk->sk_err.
788 */
789static void xs_error_report(struct sock *sk)
790{
791 struct rpc_xprt *xprt;
792 int err;
793
794 read_lock_bh(&sk->sk_callback_lock);
795 if (!(xprt = xprt_from_sock(sk)))
796 goto out;
797
798 err = -sk->sk_err;
799 if (err == 0)
800 goto out;
Trond Myklebustb70ae912015-02-09 09:41:32 -0500801 /* Is this a reset event? */
802 if (sk->sk_state == TCP_CLOSE)
803 xs_sock_mark_closed(xprt);
Trond Myklebust21180712013-12-31 13:22:59 -0500804 dprintk("RPC: xs_error_report client %p, error=%d...\n",
805 xprt, -err);
Trond Myklebuste8353c762013-12-31 13:39:22 -0500806 trace_rpc_socket_error(xprt, sk->sk_socket, err);
Trond Myklebust21180712013-12-31 13:22:59 -0500807 xprt_wake_pending_tasks(xprt, err);
808 out:
809 read_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400810}
811
Chuck Leverfe315e72009-03-11 14:10:21 -0400812static void xs_reset_transport(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -0400813{
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500814 struct socket *sock = transport->sock;
815 struct sock *sk = transport->inet;
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500816 struct rpc_xprt *xprt = &transport->xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400817
Chuck Leverfe315e72009-03-11 14:10:21 -0400818 if (sk == NULL)
819 return;
Chuck Lever9903cd12005-08-11 16:25:26 -0400820
Jeff Layton264d1df2015-06-03 16:14:27 -0400821 if (atomic_read(&transport->xprt.swapper))
822 sk_clear_memalloc(sk);
823
Trond Myklebust09939202015-08-29 19:11:21 -0700824 kernel_sock_shutdown(sock, SHUT_RDWR);
825
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);
Chuck Levera246b012005-08-11 16:25:23 -0400836
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500837 trace_rpc_socket_close(xprt, sock);
Chuck Levera246b012005-08-11 16:25:23 -0400838 sock_release(sock);
Chuck Leverfe315e72009-03-11 14:10:21 -0400839}
840
841/**
842 * xs_close - close a socket
843 * @xprt: transport
844 *
845 * This is used when all requests are complete; ie, no DRC state remains
846 * on the server we want to save.
Trond Myklebustf75e6742009-04-21 17:18:20 -0400847 *
848 * The caller _must_ be holding XPRT_LOCKED in order to avoid issues with
849 * xs_reset_transport() zeroing the socket from underneath a writer.
Chuck Leverfe315e72009-03-11 14:10:21 -0400850 */
851static void xs_close(struct rpc_xprt *xprt)
852{
853 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
854
855 dprintk("RPC: xs_close xprt %p\n", xprt);
856
857 xs_reset_transport(transport);
Neil Brown61d0a8e2009-09-23 14:36:37 -0400858 xprt->reestablish_timeout = 0;
Chuck Leverfe315e72009-03-11 14:10:21 -0400859
Trond Myklebust62da3b22007-11-06 18:44:20 -0500860 xprt_disconnect_done(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400861}
862
Chuck Lever4a068252015-05-11 14:02:25 -0400863static void xs_inject_disconnect(struct rpc_xprt *xprt)
864{
865 dprintk("RPC: injecting transport disconnect on xprt=%p\n",
866 xprt);
867 xprt_disconnect_done(xprt);
868}
869
Kinglong Mee315f3812014-03-24 11:07:22 +0800870static void xs_xprt_free(struct rpc_xprt *xprt)
871{
872 xs_free_peer_addresses(xprt);
873 xprt_free(xprt);
874}
875
Chuck Lever9903cd12005-08-11 16:25:26 -0400876/**
877 * xs_destroy - prepare to shutdown a transport
878 * @xprt: doomed transport
879 *
880 */
881static void xs_destroy(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -0400882{
Trond Myklebust03c788272015-09-17 10:42:27 -0400883 struct sock_xprt *transport = container_of(xprt,
884 struct sock_xprt, xprt);
Chuck Lever46121cf2007-01-31 12:14:08 -0500885 dprintk("RPC: xs_destroy xprt %p\n", xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -0400886
Trond Myklebust03c788272015-09-17 10:42:27 -0400887 cancel_delayed_work_sync(&transport->connect_worker);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400888 xs_close(xprt);
Kinglong Mee315f3812014-03-24 11:07:22 +0800889 xs_xprt_free(xprt);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400890 module_put(THIS_MODULE);
Chuck Levera246b012005-08-11 16:25:23 -0400891}
892
Chuck Lever176e21e2011-05-09 15:22:44 -0400893static int xs_local_copy_to_xdr(struct xdr_buf *xdr, struct sk_buff *skb)
894{
895 struct xdr_skb_reader desc = {
896 .skb = skb,
897 .offset = sizeof(rpc_fraghdr),
898 .count = skb->len - sizeof(rpc_fraghdr),
899 };
900
901 if (xdr_partial_copy_from_skb(xdr, 0, &desc, xdr_skb_read_bits) < 0)
902 return -1;
903 if (desc.count)
904 return -1;
905 return 0;
906}
907
908/**
909 * xs_local_data_ready - "data ready" callback for AF_LOCAL sockets
910 * @sk: socket with data to read
Chuck Lever176e21e2011-05-09 15:22:44 -0400911 *
912 * Currently this assumes we can read the whole reply in a single gulp.
913 */
David S. Miller676d2362014-04-11 16:15:36 -0400914static void xs_local_data_ready(struct sock *sk)
Chuck Lever176e21e2011-05-09 15:22:44 -0400915{
916 struct rpc_task *task;
917 struct rpc_xprt *xprt;
918 struct rpc_rqst *rovr;
919 struct sk_buff *skb;
920 int err, repsize, copied;
921 u32 _xid;
922 __be32 *xp;
923
924 read_lock_bh(&sk->sk_callback_lock);
925 dprintk("RPC: %s...\n", __func__);
926 xprt = xprt_from_sock(sk);
927 if (xprt == NULL)
928 goto out;
929
930 skb = skb_recv_datagram(sk, 0, 1, &err);
931 if (skb == NULL)
932 goto out;
933
Chuck Lever176e21e2011-05-09 15:22:44 -0400934 repsize = skb->len - sizeof(rpc_fraghdr);
935 if (repsize < 4) {
936 dprintk("RPC: impossible RPC reply size %d\n", repsize);
937 goto dropit;
938 }
939
940 /* Copy the XID from the skb... */
941 xp = skb_header_pointer(skb, sizeof(rpc_fraghdr), sizeof(_xid), &_xid);
942 if (xp == NULL)
943 goto dropit;
944
945 /* Look up and lock the request corresponding to the given XID */
946 spin_lock(&xprt->transport_lock);
947 rovr = xprt_lookup_rqst(xprt, *xp);
948 if (!rovr)
949 goto out_unlock;
950 task = rovr->rq_task;
951
952 copied = rovr->rq_private_buf.buflen;
953 if (copied > repsize)
954 copied = repsize;
955
956 if (xs_local_copy_to_xdr(&rovr->rq_private_buf, skb)) {
957 dprintk("RPC: sk_buff copy failed\n");
958 goto out_unlock;
959 }
960
961 xprt_complete_rqst(task, copied);
962
963 out_unlock:
964 spin_unlock(&xprt->transport_lock);
965 dropit:
966 skb_free_datagram(sk, skb);
967 out:
968 read_unlock_bh(&sk->sk_callback_lock);
969}
970
Chuck Lever9903cd12005-08-11 16:25:26 -0400971/**
972 * xs_udp_data_ready - "data ready" callback for UDP sockets
973 * @sk: socket with data to read
Chuck Lever9903cd12005-08-11 16:25:26 -0400974 *
975 */
David S. Miller676d2362014-04-11 16:15:36 -0400976static void xs_udp_data_ready(struct sock *sk)
Chuck Lever9903cd12005-08-11 16:25:26 -0400977{
978 struct rpc_task *task;
979 struct rpc_xprt *xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400980 struct rpc_rqst *rovr;
Chuck Lever9903cd12005-08-11 16:25:26 -0400981 struct sk_buff *skb;
Chuck Levera246b012005-08-11 16:25:23 -0400982 int err, repsize, copied;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700983 u32 _xid;
984 __be32 *xp;
Chuck Levera246b012005-08-11 16:25:23 -0400985
Eric Dumazetf064af12010-09-22 12:43:39 +0000986 read_lock_bh(&sk->sk_callback_lock);
Chuck Lever46121cf2007-01-31 12:14:08 -0500987 dprintk("RPC: xs_udp_data_ready...\n");
Chuck Lever9903cd12005-08-11 16:25:26 -0400988 if (!(xprt = xprt_from_sock(sk)))
Chuck Levera246b012005-08-11 16:25:23 -0400989 goto out;
Chuck Levera246b012005-08-11 16:25:23 -0400990
991 if ((skb = skb_recv_datagram(sk, 0, 1, &err)) == NULL)
992 goto out;
993
Chuck Levera246b012005-08-11 16:25:23 -0400994 repsize = skb->len - sizeof(struct udphdr);
995 if (repsize < 4) {
Chuck Lever46121cf2007-01-31 12:14:08 -0500996 dprintk("RPC: impossible RPC reply size %d!\n", repsize);
Chuck Levera246b012005-08-11 16:25:23 -0400997 goto dropit;
998 }
999
1000 /* Copy the XID from the skb... */
1001 xp = skb_header_pointer(skb, sizeof(struct udphdr),
1002 sizeof(_xid), &_xid);
1003 if (xp == NULL)
1004 goto dropit;
1005
1006 /* Look up and lock the request corresponding to the given XID */
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001007 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001008 rovr = xprt_lookup_rqst(xprt, *xp);
1009 if (!rovr)
1010 goto out_unlock;
1011 task = rovr->rq_task;
1012
Chuck Levera246b012005-08-11 16:25:23 -04001013 if ((copied = rovr->rq_private_buf.buflen) > repsize)
1014 copied = repsize;
1015
1016 /* Suck it into the iovec, verify checksum if not done by hw. */
Herbert Xu1781f7f2007-12-11 11:30:32 -08001017 if (csum_partial_copy_to_xdr(&rovr->rq_private_buf, skb)) {
1018 UDPX_INC_STATS_BH(sk, UDP_MIB_INERRORS);
Chuck Levera246b012005-08-11 16:25:23 -04001019 goto out_unlock;
Herbert Xu1781f7f2007-12-11 11:30:32 -08001020 }
1021
1022 UDPX_INC_STATS_BH(sk, UDP_MIB_INDATAGRAMS);
Chuck Levera246b012005-08-11 16:25:23 -04001023
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001024 xprt_adjust_cwnd(xprt, task, copied);
Chuck Lever1570c1e2005-08-25 16:25:52 -07001025 xprt_complete_rqst(task, copied);
Chuck Levera246b012005-08-11 16:25:23 -04001026
1027 out_unlock:
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001028 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001029 dropit:
1030 skb_free_datagram(sk, skb);
1031 out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001032 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001033}
1034
Trond Myklebusta519fc72012-09-12 16:49:15 -04001035/*
1036 * Helper function to force a TCP close if the server is sending
1037 * junk and/or it has put us in CLOSE_WAIT
1038 */
1039static void xs_tcp_force_close(struct rpc_xprt *xprt)
1040{
Trond Myklebusta519fc72012-09-12 16:49:15 -04001041 xprt_force_disconnect(xprt);
1042}
1043
Chuck Leverdd456472006-12-05 16:35:44 -05001044static inline void xs_tcp_read_fraghdr(struct rpc_xprt *xprt, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001045{
Chuck Lever51971132006-12-05 16:35:19 -05001046 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001047 size_t len, used;
1048 char *p;
1049
Chuck Lever51971132006-12-05 16:35:19 -05001050 p = ((char *) &transport->tcp_fraghdr) + transport->tcp_offset;
1051 len = sizeof(transport->tcp_fraghdr) - transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001052 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001053 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001054 if (used != len)
1055 return;
Chuck Lever808012f2005-08-25 16:25:49 -07001056
Chuck Lever51971132006-12-05 16:35:19 -05001057 transport->tcp_reclen = ntohl(transport->tcp_fraghdr);
1058 if (transport->tcp_reclen & RPC_LAST_STREAM_FRAGMENT)
Chuck Levere136d092006-12-05 16:35:23 -05001059 transport->tcp_flags |= TCP_RCV_LAST_FRAG;
Chuck Levera246b012005-08-11 16:25:23 -04001060 else
Chuck Levere136d092006-12-05 16:35:23 -05001061 transport->tcp_flags &= ~TCP_RCV_LAST_FRAG;
Chuck Lever51971132006-12-05 16:35:19 -05001062 transport->tcp_reclen &= RPC_FRAGMENT_SIZE_MASK;
Chuck Lever808012f2005-08-25 16:25:49 -07001063
Chuck Levere136d092006-12-05 16:35:23 -05001064 transport->tcp_flags &= ~TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001065 transport->tcp_offset = 0;
Chuck Lever808012f2005-08-25 16:25:49 -07001066
Chuck Levera246b012005-08-11 16:25:23 -04001067 /* Sanity check of the record length */
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001068 if (unlikely(transport->tcp_reclen < 8)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001069 dprintk("RPC: invalid TCP record fragment length\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001070 xs_tcp_force_close(xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -04001071 return;
Chuck Levera246b012005-08-11 16:25:23 -04001072 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001073 dprintk("RPC: reading TCP record fragment of length %d\n",
Chuck Lever51971132006-12-05 16:35:19 -05001074 transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001075}
1076
Chuck Lever51971132006-12-05 16:35:19 -05001077static void xs_tcp_check_fraghdr(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -04001078{
Chuck Lever51971132006-12-05 16:35:19 -05001079 if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001080 transport->tcp_flags |= TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -05001081 transport->tcp_offset = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001082 if (transport->tcp_flags & TCP_RCV_LAST_FRAG) {
1083 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1084 transport->tcp_flags |= TCP_RCV_COPY_XID;
Chuck Lever51971132006-12-05 16:35:19 -05001085 transport->tcp_copied = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001086 }
1087 }
1088}
1089
Chuck Leverdd456472006-12-05 16:35:44 -05001090static inline void xs_tcp_read_xid(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001091{
1092 size_t len, used;
1093 char *p;
1094
Chuck Lever51971132006-12-05 16:35:19 -05001095 len = sizeof(transport->tcp_xid) - transport->tcp_offset;
Chuck Lever46121cf2007-01-31 12:14:08 -05001096 dprintk("RPC: reading XID (%Zu bytes)\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001097 p = ((char *) &transport->tcp_xid) + transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001098 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -05001099 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001100 if (used != len)
1101 return;
Chuck Levere136d092006-12-05 16:35:23 -05001102 transport->tcp_flags &= ~TCP_RCV_COPY_XID;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001103 transport->tcp_flags |= TCP_RCV_READ_CALLDIR;
Chuck Lever51971132006-12-05 16:35:19 -05001104 transport->tcp_copied = 4;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001105 dprintk("RPC: reading %s XID %08x\n",
1106 (transport->tcp_flags & TCP_RPC_REPLY) ? "reply for"
1107 : "request with",
Chuck Lever51971132006-12-05 16:35:19 -05001108 ntohl(transport->tcp_xid));
1109 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001110}
1111
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001112static inline void xs_tcp_read_calldir(struct sock_xprt *transport,
1113 struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001114{
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001115 size_t len, used;
1116 u32 offset;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001117 char *p;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001118
1119 /*
1120 * We want transport->tcp_offset to be 8 at the end of this routine
1121 * (4 bytes for the xid and 4 bytes for the call/reply flag).
1122 * When this function is called for the first time,
1123 * transport->tcp_offset is 4 (after having already read the xid).
1124 */
1125 offset = transport->tcp_offset - sizeof(transport->tcp_xid);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001126 len = sizeof(transport->tcp_calldir) - offset;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001127 dprintk("RPC: reading CALL/REPLY flag (%Zu bytes)\n", len);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001128 p = ((char *) &transport->tcp_calldir) + offset;
1129 used = xdr_skb_read_bits(desc, p, len);
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001130 transport->tcp_offset += used;
1131 if (used != len)
1132 return;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001133 transport->tcp_flags &= ~TCP_RCV_READ_CALLDIR;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001134 /*
1135 * We don't yet have the XDR buffer, so we will write the calldir
1136 * out after we get the buffer from the 'struct rpc_rqst'
1137 */
Trond Myklebustb76ce562010-06-16 13:57:32 -04001138 switch (ntohl(transport->tcp_calldir)) {
1139 case RPC_REPLY:
1140 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1141 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001142 transport->tcp_flags |= TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001143 break;
1144 case RPC_CALL:
1145 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
1146 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001147 transport->tcp_flags &= ~TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001148 break;
1149 default:
1150 dprintk("RPC: invalid request message type\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001151 xs_tcp_force_close(&transport->xprt);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001152 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001153 xs_tcp_check_fraghdr(transport);
1154}
1155
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001156static inline void xs_tcp_read_common(struct rpc_xprt *xprt,
1157 struct xdr_skb_reader *desc,
1158 struct rpc_rqst *req)
Chuck Levera246b012005-08-11 16:25:23 -04001159{
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001160 struct sock_xprt *transport =
1161 container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001162 struct xdr_buf *rcvbuf;
1163 size_t len;
1164 ssize_t r;
1165
Chuck Levera246b012005-08-11 16:25:23 -04001166 rcvbuf = &req->rq_private_buf;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001167
1168 if (transport->tcp_flags & TCP_RCV_COPY_CALLDIR) {
1169 /*
1170 * Save the RPC direction in the XDR buffer
1171 */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001172 memcpy(rcvbuf->head[0].iov_base + transport->tcp_copied,
Trond Myklebustb76ce562010-06-16 13:57:32 -04001173 &transport->tcp_calldir,
1174 sizeof(transport->tcp_calldir));
1175 transport->tcp_copied += sizeof(transport->tcp_calldir);
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001176 transport->tcp_flags &= ~TCP_RCV_COPY_CALLDIR;
Chuck Levera246b012005-08-11 16:25:23 -04001177 }
1178
Chuck Levera246b012005-08-11 16:25:23 -04001179 len = desc->count;
Chuck Lever51971132006-12-05 16:35:19 -05001180 if (len > transport->tcp_reclen - transport->tcp_offset) {
Chuck Leverdd456472006-12-05 16:35:44 -05001181 struct xdr_skb_reader my_desc;
Chuck Levera246b012005-08-11 16:25:23 -04001182
Chuck Lever51971132006-12-05 16:35:19 -05001183 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001184 memcpy(&my_desc, desc, sizeof(my_desc));
1185 my_desc.count = len;
Chuck Lever51971132006-12-05 16:35:19 -05001186 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001187 &my_desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001188 desc->count -= r;
1189 desc->offset += r;
1190 } else
Chuck Lever51971132006-12-05 16:35:19 -05001191 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001192 desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001193
1194 if (r > 0) {
Chuck Lever51971132006-12-05 16:35:19 -05001195 transport->tcp_copied += r;
1196 transport->tcp_offset += r;
Chuck Levera246b012005-08-11 16:25:23 -04001197 }
1198 if (r != len) {
1199 /* Error when copying to the receive buffer,
1200 * usually because we weren't able to allocate
1201 * additional buffer pages. All we can do now
Chuck Levere136d092006-12-05 16:35:23 -05001202 * is turn off TCP_RCV_COPY_DATA, so the request
Chuck Levera246b012005-08-11 16:25:23 -04001203 * will not receive any additional updates,
1204 * and time out.
1205 * Any remaining data from this record will
1206 * be discarded.
1207 */
Chuck Levere136d092006-12-05 16:35:23 -05001208 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever46121cf2007-01-31 12:14:08 -05001209 dprintk("RPC: XID %08x truncated request\n",
Chuck Lever51971132006-12-05 16:35:19 -05001210 ntohl(transport->tcp_xid));
Chuck Lever46121cf2007-01-31 12:14:08 -05001211 dprintk("RPC: xprt = %p, tcp_copied = %lu, "
1212 "tcp_offset = %u, tcp_reclen = %u\n",
1213 xprt, transport->tcp_copied,
1214 transport->tcp_offset, transport->tcp_reclen);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001215 return;
Chuck Levera246b012005-08-11 16:25:23 -04001216 }
1217
Chuck Lever46121cf2007-01-31 12:14:08 -05001218 dprintk("RPC: XID %08x read %Zd bytes\n",
Chuck Lever51971132006-12-05 16:35:19 -05001219 ntohl(transport->tcp_xid), r);
Chuck Lever46121cf2007-01-31 12:14:08 -05001220 dprintk("RPC: xprt = %p, tcp_copied = %lu, tcp_offset = %u, "
1221 "tcp_reclen = %u\n", xprt, transport->tcp_copied,
1222 transport->tcp_offset, transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001223
Chuck Lever51971132006-12-05 16:35:19 -05001224 if (transport->tcp_copied == req->rq_private_buf.buflen)
Chuck Levere136d092006-12-05 16:35:23 -05001225 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever51971132006-12-05 16:35:19 -05001226 else if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001227 if (transport->tcp_flags & TCP_RCV_LAST_FRAG)
1228 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Levera246b012005-08-11 16:25:23 -04001229 }
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001230}
1231
1232/*
1233 * Finds the request corresponding to the RPC xid and invokes the common
1234 * tcp read code to read the data.
1235 */
1236static inline int xs_tcp_read_reply(struct rpc_xprt *xprt,
1237 struct xdr_skb_reader *desc)
1238{
1239 struct sock_xprt *transport =
1240 container_of(xprt, struct sock_xprt, xprt);
1241 struct rpc_rqst *req;
1242
1243 dprintk("RPC: read reply XID %08x\n", ntohl(transport->tcp_xid));
1244
1245 /* Find and lock the request corresponding to this xid */
1246 spin_lock(&xprt->transport_lock);
1247 req = xprt_lookup_rqst(xprt, transport->tcp_xid);
1248 if (!req) {
1249 dprintk("RPC: XID %08x request not found!\n",
1250 ntohl(transport->tcp_xid));
1251 spin_unlock(&xprt->transport_lock);
1252 return -1;
1253 }
1254
1255 xs_tcp_read_common(xprt, desc, req);
1256
Chuck Levere136d092006-12-05 16:35:23 -05001257 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
Chuck Lever51971132006-12-05 16:35:19 -05001258 xprt_complete_rqst(req->rq_task, transport->tcp_copied);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001259
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001260 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001261 return 0;
1262}
1263
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001264#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001265/*
1266 * Obtains an rpc_rqst previously allocated and invokes the common
1267 * tcp read code to read the data. The result is placed in the callback
1268 * queue.
1269 * If we're unable to obtain the rpc_rqst we schedule the closing of the
1270 * connection and return -1.
1271 */
Trond Myklebust2ea24492014-02-10 11:18:39 -05001272static int xs_tcp_read_callback(struct rpc_xprt *xprt,
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001273 struct xdr_skb_reader *desc)
1274{
1275 struct sock_xprt *transport =
1276 container_of(xprt, struct sock_xprt, xprt);
1277 struct rpc_rqst *req;
1278
Trond Myklebust2ea24492014-02-10 11:18:39 -05001279 /* Look up and lock the request corresponding to the given XID */
1280 spin_lock(&xprt->transport_lock);
1281 req = xprt_lookup_bc_request(xprt, transport->tcp_xid);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001282 if (req == NULL) {
Trond Myklebust2ea24492014-02-10 11:18:39 -05001283 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001284 printk(KERN_WARNING "Callback slot table overflowed\n");
1285 xprt_force_disconnect(xprt);
1286 return -1;
1287 }
1288
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001289 dprintk("RPC: read callback XID %08x\n", ntohl(req->rq_xid));
1290 xs_tcp_read_common(xprt, desc, req);
1291
Trond Myklebust2ea24492014-02-10 11:18:39 -05001292 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
1293 xprt_complete_bc_request(req, transport->tcp_copied);
1294 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001295
1296 return 0;
1297}
1298
1299static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1300 struct xdr_skb_reader *desc)
1301{
1302 struct sock_xprt *transport =
1303 container_of(xprt, struct sock_xprt, xprt);
1304
1305 return (transport->tcp_flags & TCP_RPC_REPLY) ?
1306 xs_tcp_read_reply(xprt, desc) :
1307 xs_tcp_read_callback(xprt, desc);
1308}
1309#else
1310static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1311 struct xdr_skb_reader *desc)
1312{
1313 return xs_tcp_read_reply(xprt, desc);
1314}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001315#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001316
1317/*
1318 * Read data off the transport. This can be either an RPC_CALL or an
1319 * RPC_REPLY. Relay the processing to helper functions.
1320 */
1321static void xs_tcp_read_data(struct rpc_xprt *xprt,
1322 struct xdr_skb_reader *desc)
1323{
1324 struct sock_xprt *transport =
1325 container_of(xprt, struct sock_xprt, xprt);
1326
1327 if (_xs_tcp_read_data(xprt, desc) == 0)
1328 xs_tcp_check_fraghdr(transport);
1329 else {
1330 /*
1331 * The transport_lock protects the request handling.
1332 * There's no need to hold it to update the tcp_flags.
1333 */
1334 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1335 }
Chuck Levera246b012005-08-11 16:25:23 -04001336}
1337
Chuck Leverdd456472006-12-05 16:35:44 -05001338static inline void xs_tcp_read_discard(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001339{
1340 size_t len;
1341
Chuck Lever51971132006-12-05 16:35:19 -05001342 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001343 if (len > desc->count)
1344 len = desc->count;
1345 desc->count -= len;
1346 desc->offset += len;
Chuck Lever51971132006-12-05 16:35:19 -05001347 transport->tcp_offset += len;
Chuck Lever46121cf2007-01-31 12:14:08 -05001348 dprintk("RPC: discarded %Zu bytes\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001349 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001350}
1351
Chuck Lever9903cd12005-08-11 16:25:26 -04001352static 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 -04001353{
1354 struct rpc_xprt *xprt = rd_desc->arg.data;
Chuck Lever51971132006-12-05 16:35:19 -05001355 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leverdd456472006-12-05 16:35:44 -05001356 struct xdr_skb_reader desc = {
Chuck Levera246b012005-08-11 16:25:23 -04001357 .skb = skb,
1358 .offset = offset,
1359 .count = len,
Chuck Lever9903cd12005-08-11 16:25:26 -04001360 };
Chuck Levera246b012005-08-11 16:25:23 -04001361
Chuck Lever46121cf2007-01-31 12:14:08 -05001362 dprintk("RPC: xs_tcp_data_recv started\n");
Chuck Levera246b012005-08-11 16:25:23 -04001363 do {
Jeff Layton1a867a02014-10-28 14:24:14 -04001364 trace_xs_tcp_data_recv(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001365 /* Read in a new fragment marker if necessary */
1366 /* Can we ever really expect to get completely empty fragments? */
Chuck Levere136d092006-12-05 16:35:23 -05001367 if (transport->tcp_flags & TCP_RCV_COPY_FRAGHDR) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001368 xs_tcp_read_fraghdr(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001369 continue;
1370 }
1371 /* Read in the xid if necessary */
Chuck Levere136d092006-12-05 16:35:23 -05001372 if (transport->tcp_flags & TCP_RCV_COPY_XID) {
Chuck Lever51971132006-12-05 16:35:19 -05001373 xs_tcp_read_xid(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001374 continue;
1375 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001376 /* Read in the call/reply flag */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001377 if (transport->tcp_flags & TCP_RCV_READ_CALLDIR) {
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001378 xs_tcp_read_calldir(transport, &desc);
1379 continue;
1380 }
Chuck Levera246b012005-08-11 16:25:23 -04001381 /* Read in the request data */
Chuck Levere136d092006-12-05 16:35:23 -05001382 if (transport->tcp_flags & TCP_RCV_COPY_DATA) {
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001383 xs_tcp_read_data(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001384 continue;
1385 }
1386 /* Skip over any trailing bytes on short reads */
Chuck Lever51971132006-12-05 16:35:19 -05001387 xs_tcp_read_discard(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001388 } while (desc.count);
Jeff Layton1a867a02014-10-28 14:24:14 -04001389 trace_xs_tcp_data_recv(transport);
Chuck Lever46121cf2007-01-31 12:14:08 -05001390 dprintk("RPC: xs_tcp_data_recv done\n");
Chuck Levera246b012005-08-11 16:25:23 -04001391 return len - desc.count;
1392}
1393
Chuck Lever9903cd12005-08-11 16:25:26 -04001394/**
1395 * xs_tcp_data_ready - "data ready" callback for TCP sockets
1396 * @sk: socket with data to read
Chuck Lever9903cd12005-08-11 16:25:26 -04001397 *
1398 */
David S. Miller676d2362014-04-11 16:15:36 -04001399static void xs_tcp_data_ready(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001400{
1401 struct rpc_xprt *xprt;
1402 read_descriptor_t rd_desc;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001403 int read;
Jeff Layton3705ad62014-10-28 14:24:13 -04001404 unsigned long total = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001405
Chuck Lever46121cf2007-01-31 12:14:08 -05001406 dprintk("RPC: xs_tcp_data_ready...\n");
1407
Eric Dumazetf064af12010-09-22 12:43:39 +00001408 read_lock_bh(&sk->sk_callback_lock);
Jeff Layton3705ad62014-10-28 14:24:13 -04001409 if (!(xprt = xprt_from_sock(sk))) {
1410 read = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001411 goto out;
Jeff Layton3705ad62014-10-28 14:24:13 -04001412 }
Neil Brown61d0a8e2009-09-23 14:36:37 -04001413 /* Any data means we had a useful conversation, so
1414 * the we don't need to delay the next reconnect
1415 */
1416 if (xprt->reestablish_timeout)
1417 xprt->reestablish_timeout = 0;
1418
Chuck Lever9903cd12005-08-11 16:25:26 -04001419 /* We use rd_desc to pass struct xprt to xs_tcp_data_recv */
Chuck Levera246b012005-08-11 16:25:23 -04001420 rd_desc.arg.data = xprt;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001421 do {
1422 rd_desc.count = 65536;
1423 read = tcp_read_sock(sk, &rd_desc, xs_tcp_data_recv);
Jeff Layton3705ad62014-10-28 14:24:13 -04001424 if (read > 0)
1425 total += read;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001426 } while (read > 0);
Chuck Levera246b012005-08-11 16:25:23 -04001427out:
Jeff Layton3705ad62014-10-28 14:24:13 -04001428 trace_xs_tcp_data_ready(xprt, read, total);
Eric Dumazetf064af12010-09-22 12:43:39 +00001429 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001430}
1431
Chuck Lever9903cd12005-08-11 16:25:26 -04001432/**
1433 * xs_tcp_state_change - callback to handle TCP socket state changes
1434 * @sk: socket whose state has changed
1435 *
1436 */
1437static void xs_tcp_state_change(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001438{
Chuck Lever9903cd12005-08-11 16:25:26 -04001439 struct rpc_xprt *xprt;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001440 struct sock_xprt *transport;
Chuck Levera246b012005-08-11 16:25:23 -04001441
Eric Dumazetf064af12010-09-22 12:43:39 +00001442 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001443 if (!(xprt = xprt_from_sock(sk)))
1444 goto out;
Chuck Lever46121cf2007-01-31 12:14:08 -05001445 dprintk("RPC: xs_tcp_state_change client %p...\n", xprt);
Andy Chittenden669502f2010-08-10 10:19:53 -04001446 dprintk("RPC: state %x conn %d dead %d zapped %d sk_shutdown %d\n",
Chuck Lever46121cf2007-01-31 12:14:08 -05001447 sk->sk_state, xprt_connected(xprt),
1448 sock_flag(sk, SOCK_DEAD),
Andy Chittenden669502f2010-08-10 10:19:53 -04001449 sock_flag(sk, SOCK_ZAPPED),
1450 sk->sk_shutdown);
Chuck Levera246b012005-08-11 16:25:23 -04001451
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001452 transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04001453 trace_rpc_socket_state_change(xprt, sk->sk_socket);
Chuck Levera246b012005-08-11 16:25:23 -04001454 switch (sk->sk_state) {
1455 case TCP_ESTABLISHED:
Eric Dumazetf064af12010-09-22 12:43:39 +00001456 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001457 if (!xprt_test_and_set_connected(xprt)) {
Chuck Lever51971132006-12-05 16:35:19 -05001458
Chuck Levera246b012005-08-11 16:25:23 -04001459 /* Reset TCP record info */
Chuck Lever51971132006-12-05 16:35:19 -05001460 transport->tcp_offset = 0;
1461 transport->tcp_reclen = 0;
1462 transport->tcp_copied = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001463 transport->tcp_flags =
1464 TCP_RCV_COPY_FRAGHDR | TCP_RCV_COPY_XID;
Trond Myklebust8b717982013-09-26 10:18:04 -04001465 xprt->connect_cookie++;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001466 clear_bit(XPRT_SOCK_CONNECTING, &transport->sock_state);
1467 xprt_clear_connecting(xprt);
Chuck Lever51971132006-12-05 16:35:19 -05001468
Trond Myklebust2a491992009-03-11 14:38:00 -04001469 xprt_wake_pending_tasks(xprt, -EAGAIN);
Chuck Levera246b012005-08-11 16:25:23 -04001470 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001471 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001472 break;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001473 case TCP_FIN_WAIT1:
1474 /* The client initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001475 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001476 xprt->reestablish_timeout = 0;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001477 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001478 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001479 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebustef803672007-12-31 16:19:17 -05001480 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001481 smp_mb__after_atomic();
Chuck Levera246b012005-08-11 16:25:23 -04001482 break;
Trond Myklebust632e3bd2006-01-03 09:55:55 +01001483 case TCP_CLOSE_WAIT:
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001484 /* The server initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001485 xprt->connect_cookie++;
Trond Myklebustd0bea452012-10-23 11:35:47 -04001486 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebusta519fc72012-09-12 16:49:15 -04001487 xs_tcp_force_close(xprt);
Trond Myklebust663b8852008-01-01 18:42:12 -05001488 case TCP_CLOSING:
1489 /*
1490 * If the server closed down the connection, make sure that
1491 * we back off before reconnecting
1492 */
1493 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
1494 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001495 break;
1496 case TCP_LAST_ACK:
Trond Myklebust670f9452009-03-11 14:37:58 -04001497 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001498 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001499 clear_bit(XPRT_CONNECTED, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001500 smp_mb__after_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001501 break;
1502 case TCP_CLOSE:
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001503 if (test_and_clear_bit(XPRT_SOCK_CONNECTING,
1504 &transport->sock_state))
1505 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001506 xs_sock_mark_closed(xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001507 }
1508 out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001509 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001510}
1511
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001512static void xs_write_space(struct sock *sk)
1513{
1514 struct socket *sock;
1515 struct rpc_xprt *xprt;
1516
1517 if (unlikely(!(sock = sk->sk_socket)))
1518 return;
1519 clear_bit(SOCK_NOSPACE, &sock->flags);
1520
1521 if (unlikely(!(xprt = xprt_from_sock(sk))))
1522 return;
1523 if (test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags) == 0)
1524 return;
1525
1526 xprt_write_space(xprt);
1527}
1528
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001529/**
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001530 * xs_udp_write_space - callback invoked when socket buffer space
1531 * becomes available
Chuck Lever9903cd12005-08-11 16:25:26 -04001532 * @sk: socket whose state has changed
1533 *
Chuck Levera246b012005-08-11 16:25:23 -04001534 * Called when more output buffer space is available for this socket.
1535 * We try not to wake our writers until they can make "significant"
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001536 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
Chuck Levera246b012005-08-11 16:25:23 -04001537 * with a bunch of small requests.
1538 */
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001539static void xs_udp_write_space(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001540{
Eric Dumazetf064af12010-09-22 12:43:39 +00001541 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001542
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001543 /* from net/core/sock.c:sock_def_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001544 if (sock_writeable(sk))
1545 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001546
Eric Dumazetf064af12010-09-22 12:43:39 +00001547 read_unlock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001548}
Chuck Levera246b012005-08-11 16:25:23 -04001549
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001550/**
1551 * xs_tcp_write_space - callback invoked when socket buffer space
1552 * becomes available
1553 * @sk: socket whose state has changed
1554 *
1555 * Called when more output buffer space is available for this socket.
1556 * We try not to wake our writers until they can make "significant"
1557 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
1558 * with a bunch of small requests.
1559 */
1560static void xs_tcp_write_space(struct sock *sk)
1561{
Eric Dumazetf064af12010-09-22 12:43:39 +00001562 read_lock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001563
1564 /* from net/core/stream.c:sk_stream_write_space */
Eric Dumazet64dc6132013-07-22 20:26:31 -07001565 if (sk_stream_is_writeable(sk))
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001566 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001567
Eric Dumazetf064af12010-09-22 12:43:39 +00001568 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001569}
1570
Chuck Lever470056c2005-08-25 16:25:56 -07001571static void xs_udp_do_set_buffer_size(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -04001572{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001573 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1574 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -04001575
Chuck Lever7c6e0662006-12-05 16:35:30 -05001576 if (transport->rcvsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001577 sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001578 sk->sk_rcvbuf = transport->rcvsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001579 }
Chuck Lever7c6e0662006-12-05 16:35:30 -05001580 if (transport->sndsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001581 sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001582 sk->sk_sndbuf = transport->sndsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001583 sk->sk_write_space(sk);
1584 }
1585}
1586
Chuck Lever43118c22005-08-25 16:25:49 -07001587/**
Chuck Lever470056c2005-08-25 16:25:56 -07001588 * xs_udp_set_buffer_size - set send and receive limits
Chuck Lever43118c22005-08-25 16:25:49 -07001589 * @xprt: generic transport
Chuck Lever470056c2005-08-25 16:25:56 -07001590 * @sndsize: requested size of send buffer, in bytes
1591 * @rcvsize: requested size of receive buffer, in bytes
Chuck Lever43118c22005-08-25 16:25:49 -07001592 *
Chuck Lever470056c2005-08-25 16:25:56 -07001593 * Set socket send and receive buffer size limits.
Chuck Lever43118c22005-08-25 16:25:49 -07001594 */
Chuck Lever470056c2005-08-25 16:25:56 -07001595static void xs_udp_set_buffer_size(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize)
Chuck Lever43118c22005-08-25 16:25:49 -07001596{
Chuck Lever7c6e0662006-12-05 16:35:30 -05001597 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1598
1599 transport->sndsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001600 if (sndsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001601 transport->sndsize = sndsize + 1024;
1602 transport->rcvsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001603 if (rcvsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001604 transport->rcvsize = rcvsize + 1024;
Chuck Lever470056c2005-08-25 16:25:56 -07001605
1606 xs_udp_do_set_buffer_size(xprt);
Chuck Lever43118c22005-08-25 16:25:49 -07001607}
1608
Chuck Lever46c0ee82005-08-25 16:25:52 -07001609/**
1610 * xs_udp_timer - called when a retransmit timeout occurs on a UDP transport
1611 * @task: task that timed out
1612 *
1613 * Adjust the congestion window after a retransmit timeout has occurred.
1614 */
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001615static void xs_udp_timer(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Lever46c0ee82005-08-25 16:25:52 -07001616{
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001617 xprt_adjust_cwnd(xprt, task, -ETIMEDOUT);
Chuck Lever46c0ee82005-08-25 16:25:52 -07001618}
1619
Chuck Leverb85d8802006-05-25 01:40:49 -04001620static unsigned short xs_get_random_port(void)
1621{
1622 unsigned short range = xprt_max_resvport - xprt_min_resvport;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001623 unsigned short rand = (unsigned short) prandom_u32() % range;
Chuck Leverb85d8802006-05-25 01:40:49 -04001624 return rand + xprt_min_resvport;
1625}
1626
Chuck Lever92200412006-01-03 09:55:51 +01001627/**
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001628 * xs_set_reuseaddr_port - set the socket's port and address reuse options
1629 * @sock: socket
1630 *
1631 * Note that this function has to be called on all sockets that share the
1632 * same port, and it must be called before binding.
1633 */
1634static void xs_sock_set_reuseport(struct socket *sock)
1635{
Trond Myklebust402e23b2015-02-09 17:20:14 -05001636 int opt = 1;
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001637
Trond Myklebust402e23b2015-02-09 17:20:14 -05001638 kernel_setsockopt(sock, SOL_SOCKET, SO_REUSEPORT,
1639 (char *)&opt, sizeof(opt));
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001640}
1641
1642static unsigned short xs_sock_getport(struct socket *sock)
1643{
1644 struct sockaddr_storage buf;
1645 int buflen;
1646 unsigned short port = 0;
1647
1648 if (kernel_getsockname(sock, (struct sockaddr *)&buf, &buflen) < 0)
1649 goto out;
1650 switch (buf.ss_family) {
1651 case AF_INET6:
1652 port = ntohs(((struct sockaddr_in6 *)&buf)->sin6_port);
1653 break;
1654 case AF_INET:
1655 port = ntohs(((struct sockaddr_in *)&buf)->sin_port);
1656 }
1657out:
1658 return port;
1659}
1660
1661/**
Chuck Lever92200412006-01-03 09:55:51 +01001662 * xs_set_port - reset the port number in the remote endpoint address
1663 * @xprt: generic transport
1664 * @port: new port number
1665 *
1666 */
1667static void xs_set_port(struct rpc_xprt *xprt, unsigned short port)
1668{
Chuck Lever46121cf2007-01-31 12:14:08 -05001669 dprintk("RPC: setting port for xprt %p to %u\n", xprt, port);
Chuck Leverc4efcb12006-08-22 20:06:19 -04001670
Chuck Lever9dc3b092009-08-09 15:09:46 -04001671 rpc_set_port(xs_addr(xprt), port);
1672 xs_update_peer_port(xprt);
Chuck Lever92200412006-01-03 09:55:51 +01001673}
1674
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001675static void xs_set_srcport(struct sock_xprt *transport, struct socket *sock)
1676{
1677 if (transport->srcport == 0)
1678 transport->srcport = xs_sock_getport(sock);
1679}
1680
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001681static unsigned short xs_get_srcport(struct sock_xprt *transport)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001682{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001683 unsigned short port = transport->srcport;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001684
1685 if (port == 0 && transport->xprt.resvport)
1686 port = xs_get_random_port();
1687 return port;
1688}
1689
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001690static unsigned short xs_next_srcport(struct sock_xprt *transport, unsigned short port)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001691{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001692 if (transport->srcport != 0)
1693 transport->srcport = 0;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001694 if (!transport->xprt.resvport)
1695 return 0;
1696 if (port <= xprt_min_resvport || port > xprt_max_resvport)
1697 return xprt_max_resvport;
1698 return --port;
1699}
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001700static int xs_bind(struct sock_xprt *transport, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001701{
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001702 struct sockaddr_storage myaddr;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001703 int err, nloop = 0;
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001704 unsigned short port = xs_get_srcport(transport);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001705 unsigned short last;
Chuck Levera246b012005-08-11 16:25:23 -04001706
Chris Perl0f7a6222014-09-05 15:40:21 -04001707 /*
1708 * If we are asking for any ephemeral port (i.e. port == 0 &&
1709 * transport->xprt.resvport == 0), don't bind. Let the local
1710 * port selection happen implicitly when the socket is used
1711 * (for example at connect time).
1712 *
1713 * This ensures that we can continue to establish TCP
1714 * connections even when all local ephemeral ports are already
1715 * a part of some TCP connection. This makes no difference
1716 * for UDP sockets, but also doens't harm them.
1717 *
1718 * If we're asking for any reserved port (i.e. port == 0 &&
1719 * transport->xprt.resvport == 1) xs_get_srcport above will
1720 * ensure that port is non-zero and we will bind as needed.
1721 */
1722 if (port == 0)
1723 return 0;
1724
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001725 memcpy(&myaddr, &transport->srcaddr, transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001726 do {
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001727 rpc_set_port((struct sockaddr *)&myaddr, port);
1728 err = kernel_bind(sock, (struct sockaddr *)&myaddr,
1729 transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001730 if (err == 0) {
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001731 transport->srcport = port;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001732 break;
Chuck Levera246b012005-08-11 16:25:23 -04001733 }
Trond Myklebust67a391d2007-11-05 17:40:58 -05001734 last = port;
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001735 port = xs_next_srcport(transport, port);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001736 if (port > last)
1737 nloop++;
1738 } while (err == -EADDRINUSE && nloop != 2);
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001739
Chuck Lever4232e862010-10-20 11:52:51 -04001740 if (myaddr.ss_family == AF_INET)
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001741 dprintk("RPC: %s %pI4:%u: %s (%d)\n", __func__,
1742 &((struct sockaddr_in *)&myaddr)->sin_addr,
1743 port, err ? "failed" : "ok", err);
1744 else
1745 dprintk("RPC: %s %pI6:%u: %s (%d)\n", __func__,
1746 &((struct sockaddr_in6 *)&myaddr)->sin6_addr,
1747 port, err ? "failed" : "ok", err);
Chuck Levera246b012005-08-11 16:25:23 -04001748 return err;
1749}
1750
Chuck Lever176e21e2011-05-09 15:22:44 -04001751/*
1752 * We don't support autobind on AF_LOCAL sockets
1753 */
1754static void xs_local_rpcbind(struct rpc_task *task)
1755{
Trond Myklebust3dc0da22013-01-08 09:31:13 -05001756 rcu_read_lock();
1757 xprt_set_bound(rcu_dereference(task->tk_client->cl_xprt));
1758 rcu_read_unlock();
Chuck Lever176e21e2011-05-09 15:22:44 -04001759}
1760
1761static void xs_local_set_port(struct rpc_xprt *xprt, unsigned short port)
1762{
1763}
Chuck Levera246b012005-08-11 16:25:23 -04001764
Peter Zijlstraed075362006-12-06 20:35:24 -08001765#ifdef CONFIG_DEBUG_LOCK_ALLOC
1766static struct lock_class_key xs_key[2];
1767static struct lock_class_key xs_slock_key[2];
1768
Chuck Lever176e21e2011-05-09 15:22:44 -04001769static inline void xs_reclassify_socketu(struct socket *sock)
1770{
1771 struct sock *sk = sock->sk;
1772
Chuck Lever176e21e2011-05-09 15:22:44 -04001773 sock_lock_init_class_and_name(sk, "slock-AF_LOCAL-RPC",
1774 &xs_slock_key[1], "sk_lock-AF_LOCAL-RPC", &xs_key[1]);
1775}
1776
Chuck Lever8945ee52007-08-06 11:58:04 -04001777static inline void xs_reclassify_socket4(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001778{
1779 struct sock *sk = sock->sk;
Chuck Lever8945ee52007-08-06 11:58:04 -04001780
Chuck Lever8945ee52007-08-06 11:58:04 -04001781 sock_lock_init_class_and_name(sk, "slock-AF_INET-RPC",
1782 &xs_slock_key[0], "sk_lock-AF_INET-RPC", &xs_key[0]);
1783}
Peter Zijlstraed075362006-12-06 20:35:24 -08001784
Chuck Lever8945ee52007-08-06 11:58:04 -04001785static inline void xs_reclassify_socket6(struct socket *sock)
1786{
1787 struct sock *sk = sock->sk;
Peter Zijlstraed075362006-12-06 20:35:24 -08001788
Chuck Lever8945ee52007-08-06 11:58:04 -04001789 sock_lock_init_class_and_name(sk, "slock-AF_INET6-RPC",
1790 &xs_slock_key[1], "sk_lock-AF_INET6-RPC", &xs_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -08001791}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001792
1793static inline void xs_reclassify_socket(int family, struct socket *sock)
1794{
Weston Andros Adamson1b7a1812012-10-23 10:43:39 -04001795 WARN_ON_ONCE(sock_owned_by_user(sock->sk));
1796 if (sock_owned_by_user(sock->sk))
1797 return;
1798
Chuck Lever4232e862010-10-20 11:52:51 -04001799 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04001800 case AF_LOCAL:
1801 xs_reclassify_socketu(sock);
1802 break;
Chuck Lever4232e862010-10-20 11:52:51 -04001803 case AF_INET:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001804 xs_reclassify_socket4(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001805 break;
1806 case AF_INET6:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001807 xs_reclassify_socket6(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001808 break;
1809 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001810}
Peter Zijlstraed075362006-12-06 20:35:24 -08001811#else
Chuck Lever176e21e2011-05-09 15:22:44 -04001812static inline void xs_reclassify_socketu(struct socket *sock)
1813{
1814}
1815
Chuck Lever8945ee52007-08-06 11:58:04 -04001816static inline void xs_reclassify_socket4(struct socket *sock)
1817{
1818}
1819
1820static inline void xs_reclassify_socket6(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001821{
1822}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001823
1824static inline void xs_reclassify_socket(int family, struct socket *sock)
1825{
1826}
Peter Zijlstraed075362006-12-06 20:35:24 -08001827#endif
1828
NeilBrown93dc41b2013-10-31 16:14:36 +11001829static void xs_dummy_setup_socket(struct work_struct *work)
1830{
1831}
1832
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001833static struct socket *xs_create_sock(struct rpc_xprt *xprt,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001834 struct sock_xprt *transport, int family, int type,
1835 int protocol, bool reuseport)
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001836{
1837 struct socket *sock;
1838 int err;
1839
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001840 err = __sock_create(xprt->xprt_net, family, type, protocol, &sock, 1);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001841 if (err < 0) {
1842 dprintk("RPC: can't create %d transport socket (%d).\n",
1843 protocol, -err);
1844 goto out;
1845 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001846 xs_reclassify_socket(family, sock);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001847
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001848 if (reuseport)
1849 xs_sock_set_reuseport(sock);
1850
Ben Hutchings4cea2882011-02-22 21:54:34 +00001851 err = xs_bind(transport, sock);
1852 if (err) {
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001853 sock_release(sock);
1854 goto out;
1855 }
1856
1857 return sock;
1858out:
1859 return ERR_PTR(err);
1860}
1861
Chuck Lever176e21e2011-05-09 15:22:44 -04001862static int xs_local_finish_connecting(struct rpc_xprt *xprt,
1863 struct socket *sock)
1864{
1865 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
1866 xprt);
1867
1868 if (!transport->inet) {
1869 struct sock *sk = sock->sk;
1870
1871 write_lock_bh(&sk->sk_callback_lock);
1872
1873 xs_save_old_callbacks(transport, sk);
1874
1875 sk->sk_user_data = xprt;
1876 sk->sk_data_ready = xs_local_data_ready;
1877 sk->sk_write_space = xs_udp_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -05001878 sk->sk_error_report = xs_error_report;
Trond Myklebustc2126152015-08-19 21:46:15 -05001879 sk->sk_allocation = GFP_NOIO;
Chuck Lever176e21e2011-05-09 15:22:44 -04001880
1881 xprt_clear_connected(xprt);
1882
1883 /* Reset to new socket */
1884 transport->sock = sock;
1885 transport->inet = sk;
1886
1887 write_unlock_bh(&sk->sk_callback_lock);
1888 }
1889
1890 /* Tell the socket layer to start connecting... */
1891 xprt->stat.connect_count++;
1892 xprt->stat.connect_start = jiffies;
1893 return kernel_connect(sock, xs_addr(xprt), xprt->addrlen, 0);
1894}
1895
1896/**
1897 * xs_local_setup_socket - create AF_LOCAL socket, connect to a local endpoint
Chuck Lever176e21e2011-05-09 15:22:44 -04001898 * @transport: socket transport to connect
Chuck Lever176e21e2011-05-09 15:22:44 -04001899 */
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001900static int xs_local_setup_socket(struct sock_xprt *transport)
Chuck Lever176e21e2011-05-09 15:22:44 -04001901{
Chuck Lever176e21e2011-05-09 15:22:44 -04001902 struct rpc_xprt *xprt = &transport->xprt;
1903 struct socket *sock;
1904 int status = -EIO;
1905
Chuck Lever176e21e2011-05-09 15:22:44 -04001906 status = __sock_create(xprt->xprt_net, AF_LOCAL,
1907 SOCK_STREAM, 0, &sock, 1);
1908 if (status < 0) {
1909 dprintk("RPC: can't create AF_LOCAL "
1910 "transport socket (%d).\n", -status);
1911 goto out;
1912 }
1913 xs_reclassify_socketu(sock);
1914
1915 dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n",
1916 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1917
1918 status = xs_local_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04001919 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever176e21e2011-05-09 15:22:44 -04001920 switch (status) {
1921 case 0:
1922 dprintk("RPC: xprt %p connected to %s\n",
1923 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1924 xprt_set_connected(xprt);
Trond Myklebust3601c4a2014-06-30 13:42:19 -04001925 case -ENOBUFS:
Chuck Lever176e21e2011-05-09 15:22:44 -04001926 break;
1927 case -ENOENT:
1928 dprintk("RPC: xprt %p: socket %s does not exist\n",
1929 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1930 break;
Trond Myklebust4a20a982012-12-15 17:02:29 -05001931 case -ECONNREFUSED:
1932 dprintk("RPC: xprt %p: connection refused for %s\n",
1933 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
1934 break;
Chuck Lever176e21e2011-05-09 15:22:44 -04001935 default:
1936 printk(KERN_ERR "%s: unhandled error (%d) connecting to %s\n",
1937 __func__, -status,
1938 xprt->address_strings[RPC_DISPLAY_ADDR]);
1939 }
1940
1941out:
1942 xprt_clear_connecting(xprt);
1943 xprt_wake_pending_tasks(xprt, status);
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001944 return status;
1945}
1946
Linus Torvaldsb6669732013-02-28 18:02:55 -08001947static void xs_local_connect(struct rpc_xprt *xprt, struct rpc_task *task)
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001948{
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05001949 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1950 int ret;
1951
1952 if (RPC_IS_ASYNC(task)) {
1953 /*
1954 * We want the AF_LOCAL connect to be resolved in the
1955 * filesystem namespace of the process making the rpc
1956 * call. Thus we connect synchronously.
1957 *
1958 * If we want to support asynchronous AF_LOCAL calls,
1959 * we'll need to figure out how to pass a namespace to
1960 * connect.
1961 */
1962 rpc_exit(task, -ENOTCONN);
1963 return;
1964 }
1965 ret = xs_local_setup_socket(transport);
1966 if (ret && !RPC_IS_SOFTCONN(task))
1967 msleep_interruptible(15000);
Chuck Lever176e21e2011-05-09 15:22:44 -04001968}
1969
Jeff Layton3c87ef62015-06-03 16:14:25 -04001970#if IS_ENABLED(CONFIG_SUNRPC_SWAP)
Jeff Laytond6e971d2015-06-03 16:14:28 -04001971/*
1972 * Note that this should be called with XPRT_LOCKED held (or when we otherwise
1973 * know that we have exclusive access to the socket), to guard against
1974 * races with xs_reset_transport.
1975 */
Mel Gormana564b8f2012-07-31 16:45:12 -07001976static void xs_set_memalloc(struct rpc_xprt *xprt)
1977{
1978 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
1979 xprt);
1980
Jeff Laytond6e971d2015-06-03 16:14:28 -04001981 /*
1982 * If there's no sock, then we have nothing to set. The
1983 * reconnecting process will get it for us.
1984 */
1985 if (!transport->inet)
1986 return;
Jeff Layton8e228132015-06-03 16:14:26 -04001987 if (atomic_read(&xprt->swapper))
Mel Gormana564b8f2012-07-31 16:45:12 -07001988 sk_set_memalloc(transport->inet);
1989}
1990
1991/**
Jeff Laytond67fa4d2015-06-03 16:14:29 -04001992 * xs_enable_swap - Tag this transport as being used for swap.
Mel Gormana564b8f2012-07-31 16:45:12 -07001993 * @xprt: transport to tag
Mel Gormana564b8f2012-07-31 16:45:12 -07001994 *
Jeff Layton8e228132015-06-03 16:14:26 -04001995 * Take a reference to this transport on behalf of the rpc_clnt, and
1996 * optionally mark it for swapping if it wasn't already.
Mel Gormana564b8f2012-07-31 16:45:12 -07001997 */
Jeff Laytond67fa4d2015-06-03 16:14:29 -04001998static int
1999xs_enable_swap(struct rpc_xprt *xprt)
Mel Gormana564b8f2012-07-31 16:45:12 -07002000{
Jeff Laytond6e971d2015-06-03 16:14:28 -04002001 struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt);
Mel Gormana564b8f2012-07-31 16:45:12 -07002002
Jeff Laytond6e971d2015-06-03 16:14:28 -04002003 if (atomic_inc_return(&xprt->swapper) != 1)
2004 return 0;
2005 if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE))
2006 return -ERESTARTSYS;
2007 if (xs->inet)
2008 sk_set_memalloc(xs->inet);
2009 xprt_release_xprt(xprt, NULL);
Jeff Layton8e228132015-06-03 16:14:26 -04002010 return 0;
Mel Gormana564b8f2012-07-31 16:45:12 -07002011}
Jeff Layton8e228132015-06-03 16:14:26 -04002012
2013/**
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002014 * xs_disable_swap - Untag this transport as being used for swap.
Jeff Layton8e228132015-06-03 16:14:26 -04002015 * @xprt: transport to tag
2016 *
2017 * Drop a "swapper" reference to this xprt on behalf of the rpc_clnt. If the
2018 * swapper refcount goes to 0, untag the socket as a memalloc socket.
2019 */
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002020static void
2021xs_disable_swap(struct rpc_xprt *xprt)
Jeff Layton8e228132015-06-03 16:14:26 -04002022{
Jeff Laytond6e971d2015-06-03 16:14:28 -04002023 struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt);
Jeff Layton8e228132015-06-03 16:14:26 -04002024
Jeff Laytond6e971d2015-06-03 16:14:28 -04002025 if (!atomic_dec_and_test(&xprt->swapper))
2026 return;
2027 if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE))
2028 return;
2029 if (xs->inet)
2030 sk_clear_memalloc(xs->inet);
2031 xprt_release_xprt(xprt, NULL);
Mel Gormana564b8f2012-07-31 16:45:12 -07002032}
Mel Gormana564b8f2012-07-31 16:45:12 -07002033#else
2034static void xs_set_memalloc(struct rpc_xprt *xprt)
2035{
2036}
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002037
2038static int
2039xs_enable_swap(struct rpc_xprt *xprt)
2040{
2041 return -EINVAL;
2042}
2043
2044static void
2045xs_disable_swap(struct rpc_xprt *xprt)
2046{
2047}
Mel Gormana564b8f2012-07-31 16:45:12 -07002048#endif
2049
Chuck Lever16be2d22007-08-06 11:57:38 -04002050static void xs_udp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04002051{
Chuck Lever16be2d22007-08-06 11:57:38 -04002052 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -04002053
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002054 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002055 struct sock *sk = sock->sk;
2056
2057 write_lock_bh(&sk->sk_callback_lock);
2058
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002059 xs_save_old_callbacks(transport, sk);
2060
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002061 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002062 sk->sk_data_ready = xs_udp_data_ready;
2063 sk->sk_write_space = xs_udp_write_space;
Trond Myklebustc2126152015-08-19 21:46:15 -05002064 sk->sk_allocation = GFP_NOIO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002065
2066 xprt_set_connected(xprt);
2067
2068 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002069 transport->sock = sock;
2070 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002071
Mel Gormana564b8f2012-07-31 16:45:12 -07002072 xs_set_memalloc(xprt);
2073
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002074 write_unlock_bh(&sk->sk_callback_lock);
2075 }
Chuck Lever470056c2005-08-25 16:25:56 -07002076 xs_udp_do_set_buffer_size(xprt);
Chuck Lever16be2d22007-08-06 11:57:38 -04002077}
2078
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002079static void xs_udp_setup_socket(struct work_struct *work)
Chuck Levera246b012005-08-11 16:25:23 -04002080{
2081 struct sock_xprt *transport =
2082 container_of(work, struct sock_xprt, connect_worker.work);
2083 struct rpc_xprt *xprt = &transport->xprt;
2084 struct socket *sock = transport->sock;
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002085 int status = -EIO;
Chuck Levera246b012005-08-11 16:25:23 -04002086
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002087 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002088 xs_addr(xprt)->sa_family, SOCK_DGRAM,
2089 IPPROTO_UDP, false);
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002090 if (IS_ERR(sock))
Chuck Levera246b012005-08-11 16:25:23 -04002091 goto out;
Chuck Lever68e220b2007-08-06 11:57:48 -04002092
Chuck Leverc740eff2009-08-09 15:09:46 -04002093 dprintk("RPC: worker connecting xprt %p via %s to "
2094 "%s (port %s)\n", xprt,
2095 xprt->address_strings[RPC_DISPLAY_PROTO],
2096 xprt->address_strings[RPC_DISPLAY_ADDR],
2097 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever68e220b2007-08-06 11:57:48 -04002098
2099 xs_udp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002100 trace_rpc_socket_connect(xprt, sock, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002101 status = 0;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002102out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002103 xprt_unlock_connect(xprt, transport);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002104 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002105 xprt_wake_pending_tasks(xprt, status);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002106}
2107
Trond Myklebust4876cc72015-06-19 16:17:57 -04002108/**
2109 * xs_tcp_shutdown - gracefully shut down a TCP socket
2110 * @xprt: transport
2111 *
2112 * Initiates a graceful shutdown of the TCP socket by calling the
2113 * equivalent of shutdown(SHUT_RDWR);
2114 */
2115static void xs_tcp_shutdown(struct rpc_xprt *xprt)
2116{
2117 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2118 struct socket *sock = transport->sock;
2119
2120 if (sock == NULL)
2121 return;
2122 if (xprt_connected(xprt)) {
2123 kernel_sock_shutdown(sock, SHUT_RDWR);
2124 trace_rpc_socket_shutdown(xprt, sock);
2125 } else
2126 xs_reset_transport(transport);
2127}
2128
Chuck Lever16be2d22007-08-06 11:57:38 -04002129static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002130{
Chuck Lever16be2d22007-08-06 11:57:38 -04002131 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002132 int ret = -ENOTCONN;
Chuck Leveredb267a2006-08-22 20:06:18 -04002133
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002134 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002135 struct sock *sk = sock->sk;
Trond Myklebust7f260e82013-09-24 11:25:22 -04002136 unsigned int keepidle = xprt->timeout->to_initval / HZ;
2137 unsigned int keepcnt = xprt->timeout->to_retries + 1;
2138 unsigned int opt_on = 1;
Trond Myklebust775f06a2015-06-20 15:31:54 -04002139 unsigned int timeo;
Trond Myklebust7f260e82013-09-24 11:25:22 -04002140
2141 /* TCP Keepalive options */
2142 kernel_setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
2143 (char *)&opt_on, sizeof(opt_on));
2144 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPIDLE,
2145 (char *)&keepidle, sizeof(keepidle));
2146 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPINTVL,
2147 (char *)&keepidle, sizeof(keepidle));
2148 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPCNT,
2149 (char *)&keepcnt, sizeof(keepcnt));
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002150
Trond Myklebust775f06a2015-06-20 15:31:54 -04002151 /* TCP user timeout (see RFC5482) */
2152 timeo = jiffies_to_msecs(xprt->timeout->to_initval) *
2153 (xprt->timeout->to_retries + 1);
2154 kernel_setsockopt(sock, SOL_TCP, TCP_USER_TIMEOUT,
2155 (char *)&timeo, sizeof(timeo));
2156
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002157 write_lock_bh(&sk->sk_callback_lock);
2158
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002159 xs_save_old_callbacks(transport, sk);
2160
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002161 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002162 sk->sk_data_ready = xs_tcp_data_ready;
2163 sk->sk_state_change = xs_tcp_state_change;
2164 sk->sk_write_space = xs_tcp_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -05002165 sk->sk_error_report = xs_error_report;
Trond Myklebustc2126152015-08-19 21:46:15 -05002166 sk->sk_allocation = GFP_NOIO;
Chuck Lever3167e122005-08-25 16:25:55 -07002167
2168 /* socket options */
Chuck Lever3167e122005-08-25 16:25:55 -07002169 sock_reset_flag(sk, SOCK_LINGER);
Chuck Lever3167e122005-08-25 16:25:55 -07002170 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002171
2172 xprt_clear_connected(xprt);
2173
2174 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002175 transport->sock = sock;
2176 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002177
2178 write_unlock_bh(&sk->sk_callback_lock);
2179 }
2180
Trond Myklebust01d37c42009-03-11 14:09:39 -04002181 if (!xprt_bound(xprt))
Trond Myklebustfe19a962011-03-18 20:21:23 -04002182 goto out;
Trond Myklebust01d37c42009-03-11 14:09:39 -04002183
Mel Gormana564b8f2012-07-31 16:45:12 -07002184 xs_set_memalloc(xprt);
2185
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002186 /* Tell the socket layer to start connecting... */
Chuck Lever262ca072006-03-20 13:44:16 -05002187 xprt->stat.connect_count++;
2188 xprt->stat.connect_start = jiffies;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04002189 set_bit(XPRT_SOCK_CONNECTING, &transport->sock_state);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002190 ret = kernel_connect(sock, xs_addr(xprt), xprt->addrlen, O_NONBLOCK);
2191 switch (ret) {
2192 case 0:
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002193 xs_set_srcport(transport, sock);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002194 case -EINPROGRESS:
2195 /* SYN_SENT! */
Trond Myklebustfe19a962011-03-18 20:21:23 -04002196 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2197 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2198 }
2199out:
2200 return ret;
Chuck Lever16be2d22007-08-06 11:57:38 -04002201}
2202
2203/**
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002204 * xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint
Chuck Lever16be2d22007-08-06 11:57:38 -04002205 *
2206 * Invoked by a work queue tasklet.
2207 */
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002208static void xs_tcp_setup_socket(struct work_struct *work)
Chuck Lever16be2d22007-08-06 11:57:38 -04002209{
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002210 struct sock_xprt *transport =
2211 container_of(work, struct sock_xprt, connect_worker.work);
Chuck Lever16be2d22007-08-06 11:57:38 -04002212 struct socket *sock = transport->sock;
Pavel Emelyanova9f5f0f2010-10-04 16:52:25 +04002213 struct rpc_xprt *xprt = &transport->xprt;
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002214 int status = -EIO;
Chuck Lever16be2d22007-08-06 11:57:38 -04002215
Chuck Lever16be2d22007-08-06 11:57:38 -04002216 if (!sock) {
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002217 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002218 xs_addr(xprt)->sa_family, SOCK_STREAM,
2219 IPPROTO_TCP, true);
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002220 if (IS_ERR(sock)) {
2221 status = PTR_ERR(sock);
Chuck Lever16be2d22007-08-06 11:57:38 -04002222 goto out;
2223 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002224 }
2225
Chuck Leverc740eff2009-08-09 15:09:46 -04002226 dprintk("RPC: worker connecting xprt %p via %s to "
2227 "%s (port %s)\n", xprt,
2228 xprt->address_strings[RPC_DISPLAY_PROTO],
2229 xprt->address_strings[RPC_DISPLAY_ADDR],
2230 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever16be2d22007-08-06 11:57:38 -04002231
2232 status = xs_tcp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002233 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever46121cf2007-01-31 12:14:08 -05002234 dprintk("RPC: %p connect status %d connected %d sock state %d\n",
2235 xprt, -status, xprt_connected(xprt),
2236 sock->sk->sk_state);
Trond Myklebust2a491992009-03-11 14:38:00 -04002237 switch (status) {
Trond Myklebustf75e6742009-04-21 17:18:20 -04002238 default:
2239 printk("%s: connect returned unhandled error %d\n",
2240 __func__, status);
2241 case -EADDRNOTAVAIL:
2242 /* We're probably in TIME_WAIT. Get rid of existing socket,
2243 * and retry
2244 */
Trond Myklebusta519fc72012-09-12 16:49:15 -04002245 xs_tcp_force_close(xprt);
Trond Myklebust88b5ed72009-06-17 13:22:57 -07002246 break;
Trond Myklebust2a491992009-03-11 14:38:00 -04002247 case 0:
2248 case -EINPROGRESS:
2249 case -EALREADY:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002250 xprt_unlock_connect(xprt, transport);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002251 return;
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002252 case -EINVAL:
2253 /* Happens, for instance, if the user specified a link
2254 * local IPv6 address without a scope-id.
2255 */
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002256 case -ECONNREFUSED:
2257 case -ECONNRESET:
2258 case -ENETUNREACH:
Trond Myklebust3913c782015-02-08 21:44:04 -05002259 case -EADDRINUSE:
Trond Myklebust3601c4a2014-06-30 13:42:19 -04002260 case -ENOBUFS:
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002261 /* retry with existing socket, after a delay */
Trond Myklebust4efdd922015-02-08 15:34:28 -05002262 xs_tcp_force_close(xprt);
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002263 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04002264 }
Trond Myklebust2a491992009-03-11 14:38:00 -04002265 status = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -04002266out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002267 xprt_unlock_connect(xprt, transport);
Chuck Lever2226feb2005-08-11 16:25:38 -04002268 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002269 xprt_wake_pending_tasks(xprt, status);
Chuck Levera246b012005-08-11 16:25:23 -04002270}
2271
Chuck Lever68e220b2007-08-06 11:57:48 -04002272/**
Chuck Lever9903cd12005-08-11 16:25:26 -04002273 * xs_connect - connect a socket to a remote endpoint
Trond Myklebust1b092092013-01-08 09:26:49 -05002274 * @xprt: pointer to transport structure
Chuck Lever9903cd12005-08-11 16:25:26 -04002275 * @task: address of RPC task that manages state of connect request
2276 *
2277 * TCP: If the remote end dropped the connection, delay reconnecting.
Chuck Lever03bf4b72005-08-25 16:25:55 -07002278 *
2279 * UDP socket connects are synchronous, but we use a work queue anyway
2280 * to guarantee that even unprivileged user processes can set up a
2281 * socket on a privileged port.
2282 *
2283 * If a UDP socket connect fails, the delay behavior here prevents
2284 * retry floods (hard mounts).
Chuck Lever9903cd12005-08-11 16:25:26 -04002285 */
Trond Myklebust1b092092013-01-08 09:26:49 -05002286static void xs_connect(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -04002287{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002288 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002289
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002290 WARN_ON_ONCE(!xprt_lock_connect(xprt, task, transport));
2291
Trond Myklebust99b1a4c2015-08-13 15:33:51 -04002292 if (transport->sock != NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002293 dprintk("RPC: xs_connect delayed xprt %p for %lu "
2294 "seconds\n",
Chuck Lever03bf4b72005-08-25 16:25:55 -07002295 xprt, xprt->reestablish_timeout / HZ);
Trond Myklebust99b1a4c2015-08-13 15:33:51 -04002296
2297 /* Start by resetting any existing state */
2298 xs_reset_transport(transport);
2299
Trond Myklebustc1384c92007-06-14 18:00:42 -04002300 queue_delayed_work(rpciod_workqueue,
2301 &transport->connect_worker,
2302 xprt->reestablish_timeout);
Chuck Lever03bf4b72005-08-25 16:25:55 -07002303 xprt->reestablish_timeout <<= 1;
Neil Brown61d0a8e2009-09-23 14:36:37 -04002304 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2305 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002306 if (xprt->reestablish_timeout > XS_TCP_MAX_REEST_TO)
2307 xprt->reestablish_timeout = XS_TCP_MAX_REEST_TO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002308 } else {
Chuck Lever46121cf2007-01-31 12:14:08 -05002309 dprintk("RPC: xs_connect scheduled xprt %p\n", xprt);
Trond Myklebustc1384c92007-06-14 18:00:42 -04002310 queue_delayed_work(rpciod_workqueue,
2311 &transport->connect_worker, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002312 }
2313}
2314
Chuck Lever262ca072006-03-20 13:44:16 -05002315/**
Chuck Lever176e21e2011-05-09 15:22:44 -04002316 * xs_local_print_stats - display AF_LOCAL socket-specifc stats
2317 * @xprt: rpc_xprt struct containing statistics
2318 * @seq: output file
2319 *
2320 */
2321static void xs_local_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2322{
2323 long idle_time = 0;
2324
2325 if (xprt_connected(xprt))
2326 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2327
2328 seq_printf(seq, "\txprt:\tlocal %lu %lu %lu %ld %lu %lu %lu "
Andy Adamson15a45202012-02-14 16:19:18 -05002329 "%llu %llu %lu %llu %llu\n",
Chuck Lever176e21e2011-05-09 15:22:44 -04002330 xprt->stat.bind_count,
2331 xprt->stat.connect_count,
2332 xprt->stat.connect_time,
2333 idle_time,
2334 xprt->stat.sends,
2335 xprt->stat.recvs,
2336 xprt->stat.bad_xids,
2337 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002338 xprt->stat.bklog_u,
2339 xprt->stat.max_slots,
2340 xprt->stat.sending_u,
2341 xprt->stat.pending_u);
Chuck Lever176e21e2011-05-09 15:22:44 -04002342}
2343
2344/**
Chuck Lever262ca072006-03-20 13:44:16 -05002345 * xs_udp_print_stats - display UDP socket-specifc stats
2346 * @xprt: rpc_xprt struct containing statistics
2347 * @seq: output file
2348 *
2349 */
2350static void xs_udp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2351{
Chuck Leverc8475462006-12-05 16:35:26 -05002352 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2353
Andy Adamson15a45202012-02-14 16:19:18 -05002354 seq_printf(seq, "\txprt:\tudp %u %lu %lu %lu %lu %llu %llu "
2355 "%lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002356 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002357 xprt->stat.bind_count,
2358 xprt->stat.sends,
2359 xprt->stat.recvs,
2360 xprt->stat.bad_xids,
2361 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002362 xprt->stat.bklog_u,
2363 xprt->stat.max_slots,
2364 xprt->stat.sending_u,
2365 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002366}
2367
2368/**
2369 * xs_tcp_print_stats - display TCP socket-specifc stats
2370 * @xprt: rpc_xprt struct containing statistics
2371 * @seq: output file
2372 *
2373 */
2374static void xs_tcp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2375{
Chuck Leverc8475462006-12-05 16:35:26 -05002376 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262ca072006-03-20 13:44:16 -05002377 long idle_time = 0;
2378
2379 if (xprt_connected(xprt))
2380 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2381
Andy Adamson15a45202012-02-14 16:19:18 -05002382 seq_printf(seq, "\txprt:\ttcp %u %lu %lu %lu %ld %lu %lu %lu "
2383 "%llu %llu %lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002384 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002385 xprt->stat.bind_count,
2386 xprt->stat.connect_count,
2387 xprt->stat.connect_time,
2388 idle_time,
2389 xprt->stat.sends,
2390 xprt->stat.recvs,
2391 xprt->stat.bad_xids,
2392 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002393 xprt->stat.bklog_u,
2394 xprt->stat.max_slots,
2395 xprt->stat.sending_u,
2396 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002397}
2398
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002399/*
2400 * Allocate a bunch of pages for a scratch buffer for the rpc code. The reason
2401 * we allocate pages instead doing a kmalloc like rpc_malloc is because we want
2402 * to use the server side send routines.
2403 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002404static void *bc_malloc(struct rpc_task *task, size_t size)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002405{
2406 struct page *page;
2407 struct rpc_buffer *buf;
2408
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002409 WARN_ON_ONCE(size > PAGE_SIZE - sizeof(struct rpc_buffer));
2410 if (size > PAGE_SIZE - sizeof(struct rpc_buffer))
2411 return NULL;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002412
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002413 page = alloc_page(GFP_KERNEL);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002414 if (!page)
2415 return NULL;
2416
2417 buf = page_address(page);
2418 buf->len = PAGE_SIZE;
2419
2420 return buf->data;
2421}
2422
2423/*
2424 * Free the space allocated in the bc_alloc routine
2425 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002426static void bc_free(void *buffer)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002427{
2428 struct rpc_buffer *buf;
2429
2430 if (!buffer)
2431 return;
2432
2433 buf = container_of(buffer, struct rpc_buffer, data);
2434 free_page((unsigned long)buf);
2435}
2436
2437/*
2438 * Use the svc_sock to send the callback. Must be called with svsk->sk_mutex
2439 * held. Borrows heavily from svc_tcp_sendto and xs_tcp_send_request.
2440 */
2441static int bc_sendto(struct rpc_rqst *req)
2442{
2443 int len;
2444 struct xdr_buf *xbufp = &req->rq_snd_buf;
2445 struct rpc_xprt *xprt = req->rq_xprt;
2446 struct sock_xprt *transport =
2447 container_of(xprt, struct sock_xprt, xprt);
2448 struct socket *sock = transport->sock;
2449 unsigned long headoff;
2450 unsigned long tailoff;
2451
Chuck Lever61677ee2011-05-09 15:22:34 -04002452 xs_encode_stream_record_marker(xbufp);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002453
2454 tailoff = (unsigned long)xbufp->tail[0].iov_base & ~PAGE_MASK;
2455 headoff = (unsigned long)xbufp->head[0].iov_base & ~PAGE_MASK;
2456 len = svc_send_common(sock, xbufp,
2457 virt_to_page(xbufp->head[0].iov_base), headoff,
2458 xbufp->tail[0].iov_base, tailoff);
2459
2460 if (len != xbufp->len) {
2461 printk(KERN_NOTICE "Error sending entire callback!\n");
2462 len = -EAGAIN;
2463 }
2464
2465 return len;
2466}
2467
2468/*
2469 * The send routine. Borrows from svc_send
2470 */
2471static int bc_send_request(struct rpc_task *task)
2472{
2473 struct rpc_rqst *req = task->tk_rqstp;
2474 struct svc_xprt *xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002475 u32 len;
2476
2477 dprintk("sending request with xid: %08x\n", ntohl(req->rq_xid));
2478 /*
2479 * Get the server socket associated with this callback xprt
2480 */
2481 xprt = req->rq_xprt->bc_xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002482
2483 /*
2484 * Grab the mutex to serialize data as the connection is shared
2485 * with the fore channel
2486 */
2487 if (!mutex_trylock(&xprt->xpt_mutex)) {
2488 rpc_sleep_on(&xprt->xpt_bc_pending, task, NULL);
2489 if (!mutex_trylock(&xprt->xpt_mutex))
2490 return -EAGAIN;
2491 rpc_wake_up_queued_task(&xprt->xpt_bc_pending, task);
2492 }
2493 if (test_bit(XPT_DEAD, &xprt->xpt_flags))
2494 len = -ENOTCONN;
2495 else
2496 len = bc_sendto(req);
2497 mutex_unlock(&xprt->xpt_mutex);
2498
2499 if (len > 0)
2500 len = 0;
2501
2502 return len;
2503}
2504
2505/*
2506 * The close routine. Since this is client initiated, we do nothing
2507 */
2508
2509static void bc_close(struct rpc_xprt *xprt)
2510{
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002511}
2512
2513/*
2514 * The xprt destroy routine. Again, because this connection is client
2515 * initiated, we do nothing
2516 */
2517
2518static void bc_destroy(struct rpc_xprt *xprt)
2519{
Kinglong Mee47f72ef2014-03-24 11:58:16 +08002520 dprintk("RPC: bc_destroy xprt %p\n", xprt);
2521
2522 xs_xprt_free(xprt);
2523 module_put(THIS_MODULE);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002524}
2525
Chuck Lever176e21e2011-05-09 15:22:44 -04002526static struct rpc_xprt_ops xs_local_ops = {
2527 .reserve_xprt = xprt_reserve_xprt,
2528 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002529 .alloc_slot = xprt_alloc_slot,
Chuck Lever176e21e2011-05-09 15:22:44 -04002530 .rpcbind = xs_local_rpcbind,
2531 .set_port = xs_local_set_port,
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002532 .connect = xs_local_connect,
Chuck Lever176e21e2011-05-09 15:22:44 -04002533 .buf_alloc = rpc_malloc,
2534 .buf_free = rpc_free,
2535 .send_request = xs_local_send_request,
2536 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2537 .close = xs_close,
Trond Myklebusta1311d82013-10-31 09:18:49 -04002538 .destroy = xs_destroy,
Chuck Lever176e21e2011-05-09 15:22:44 -04002539 .print_stats = xs_local_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002540 .enable_swap = xs_enable_swap,
2541 .disable_swap = xs_disable_swap,
Chuck Lever176e21e2011-05-09 15:22:44 -04002542};
2543
Chuck Lever262965f2005-08-11 16:25:56 -04002544static struct rpc_xprt_ops xs_udp_ops = {
Chuck Lever43118c22005-08-25 16:25:49 -07002545 .set_buffer_size = xs_udp_set_buffer_size,
Chuck Lever12a80462005-08-25 16:25:51 -07002546 .reserve_xprt = xprt_reserve_xprt_cong,
Chuck Lever49e9a892005-08-25 16:25:51 -07002547 .release_xprt = xprt_release_xprt_cong,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002548 .alloc_slot = xprt_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002549 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002550 .set_port = xs_set_port,
Chuck Lever9903cd12005-08-11 16:25:26 -04002551 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002552 .buf_alloc = rpc_malloc,
2553 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002554 .send_request = xs_udp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002555 .set_retrans_timeout = xprt_set_retrans_timeout_rtt,
Chuck Lever46c0ee82005-08-25 16:25:52 -07002556 .timer = xs_udp_timer,
Chuck Levera58dd392005-08-25 16:25:53 -07002557 .release_request = xprt_release_rqst_cong,
Chuck Lever262965f2005-08-11 16:25:56 -04002558 .close = xs_close,
2559 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002560 .print_stats = xs_udp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002561 .enable_swap = xs_enable_swap,
2562 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002563 .inject_disconnect = xs_inject_disconnect,
Chuck Lever262965f2005-08-11 16:25:56 -04002564};
2565
2566static struct rpc_xprt_ops xs_tcp_ops = {
Chuck Lever12a80462005-08-25 16:25:51 -07002567 .reserve_xprt = xprt_reserve_xprt,
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002568 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002569 .alloc_slot = xprt_lock_and_alloc_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002570 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002571 .set_port = xs_set_port,
Trond Myklebust0b9e7942010-04-16 16:41:57 -04002572 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002573 .buf_alloc = rpc_malloc,
2574 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002575 .send_request = xs_tcp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002576 .set_retrans_timeout = xprt_set_retrans_timeout_def,
Trond Myklebustc627d312015-02-10 11:06:04 -05002577 .close = xs_tcp_shutdown,
Chuck Lever9903cd12005-08-11 16:25:26 -04002578 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002579 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002580 .enable_swap = xs_enable_swap,
2581 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002582 .inject_disconnect = xs_inject_disconnect,
Chuck Levera246b012005-08-11 16:25:23 -04002583};
2584
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002585/*
2586 * The rpc_xprt_ops for the server backchannel
2587 */
2588
2589static struct rpc_xprt_ops bc_tcp_ops = {
2590 .reserve_xprt = xprt_reserve_xprt,
2591 .release_xprt = xprt_release_xprt,
Bryan Schumaker84e28a32012-09-24 13:39:01 -04002592 .alloc_slot = xprt_alloc_slot,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002593 .buf_alloc = bc_malloc,
2594 .buf_free = bc_free,
2595 .send_request = bc_send_request,
2596 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2597 .close = bc_close,
2598 .destroy = bc_destroy,
2599 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002600 .enable_swap = xs_enable_swap,
2601 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002602 .inject_disconnect = xs_inject_disconnect,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002603};
2604
Chuck Lever92476852010-10-20 11:53:01 -04002605static int xs_init_anyaddr(const int family, struct sockaddr *sap)
2606{
2607 static const struct sockaddr_in sin = {
2608 .sin_family = AF_INET,
2609 .sin_addr.s_addr = htonl(INADDR_ANY),
2610 };
2611 static const struct sockaddr_in6 sin6 = {
2612 .sin6_family = AF_INET6,
2613 .sin6_addr = IN6ADDR_ANY_INIT,
2614 };
2615
2616 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04002617 case AF_LOCAL:
2618 break;
Chuck Lever92476852010-10-20 11:53:01 -04002619 case AF_INET:
2620 memcpy(sap, &sin, sizeof(sin));
2621 break;
2622 case AF_INET6:
2623 memcpy(sap, &sin6, sizeof(sin6));
2624 break;
2625 default:
2626 dprintk("RPC: %s: Bad address family\n", __func__);
2627 return -EAFNOSUPPORT;
2628 }
2629 return 0;
2630}
2631
\"Talpey, Thomas\3c341b0b2007-09-10 13:47:07 -04002632static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args,
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002633 unsigned int slot_table_size,
2634 unsigned int max_slot_table_size)
Chuck Leverc8541ec2006-10-17 14:44:27 -04002635{
2636 struct rpc_xprt *xprt;
Chuck Leverffc2e512006-12-05 16:35:11 -05002637 struct sock_xprt *new;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002638
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002639 if (args->addrlen > sizeof(xprt->addr)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002640 dprintk("RPC: xs_setup_xprt: address too large\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002641 return ERR_PTR(-EBADF);
2642 }
2643
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002644 xprt = xprt_alloc(args->net, sizeof(*new), slot_table_size,
2645 max_slot_table_size);
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002646 if (xprt == NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002647 dprintk("RPC: xs_setup_xprt: couldn't allocate "
2648 "rpc_xprt\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002649 return ERR_PTR(-ENOMEM);
2650 }
2651
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002652 new = container_of(xprt, struct sock_xprt, xprt);
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002653 memcpy(&xprt->addr, args->dstaddr, args->addrlen);
2654 xprt->addrlen = args->addrlen;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02002655 if (args->srcaddr)
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002656 memcpy(&new->srcaddr, args->srcaddr, args->addrlen);
Chuck Lever92476852010-10-20 11:53:01 -04002657 else {
2658 int err;
2659 err = xs_init_anyaddr(args->dstaddr->sa_family,
2660 (struct sockaddr *)&new->srcaddr);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002661 if (err != 0) {
2662 xprt_free(xprt);
Chuck Lever92476852010-10-20 11:53:01 -04002663 return ERR_PTR(err);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002664 }
Chuck Lever92476852010-10-20 11:53:01 -04002665 }
Chuck Leverc8541ec2006-10-17 14:44:27 -04002666
2667 return xprt;
2668}
2669
Chuck Lever176e21e2011-05-09 15:22:44 -04002670static const struct rpc_timeout xs_local_default_timeout = {
2671 .to_initval = 10 * HZ,
2672 .to_maxval = 10 * HZ,
2673 .to_retries = 2,
2674};
2675
2676/**
2677 * xs_setup_local - Set up transport to use an AF_LOCAL socket
2678 * @args: rpc transport creation arguments
2679 *
2680 * AF_LOCAL is a "tpi_cots_ord" transport, just like TCP
2681 */
2682static struct rpc_xprt *xs_setup_local(struct xprt_create *args)
2683{
2684 struct sockaddr_un *sun = (struct sockaddr_un *)args->dstaddr;
2685 struct sock_xprt *transport;
2686 struct rpc_xprt *xprt;
2687 struct rpc_xprt *ret;
2688
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002689 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2690 xprt_max_tcp_slot_table_entries);
Chuck Lever176e21e2011-05-09 15:22:44 -04002691 if (IS_ERR(xprt))
2692 return xprt;
2693 transport = container_of(xprt, struct sock_xprt, xprt);
2694
2695 xprt->prot = 0;
2696 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2697 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2698
2699 xprt->bind_timeout = XS_BIND_TO;
2700 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2701 xprt->idle_timeout = XS_IDLE_DISC_TO;
2702
2703 xprt->ops = &xs_local_ops;
2704 xprt->timeout = &xs_local_default_timeout;
2705
NeilBrown93dc41b2013-10-31 16:14:36 +11002706 INIT_DELAYED_WORK(&transport->connect_worker,
2707 xs_dummy_setup_socket);
2708
Chuck Lever176e21e2011-05-09 15:22:44 -04002709 switch (sun->sun_family) {
2710 case AF_LOCAL:
2711 if (sun->sun_path[0] != '/') {
2712 dprintk("RPC: bad AF_LOCAL address: %s\n",
2713 sun->sun_path);
2714 ret = ERR_PTR(-EINVAL);
2715 goto out_err;
2716 }
2717 xprt_set_bound(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002718 xs_format_peer_addresses(xprt, "local", RPCBIND_NETID_LOCAL);
J. Bruce Fields7073ea82013-02-21 10:14:22 -05002719 ret = ERR_PTR(xs_local_setup_socket(transport));
2720 if (ret)
2721 goto out_err;
Chuck Lever176e21e2011-05-09 15:22:44 -04002722 break;
2723 default:
2724 ret = ERR_PTR(-EAFNOSUPPORT);
2725 goto out_err;
2726 }
2727
2728 dprintk("RPC: set up xprt to %s via AF_LOCAL\n",
2729 xprt->address_strings[RPC_DISPLAY_ADDR]);
2730
2731 if (try_module_get(THIS_MODULE))
2732 return xprt;
2733 ret = ERR_PTR(-EINVAL);
2734out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002735 xs_xprt_free(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002736 return ret;
2737}
2738
Trond Myklebust2881ae72007-12-20 16:03:54 -05002739static const struct rpc_timeout xs_udp_default_timeout = {
2740 .to_initval = 5 * HZ,
2741 .to_maxval = 30 * HZ,
2742 .to_increment = 5 * HZ,
2743 .to_retries = 5,
2744};
2745
Chuck Lever9903cd12005-08-11 16:25:26 -04002746/**
2747 * xs_setup_udp - Set up transport to use a UDP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002748 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002749 *
2750 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002751static struct rpc_xprt *xs_setup_udp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002752{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002753 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002754 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002755 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002756 struct rpc_xprt *ret;
Chuck Levera246b012005-08-11 16:25:23 -04002757
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002758 xprt = xs_setup_xprt(args, xprt_udp_slot_table_entries,
2759 xprt_udp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002760 if (IS_ERR(xprt))
2761 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002762 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002763
Chuck Leverec739ef2006-08-22 20:06:15 -04002764 xprt->prot = IPPROTO_UDP;
Chuck Lever808012f2005-08-25 16:25:49 -07002765 xprt->tsh_size = 0;
Chuck Levera246b012005-08-11 16:25:23 -04002766 /* XXX: header size can vary due to auth type, IPv6, etc. */
2767 xprt->max_payload = (1U << 16) - (MAX_HEADER << 3);
2768
Chuck Lever03bf4b72005-08-25 16:25:55 -07002769 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002770 xprt->reestablish_timeout = XS_UDP_REEST_TO;
2771 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002772
Chuck Lever262965f2005-08-11 16:25:56 -04002773 xprt->ops = &xs_udp_ops;
Chuck Levera246b012005-08-11 16:25:23 -04002774
Trond Myklebustba7392b2007-12-20 16:03:55 -05002775 xprt->timeout = &xs_udp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002776
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002777 switch (addr->sa_family) {
2778 case AF_INET:
2779 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2780 xprt_set_bound(xprt);
2781
2782 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002783 xs_udp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002784 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002785 break;
2786 case AF_INET6:
2787 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2788 xprt_set_bound(xprt);
2789
2790 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002791 xs_udp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002792 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002793 break;
2794 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002795 ret = ERR_PTR(-EAFNOSUPPORT);
2796 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002797 }
2798
Chuck Leverc740eff2009-08-09 15:09:46 -04002799 if (xprt_bound(xprt))
2800 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2801 xprt->address_strings[RPC_DISPLAY_ADDR],
2802 xprt->address_strings[RPC_DISPLAY_PORT],
2803 xprt->address_strings[RPC_DISPLAY_PROTO]);
2804 else
2805 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2806 xprt->address_strings[RPC_DISPLAY_ADDR],
2807 xprt->address_strings[RPC_DISPLAY_PROTO]);
Chuck Leveredb267a2006-08-22 20:06:18 -04002808
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002809 if (try_module_get(THIS_MODULE))
2810 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002811 ret = ERR_PTR(-EINVAL);
2812out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002813 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002814 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002815}
2816
Trond Myklebust2881ae72007-12-20 16:03:54 -05002817static const struct rpc_timeout xs_tcp_default_timeout = {
2818 .to_initval = 60 * HZ,
2819 .to_maxval = 60 * HZ,
2820 .to_retries = 2,
2821};
2822
Chuck Lever9903cd12005-08-11 16:25:26 -04002823/**
2824 * xs_setup_tcp - Set up transport to use a TCP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002825 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002826 *
2827 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002828static struct rpc_xprt *xs_setup_tcp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002829{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002830 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002831 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002832 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002833 struct rpc_xprt *ret;
Trond Myklebustb7993ce2013-04-14 11:42:00 -04002834 unsigned int max_slot_table_size = xprt_max_tcp_slot_table_entries;
2835
2836 if (args->flags & XPRT_CREATE_INFINITE_SLOTS)
2837 max_slot_table_size = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Levera246b012005-08-11 16:25:23 -04002838
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002839 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
Trond Myklebustb7993ce2013-04-14 11:42:00 -04002840 max_slot_table_size);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002841 if (IS_ERR(xprt))
2842 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002843 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002844
Chuck Leverec739ef2006-08-22 20:06:15 -04002845 xprt->prot = IPPROTO_TCP;
Chuck Lever808012f2005-08-25 16:25:49 -07002846 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
Chuck Lever808012f2005-08-25 16:25:49 -07002847 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
Chuck Levera246b012005-08-11 16:25:23 -04002848
Chuck Lever03bf4b72005-08-25 16:25:55 -07002849 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002850 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2851 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002852
Chuck Lever262965f2005-08-11 16:25:56 -04002853 xprt->ops = &xs_tcp_ops;
Trond Myklebustba7392b2007-12-20 16:03:55 -05002854 xprt->timeout = &xs_tcp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002855
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002856 switch (addr->sa_family) {
2857 case AF_INET:
2858 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2859 xprt_set_bound(xprt);
2860
Chuck Lever9dc3b092009-08-09 15:09:46 -04002861 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002862 xs_tcp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002863 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002864 break;
2865 case AF_INET6:
2866 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2867 xprt_set_bound(xprt);
2868
Chuck Lever9dc3b092009-08-09 15:09:46 -04002869 INIT_DELAYED_WORK(&transport->connect_worker,
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002870 xs_tcp_setup_socket);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002871 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002872 break;
2873 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002874 ret = ERR_PTR(-EAFNOSUPPORT);
2875 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002876 }
2877
Chuck Leverc740eff2009-08-09 15:09:46 -04002878 if (xprt_bound(xprt))
2879 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2880 xprt->address_strings[RPC_DISPLAY_ADDR],
2881 xprt->address_strings[RPC_DISPLAY_PORT],
2882 xprt->address_strings[RPC_DISPLAY_PROTO]);
2883 else
2884 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2885 xprt->address_strings[RPC_DISPLAY_ADDR],
2886 xprt->address_strings[RPC_DISPLAY_PROTO]);
2887
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002888 if (try_module_get(THIS_MODULE))
2889 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002890 ret = ERR_PTR(-EINVAL);
2891out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002892 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002893 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04002894}
Chuck Lever282b32e2006-12-05 16:35:51 -05002895
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002896/**
2897 * xs_setup_bc_tcp - Set up transport to use a TCP backchannel socket
2898 * @args: rpc transport creation arguments
2899 *
2900 */
2901static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
2902{
2903 struct sockaddr *addr = args->dstaddr;
2904 struct rpc_xprt *xprt;
2905 struct sock_xprt *transport;
2906 struct svc_sock *bc_sock;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002907 struct rpc_xprt *ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002908
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002909 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2910 xprt_tcp_slot_table_entries);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002911 if (IS_ERR(xprt))
2912 return xprt;
2913 transport = container_of(xprt, struct sock_xprt, xprt);
2914
2915 xprt->prot = IPPROTO_TCP;
2916 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2917 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2918 xprt->timeout = &xs_tcp_default_timeout;
2919
2920 /* backchannel */
2921 xprt_set_bound(xprt);
2922 xprt->bind_timeout = 0;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002923 xprt->reestablish_timeout = 0;
2924 xprt->idle_timeout = 0;
2925
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002926 xprt->ops = &bc_tcp_ops;
2927
2928 switch (addr->sa_family) {
2929 case AF_INET:
2930 xs_format_peer_addresses(xprt, "tcp",
2931 RPCBIND_NETID_TCP);
2932 break;
2933 case AF_INET6:
2934 xs_format_peer_addresses(xprt, "tcp",
2935 RPCBIND_NETID_TCP6);
2936 break;
2937 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002938 ret = ERR_PTR(-EAFNOSUPPORT);
2939 goto out_err;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002940 }
2941
Pavel Emelyanov50fa0d42010-10-05 20:49:35 +04002942 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2943 xprt->address_strings[RPC_DISPLAY_ADDR],
2944 xprt->address_strings[RPC_DISPLAY_PORT],
2945 xprt->address_strings[RPC_DISPLAY_PROTO]);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002946
2947 /*
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05002948 * Once we've associated a backchannel xprt with a connection,
Weng Meiling28303ca2013-11-30 17:56:44 +08002949 * we want to keep it around as long as the connection lasts,
2950 * in case we need to start using it for a backchannel again;
2951 * this reference won't be dropped until bc_xprt is destroyed.
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05002952 */
2953 xprt_get(xprt);
2954 args->bc_xprt->xpt_bc_xprt = xprt;
2955 xprt->bc_xprt = args->bc_xprt;
2956 bc_sock = container_of(args->bc_xprt, struct svc_sock, sk_xprt);
2957 transport->sock = bc_sock->sk_sock;
2958 transport->inet = bc_sock->sk_sk;
2959
2960 /*
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002961 * Since we don't want connections for the backchannel, we set
2962 * the xprt status to connected
2963 */
2964 xprt_set_connected(xprt);
2965
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002966 if (try_module_get(THIS_MODULE))
2967 return xprt;
Kinglong Mee642aab52014-03-24 12:00:28 +08002968
2969 args->bc_xprt->xpt_bc_xprt = NULL;
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05002970 xprt_put(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002971 ret = ERR_PTR(-EINVAL);
2972out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002973 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04002974 return ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002975}
2976
Chuck Lever176e21e2011-05-09 15:22:44 -04002977static struct xprt_class xs_local_transport = {
2978 .list = LIST_HEAD_INIT(xs_local_transport.list),
2979 .name = "named UNIX socket",
2980 .owner = THIS_MODULE,
2981 .ident = XPRT_TRANSPORT_LOCAL,
2982 .setup = xs_setup_local,
2983};
2984
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002985static struct xprt_class xs_udp_transport = {
2986 .list = LIST_HEAD_INIT(xs_udp_transport.list),
2987 .name = "udp",
2988 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002989 .ident = XPRT_TRANSPORT_UDP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002990 .setup = xs_setup_udp,
2991};
2992
2993static struct xprt_class xs_tcp_transport = {
2994 .list = LIST_HEAD_INIT(xs_tcp_transport.list),
2995 .name = "tcp",
2996 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002997 .ident = XPRT_TRANSPORT_TCP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002998 .setup = xs_setup_tcp,
2999};
3000
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003001static struct xprt_class xs_bc_tcp_transport = {
3002 .list = LIST_HEAD_INIT(xs_bc_tcp_transport.list),
3003 .name = "tcp NFSv4.1 backchannel",
3004 .owner = THIS_MODULE,
3005 .ident = XPRT_TRANSPORT_BC_TCP,
3006 .setup = xs_setup_bc_tcp,
3007};
3008
Chuck Lever282b32e2006-12-05 16:35:51 -05003009/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003010 * init_socket_xprt - set up xprtsock's sysctls, register with RPC client
Chuck Lever282b32e2006-12-05 16:35:51 -05003011 *
3012 */
3013int init_socket_xprt(void)
3014{
Jeff Laytonf895b252014-11-17 16:58:04 -05003015#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Eric W. Biederman2b1bec52007-02-14 00:33:24 -08003016 if (!sunrpc_table_header)
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08003017 sunrpc_table_header = register_sysctl_table(sunrpc_table);
Chuck Leverfbf76682006-12-05 16:35:54 -05003018#endif
3019
Chuck Lever176e21e2011-05-09 15:22:44 -04003020 xprt_register_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003021 xprt_register_transport(&xs_udp_transport);
3022 xprt_register_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003023 xprt_register_transport(&xs_bc_tcp_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003024
Chuck Lever282b32e2006-12-05 16:35:51 -05003025 return 0;
3026}
3027
3028/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003029 * cleanup_socket_xprt - remove xprtsock's sysctls, unregister
Chuck Lever282b32e2006-12-05 16:35:51 -05003030 *
3031 */
3032void cleanup_socket_xprt(void)
3033{
Jeff Laytonf895b252014-11-17 16:58:04 -05003034#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverfbf76682006-12-05 16:35:54 -05003035 if (sunrpc_table_header) {
3036 unregister_sysctl_table(sunrpc_table_header);
3037 sunrpc_table_header = NULL;
3038 }
3039#endif
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003040
Chuck Lever176e21e2011-05-09 15:22:44 -04003041 xprt_unregister_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003042 xprt_unregister_transport(&xs_udp_transport);
3043 xprt_unregister_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003044 xprt_unregister_transport(&xs_bc_tcp_transport);
Chuck Lever282b32e2006-12-05 16:35:51 -05003045}
Trond Myklebustcbf11072009-08-09 15:06:19 -04003046
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003047static int param_set_uint_minmax(const char *val,
3048 const struct kernel_param *kp,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003049 unsigned int min, unsigned int max)
3050{
Daniel Walter00cfaa92014-06-21 13:06:38 +01003051 unsigned int num;
Trond Myklebustcbf11072009-08-09 15:06:19 -04003052 int ret;
3053
3054 if (!val)
3055 return -EINVAL;
Daniel Walter00cfaa92014-06-21 13:06:38 +01003056 ret = kstrtouint(val, 0, &num);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003057 if (ret == -EINVAL || num < min || num > max)
3058 return -EINVAL;
3059 *((unsigned int *)kp->arg) = num;
3060 return 0;
3061}
3062
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003063static int param_set_portnr(const char *val, const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003064{
3065 return param_set_uint_minmax(val, kp,
3066 RPC_MIN_RESVPORT,
3067 RPC_MAX_RESVPORT);
3068}
3069
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303070static const struct kernel_param_ops param_ops_portnr = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003071 .set = param_set_portnr,
3072 .get = param_get_uint,
3073};
3074
Trond Myklebustcbf11072009-08-09 15:06:19 -04003075#define param_check_portnr(name, p) \
3076 __param_check(name, p, unsigned int);
3077
3078module_param_named(min_resvport, xprt_min_resvport, portnr, 0644);
3079module_param_named(max_resvport, xprt_max_resvport, portnr, 0644);
3080
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003081static int param_set_slot_table_size(const char *val,
3082 const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003083{
3084 return param_set_uint_minmax(val, kp,
3085 RPC_MIN_SLOT_TABLE,
3086 RPC_MAX_SLOT_TABLE);
3087}
3088
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303089static const struct kernel_param_ops param_ops_slot_table_size = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003090 .set = param_set_slot_table_size,
3091 .get = param_get_uint,
3092};
3093
Trond Myklebustcbf11072009-08-09 15:06:19 -04003094#define param_check_slot_table_size(name, p) \
3095 __param_check(name, p, unsigned int);
3096
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003097static int param_set_max_slot_table_size(const char *val,
3098 const struct kernel_param *kp)
3099{
3100 return param_set_uint_minmax(val, kp,
3101 RPC_MIN_SLOT_TABLE,
3102 RPC_MAX_SLOT_TABLE_LIMIT);
3103}
3104
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303105static const struct kernel_param_ops param_ops_max_slot_table_size = {
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003106 .set = param_set_max_slot_table_size,
3107 .get = param_get_uint,
3108};
3109
3110#define param_check_max_slot_table_size(name, p) \
3111 __param_check(name, p, unsigned int);
3112
Trond Myklebustcbf11072009-08-09 15:06:19 -04003113module_param_named(tcp_slot_table_entries, xprt_tcp_slot_table_entries,
3114 slot_table_size, 0644);
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003115module_param_named(tcp_max_slot_table_entries, xprt_max_tcp_slot_table_entries,
3116 max_slot_table_size, 0644);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003117module_param_named(udp_slot_table_entries, xprt_udp_slot_table_entries,
3118 slot_table_size, 0644);
3119