blob: 629cc45e1e6cf34b8fcc33c539bf90e8ff053293 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Chuck Levera246b012005-08-11 16:25:23 -04002/*
3 * linux/net/sunrpc/xprtsock.c
4 *
5 * Client-side transport implementation for sockets.
6 *
Alan Cox113aa832008-10-13 19:01:08 -07007 * TCP callback races fixes (C) 1998 Red Hat
8 * TCP send fixes (C) 1998 Red Hat
Chuck Levera246b012005-08-11 16:25:23 -04009 * TCP NFS related read + write fixes
10 * (C) 1999 Dave Airlie, University of Limerick, Ireland <airlied@linux.ie>
11 *
12 * Rewrite of larges part of the code in order to stabilize TCP stuff.
13 * Fix behaviour when socket buffer is full.
14 * (C) 1999 Trond Myklebust <trond.myklebust@fys.uio.no>
Chuck Lever55aa4f52005-08-11 16:25:47 -040015 *
16 * IP socket transport implementation, (C) 2005 Chuck Lever <cel@netapp.com>
Chuck Lever8f9d5b12007-08-06 11:57:53 -040017 *
18 * IPv6 support contributed by Gilles Quillard, Bull Open Source, 2005.
19 * <gilles.quillard@bull.net>
Chuck Levera246b012005-08-11 16:25:23 -040020 */
21
22#include <linux/types.h>
Chuck Lever176e21e2011-05-09 15:22:44 -040023#include <linux/string.h>
Chuck Levera246b012005-08-11 16:25:23 -040024#include <linux/slab.h>
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -040025#include <linux/module.h>
Chuck Levera246b012005-08-11 16:25:23 -040026#include <linux/capability.h>
Chuck Levera246b012005-08-11 16:25:23 -040027#include <linux/pagemap.h>
28#include <linux/errno.h>
29#include <linux/socket.h>
30#include <linux/in.h>
31#include <linux/net.h>
32#include <linux/mm.h>
Chuck Lever176e21e2011-05-09 15:22:44 -040033#include <linux/un.h>
Chuck Levera246b012005-08-11 16:25:23 -040034#include <linux/udp.h>
35#include <linux/tcp.h>
36#include <linux/sunrpc/clnt.h>
Jeff Layton59766872013-02-04 12:50:00 -050037#include <linux/sunrpc/addr.h>
Chuck Lever02107142006-01-03 09:55:49 +010038#include <linux/sunrpc/sched.h>
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030039#include <linux/sunrpc/svcsock.h>
\"Talpey, Thomas\49c36fc2007-09-10 13:47:31 -040040#include <linux/sunrpc/xprtsock.h>
Chuck Levera246b012005-08-11 16:25:23 -040041#include <linux/file.h>
Trond Myklebust9e00abc2011-07-13 19:20:49 -040042#ifdef CONFIG_SUNRPC_BACKCHANNEL
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -040043#include <linux/sunrpc/bc_xprt.h>
44#endif
Chuck Levera246b012005-08-11 16:25:23 -040045
46#include <net/sock.h>
47#include <net/checksum.h>
48#include <net/udp.h>
49#include <net/tcp.h>
50
Trond Myklebust40b5ea02013-09-04 12:16:23 -040051#include <trace/events/sunrpc.h>
52
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030053#include "sunrpc.h"
Chuck Lever176e21e2011-05-09 15:22:44 -040054
Trond Myklebust3d188802018-01-14 15:47:06 -050055#define RPC_TCP_READ_CHUNK_SZ (3*512*1024)
56
Chuck Lever176e21e2011-05-09 15:22:44 -040057static void xs_close(struct rpc_xprt *xprt);
Trond Myklebust7196dbb2017-02-08 11:17:54 -050058static void xs_tcp_set_socket_timeouts(struct rpc_xprt *xprt,
59 struct socket *sock);
Chuck Lever176e21e2011-05-09 15:22:44 -040060
Chuck Lever9903cd12005-08-11 16:25:26 -040061/*
Chuck Leverc556b752005-11-01 12:24:48 -050062 * xprtsock tunables
63 */
Trond Myklebust09acfea2012-03-11 15:22:54 -040064static unsigned int xprt_udp_slot_table_entries = RPC_DEF_SLOT_TABLE;
65static unsigned int xprt_tcp_slot_table_entries = RPC_MIN_SLOT_TABLE;
66static unsigned int xprt_max_tcp_slot_table_entries = RPC_MAX_SLOT_TABLE;
Chuck Leverc556b752005-11-01 12:24:48 -050067
Trond Myklebust09acfea2012-03-11 15:22:54 -040068static unsigned int xprt_min_resvport = RPC_DEF_MIN_RESVPORT;
69static unsigned int xprt_max_resvport = RPC_DEF_MAX_RESVPORT;
Chuck Leverc556b752005-11-01 12:24:48 -050070
Trond Myklebust54c09872015-02-09 11:01:02 -050071#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
72
Trond Myklebust7d1e8252009-03-11 14:38:03 -040073#define XS_TCP_LINGER_TO (15U * HZ)
Trond Myklebust25fe6142009-03-11 14:38:03 -040074static unsigned int xs_tcp_fin_timeout __read_mostly = XS_TCP_LINGER_TO;
Trond Myklebust7d1e8252009-03-11 14:38:03 -040075
Chuck Leverc556b752005-11-01 12:24:48 -050076/*
Chuck Leverfbf76682006-12-05 16:35:54 -050077 * We can register our own files under /proc/sys/sunrpc by
78 * calling register_sysctl_table() again. The files in that
79 * directory become the union of all files registered there.
80 *
81 * We simply need to make sure that we don't collide with
82 * someone else's file names!
83 */
84
Chuck Leverfbf76682006-12-05 16:35:54 -050085static unsigned int min_slot_table_size = RPC_MIN_SLOT_TABLE;
86static unsigned int max_slot_table_size = RPC_MAX_SLOT_TABLE;
Trond Myklebustd9ba1312011-07-17 18:11:30 -040087static unsigned int max_tcp_slot_table_limit = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Leverfbf76682006-12-05 16:35:54 -050088static unsigned int xprt_min_resvport_limit = RPC_MIN_RESVPORT;
89static unsigned int xprt_max_resvport_limit = RPC_MAX_RESVPORT;
90
91static struct ctl_table_header *sunrpc_table_header;
92
93/*
94 * FIXME: changing the UDP slot table size should also resize the UDP
95 * socket buffers for existing UDP transports
96 */
Joe Perchesfe2c6332013-06-11 23:04:25 -070097static struct ctl_table xs_tunables_table[] = {
Chuck Leverfbf76682006-12-05 16:35:54 -050098 {
Chuck Leverfbf76682006-12-05 16:35:54 -050099 .procname = "udp_slot_table_entries",
100 .data = &xprt_udp_slot_table_entries,
101 .maxlen = sizeof(unsigned int),
102 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800103 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500104 .extra1 = &min_slot_table_size,
105 .extra2 = &max_slot_table_size
106 },
107 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500108 .procname = "tcp_slot_table_entries",
109 .data = &xprt_tcp_slot_table_entries,
110 .maxlen = sizeof(unsigned int),
111 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800112 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500113 .extra1 = &min_slot_table_size,
114 .extra2 = &max_slot_table_size
115 },
116 {
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400117 .procname = "tcp_max_slot_table_entries",
118 .data = &xprt_max_tcp_slot_table_entries,
119 .maxlen = sizeof(unsigned int),
120 .mode = 0644,
121 .proc_handler = proc_dointvec_minmax,
122 .extra1 = &min_slot_table_size,
123 .extra2 = &max_tcp_slot_table_limit
124 },
125 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500126 .procname = "min_resvport",
127 .data = &xprt_min_resvport,
128 .maxlen = sizeof(unsigned int),
129 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800130 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500131 .extra1 = &xprt_min_resvport_limit,
Frank Sorensone08ea3a2016-07-08 16:35:24 -0500132 .extra2 = &xprt_max_resvport
Chuck Leverfbf76682006-12-05 16:35:54 -0500133 },
134 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500135 .procname = "max_resvport",
136 .data = &xprt_max_resvport,
137 .maxlen = sizeof(unsigned int),
138 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800139 .proc_handler = proc_dointvec_minmax,
Frank Sorensone08ea3a2016-07-08 16:35:24 -0500140 .extra1 = &xprt_min_resvport,
Chuck Leverfbf76682006-12-05 16:35:54 -0500141 .extra2 = &xprt_max_resvport_limit
142 },
143 {
Trond Myklebust25fe6142009-03-11 14:38:03 -0400144 .procname = "tcp_fin_timeout",
145 .data = &xs_tcp_fin_timeout,
146 .maxlen = sizeof(xs_tcp_fin_timeout),
147 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800148 .proc_handler = proc_dointvec_jiffies,
Trond Myklebust25fe6142009-03-11 14:38:03 -0400149 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800150 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500151};
152
Joe Perchesfe2c6332013-06-11 23:04:25 -0700153static struct ctl_table sunrpc_table[] = {
Chuck Leverfbf76682006-12-05 16:35:54 -0500154 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500155 .procname = "sunrpc",
156 .mode = 0555,
157 .child = xs_tunables_table
158 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800159 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500160};
161
162#endif
163
164/*
Chuck Lever03bf4b72005-08-25 16:25:55 -0700165 * Wait duration for a reply from the RPC portmapper.
166 */
167#define XS_BIND_TO (60U * HZ)
168
169/*
170 * Delay if a UDP socket connect error occurs. This is most likely some
171 * kind of resource problem on the local host.
172 */
173#define XS_UDP_REEST_TO (2U * HZ)
174
175/*
176 * The reestablish timeout allows clients to delay for a bit before attempting
177 * to reconnect to a server that just dropped our connection.
178 *
179 * We implement an exponential backoff when trying to reestablish a TCP
180 * transport connection with the server. Some servers like to drop a TCP
181 * connection when they are overworked, so we start with a short timeout and
182 * increase over time if the server is down or not responding.
183 */
184#define XS_TCP_INIT_REEST_TO (3U * HZ)
Chuck Lever03bf4b72005-08-25 16:25:55 -0700185
186/*
187 * TCP idle timeout; client drops the transport socket if it is idle
188 * for this long. Note that we also timeout UDP sockets to prevent
189 * holding port numbers when there is no RPC traffic.
190 */
191#define XS_IDLE_DISC_TO (5U * 60 * HZ)
192
Jeff Laytonf895b252014-11-17 16:58:04 -0500193#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Levera246b012005-08-11 16:25:23 -0400194# undef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400195# define RPCDBG_FACILITY RPCDBG_TRANS
Chuck Levera246b012005-08-11 16:25:23 -0400196#endif
197
Chuck Levera246b012005-08-11 16:25:23 -0400198#ifdef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400199static void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400200{
Chuck Lever9903cd12005-08-11 16:25:26 -0400201 u8 *buf = (u8 *) packet;
202 int j;
Chuck Levera246b012005-08-11 16:25:23 -0400203
Chuck Lever46121cf2007-01-31 12:14:08 -0500204 dprintk("RPC: %s\n", msg);
Chuck Levera246b012005-08-11 16:25:23 -0400205 for (j = 0; j < count && j < 128; j += 4) {
206 if (!(j & 31)) {
207 if (j)
208 dprintk("\n");
209 dprintk("0x%04x ", j);
210 }
211 dprintk("%02x%02x%02x%02x ",
212 buf[j], buf[j+1], buf[j+2], buf[j+3]);
213 }
214 dprintk("\n");
215}
216#else
Chuck Lever9903cd12005-08-11 16:25:26 -0400217static inline void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400218{
219 /* NOP */
220}
221#endif
222
Trond Myklebust21180712013-12-31 13:22:59 -0500223static inline struct rpc_xprt *xprt_from_sock(struct sock *sk)
224{
225 return (struct rpc_xprt *) sk->sk_user_data;
226}
227
Chuck Lever95392c52007-08-06 11:57:58 -0400228static inline struct sockaddr *xs_addr(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400229{
Chuck Lever95392c52007-08-06 11:57:58 -0400230 return (struct sockaddr *) &xprt->addr;
231}
232
Chuck Lever176e21e2011-05-09 15:22:44 -0400233static inline struct sockaddr_un *xs_addr_un(struct rpc_xprt *xprt)
234{
235 return (struct sockaddr_un *) &xprt->addr;
236}
237
Chuck Lever95392c52007-08-06 11:57:58 -0400238static inline struct sockaddr_in *xs_addr_in(struct rpc_xprt *xprt)
239{
240 return (struct sockaddr_in *) &xprt->addr;
241}
242
243static inline struct sockaddr_in6 *xs_addr_in6(struct rpc_xprt *xprt)
244{
245 return (struct sockaddr_in6 *) &xprt->addr;
246}
247
Chuck Leverc877b842009-08-09 15:09:36 -0400248static void xs_format_common_peer_addresses(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400249{
Chuck Leverc877b842009-08-09 15:09:36 -0400250 struct sockaddr *sap = xs_addr(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400251 struct sockaddr_in6 *sin6;
252 struct sockaddr_in *sin;
Chuck Lever176e21e2011-05-09 15:22:44 -0400253 struct sockaddr_un *sun;
Chuck Leverc877b842009-08-09 15:09:36 -0400254 char buf[128];
Chuck Leveredb267a2006-08-22 20:06:18 -0400255
Chuck Lever9dc3b092009-08-09 15:09:46 -0400256 switch (sap->sa_family) {
Chuck Lever176e21e2011-05-09 15:22:44 -0400257 case AF_LOCAL:
258 sun = xs_addr_un(xprt);
259 strlcpy(buf, sun->sun_path, sizeof(buf));
260 xprt->address_strings[RPC_DISPLAY_ADDR] =
261 kstrdup(buf, GFP_KERNEL);
262 break;
Chuck Lever9dc3b092009-08-09 15:09:46 -0400263 case AF_INET:
Chuck Lever176e21e2011-05-09 15:22:44 -0400264 (void)rpc_ntop(sap, buf, sizeof(buf));
265 xprt->address_strings[RPC_DISPLAY_ADDR] =
266 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400267 sin = xs_addr_in(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800268 snprintf(buf, sizeof(buf), "%08x", ntohl(sin->sin_addr.s_addr));
Chuck Lever9dc3b092009-08-09 15:09:46 -0400269 break;
270 case AF_INET6:
Chuck Lever176e21e2011-05-09 15:22:44 -0400271 (void)rpc_ntop(sap, buf, sizeof(buf));
272 xprt->address_strings[RPC_DISPLAY_ADDR] =
273 kstrdup(buf, GFP_KERNEL);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400274 sin6 = xs_addr_in6(xprt);
Joe Perchesfc0b57912010-03-08 12:15:28 -0800275 snprintf(buf, sizeof(buf), "%pi6", &sin6->sin6_addr);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400276 break;
277 default:
278 BUG();
Chuck Leveredb267a2006-08-22 20:06:18 -0400279 }
Chuck Lever176e21e2011-05-09 15:22:44 -0400280
Chuck Lever9dc3b092009-08-09 15:09:46 -0400281 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
Chuck Leveredb267a2006-08-22 20:06:18 -0400282}
283
Chuck Lever9dc3b092009-08-09 15:09:46 -0400284static void xs_format_common_peer_ports(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400285{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400286 struct sockaddr *sap = xs_addr(xprt);
287 char buf[128];
Chuck Lever4b6473f2007-08-06 11:57:12 -0400288
Joe Perches81160e662010-03-08 12:15:59 -0800289 snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400290 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400291
Joe Perches81160e662010-03-08 12:15:59 -0800292 snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400293 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
294}
Chuck Lever4b6473f2007-08-06 11:57:12 -0400295
Chuck Lever9dc3b092009-08-09 15:09:46 -0400296static void xs_format_peer_addresses(struct rpc_xprt *xprt,
297 const char *protocol,
298 const char *netid)
Chuck Leveredb267a2006-08-22 20:06:18 -0400299{
Chuck Leverb454ae92008-01-07 18:34:48 -0500300 xprt->address_strings[RPC_DISPLAY_PROTO] = protocol;
Chuck Leverb454ae92008-01-07 18:34:48 -0500301 xprt->address_strings[RPC_DISPLAY_NETID] = netid;
Chuck Leverc877b842009-08-09 15:09:36 -0400302 xs_format_common_peer_addresses(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400303 xs_format_common_peer_ports(xprt);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400304}
305
Chuck Lever9dc3b092009-08-09 15:09:46 -0400306static void xs_update_peer_port(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400307{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400308 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
309 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400310
Chuck Lever9dc3b092009-08-09 15:09:46 -0400311 xs_format_common_peer_ports(xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -0400312}
313
314static void xs_free_peer_addresses(struct rpc_xprt *xprt)
315{
Chuck Lever33e01dc2008-01-14 12:32:20 -0500316 unsigned int i;
317
318 for (i = 0; i < RPC_DISPLAY_MAX; i++)
319 switch (i) {
320 case RPC_DISPLAY_PROTO:
321 case RPC_DISPLAY_NETID:
322 continue;
323 default:
324 kfree(xprt->address_strings[i]);
325 }
Chuck Leveredb267a2006-08-22 20:06:18 -0400326}
327
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400328#define XS_SENDMSG_FLAGS (MSG_DONTWAIT | MSG_NOSIGNAL)
329
Trond Myklebust24c56842006-10-17 15:06:22 -0400330static 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 -0400331{
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400332 struct msghdr msg = {
333 .msg_name = addr,
334 .msg_namelen = addrlen,
Trond Myklebust24c56842006-10-17 15:06:22 -0400335 .msg_flags = XS_SENDMSG_FLAGS | (more ? MSG_MORE : 0),
336 };
337 struct kvec iov = {
338 .iov_base = vec->iov_base + base,
339 .iov_len = vec->iov_len - base,
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400340 };
341
Trond Myklebust24c56842006-10-17 15:06:22 -0400342 if (iov.iov_len != 0)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400343 return kernel_sendmsg(sock, &msg, &iov, 1, iov.iov_len);
344 return kernel_sendmsg(sock, &msg, NULL, 0, 0);
345}
346
Jason Baronf279cd02014-09-24 18:08:00 +0000347static 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 -0400348{
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500349 ssize_t (*do_sendpage)(struct socket *sock, struct page *page,
350 int offset, size_t size, int flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400351 struct page **ppage;
352 unsigned int remainder;
Jason Baronf279cd02014-09-24 18:08:00 +0000353 int err;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400354
Trond Myklebust24c56842006-10-17 15:06:22 -0400355 remainder = xdr->page_len - base;
356 base += xdr->page_base;
357 ppage = xdr->pages + (base >> PAGE_SHIFT);
358 base &= ~PAGE_MASK;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500359 do_sendpage = sock->ops->sendpage;
360 if (!zerocopy)
361 do_sendpage = sock_no_sendpage;
Trond Myklebust24c56842006-10-17 15:06:22 -0400362 for(;;) {
363 unsigned int len = min_t(unsigned int, PAGE_SIZE - base, remainder);
364 int flags = XS_SENDMSG_FLAGS;
365
366 remainder -= len;
Trond Myklebust31303d62015-10-06 15:59:20 -0400367 if (more)
Trond Myklebust24c56842006-10-17 15:06:22 -0400368 flags |= MSG_MORE;
Trond Myklebust31303d62015-10-06 15:59:20 -0400369 if (remainder != 0)
370 flags |= MSG_SENDPAGE_NOTLAST | MSG_MORE;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500371 err = do_sendpage(sock, *ppage, base, len, flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400372 if (remainder == 0 || err != len)
373 break;
Jason Baronf279cd02014-09-24 18:08:00 +0000374 *sent_p += err;
Trond Myklebust24c56842006-10-17 15:06:22 -0400375 ppage++;
376 base = 0;
377 }
Jason Baronf279cd02014-09-24 18:08:00 +0000378 if (err > 0) {
379 *sent_p += err;
380 err = 0;
381 }
382 return err;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400383}
384
Chuck Lever9903cd12005-08-11 16:25:26 -0400385/**
386 * xs_sendpages - write pages directly to a socket
387 * @sock: socket to send on
388 * @addr: UDP only -- address of destination
389 * @addrlen: UDP only -- length of destination address
390 * @xdr: buffer containing this request
391 * @base: starting position in the buffer
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500392 * @zerocopy: true if it is safe to use sendpage()
Jason Baronf279cd02014-09-24 18:08:00 +0000393 * @sent_p: return the total number of bytes successfully queued for sending
Chuck Lever9903cd12005-08-11 16:25:26 -0400394 *
Chuck Levera246b012005-08-11 16:25:23 -0400395 */
Jason Baronf279cd02014-09-24 18:08:00 +0000396static 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 -0400397{
Trond Myklebust24c56842006-10-17 15:06:22 -0400398 unsigned int remainder = xdr->len - base;
Jason Baronf279cd02014-09-24 18:08:00 +0000399 int err = 0;
400 int sent = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400401
Chuck Lever262965f2005-08-11 16:25:56 -0400402 if (unlikely(!sock))
Trond Myklebustfba91af2009-03-11 14:06:41 -0400403 return -ENOTSOCK;
Chuck Lever262965f2005-08-11 16:25:56 -0400404
Trond Myklebust24c56842006-10-17 15:06:22 -0400405 if (base != 0) {
406 addr = NULL;
407 addrlen = 0;
408 }
Chuck Lever262965f2005-08-11 16:25:56 -0400409
Trond Myklebust24c56842006-10-17 15:06:22 -0400410 if (base < xdr->head[0].iov_len || addr != NULL) {
411 unsigned int len = xdr->head[0].iov_len - base;
412 remainder -= len;
413 err = xs_send_kvec(sock, addr, addrlen, &xdr->head[0], base, remainder != 0);
414 if (remainder == 0 || err != len)
Chuck Levera246b012005-08-11 16:25:23 -0400415 goto out;
Jason Baronf279cd02014-09-24 18:08:00 +0000416 *sent_p += err;
Chuck Levera246b012005-08-11 16:25:23 -0400417 base = 0;
418 } else
Trond Myklebust24c56842006-10-17 15:06:22 -0400419 base -= xdr->head[0].iov_len;
Chuck Levera246b012005-08-11 16:25:23 -0400420
Trond Myklebust24c56842006-10-17 15:06:22 -0400421 if (base < xdr->page_len) {
422 unsigned int len = xdr->page_len - base;
423 remainder -= len;
Jason Baronf279cd02014-09-24 18:08:00 +0000424 err = xs_send_pagedata(sock, xdr, base, remainder != 0, zerocopy, &sent);
425 *sent_p += sent;
426 if (remainder == 0 || sent != len)
Chuck Levera246b012005-08-11 16:25:23 -0400427 goto out;
428 base = 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400429 } else
430 base -= xdr->page_len;
431
432 if (base >= xdr->tail[0].iov_len)
Jason Baronf279cd02014-09-24 18:08:00 +0000433 return 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400434 err = xs_send_kvec(sock, NULL, 0, &xdr->tail[0], base, 0);
Chuck Levera246b012005-08-11 16:25:23 -0400435out:
Jason Baronf279cd02014-09-24 18:08:00 +0000436 if (err > 0) {
437 *sent_p += err;
438 err = 0;
439 }
440 return err;
Chuck Levera246b012005-08-11 16:25:23 -0400441}
442
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400443static void xs_nospace_callback(struct rpc_task *task)
444{
445 struct sock_xprt *transport = container_of(task->tk_rqstp->rq_xprt, struct sock_xprt, xprt);
446
447 transport->inet->sk_write_pending--;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400448}
449
Chuck Lever9903cd12005-08-11 16:25:26 -0400450/**
Chuck Lever262965f2005-08-11 16:25:56 -0400451 * xs_nospace - place task on wait queue if transmit was incomplete
452 * @task: task to put to sleep
Chuck Lever9903cd12005-08-11 16:25:26 -0400453 *
Chuck Levera246b012005-08-11 16:25:23 -0400454 */
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400455static int xs_nospace(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400456{
Chuck Lever262965f2005-08-11 16:25:56 -0400457 struct rpc_rqst *req = task->tk_rqstp;
458 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500459 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500460 struct sock *sk = transport->inet;
Trond Myklebust24ca9a82011-11-22 14:44:28 +0200461 int ret = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -0400462
Chuck Lever46121cf2007-01-31 12:14:08 -0500463 dprintk("RPC: %5u xmit incomplete (%u left of %u)\n",
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400464 task->tk_pid, req->rq_slen - transport->xmit.offset,
Chuck Lever262965f2005-08-11 16:25:56 -0400465 req->rq_slen);
466
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400467 /* Protect against races with write_space */
468 spin_lock_bh(&xprt->transport_lock);
Chuck Lever262965f2005-08-11 16:25:56 -0400469
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400470 /* Don't race with disconnect */
471 if (xprt_connected(xprt)) {
Trond Myklebust13331a52016-01-06 08:57:06 -0500472 /* wait for more buffer space */
473 sk->sk_write_pending++;
474 xprt_wait_for_buffer_space(task, xs_nospace_callback);
475 } else
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400476 ret = -ENOTCONN;
Chuck Lever262965f2005-08-11 16:25:56 -0400477
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400478 spin_unlock_bh(&xprt->transport_lock);
Trond Myklebust06ea0bf2014-02-11 09:15:54 -0500479
480 /* Race breaker in case memory is freed before above code is called */
David Vrabeld48f9ce2016-09-19 13:58:30 +0100481 if (ret == -EAGAIN) {
482 struct socket_wq *wq;
483
484 rcu_read_lock();
485 wq = rcu_dereference(sk->sk_wq);
486 set_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags);
487 rcu_read_unlock();
488
489 sk->sk_write_space(sk);
490 }
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400491 return ret;
Chuck Lever262965f2005-08-11 16:25:56 -0400492}
493
Chuck Lever61677ee2011-05-09 15:22:34 -0400494/*
495 * Construct a stream transport record marker in @buf.
496 */
497static inline void xs_encode_stream_record_marker(struct xdr_buf *buf)
498{
499 u32 reclen = buf->len - sizeof(rpc_fraghdr);
500 rpc_fraghdr *base = buf->head[0].iov_base;
501 *base = cpu_to_be32(RPC_LAST_STREAM_FRAGMENT | reclen);
502}
503
Chuck Lever262965f2005-08-11 16:25:56 -0400504/**
Chuck Lever176e21e2011-05-09 15:22:44 -0400505 * xs_local_send_request - write an RPC request to an AF_LOCAL socket
506 * @task: RPC task that manages the state of an RPC request
507 *
508 * Return values:
509 * 0: The request has been sent
510 * EAGAIN: The socket was blocked, please call again later to
511 * complete the request
512 * ENOTCONN: Caller needs to invoke connect logic then call again
513 * other: Some other error occured, the request was not sent
514 */
515static int xs_local_send_request(struct rpc_task *task)
516{
517 struct rpc_rqst *req = task->tk_rqstp;
518 struct rpc_xprt *xprt = req->rq_xprt;
519 struct sock_xprt *transport =
520 container_of(xprt, struct sock_xprt, xprt);
521 struct xdr_buf *xdr = &req->rq_snd_buf;
522 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000523 int sent = 0;
Chuck Lever176e21e2011-05-09 15:22:44 -0400524
525 xs_encode_stream_record_marker(&req->rq_snd_buf);
526
527 xs_pktdump("packet data:",
528 req->rq_svec->iov_base, req->rq_svec->iov_len);
529
Chuck Lever78215752018-03-05 15:13:07 -0500530 req->rq_xtime = ktime_get();
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400531 status = xs_sendpages(transport->sock, NULL, 0, xdr,
532 transport->xmit.offset,
Jason Baronf279cd02014-09-24 18:08:00 +0000533 true, &sent);
Chuck Lever176e21e2011-05-09 15:22:44 -0400534 dprintk("RPC: %s(%u) = %d\n",
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400535 __func__, xdr->len - transport->xmit.offset, status);
NeilBrown743c69e2015-07-27 10:55:35 +1000536
537 if (status == -EAGAIN && sock_writeable(transport->inet))
538 status = -ENOBUFS;
539
Jason Baronf279cd02014-09-24 18:08:00 +0000540 if (likely(sent > 0) || status == 0) {
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400541 transport->xmit.offset += sent;
542 req->rq_bytes_sent = transport->xmit.offset;
Chuck Lever176e21e2011-05-09 15:22:44 -0400543 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400544 req->rq_xmit_bytes_sent += transport->xmit.offset;
Chuck Lever176e21e2011-05-09 15:22:44 -0400545 req->rq_bytes_sent = 0;
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400546 transport->xmit.offset = 0;
Chuck Lever176e21e2011-05-09 15:22:44 -0400547 return 0;
548 }
549 status = -EAGAIN;
550 }
551
552 switch (status) {
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400553 case -ENOBUFS:
Trond Myklebustb5872f02015-07-03 09:32:23 -0400554 break;
Chuck Lever176e21e2011-05-09 15:22:44 -0400555 case -EAGAIN:
556 status = xs_nospace(task);
557 break;
558 default:
559 dprintk("RPC: sendmsg returned unrecognized error %d\n",
560 -status);
Gustavo A. R. Silvae9d47632017-10-20 11:48:30 -0500561 /* fall through */
Chuck Lever176e21e2011-05-09 15:22:44 -0400562 case -EPIPE:
563 xs_close(xprt);
564 status = -ENOTCONN;
565 }
566
567 return status;
568}
569
570/**
Chuck Lever262965f2005-08-11 16:25:56 -0400571 * xs_udp_send_request - write an RPC request to a UDP socket
572 * @task: address of RPC task that manages the state of an RPC request
573 *
574 * Return values:
575 * 0: The request has been sent
576 * EAGAIN: The socket was blocked, please call again later to
577 * complete the request
578 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300579 * other: Some other error occurred, the request was not sent
Chuck Lever262965f2005-08-11 16:25:56 -0400580 */
581static int xs_udp_send_request(struct rpc_task *task)
582{
583 struct rpc_rqst *req = task->tk_rqstp;
584 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500585 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400586 struct xdr_buf *xdr = &req->rq_snd_buf;
Jason Baronf279cd02014-09-24 18:08:00 +0000587 int sent = 0;
Chuck Lever262965f2005-08-11 16:25:56 -0400588 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400589
Chuck Lever9903cd12005-08-11 16:25:26 -0400590 xs_pktdump("packet data:",
Chuck Levera246b012005-08-11 16:25:23 -0400591 req->rq_svec->iov_base,
592 req->rq_svec->iov_len);
593
Trond Myklebust01d37c42009-03-11 14:09:39 -0400594 if (!xprt_bound(xprt))
595 return -ENOTCONN;
Chuck Lever78215752018-03-05 15:13:07 -0500596 req->rq_xtime = ktime_get();
Jason Baronf279cd02014-09-24 18:08:00 +0000597 status = xs_sendpages(transport->sock, xs_addr(xprt), xprt->addrlen,
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400598 xdr, 0, true, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400599
Chuck Lever46121cf2007-01-31 12:14:08 -0500600 dprintk("RPC: xs_udp_send_request(%u) = %d\n",
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400601 xdr->len, status);
Chuck Levera246b012005-08-11 16:25:23 -0400602
Jason Baron3dedbb52014-09-24 18:08:04 +0000603 /* firewall is blocking us, don't return -EAGAIN or we end up looping */
604 if (status == -EPERM)
605 goto process_status;
606
NeilBrown743c69e2015-07-27 10:55:35 +1000607 if (status == -EAGAIN && sock_writeable(transport->inet))
608 status = -ENOBUFS;
609
Jason Baronf279cd02014-09-24 18:08:00 +0000610 if (sent > 0 || status == 0) {
611 req->rq_xmit_bytes_sent += sent;
612 if (sent >= req->rq_slen)
Trond Myklebust21997002007-10-01 11:43:37 -0400613 return 0;
614 /* Still some bytes left; set up for a retry later. */
Chuck Lever262965f2005-08-11 16:25:56 -0400615 status = -EAGAIN;
Trond Myklebust21997002007-10-01 11:43:37 -0400616 }
Chuck Levera246b012005-08-11 16:25:23 -0400617
Jason Baron3dedbb52014-09-24 18:08:04 +0000618process_status:
Chuck Lever262965f2005-08-11 16:25:56 -0400619 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400620 case -ENOTSOCK:
621 status = -ENOTCONN;
622 /* Should we call xs_close() here? */
623 break;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400624 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400625 status = xs_nospace(task);
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400626 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400627 case -ENETUNREACH:
Trond Myklebust3601c4a2014-06-30 13:42:19 -0400628 case -ENOBUFS:
Chuck Lever262965f2005-08-11 16:25:56 -0400629 case -EPIPE:
Chuck Levera246b012005-08-11 16:25:23 -0400630 case -ECONNREFUSED:
Jason Baron3dedbb52014-09-24 18:08:04 +0000631 case -EPERM:
Chuck Levera246b012005-08-11 16:25:23 -0400632 /* When the server has died, an ICMP port unreachable message
Chuck Lever9903cd12005-08-11 16:25:26 -0400633 * prompts ECONNREFUSED. */
Trond Myklebust13331a52016-01-06 08:57:06 -0500634 break;
635 default:
636 dprintk("RPC: sendmsg returned unrecognized error %d\n",
637 -status);
Chuck Levera246b012005-08-11 16:25:23 -0400638 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800639
Chuck Lever262965f2005-08-11 16:25:56 -0400640 return status;
Chuck Levera246b012005-08-11 16:25:23 -0400641}
642
Trond Myklebuste06799f2007-11-05 15:44:12 -0500643/**
Chuck Lever262965f2005-08-11 16:25:56 -0400644 * xs_tcp_send_request - write an RPC request to a TCP socket
Chuck Lever9903cd12005-08-11 16:25:26 -0400645 * @task: address of RPC task that manages the state of an RPC request
646 *
647 * Return values:
Chuck Lever262965f2005-08-11 16:25:56 -0400648 * 0: The request has been sent
649 * EAGAIN: The socket was blocked, please call again later to
650 * complete the request
651 * ENOTCONN: Caller needs to invoke connect logic then call again
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300652 * other: Some other error occurred, the request was not sent
Chuck Lever9903cd12005-08-11 16:25:26 -0400653 *
654 * XXX: In the case of soft timeouts, should we eventually give up
Chuck Lever262965f2005-08-11 16:25:56 -0400655 * if sendmsg is not able to make progress?
Chuck Lever9903cd12005-08-11 16:25:26 -0400656 */
Chuck Lever262965f2005-08-11 16:25:56 -0400657static int xs_tcp_send_request(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400658{
659 struct rpc_rqst *req = task->tk_rqstp;
660 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500661 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400662 struct xdr_buf *xdr = &req->rq_snd_buf;
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500663 bool zerocopy = true;
Trond Myklebust9ffadfb2016-05-29 00:42:03 -0400664 bool vm_wait = false;
Chuck Leverb595bb12007-08-06 11:56:42 -0400665 int status;
Jason Baronf279cd02014-09-24 18:08:00 +0000666 int sent;
Chuck Levera246b012005-08-11 16:25:23 -0400667
Chuck Lever61677ee2011-05-09 15:22:34 -0400668 xs_encode_stream_record_marker(&req->rq_snd_buf);
Chuck Levera246b012005-08-11 16:25:23 -0400669
Chuck Lever262965f2005-08-11 16:25:56 -0400670 xs_pktdump("packet data:",
671 req->rq_svec->iov_base,
672 req->rq_svec->iov_len);
Trond Myklebusta6b31d12013-11-08 16:03:50 -0500673 /* Don't use zero copy if this is a resend. If the RPC call
674 * completes while the socket holds a reference to the pages,
675 * then we may end up resending corrupted data.
676 */
677 if (task->tk_flags & RPC_TASK_SENT)
678 zerocopy = false;
Chuck Levera246b012005-08-11 16:25:23 -0400679
Trond Myklebust7196dbb2017-02-08 11:17:54 -0500680 if (test_bit(XPRT_SOCK_UPD_TIMEOUT, &transport->sock_state))
681 xs_tcp_set_socket_timeouts(xprt, transport->sock);
682
Chuck Levera246b012005-08-11 16:25:23 -0400683 /* Continue transmitting the packet/record. We must be careful
684 * to cope with writespace callbacks arriving _after_ we have
Chuck Lever262965f2005-08-11 16:25:56 -0400685 * called sendmsg(). */
Chuck Lever78215752018-03-05 15:13:07 -0500686 req->rq_xtime = ktime_get();
Chuck Levera246b012005-08-11 16:25:23 -0400687 while (1) {
Jason Baronf279cd02014-09-24 18:08:00 +0000688 sent = 0;
689 status = xs_sendpages(transport->sock, NULL, 0, xdr,
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400690 transport->xmit.offset,
691 zerocopy, &sent);
Chuck Levera246b012005-08-11 16:25:23 -0400692
Chuck Lever46121cf2007-01-31 12:14:08 -0500693 dprintk("RPC: xs_tcp_send_request(%u) = %d\n",
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400694 xdr->len - transport->xmit.offset, status);
Chuck Lever262965f2005-08-11 16:25:56 -0400695
Chuck Lever262965f2005-08-11 16:25:56 -0400696 /* If we've sent the entire packet, immediately
697 * reset the count of bytes sent. */
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400698 transport->xmit.offset += sent;
699 req->rq_bytes_sent = transport->xmit.offset;
Chuck Lever262965f2005-08-11 16:25:56 -0400700 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400701 req->rq_xmit_bytes_sent += transport->xmit.offset;
Chuck Lever262965f2005-08-11 16:25:56 -0400702 req->rq_bytes_sent = 0;
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400703 transport->xmit.offset = 0;
Chuck Lever262965f2005-08-11 16:25:56 -0400704 return 0;
Chuck Levera246b012005-08-11 16:25:23 -0400705 }
706
Trond Myklebust9ffadfb2016-05-29 00:42:03 -0400707 WARN_ON_ONCE(sent == 0 && status == 0);
708
709 if (status == -EAGAIN ) {
710 /*
711 * Return EAGAIN if we're sure we're hitting the
712 * socket send buffer limits.
713 */
714 if (test_bit(SOCK_NOSPACE, &transport->sock->flags))
715 break;
716 /*
717 * Did we hit a memory allocation failure?
718 */
719 if (sent == 0) {
720 status = -ENOBUFS;
721 if (vm_wait)
722 break;
723 /* Retry, knowing now that we're below the
724 * socket send buffer limit
725 */
726 vm_wait = true;
727 }
728 continue;
729 }
Trond Myklebustf580dd02015-07-11 17:48:52 +0200730 if (status < 0)
731 break;
Trond Myklebust9ffadfb2016-05-29 00:42:03 -0400732 vm_wait = false;
Chuck Levera246b012005-08-11 16:25:23 -0400733 }
734
Chuck Lever262965f2005-08-11 16:25:56 -0400735 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400736 case -ENOTSOCK:
737 status = -ENOTCONN;
738 /* Should we call xs_close() here? */
739 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400740 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400741 status = xs_nospace(task);
Chuck Lever262965f2005-08-11 16:25:56 -0400742 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400743 case -ECONNRESET:
Chuck Lever262965f2005-08-11 16:25:56 -0400744 case -ECONNREFUSED:
745 case -ENOTCONN:
Trond Myklebust3913c782015-02-08 21:44:04 -0500746 case -EADDRINUSE:
Trond Myklebustb5872f02015-07-03 09:32:23 -0400747 case -ENOBUFS:
Trond Myklebustb9d2bb22012-10-23 11:40:02 -0400748 case -EPIPE:
Trond Myklebust13331a52016-01-06 08:57:06 -0500749 break;
750 default:
751 dprintk("RPC: sendmsg returned unrecognized error %d\n",
752 -status);
Chuck Levera246b012005-08-11 16:25:23 -0400753 }
Bian Naimeng5fe46e92010-03-08 14:49:01 +0800754
Chuck Levera246b012005-08-11 16:25:23 -0400755 return status;
756}
757
Chuck Lever9903cd12005-08-11 16:25:26 -0400758/**
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400759 * xs_tcp_release_xprt - clean up after a tcp transmission
760 * @xprt: transport
761 * @task: rpc task
762 *
763 * This cleans up if an error causes us to abort the transmission of a request.
764 * In this case, the socket may need to be reset in order to avoid confusing
765 * the server.
766 */
767static void xs_tcp_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
768{
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400769 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400770
771 if (task != xprt->snd_task)
772 return;
773 if (task == NULL)
774 goto out_release;
Trond Myklebust6c7a64e2018-08-13 16:54:57 -0400775 if (transport->xmit.offset == 0 || !xprt_connected(xprt))
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400776 goto out_release;
Trond Myklebusta4f08352013-01-08 09:10:21 -0500777 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400778out_release:
779 xprt_release_xprt(xprt, task);
780}
781
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400782static void xs_save_old_callbacks(struct sock_xprt *transport, struct sock *sk)
783{
784 transport->old_data_ready = sk->sk_data_ready;
785 transport->old_state_change = sk->sk_state_change;
786 transport->old_write_space = sk->sk_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500787 transport->old_error_report = sk->sk_error_report;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400788}
789
790static void xs_restore_old_callbacks(struct sock_xprt *transport, struct sock *sk)
791{
792 sk->sk_data_ready = transport->old_data_ready;
793 sk->sk_state_change = transport->old_state_change;
794 sk->sk_write_space = transport->old_write_space;
Trond Myklebust21180712013-12-31 13:22:59 -0500795 sk->sk_error_report = transport->old_error_report;
796}
797
Trond Myklebust42d42a52016-05-23 09:24:55 -0400798static void xs_sock_reset_state_flags(struct rpc_xprt *xprt)
799{
800 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
801
802 clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state);
803}
804
Trond Myklebustb70ae912015-02-09 09:41:32 -0500805static void xs_sock_reset_connection_flags(struct rpc_xprt *xprt)
806{
807 smp_mb__before_atomic();
808 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
809 clear_bit(XPRT_CLOSING, &xprt->state);
Trond Myklebust42d42a52016-05-23 09:24:55 -0400810 xs_sock_reset_state_flags(xprt);
Trond Myklebustb70ae912015-02-09 09:41:32 -0500811 smp_mb__after_atomic();
812}
813
Trond Myklebust21180712013-12-31 13:22:59 -0500814/**
815 * xs_error_report - callback to handle TCP socket state errors
816 * @sk: socket
817 *
818 * Note: we don't call sock_error() since there may be a rpc_task
819 * using the socket, and so we don't want to clear sk->sk_err.
820 */
821static void xs_error_report(struct sock *sk)
822{
823 struct rpc_xprt *xprt;
824 int err;
825
826 read_lock_bh(&sk->sk_callback_lock);
827 if (!(xprt = xprt_from_sock(sk)))
828 goto out;
829
830 err = -sk->sk_err;
831 if (err == 0)
832 goto out;
833 dprintk("RPC: xs_error_report client %p, error=%d...\n",
834 xprt, -err);
Trond Myklebuste8353c762013-12-31 13:39:22 -0500835 trace_rpc_socket_error(xprt, sk->sk_socket, err);
Trond Myklebust21180712013-12-31 13:22:59 -0500836 xprt_wake_pending_tasks(xprt, err);
837 out:
838 read_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400839}
840
Chuck Leverfe315e72009-03-11 14:10:21 -0400841static void xs_reset_transport(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -0400842{
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500843 struct socket *sock = transport->sock;
844 struct sock *sk = transport->inet;
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500845 struct rpc_xprt *xprt = &transport->xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400846
Chuck Leverfe315e72009-03-11 14:10:21 -0400847 if (sk == NULL)
848 return;
Chuck Lever9903cd12005-08-11 16:25:26 -0400849
Jeff Layton264d1df2015-06-03 16:14:27 -0400850 if (atomic_read(&transport->xprt.swapper))
851 sk_clear_memalloc(sk);
852
Trond Myklebust09939202015-08-29 19:11:21 -0700853 kernel_sock_shutdown(sock, SHUT_RDWR);
854
Trond Myklebustedc1b012015-10-05 10:53:49 -0400855 mutex_lock(&transport->recv_mutex);
Chuck Levera246b012005-08-11 16:25:23 -0400856 write_lock_bh(&sk->sk_callback_lock);
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500857 transport->inet = NULL;
858 transport->sock = NULL;
Chuck Levera246b012005-08-11 16:25:23 -0400859
Chuck Lever9903cd12005-08-11 16:25:26 -0400860 sk->sk_user_data = NULL;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400861
862 xs_restore_old_callbacks(transport, sk);
Trond Myklebust0c787892015-08-29 13:36:30 -0700863 xprt_clear_connected(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400864 write_unlock_bh(&sk->sk_callback_lock);
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500865 xs_sock_reset_connection_flags(xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -0400866 mutex_unlock(&transport->recv_mutex);
Chuck Levera246b012005-08-11 16:25:23 -0400867
Trond Myklebust6cc7e902015-02-08 18:35:25 -0500868 trace_rpc_socket_close(xprt, sock);
Chuck Levera246b012005-08-11 16:25:23 -0400869 sock_release(sock);
Chuck Leverfe315e72009-03-11 14:10:21 -0400870}
871
872/**
873 * xs_close - close a socket
874 * @xprt: transport
875 *
876 * This is used when all requests are complete; ie, no DRC state remains
877 * on the server we want to save.
Trond Myklebustf75e6742009-04-21 17:18:20 -0400878 *
879 * The caller _must_ be holding XPRT_LOCKED in order to avoid issues with
880 * xs_reset_transport() zeroing the socket from underneath a writer.
Chuck Leverfe315e72009-03-11 14:10:21 -0400881 */
882static void xs_close(struct rpc_xprt *xprt)
883{
884 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
885
886 dprintk("RPC: xs_close xprt %p\n", xprt);
887
888 xs_reset_transport(transport);
Neil Brown61d0a8e2009-09-23 14:36:37 -0400889 xprt->reestablish_timeout = 0;
Chuck Leverfe315e72009-03-11 14:10:21 -0400890
Trond Myklebust62da3b22007-11-06 18:44:20 -0500891 xprt_disconnect_done(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400892}
893
Chuck Lever4a068252015-05-11 14:02:25 -0400894static void xs_inject_disconnect(struct rpc_xprt *xprt)
895{
896 dprintk("RPC: injecting transport disconnect on xprt=%p\n",
897 xprt);
898 xprt_disconnect_done(xprt);
899}
900
Kinglong Mee315f3812014-03-24 11:07:22 +0800901static void xs_xprt_free(struct rpc_xprt *xprt)
902{
903 xs_free_peer_addresses(xprt);
904 xprt_free(xprt);
905}
906
Chuck Lever9903cd12005-08-11 16:25:26 -0400907/**
908 * xs_destroy - prepare to shutdown a transport
909 * @xprt: doomed transport
910 *
911 */
912static void xs_destroy(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -0400913{
Trond Myklebust03c788272015-09-17 10:42:27 -0400914 struct sock_xprt *transport = container_of(xprt,
915 struct sock_xprt, xprt);
Chuck Lever46121cf2007-01-31 12:14:08 -0500916 dprintk("RPC: xs_destroy xprt %p\n", xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -0400917
Trond Myklebust03c788272015-09-17 10:42:27 -0400918 cancel_delayed_work_sync(&transport->connect_worker);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400919 xs_close(xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -0400920 cancel_work_sync(&transport->recv_worker);
Kinglong Mee315f3812014-03-24 11:07:22 +0800921 xs_xprt_free(xprt);
Trond Myklebusta1311d82013-10-31 09:18:49 -0400922 module_put(THIS_MODULE);
Chuck Levera246b012005-08-11 16:25:23 -0400923}
924
Chuck Lever176e21e2011-05-09 15:22:44 -0400925static int xs_local_copy_to_xdr(struct xdr_buf *xdr, struct sk_buff *skb)
926{
927 struct xdr_skb_reader desc = {
928 .skb = skb,
929 .offset = sizeof(rpc_fraghdr),
930 .count = skb->len - sizeof(rpc_fraghdr),
931 };
932
933 if (xdr_partial_copy_from_skb(xdr, 0, &desc, xdr_skb_read_bits) < 0)
934 return -1;
935 if (desc.count)
936 return -1;
937 return 0;
938}
939
940/**
Trond Myklebusta2648092015-10-06 17:03:00 -0400941 * xs_local_data_read_skb
942 * @xprt: transport
943 * @sk: socket
944 * @skb: skbuff
Chuck Lever176e21e2011-05-09 15:22:44 -0400945 *
946 * Currently this assumes we can read the whole reply in a single gulp.
947 */
Trond Myklebusta2648092015-10-06 17:03:00 -0400948static void xs_local_data_read_skb(struct rpc_xprt *xprt,
949 struct sock *sk,
950 struct sk_buff *skb)
Chuck Lever176e21e2011-05-09 15:22:44 -0400951{
952 struct rpc_task *task;
Chuck Lever176e21e2011-05-09 15:22:44 -0400953 struct rpc_rqst *rovr;
Trond Myklebusta2648092015-10-06 17:03:00 -0400954 int repsize, copied;
Chuck Lever176e21e2011-05-09 15:22:44 -0400955 u32 _xid;
956 __be32 *xp;
957
Chuck Lever176e21e2011-05-09 15:22:44 -0400958 repsize = skb->len - sizeof(rpc_fraghdr);
959 if (repsize < 4) {
960 dprintk("RPC: impossible RPC reply size %d\n", repsize);
Trond Myklebusta2648092015-10-06 17:03:00 -0400961 return;
Chuck Lever176e21e2011-05-09 15:22:44 -0400962 }
963
964 /* Copy the XID from the skb... */
965 xp = skb_header_pointer(skb, sizeof(rpc_fraghdr), sizeof(_xid), &_xid);
966 if (xp == NULL)
Trond Myklebusta2648092015-10-06 17:03:00 -0400967 return;
Chuck Lever176e21e2011-05-09 15:22:44 -0400968
969 /* Look up and lock the request corresponding to the given XID */
Trond Myklebustce7c2522017-08-16 15:30:35 -0400970 spin_lock(&xprt->recv_lock);
Chuck Lever176e21e2011-05-09 15:22:44 -0400971 rovr = xprt_lookup_rqst(xprt, *xp);
972 if (!rovr)
973 goto out_unlock;
Trond Myklebust729749b2017-08-13 10:03:59 -0400974 xprt_pin_rqst(rovr);
Trond Myklebustce7c2522017-08-16 15:30:35 -0400975 spin_unlock(&xprt->recv_lock);
Chuck Lever176e21e2011-05-09 15:22:44 -0400976 task = rovr->rq_task;
977
978 copied = rovr->rq_private_buf.buflen;
979 if (copied > repsize)
980 copied = repsize;
981
982 if (xs_local_copy_to_xdr(&rovr->rq_private_buf, skb)) {
983 dprintk("RPC: sk_buff copy failed\n");
Trond Myklebustce7c2522017-08-16 15:30:35 -0400984 spin_lock(&xprt->recv_lock);
Trond Myklebust729749b2017-08-13 10:03:59 -0400985 goto out_unpin;
Chuck Lever176e21e2011-05-09 15:22:44 -0400986 }
987
Trond Myklebustce7c2522017-08-16 15:30:35 -0400988 spin_lock(&xprt->recv_lock);
Chuck Lever176e21e2011-05-09 15:22:44 -0400989 xprt_complete_rqst(task, copied);
Trond Myklebust729749b2017-08-13 10:03:59 -0400990out_unpin:
991 xprt_unpin_rqst(rovr);
Chuck Lever176e21e2011-05-09 15:22:44 -0400992 out_unlock:
Trond Myklebustce7c2522017-08-16 15:30:35 -0400993 spin_unlock(&xprt->recv_lock);
Trond Myklebusta2648092015-10-06 17:03:00 -0400994}
995
996static void xs_local_data_receive(struct sock_xprt *transport)
997{
998 struct sk_buff *skb;
999 struct sock *sk;
1000 int err;
1001
Trond Myklebust0af34422018-01-14 15:28:29 -05001002restart:
Trond Myklebusta2648092015-10-06 17:03:00 -04001003 mutex_lock(&transport->recv_mutex);
1004 sk = transport->inet;
1005 if (sk == NULL)
1006 goto out;
1007 for (;;) {
1008 skb = skb_recv_datagram(sk, 0, 1, &err);
Trond Myklebust42d42a52016-05-23 09:24:55 -04001009 if (skb != NULL) {
1010 xs_local_data_read_skb(&transport->xprt, sk, skb);
1011 skb_free_datagram(sk, skb);
1012 continue;
1013 }
1014 if (!test_and_clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
Trond Myklebusta2648092015-10-06 17:03:00 -04001015 break;
Trond Myklebust0af34422018-01-14 15:28:29 -05001016 if (need_resched()) {
1017 mutex_unlock(&transport->recv_mutex);
1018 cond_resched();
1019 goto restart;
1020 }
Trond Myklebusta2648092015-10-06 17:03:00 -04001021 }
1022out:
1023 mutex_unlock(&transport->recv_mutex);
1024}
1025
1026static void xs_local_data_receive_workfn(struct work_struct *work)
1027{
1028 struct sock_xprt *transport =
1029 container_of(work, struct sock_xprt, recv_worker);
1030 xs_local_data_receive(transport);
Chuck Lever176e21e2011-05-09 15:22:44 -04001031}
1032
Chuck Lever9903cd12005-08-11 16:25:26 -04001033/**
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001034 * xs_udp_data_read_skb - receive callback for UDP sockets
1035 * @xprt: transport
1036 * @sk: socket
1037 * @skb: skbuff
Chuck Lever9903cd12005-08-11 16:25:26 -04001038 *
1039 */
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001040static void xs_udp_data_read_skb(struct rpc_xprt *xprt,
1041 struct sock *sk,
1042 struct sk_buff *skb)
Chuck Lever9903cd12005-08-11 16:25:26 -04001043{
1044 struct rpc_task *task;
Chuck Levera246b012005-08-11 16:25:23 -04001045 struct rpc_rqst *rovr;
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001046 int repsize, copied;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001047 u32 _xid;
1048 __be32 *xp;
Chuck Levera246b012005-08-11 16:25:23 -04001049
Willem de Bruijn1da8c6812016-04-07 11:44:58 -04001050 repsize = skb->len;
Chuck Levera246b012005-08-11 16:25:23 -04001051 if (repsize < 4) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001052 dprintk("RPC: impossible RPC reply size %d!\n", repsize);
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001053 return;
Chuck Levera246b012005-08-11 16:25:23 -04001054 }
1055
1056 /* Copy the XID from the skb... */
Willem de Bruijn1da8c6812016-04-07 11:44:58 -04001057 xp = skb_header_pointer(skb, 0, sizeof(_xid), &_xid);
Chuck Levera246b012005-08-11 16:25:23 -04001058 if (xp == NULL)
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001059 return;
Chuck Levera246b012005-08-11 16:25:23 -04001060
1061 /* Look up and lock the request corresponding to the given XID */
Trond Myklebustce7c2522017-08-16 15:30:35 -04001062 spin_lock(&xprt->recv_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001063 rovr = xprt_lookup_rqst(xprt, *xp);
1064 if (!rovr)
1065 goto out_unlock;
Trond Myklebust729749b2017-08-13 10:03:59 -04001066 xprt_pin_rqst(rovr);
Chuck Leverecd465e2018-03-05 15:12:57 -05001067 xprt_update_rtt(rovr->rq_task);
Trond Myklebustce7c2522017-08-16 15:30:35 -04001068 spin_unlock(&xprt->recv_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001069 task = rovr->rq_task;
1070
Chuck Levera246b012005-08-11 16:25:23 -04001071 if ((copied = rovr->rq_private_buf.buflen) > repsize)
1072 copied = repsize;
1073
1074 /* Suck it into the iovec, verify checksum if not done by hw. */
Herbert Xu1781f7f2007-12-11 11:30:32 -08001075 if (csum_partial_copy_to_xdr(&rovr->rq_private_buf, skb)) {
Trond Myklebustce7c2522017-08-16 15:30:35 -04001076 spin_lock(&xprt->recv_lock);
Trond Myklebust0afa6b42018-02-09 09:39:42 -05001077 __UDPX_INC_STATS(sk, UDP_MIB_INERRORS);
Trond Myklebust729749b2017-08-13 10:03:59 -04001078 goto out_unpin;
Herbert Xu1781f7f2007-12-11 11:30:32 -08001079 }
1080
Chuck Levera246b012005-08-11 16:25:23 -04001081
Trond Myklebust729749b2017-08-13 10:03:59 -04001082 spin_lock_bh(&xprt->transport_lock);
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001083 xprt_adjust_cwnd(xprt, task, copied);
Trond Myklebustce7c2522017-08-16 15:30:35 -04001084 spin_unlock_bh(&xprt->transport_lock);
1085 spin_lock(&xprt->recv_lock);
Chuck Lever1570c1e2005-08-25 16:25:52 -07001086 xprt_complete_rqst(task, copied);
Trond Myklebust0afa6b42018-02-09 09:39:42 -05001087 __UDPX_INC_STATS(sk, UDP_MIB_INDATAGRAMS);
Trond Myklebust729749b2017-08-13 10:03:59 -04001088out_unpin:
1089 xprt_unpin_rqst(rovr);
Chuck Levera246b012005-08-11 16:25:23 -04001090 out_unlock:
Trond Myklebustce7c2522017-08-16 15:30:35 -04001091 spin_unlock(&xprt->recv_lock);
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001092}
1093
1094static void xs_udp_data_receive(struct sock_xprt *transport)
1095{
1096 struct sk_buff *skb;
1097 struct sock *sk;
1098 int err;
1099
Trond Myklebust0af34422018-01-14 15:28:29 -05001100restart:
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001101 mutex_lock(&transport->recv_mutex);
1102 sk = transport->inet;
1103 if (sk == NULL)
1104 goto out;
1105 for (;;) {
Paolo Abeni7c13f972016-11-04 11:28:59 +01001106 skb = skb_recv_udp(sk, 0, 1, &err);
Trond Myklebust42d42a52016-05-23 09:24:55 -04001107 if (skb != NULL) {
1108 xs_udp_data_read_skb(&transport->xprt, sk, skb);
Paolo Abeni850cbad2016-10-21 13:55:47 +02001109 consume_skb(skb);
Trond Myklebust42d42a52016-05-23 09:24:55 -04001110 continue;
1111 }
1112 if (!test_and_clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001113 break;
Trond Myklebust0af34422018-01-14 15:28:29 -05001114 if (need_resched()) {
1115 mutex_unlock(&transport->recv_mutex);
1116 cond_resched();
1117 goto restart;
1118 }
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001119 }
1120out:
1121 mutex_unlock(&transport->recv_mutex);
1122}
1123
1124static void xs_udp_data_receive_workfn(struct work_struct *work)
1125{
1126 struct sock_xprt *transport =
1127 container_of(work, struct sock_xprt, recv_worker);
1128 xs_udp_data_receive(transport);
1129}
1130
1131/**
1132 * xs_data_ready - "data ready" callback for UDP sockets
1133 * @sk: socket with data to read
1134 *
1135 */
1136static void xs_data_ready(struct sock *sk)
1137{
1138 struct rpc_xprt *xprt;
1139
1140 read_lock_bh(&sk->sk_callback_lock);
1141 dprintk("RPC: xs_data_ready...\n");
1142 xprt = xprt_from_sock(sk);
1143 if (xprt != NULL) {
1144 struct sock_xprt *transport = container_of(xprt,
1145 struct sock_xprt, xprt);
Trond Myklebust5157b952016-05-29 10:13:24 -04001146 transport->old_data_ready(sk);
1147 /* Any data means we had a useful conversation, so
1148 * then we don't need to delay the next reconnect
1149 */
1150 if (xprt->reestablish_timeout)
1151 xprt->reestablish_timeout = 0;
Trond Myklebust42d42a52016-05-23 09:24:55 -04001152 if (!test_and_set_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
Trond Myklebust40a5f1b2016-05-27 10:39:50 -04001153 queue_work(xprtiod_workqueue, &transport->recv_worker);
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04001154 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001155 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001156}
1157
Trond Myklebusta519fc72012-09-12 16:49:15 -04001158/*
1159 * Helper function to force a TCP close if the server is sending
1160 * junk and/or it has put us in CLOSE_WAIT
1161 */
1162static void xs_tcp_force_close(struct rpc_xprt *xprt)
1163{
Trond Myklebusta519fc72012-09-12 16:49:15 -04001164 xprt_force_disconnect(xprt);
1165}
1166
Chuck Leverdd456472006-12-05 16:35:44 -05001167static inline void xs_tcp_read_fraghdr(struct rpc_xprt *xprt, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001168{
Chuck Lever51971132006-12-05 16:35:19 -05001169 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001170 size_t len, used;
1171 char *p;
1172
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001173 p = ((char *) &transport->recv.fraghdr) + transport->recv.offset;
1174 len = sizeof(transport->recv.fraghdr) - transport->recv.offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001175 used = xdr_skb_read_bits(desc, p, len);
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001176 transport->recv.offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001177 if (used != len)
1178 return;
Chuck Lever808012f2005-08-25 16:25:49 -07001179
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001180 transport->recv.len = ntohl(transport->recv.fraghdr);
1181 if (transport->recv.len & RPC_LAST_STREAM_FRAGMENT)
1182 transport->recv.flags |= TCP_RCV_LAST_FRAG;
Chuck Levera246b012005-08-11 16:25:23 -04001183 else
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001184 transport->recv.flags &= ~TCP_RCV_LAST_FRAG;
1185 transport->recv.len &= RPC_FRAGMENT_SIZE_MASK;
Chuck Lever808012f2005-08-25 16:25:49 -07001186
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001187 transport->recv.flags &= ~TCP_RCV_COPY_FRAGHDR;
1188 transport->recv.offset = 0;
Chuck Lever808012f2005-08-25 16:25:49 -07001189
Chuck Levera246b012005-08-11 16:25:23 -04001190 /* Sanity check of the record length */
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001191 if (unlikely(transport->recv.len < 8)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001192 dprintk("RPC: invalid TCP record fragment length\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001193 xs_tcp_force_close(xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -04001194 return;
Chuck Levera246b012005-08-11 16:25:23 -04001195 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001196 dprintk("RPC: reading TCP record fragment of length %d\n",
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001197 transport->recv.len);
Chuck Levera246b012005-08-11 16:25:23 -04001198}
1199
Chuck Lever51971132006-12-05 16:35:19 -05001200static void xs_tcp_check_fraghdr(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -04001201{
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001202 if (transport->recv.offset == transport->recv.len) {
1203 transport->recv.flags |= TCP_RCV_COPY_FRAGHDR;
1204 transport->recv.offset = 0;
1205 if (transport->recv.flags & TCP_RCV_LAST_FRAG) {
1206 transport->recv.flags &= ~TCP_RCV_COPY_DATA;
1207 transport->recv.flags |= TCP_RCV_COPY_XID;
1208 transport->recv.copied = 0;
Chuck Levera246b012005-08-11 16:25:23 -04001209 }
1210 }
1211}
1212
Chuck Leverdd456472006-12-05 16:35:44 -05001213static inline void xs_tcp_read_xid(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001214{
1215 size_t len, used;
1216 char *p;
1217
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001218 len = sizeof(transport->recv.xid) - transport->recv.offset;
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001219 dprintk("RPC: reading XID (%zu bytes)\n", len);
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001220 p = ((char *) &transport->recv.xid) + transport->recv.offset;
Chuck Lever9d292312006-12-05 16:35:41 -05001221 used = xdr_skb_read_bits(desc, p, len);
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001222 transport->recv.offset += used;
Chuck Levera246b012005-08-11 16:25:23 -04001223 if (used != len)
1224 return;
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001225 transport->recv.flags &= ~TCP_RCV_COPY_XID;
1226 transport->recv.flags |= TCP_RCV_READ_CALLDIR;
1227 transport->recv.copied = 4;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001228 dprintk("RPC: reading %s XID %08x\n",
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001229 (transport->recv.flags & TCP_RPC_REPLY) ? "reply for"
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001230 : "request with",
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001231 ntohl(transport->recv.xid));
Chuck Lever51971132006-12-05 16:35:19 -05001232 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001233}
1234
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001235static inline void xs_tcp_read_calldir(struct sock_xprt *transport,
1236 struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001237{
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001238 size_t len, used;
1239 u32 offset;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001240 char *p;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001241
1242 /*
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001243 * We want transport->recv.offset to be 8 at the end of this routine
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001244 * (4 bytes for the xid and 4 bytes for the call/reply flag).
1245 * When this function is called for the first time,
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001246 * transport->recv.offset is 4 (after having already read the xid).
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001247 */
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001248 offset = transport->recv.offset - sizeof(transport->recv.xid);
1249 len = sizeof(transport->recv.calldir) - offset;
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001250 dprintk("RPC: reading CALL/REPLY flag (%zu bytes)\n", len);
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001251 p = ((char *) &transport->recv.calldir) + offset;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001252 used = xdr_skb_read_bits(desc, p, len);
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001253 transport->recv.offset += used;
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001254 if (used != len)
1255 return;
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001256 transport->recv.flags &= ~TCP_RCV_READ_CALLDIR;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001257 /*
1258 * We don't yet have the XDR buffer, so we will write the calldir
1259 * out after we get the buffer from the 'struct rpc_rqst'
1260 */
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001261 switch (ntohl(transport->recv.calldir)) {
Trond Myklebustb76ce562010-06-16 13:57:32 -04001262 case RPC_REPLY:
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001263 transport->recv.flags |= TCP_RCV_COPY_CALLDIR;
1264 transport->recv.flags |= TCP_RCV_COPY_DATA;
1265 transport->recv.flags |= TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001266 break;
1267 case RPC_CALL:
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001268 transport->recv.flags |= TCP_RCV_COPY_CALLDIR;
1269 transport->recv.flags |= TCP_RCV_COPY_DATA;
1270 transport->recv.flags &= ~TCP_RPC_REPLY;
Trond Myklebustb76ce562010-06-16 13:57:32 -04001271 break;
1272 default:
1273 dprintk("RPC: invalid request message type\n");
Trond Myklebusta519fc72012-09-12 16:49:15 -04001274 xs_tcp_force_close(&transport->xprt);
Trond Myklebustb76ce562010-06-16 13:57:32 -04001275 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001276 xs_tcp_check_fraghdr(transport);
1277}
1278
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001279static inline void xs_tcp_read_common(struct rpc_xprt *xprt,
1280 struct xdr_skb_reader *desc,
1281 struct rpc_rqst *req)
Chuck Levera246b012005-08-11 16:25:23 -04001282{
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001283 struct sock_xprt *transport =
1284 container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001285 struct xdr_buf *rcvbuf;
1286 size_t len;
1287 ssize_t r;
1288
Chuck Levera246b012005-08-11 16:25:23 -04001289 rcvbuf = &req->rq_private_buf;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001290
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001291 if (transport->recv.flags & TCP_RCV_COPY_CALLDIR) {
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001292 /*
1293 * Save the RPC direction in the XDR buffer
1294 */
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001295 memcpy(rcvbuf->head[0].iov_base + transport->recv.copied,
1296 &transport->recv.calldir,
1297 sizeof(transport->recv.calldir));
1298 transport->recv.copied += sizeof(transport->recv.calldir);
1299 transport->recv.flags &= ~TCP_RCV_COPY_CALLDIR;
Chuck Levera246b012005-08-11 16:25:23 -04001300 }
1301
Chuck Levera246b012005-08-11 16:25:23 -04001302 len = desc->count;
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001303 if (len > transport->recv.len - transport->recv.offset)
1304 desc->count = transport->recv.len - transport->recv.offset;
1305 r = xdr_partial_copy_from_skb(rcvbuf, transport->recv.copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001306 desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001307
Trond Myklebust040249d2017-08-13 02:13:45 -04001308 if (desc->count) {
Chuck Levera246b012005-08-11 16:25:23 -04001309 /* Error when copying to the receive buffer,
1310 * usually because we weren't able to allocate
1311 * additional buffer pages. All we can do now
Chuck Levere136d092006-12-05 16:35:23 -05001312 * is turn off TCP_RCV_COPY_DATA, so the request
Chuck Levera246b012005-08-11 16:25:23 -04001313 * will not receive any additional updates,
1314 * and time out.
1315 * Any remaining data from this record will
1316 * be discarded.
1317 */
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001318 transport->recv.flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever46121cf2007-01-31 12:14:08 -05001319 dprintk("RPC: XID %08x truncated request\n",
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001320 ntohl(transport->recv.xid));
1321 dprintk("RPC: xprt = %p, recv.copied = %lu, "
1322 "recv.offset = %u, recv.len = %u\n",
1323 xprt, transport->recv.copied,
1324 transport->recv.offset, transport->recv.len);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001325 return;
Chuck Levera246b012005-08-11 16:25:23 -04001326 }
1327
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001328 transport->recv.copied += r;
1329 transport->recv.offset += r;
Trond Myklebust040249d2017-08-13 02:13:45 -04001330 desc->count = len - r;
1331
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001332 dprintk("RPC: XID %08x read %zd bytes\n",
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001333 ntohl(transport->recv.xid), r);
1334 dprintk("RPC: xprt = %p, recv.copied = %lu, recv.offset = %u, "
1335 "recv.len = %u\n", xprt, transport->recv.copied,
1336 transport->recv.offset, transport->recv.len);
Chuck Levera246b012005-08-11 16:25:23 -04001337
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001338 if (transport->recv.copied == req->rq_private_buf.buflen)
1339 transport->recv.flags &= ~TCP_RCV_COPY_DATA;
1340 else if (transport->recv.offset == transport->recv.len) {
1341 if (transport->recv.flags & TCP_RCV_LAST_FRAG)
1342 transport->recv.flags &= ~TCP_RCV_COPY_DATA;
Chuck Levera246b012005-08-11 16:25:23 -04001343 }
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001344}
1345
1346/*
1347 * Finds the request corresponding to the RPC xid and invokes the common
1348 * tcp read code to read the data.
1349 */
1350static inline int xs_tcp_read_reply(struct rpc_xprt *xprt,
1351 struct xdr_skb_reader *desc)
1352{
1353 struct sock_xprt *transport =
1354 container_of(xprt, struct sock_xprt, xprt);
1355 struct rpc_rqst *req;
1356
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001357 dprintk("RPC: read reply XID %08x\n", ntohl(transport->recv.xid));
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001358
1359 /* Find and lock the request corresponding to this xid */
Trond Myklebustce7c2522017-08-16 15:30:35 -04001360 spin_lock(&xprt->recv_lock);
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001361 req = xprt_lookup_rqst(xprt, transport->recv.xid);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001362 if (!req) {
1363 dprintk("RPC: XID %08x request not found!\n",
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001364 ntohl(transport->recv.xid));
Trond Myklebustce7c2522017-08-16 15:30:35 -04001365 spin_unlock(&xprt->recv_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001366 return -1;
1367 }
Trond Myklebust729749b2017-08-13 10:03:59 -04001368 xprt_pin_rqst(req);
Trond Myklebustce7c2522017-08-16 15:30:35 -04001369 spin_unlock(&xprt->recv_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001370
1371 xs_tcp_read_common(xprt, desc, req);
1372
Trond Myklebustce7c2522017-08-16 15:30:35 -04001373 spin_lock(&xprt->recv_lock);
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001374 if (!(transport->recv.flags & TCP_RCV_COPY_DATA))
1375 xprt_complete_rqst(req->rq_task, transport->recv.copied);
Trond Myklebust729749b2017-08-13 10:03:59 -04001376 xprt_unpin_rqst(req);
Trond Myklebustce7c2522017-08-16 15:30:35 -04001377 spin_unlock(&xprt->recv_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001378 return 0;
1379}
1380
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001381#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001382/*
1383 * Obtains an rpc_rqst previously allocated and invokes the common
1384 * tcp read code to read the data. The result is placed in the callback
1385 * queue.
1386 * If we're unable to obtain the rpc_rqst we schedule the closing of the
1387 * connection and return -1.
1388 */
Trond Myklebust2ea24492014-02-10 11:18:39 -05001389static int xs_tcp_read_callback(struct rpc_xprt *xprt,
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001390 struct xdr_skb_reader *desc)
1391{
1392 struct sock_xprt *transport =
1393 container_of(xprt, struct sock_xprt, xprt);
1394 struct rpc_rqst *req;
1395
Trond Myklebustc89091c2017-08-16 12:09:44 -04001396 /* Look up the request corresponding to the given XID */
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001397 req = xprt_lookup_bc_request(xprt, transport->recv.xid);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001398 if (req == NULL) {
1399 printk(KERN_WARNING "Callback slot table overflowed\n");
1400 xprt_force_disconnect(xprt);
1401 return -1;
1402 }
1403
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001404 dprintk("RPC: read callback XID %08x\n", ntohl(req->rq_xid));
1405 xs_tcp_read_common(xprt, desc, req);
1406
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001407 if (!(transport->recv.flags & TCP_RCV_COPY_DATA))
1408 xprt_complete_bc_request(req, transport->recv.copied);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001409
1410 return 0;
1411}
1412
1413static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1414 struct xdr_skb_reader *desc)
1415{
1416 struct sock_xprt *transport =
1417 container_of(xprt, struct sock_xprt, xprt);
1418
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001419 return (transport->recv.flags & TCP_RPC_REPLY) ?
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001420 xs_tcp_read_reply(xprt, desc) :
1421 xs_tcp_read_callback(xprt, desc);
1422}
Chuck Lever76566772015-10-24 17:28:32 -04001423
1424static int xs_tcp_bc_up(struct svc_serv *serv, struct net *net)
1425{
1426 int ret;
1427
1428 ret = svc_create_xprt(serv, "tcp-bc", net, PF_INET, 0,
1429 SVC_SOCK_ANONYMOUS);
1430 if (ret < 0)
1431 return ret;
1432 return 0;
1433}
Chuck Lever6b26cc82016-05-02 14:40:40 -04001434
1435static size_t xs_tcp_bc_maxpayload(struct rpc_xprt *xprt)
1436{
1437 return PAGE_SIZE;
1438}
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001439#else
1440static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1441 struct xdr_skb_reader *desc)
1442{
1443 return xs_tcp_read_reply(xprt, desc);
1444}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001445#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001446
1447/*
1448 * Read data off the transport. This can be either an RPC_CALL or an
1449 * RPC_REPLY. Relay the processing to helper functions.
1450 */
1451static void xs_tcp_read_data(struct rpc_xprt *xprt,
1452 struct xdr_skb_reader *desc)
1453{
1454 struct sock_xprt *transport =
1455 container_of(xprt, struct sock_xprt, xprt);
1456
1457 if (_xs_tcp_read_data(xprt, desc) == 0)
1458 xs_tcp_check_fraghdr(transport);
1459 else {
1460 /*
1461 * The transport_lock protects the request handling.
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001462 * There's no need to hold it to update the recv.flags.
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001463 */
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001464 transport->recv.flags &= ~TCP_RCV_COPY_DATA;
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001465 }
Chuck Levera246b012005-08-11 16:25:23 -04001466}
1467
Chuck Leverdd456472006-12-05 16:35:44 -05001468static inline void xs_tcp_read_discard(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001469{
1470 size_t len;
1471
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001472 len = transport->recv.len - transport->recv.offset;
Chuck Levera246b012005-08-11 16:25:23 -04001473 if (len > desc->count)
1474 len = desc->count;
1475 desc->count -= len;
1476 desc->offset += len;
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001477 transport->recv.offset += len;
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001478 dprintk("RPC: discarded %zu bytes\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001479 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001480}
1481
Chuck Lever9903cd12005-08-11 16:25:26 -04001482static 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 -04001483{
1484 struct rpc_xprt *xprt = rd_desc->arg.data;
Chuck Lever51971132006-12-05 16:35:19 -05001485 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leverdd456472006-12-05 16:35:44 -05001486 struct xdr_skb_reader desc = {
Chuck Levera246b012005-08-11 16:25:23 -04001487 .skb = skb,
1488 .offset = offset,
1489 .count = len,
Chuck Lever9903cd12005-08-11 16:25:26 -04001490 };
Trond Myklebust3d188802018-01-14 15:47:06 -05001491 size_t ret;
Chuck Levera246b012005-08-11 16:25:23 -04001492
Chuck Lever46121cf2007-01-31 12:14:08 -05001493 dprintk("RPC: xs_tcp_data_recv started\n");
Chuck Levera246b012005-08-11 16:25:23 -04001494 do {
Jeff Layton1a867a02014-10-28 14:24:14 -04001495 trace_xs_tcp_data_recv(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001496 /* Read in a new fragment marker if necessary */
1497 /* Can we ever really expect to get completely empty fragments? */
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001498 if (transport->recv.flags & TCP_RCV_COPY_FRAGHDR) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001499 xs_tcp_read_fraghdr(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001500 continue;
1501 }
1502 /* Read in the xid if necessary */
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001503 if (transport->recv.flags & TCP_RCV_COPY_XID) {
Chuck Lever51971132006-12-05 16:35:19 -05001504 xs_tcp_read_xid(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001505 continue;
1506 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001507 /* Read in the call/reply flag */
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001508 if (transport->recv.flags & TCP_RCV_READ_CALLDIR) {
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001509 xs_tcp_read_calldir(transport, &desc);
1510 continue;
1511 }
Chuck Levera246b012005-08-11 16:25:23 -04001512 /* Read in the request data */
Trond Myklebustd1109aa2018-08-13 15:48:42 -04001513 if (transport->recv.flags & TCP_RCV_COPY_DATA) {
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001514 xs_tcp_read_data(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001515 continue;
1516 }
1517 /* Skip over any trailing bytes on short reads */
Chuck Lever51971132006-12-05 16:35:19 -05001518 xs_tcp_read_discard(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001519 } while (desc.count);
Trond Myklebust3d188802018-01-14 15:47:06 -05001520 ret = len - desc.count;
1521 if (ret < rd_desc->count)
1522 rd_desc->count -= ret;
1523 else
1524 rd_desc->count = 0;
Jeff Layton1a867a02014-10-28 14:24:14 -04001525 trace_xs_tcp_data_recv(transport);
Chuck Lever46121cf2007-01-31 12:14:08 -05001526 dprintk("RPC: xs_tcp_data_recv done\n");
Trond Myklebust3d188802018-01-14 15:47:06 -05001527 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04001528}
1529
Trond Myklebust66d7a562015-10-05 11:19:20 -04001530static void xs_tcp_data_receive(struct sock_xprt *transport)
1531{
1532 struct rpc_xprt *xprt = &transport->xprt;
1533 struct sock *sk;
1534 read_descriptor_t rd_desc = {
Trond Myklebust66d7a562015-10-05 11:19:20 -04001535 .arg.data = xprt,
1536 };
1537 unsigned long total = 0;
1538 int read = 0;
1539
Trond Myklebust0af34422018-01-14 15:28:29 -05001540restart:
Trond Myklebustedc1b012015-10-05 10:53:49 -04001541 mutex_lock(&transport->recv_mutex);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001542 sk = transport->inet;
Trond Myklebustedc1b012015-10-05 10:53:49 -04001543 if (sk == NULL)
1544 goto out;
Trond Myklebust66d7a562015-10-05 11:19:20 -04001545
1546 /* We use rd_desc to pass struct xprt to xs_tcp_data_recv */
Trond Myklebust0af34422018-01-14 15:28:29 -05001547 for (;;) {
Trond Myklebust3d188802018-01-14 15:47:06 -05001548 rd_desc.count = RPC_TCP_READ_CHUNK_SZ;
Trond Myklebustedc1b012015-10-05 10:53:49 -04001549 lock_sock(sk);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001550 read = tcp_read_sock(sk, &rd_desc, xs_tcp_data_recv);
Trond Myklebust3d188802018-01-14 15:47:06 -05001551 if (rd_desc.count != 0 || read < 0) {
Trond Myklebust42d42a52016-05-23 09:24:55 -04001552 clear_bit(XPRT_SOCK_DATA_READY, &transport->sock_state);
1553 release_sock(sk);
Trond Myklebust8d6f97d2017-08-12 15:11:49 -04001554 break;
Trond Myklebust42d42a52016-05-23 09:24:55 -04001555 }
Trond Myklebust8d6f97d2017-08-12 15:11:49 -04001556 release_sock(sk);
1557 total += read;
Trond Myklebust0af34422018-01-14 15:28:29 -05001558 if (need_resched()) {
1559 mutex_unlock(&transport->recv_mutex);
1560 cond_resched();
1561 goto restart;
1562 }
Trond Myklebust66d7a562015-10-05 11:19:20 -04001563 }
Trond Myklebust8d6f97d2017-08-12 15:11:49 -04001564 if (test_bit(XPRT_SOCK_DATA_READY, &transport->sock_state))
1565 queue_work(xprtiod_workqueue, &transport->recv_worker);
Trond Myklebustedc1b012015-10-05 10:53:49 -04001566out:
1567 mutex_unlock(&transport->recv_mutex);
Trond Myklebust66d7a562015-10-05 11:19:20 -04001568 trace_xs_tcp_data_ready(xprt, read, total);
1569}
1570
Trond Myklebustedc1b012015-10-05 10:53:49 -04001571static void xs_tcp_data_receive_workfn(struct work_struct *work)
1572{
1573 struct sock_xprt *transport =
1574 container_of(work, struct sock_xprt, recv_worker);
1575 xs_tcp_data_receive(transport);
1576}
1577
Chuck Lever9903cd12005-08-11 16:25:26 -04001578/**
Chuck Lever9903cd12005-08-11 16:25:26 -04001579 * xs_tcp_state_change - callback to handle TCP socket state changes
1580 * @sk: socket whose state has changed
1581 *
1582 */
1583static void xs_tcp_state_change(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001584{
Chuck Lever9903cd12005-08-11 16:25:26 -04001585 struct rpc_xprt *xprt;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001586 struct sock_xprt *transport;
Chuck Levera246b012005-08-11 16:25:23 -04001587
Eric Dumazetf064af12010-09-22 12:43:39 +00001588 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001589 if (!(xprt = xprt_from_sock(sk)))
1590 goto out;
Chuck Lever46121cf2007-01-31 12:14:08 -05001591 dprintk("RPC: xs_tcp_state_change client %p...\n", xprt);
Andy Chittenden669502f2010-08-10 10:19:53 -04001592 dprintk("RPC: state %x conn %d dead %d zapped %d sk_shutdown %d\n",
Chuck Lever46121cf2007-01-31 12:14:08 -05001593 sk->sk_state, xprt_connected(xprt),
1594 sock_flag(sk, SOCK_DEAD),
Andy Chittenden669502f2010-08-10 10:19:53 -04001595 sock_flag(sk, SOCK_ZAPPED),
1596 sk->sk_shutdown);
Chuck Levera246b012005-08-11 16:25:23 -04001597
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001598 transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04001599 trace_rpc_socket_state_change(xprt, sk->sk_socket);
Chuck Levera246b012005-08-11 16:25:23 -04001600 switch (sk->sk_state) {
1601 case TCP_ESTABLISHED:
Eric Dumazetf064af12010-09-22 12:43:39 +00001602 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001603 if (!xprt_test_and_set_connected(xprt)) {
Trond Myklebust8b717982013-09-26 10:18:04 -04001604 xprt->connect_cookie++;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001605 clear_bit(XPRT_SOCK_CONNECTING, &transport->sock_state);
1606 xprt_clear_connecting(xprt);
Chuck Lever51971132006-12-05 16:35:19 -05001607
Trond Myklebust2a491992009-03-11 14:38:00 -04001608 xprt_wake_pending_tasks(xprt, -EAGAIN);
Chuck Levera246b012005-08-11 16:25:23 -04001609 }
Eric Dumazetf064af12010-09-22 12:43:39 +00001610 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001611 break;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001612 case TCP_FIN_WAIT1:
1613 /* The client initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001614 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001615 xprt->reestablish_timeout = 0;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001616 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001617 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001618 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebustef803672007-12-31 16:19:17 -05001619 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001620 smp_mb__after_atomic();
Chuck Levera246b012005-08-11 16:25:23 -04001621 break;
Trond Myklebust632e3bd2006-01-03 09:55:55 +01001622 case TCP_CLOSE_WAIT:
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001623 /* The server initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001624 xprt->connect_cookie++;
Trond Myklebustd0bea452012-10-23 11:35:47 -04001625 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebusta519fc72012-09-12 16:49:15 -04001626 xs_tcp_force_close(xprt);
Gustavo A. R. Silvae9d47632017-10-20 11:48:30 -05001627 /* fall through */
Trond Myklebust663b8852008-01-01 18:42:12 -05001628 case TCP_CLOSING:
1629 /*
1630 * If the server closed down the connection, make sure that
1631 * we back off before reconnecting
1632 */
1633 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
1634 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001635 break;
1636 case TCP_LAST_ACK:
Trond Myklebust670f9452009-03-11 14:37:58 -04001637 set_bit(XPRT_CLOSING, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001638 smp_mb__before_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001639 clear_bit(XPRT_CONNECTED, &xprt->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001640 smp_mb__after_atomic();
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001641 break;
1642 case TCP_CLOSE:
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04001643 if (test_and_clear_bit(XPRT_SOCK_CONNECTING,
1644 &transport->sock_state))
1645 xprt_clear_connecting(xprt);
Trond Myklebust9b308892018-02-05 10:20:06 -05001646 clear_bit(XPRT_CLOSING, &xprt->state);
NeilBrown3ffbc1d2017-07-19 14:05:01 +10001647 if (sk->sk_err)
1648 xprt_wake_pending_tasks(xprt, -sk->sk_err);
Trond Myklebust9b308892018-02-05 10:20:06 -05001649 /* Trigger the socket release */
1650 xs_tcp_force_close(xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001651 }
1652 out:
Eric Dumazetf064af12010-09-22 12:43:39 +00001653 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001654}
1655
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001656static void xs_write_space(struct sock *sk)
1657{
Trond Myklebust13331a52016-01-06 08:57:06 -05001658 struct socket_wq *wq;
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001659 struct rpc_xprt *xprt;
1660
Trond Myklebust13331a52016-01-06 08:57:06 -05001661 if (!sk->sk_socket)
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001662 return;
Trond Myklebust13331a52016-01-06 08:57:06 -05001663 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001664
1665 if (unlikely(!(xprt = xprt_from_sock(sk))))
1666 return;
Trond Myklebust13331a52016-01-06 08:57:06 -05001667 rcu_read_lock();
1668 wq = rcu_dereference(sk->sk_wq);
1669 if (!wq || test_and_clear_bit(SOCKWQ_ASYNC_NOSPACE, &wq->flags) == 0)
1670 goto out;
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001671
1672 xprt_write_space(xprt);
Trond Myklebust13331a52016-01-06 08:57:06 -05001673out:
1674 rcu_read_unlock();
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001675}
1676
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001677/**
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001678 * xs_udp_write_space - callback invoked when socket buffer space
1679 * becomes available
Chuck Lever9903cd12005-08-11 16:25:26 -04001680 * @sk: socket whose state has changed
1681 *
Chuck Levera246b012005-08-11 16:25:23 -04001682 * Called when more output buffer space is available for this socket.
1683 * We try not to wake our writers until they can make "significant"
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001684 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
Chuck Levera246b012005-08-11 16:25:23 -04001685 * with a bunch of small requests.
1686 */
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001687static void xs_udp_write_space(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001688{
Eric Dumazetf064af12010-09-22 12:43:39 +00001689 read_lock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001690
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001691 /* from net/core/sock.c:sock_def_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001692 if (sock_writeable(sk))
1693 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001694
Eric Dumazetf064af12010-09-22 12:43:39 +00001695 read_unlock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001696}
Chuck Levera246b012005-08-11 16:25:23 -04001697
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001698/**
1699 * xs_tcp_write_space - callback invoked when socket buffer space
1700 * becomes available
1701 * @sk: socket whose state has changed
1702 *
1703 * Called when more output buffer space is available for this socket.
1704 * We try not to wake our writers until they can make "significant"
1705 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
1706 * with a bunch of small requests.
1707 */
1708static void xs_tcp_write_space(struct sock *sk)
1709{
Eric Dumazetf064af12010-09-22 12:43:39 +00001710 read_lock_bh(&sk->sk_callback_lock);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001711
1712 /* from net/core/stream.c:sk_stream_write_space */
Eric Dumazet64dc6132013-07-22 20:26:31 -07001713 if (sk_stream_is_writeable(sk))
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001714 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001715
Eric Dumazetf064af12010-09-22 12:43:39 +00001716 read_unlock_bh(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001717}
1718
Chuck Lever470056c2005-08-25 16:25:56 -07001719static void xs_udp_do_set_buffer_size(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -04001720{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001721 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1722 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -04001723
Chuck Lever7c6e0662006-12-05 16:35:30 -05001724 if (transport->rcvsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001725 sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001726 sk->sk_rcvbuf = transport->rcvsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001727 }
Chuck Lever7c6e0662006-12-05 16:35:30 -05001728 if (transport->sndsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001729 sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001730 sk->sk_sndbuf = transport->sndsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001731 sk->sk_write_space(sk);
1732 }
1733}
1734
Chuck Lever43118c22005-08-25 16:25:49 -07001735/**
Chuck Lever470056c2005-08-25 16:25:56 -07001736 * xs_udp_set_buffer_size - set send and receive limits
Chuck Lever43118c22005-08-25 16:25:49 -07001737 * @xprt: generic transport
Chuck Lever470056c2005-08-25 16:25:56 -07001738 * @sndsize: requested size of send buffer, in bytes
1739 * @rcvsize: requested size of receive buffer, in bytes
Chuck Lever43118c22005-08-25 16:25:49 -07001740 *
Chuck Lever470056c2005-08-25 16:25:56 -07001741 * Set socket send and receive buffer size limits.
Chuck Lever43118c22005-08-25 16:25:49 -07001742 */
Chuck Lever470056c2005-08-25 16:25:56 -07001743static void xs_udp_set_buffer_size(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize)
Chuck Lever43118c22005-08-25 16:25:49 -07001744{
Chuck Lever7c6e0662006-12-05 16:35:30 -05001745 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1746
1747 transport->sndsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001748 if (sndsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001749 transport->sndsize = sndsize + 1024;
1750 transport->rcvsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001751 if (rcvsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001752 transport->rcvsize = rcvsize + 1024;
Chuck Lever470056c2005-08-25 16:25:56 -07001753
1754 xs_udp_do_set_buffer_size(xprt);
Chuck Lever43118c22005-08-25 16:25:49 -07001755}
1756
Chuck Lever46c0ee82005-08-25 16:25:52 -07001757/**
1758 * xs_udp_timer - called when a retransmit timeout occurs on a UDP transport
1759 * @task: task that timed out
1760 *
1761 * Adjust the congestion window after a retransmit timeout has occurred.
1762 */
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001763static void xs_udp_timer(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Lever46c0ee82005-08-25 16:25:52 -07001764{
Chuck Leverb977b642017-02-08 17:00:51 -05001765 spin_lock_bh(&xprt->transport_lock);
Trond Myklebust6a24dfb2013-01-08 09:48:15 -05001766 xprt_adjust_cwnd(xprt, task, -ETIMEDOUT);
Chuck Leverb977b642017-02-08 17:00:51 -05001767 spin_unlock_bh(&xprt->transport_lock);
Chuck Lever46c0ee82005-08-25 16:25:52 -07001768}
1769
Chuck Leverb85d8802006-05-25 01:40:49 -04001770static unsigned short xs_get_random_port(void)
1771{
Frank Sorenson5d718992016-07-08 16:35:23 -05001772 unsigned short range = xprt_max_resvport - xprt_min_resvport + 1;
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -05001773 unsigned short rand = (unsigned short) prandom_u32() % range;
Chuck Leverb85d8802006-05-25 01:40:49 -04001774 return rand + xprt_min_resvport;
1775}
1776
Chuck Lever92200412006-01-03 09:55:51 +01001777/**
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001778 * xs_set_reuseaddr_port - set the socket's port and address reuse options
1779 * @sock: socket
1780 *
1781 * Note that this function has to be called on all sockets that share the
1782 * same port, and it must be called before binding.
1783 */
1784static void xs_sock_set_reuseport(struct socket *sock)
1785{
Trond Myklebust402e23b2015-02-09 17:20:14 -05001786 int opt = 1;
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001787
Trond Myklebust402e23b2015-02-09 17:20:14 -05001788 kernel_setsockopt(sock, SOL_SOCKET, SO_REUSEPORT,
1789 (char *)&opt, sizeof(opt));
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001790}
1791
1792static unsigned short xs_sock_getport(struct socket *sock)
1793{
1794 struct sockaddr_storage buf;
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001795 unsigned short port = 0;
1796
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001797 if (kernel_getsockname(sock, (struct sockaddr *)&buf) < 0)
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001798 goto out;
1799 switch (buf.ss_family) {
1800 case AF_INET6:
1801 port = ntohs(((struct sockaddr_in6 *)&buf)->sin6_port);
1802 break;
1803 case AF_INET:
1804 port = ntohs(((struct sockaddr_in *)&buf)->sin_port);
1805 }
1806out:
1807 return port;
1808}
1809
1810/**
Chuck Lever92200412006-01-03 09:55:51 +01001811 * xs_set_port - reset the port number in the remote endpoint address
1812 * @xprt: generic transport
1813 * @port: new port number
1814 *
1815 */
1816static void xs_set_port(struct rpc_xprt *xprt, unsigned short port)
1817{
Chuck Lever46121cf2007-01-31 12:14:08 -05001818 dprintk("RPC: setting port for xprt %p to %u\n", xprt, port);
Chuck Leverc4efcb12006-08-22 20:06:19 -04001819
Chuck Lever9dc3b092009-08-09 15:09:46 -04001820 rpc_set_port(xs_addr(xprt), port);
1821 xs_update_peer_port(xprt);
Chuck Lever92200412006-01-03 09:55:51 +01001822}
1823
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001824static void xs_set_srcport(struct sock_xprt *transport, struct socket *sock)
1825{
1826 if (transport->srcport == 0)
1827 transport->srcport = xs_sock_getport(sock);
1828}
1829
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001830static unsigned short xs_get_srcport(struct sock_xprt *transport)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001831{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001832 unsigned short port = transport->srcport;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001833
1834 if (port == 0 && transport->xprt.resvport)
1835 port = xs_get_random_port();
1836 return port;
1837}
1838
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001839static unsigned short xs_next_srcport(struct sock_xprt *transport, unsigned short port)
Trond Myklebust67a391d2007-11-05 17:40:58 -05001840{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001841 if (transport->srcport != 0)
1842 transport->srcport = 0;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001843 if (!transport->xprt.resvport)
1844 return 0;
1845 if (port <= xprt_min_resvport || port > xprt_max_resvport)
1846 return xprt_max_resvport;
1847 return --port;
1848}
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001849static int xs_bind(struct sock_xprt *transport, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001850{
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001851 struct sockaddr_storage myaddr;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001852 int err, nloop = 0;
Pavel Emelyanov5d4ec932010-10-04 16:51:23 +04001853 unsigned short port = xs_get_srcport(transport);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001854 unsigned short last;
Chuck Levera246b012005-08-11 16:25:23 -04001855
Chris Perl0f7a6222014-09-05 15:40:21 -04001856 /*
1857 * If we are asking for any ephemeral port (i.e. port == 0 &&
1858 * transport->xprt.resvport == 0), don't bind. Let the local
1859 * port selection happen implicitly when the socket is used
1860 * (for example at connect time).
1861 *
1862 * This ensures that we can continue to establish TCP
1863 * connections even when all local ephemeral ports are already
1864 * a part of some TCP connection. This makes no difference
1865 * for UDP sockets, but also doens't harm them.
1866 *
1867 * If we're asking for any reserved port (i.e. port == 0 &&
1868 * transport->xprt.resvport == 1) xs_get_srcport above will
1869 * ensure that port is non-zero and we will bind as needed.
1870 */
1871 if (port == 0)
1872 return 0;
1873
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001874 memcpy(&myaddr, &transport->srcaddr, transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001875 do {
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001876 rpc_set_port((struct sockaddr *)&myaddr, port);
1877 err = kernel_bind(sock, (struct sockaddr *)&myaddr,
1878 transport->xprt.addrlen);
Chuck Levera246b012005-08-11 16:25:23 -04001879 if (err == 0) {
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001880 transport->srcport = port;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001881 break;
Chuck Levera246b012005-08-11 16:25:23 -04001882 }
Trond Myklebust67a391d2007-11-05 17:40:58 -05001883 last = port;
Pavel Emelyanovbaaf4e42010-10-04 16:51:56 +04001884 port = xs_next_srcport(transport, port);
Trond Myklebust67a391d2007-11-05 17:40:58 -05001885 if (port > last)
1886 nloop++;
1887 } while (err == -EADDRINUSE && nloop != 2);
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001888
Chuck Lever4232e862010-10-20 11:52:51 -04001889 if (myaddr.ss_family == AF_INET)
Pavel Emelyanovbeb59b62010-10-05 15:53:08 +04001890 dprintk("RPC: %s %pI4:%u: %s (%d)\n", __func__,
1891 &((struct sockaddr_in *)&myaddr)->sin_addr,
1892 port, err ? "failed" : "ok", err);
1893 else
1894 dprintk("RPC: %s %pI6:%u: %s (%d)\n", __func__,
1895 &((struct sockaddr_in6 *)&myaddr)->sin6_addr,
1896 port, err ? "failed" : "ok", err);
Chuck Levera246b012005-08-11 16:25:23 -04001897 return err;
1898}
1899
Chuck Lever176e21e2011-05-09 15:22:44 -04001900/*
1901 * We don't support autobind on AF_LOCAL sockets
1902 */
1903static void xs_local_rpcbind(struct rpc_task *task)
1904{
Trond Myklebustfb43d172016-01-30 16:39:26 -05001905 xprt_set_bound(task->tk_xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04001906}
1907
1908static void xs_local_set_port(struct rpc_xprt *xprt, unsigned short port)
1909{
1910}
Chuck Levera246b012005-08-11 16:25:23 -04001911
Peter Zijlstraed075362006-12-06 20:35:24 -08001912#ifdef CONFIG_DEBUG_LOCK_ALLOC
1913static struct lock_class_key xs_key[2];
1914static struct lock_class_key xs_slock_key[2];
1915
Chuck Lever176e21e2011-05-09 15:22:44 -04001916static inline void xs_reclassify_socketu(struct socket *sock)
1917{
1918 struct sock *sk = sock->sk;
1919
Chuck Lever176e21e2011-05-09 15:22:44 -04001920 sock_lock_init_class_and_name(sk, "slock-AF_LOCAL-RPC",
1921 &xs_slock_key[1], "sk_lock-AF_LOCAL-RPC", &xs_key[1]);
1922}
1923
Chuck Lever8945ee52007-08-06 11:58:04 -04001924static inline void xs_reclassify_socket4(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001925{
1926 struct sock *sk = sock->sk;
Chuck Lever8945ee52007-08-06 11:58:04 -04001927
Chuck Lever8945ee52007-08-06 11:58:04 -04001928 sock_lock_init_class_and_name(sk, "slock-AF_INET-RPC",
1929 &xs_slock_key[0], "sk_lock-AF_INET-RPC", &xs_key[0]);
1930}
Peter Zijlstraed075362006-12-06 20:35:24 -08001931
Chuck Lever8945ee52007-08-06 11:58:04 -04001932static inline void xs_reclassify_socket6(struct socket *sock)
1933{
1934 struct sock *sk = sock->sk;
Peter Zijlstraed075362006-12-06 20:35:24 -08001935
Chuck Lever8945ee52007-08-06 11:58:04 -04001936 sock_lock_init_class_and_name(sk, "slock-AF_INET6-RPC",
1937 &xs_slock_key[1], "sk_lock-AF_INET6-RPC", &xs_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -08001938}
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001939
1940static inline void xs_reclassify_socket(int family, struct socket *sock)
1941{
Hannes Frederic Sowafafc4e12016-04-08 15:11:27 +02001942 if (WARN_ON_ONCE(!sock_allow_reclassification(sock->sk)))
Weston Andros Adamson1b7a1812012-10-23 10:43:39 -04001943 return;
1944
Chuck Lever4232e862010-10-20 11:52:51 -04001945 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04001946 case AF_LOCAL:
1947 xs_reclassify_socketu(sock);
1948 break;
Chuck Lever4232e862010-10-20 11:52:51 -04001949 case AF_INET:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001950 xs_reclassify_socket4(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001951 break;
1952 case AF_INET6:
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001953 xs_reclassify_socket6(sock);
Chuck Lever4232e862010-10-20 11:52:51 -04001954 break;
1955 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001956}
Peter Zijlstraed075362006-12-06 20:35:24 -08001957#else
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001958static inline void xs_reclassify_socket(int family, struct socket *sock)
1959{
1960}
Peter Zijlstraed075362006-12-06 20:35:24 -08001961#endif
1962
NeilBrown93dc41b2013-10-31 16:14:36 +11001963static void xs_dummy_setup_socket(struct work_struct *work)
1964{
1965}
1966
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001967static struct socket *xs_create_sock(struct rpc_xprt *xprt,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001968 struct sock_xprt *transport, int family, int type,
1969 int protocol, bool reuseport)
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001970{
1971 struct socket *sock;
1972 int err;
1973
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001974 err = __sock_create(xprt->xprt_net, family, type, protocol, &sock, 1);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001975 if (err < 0) {
1976 dprintk("RPC: can't create %d transport socket (%d).\n",
1977 protocol, -err);
1978 goto out;
1979 }
Pavel Emelyanov6bc96382010-10-04 16:56:38 +04001980 xs_reclassify_socket(family, sock);
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001981
Trond Myklebust4dda9c82015-02-08 15:00:06 -05001982 if (reuseport)
1983 xs_sock_set_reuseport(sock);
1984
Ben Hutchings4cea2882011-02-22 21:54:34 +00001985 err = xs_bind(transport, sock);
1986 if (err) {
Pavel Emelyanov22f79322010-10-04 16:54:26 +04001987 sock_release(sock);
1988 goto out;
1989 }
1990
1991 return sock;
1992out:
1993 return ERR_PTR(err);
1994}
1995
Chuck Lever176e21e2011-05-09 15:22:44 -04001996static int xs_local_finish_connecting(struct rpc_xprt *xprt,
1997 struct socket *sock)
1998{
1999 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
2000 xprt);
2001
2002 if (!transport->inet) {
2003 struct sock *sk = sock->sk;
2004
2005 write_lock_bh(&sk->sk_callback_lock);
2006
2007 xs_save_old_callbacks(transport, sk);
2008
2009 sk->sk_user_data = xprt;
Trond Myklebusta2648092015-10-06 17:03:00 -04002010 sk->sk_data_ready = xs_data_ready;
Chuck Lever176e21e2011-05-09 15:22:44 -04002011 sk->sk_write_space = xs_udp_write_space;
Eric Dumazetb44114572016-05-12 21:41:39 -07002012 sock_set_flag(sk, SOCK_FASYNC);
Trond Myklebust21180712013-12-31 13:22:59 -05002013 sk->sk_error_report = xs_error_report;
Trond Myklebustc2126152015-08-19 21:46:15 -05002014 sk->sk_allocation = GFP_NOIO;
Chuck Lever176e21e2011-05-09 15:22:44 -04002015
2016 xprt_clear_connected(xprt);
2017
2018 /* Reset to new socket */
2019 transport->sock = sock;
2020 transport->inet = sk;
2021
2022 write_unlock_bh(&sk->sk_callback_lock);
2023 }
2024
Trond Myklebust6c7a64e2018-08-13 16:54:57 -04002025 transport->xmit.offset = 0;
2026
Chuck Lever176e21e2011-05-09 15:22:44 -04002027 /* Tell the socket layer to start connecting... */
2028 xprt->stat.connect_count++;
2029 xprt->stat.connect_start = jiffies;
2030 return kernel_connect(sock, xs_addr(xprt), xprt->addrlen, 0);
2031}
2032
2033/**
2034 * xs_local_setup_socket - create AF_LOCAL socket, connect to a local endpoint
Chuck Lever176e21e2011-05-09 15:22:44 -04002035 * @transport: socket transport to connect
Chuck Lever176e21e2011-05-09 15:22:44 -04002036 */
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002037static int xs_local_setup_socket(struct sock_xprt *transport)
Chuck Lever176e21e2011-05-09 15:22:44 -04002038{
Chuck Lever176e21e2011-05-09 15:22:44 -04002039 struct rpc_xprt *xprt = &transport->xprt;
2040 struct socket *sock;
2041 int status = -EIO;
2042
Chuck Lever176e21e2011-05-09 15:22:44 -04002043 status = __sock_create(xprt->xprt_net, AF_LOCAL,
2044 SOCK_STREAM, 0, &sock, 1);
2045 if (status < 0) {
2046 dprintk("RPC: can't create AF_LOCAL "
2047 "transport socket (%d).\n", -status);
2048 goto out;
2049 }
Stefan Hajnoczid1358912015-12-02 14:17:52 +08002050 xs_reclassify_socket(AF_LOCAL, sock);
Chuck Lever176e21e2011-05-09 15:22:44 -04002051
2052 dprintk("RPC: worker connecting xprt %p via AF_LOCAL to %s\n",
2053 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2054
2055 status = xs_local_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002056 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever176e21e2011-05-09 15:22:44 -04002057 switch (status) {
2058 case 0:
2059 dprintk("RPC: xprt %p connected to %s\n",
2060 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2061 xprt_set_connected(xprt);
Trond Myklebust3601c4a2014-06-30 13:42:19 -04002062 case -ENOBUFS:
Chuck Lever176e21e2011-05-09 15:22:44 -04002063 break;
2064 case -ENOENT:
2065 dprintk("RPC: xprt %p: socket %s does not exist\n",
2066 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2067 break;
Trond Myklebust4a20a982012-12-15 17:02:29 -05002068 case -ECONNREFUSED:
2069 dprintk("RPC: xprt %p: connection refused for %s\n",
2070 xprt, xprt->address_strings[RPC_DISPLAY_ADDR]);
2071 break;
Chuck Lever176e21e2011-05-09 15:22:44 -04002072 default:
2073 printk(KERN_ERR "%s: unhandled error (%d) connecting to %s\n",
2074 __func__, -status,
2075 xprt->address_strings[RPC_DISPLAY_ADDR]);
2076 }
2077
2078out:
2079 xprt_clear_connecting(xprt);
2080 xprt_wake_pending_tasks(xprt, status);
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002081 return status;
2082}
2083
Linus Torvaldsb6669732013-02-28 18:02:55 -08002084static void xs_local_connect(struct rpc_xprt *xprt, struct rpc_task *task)
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002085{
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002086 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2087 int ret;
2088
2089 if (RPC_IS_ASYNC(task)) {
2090 /*
2091 * We want the AF_LOCAL connect to be resolved in the
2092 * filesystem namespace of the process making the rpc
2093 * call. Thus we connect synchronously.
2094 *
2095 * If we want to support asynchronous AF_LOCAL calls,
2096 * we'll need to figure out how to pass a namespace to
2097 * connect.
2098 */
2099 rpc_exit(task, -ENOTCONN);
2100 return;
2101 }
2102 ret = xs_local_setup_socket(transport);
2103 if (ret && !RPC_IS_SOFTCONN(task))
2104 msleep_interruptible(15000);
Chuck Lever176e21e2011-05-09 15:22:44 -04002105}
2106
Jeff Layton3c87ef62015-06-03 16:14:25 -04002107#if IS_ENABLED(CONFIG_SUNRPC_SWAP)
Jeff Laytond6e971d2015-06-03 16:14:28 -04002108/*
2109 * Note that this should be called with XPRT_LOCKED held (or when we otherwise
2110 * know that we have exclusive access to the socket), to guard against
2111 * races with xs_reset_transport.
2112 */
Mel Gormana564b8f2012-07-31 16:45:12 -07002113static void xs_set_memalloc(struct rpc_xprt *xprt)
2114{
2115 struct sock_xprt *transport = container_of(xprt, struct sock_xprt,
2116 xprt);
2117
Jeff Laytond6e971d2015-06-03 16:14:28 -04002118 /*
2119 * If there's no sock, then we have nothing to set. The
2120 * reconnecting process will get it for us.
2121 */
2122 if (!transport->inet)
2123 return;
Jeff Layton8e228132015-06-03 16:14:26 -04002124 if (atomic_read(&xprt->swapper))
Mel Gormana564b8f2012-07-31 16:45:12 -07002125 sk_set_memalloc(transport->inet);
2126}
2127
2128/**
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002129 * xs_enable_swap - Tag this transport as being used for swap.
Mel Gormana564b8f2012-07-31 16:45:12 -07002130 * @xprt: transport to tag
Mel Gormana564b8f2012-07-31 16:45:12 -07002131 *
Jeff Layton8e228132015-06-03 16:14:26 -04002132 * Take a reference to this transport on behalf of the rpc_clnt, and
2133 * optionally mark it for swapping if it wasn't already.
Mel Gormana564b8f2012-07-31 16:45:12 -07002134 */
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002135static int
2136xs_enable_swap(struct rpc_xprt *xprt)
Mel Gormana564b8f2012-07-31 16:45:12 -07002137{
Jeff Laytond6e971d2015-06-03 16:14:28 -04002138 struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt);
Mel Gormana564b8f2012-07-31 16:45:12 -07002139
Jeff Laytond6e971d2015-06-03 16:14:28 -04002140 if (atomic_inc_return(&xprt->swapper) != 1)
2141 return 0;
2142 if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE))
2143 return -ERESTARTSYS;
2144 if (xs->inet)
2145 sk_set_memalloc(xs->inet);
2146 xprt_release_xprt(xprt, NULL);
Jeff Layton8e228132015-06-03 16:14:26 -04002147 return 0;
Mel Gormana564b8f2012-07-31 16:45:12 -07002148}
Jeff Layton8e228132015-06-03 16:14:26 -04002149
2150/**
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002151 * xs_disable_swap - Untag this transport as being used for swap.
Jeff Layton8e228132015-06-03 16:14:26 -04002152 * @xprt: transport to tag
2153 *
2154 * Drop a "swapper" reference to this xprt on behalf of the rpc_clnt. If the
2155 * swapper refcount goes to 0, untag the socket as a memalloc socket.
2156 */
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002157static void
2158xs_disable_swap(struct rpc_xprt *xprt)
Jeff Layton8e228132015-06-03 16:14:26 -04002159{
Jeff Laytond6e971d2015-06-03 16:14:28 -04002160 struct sock_xprt *xs = container_of(xprt, struct sock_xprt, xprt);
Jeff Layton8e228132015-06-03 16:14:26 -04002161
Jeff Laytond6e971d2015-06-03 16:14:28 -04002162 if (!atomic_dec_and_test(&xprt->swapper))
2163 return;
2164 if (wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_KILLABLE))
2165 return;
2166 if (xs->inet)
2167 sk_clear_memalloc(xs->inet);
2168 xprt_release_xprt(xprt, NULL);
Mel Gormana564b8f2012-07-31 16:45:12 -07002169}
Mel Gormana564b8f2012-07-31 16:45:12 -07002170#else
2171static void xs_set_memalloc(struct rpc_xprt *xprt)
2172{
2173}
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002174
2175static int
2176xs_enable_swap(struct rpc_xprt *xprt)
2177{
2178 return -EINVAL;
2179}
2180
2181static void
2182xs_disable_swap(struct rpc_xprt *xprt)
2183{
2184}
Mel Gormana564b8f2012-07-31 16:45:12 -07002185#endif
2186
Chuck Lever16be2d22007-08-06 11:57:38 -04002187static void xs_udp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04002188{
Chuck Lever16be2d22007-08-06 11:57:38 -04002189 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -04002190
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002191 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002192 struct sock *sk = sock->sk;
2193
2194 write_lock_bh(&sk->sk_callback_lock);
2195
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002196 xs_save_old_callbacks(transport, sk);
2197
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002198 sk->sk_user_data = xprt;
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04002199 sk->sk_data_ready = xs_data_ready;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002200 sk->sk_write_space = xs_udp_write_space;
Eric Dumazetb44114572016-05-12 21:41:39 -07002201 sock_set_flag(sk, SOCK_FASYNC);
Trond Myklebustc2126152015-08-19 21:46:15 -05002202 sk->sk_allocation = GFP_NOIO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002203
2204 xprt_set_connected(xprt);
2205
2206 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002207 transport->sock = sock;
2208 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002209
Mel Gormana564b8f2012-07-31 16:45:12 -07002210 xs_set_memalloc(xprt);
2211
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002212 write_unlock_bh(&sk->sk_callback_lock);
2213 }
Chuck Lever470056c2005-08-25 16:25:56 -07002214 xs_udp_do_set_buffer_size(xprt);
Trond Myklebust02910172016-08-04 00:00:33 -04002215
2216 xprt->stat.connect_start = jiffies;
Chuck Lever16be2d22007-08-06 11:57:38 -04002217}
2218
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002219static void xs_udp_setup_socket(struct work_struct *work)
Chuck Levera246b012005-08-11 16:25:23 -04002220{
2221 struct sock_xprt *transport =
2222 container_of(work, struct sock_xprt, connect_worker.work);
2223 struct rpc_xprt *xprt = &transport->xprt;
Colin Ian Kingd099b8a2017-09-18 12:21:14 +01002224 struct socket *sock;
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002225 int status = -EIO;
Chuck Levera246b012005-08-11 16:25:23 -04002226
Pavel Emelyanov8c14ff22010-10-04 16:58:02 +04002227 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002228 xs_addr(xprt)->sa_family, SOCK_DGRAM,
2229 IPPROTO_UDP, false);
Pavel Emelyanovb65c0312010-10-04 16:53:46 +04002230 if (IS_ERR(sock))
Chuck Levera246b012005-08-11 16:25:23 -04002231 goto out;
Chuck Lever68e220b2007-08-06 11:57:48 -04002232
Chuck Leverc740eff2009-08-09 15:09:46 -04002233 dprintk("RPC: worker connecting xprt %p via %s to "
2234 "%s (port %s)\n", xprt,
2235 xprt->address_strings[RPC_DISPLAY_PROTO],
2236 xprt->address_strings[RPC_DISPLAY_ADDR],
2237 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever68e220b2007-08-06 11:57:48 -04002238
2239 xs_udp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002240 trace_rpc_socket_connect(xprt, sock, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002241 status = 0;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002242out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002243 xprt_unlock_connect(xprt, transport);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002244 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002245 xprt_wake_pending_tasks(xprt, status);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002246}
2247
Trond Myklebust4876cc72015-06-19 16:17:57 -04002248/**
2249 * xs_tcp_shutdown - gracefully shut down a TCP socket
2250 * @xprt: transport
2251 *
2252 * Initiates a graceful shutdown of the TCP socket by calling the
2253 * equivalent of shutdown(SHUT_RDWR);
2254 */
2255static void xs_tcp_shutdown(struct rpc_xprt *xprt)
2256{
2257 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2258 struct socket *sock = transport->sock;
Trond Myklebust9b308892018-02-05 10:20:06 -05002259 int skst = transport->inet ? transport->inet->sk_state : TCP_CLOSE;
Trond Myklebust4876cc72015-06-19 16:17:57 -04002260
2261 if (sock == NULL)
2262 return;
Trond Myklebust9b308892018-02-05 10:20:06 -05002263 switch (skst) {
2264 default:
Trond Myklebust4876cc72015-06-19 16:17:57 -04002265 kernel_sock_shutdown(sock, SHUT_RDWR);
2266 trace_rpc_socket_shutdown(xprt, sock);
Trond Myklebust9b308892018-02-05 10:20:06 -05002267 break;
2268 case TCP_CLOSE:
2269 case TCP_TIME_WAIT:
Trond Myklebust4876cc72015-06-19 16:17:57 -04002270 xs_reset_transport(transport);
Trond Myklebust9b308892018-02-05 10:20:06 -05002271 }
Trond Myklebust4876cc72015-06-19 16:17:57 -04002272}
2273
Trond Myklebust8d1b8c62017-02-08 11:17:53 -05002274static void xs_tcp_set_socket_timeouts(struct rpc_xprt *xprt,
2275 struct socket *sock)
2276{
Trond Myklebust7196dbb2017-02-08 11:17:54 -05002277 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2278 unsigned int keepidle;
2279 unsigned int keepcnt;
Trond Myklebust8d1b8c62017-02-08 11:17:53 -05002280 unsigned int opt_on = 1;
2281 unsigned int timeo;
2282
Trond Myklebust7196dbb2017-02-08 11:17:54 -05002283 spin_lock_bh(&xprt->transport_lock);
2284 keepidle = DIV_ROUND_UP(xprt->timeout->to_initval, HZ);
2285 keepcnt = xprt->timeout->to_retries + 1;
2286 timeo = jiffies_to_msecs(xprt->timeout->to_initval) *
2287 (xprt->timeout->to_retries + 1);
2288 clear_bit(XPRT_SOCK_UPD_TIMEOUT, &transport->sock_state);
2289 spin_unlock_bh(&xprt->transport_lock);
2290
Trond Myklebust8d1b8c62017-02-08 11:17:53 -05002291 /* TCP Keepalive options */
2292 kernel_setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE,
2293 (char *)&opt_on, sizeof(opt_on));
2294 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPIDLE,
2295 (char *)&keepidle, sizeof(keepidle));
2296 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPINTVL,
2297 (char *)&keepidle, sizeof(keepidle));
2298 kernel_setsockopt(sock, SOL_TCP, TCP_KEEPCNT,
2299 (char *)&keepcnt, sizeof(keepcnt));
2300
2301 /* TCP user timeout (see RFC5482) */
Trond Myklebust8d1b8c62017-02-08 11:17:53 -05002302 kernel_setsockopt(sock, SOL_TCP, TCP_USER_TIMEOUT,
2303 (char *)&timeo, sizeof(timeo));
2304}
2305
Trond Myklebust7196dbb2017-02-08 11:17:54 -05002306static void xs_tcp_set_connect_timeout(struct rpc_xprt *xprt,
2307 unsigned long connect_timeout,
2308 unsigned long reconnect_timeout)
2309{
2310 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2311 struct rpc_timeout to;
2312 unsigned long initval;
2313
2314 spin_lock_bh(&xprt->transport_lock);
2315 if (reconnect_timeout < xprt->max_reconnect_timeout)
2316 xprt->max_reconnect_timeout = reconnect_timeout;
2317 if (connect_timeout < xprt->connect_timeout) {
2318 memcpy(&to, xprt->timeout, sizeof(to));
2319 initval = DIV_ROUND_UP(connect_timeout, to.to_retries + 1);
2320 /* Arbitrary lower limit */
2321 if (initval < XS_TCP_INIT_REEST_TO << 1)
2322 initval = XS_TCP_INIT_REEST_TO << 1;
2323 to.to_initval = initval;
2324 to.to_maxval = initval;
2325 memcpy(&transport->tcp_timeout, &to,
2326 sizeof(transport->tcp_timeout));
2327 xprt->timeout = &transport->tcp_timeout;
2328 xprt->connect_timeout = connect_timeout;
2329 }
2330 set_bit(XPRT_SOCK_UPD_TIMEOUT, &transport->sock_state);
2331 spin_unlock_bh(&xprt->transport_lock);
2332}
2333
Chuck Lever16be2d22007-08-06 11:57:38 -04002334static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002335{
Chuck Lever16be2d22007-08-06 11:57:38 -04002336 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002337 int ret = -ENOTCONN;
Chuck Leveredb267a2006-08-22 20:06:18 -04002338
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002339 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002340 struct sock *sk = sock->sk;
NeilBrownd88e4d82016-08-04 16:24:28 +10002341 unsigned int addr_pref = IPV6_PREFER_SRC_PUBLIC;
Trond Myklebust7f260e82013-09-24 11:25:22 -04002342
NeilBrownd88e4d82016-08-04 16:24:28 +10002343 /* Avoid temporary address, they are bad for long-lived
2344 * connections such as NFS mounts.
2345 * RFC4941, section 3.6 suggests that:
2346 * Individual applications, which have specific
2347 * knowledge about the normal duration of connections,
2348 * MAY override this as appropriate.
2349 */
2350 kernel_setsockopt(sock, SOL_IPV6, IPV6_ADDR_PREFERENCES,
2351 (char *)&addr_pref, sizeof(addr_pref));
2352
Trond Myklebust8d1b8c62017-02-08 11:17:53 -05002353 xs_tcp_set_socket_timeouts(xprt, sock);
Trond Myklebust775f06a2015-06-20 15:31:54 -04002354
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002355 write_lock_bh(&sk->sk_callback_lock);
2356
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04002357 xs_save_old_callbacks(transport, sk);
2358
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002359 sk->sk_user_data = xprt;
Trond Myklebust5157b952016-05-29 10:13:24 -04002360 sk->sk_data_ready = xs_data_ready;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002361 sk->sk_state_change = xs_tcp_state_change;
2362 sk->sk_write_space = xs_tcp_write_space;
Eric Dumazetb44114572016-05-12 21:41:39 -07002363 sock_set_flag(sk, SOCK_FASYNC);
Trond Myklebust21180712013-12-31 13:22:59 -05002364 sk->sk_error_report = xs_error_report;
Trond Myklebustc2126152015-08-19 21:46:15 -05002365 sk->sk_allocation = GFP_NOIO;
Chuck Lever3167e122005-08-25 16:25:55 -07002366
2367 /* socket options */
Chuck Lever3167e122005-08-25 16:25:55 -07002368 sock_reset_flag(sk, SOCK_LINGER);
Chuck Lever3167e122005-08-25 16:25:55 -07002369 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002370
2371 xprt_clear_connected(xprt);
2372
2373 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002374 transport->sock = sock;
2375 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002376
2377 write_unlock_bh(&sk->sk_callback_lock);
2378 }
2379
Trond Myklebust01d37c42009-03-11 14:09:39 -04002380 if (!xprt_bound(xprt))
Trond Myklebustfe19a962011-03-18 20:21:23 -04002381 goto out;
Trond Myklebust01d37c42009-03-11 14:09:39 -04002382
Mel Gormana564b8f2012-07-31 16:45:12 -07002383 xs_set_memalloc(xprt);
2384
Trond Myklebuste1806c72018-08-13 16:50:49 -04002385 /* Reset TCP record info */
2386 transport->recv.offset = 0;
2387 transport->recv.len = 0;
2388 transport->recv.copied = 0;
2389 transport->recv.flags = TCP_RCV_COPY_FRAGHDR | TCP_RCV_COPY_XID;
Trond Myklebust6c7a64e2018-08-13 16:54:57 -04002390 transport->xmit.offset = 0;
Trond Myklebuste1806c72018-08-13 16:50:49 -04002391
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002392 /* Tell the socket layer to start connecting... */
Chuck Lever262ca072006-03-20 13:44:16 -05002393 xprt->stat.connect_count++;
2394 xprt->stat.connect_start = jiffies;
Trond Myklebust0fdea1e2015-09-16 23:43:17 -04002395 set_bit(XPRT_SOCK_CONNECTING, &transport->sock_state);
Trond Myklebustfe19a962011-03-18 20:21:23 -04002396 ret = kernel_connect(sock, xs_addr(xprt), xprt->addrlen, O_NONBLOCK);
2397 switch (ret) {
2398 case 0:
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002399 xs_set_srcport(transport, sock);
Gustavo A. R. Silvae9d47632017-10-20 11:48:30 -05002400 /* fall through */
Trond Myklebustfe19a962011-03-18 20:21:23 -04002401 case -EINPROGRESS:
2402 /* SYN_SENT! */
Trond Myklebustfe19a962011-03-18 20:21:23 -04002403 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2404 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Trond Myklebust1f4c17a2016-08-01 13:36:08 -04002405 break;
2406 case -EADDRNOTAVAIL:
2407 /* Source port number is unavailable. Try a new one! */
2408 transport->srcport = 0;
Trond Myklebustfe19a962011-03-18 20:21:23 -04002409 }
2410out:
2411 return ret;
Chuck Lever16be2d22007-08-06 11:57:38 -04002412}
2413
2414/**
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002415 * xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint
Chuck Lever16be2d22007-08-06 11:57:38 -04002416 *
2417 * Invoked by a work queue tasklet.
2418 */
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002419static void xs_tcp_setup_socket(struct work_struct *work)
Chuck Lever16be2d22007-08-06 11:57:38 -04002420{
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002421 struct sock_xprt *transport =
2422 container_of(work, struct sock_xprt, connect_worker.work);
Chuck Lever16be2d22007-08-06 11:57:38 -04002423 struct socket *sock = transport->sock;
Pavel Emelyanova9f5f0f2010-10-04 16:52:25 +04002424 struct rpc_xprt *xprt = &transport->xprt;
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002425 int status = -EIO;
Chuck Lever16be2d22007-08-06 11:57:38 -04002426
Chuck Lever16be2d22007-08-06 11:57:38 -04002427 if (!sock) {
Pavel Emelyanovcdd518d2010-10-04 16:57:40 +04002428 sock = xs_create_sock(xprt, transport,
Trond Myklebust4dda9c82015-02-08 15:00:06 -05002429 xs_addr(xprt)->sa_family, SOCK_STREAM,
2430 IPPROTO_TCP, true);
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002431 if (IS_ERR(sock)) {
2432 status = PTR_ERR(sock);
Chuck Lever16be2d22007-08-06 11:57:38 -04002433 goto out;
2434 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002435 }
2436
Chuck Leverc740eff2009-08-09 15:09:46 -04002437 dprintk("RPC: worker connecting xprt %p via %s to "
2438 "%s (port %s)\n", xprt,
2439 xprt->address_strings[RPC_DISPLAY_PROTO],
2440 xprt->address_strings[RPC_DISPLAY_ADDR],
2441 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever16be2d22007-08-06 11:57:38 -04002442
2443 status = xs_tcp_finish_connecting(xprt, sock);
Trond Myklebust40b5ea02013-09-04 12:16:23 -04002444 trace_rpc_socket_connect(xprt, sock, status);
Chuck Lever46121cf2007-01-31 12:14:08 -05002445 dprintk("RPC: %p connect status %d connected %d sock state %d\n",
2446 xprt, -status, xprt_connected(xprt),
2447 sock->sk->sk_state);
Trond Myklebust2a491992009-03-11 14:38:00 -04002448 switch (status) {
Trond Myklebustf75e6742009-04-21 17:18:20 -04002449 default:
2450 printk("%s: connect returned unhandled error %d\n",
2451 __func__, status);
Gustavo A. R. Silvae9d47632017-10-20 11:48:30 -05002452 /* fall through */
Trond Myklebustf75e6742009-04-21 17:18:20 -04002453 case -EADDRNOTAVAIL:
2454 /* We're probably in TIME_WAIT. Get rid of existing socket,
2455 * and retry
2456 */
Trond Myklebusta519fc72012-09-12 16:49:15 -04002457 xs_tcp_force_close(xprt);
Trond Myklebust88b5ed72009-06-17 13:22:57 -07002458 break;
Trond Myklebust2a491992009-03-11 14:38:00 -04002459 case 0:
2460 case -EINPROGRESS:
2461 case -EALREADY:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002462 xprt_unlock_connect(xprt, transport);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002463 return;
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002464 case -EINVAL:
2465 /* Happens, for instance, if the user specified a link
2466 * local IPv6 address without a scope-id.
2467 */
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002468 case -ECONNREFUSED:
2469 case -ECONNRESET:
Trond Myklebusteb5b46f2017-11-30 07:21:33 -05002470 case -ENETDOWN:
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05002471 case -ENETUNREACH:
Trond Myklebust4ba161a2017-11-24 12:00:24 -05002472 case -EHOSTUNREACH:
Trond Myklebust3913c782015-02-08 21:44:04 -05002473 case -EADDRINUSE:
Trond Myklebust3601c4a2014-06-30 13:42:19 -04002474 case -ENOBUFS:
NeilBrown6ea44ad2017-05-25 17:00:32 +10002475 /*
2476 * xs_tcp_force_close() wakes tasks with -EIO.
2477 * We need to wake them first to ensure the
2478 * correct error code.
2479 */
2480 xprt_wake_pending_tasks(xprt, status);
Trond Myklebust4efdd922015-02-08 15:34:28 -05002481 xs_tcp_force_close(xprt);
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05002482 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04002483 }
Trond Myklebust2a491992009-03-11 14:38:00 -04002484 status = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -04002485out:
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002486 xprt_unlock_connect(xprt, transport);
Chuck Lever2226feb2005-08-11 16:25:38 -04002487 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04002488 xprt_wake_pending_tasks(xprt, status);
Chuck Levera246b012005-08-11 16:25:23 -04002489}
2490
Trond Myklebust02910172016-08-04 00:00:33 -04002491static unsigned long xs_reconnect_delay(const struct rpc_xprt *xprt)
2492{
2493 unsigned long start, now = jiffies;
2494
2495 start = xprt->stat.connect_start + xprt->reestablish_timeout;
2496 if (time_after(start, now))
2497 return start - now;
2498 return 0;
2499}
2500
Trond Myklebust3851f1c2016-08-04 00:08:45 -04002501static void xs_reconnect_backoff(struct rpc_xprt *xprt)
2502{
2503 xprt->reestablish_timeout <<= 1;
2504 if (xprt->reestablish_timeout > xprt->max_reconnect_timeout)
2505 xprt->reestablish_timeout = xprt->max_reconnect_timeout;
2506 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2507 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2508}
2509
Chuck Lever68e220b2007-08-06 11:57:48 -04002510/**
Chuck Lever9903cd12005-08-11 16:25:26 -04002511 * xs_connect - connect a socket to a remote endpoint
Trond Myklebust1b092092013-01-08 09:26:49 -05002512 * @xprt: pointer to transport structure
Chuck Lever9903cd12005-08-11 16:25:26 -04002513 * @task: address of RPC task that manages state of connect request
2514 *
2515 * TCP: If the remote end dropped the connection, delay reconnecting.
Chuck Lever03bf4b72005-08-25 16:25:55 -07002516 *
2517 * UDP socket connects are synchronous, but we use a work queue anyway
2518 * to guarantee that even unprivileged user processes can set up a
2519 * socket on a privileged port.
2520 *
2521 * If a UDP socket connect fails, the delay behavior here prevents
2522 * retry floods (hard mounts).
Chuck Lever9903cd12005-08-11 16:25:26 -04002523 */
Trond Myklebust1b092092013-01-08 09:26:49 -05002524static void xs_connect(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -04002525{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002526 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust02910172016-08-04 00:00:33 -04002527 unsigned long delay = 0;
Chuck Levera246b012005-08-11 16:25:23 -04002528
Trond Myklebust718ba5b2015-02-08 18:19:25 -05002529 WARN_ON_ONCE(!xprt_lock_connect(xprt, task, transport));
2530
Trond Myklebust99b1a4c2015-08-13 15:33:51 -04002531 if (transport->sock != NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002532 dprintk("RPC: xs_connect delayed xprt %p for %lu "
2533 "seconds\n",
Chuck Lever03bf4b72005-08-25 16:25:55 -07002534 xprt, xprt->reestablish_timeout / HZ);
Trond Myklebust99b1a4c2015-08-13 15:33:51 -04002535
2536 /* Start by resetting any existing state */
2537 xs_reset_transport(transport);
2538
Trond Myklebust02910172016-08-04 00:00:33 -04002539 delay = xs_reconnect_delay(xprt);
Trond Myklebust3851f1c2016-08-04 00:08:45 -04002540 xs_reconnect_backoff(xprt);
Trond Myklebust02910172016-08-04 00:00:33 -04002541
Trond Myklebust02910172016-08-04 00:00:33 -04002542 } else
Chuck Lever46121cf2007-01-31 12:14:08 -05002543 dprintk("RPC: xs_connect scheduled xprt %p\n", xprt);
Trond Myklebust02910172016-08-04 00:00:33 -04002544
2545 queue_delayed_work(xprtiod_workqueue,
2546 &transport->connect_worker,
2547 delay);
Chuck Levera246b012005-08-11 16:25:23 -04002548}
2549
Chuck Lever262ca072006-03-20 13:44:16 -05002550/**
Chuck Lever176e21e2011-05-09 15:22:44 -04002551 * xs_local_print_stats - display AF_LOCAL socket-specifc stats
2552 * @xprt: rpc_xprt struct containing statistics
2553 * @seq: output file
2554 *
2555 */
2556static void xs_local_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2557{
2558 long idle_time = 0;
2559
2560 if (xprt_connected(xprt))
2561 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2562
2563 seq_printf(seq, "\txprt:\tlocal %lu %lu %lu %ld %lu %lu %lu "
Andy Adamson15a45202012-02-14 16:19:18 -05002564 "%llu %llu %lu %llu %llu\n",
Chuck Lever176e21e2011-05-09 15:22:44 -04002565 xprt->stat.bind_count,
2566 xprt->stat.connect_count,
2567 xprt->stat.connect_time,
2568 idle_time,
2569 xprt->stat.sends,
2570 xprt->stat.recvs,
2571 xprt->stat.bad_xids,
2572 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002573 xprt->stat.bklog_u,
2574 xprt->stat.max_slots,
2575 xprt->stat.sending_u,
2576 xprt->stat.pending_u);
Chuck Lever176e21e2011-05-09 15:22:44 -04002577}
2578
2579/**
Chuck Lever262ca072006-03-20 13:44:16 -05002580 * xs_udp_print_stats - display UDP socket-specifc stats
2581 * @xprt: rpc_xprt struct containing statistics
2582 * @seq: output file
2583 *
2584 */
2585static void xs_udp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2586{
Chuck Leverc8475462006-12-05 16:35:26 -05002587 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2588
Andy Adamson15a45202012-02-14 16:19:18 -05002589 seq_printf(seq, "\txprt:\tudp %u %lu %lu %lu %lu %llu %llu "
2590 "%lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002591 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002592 xprt->stat.bind_count,
2593 xprt->stat.sends,
2594 xprt->stat.recvs,
2595 xprt->stat.bad_xids,
2596 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002597 xprt->stat.bklog_u,
2598 xprt->stat.max_slots,
2599 xprt->stat.sending_u,
2600 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002601}
2602
2603/**
2604 * xs_tcp_print_stats - display TCP socket-specifc stats
2605 * @xprt: rpc_xprt struct containing statistics
2606 * @seq: output file
2607 *
2608 */
2609static void xs_tcp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2610{
Chuck Leverc8475462006-12-05 16:35:26 -05002611 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262ca072006-03-20 13:44:16 -05002612 long idle_time = 0;
2613
2614 if (xprt_connected(xprt))
2615 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2616
Andy Adamson15a45202012-02-14 16:19:18 -05002617 seq_printf(seq, "\txprt:\ttcp %u %lu %lu %lu %ld %lu %lu %lu "
2618 "%llu %llu %lu %llu %llu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002619 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002620 xprt->stat.bind_count,
2621 xprt->stat.connect_count,
2622 xprt->stat.connect_time,
2623 idle_time,
2624 xprt->stat.sends,
2625 xprt->stat.recvs,
2626 xprt->stat.bad_xids,
2627 xprt->stat.req_u,
Andy Adamson15a45202012-02-14 16:19:18 -05002628 xprt->stat.bklog_u,
2629 xprt->stat.max_slots,
2630 xprt->stat.sending_u,
2631 xprt->stat.pending_u);
Chuck Lever262ca072006-03-20 13:44:16 -05002632}
2633
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002634/*
2635 * Allocate a bunch of pages for a scratch buffer for the rpc code. The reason
2636 * we allocate pages instead doing a kmalloc like rpc_malloc is because we want
2637 * to use the server side send routines.
2638 */
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04002639static int bc_malloc(struct rpc_task *task)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002640{
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04002641 struct rpc_rqst *rqst = task->tk_rqstp;
2642 size_t size = rqst->rq_callsize;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002643 struct page *page;
2644 struct rpc_buffer *buf;
2645
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04002646 if (size > PAGE_SIZE - sizeof(struct rpc_buffer)) {
2647 WARN_ONCE(1, "xprtsock: large bc buffer request (size %zu)\n",
2648 size);
2649 return -EINVAL;
2650 }
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002651
Weston Andros Adamsonb8a13d02012-10-23 10:43:43 -04002652 page = alloc_page(GFP_KERNEL);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002653 if (!page)
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04002654 return -ENOMEM;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002655
2656 buf = page_address(page);
2657 buf->len = PAGE_SIZE;
2658
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04002659 rqst->rq_buffer = buf->data;
Jeff Layton18e601d2016-10-24 20:33:23 -04002660 rqst->rq_rbuffer = (char *)rqst->rq_buffer + rqst->rq_callsize;
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04002661 return 0;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002662}
2663
2664/*
2665 * Free the space allocated in the bc_alloc routine
2666 */
Chuck Lever3435c742016-09-15 10:55:29 -04002667static void bc_free(struct rpc_task *task)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002668{
Chuck Lever3435c742016-09-15 10:55:29 -04002669 void *buffer = task->tk_rqstp->rq_buffer;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002670 struct rpc_buffer *buf;
2671
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002672 buf = container_of(buffer, struct rpc_buffer, data);
2673 free_page((unsigned long)buf);
2674}
2675
2676/*
2677 * Use the svc_sock to send the callback. Must be called with svsk->sk_mutex
2678 * held. Borrows heavily from svc_tcp_sendto and xs_tcp_send_request.
2679 */
2680static int bc_sendto(struct rpc_rqst *req)
2681{
2682 int len;
2683 struct xdr_buf *xbufp = &req->rq_snd_buf;
2684 struct rpc_xprt *xprt = req->rq_xprt;
2685 struct sock_xprt *transport =
2686 container_of(xprt, struct sock_xprt, xprt);
2687 struct socket *sock = transport->sock;
2688 unsigned long headoff;
2689 unsigned long tailoff;
2690
Chuck Lever61677ee2011-05-09 15:22:34 -04002691 xs_encode_stream_record_marker(xbufp);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002692
2693 tailoff = (unsigned long)xbufp->tail[0].iov_base & ~PAGE_MASK;
2694 headoff = (unsigned long)xbufp->head[0].iov_base & ~PAGE_MASK;
2695 len = svc_send_common(sock, xbufp,
2696 virt_to_page(xbufp->head[0].iov_base), headoff,
2697 xbufp->tail[0].iov_base, tailoff);
2698
2699 if (len != xbufp->len) {
2700 printk(KERN_NOTICE "Error sending entire callback!\n");
2701 len = -EAGAIN;
2702 }
2703
2704 return len;
2705}
2706
2707/*
2708 * The send routine. Borrows from svc_send
2709 */
2710static int bc_send_request(struct rpc_task *task)
2711{
2712 struct rpc_rqst *req = task->tk_rqstp;
2713 struct svc_xprt *xprt;
Andrzej Hajda7fc56132015-09-24 16:00:09 +02002714 int len;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002715
2716 dprintk("sending request with xid: %08x\n", ntohl(req->rq_xid));
2717 /*
2718 * Get the server socket associated with this callback xprt
2719 */
2720 xprt = req->rq_xprt->bc_xprt;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002721
2722 /*
2723 * Grab the mutex to serialize data as the connection is shared
2724 * with the fore channel
2725 */
2726 if (!mutex_trylock(&xprt->xpt_mutex)) {
2727 rpc_sleep_on(&xprt->xpt_bc_pending, task, NULL);
2728 if (!mutex_trylock(&xprt->xpt_mutex))
2729 return -EAGAIN;
2730 rpc_wake_up_queued_task(&xprt->xpt_bc_pending, task);
2731 }
2732 if (test_bit(XPT_DEAD, &xprt->xpt_flags))
2733 len = -ENOTCONN;
2734 else
2735 len = bc_sendto(req);
2736 mutex_unlock(&xprt->xpt_mutex);
2737
2738 if (len > 0)
2739 len = 0;
2740
2741 return len;
2742}
2743
2744/*
2745 * The close routine. Since this is client initiated, we do nothing
2746 */
2747
2748static void bc_close(struct rpc_xprt *xprt)
2749{
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002750}
2751
2752/*
2753 * The xprt destroy routine. Again, because this connection is client
2754 * initiated, we do nothing
2755 */
2756
2757static void bc_destroy(struct rpc_xprt *xprt)
2758{
Kinglong Mee47f72ef2014-03-24 11:58:16 +08002759 dprintk("RPC: bc_destroy xprt %p\n", xprt);
2760
2761 xs_xprt_free(xprt);
2762 module_put(THIS_MODULE);
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002763}
2764
Chuck Leverd31ae252017-08-01 12:00:39 -04002765static const struct rpc_xprt_ops xs_local_ops = {
Chuck Lever176e21e2011-05-09 15:22:44 -04002766 .reserve_xprt = xprt_reserve_xprt,
2767 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002768 .alloc_slot = xprt_alloc_slot,
Chuck Levera9cde232018-05-04 15:34:59 -04002769 .free_slot = xprt_free_slot,
Chuck Lever176e21e2011-05-09 15:22:44 -04002770 .rpcbind = xs_local_rpcbind,
2771 .set_port = xs_local_set_port,
J. Bruce Fieldsdc107402013-02-20 17:52:19 -05002772 .connect = xs_local_connect,
Chuck Lever176e21e2011-05-09 15:22:44 -04002773 .buf_alloc = rpc_malloc,
2774 .buf_free = rpc_free,
2775 .send_request = xs_local_send_request,
2776 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2777 .close = xs_close,
Trond Myklebusta1311d82013-10-31 09:18:49 -04002778 .destroy = xs_destroy,
Chuck Lever176e21e2011-05-09 15:22:44 -04002779 .print_stats = xs_local_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002780 .enable_swap = xs_enable_swap,
2781 .disable_swap = xs_disable_swap,
Chuck Lever176e21e2011-05-09 15:22:44 -04002782};
2783
Chuck Leverd31ae252017-08-01 12:00:39 -04002784static const struct rpc_xprt_ops xs_udp_ops = {
Chuck Lever43118c22005-08-25 16:25:49 -07002785 .set_buffer_size = xs_udp_set_buffer_size,
Chuck Lever12a80462005-08-25 16:25:51 -07002786 .reserve_xprt = xprt_reserve_xprt_cong,
Chuck Lever49e9a892005-08-25 16:25:51 -07002787 .release_xprt = xprt_release_xprt_cong,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002788 .alloc_slot = xprt_alloc_slot,
Chuck Levera9cde232018-05-04 15:34:59 -04002789 .free_slot = xprt_free_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002790 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002791 .set_port = xs_set_port,
Chuck Lever9903cd12005-08-11 16:25:26 -04002792 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002793 .buf_alloc = rpc_malloc,
2794 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002795 .send_request = xs_udp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002796 .set_retrans_timeout = xprt_set_retrans_timeout_rtt,
Chuck Lever46c0ee82005-08-25 16:25:52 -07002797 .timer = xs_udp_timer,
Chuck Levera58dd392005-08-25 16:25:53 -07002798 .release_request = xprt_release_rqst_cong,
Chuck Lever262965f2005-08-11 16:25:56 -04002799 .close = xs_close,
2800 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002801 .print_stats = xs_udp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002802 .enable_swap = xs_enable_swap,
2803 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002804 .inject_disconnect = xs_inject_disconnect,
Chuck Lever262965f2005-08-11 16:25:56 -04002805};
2806
Chuck Leverd31ae252017-08-01 12:00:39 -04002807static const struct rpc_xprt_ops xs_tcp_ops = {
Chuck Lever12a80462005-08-25 16:25:51 -07002808 .reserve_xprt = xprt_reserve_xprt,
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002809 .release_xprt = xs_tcp_release_xprt,
Trond Myklebustf39c1bf2012-09-07 11:08:50 -04002810 .alloc_slot = xprt_lock_and_alloc_slot,
Chuck Levera9cde232018-05-04 15:34:59 -04002811 .free_slot = xprt_free_slot,
Chuck Lever45160d62007-07-01 12:13:17 -04002812 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002813 .set_port = xs_set_port,
Trond Myklebust0b9e7942010-04-16 16:41:57 -04002814 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002815 .buf_alloc = rpc_malloc,
2816 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002817 .send_request = xs_tcp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002818 .set_retrans_timeout = xprt_set_retrans_timeout_def,
Trond Myklebustc627d312015-02-10 11:06:04 -05002819 .close = xs_tcp_shutdown,
Chuck Lever9903cd12005-08-11 16:25:26 -04002820 .destroy = xs_destroy,
Trond Myklebust7196dbb2017-02-08 11:17:54 -05002821 .set_connect_timeout = xs_tcp_set_connect_timeout,
Chuck Lever262ca072006-03-20 13:44:16 -05002822 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002823 .enable_swap = xs_enable_swap,
2824 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002825 .inject_disconnect = xs_inject_disconnect,
Chuck Lever42e5c3e2015-10-24 17:27:35 -04002826#ifdef CONFIG_SUNRPC_BACKCHANNEL
2827 .bc_setup = xprt_setup_bc,
Chuck Lever76566772015-10-24 17:28:32 -04002828 .bc_up = xs_tcp_bc_up,
Chuck Lever6b26cc82016-05-02 14:40:40 -04002829 .bc_maxpayload = xs_tcp_bc_maxpayload,
Chuck Lever42e5c3e2015-10-24 17:27:35 -04002830 .bc_free_rqst = xprt_free_bc_rqst,
2831 .bc_destroy = xprt_destroy_bc,
2832#endif
Chuck Levera246b012005-08-11 16:25:23 -04002833};
2834
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002835/*
2836 * The rpc_xprt_ops for the server backchannel
2837 */
2838
Chuck Leverd31ae252017-08-01 12:00:39 -04002839static const struct rpc_xprt_ops bc_tcp_ops = {
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002840 .reserve_xprt = xprt_reserve_xprt,
2841 .release_xprt = xprt_release_xprt,
Bryan Schumaker84e28a32012-09-24 13:39:01 -04002842 .alloc_slot = xprt_alloc_slot,
Chuck Levera9cde232018-05-04 15:34:59 -04002843 .free_slot = xprt_free_slot,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002844 .buf_alloc = bc_malloc,
2845 .buf_free = bc_free,
2846 .send_request = bc_send_request,
2847 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2848 .close = bc_close,
2849 .destroy = bc_destroy,
2850 .print_stats = xs_tcp_print_stats,
Jeff Laytond67fa4d2015-06-03 16:14:29 -04002851 .enable_swap = xs_enable_swap,
2852 .disable_swap = xs_disable_swap,
Chuck Lever4a068252015-05-11 14:02:25 -04002853 .inject_disconnect = xs_inject_disconnect,
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002854};
2855
Chuck Lever92476852010-10-20 11:53:01 -04002856static int xs_init_anyaddr(const int family, struct sockaddr *sap)
2857{
2858 static const struct sockaddr_in sin = {
2859 .sin_family = AF_INET,
2860 .sin_addr.s_addr = htonl(INADDR_ANY),
2861 };
2862 static const struct sockaddr_in6 sin6 = {
2863 .sin6_family = AF_INET6,
2864 .sin6_addr = IN6ADDR_ANY_INIT,
2865 };
2866
2867 switch (family) {
Chuck Lever176e21e2011-05-09 15:22:44 -04002868 case AF_LOCAL:
2869 break;
Chuck Lever92476852010-10-20 11:53:01 -04002870 case AF_INET:
2871 memcpy(sap, &sin, sizeof(sin));
2872 break;
2873 case AF_INET6:
2874 memcpy(sap, &sin6, sizeof(sin6));
2875 break;
2876 default:
2877 dprintk("RPC: %s: Bad address family\n", __func__);
2878 return -EAFNOSUPPORT;
2879 }
2880 return 0;
2881}
2882
\"Talpey, Thomas\3c341b0b2007-09-10 13:47:07 -04002883static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args,
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002884 unsigned int slot_table_size,
2885 unsigned int max_slot_table_size)
Chuck Leverc8541ec2006-10-17 14:44:27 -04002886{
2887 struct rpc_xprt *xprt;
Chuck Leverffc2e512006-12-05 16:35:11 -05002888 struct sock_xprt *new;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002889
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002890 if (args->addrlen > sizeof(xprt->addr)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002891 dprintk("RPC: xs_setup_xprt: address too large\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002892 return ERR_PTR(-EBADF);
2893 }
2894
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002895 xprt = xprt_alloc(args->net, sizeof(*new), slot_table_size,
2896 max_slot_table_size);
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002897 if (xprt == NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002898 dprintk("RPC: xs_setup_xprt: couldn't allocate "
2899 "rpc_xprt\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002900 return ERR_PTR(-ENOMEM);
2901 }
2902
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04002903 new = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebustedc1b012015-10-05 10:53:49 -04002904 mutex_init(&new->recv_mutex);
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002905 memcpy(&xprt->addr, args->dstaddr, args->addrlen);
2906 xprt->addrlen = args->addrlen;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02002907 if (args->srcaddr)
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002908 memcpy(&new->srcaddr, args->srcaddr, args->addrlen);
Chuck Lever92476852010-10-20 11:53:01 -04002909 else {
2910 int err;
2911 err = xs_init_anyaddr(args->dstaddr->sa_family,
2912 (struct sockaddr *)&new->srcaddr);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002913 if (err != 0) {
2914 xprt_free(xprt);
Chuck Lever92476852010-10-20 11:53:01 -04002915 return ERR_PTR(err);
Stanislav Kinsbursky2aa13532011-11-10 14:33:23 +03002916 }
Chuck Lever92476852010-10-20 11:53:01 -04002917 }
Chuck Leverc8541ec2006-10-17 14:44:27 -04002918
2919 return xprt;
2920}
2921
Chuck Lever176e21e2011-05-09 15:22:44 -04002922static const struct rpc_timeout xs_local_default_timeout = {
2923 .to_initval = 10 * HZ,
2924 .to_maxval = 10 * HZ,
2925 .to_retries = 2,
2926};
2927
2928/**
2929 * xs_setup_local - Set up transport to use an AF_LOCAL socket
2930 * @args: rpc transport creation arguments
2931 *
2932 * AF_LOCAL is a "tpi_cots_ord" transport, just like TCP
2933 */
2934static struct rpc_xprt *xs_setup_local(struct xprt_create *args)
2935{
2936 struct sockaddr_un *sun = (struct sockaddr_un *)args->dstaddr;
2937 struct sock_xprt *transport;
2938 struct rpc_xprt *xprt;
2939 struct rpc_xprt *ret;
2940
Trond Myklebustd9ba1312011-07-17 18:11:30 -04002941 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
2942 xprt_max_tcp_slot_table_entries);
Chuck Lever176e21e2011-05-09 15:22:44 -04002943 if (IS_ERR(xprt))
2944 return xprt;
2945 transport = container_of(xprt, struct sock_xprt, xprt);
2946
2947 xprt->prot = 0;
2948 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2949 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2950
2951 xprt->bind_timeout = XS_BIND_TO;
2952 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2953 xprt->idle_timeout = XS_IDLE_DISC_TO;
2954
2955 xprt->ops = &xs_local_ops;
2956 xprt->timeout = &xs_local_default_timeout;
2957
Trond Myklebusta2648092015-10-06 17:03:00 -04002958 INIT_WORK(&transport->recv_worker, xs_local_data_receive_workfn);
NeilBrown93dc41b2013-10-31 16:14:36 +11002959 INIT_DELAYED_WORK(&transport->connect_worker,
2960 xs_dummy_setup_socket);
2961
Chuck Lever176e21e2011-05-09 15:22:44 -04002962 switch (sun->sun_family) {
2963 case AF_LOCAL:
2964 if (sun->sun_path[0] != '/') {
2965 dprintk("RPC: bad AF_LOCAL address: %s\n",
2966 sun->sun_path);
2967 ret = ERR_PTR(-EINVAL);
2968 goto out_err;
2969 }
2970 xprt_set_bound(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002971 xs_format_peer_addresses(xprt, "local", RPCBIND_NETID_LOCAL);
J. Bruce Fields7073ea82013-02-21 10:14:22 -05002972 ret = ERR_PTR(xs_local_setup_socket(transport));
2973 if (ret)
2974 goto out_err;
Chuck Lever176e21e2011-05-09 15:22:44 -04002975 break;
2976 default:
2977 ret = ERR_PTR(-EAFNOSUPPORT);
2978 goto out_err;
2979 }
2980
2981 dprintk("RPC: set up xprt to %s via AF_LOCAL\n",
2982 xprt->address_strings[RPC_DISPLAY_ADDR]);
2983
2984 if (try_module_get(THIS_MODULE))
2985 return xprt;
2986 ret = ERR_PTR(-EINVAL);
2987out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08002988 xs_xprt_free(xprt);
Chuck Lever176e21e2011-05-09 15:22:44 -04002989 return ret;
2990}
2991
Trond Myklebust2881ae72007-12-20 16:03:54 -05002992static const struct rpc_timeout xs_udp_default_timeout = {
2993 .to_initval = 5 * HZ,
2994 .to_maxval = 30 * HZ,
2995 .to_increment = 5 * HZ,
2996 .to_retries = 5,
2997};
2998
Chuck Lever9903cd12005-08-11 16:25:26 -04002999/**
3000 * xs_setup_udp - Set up transport to use a UDP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02003001 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04003002 *
3003 */
Adrian Bunk483066d2007-10-24 18:24:02 +02003004static struct rpc_xprt *xs_setup_udp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04003005{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003006 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04003007 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05003008 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003009 struct rpc_xprt *ret;
Chuck Levera246b012005-08-11 16:25:23 -04003010
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003011 xprt = xs_setup_xprt(args, xprt_udp_slot_table_entries,
3012 xprt_udp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04003013 if (IS_ERR(xprt))
3014 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05003015 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04003016
Chuck Leverec739ef2006-08-22 20:06:15 -04003017 xprt->prot = IPPROTO_UDP;
Chuck Lever808012f2005-08-25 16:25:49 -07003018 xprt->tsh_size = 0;
Chuck Levera246b012005-08-11 16:25:23 -04003019 /* XXX: header size can vary due to auth type, IPv6, etc. */
3020 xprt->max_payload = (1U << 16) - (MAX_HEADER << 3);
3021
Chuck Lever03bf4b72005-08-25 16:25:55 -07003022 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07003023 xprt->reestablish_timeout = XS_UDP_REEST_TO;
3024 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04003025
Chuck Lever262965f2005-08-11 16:25:56 -04003026 xprt->ops = &xs_udp_ops;
Chuck Levera246b012005-08-11 16:25:23 -04003027
Trond Myklebustba7392b2007-12-20 16:03:55 -05003028 xprt->timeout = &xs_udp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04003029
Trond Myklebustf9b2ee72015-10-06 16:26:05 -04003030 INIT_WORK(&transport->recv_worker, xs_udp_data_receive_workfn);
Trond Myklebustedc1b012015-10-05 10:53:49 -04003031 INIT_DELAYED_WORK(&transport->connect_worker, xs_udp_setup_socket);
3032
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003033 switch (addr->sa_family) {
3034 case AF_INET:
3035 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
3036 xprt_set_bound(xprt);
3037
Chuck Lever9dc3b092009-08-09 15:09:46 -04003038 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003039 break;
3040 case AF_INET6:
3041 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
3042 xprt_set_bound(xprt);
3043
Chuck Lever9dc3b092009-08-09 15:09:46 -04003044 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003045 break;
3046 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003047 ret = ERR_PTR(-EAFNOSUPPORT);
3048 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003049 }
3050
Chuck Leverc740eff2009-08-09 15:09:46 -04003051 if (xprt_bound(xprt))
3052 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
3053 xprt->address_strings[RPC_DISPLAY_ADDR],
3054 xprt->address_strings[RPC_DISPLAY_PORT],
3055 xprt->address_strings[RPC_DISPLAY_PROTO]);
3056 else
3057 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
3058 xprt->address_strings[RPC_DISPLAY_ADDR],
3059 xprt->address_strings[RPC_DISPLAY_PROTO]);
Chuck Leveredb267a2006-08-22 20:06:18 -04003060
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003061 if (try_module_get(THIS_MODULE))
3062 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003063 ret = ERR_PTR(-EINVAL);
3064out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08003065 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003066 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04003067}
3068
Trond Myklebust2881ae72007-12-20 16:03:54 -05003069static const struct rpc_timeout xs_tcp_default_timeout = {
3070 .to_initval = 60 * HZ,
3071 .to_maxval = 60 * HZ,
3072 .to_retries = 2,
3073};
3074
Chuck Lever9903cd12005-08-11 16:25:26 -04003075/**
3076 * xs_setup_tcp - Set up transport to use a TCP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02003077 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04003078 *
3079 */
Adrian Bunk483066d2007-10-24 18:24:02 +02003080static struct rpc_xprt *xs_setup_tcp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04003081{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003082 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04003083 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05003084 struct sock_xprt *transport;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003085 struct rpc_xprt *ret;
Trond Myklebustb7993ce2013-04-14 11:42:00 -04003086 unsigned int max_slot_table_size = xprt_max_tcp_slot_table_entries;
3087
3088 if (args->flags & XPRT_CREATE_INFINITE_SLOTS)
3089 max_slot_table_size = RPC_MAX_SLOT_TABLE_LIMIT;
Chuck Levera246b012005-08-11 16:25:23 -04003090
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003091 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
Trond Myklebustb7993ce2013-04-14 11:42:00 -04003092 max_slot_table_size);
Chuck Leverc8541ec2006-10-17 14:44:27 -04003093 if (IS_ERR(xprt))
3094 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05003095 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04003096
Chuck Leverec739ef2006-08-22 20:06:15 -04003097 xprt->prot = IPPROTO_TCP;
Chuck Lever808012f2005-08-25 16:25:49 -07003098 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
Chuck Lever808012f2005-08-25 16:25:49 -07003099 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
Chuck Levera246b012005-08-11 16:25:23 -04003100
Chuck Lever03bf4b72005-08-25 16:25:55 -07003101 xprt->bind_timeout = XS_BIND_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07003102 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
3103 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04003104
Chuck Lever262965f2005-08-11 16:25:56 -04003105 xprt->ops = &xs_tcp_ops;
Trond Myklebustba7392b2007-12-20 16:03:55 -05003106 xprt->timeout = &xs_tcp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04003107
Trond Myklebust3851f1c2016-08-04 00:08:45 -04003108 xprt->max_reconnect_timeout = xprt->timeout->to_maxval;
Trond Myklebust7196dbb2017-02-08 11:17:54 -05003109 xprt->connect_timeout = xprt->timeout->to_initval *
3110 (xprt->timeout->to_retries + 1);
Trond Myklebust3851f1c2016-08-04 00:08:45 -04003111
Trond Myklebustedc1b012015-10-05 10:53:49 -04003112 INIT_WORK(&transport->recv_worker, xs_tcp_data_receive_workfn);
3113 INIT_DELAYED_WORK(&transport->connect_worker, xs_tcp_setup_socket);
3114
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003115 switch (addr->sa_family) {
3116 case AF_INET:
3117 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
3118 xprt_set_bound(xprt);
3119
Chuck Lever9dc3b092009-08-09 15:09:46 -04003120 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003121 break;
3122 case AF_INET6:
3123 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
3124 xprt_set_bound(xprt);
3125
Chuck Lever9dc3b092009-08-09 15:09:46 -04003126 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003127 break;
3128 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003129 ret = ERR_PTR(-EAFNOSUPPORT);
3130 goto out_err;
Chuck Lever8f9d5b12007-08-06 11:57:53 -04003131 }
3132
Chuck Leverc740eff2009-08-09 15:09:46 -04003133 if (xprt_bound(xprt))
3134 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
3135 xprt->address_strings[RPC_DISPLAY_ADDR],
3136 xprt->address_strings[RPC_DISPLAY_PORT],
3137 xprt->address_strings[RPC_DISPLAY_PROTO]);
3138 else
3139 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
3140 xprt->address_strings[RPC_DISPLAY_ADDR],
3141 xprt->address_strings[RPC_DISPLAY_PROTO]);
3142
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003143 if (try_module_get(THIS_MODULE))
3144 return xprt;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003145 ret = ERR_PTR(-EINVAL);
3146out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08003147 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003148 return ret;
Chuck Levera246b012005-08-11 16:25:23 -04003149}
Chuck Lever282b32e2006-12-05 16:35:51 -05003150
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003151/**
3152 * xs_setup_bc_tcp - Set up transport to use a TCP backchannel socket
3153 * @args: rpc transport creation arguments
3154 *
3155 */
3156static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
3157{
3158 struct sockaddr *addr = args->dstaddr;
3159 struct rpc_xprt *xprt;
3160 struct sock_xprt *transport;
3161 struct svc_sock *bc_sock;
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003162 struct rpc_xprt *ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003163
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003164 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries,
3165 xprt_tcp_slot_table_entries);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003166 if (IS_ERR(xprt))
3167 return xprt;
3168 transport = container_of(xprt, struct sock_xprt, xprt);
3169
3170 xprt->prot = IPPROTO_TCP;
3171 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
3172 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
3173 xprt->timeout = &xs_tcp_default_timeout;
3174
3175 /* backchannel */
3176 xprt_set_bound(xprt);
3177 xprt->bind_timeout = 0;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003178 xprt->reestablish_timeout = 0;
3179 xprt->idle_timeout = 0;
3180
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003181 xprt->ops = &bc_tcp_ops;
3182
3183 switch (addr->sa_family) {
3184 case AF_INET:
3185 xs_format_peer_addresses(xprt, "tcp",
3186 RPCBIND_NETID_TCP);
3187 break;
3188 case AF_INET6:
3189 xs_format_peer_addresses(xprt, "tcp",
3190 RPCBIND_NETID_TCP6);
3191 break;
3192 default:
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003193 ret = ERR_PTR(-EAFNOSUPPORT);
3194 goto out_err;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003195 }
3196
Pavel Emelyanov50fa0d42010-10-05 20:49:35 +04003197 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
3198 xprt->address_strings[RPC_DISPLAY_ADDR],
3199 xprt->address_strings[RPC_DISPLAY_PORT],
3200 xprt->address_strings[RPC_DISPLAY_PROTO]);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003201
3202 /*
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003203 * Once we've associated a backchannel xprt with a connection,
Weng Meiling28303ca2013-11-30 17:56:44 +08003204 * we want to keep it around as long as the connection lasts,
3205 * in case we need to start using it for a backchannel again;
3206 * this reference won't be dropped until bc_xprt is destroyed.
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003207 */
3208 xprt_get(xprt);
3209 args->bc_xprt->xpt_bc_xprt = xprt;
3210 xprt->bc_xprt = args->bc_xprt;
3211 bc_sock = container_of(args->bc_xprt, struct svc_sock, sk_xprt);
3212 transport->sock = bc_sock->sk_sock;
3213 transport->inet = bc_sock->sk_sk;
3214
3215 /*
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003216 * Since we don't want connections for the backchannel, we set
3217 * the xprt status to connected
3218 */
3219 xprt_set_connected(xprt);
3220
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003221 if (try_module_get(THIS_MODULE))
3222 return xprt;
Kinglong Mee642aab52014-03-24 12:00:28 +08003223
3224 args->bc_xprt->xpt_bc_xprt = NULL;
J. Bruce Fields39a9bea2016-05-17 12:38:21 -04003225 args->bc_xprt->xpt_bc_xps = NULL;
J. Bruce Fields99de8ea2010-12-08 12:45:44 -05003226 xprt_put(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003227 ret = ERR_PTR(-EINVAL);
3228out_err:
Kinglong Mee315f3812014-03-24 11:07:22 +08003229 xs_xprt_free(xprt);
J. Bruce Fields0a68b0b2010-05-26 08:42:24 -04003230 return ret;
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003231}
3232
Chuck Lever176e21e2011-05-09 15:22:44 -04003233static struct xprt_class xs_local_transport = {
3234 .list = LIST_HEAD_INIT(xs_local_transport.list),
3235 .name = "named UNIX socket",
3236 .owner = THIS_MODULE,
3237 .ident = XPRT_TRANSPORT_LOCAL,
3238 .setup = xs_setup_local,
3239};
3240
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003241static struct xprt_class xs_udp_transport = {
3242 .list = LIST_HEAD_INIT(xs_udp_transport.list),
3243 .name = "udp",
3244 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003245 .ident = XPRT_TRANSPORT_UDP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003246 .setup = xs_setup_udp,
3247};
3248
3249static struct xprt_class xs_tcp_transport = {
3250 .list = LIST_HEAD_INIT(xs_tcp_transport.list),
3251 .name = "tcp",
3252 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003253 .ident = XPRT_TRANSPORT_TCP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003254 .setup = xs_setup_tcp,
3255};
3256
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003257static struct xprt_class xs_bc_tcp_transport = {
3258 .list = LIST_HEAD_INIT(xs_bc_tcp_transport.list),
3259 .name = "tcp NFSv4.1 backchannel",
3260 .owner = THIS_MODULE,
3261 .ident = XPRT_TRANSPORT_BC_TCP,
3262 .setup = xs_setup_bc_tcp,
3263};
3264
Chuck Lever282b32e2006-12-05 16:35:51 -05003265/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003266 * init_socket_xprt - set up xprtsock's sysctls, register with RPC client
Chuck Lever282b32e2006-12-05 16:35:51 -05003267 *
3268 */
3269int init_socket_xprt(void)
3270{
Jeff Laytonf895b252014-11-17 16:58:04 -05003271#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Eric W. Biederman2b1bec52007-02-14 00:33:24 -08003272 if (!sunrpc_table_header)
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08003273 sunrpc_table_header = register_sysctl_table(sunrpc_table);
Chuck Leverfbf76682006-12-05 16:35:54 -05003274#endif
3275
Chuck Lever176e21e2011-05-09 15:22:44 -04003276 xprt_register_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003277 xprt_register_transport(&xs_udp_transport);
3278 xprt_register_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003279 xprt_register_transport(&xs_bc_tcp_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003280
Chuck Lever282b32e2006-12-05 16:35:51 -05003281 return 0;
3282}
3283
3284/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003285 * cleanup_socket_xprt - remove xprtsock's sysctls, unregister
Chuck Lever282b32e2006-12-05 16:35:51 -05003286 *
3287 */
3288void cleanup_socket_xprt(void)
3289{
Jeff Laytonf895b252014-11-17 16:58:04 -05003290#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverfbf76682006-12-05 16:35:54 -05003291 if (sunrpc_table_header) {
3292 unregister_sysctl_table(sunrpc_table_header);
3293 sunrpc_table_header = NULL;
3294 }
3295#endif
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003296
Chuck Lever176e21e2011-05-09 15:22:44 -04003297 xprt_unregister_transport(&xs_local_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04003298 xprt_unregister_transport(&xs_udp_transport);
3299 xprt_unregister_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03003300 xprt_unregister_transport(&xs_bc_tcp_transport);
Chuck Lever282b32e2006-12-05 16:35:51 -05003301}
Trond Myklebustcbf11072009-08-09 15:06:19 -04003302
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003303static int param_set_uint_minmax(const char *val,
3304 const struct kernel_param *kp,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003305 unsigned int min, unsigned int max)
3306{
Daniel Walter00cfaa92014-06-21 13:06:38 +01003307 unsigned int num;
Trond Myklebustcbf11072009-08-09 15:06:19 -04003308 int ret;
3309
3310 if (!val)
3311 return -EINVAL;
Daniel Walter00cfaa92014-06-21 13:06:38 +01003312 ret = kstrtouint(val, 0, &num);
Dan Carpenter9761a242017-02-19 00:34:59 +03003313 if (ret)
3314 return ret;
3315 if (num < min || num > max)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003316 return -EINVAL;
3317 *((unsigned int *)kp->arg) = num;
3318 return 0;
3319}
3320
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003321static int param_set_portnr(const char *val, const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003322{
Frank Sorensonffb6ca32016-07-08 16:35:25 -05003323 if (kp->arg == &xprt_min_resvport)
3324 return param_set_uint_minmax(val, kp,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003325 RPC_MIN_RESVPORT,
Frank Sorensonffb6ca32016-07-08 16:35:25 -05003326 xprt_max_resvport);
3327 return param_set_uint_minmax(val, kp,
3328 xprt_min_resvport,
Trond Myklebustcbf11072009-08-09 15:06:19 -04003329 RPC_MAX_RESVPORT);
3330}
3331
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303332static const struct kernel_param_ops param_ops_portnr = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003333 .set = param_set_portnr,
3334 .get = param_get_uint,
3335};
3336
Trond Myklebustcbf11072009-08-09 15:06:19 -04003337#define param_check_portnr(name, p) \
3338 __param_check(name, p, unsigned int);
3339
3340module_param_named(min_resvport, xprt_min_resvport, portnr, 0644);
3341module_param_named(max_resvport, xprt_max_resvport, portnr, 0644);
3342
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003343static int param_set_slot_table_size(const char *val,
3344 const struct kernel_param *kp)
Trond Myklebustcbf11072009-08-09 15:06:19 -04003345{
3346 return param_set_uint_minmax(val, kp,
3347 RPC_MIN_SLOT_TABLE,
3348 RPC_MAX_SLOT_TABLE);
3349}
3350
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303351static const struct kernel_param_ops param_ops_slot_table_size = {
Rusty Russell9bbb9e52010-08-11 23:04:12 -06003352 .set = param_set_slot_table_size,
3353 .get = param_get_uint,
3354};
3355
Trond Myklebustcbf11072009-08-09 15:06:19 -04003356#define param_check_slot_table_size(name, p) \
3357 __param_check(name, p, unsigned int);
3358
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003359static int param_set_max_slot_table_size(const char *val,
3360 const struct kernel_param *kp)
3361{
3362 return param_set_uint_minmax(val, kp,
3363 RPC_MIN_SLOT_TABLE,
3364 RPC_MAX_SLOT_TABLE_LIMIT);
3365}
3366
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09303367static const struct kernel_param_ops param_ops_max_slot_table_size = {
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003368 .set = param_set_max_slot_table_size,
3369 .get = param_get_uint,
3370};
3371
3372#define param_check_max_slot_table_size(name, p) \
3373 __param_check(name, p, unsigned int);
3374
Trond Myklebustcbf11072009-08-09 15:06:19 -04003375module_param_named(tcp_slot_table_entries, xprt_tcp_slot_table_entries,
3376 slot_table_size, 0644);
Trond Myklebustd9ba1312011-07-17 18:11:30 -04003377module_param_named(tcp_max_slot_table_entries, xprt_max_tcp_slot_table_entries,
3378 max_slot_table_size, 0644);
Trond Myklebustcbf11072009-08-09 15:06:19 -04003379module_param_named(udp_slot_table_entries, xprt_udp_slot_table_entries,
3380 slot_table_size, 0644);