blob: 712412982ceef0b8e7c0eb0752fe50b97e133294 [file] [log] [blame]
Chuck Levera246b012005-08-11 16:25:23 -04001/*
2 * linux/net/sunrpc/xprtsock.c
3 *
4 * Client-side transport implementation for sockets.
5 *
Alan Cox113aa832008-10-13 19:01:08 -07006 * TCP callback races fixes (C) 1998 Red Hat
7 * TCP send fixes (C) 1998 Red Hat
Chuck Levera246b012005-08-11 16:25:23 -04008 * TCP NFS related read + write fixes
9 * (C) 1999 Dave Airlie, University of Limerick, Ireland <airlied@linux.ie>
10 *
11 * Rewrite of larges part of the code in order to stabilize TCP stuff.
12 * Fix behaviour when socket buffer is full.
13 * (C) 1999 Trond Myklebust <trond.myklebust@fys.uio.no>
Chuck Lever55aa4f52005-08-11 16:25:47 -040014 *
15 * IP socket transport implementation, (C) 2005 Chuck Lever <cel@netapp.com>
Chuck Lever8f9d5b12007-08-06 11:57:53 -040016 *
17 * IPv6 support contributed by Gilles Quillard, Bull Open Source, 2005.
18 * <gilles.quillard@bull.net>
Chuck Levera246b012005-08-11 16:25:23 -040019 */
20
21#include <linux/types.h>
22#include <linux/slab.h>
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -040023#include <linux/module.h>
Chuck Levera246b012005-08-11 16:25:23 -040024#include <linux/capability.h>
Chuck Levera246b012005-08-11 16:25:23 -040025#include <linux/pagemap.h>
26#include <linux/errno.h>
27#include <linux/socket.h>
28#include <linux/in.h>
29#include <linux/net.h>
30#include <linux/mm.h>
31#include <linux/udp.h>
32#include <linux/tcp.h>
33#include <linux/sunrpc/clnt.h>
Chuck Lever02107142006-01-03 09:55:49 +010034#include <linux/sunrpc/sched.h>
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030035#include <linux/sunrpc/svcsock.h>
\"Talpey, Thomas\49c36fc2007-09-10 13:47:31 -040036#include <linux/sunrpc/xprtsock.h>
Chuck Levera246b012005-08-11 16:25:23 -040037#include <linux/file.h>
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -040038#ifdef CONFIG_NFS_V4_1
39#include <linux/sunrpc/bc_xprt.h>
40#endif
Chuck Levera246b012005-08-11 16:25:23 -040041
42#include <net/sock.h>
43#include <net/checksum.h>
44#include <net/udp.h>
45#include <net/tcp.h>
46
Rahul Iyer4cfc7e62009-09-10 17:32:28 +030047#include "sunrpc.h"
Chuck Lever9903cd12005-08-11 16:25:26 -040048/*
Chuck Leverc556b752005-11-01 12:24:48 -050049 * xprtsock tunables
50 */
51unsigned int xprt_udp_slot_table_entries = RPC_DEF_SLOT_TABLE;
52unsigned int xprt_tcp_slot_table_entries = RPC_DEF_SLOT_TABLE;
53
54unsigned int xprt_min_resvport = RPC_DEF_MIN_RESVPORT;
55unsigned int xprt_max_resvport = RPC_DEF_MAX_RESVPORT;
56
Trond Myklebust7d1e8252009-03-11 14:38:03 -040057#define XS_TCP_LINGER_TO (15U * HZ)
Trond Myklebust25fe6142009-03-11 14:38:03 -040058static unsigned int xs_tcp_fin_timeout __read_mostly = XS_TCP_LINGER_TO;
Trond Myklebust7d1e8252009-03-11 14:38:03 -040059
Chuck Leverc556b752005-11-01 12:24:48 -050060/*
Chuck Leverfbf76682006-12-05 16:35:54 -050061 * We can register our own files under /proc/sys/sunrpc by
62 * calling register_sysctl_table() again. The files in that
63 * directory become the union of all files registered there.
64 *
65 * We simply need to make sure that we don't collide with
66 * someone else's file names!
67 */
68
69#ifdef RPC_DEBUG
70
71static unsigned int min_slot_table_size = RPC_MIN_SLOT_TABLE;
72static unsigned int max_slot_table_size = RPC_MAX_SLOT_TABLE;
73static unsigned int xprt_min_resvport_limit = RPC_MIN_RESVPORT;
74static unsigned int xprt_max_resvport_limit = RPC_MAX_RESVPORT;
75
76static struct ctl_table_header *sunrpc_table_header;
77
78/*
79 * FIXME: changing the UDP slot table size should also resize the UDP
80 * socket buffers for existing UDP transports
81 */
82static ctl_table xs_tunables_table[] = {
83 {
Chuck Leverfbf76682006-12-05 16:35:54 -050084 .procname = "udp_slot_table_entries",
85 .data = &xprt_udp_slot_table_entries,
86 .maxlen = sizeof(unsigned int),
87 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080088 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -050089 .extra1 = &min_slot_table_size,
90 .extra2 = &max_slot_table_size
91 },
92 {
Chuck Leverfbf76682006-12-05 16:35:54 -050093 .procname = "tcp_slot_table_entries",
94 .data = &xprt_tcp_slot_table_entries,
95 .maxlen = sizeof(unsigned int),
96 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080097 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -050098 .extra1 = &min_slot_table_size,
99 .extra2 = &max_slot_table_size
100 },
101 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500102 .procname = "min_resvport",
103 .data = &xprt_min_resvport,
104 .maxlen = sizeof(unsigned int),
105 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800106 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500107 .extra1 = &xprt_min_resvport_limit,
108 .extra2 = &xprt_max_resvport_limit
109 },
110 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500111 .procname = "max_resvport",
112 .data = &xprt_max_resvport,
113 .maxlen = sizeof(unsigned int),
114 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800115 .proc_handler = proc_dointvec_minmax,
Chuck Leverfbf76682006-12-05 16:35:54 -0500116 .extra1 = &xprt_min_resvport_limit,
117 .extra2 = &xprt_max_resvport_limit
118 },
119 {
Trond Myklebust25fe6142009-03-11 14:38:03 -0400120 .procname = "tcp_fin_timeout",
121 .data = &xs_tcp_fin_timeout,
122 .maxlen = sizeof(xs_tcp_fin_timeout),
123 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800124 .proc_handler = proc_dointvec_jiffies,
Trond Myklebust25fe6142009-03-11 14:38:03 -0400125 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800126 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500127};
128
129static ctl_table sunrpc_table[] = {
130 {
Chuck Leverfbf76682006-12-05 16:35:54 -0500131 .procname = "sunrpc",
132 .mode = 0555,
133 .child = xs_tunables_table
134 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800135 { },
Chuck Leverfbf76682006-12-05 16:35:54 -0500136};
137
138#endif
139
140/*
Chuck Lever03bf4b72005-08-25 16:25:55 -0700141 * Time out for an RPC UDP socket connect. UDP socket connects are
142 * synchronous, but we set a timeout anyway in case of resource
143 * exhaustion on the local host.
144 */
145#define XS_UDP_CONN_TO (5U * HZ)
146
147/*
148 * Wait duration for an RPC TCP connection to be established. Solaris
149 * NFS over TCP uses 60 seconds, for example, which is in line with how
150 * long a server takes to reboot.
151 */
152#define XS_TCP_CONN_TO (60U * HZ)
153
154/*
155 * Wait duration for a reply from the RPC portmapper.
156 */
157#define XS_BIND_TO (60U * HZ)
158
159/*
160 * Delay if a UDP socket connect error occurs. This is most likely some
161 * kind of resource problem on the local host.
162 */
163#define XS_UDP_REEST_TO (2U * HZ)
164
165/*
166 * The reestablish timeout allows clients to delay for a bit before attempting
167 * to reconnect to a server that just dropped our connection.
168 *
169 * We implement an exponential backoff when trying to reestablish a TCP
170 * transport connection with the server. Some servers like to drop a TCP
171 * connection when they are overworked, so we start with a short timeout and
172 * increase over time if the server is down or not responding.
173 */
174#define XS_TCP_INIT_REEST_TO (3U * HZ)
175#define XS_TCP_MAX_REEST_TO (5U * 60 * HZ)
176
177/*
178 * TCP idle timeout; client drops the transport socket if it is idle
179 * for this long. Note that we also timeout UDP sockets to prevent
180 * holding port numbers when there is no RPC traffic.
181 */
182#define XS_IDLE_DISC_TO (5U * 60 * HZ)
183
Chuck Levera246b012005-08-11 16:25:23 -0400184#ifdef RPC_DEBUG
185# undef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400186# define RPCDBG_FACILITY RPCDBG_TRANS
Chuck Levera246b012005-08-11 16:25:23 -0400187#endif
188
Chuck Levera246b012005-08-11 16:25:23 -0400189#ifdef RPC_DEBUG_DATA
Chuck Lever9903cd12005-08-11 16:25:26 -0400190static void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400191{
Chuck Lever9903cd12005-08-11 16:25:26 -0400192 u8 *buf = (u8 *) packet;
193 int j;
Chuck Levera246b012005-08-11 16:25:23 -0400194
Chuck Lever46121cf2007-01-31 12:14:08 -0500195 dprintk("RPC: %s\n", msg);
Chuck Levera246b012005-08-11 16:25:23 -0400196 for (j = 0; j < count && j < 128; j += 4) {
197 if (!(j & 31)) {
198 if (j)
199 dprintk("\n");
200 dprintk("0x%04x ", j);
201 }
202 dprintk("%02x%02x%02x%02x ",
203 buf[j], buf[j+1], buf[j+2], buf[j+3]);
204 }
205 dprintk("\n");
206}
207#else
Chuck Lever9903cd12005-08-11 16:25:26 -0400208static inline void xs_pktdump(char *msg, u32 *packet, unsigned int count)
Chuck Levera246b012005-08-11 16:25:23 -0400209{
210 /* NOP */
211}
212#endif
213
Chuck Leverffc2e512006-12-05 16:35:11 -0500214struct sock_xprt {
215 struct rpc_xprt xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500216
217 /*
218 * Network layer
219 */
220 struct socket * sock;
221 struct sock * inet;
Chuck Lever51971132006-12-05 16:35:19 -0500222
223 /*
224 * State of TCP reply receive
225 */
226 __be32 tcp_fraghdr,
227 tcp_xid;
228
229 u32 tcp_offset,
230 tcp_reclen;
231
232 unsigned long tcp_copied,
233 tcp_flags;
Chuck Leverc8475462006-12-05 16:35:26 -0500234
235 /*
236 * Connection of transports
237 */
Trond Myklebust34161db2006-12-07 15:48:15 -0500238 struct delayed_work connect_worker;
Chuck Leverfbfffbd2009-08-09 15:09:46 -0400239 struct sockaddr_storage srcaddr;
240 unsigned short srcport;
Chuck Lever7c6e0662006-12-05 16:35:30 -0500241
242 /*
243 * UDP socket buffer size parameters
244 */
245 size_t rcvsize,
246 sndsize;
Chuck Lever314dfd72006-12-05 16:35:34 -0500247
248 /*
249 * Saved socket callback addresses
250 */
251 void (*old_data_ready)(struct sock *, int);
252 void (*old_state_change)(struct sock *);
253 void (*old_write_space)(struct sock *);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400254 void (*old_error_report)(struct sock *);
Chuck Leverffc2e512006-12-05 16:35:11 -0500255};
256
Chuck Levere136d092006-12-05 16:35:23 -0500257/*
258 * TCP receive state flags
259 */
260#define TCP_RCV_LAST_FRAG (1UL << 0)
261#define TCP_RCV_COPY_FRAGHDR (1UL << 1)
262#define TCP_RCV_COPY_XID (1UL << 2)
263#define TCP_RCV_COPY_DATA (1UL << 3)
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -0400264#define TCP_RCV_READ_CALLDIR (1UL << 4)
265#define TCP_RCV_COPY_CALLDIR (1UL << 5)
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400266
267/*
268 * TCP RPC flags
269 */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -0400270#define TCP_RPC_REPLY (1UL << 6)
Chuck Levere136d092006-12-05 16:35:23 -0500271
Chuck Lever95392c52007-08-06 11:57:58 -0400272static inline struct sockaddr *xs_addr(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400273{
Chuck Lever95392c52007-08-06 11:57:58 -0400274 return (struct sockaddr *) &xprt->addr;
275}
276
277static inline struct sockaddr_in *xs_addr_in(struct rpc_xprt *xprt)
278{
279 return (struct sockaddr_in *) &xprt->addr;
280}
281
282static inline struct sockaddr_in6 *xs_addr_in6(struct rpc_xprt *xprt)
283{
284 return (struct sockaddr_in6 *) &xprt->addr;
285}
286
Chuck Leverc877b842009-08-09 15:09:36 -0400287static void xs_format_common_peer_addresses(struct rpc_xprt *xprt)
Chuck Leveredb267a2006-08-22 20:06:18 -0400288{
Chuck Leverc877b842009-08-09 15:09:36 -0400289 struct sockaddr *sap = xs_addr(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400290 struct sockaddr_in6 *sin6;
291 struct sockaddr_in *sin;
Chuck Leverc877b842009-08-09 15:09:36 -0400292 char buf[128];
Chuck Leveredb267a2006-08-22 20:06:18 -0400293
Chuck Leverc877b842009-08-09 15:09:36 -0400294 (void)rpc_ntop(sap, buf, sizeof(buf));
295 xprt->address_strings[RPC_DISPLAY_ADDR] = kstrdup(buf, GFP_KERNEL);
296
Chuck Lever9dc3b092009-08-09 15:09:46 -0400297 switch (sap->sa_family) {
298 case AF_INET:
299 sin = xs_addr_in(xprt);
300 (void)snprintf(buf, sizeof(buf), "%02x%02x%02x%02x",
301 NIPQUAD(sin->sin_addr.s_addr));
302 break;
303 case AF_INET6:
304 sin6 = xs_addr_in6(xprt);
305 (void)snprintf(buf, sizeof(buf), "%pi6", &sin6->sin6_addr);
306 break;
307 default:
308 BUG();
Chuck Leveredb267a2006-08-22 20:06:18 -0400309 }
Chuck Lever9dc3b092009-08-09 15:09:46 -0400310 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
Chuck Leveredb267a2006-08-22 20:06:18 -0400311}
312
Chuck Lever9dc3b092009-08-09 15:09:46 -0400313static void xs_format_common_peer_ports(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400314{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400315 struct sockaddr *sap = xs_addr(xprt);
316 char buf[128];
Chuck Lever4b6473f2007-08-06 11:57:12 -0400317
Chuck Leverc877b842009-08-09 15:09:36 -0400318 (void)snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap));
319 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400320
Chuck Leverc877b842009-08-09 15:09:36 -0400321 (void)snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap));
322 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
323}
Chuck Lever4b6473f2007-08-06 11:57:12 -0400324
Chuck Lever9dc3b092009-08-09 15:09:46 -0400325static void xs_format_peer_addresses(struct rpc_xprt *xprt,
326 const char *protocol,
327 const char *netid)
Chuck Leveredb267a2006-08-22 20:06:18 -0400328{
Chuck Leverb454ae92008-01-07 18:34:48 -0500329 xprt->address_strings[RPC_DISPLAY_PROTO] = protocol;
Chuck Leverb454ae92008-01-07 18:34:48 -0500330 xprt->address_strings[RPC_DISPLAY_NETID] = netid;
Chuck Leverc877b842009-08-09 15:09:36 -0400331 xs_format_common_peer_addresses(xprt);
Chuck Lever9dc3b092009-08-09 15:09:46 -0400332 xs_format_common_peer_ports(xprt);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400333}
334
Chuck Lever9dc3b092009-08-09 15:09:46 -0400335static void xs_update_peer_port(struct rpc_xprt *xprt)
Chuck Lever4b6473f2007-08-06 11:57:12 -0400336{
Chuck Lever9dc3b092009-08-09 15:09:46 -0400337 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
338 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever4b6473f2007-08-06 11:57:12 -0400339
Chuck Lever9dc3b092009-08-09 15:09:46 -0400340 xs_format_common_peer_ports(xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -0400341}
342
343static void xs_free_peer_addresses(struct rpc_xprt *xprt)
344{
Chuck Lever33e01dc2008-01-14 12:32:20 -0500345 unsigned int i;
346
347 for (i = 0; i < RPC_DISPLAY_MAX; i++)
348 switch (i) {
349 case RPC_DISPLAY_PROTO:
350 case RPC_DISPLAY_NETID:
351 continue;
352 default:
353 kfree(xprt->address_strings[i]);
354 }
Chuck Leveredb267a2006-08-22 20:06:18 -0400355}
356
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400357#define XS_SENDMSG_FLAGS (MSG_DONTWAIT | MSG_NOSIGNAL)
358
Trond Myklebust24c56842006-10-17 15:06:22 -0400359static 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 -0400360{
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400361 struct msghdr msg = {
362 .msg_name = addr,
363 .msg_namelen = addrlen,
Trond Myklebust24c56842006-10-17 15:06:22 -0400364 .msg_flags = XS_SENDMSG_FLAGS | (more ? MSG_MORE : 0),
365 };
366 struct kvec iov = {
367 .iov_base = vec->iov_base + base,
368 .iov_len = vec->iov_len - base,
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400369 };
370
Trond Myklebust24c56842006-10-17 15:06:22 -0400371 if (iov.iov_len != 0)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400372 return kernel_sendmsg(sock, &msg, &iov, 1, iov.iov_len);
373 return kernel_sendmsg(sock, &msg, NULL, 0, 0);
374}
375
Trond Myklebust24c56842006-10-17 15:06:22 -0400376static int xs_send_pagedata(struct socket *sock, struct xdr_buf *xdr, unsigned int base, int more)
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400377{
Trond Myklebust24c56842006-10-17 15:06:22 -0400378 struct page **ppage;
379 unsigned int remainder;
380 int err, sent = 0;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400381
Trond Myklebust24c56842006-10-17 15:06:22 -0400382 remainder = xdr->page_len - base;
383 base += xdr->page_base;
384 ppage = xdr->pages + (base >> PAGE_SHIFT);
385 base &= ~PAGE_MASK;
386 for(;;) {
387 unsigned int len = min_t(unsigned int, PAGE_SIZE - base, remainder);
388 int flags = XS_SENDMSG_FLAGS;
389
390 remainder -= len;
391 if (remainder != 0 || more)
392 flags |= MSG_MORE;
393 err = sock->ops->sendpage(sock, *ppage, base, len, flags);
394 if (remainder == 0 || err != len)
395 break;
396 sent += err;
397 ppage++;
398 base = 0;
399 }
400 if (sent == 0)
401 return err;
402 if (err > 0)
403 sent += err;
404 return sent;
Chuck Leverb4b5cc82005-08-11 16:25:29 -0400405}
406
Chuck Lever9903cd12005-08-11 16:25:26 -0400407/**
408 * xs_sendpages - write pages directly to a socket
409 * @sock: socket to send on
410 * @addr: UDP only -- address of destination
411 * @addrlen: UDP only -- length of destination address
412 * @xdr: buffer containing this request
413 * @base: starting position in the buffer
414 *
Chuck Levera246b012005-08-11 16:25:23 -0400415 */
Trond Myklebust24c56842006-10-17 15:06:22 -0400416static int xs_sendpages(struct socket *sock, struct sockaddr *addr, int addrlen, struct xdr_buf *xdr, unsigned int base)
Chuck Levera246b012005-08-11 16:25:23 -0400417{
Trond Myklebust24c56842006-10-17 15:06:22 -0400418 unsigned int remainder = xdr->len - base;
419 int err, sent = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400420
Chuck Lever262965f2005-08-11 16:25:56 -0400421 if (unlikely(!sock))
Trond Myklebustfba91af2009-03-11 14:06:41 -0400422 return -ENOTSOCK;
Chuck Lever262965f2005-08-11 16:25:56 -0400423
424 clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags);
Trond Myklebust24c56842006-10-17 15:06:22 -0400425 if (base != 0) {
426 addr = NULL;
427 addrlen = 0;
428 }
Chuck Lever262965f2005-08-11 16:25:56 -0400429
Trond Myklebust24c56842006-10-17 15:06:22 -0400430 if (base < xdr->head[0].iov_len || addr != NULL) {
431 unsigned int len = xdr->head[0].iov_len - base;
432 remainder -= len;
433 err = xs_send_kvec(sock, addr, addrlen, &xdr->head[0], base, remainder != 0);
434 if (remainder == 0 || err != len)
Chuck Levera246b012005-08-11 16:25:23 -0400435 goto out;
Trond Myklebust24c56842006-10-17 15:06:22 -0400436 sent += err;
Chuck Levera246b012005-08-11 16:25:23 -0400437 base = 0;
438 } else
Trond Myklebust24c56842006-10-17 15:06:22 -0400439 base -= xdr->head[0].iov_len;
Chuck Levera246b012005-08-11 16:25:23 -0400440
Trond Myklebust24c56842006-10-17 15:06:22 -0400441 if (base < xdr->page_len) {
442 unsigned int len = xdr->page_len - base;
443 remainder -= len;
444 err = xs_send_pagedata(sock, xdr, base, remainder != 0);
445 if (remainder == 0 || err != len)
Chuck Levera246b012005-08-11 16:25:23 -0400446 goto out;
Trond Myklebust24c56842006-10-17 15:06:22 -0400447 sent += err;
Chuck Levera246b012005-08-11 16:25:23 -0400448 base = 0;
Trond Myklebust24c56842006-10-17 15:06:22 -0400449 } else
450 base -= xdr->page_len;
451
452 if (base >= xdr->tail[0].iov_len)
453 return sent;
454 err = xs_send_kvec(sock, NULL, 0, &xdr->tail[0], base, 0);
Chuck Levera246b012005-08-11 16:25:23 -0400455out:
Trond Myklebust24c56842006-10-17 15:06:22 -0400456 if (sent == 0)
457 return err;
458 if (err > 0)
459 sent += err;
460 return sent;
Chuck Levera246b012005-08-11 16:25:23 -0400461}
462
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400463static void xs_nospace_callback(struct rpc_task *task)
464{
465 struct sock_xprt *transport = container_of(task->tk_rqstp->rq_xprt, struct sock_xprt, xprt);
466
467 transport->inet->sk_write_pending--;
468 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
469}
470
Chuck Lever9903cd12005-08-11 16:25:26 -0400471/**
Chuck Lever262965f2005-08-11 16:25:56 -0400472 * xs_nospace - place task on wait queue if transmit was incomplete
473 * @task: task to put to sleep
Chuck Lever9903cd12005-08-11 16:25:26 -0400474 *
Chuck Levera246b012005-08-11 16:25:23 -0400475 */
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400476static int xs_nospace(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400477{
Chuck Lever262965f2005-08-11 16:25:56 -0400478 struct rpc_rqst *req = task->tk_rqstp;
479 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500480 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400481 int ret = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400482
Chuck Lever46121cf2007-01-31 12:14:08 -0500483 dprintk("RPC: %5u xmit incomplete (%u left of %u)\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400484 task->tk_pid, req->rq_slen - req->rq_bytes_sent,
485 req->rq_slen);
486
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400487 /* Protect against races with write_space */
488 spin_lock_bh(&xprt->transport_lock);
Chuck Lever262965f2005-08-11 16:25:56 -0400489
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400490 /* Don't race with disconnect */
491 if (xprt_connected(xprt)) {
492 if (test_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags)) {
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400493 ret = -EAGAIN;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400494 /*
495 * Notify TCP that we're limited by the application
496 * window size
497 */
498 set_bit(SOCK_NOSPACE, &transport->sock->flags);
499 transport->inet->sk_write_pending++;
500 /* ...and wait for more buffer space */
501 xprt_wait_for_buffer_space(task, xs_nospace_callback);
502 }
503 } else {
504 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400505 ret = -ENOTCONN;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400506 }
Chuck Lever262965f2005-08-11 16:25:56 -0400507
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400508 spin_unlock_bh(&xprt->transport_lock);
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400509 return ret;
Chuck Lever262965f2005-08-11 16:25:56 -0400510}
511
512/**
513 * xs_udp_send_request - write an RPC request to a UDP socket
514 * @task: address of RPC task that manages the state of an RPC request
515 *
516 * Return values:
517 * 0: The request has been sent
518 * EAGAIN: The socket was blocked, please call again later to
519 * complete the request
520 * ENOTCONN: Caller needs to invoke connect logic then call again
521 * other: Some other error occured, the request was not sent
522 */
523static int xs_udp_send_request(struct rpc_task *task)
524{
525 struct rpc_rqst *req = task->tk_rqstp;
526 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500527 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400528 struct xdr_buf *xdr = &req->rq_snd_buf;
529 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400530
Chuck Lever9903cd12005-08-11 16:25:26 -0400531 xs_pktdump("packet data:",
Chuck Levera246b012005-08-11 16:25:23 -0400532 req->rq_svec->iov_base,
533 req->rq_svec->iov_len);
534
Trond Myklebust01d37c42009-03-11 14:09:39 -0400535 if (!xprt_bound(xprt))
536 return -ENOTCONN;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500537 status = xs_sendpages(transport->sock,
Chuck Lever95392c52007-08-06 11:57:58 -0400538 xs_addr(xprt),
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500539 xprt->addrlen, xdr,
540 req->rq_bytes_sent);
Chuck Levera246b012005-08-11 16:25:23 -0400541
Chuck Lever46121cf2007-01-31 12:14:08 -0500542 dprintk("RPC: xs_udp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400543 xdr->len - req->rq_bytes_sent, status);
Chuck Levera246b012005-08-11 16:25:23 -0400544
Trond Myklebust21997002007-10-01 11:43:37 -0400545 if (status >= 0) {
546 task->tk_bytes_sent += status;
547 if (status >= req->rq_slen)
548 return 0;
549 /* Still some bytes left; set up for a retry later. */
Chuck Lever262965f2005-08-11 16:25:56 -0400550 status = -EAGAIN;
Trond Myklebust21997002007-10-01 11:43:37 -0400551 }
Trond Myklebustc8485e42009-03-11 14:37:59 -0400552 if (!transport->sock)
553 goto out;
Chuck Levera246b012005-08-11 16:25:23 -0400554
Chuck Lever262965f2005-08-11 16:25:56 -0400555 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400556 case -ENOTSOCK:
557 status = -ENOTCONN;
558 /* Should we call xs_close() here? */
559 break;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400560 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400561 status = xs_nospace(task);
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400562 break;
Trond Myklebustc8485e42009-03-11 14:37:59 -0400563 default:
564 dprintk("RPC: sendmsg returned unrecognized error %d\n",
565 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400566 case -ENETUNREACH:
567 case -EPIPE:
Chuck Levera246b012005-08-11 16:25:23 -0400568 case -ECONNREFUSED:
569 /* When the server has died, an ICMP port unreachable message
Chuck Lever9903cd12005-08-11 16:25:26 -0400570 * prompts ECONNREFUSED. */
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400571 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400572 }
Trond Myklebustc8485e42009-03-11 14:37:59 -0400573out:
Chuck Lever262965f2005-08-11 16:25:56 -0400574 return status;
Chuck Levera246b012005-08-11 16:25:23 -0400575}
576
Trond Myklebuste06799f2007-11-05 15:44:12 -0500577/**
578 * xs_tcp_shutdown - gracefully shut down a TCP socket
579 * @xprt: transport
580 *
581 * Initiates a graceful shutdown of the TCP socket by calling the
582 * equivalent of shutdown(SHUT_WR);
583 */
584static void xs_tcp_shutdown(struct rpc_xprt *xprt)
585{
586 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
587 struct socket *sock = transport->sock;
588
589 if (sock != NULL)
590 kernel_sock_shutdown(sock, SHUT_WR);
591}
592
Chuck Lever808012f2005-08-25 16:25:49 -0700593static inline void xs_encode_tcp_record_marker(struct xdr_buf *buf)
594{
595 u32 reclen = buf->len - sizeof(rpc_fraghdr);
596 rpc_fraghdr *base = buf->head[0].iov_base;
597 *base = htonl(RPC_LAST_STREAM_FRAGMENT | reclen);
598}
599
Chuck Lever9903cd12005-08-11 16:25:26 -0400600/**
Chuck Lever262965f2005-08-11 16:25:56 -0400601 * xs_tcp_send_request - write an RPC request to a TCP socket
Chuck Lever9903cd12005-08-11 16:25:26 -0400602 * @task: address of RPC task that manages the state of an RPC request
603 *
604 * Return values:
Chuck Lever262965f2005-08-11 16:25:56 -0400605 * 0: The request has been sent
606 * EAGAIN: The socket was blocked, please call again later to
607 * complete the request
608 * ENOTCONN: Caller needs to invoke connect logic then call again
609 * other: Some other error occured, the request was not sent
Chuck Lever9903cd12005-08-11 16:25:26 -0400610 *
611 * XXX: In the case of soft timeouts, should we eventually give up
Chuck Lever262965f2005-08-11 16:25:56 -0400612 * if sendmsg is not able to make progress?
Chuck Lever9903cd12005-08-11 16:25:26 -0400613 */
Chuck Lever262965f2005-08-11 16:25:56 -0400614static int xs_tcp_send_request(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -0400615{
616 struct rpc_rqst *req = task->tk_rqstp;
617 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500618 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400619 struct xdr_buf *xdr = &req->rq_snd_buf;
Chuck Leverb595bb12007-08-06 11:56:42 -0400620 int status;
Chuck Levera246b012005-08-11 16:25:23 -0400621
Chuck Lever808012f2005-08-25 16:25:49 -0700622 xs_encode_tcp_record_marker(&req->rq_snd_buf);
Chuck Levera246b012005-08-11 16:25:23 -0400623
Chuck Lever262965f2005-08-11 16:25:56 -0400624 xs_pktdump("packet data:",
625 req->rq_svec->iov_base,
626 req->rq_svec->iov_len);
Chuck Levera246b012005-08-11 16:25:23 -0400627
628 /* Continue transmitting the packet/record. We must be careful
629 * to cope with writespace callbacks arriving _after_ we have
Chuck Lever262965f2005-08-11 16:25:56 -0400630 * called sendmsg(). */
Chuck Levera246b012005-08-11 16:25:23 -0400631 while (1) {
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500632 status = xs_sendpages(transport->sock,
633 NULL, 0, xdr, req->rq_bytes_sent);
Chuck Levera246b012005-08-11 16:25:23 -0400634
Chuck Lever46121cf2007-01-31 12:14:08 -0500635 dprintk("RPC: xs_tcp_send_request(%u) = %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400636 xdr->len - req->rq_bytes_sent, status);
637
638 if (unlikely(status < 0))
Chuck Levera246b012005-08-11 16:25:23 -0400639 break;
640
Chuck Lever262965f2005-08-11 16:25:56 -0400641 /* If we've sent the entire packet, immediately
642 * reset the count of bytes sent. */
643 req->rq_bytes_sent += status;
Chuck Leveref759a22006-03-20 13:44:17 -0500644 task->tk_bytes_sent += status;
Chuck Lever262965f2005-08-11 16:25:56 -0400645 if (likely(req->rq_bytes_sent >= req->rq_slen)) {
646 req->rq_bytes_sent = 0;
647 return 0;
Chuck Levera246b012005-08-11 16:25:23 -0400648 }
649
Trond Myklebust06b4b682008-04-16 16:51:38 -0400650 if (status != 0)
651 continue;
Chuck Levera246b012005-08-11 16:25:23 -0400652 status = -EAGAIN;
Trond Myklebust06b4b682008-04-16 16:51:38 -0400653 break;
Chuck Levera246b012005-08-11 16:25:23 -0400654 }
Trond Myklebustc8485e42009-03-11 14:37:59 -0400655 if (!transport->sock)
656 goto out;
Chuck Levera246b012005-08-11 16:25:23 -0400657
Chuck Lever262965f2005-08-11 16:25:56 -0400658 switch (status) {
Trond Myklebustfba91af2009-03-11 14:06:41 -0400659 case -ENOTSOCK:
660 status = -ENOTCONN;
661 /* Should we call xs_close() here? */
662 break;
Chuck Lever262965f2005-08-11 16:25:56 -0400663 case -EAGAIN:
Trond Myklebust5e3771c2009-03-11 14:38:01 -0400664 status = xs_nospace(task);
Chuck Lever262965f2005-08-11 16:25:56 -0400665 break;
666 default:
Chuck Lever46121cf2007-01-31 12:14:08 -0500667 dprintk("RPC: sendmsg returned unrecognized error %d\n",
Chuck Lever262965f2005-08-11 16:25:56 -0400668 -status);
Chuck Lever262965f2005-08-11 16:25:56 -0400669 case -ECONNRESET:
Trond Myklebust55420c22009-03-11 15:29:24 -0400670 case -EPIPE:
Trond Myklebuste06799f2007-11-05 15:44:12 -0500671 xs_tcp_shutdown(xprt);
Chuck Lever262965f2005-08-11 16:25:56 -0400672 case -ECONNREFUSED:
673 case -ENOTCONN:
Chuck Lever262965f2005-08-11 16:25:56 -0400674 clear_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags);
Chuck Levera246b012005-08-11 16:25:23 -0400675 }
Trond Myklebustc8485e42009-03-11 14:37:59 -0400676out:
Chuck Levera246b012005-08-11 16:25:23 -0400677 return status;
678}
679
Chuck Lever9903cd12005-08-11 16:25:26 -0400680/**
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400681 * xs_tcp_release_xprt - clean up after a tcp transmission
682 * @xprt: transport
683 * @task: rpc task
684 *
685 * This cleans up if an error causes us to abort the transmission of a request.
686 * In this case, the socket may need to be reset in order to avoid confusing
687 * the server.
688 */
689static void xs_tcp_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
690{
691 struct rpc_rqst *req;
692
693 if (task != xprt->snd_task)
694 return;
695 if (task == NULL)
696 goto out_release;
697 req = task->tk_rqstp;
698 if (req->rq_bytes_sent == 0)
699 goto out_release;
700 if (req->rq_bytes_sent == req->rq_snd_buf.len)
701 goto out_release;
702 set_bit(XPRT_CLOSE_WAIT, &task->tk_xprt->state);
703out_release:
704 xprt_release_xprt(xprt, task);
705}
706
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400707static void xs_save_old_callbacks(struct sock_xprt *transport, struct sock *sk)
708{
709 transport->old_data_ready = sk->sk_data_ready;
710 transport->old_state_change = sk->sk_state_change;
711 transport->old_write_space = sk->sk_write_space;
712 transport->old_error_report = sk->sk_error_report;
713}
714
715static void xs_restore_old_callbacks(struct sock_xprt *transport, struct sock *sk)
716{
717 sk->sk_data_ready = transport->old_data_ready;
718 sk->sk_state_change = transport->old_state_change;
719 sk->sk_write_space = transport->old_write_space;
720 sk->sk_error_report = transport->old_error_report;
721}
722
Chuck Leverfe315e72009-03-11 14:10:21 -0400723static void xs_reset_transport(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -0400724{
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500725 struct socket *sock = transport->sock;
726 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -0400727
Chuck Leverfe315e72009-03-11 14:10:21 -0400728 if (sk == NULL)
729 return;
Chuck Lever9903cd12005-08-11 16:25:26 -0400730
Chuck Levera246b012005-08-11 16:25:23 -0400731 write_lock_bh(&sk->sk_callback_lock);
Chuck Leveree0ac0c2006-12-05 16:35:15 -0500732 transport->inet = NULL;
733 transport->sock = NULL;
Chuck Levera246b012005-08-11 16:25:23 -0400734
Chuck Lever9903cd12005-08-11 16:25:26 -0400735 sk->sk_user_data = NULL;
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -0400736
737 xs_restore_old_callbacks(transport, sk);
Chuck Levera246b012005-08-11 16:25:23 -0400738 write_unlock_bh(&sk->sk_callback_lock);
739
Chuck Lever9903cd12005-08-11 16:25:26 -0400740 sk->sk_no_check = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400741
742 sock_release(sock);
Chuck Leverfe315e72009-03-11 14:10:21 -0400743}
744
745/**
746 * xs_close - close a socket
747 * @xprt: transport
748 *
749 * This is used when all requests are complete; ie, no DRC state remains
750 * on the server we want to save.
Trond Myklebustf75e6742009-04-21 17:18:20 -0400751 *
752 * The caller _must_ be holding XPRT_LOCKED in order to avoid issues with
753 * xs_reset_transport() zeroing the socket from underneath a writer.
Chuck Leverfe315e72009-03-11 14:10:21 -0400754 */
755static void xs_close(struct rpc_xprt *xprt)
756{
757 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
758
759 dprintk("RPC: xs_close xprt %p\n", xprt);
760
761 xs_reset_transport(transport);
Neil Brown61d0a8e2009-09-23 14:36:37 -0400762 xprt->reestablish_timeout = 0;
Chuck Leverfe315e72009-03-11 14:10:21 -0400763
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100764 smp_mb__before_clear_bit();
Trond Myklebust7d1e8252009-03-11 14:38:03 -0400765 clear_bit(XPRT_CONNECTION_ABORT, &xprt->state);
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100766 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebust3b948ae2007-11-05 17:42:39 -0500767 clear_bit(XPRT_CLOSING, &xprt->state);
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100768 smp_mb__after_clear_bit();
Trond Myklebust62da3b22007-11-06 18:44:20 -0500769 xprt_disconnect_done(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400770}
771
Trond Myklebustf75e6742009-04-21 17:18:20 -0400772static void xs_tcp_close(struct rpc_xprt *xprt)
773{
774 if (test_and_clear_bit(XPRT_CONNECTION_CLOSE, &xprt->state))
775 xs_close(xprt);
776 else
777 xs_tcp_shutdown(xprt);
778}
779
Chuck Lever9903cd12005-08-11 16:25:26 -0400780/**
781 * xs_destroy - prepare to shutdown a transport
782 * @xprt: doomed transport
783 *
784 */
785static void xs_destroy(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -0400786{
Chuck Leverc8475462006-12-05 16:35:26 -0500787 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
788
Chuck Lever46121cf2007-01-31 12:14:08 -0500789 dprintk("RPC: xs_destroy xprt %p\n", xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -0400790
Trond Myklebustc1384c92007-06-14 18:00:42 -0400791 cancel_rearming_delayed_work(&transport->connect_worker);
Chuck Levera246b012005-08-11 16:25:23 -0400792
Chuck Lever9903cd12005-08-11 16:25:26 -0400793 xs_close(xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -0400794 xs_free_peer_addresses(xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400795 kfree(xprt->slot);
Chuck Leverc8541ec2006-10-17 14:44:27 -0400796 kfree(xprt);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -0400797 module_put(THIS_MODULE);
Chuck Levera246b012005-08-11 16:25:23 -0400798}
799
Chuck Lever9903cd12005-08-11 16:25:26 -0400800static inline struct rpc_xprt *xprt_from_sock(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -0400801{
Chuck Lever9903cd12005-08-11 16:25:26 -0400802 return (struct rpc_xprt *) sk->sk_user_data;
803}
804
805/**
806 * xs_udp_data_ready - "data ready" callback for UDP sockets
807 * @sk: socket with data to read
808 * @len: how much data to read
809 *
810 */
811static void xs_udp_data_ready(struct sock *sk, int len)
812{
813 struct rpc_task *task;
814 struct rpc_xprt *xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400815 struct rpc_rqst *rovr;
Chuck Lever9903cd12005-08-11 16:25:26 -0400816 struct sk_buff *skb;
Chuck Levera246b012005-08-11 16:25:23 -0400817 int err, repsize, copied;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700818 u32 _xid;
819 __be32 *xp;
Chuck Levera246b012005-08-11 16:25:23 -0400820
821 read_lock(&sk->sk_callback_lock);
Chuck Lever46121cf2007-01-31 12:14:08 -0500822 dprintk("RPC: xs_udp_data_ready...\n");
Chuck Lever9903cd12005-08-11 16:25:26 -0400823 if (!(xprt = xprt_from_sock(sk)))
Chuck Levera246b012005-08-11 16:25:23 -0400824 goto out;
Chuck Levera246b012005-08-11 16:25:23 -0400825
826 if ((skb = skb_recv_datagram(sk, 0, 1, &err)) == NULL)
827 goto out;
828
829 if (xprt->shutdown)
830 goto dropit;
831
832 repsize = skb->len - sizeof(struct udphdr);
833 if (repsize < 4) {
Chuck Lever46121cf2007-01-31 12:14:08 -0500834 dprintk("RPC: impossible RPC reply size %d!\n", repsize);
Chuck Levera246b012005-08-11 16:25:23 -0400835 goto dropit;
836 }
837
838 /* Copy the XID from the skb... */
839 xp = skb_header_pointer(skb, sizeof(struct udphdr),
840 sizeof(_xid), &_xid);
841 if (xp == NULL)
842 goto dropit;
843
844 /* Look up and lock the request corresponding to the given XID */
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400845 spin_lock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -0400846 rovr = xprt_lookup_rqst(xprt, *xp);
847 if (!rovr)
848 goto out_unlock;
849 task = rovr->rq_task;
850
Chuck Levera246b012005-08-11 16:25:23 -0400851 if ((copied = rovr->rq_private_buf.buflen) > repsize)
852 copied = repsize;
853
854 /* Suck it into the iovec, verify checksum if not done by hw. */
Herbert Xu1781f7f2007-12-11 11:30:32 -0800855 if (csum_partial_copy_to_xdr(&rovr->rq_private_buf, skb)) {
856 UDPX_INC_STATS_BH(sk, UDP_MIB_INERRORS);
Chuck Levera246b012005-08-11 16:25:23 -0400857 goto out_unlock;
Herbert Xu1781f7f2007-12-11 11:30:32 -0800858 }
859
860 UDPX_INC_STATS_BH(sk, UDP_MIB_INDATAGRAMS);
Chuck Levera246b012005-08-11 16:25:23 -0400861
862 /* Something worked... */
Eric Dumazetadf30902009-06-02 05:19:30 +0000863 dst_confirm(skb_dst(skb));
Chuck Levera246b012005-08-11 16:25:23 -0400864
Chuck Lever1570c1e2005-08-25 16:25:52 -0700865 xprt_adjust_cwnd(task, copied);
866 xprt_update_rtt(task);
867 xprt_complete_rqst(task, copied);
Chuck Levera246b012005-08-11 16:25:23 -0400868
869 out_unlock:
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400870 spin_unlock(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -0400871 dropit:
872 skb_free_datagram(sk, skb);
873 out:
874 read_unlock(&sk->sk_callback_lock);
875}
876
Chuck Leverdd456472006-12-05 16:35:44 -0500877static inline void xs_tcp_read_fraghdr(struct rpc_xprt *xprt, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -0400878{
Chuck Lever51971132006-12-05 16:35:19 -0500879 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400880 size_t len, used;
881 char *p;
882
Chuck Lever51971132006-12-05 16:35:19 -0500883 p = ((char *) &transport->tcp_fraghdr) + transport->tcp_offset;
884 len = sizeof(transport->tcp_fraghdr) - transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -0500885 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -0500886 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -0400887 if (used != len)
888 return;
Chuck Lever808012f2005-08-25 16:25:49 -0700889
Chuck Lever51971132006-12-05 16:35:19 -0500890 transport->tcp_reclen = ntohl(transport->tcp_fraghdr);
891 if (transport->tcp_reclen & RPC_LAST_STREAM_FRAGMENT)
Chuck Levere136d092006-12-05 16:35:23 -0500892 transport->tcp_flags |= TCP_RCV_LAST_FRAG;
Chuck Levera246b012005-08-11 16:25:23 -0400893 else
Chuck Levere136d092006-12-05 16:35:23 -0500894 transport->tcp_flags &= ~TCP_RCV_LAST_FRAG;
Chuck Lever51971132006-12-05 16:35:19 -0500895 transport->tcp_reclen &= RPC_FRAGMENT_SIZE_MASK;
Chuck Lever808012f2005-08-25 16:25:49 -0700896
Chuck Levere136d092006-12-05 16:35:23 -0500897 transport->tcp_flags &= ~TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -0500898 transport->tcp_offset = 0;
Chuck Lever808012f2005-08-25 16:25:49 -0700899
Chuck Levera246b012005-08-11 16:25:23 -0400900 /* Sanity check of the record length */
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400901 if (unlikely(transport->tcp_reclen < 8)) {
Chuck Lever46121cf2007-01-31 12:14:08 -0500902 dprintk("RPC: invalid TCP record fragment length\n");
Trond Myklebust3ebb0672007-11-06 18:40:12 -0500903 xprt_force_disconnect(xprt);
Chuck Lever9903cd12005-08-11 16:25:26 -0400904 return;
Chuck Levera246b012005-08-11 16:25:23 -0400905 }
Chuck Lever46121cf2007-01-31 12:14:08 -0500906 dprintk("RPC: reading TCP record fragment of length %d\n",
Chuck Lever51971132006-12-05 16:35:19 -0500907 transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -0400908}
909
Chuck Lever51971132006-12-05 16:35:19 -0500910static void xs_tcp_check_fraghdr(struct sock_xprt *transport)
Chuck Levera246b012005-08-11 16:25:23 -0400911{
Chuck Lever51971132006-12-05 16:35:19 -0500912 if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -0500913 transport->tcp_flags |= TCP_RCV_COPY_FRAGHDR;
Chuck Lever51971132006-12-05 16:35:19 -0500914 transport->tcp_offset = 0;
Chuck Levere136d092006-12-05 16:35:23 -0500915 if (transport->tcp_flags & TCP_RCV_LAST_FRAG) {
916 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
917 transport->tcp_flags |= TCP_RCV_COPY_XID;
Chuck Lever51971132006-12-05 16:35:19 -0500918 transport->tcp_copied = 0;
Chuck Levera246b012005-08-11 16:25:23 -0400919 }
920 }
921}
922
Chuck Leverdd456472006-12-05 16:35:44 -0500923static inline void xs_tcp_read_xid(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -0400924{
925 size_t len, used;
926 char *p;
927
Chuck Lever51971132006-12-05 16:35:19 -0500928 len = sizeof(transport->tcp_xid) - transport->tcp_offset;
Chuck Lever46121cf2007-01-31 12:14:08 -0500929 dprintk("RPC: reading XID (%Zu bytes)\n", len);
Chuck Lever51971132006-12-05 16:35:19 -0500930 p = ((char *) &transport->tcp_xid) + transport->tcp_offset;
Chuck Lever9d292312006-12-05 16:35:41 -0500931 used = xdr_skb_read_bits(desc, p, len);
Chuck Lever51971132006-12-05 16:35:19 -0500932 transport->tcp_offset += used;
Chuck Levera246b012005-08-11 16:25:23 -0400933 if (used != len)
934 return;
Chuck Levere136d092006-12-05 16:35:23 -0500935 transport->tcp_flags &= ~TCP_RCV_COPY_XID;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -0400936 transport->tcp_flags |= TCP_RCV_READ_CALLDIR;
Chuck Lever51971132006-12-05 16:35:19 -0500937 transport->tcp_copied = 4;
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400938 dprintk("RPC: reading %s XID %08x\n",
939 (transport->tcp_flags & TCP_RPC_REPLY) ? "reply for"
940 : "request with",
Chuck Lever51971132006-12-05 16:35:19 -0500941 ntohl(transport->tcp_xid));
942 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -0400943}
944
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400945static inline void xs_tcp_read_calldir(struct sock_xprt *transport,
946 struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -0400947{
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400948 size_t len, used;
949 u32 offset;
950 __be32 calldir;
951
952 /*
953 * We want transport->tcp_offset to be 8 at the end of this routine
954 * (4 bytes for the xid and 4 bytes for the call/reply flag).
955 * When this function is called for the first time,
956 * transport->tcp_offset is 4 (after having already read the xid).
957 */
958 offset = transport->tcp_offset - sizeof(transport->tcp_xid);
959 len = sizeof(calldir) - offset;
960 dprintk("RPC: reading CALL/REPLY flag (%Zu bytes)\n", len);
961 used = xdr_skb_read_bits(desc, &calldir, len);
962 transport->tcp_offset += used;
963 if (used != len)
964 return;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -0400965 transport->tcp_flags &= ~TCP_RCV_READ_CALLDIR;
966 transport->tcp_flags |= TCP_RCV_COPY_CALLDIR;
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400967 transport->tcp_flags |= TCP_RCV_COPY_DATA;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -0400968 /*
969 * We don't yet have the XDR buffer, so we will write the calldir
970 * out after we get the buffer from the 'struct rpc_rqst'
971 */
Ricardo Labiaga18dca022009-04-01 09:22:53 -0400972 if (ntohl(calldir) == RPC_REPLY)
973 transport->tcp_flags |= TCP_RPC_REPLY;
974 else
975 transport->tcp_flags &= ~TCP_RPC_REPLY;
976 dprintk("RPC: reading %s CALL/REPLY flag %08x\n",
977 (transport->tcp_flags & TCP_RPC_REPLY) ?
978 "reply for" : "request with", calldir);
979 xs_tcp_check_fraghdr(transport);
980}
981
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -0400982static inline void xs_tcp_read_common(struct rpc_xprt *xprt,
983 struct xdr_skb_reader *desc,
984 struct rpc_rqst *req)
Chuck Levera246b012005-08-11 16:25:23 -0400985{
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -0400986 struct sock_xprt *transport =
987 container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -0400988 struct xdr_buf *rcvbuf;
989 size_t len;
990 ssize_t r;
991
Chuck Levera246b012005-08-11 16:25:23 -0400992 rcvbuf = &req->rq_private_buf;
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -0400993
994 if (transport->tcp_flags & TCP_RCV_COPY_CALLDIR) {
995 /*
996 * Save the RPC direction in the XDR buffer
997 */
998 __be32 calldir = transport->tcp_flags & TCP_RPC_REPLY ?
999 htonl(RPC_REPLY) : 0;
1000
1001 memcpy(rcvbuf->head[0].iov_base + transport->tcp_copied,
1002 &calldir, sizeof(calldir));
1003 transport->tcp_copied += sizeof(calldir);
1004 transport->tcp_flags &= ~TCP_RCV_COPY_CALLDIR;
Chuck Levera246b012005-08-11 16:25:23 -04001005 }
1006
Chuck Levera246b012005-08-11 16:25:23 -04001007 len = desc->count;
Chuck Lever51971132006-12-05 16:35:19 -05001008 if (len > transport->tcp_reclen - transport->tcp_offset) {
Chuck Leverdd456472006-12-05 16:35:44 -05001009 struct xdr_skb_reader my_desc;
Chuck Levera246b012005-08-11 16:25:23 -04001010
Chuck Lever51971132006-12-05 16:35:19 -05001011 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001012 memcpy(&my_desc, desc, sizeof(my_desc));
1013 my_desc.count = len;
Chuck Lever51971132006-12-05 16:35:19 -05001014 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001015 &my_desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001016 desc->count -= r;
1017 desc->offset += r;
1018 } else
Chuck Lever51971132006-12-05 16:35:19 -05001019 r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied,
Chuck Lever9d292312006-12-05 16:35:41 -05001020 desc, xdr_skb_read_bits);
Chuck Levera246b012005-08-11 16:25:23 -04001021
1022 if (r > 0) {
Chuck Lever51971132006-12-05 16:35:19 -05001023 transport->tcp_copied += r;
1024 transport->tcp_offset += r;
Chuck Levera246b012005-08-11 16:25:23 -04001025 }
1026 if (r != len) {
1027 /* Error when copying to the receive buffer,
1028 * usually because we weren't able to allocate
1029 * additional buffer pages. All we can do now
Chuck Levere136d092006-12-05 16:35:23 -05001030 * is turn off TCP_RCV_COPY_DATA, so the request
Chuck Levera246b012005-08-11 16:25:23 -04001031 * will not receive any additional updates,
1032 * and time out.
1033 * Any remaining data from this record will
1034 * be discarded.
1035 */
Chuck Levere136d092006-12-05 16:35:23 -05001036 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever46121cf2007-01-31 12:14:08 -05001037 dprintk("RPC: XID %08x truncated request\n",
Chuck Lever51971132006-12-05 16:35:19 -05001038 ntohl(transport->tcp_xid));
Chuck Lever46121cf2007-01-31 12:14:08 -05001039 dprintk("RPC: xprt = %p, tcp_copied = %lu, "
1040 "tcp_offset = %u, tcp_reclen = %u\n",
1041 xprt, transport->tcp_copied,
1042 transport->tcp_offset, transport->tcp_reclen);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001043 return;
Chuck Levera246b012005-08-11 16:25:23 -04001044 }
1045
Chuck Lever46121cf2007-01-31 12:14:08 -05001046 dprintk("RPC: XID %08x read %Zd bytes\n",
Chuck Lever51971132006-12-05 16:35:19 -05001047 ntohl(transport->tcp_xid), r);
Chuck Lever46121cf2007-01-31 12:14:08 -05001048 dprintk("RPC: xprt = %p, tcp_copied = %lu, tcp_offset = %u, "
1049 "tcp_reclen = %u\n", xprt, transport->tcp_copied,
1050 transport->tcp_offset, transport->tcp_reclen);
Chuck Levera246b012005-08-11 16:25:23 -04001051
Chuck Lever51971132006-12-05 16:35:19 -05001052 if (transport->tcp_copied == req->rq_private_buf.buflen)
Chuck Levere136d092006-12-05 16:35:23 -05001053 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Lever51971132006-12-05 16:35:19 -05001054 else if (transport->tcp_offset == transport->tcp_reclen) {
Chuck Levere136d092006-12-05 16:35:23 -05001055 if (transport->tcp_flags & TCP_RCV_LAST_FRAG)
1056 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
Chuck Levera246b012005-08-11 16:25:23 -04001057 }
1058
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001059 return;
1060}
1061
1062/*
1063 * Finds the request corresponding to the RPC xid and invokes the common
1064 * tcp read code to read the data.
1065 */
1066static inline int xs_tcp_read_reply(struct rpc_xprt *xprt,
1067 struct xdr_skb_reader *desc)
1068{
1069 struct sock_xprt *transport =
1070 container_of(xprt, struct sock_xprt, xprt);
1071 struct rpc_rqst *req;
1072
1073 dprintk("RPC: read reply XID %08x\n", ntohl(transport->tcp_xid));
1074
1075 /* Find and lock the request corresponding to this xid */
1076 spin_lock(&xprt->transport_lock);
1077 req = xprt_lookup_rqst(xprt, transport->tcp_xid);
1078 if (!req) {
1079 dprintk("RPC: XID %08x request not found!\n",
1080 ntohl(transport->tcp_xid));
1081 spin_unlock(&xprt->transport_lock);
1082 return -1;
1083 }
1084
1085 xs_tcp_read_common(xprt, desc, req);
1086
Chuck Levere136d092006-12-05 16:35:23 -05001087 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA))
Chuck Lever51971132006-12-05 16:35:19 -05001088 xprt_complete_rqst(req->rq_task, transport->tcp_copied);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001089
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001090 spin_unlock(&xprt->transport_lock);
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001091 return 0;
1092}
1093
1094#if defined(CONFIG_NFS_V4_1)
1095/*
1096 * Obtains an rpc_rqst previously allocated and invokes the common
1097 * tcp read code to read the data. The result is placed in the callback
1098 * queue.
1099 * If we're unable to obtain the rpc_rqst we schedule the closing of the
1100 * connection and return -1.
1101 */
1102static inline int xs_tcp_read_callback(struct rpc_xprt *xprt,
1103 struct xdr_skb_reader *desc)
1104{
1105 struct sock_xprt *transport =
1106 container_of(xprt, struct sock_xprt, xprt);
1107 struct rpc_rqst *req;
1108
1109 req = xprt_alloc_bc_request(xprt);
1110 if (req == NULL) {
1111 printk(KERN_WARNING "Callback slot table overflowed\n");
1112 xprt_force_disconnect(xprt);
1113 return -1;
1114 }
1115
1116 req->rq_xid = transport->tcp_xid;
1117 dprintk("RPC: read callback XID %08x\n", ntohl(req->rq_xid));
1118 xs_tcp_read_common(xprt, desc, req);
1119
1120 if (!(transport->tcp_flags & TCP_RCV_COPY_DATA)) {
1121 struct svc_serv *bc_serv = xprt->bc_serv;
1122
1123 /*
1124 * Add callback request to callback list. The callback
1125 * service sleeps on the sv_cb_waitq waiting for new
1126 * requests. Wake it up after adding enqueing the
1127 * request.
1128 */
1129 dprintk("RPC: add callback request to list\n");
1130 spin_lock(&bc_serv->sv_cb_lock);
1131 list_add(&req->rq_bc_list, &bc_serv->sv_cb_list);
1132 spin_unlock(&bc_serv->sv_cb_lock);
1133 wake_up(&bc_serv->sv_cb_waitq);
1134 }
1135
1136 req->rq_private_buf.len = transport->tcp_copied;
1137
1138 return 0;
1139}
1140
1141static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1142 struct xdr_skb_reader *desc)
1143{
1144 struct sock_xprt *transport =
1145 container_of(xprt, struct sock_xprt, xprt);
1146
1147 return (transport->tcp_flags & TCP_RPC_REPLY) ?
1148 xs_tcp_read_reply(xprt, desc) :
1149 xs_tcp_read_callback(xprt, desc);
1150}
1151#else
1152static inline int _xs_tcp_read_data(struct rpc_xprt *xprt,
1153 struct xdr_skb_reader *desc)
1154{
1155 return xs_tcp_read_reply(xprt, desc);
1156}
1157#endif /* CONFIG_NFS_V4_1 */
1158
1159/*
1160 * Read data off the transport. This can be either an RPC_CALL or an
1161 * RPC_REPLY. Relay the processing to helper functions.
1162 */
1163static void xs_tcp_read_data(struct rpc_xprt *xprt,
1164 struct xdr_skb_reader *desc)
1165{
1166 struct sock_xprt *transport =
1167 container_of(xprt, struct sock_xprt, xprt);
1168
1169 if (_xs_tcp_read_data(xprt, desc) == 0)
1170 xs_tcp_check_fraghdr(transport);
1171 else {
1172 /*
1173 * The transport_lock protects the request handling.
1174 * There's no need to hold it to update the tcp_flags.
1175 */
1176 transport->tcp_flags &= ~TCP_RCV_COPY_DATA;
1177 }
Chuck Levera246b012005-08-11 16:25:23 -04001178}
1179
Chuck Leverdd456472006-12-05 16:35:44 -05001180static inline void xs_tcp_read_discard(struct sock_xprt *transport, struct xdr_skb_reader *desc)
Chuck Levera246b012005-08-11 16:25:23 -04001181{
1182 size_t len;
1183
Chuck Lever51971132006-12-05 16:35:19 -05001184 len = transport->tcp_reclen - transport->tcp_offset;
Chuck Levera246b012005-08-11 16:25:23 -04001185 if (len > desc->count)
1186 len = desc->count;
1187 desc->count -= len;
1188 desc->offset += len;
Chuck Lever51971132006-12-05 16:35:19 -05001189 transport->tcp_offset += len;
Chuck Lever46121cf2007-01-31 12:14:08 -05001190 dprintk("RPC: discarded %Zu bytes\n", len);
Chuck Lever51971132006-12-05 16:35:19 -05001191 xs_tcp_check_fraghdr(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001192}
1193
Chuck Lever9903cd12005-08-11 16:25:26 -04001194static 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 -04001195{
1196 struct rpc_xprt *xprt = rd_desc->arg.data;
Chuck Lever51971132006-12-05 16:35:19 -05001197 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leverdd456472006-12-05 16:35:44 -05001198 struct xdr_skb_reader desc = {
Chuck Levera246b012005-08-11 16:25:23 -04001199 .skb = skb,
1200 .offset = offset,
1201 .count = len,
Chuck Lever9903cd12005-08-11 16:25:26 -04001202 };
Chuck Levera246b012005-08-11 16:25:23 -04001203
Chuck Lever46121cf2007-01-31 12:14:08 -05001204 dprintk("RPC: xs_tcp_data_recv started\n");
Chuck Levera246b012005-08-11 16:25:23 -04001205 do {
1206 /* Read in a new fragment marker if necessary */
1207 /* Can we ever really expect to get completely empty fragments? */
Chuck Levere136d092006-12-05 16:35:23 -05001208 if (transport->tcp_flags & TCP_RCV_COPY_FRAGHDR) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001209 xs_tcp_read_fraghdr(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001210 continue;
1211 }
1212 /* Read in the xid if necessary */
Chuck Levere136d092006-12-05 16:35:23 -05001213 if (transport->tcp_flags & TCP_RCV_COPY_XID) {
Chuck Lever51971132006-12-05 16:35:19 -05001214 xs_tcp_read_xid(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001215 continue;
1216 }
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001217 /* Read in the call/reply flag */
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04001218 if (transport->tcp_flags & TCP_RCV_READ_CALLDIR) {
Ricardo Labiaga18dca022009-04-01 09:22:53 -04001219 xs_tcp_read_calldir(transport, &desc);
1220 continue;
1221 }
Chuck Levera246b012005-08-11 16:25:23 -04001222 /* Read in the request data */
Chuck Levere136d092006-12-05 16:35:23 -05001223 if (transport->tcp_flags & TCP_RCV_COPY_DATA) {
Ricardo Labiaga44b98ef2009-04-01 09:23:02 -04001224 xs_tcp_read_data(xprt, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001225 continue;
1226 }
1227 /* Skip over any trailing bytes on short reads */
Chuck Lever51971132006-12-05 16:35:19 -05001228 xs_tcp_read_discard(transport, &desc);
Chuck Levera246b012005-08-11 16:25:23 -04001229 } while (desc.count);
Chuck Lever46121cf2007-01-31 12:14:08 -05001230 dprintk("RPC: xs_tcp_data_recv done\n");
Chuck Levera246b012005-08-11 16:25:23 -04001231 return len - desc.count;
1232}
1233
Chuck Lever9903cd12005-08-11 16:25:26 -04001234/**
1235 * xs_tcp_data_ready - "data ready" callback for TCP sockets
1236 * @sk: socket with data to read
1237 * @bytes: how much data to read
1238 *
1239 */
1240static void xs_tcp_data_ready(struct sock *sk, int bytes)
Chuck Levera246b012005-08-11 16:25:23 -04001241{
1242 struct rpc_xprt *xprt;
1243 read_descriptor_t rd_desc;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001244 int read;
Chuck Levera246b012005-08-11 16:25:23 -04001245
Chuck Lever46121cf2007-01-31 12:14:08 -05001246 dprintk("RPC: xs_tcp_data_ready...\n");
1247
Chuck Levera246b012005-08-11 16:25:23 -04001248 read_lock(&sk->sk_callback_lock);
Chuck Lever9903cd12005-08-11 16:25:26 -04001249 if (!(xprt = xprt_from_sock(sk)))
Chuck Levera246b012005-08-11 16:25:23 -04001250 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04001251 if (xprt->shutdown)
1252 goto out;
1253
Neil Brown61d0a8e2009-09-23 14:36:37 -04001254 /* Any data means we had a useful conversation, so
1255 * the we don't need to delay the next reconnect
1256 */
1257 if (xprt->reestablish_timeout)
1258 xprt->reestablish_timeout = 0;
1259
Chuck Lever9903cd12005-08-11 16:25:26 -04001260 /* We use rd_desc to pass struct xprt to xs_tcp_data_recv */
Chuck Levera246b012005-08-11 16:25:23 -04001261 rd_desc.arg.data = xprt;
Trond Myklebustff2d7db2008-02-25 21:40:51 -08001262 do {
1263 rd_desc.count = 65536;
1264 read = tcp_read_sock(sk, &rd_desc, xs_tcp_data_recv);
1265 } while (read > 0);
Chuck Levera246b012005-08-11 16:25:23 -04001266out:
1267 read_unlock(&sk->sk_callback_lock);
1268}
1269
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001270/*
1271 * Do the equivalent of linger/linger2 handling for dealing with
1272 * broken servers that don't close the socket in a timely
1273 * fashion
1274 */
1275static void xs_tcp_schedule_linger_timeout(struct rpc_xprt *xprt,
1276 unsigned long timeout)
1277{
1278 struct sock_xprt *transport;
1279
1280 if (xprt_test_and_set_connecting(xprt))
1281 return;
1282 set_bit(XPRT_CONNECTION_ABORT, &xprt->state);
1283 transport = container_of(xprt, struct sock_xprt, xprt);
1284 queue_delayed_work(rpciod_workqueue, &transport->connect_worker,
1285 timeout);
1286}
1287
1288static void xs_tcp_cancel_linger_timeout(struct rpc_xprt *xprt)
1289{
1290 struct sock_xprt *transport;
1291
1292 transport = container_of(xprt, struct sock_xprt, xprt);
1293
1294 if (!test_bit(XPRT_CONNECTION_ABORT, &xprt->state) ||
1295 !cancel_delayed_work(&transport->connect_worker))
1296 return;
1297 clear_bit(XPRT_CONNECTION_ABORT, &xprt->state);
1298 xprt_clear_connecting(xprt);
1299}
1300
1301static void xs_sock_mark_closed(struct rpc_xprt *xprt)
1302{
1303 smp_mb__before_clear_bit();
1304 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
1305 clear_bit(XPRT_CLOSING, &xprt->state);
1306 smp_mb__after_clear_bit();
1307 /* Mark transport as closed and wake up all pending tasks */
1308 xprt_disconnect_done(xprt);
1309}
1310
Chuck Lever9903cd12005-08-11 16:25:26 -04001311/**
1312 * xs_tcp_state_change - callback to handle TCP socket state changes
1313 * @sk: socket whose state has changed
1314 *
1315 */
1316static void xs_tcp_state_change(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001317{
Chuck Lever9903cd12005-08-11 16:25:26 -04001318 struct rpc_xprt *xprt;
Chuck Levera246b012005-08-11 16:25:23 -04001319
1320 read_lock(&sk->sk_callback_lock);
1321 if (!(xprt = xprt_from_sock(sk)))
1322 goto out;
Chuck Lever46121cf2007-01-31 12:14:08 -05001323 dprintk("RPC: xs_tcp_state_change client %p...\n", xprt);
1324 dprintk("RPC: state %x conn %d dead %d zapped %d\n",
1325 sk->sk_state, xprt_connected(xprt),
1326 sock_flag(sk, SOCK_DEAD),
1327 sock_flag(sk, SOCK_ZAPPED));
Chuck Levera246b012005-08-11 16:25:23 -04001328
1329 switch (sk->sk_state) {
1330 case TCP_ESTABLISHED:
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001331 spin_lock_bh(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001332 if (!xprt_test_and_set_connected(xprt)) {
Chuck Lever51971132006-12-05 16:35:19 -05001333 struct sock_xprt *transport = container_of(xprt,
1334 struct sock_xprt, xprt);
1335
Chuck Levera246b012005-08-11 16:25:23 -04001336 /* Reset TCP record info */
Chuck Lever51971132006-12-05 16:35:19 -05001337 transport->tcp_offset = 0;
1338 transport->tcp_reclen = 0;
1339 transport->tcp_copied = 0;
Chuck Levere136d092006-12-05 16:35:23 -05001340 transport->tcp_flags =
1341 TCP_RCV_COPY_FRAGHDR | TCP_RCV_COPY_XID;
Chuck Lever51971132006-12-05 16:35:19 -05001342
Trond Myklebust2a491992009-03-11 14:38:00 -04001343 xprt_wake_pending_tasks(xprt, -EAGAIN);
Chuck Levera246b012005-08-11 16:25:23 -04001344 }
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001345 spin_unlock_bh(&xprt->transport_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001346 break;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001347 case TCP_FIN_WAIT1:
1348 /* The client initiated a shutdown of the socket */
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001349 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001350 xprt->reestablish_timeout = 0;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001351 set_bit(XPRT_CLOSING, &xprt->state);
1352 smp_mb__before_clear_bit();
1353 clear_bit(XPRT_CONNECTED, &xprt->state);
Trond Myklebustef803672007-12-31 16:19:17 -05001354 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001355 smp_mb__after_clear_bit();
Trond Myklebust25fe6142009-03-11 14:38:03 -04001356 xs_tcp_schedule_linger_timeout(xprt, xs_tcp_fin_timeout);
Chuck Levera246b012005-08-11 16:25:23 -04001357 break;
Trond Myklebust632e3bd2006-01-03 09:55:55 +01001358 case TCP_CLOSE_WAIT:
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001359 /* The server initiated a shutdown of the socket */
Trond Myklebust66af1e52007-11-06 10:18:36 -05001360 xprt_force_disconnect(xprt);
Trond Myklebust663b8852008-01-01 18:42:12 -05001361 case TCP_SYN_SENT:
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04001362 xprt->connect_cookie++;
Trond Myklebust663b8852008-01-01 18:42:12 -05001363 case TCP_CLOSING:
1364 /*
1365 * If the server closed down the connection, make sure that
1366 * we back off before reconnecting
1367 */
1368 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
1369 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001370 break;
1371 case TCP_LAST_ACK:
Trond Myklebust670f9452009-03-11 14:37:58 -04001372 set_bit(XPRT_CLOSING, &xprt->state);
Trond Myklebust25fe6142009-03-11 14:38:03 -04001373 xs_tcp_schedule_linger_timeout(xprt, xs_tcp_fin_timeout);
Trond Myklebust3b948ae2007-11-05 17:42:39 -05001374 smp_mb__before_clear_bit();
1375 clear_bit(XPRT_CONNECTED, &xprt->state);
1376 smp_mb__after_clear_bit();
1377 break;
1378 case TCP_CLOSE:
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001379 xs_tcp_cancel_linger_timeout(xprt);
1380 xs_sock_mark_closed(xprt);
Chuck Levera246b012005-08-11 16:25:23 -04001381 }
1382 out:
1383 read_unlock(&sk->sk_callback_lock);
1384}
1385
Chuck Lever9903cd12005-08-11 16:25:26 -04001386/**
Trond Myklebust482f32e2009-03-11 14:38:00 -04001387 * xs_error_report - callback mainly for catching socket errors
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001388 * @sk: socket
1389 */
Trond Myklebust482f32e2009-03-11 14:38:00 -04001390static void xs_error_report(struct sock *sk)
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001391{
1392 struct rpc_xprt *xprt;
1393
1394 read_lock(&sk->sk_callback_lock);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001395 if (!(xprt = xprt_from_sock(sk)))
1396 goto out;
1397 dprintk("RPC: %s client %p...\n"
1398 "RPC: error %d\n",
1399 __func__, xprt, sk->sk_err);
Trond Myklebust482f32e2009-03-11 14:38:00 -04001400 xprt_wake_pending_tasks(xprt, -EAGAIN);
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001401out:
1402 read_unlock(&sk->sk_callback_lock);
1403}
1404
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001405static void xs_write_space(struct sock *sk)
1406{
1407 struct socket *sock;
1408 struct rpc_xprt *xprt;
1409
1410 if (unlikely(!(sock = sk->sk_socket)))
1411 return;
1412 clear_bit(SOCK_NOSPACE, &sock->flags);
1413
1414 if (unlikely(!(xprt = xprt_from_sock(sk))))
1415 return;
1416 if (test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags) == 0)
1417 return;
1418
1419 xprt_write_space(xprt);
1420}
1421
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001422/**
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001423 * xs_udp_write_space - callback invoked when socket buffer space
1424 * becomes available
Chuck Lever9903cd12005-08-11 16:25:26 -04001425 * @sk: socket whose state has changed
1426 *
Chuck Levera246b012005-08-11 16:25:23 -04001427 * Called when more output buffer space is available for this socket.
1428 * We try not to wake our writers until they can make "significant"
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001429 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
Chuck Levera246b012005-08-11 16:25:23 -04001430 * with a bunch of small requests.
1431 */
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001432static void xs_udp_write_space(struct sock *sk)
Chuck Levera246b012005-08-11 16:25:23 -04001433{
Chuck Levera246b012005-08-11 16:25:23 -04001434 read_lock(&sk->sk_callback_lock);
Chuck Levera246b012005-08-11 16:25:23 -04001435
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001436 /* from net/core/sock.c:sock_def_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001437 if (sock_writeable(sk))
1438 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001439
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001440 read_unlock(&sk->sk_callback_lock);
1441}
Chuck Levera246b012005-08-11 16:25:23 -04001442
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001443/**
1444 * xs_tcp_write_space - callback invoked when socket buffer space
1445 * becomes available
1446 * @sk: socket whose state has changed
1447 *
1448 * Called when more output buffer space is available for this socket.
1449 * We try not to wake our writers until they can make "significant"
1450 * progress, otherwise we'll waste resources thrashing kernel_sendmsg
1451 * with a bunch of small requests.
1452 */
1453static void xs_tcp_write_space(struct sock *sk)
1454{
1455 read_lock(&sk->sk_callback_lock);
1456
1457 /* from net/core/stream.c:sk_stream_write_space */
Ilpo Järvinen1f0fa152009-02-06 23:48:33 -08001458 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk))
1459 xs_write_space(sk);
Chuck Leverc7b2cae2005-08-11 16:25:50 -04001460
Chuck Levera246b012005-08-11 16:25:23 -04001461 read_unlock(&sk->sk_callback_lock);
1462}
1463
Chuck Lever470056c2005-08-25 16:25:56 -07001464static void xs_udp_do_set_buffer_size(struct rpc_xprt *xprt)
Chuck Levera246b012005-08-11 16:25:23 -04001465{
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001466 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1467 struct sock *sk = transport->inet;
Chuck Levera246b012005-08-11 16:25:23 -04001468
Chuck Lever7c6e0662006-12-05 16:35:30 -05001469 if (transport->rcvsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001470 sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001471 sk->sk_rcvbuf = transport->rcvsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001472 }
Chuck Lever7c6e0662006-12-05 16:35:30 -05001473 if (transport->sndsize) {
Chuck Levera246b012005-08-11 16:25:23 -04001474 sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
Chuck Lever7c6e0662006-12-05 16:35:30 -05001475 sk->sk_sndbuf = transport->sndsize * xprt->max_reqs * 2;
Chuck Levera246b012005-08-11 16:25:23 -04001476 sk->sk_write_space(sk);
1477 }
1478}
1479
Chuck Lever43118c22005-08-25 16:25:49 -07001480/**
Chuck Lever470056c2005-08-25 16:25:56 -07001481 * xs_udp_set_buffer_size - set send and receive limits
Chuck Lever43118c22005-08-25 16:25:49 -07001482 * @xprt: generic transport
Chuck Lever470056c2005-08-25 16:25:56 -07001483 * @sndsize: requested size of send buffer, in bytes
1484 * @rcvsize: requested size of receive buffer, in bytes
Chuck Lever43118c22005-08-25 16:25:49 -07001485 *
Chuck Lever470056c2005-08-25 16:25:56 -07001486 * Set socket send and receive buffer size limits.
Chuck Lever43118c22005-08-25 16:25:49 -07001487 */
Chuck Lever470056c2005-08-25 16:25:56 -07001488static void xs_udp_set_buffer_size(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize)
Chuck Lever43118c22005-08-25 16:25:49 -07001489{
Chuck Lever7c6e0662006-12-05 16:35:30 -05001490 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
1491
1492 transport->sndsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001493 if (sndsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001494 transport->sndsize = sndsize + 1024;
1495 transport->rcvsize = 0;
Chuck Lever470056c2005-08-25 16:25:56 -07001496 if (rcvsize)
Chuck Lever7c6e0662006-12-05 16:35:30 -05001497 transport->rcvsize = rcvsize + 1024;
Chuck Lever470056c2005-08-25 16:25:56 -07001498
1499 xs_udp_do_set_buffer_size(xprt);
Chuck Lever43118c22005-08-25 16:25:49 -07001500}
1501
Chuck Lever46c0ee82005-08-25 16:25:52 -07001502/**
1503 * xs_udp_timer - called when a retransmit timeout occurs on a UDP transport
1504 * @task: task that timed out
1505 *
1506 * Adjust the congestion window after a retransmit timeout has occurred.
1507 */
1508static void xs_udp_timer(struct rpc_task *task)
1509{
1510 xprt_adjust_cwnd(task, -ETIMEDOUT);
1511}
1512
Chuck Leverb85d8802006-05-25 01:40:49 -04001513static unsigned short xs_get_random_port(void)
1514{
1515 unsigned short range = xprt_max_resvport - xprt_min_resvport;
1516 unsigned short rand = (unsigned short) net_random() % range;
1517 return rand + xprt_min_resvport;
1518}
1519
Chuck Lever92200412006-01-03 09:55:51 +01001520/**
1521 * xs_set_port - reset the port number in the remote endpoint address
1522 * @xprt: generic transport
1523 * @port: new port number
1524 *
1525 */
1526static void xs_set_port(struct rpc_xprt *xprt, unsigned short port)
1527{
Chuck Lever46121cf2007-01-31 12:14:08 -05001528 dprintk("RPC: setting port for xprt %p to %u\n", xprt, port);
Chuck Leverc4efcb12006-08-22 20:06:19 -04001529
Chuck Lever9dc3b092009-08-09 15:09:46 -04001530 rpc_set_port(xs_addr(xprt), port);
1531 xs_update_peer_port(xprt);
Chuck Lever92200412006-01-03 09:55:51 +01001532}
1533
Trond Myklebust67a391d2007-11-05 17:40:58 -05001534static unsigned short xs_get_srcport(struct sock_xprt *transport, struct socket *sock)
1535{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001536 unsigned short port = transport->srcport;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001537
1538 if (port == 0 && transport->xprt.resvport)
1539 port = xs_get_random_port();
1540 return port;
1541}
1542
1543static unsigned short xs_next_srcport(struct sock_xprt *transport, struct socket *sock, unsigned short port)
1544{
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001545 if (transport->srcport != 0)
1546 transport->srcport = 0;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001547 if (!transport->xprt.resvport)
1548 return 0;
1549 if (port <= xprt_min_resvport || port > xprt_max_resvport)
1550 return xprt_max_resvport;
1551 return --port;
1552}
1553
Chuck Lever7dc753f2007-08-06 11:57:28 -04001554static int xs_bind4(struct sock_xprt *transport, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001555{
1556 struct sockaddr_in myaddr = {
1557 .sin_family = AF_INET,
1558 };
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001559 struct sockaddr_in *sa;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001560 int err, nloop = 0;
1561 unsigned short port = xs_get_srcport(transport, sock);
1562 unsigned short last;
Chuck Levera246b012005-08-11 16:25:23 -04001563
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001564 sa = (struct sockaddr_in *)&transport->srcaddr;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001565 myaddr.sin_addr = sa->sin_addr;
Chuck Levera246b012005-08-11 16:25:23 -04001566 do {
1567 myaddr.sin_port = htons(port);
Sridhar Samudralae6242e92006-08-07 20:58:01 -07001568 err = kernel_bind(sock, (struct sockaddr *) &myaddr,
Chuck Levera246b012005-08-11 16:25:23 -04001569 sizeof(myaddr));
Trond Myklebust67a391d2007-11-05 17:40:58 -05001570 if (port == 0)
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001571 break;
Chuck Levera246b012005-08-11 16:25:23 -04001572 if (err == 0) {
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001573 transport->srcport = port;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02001574 break;
Chuck Levera246b012005-08-11 16:25:23 -04001575 }
Trond Myklebust67a391d2007-11-05 17:40:58 -05001576 last = port;
1577 port = xs_next_srcport(transport, sock, port);
1578 if (port > last)
1579 nloop++;
1580 } while (err == -EADDRINUSE && nloop != 2);
Harvey Harrison21454aa2008-10-31 00:54:56 -07001581 dprintk("RPC: %s %pI4:%u: %s (%d)\n",
1582 __func__, &myaddr.sin_addr,
Chuck Lever7dc753f2007-08-06 11:57:28 -04001583 port, err ? "failed" : "ok", err);
Chuck Levera246b012005-08-11 16:25:23 -04001584 return err;
1585}
1586
Chuck Lever90058d32007-08-06 11:57:33 -04001587static int xs_bind6(struct sock_xprt *transport, struct socket *sock)
1588{
1589 struct sockaddr_in6 myaddr = {
1590 .sin6_family = AF_INET6,
1591 };
1592 struct sockaddr_in6 *sa;
Trond Myklebust67a391d2007-11-05 17:40:58 -05001593 int err, nloop = 0;
1594 unsigned short port = xs_get_srcport(transport, sock);
1595 unsigned short last;
Chuck Lever90058d32007-08-06 11:57:33 -04001596
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001597 sa = (struct sockaddr_in6 *)&transport->srcaddr;
Chuck Lever90058d32007-08-06 11:57:33 -04001598 myaddr.sin6_addr = sa->sin6_addr;
1599 do {
1600 myaddr.sin6_port = htons(port);
1601 err = kernel_bind(sock, (struct sockaddr *) &myaddr,
1602 sizeof(myaddr));
Trond Myklebust67a391d2007-11-05 17:40:58 -05001603 if (port == 0)
Chuck Lever90058d32007-08-06 11:57:33 -04001604 break;
1605 if (err == 0) {
Chuck Leverfbfffbd2009-08-09 15:09:46 -04001606 transport->srcport = port;
Chuck Lever90058d32007-08-06 11:57:33 -04001607 break;
1608 }
Trond Myklebust67a391d2007-11-05 17:40:58 -05001609 last = port;
1610 port = xs_next_srcport(transport, sock, port);
1611 if (port > last)
1612 nloop++;
1613 } while (err == -EADDRINUSE && nloop != 2);
Harvey Harrison5b095d9892008-10-29 12:52:50 -07001614 dprintk("RPC: xs_bind6 %pI6:%u: %s (%d)\n",
Harvey Harrisonfdb46ee2008-10-28 16:10:17 -07001615 &myaddr.sin6_addr, port, err ? "failed" : "ok", err);
Chuck Levera246b012005-08-11 16:25:23 -04001616 return err;
1617}
1618
Peter Zijlstraed075362006-12-06 20:35:24 -08001619#ifdef CONFIG_DEBUG_LOCK_ALLOC
1620static struct lock_class_key xs_key[2];
1621static struct lock_class_key xs_slock_key[2];
1622
Chuck Lever8945ee52007-08-06 11:58:04 -04001623static inline void xs_reclassify_socket4(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001624{
1625 struct sock *sk = sock->sk;
Chuck Lever8945ee52007-08-06 11:58:04 -04001626
John Heffner02b3d342007-09-12 10:42:12 +02001627 BUG_ON(sock_owned_by_user(sk));
Chuck Lever8945ee52007-08-06 11:58:04 -04001628 sock_lock_init_class_and_name(sk, "slock-AF_INET-RPC",
1629 &xs_slock_key[0], "sk_lock-AF_INET-RPC", &xs_key[0]);
1630}
Peter Zijlstraed075362006-12-06 20:35:24 -08001631
Chuck Lever8945ee52007-08-06 11:58:04 -04001632static inline void xs_reclassify_socket6(struct socket *sock)
1633{
1634 struct sock *sk = sock->sk;
Peter Zijlstraed075362006-12-06 20:35:24 -08001635
Linus Torvaldsf4921af2007-10-15 10:46:05 -07001636 BUG_ON(sock_owned_by_user(sk));
Chuck Lever8945ee52007-08-06 11:58:04 -04001637 sock_lock_init_class_and_name(sk, "slock-AF_INET6-RPC",
1638 &xs_slock_key[1], "sk_lock-AF_INET6-RPC", &xs_key[1]);
Peter Zijlstraed075362006-12-06 20:35:24 -08001639}
1640#else
Chuck Lever8945ee52007-08-06 11:58:04 -04001641static inline void xs_reclassify_socket4(struct socket *sock)
1642{
1643}
1644
1645static inline void xs_reclassify_socket6(struct socket *sock)
Peter Zijlstraed075362006-12-06 20:35:24 -08001646{
1647}
1648#endif
1649
Chuck Lever16be2d22007-08-06 11:57:38 -04001650static void xs_udp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Levera246b012005-08-11 16:25:23 -04001651{
Chuck Lever16be2d22007-08-06 11:57:38 -04001652 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -04001653
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001654 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001655 struct sock *sk = sock->sk;
1656
1657 write_lock_bh(&sk->sk_callback_lock);
1658
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001659 xs_save_old_callbacks(transport, sk);
1660
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001661 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001662 sk->sk_data_ready = xs_udp_data_ready;
1663 sk->sk_write_space = xs_udp_write_space;
Trond Myklebust482f32e2009-03-11 14:38:00 -04001664 sk->sk_error_report = xs_error_report;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001665 sk->sk_no_check = UDP_CSUM_NORCV;
Trond Myklebustb079fa7b2005-12-13 16:13:52 -05001666 sk->sk_allocation = GFP_ATOMIC;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001667
1668 xprt_set_connected(xprt);
1669
1670 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001671 transport->sock = sock;
1672 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001673
1674 write_unlock_bh(&sk->sk_callback_lock);
1675 }
Chuck Lever470056c2005-08-25 16:25:56 -07001676 xs_udp_do_set_buffer_size(xprt);
Chuck Lever16be2d22007-08-06 11:57:38 -04001677}
1678
Chuck Levera246b012005-08-11 16:25:23 -04001679/**
Chuck Lever9c3d72d2007-08-06 11:57:43 -04001680 * xs_udp_connect_worker4 - set up a UDP socket
Chuck Levera246b012005-08-11 16:25:23 -04001681 * @work: RPC transport to connect
1682 *
1683 * Invoked by a work queue tasklet.
1684 */
Chuck Lever9c3d72d2007-08-06 11:57:43 -04001685static void xs_udp_connect_worker4(struct work_struct *work)
Chuck Levera246b012005-08-11 16:25:23 -04001686{
1687 struct sock_xprt *transport =
1688 container_of(work, struct sock_xprt, connect_worker.work);
1689 struct rpc_xprt *xprt = &transport->xprt;
1690 struct socket *sock = transport->sock;
1691 int err, status = -EIO;
1692
Trond Myklebust01d37c42009-03-11 14:09:39 -04001693 if (xprt->shutdown)
Chuck Lever9903cd12005-08-11 16:25:26 -04001694 goto out;
1695
Chuck Levera246b012005-08-11 16:25:23 -04001696 /* Start by resetting any existing state */
Chuck Leverfe315e72009-03-11 14:10:21 -04001697 xs_reset_transport(transport);
Chuck Levera246b012005-08-11 16:25:23 -04001698
Chuck Leverfe315e72009-03-11 14:10:21 -04001699 err = sock_create_kern(PF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock);
1700 if (err < 0) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001701 dprintk("RPC: can't create UDP transport socket (%d).\n", -err);
Chuck Levera246b012005-08-11 16:25:23 -04001702 goto out;
1703 }
Chuck Lever8945ee52007-08-06 11:58:04 -04001704 xs_reclassify_socket4(sock);
Chuck Levera246b012005-08-11 16:25:23 -04001705
Chuck Lever7dc753f2007-08-06 11:57:28 -04001706 if (xs_bind4(transport, sock)) {
Chuck Lever9903cd12005-08-11 16:25:26 -04001707 sock_release(sock);
1708 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04001709 }
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001710
Chuck Leverc740eff2009-08-09 15:09:46 -04001711 dprintk("RPC: worker connecting xprt %p via %s to "
1712 "%s (port %s)\n", xprt,
1713 xprt->address_strings[RPC_DISPLAY_PROTO],
1714 xprt->address_strings[RPC_DISPLAY_ADDR],
1715 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001716
Chuck Lever16be2d22007-08-06 11:57:38 -04001717 xs_udp_finish_connecting(xprt, sock);
Chuck Levera246b012005-08-11 16:25:23 -04001718 status = 0;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001719out:
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001720 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001721 xprt_wake_pending_tasks(xprt, status);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001722}
1723
Chuck Lever68e220b2007-08-06 11:57:48 -04001724/**
1725 * xs_udp_connect_worker6 - set up a UDP socket
1726 * @work: RPC transport to connect
1727 *
1728 * Invoked by a work queue tasklet.
1729 */
1730static void xs_udp_connect_worker6(struct work_struct *work)
1731{
1732 struct sock_xprt *transport =
1733 container_of(work, struct sock_xprt, connect_worker.work);
1734 struct rpc_xprt *xprt = &transport->xprt;
1735 struct socket *sock = transport->sock;
1736 int err, status = -EIO;
1737
Trond Myklebust01d37c42009-03-11 14:09:39 -04001738 if (xprt->shutdown)
Chuck Lever68e220b2007-08-06 11:57:48 -04001739 goto out;
1740
1741 /* Start by resetting any existing state */
Chuck Leverfe315e72009-03-11 14:10:21 -04001742 xs_reset_transport(transport);
Chuck Lever68e220b2007-08-06 11:57:48 -04001743
Chuck Leverfe315e72009-03-11 14:10:21 -04001744 err = sock_create_kern(PF_INET6, SOCK_DGRAM, IPPROTO_UDP, &sock);
1745 if (err < 0) {
Chuck Lever68e220b2007-08-06 11:57:48 -04001746 dprintk("RPC: can't create UDP transport socket (%d).\n", -err);
1747 goto out;
1748 }
Chuck Lever8945ee52007-08-06 11:58:04 -04001749 xs_reclassify_socket6(sock);
Chuck Lever68e220b2007-08-06 11:57:48 -04001750
1751 if (xs_bind6(transport, sock) < 0) {
1752 sock_release(sock);
1753 goto out;
1754 }
1755
Chuck Leverc740eff2009-08-09 15:09:46 -04001756 dprintk("RPC: worker connecting xprt %p via %s to "
1757 "%s (port %s)\n", xprt,
1758 xprt->address_strings[RPC_DISPLAY_PROTO],
1759 xprt->address_strings[RPC_DISPLAY_ADDR],
1760 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever68e220b2007-08-06 11:57:48 -04001761
1762 xs_udp_finish_connecting(xprt, sock);
Chuck Levera246b012005-08-11 16:25:23 -04001763 status = 0;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001764out:
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001765 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001766 xprt_wake_pending_tasks(xprt, status);
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001767}
1768
Chuck Lever3167e122005-08-25 16:25:55 -07001769/*
1770 * We need to preserve the port number so the reply cache on the server can
1771 * find our cached RPC replies when we get around to reconnecting.
1772 */
Trond Myklebust40d25492009-03-11 14:37:58 -04001773static void xs_abort_connection(struct rpc_xprt *xprt, struct sock_xprt *transport)
Chuck Lever3167e122005-08-25 16:25:55 -07001774{
1775 int result;
Chuck Lever3167e122005-08-25 16:25:55 -07001776 struct sockaddr any;
1777
Chuck Lever46121cf2007-01-31 12:14:08 -05001778 dprintk("RPC: disconnecting xprt %p to reuse port\n", xprt);
Chuck Lever3167e122005-08-25 16:25:55 -07001779
1780 /*
1781 * Disconnect the transport socket by doing a connect operation
1782 * with AF_UNSPEC. This should return immediately...
1783 */
1784 memset(&any, 0, sizeof(any));
1785 any.sa_family = AF_UNSPEC;
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001786 result = kernel_connect(transport->sock, &any, sizeof(any), 0);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001787 if (!result)
1788 xs_sock_mark_closed(xprt);
1789 else
Chuck Lever46121cf2007-01-31 12:14:08 -05001790 dprintk("RPC: AF_UNSPEC connect return code %d\n",
Chuck Lever3167e122005-08-25 16:25:55 -07001791 result);
1792}
1793
Trond Myklebust40d25492009-03-11 14:37:58 -04001794static void xs_tcp_reuse_connection(struct rpc_xprt *xprt, struct sock_xprt *transport)
1795{
1796 unsigned int state = transport->inet->sk_state;
1797
1798 if (state == TCP_CLOSE && transport->sock->state == SS_UNCONNECTED)
1799 return;
1800 if ((1 << state) & (TCPF_ESTABLISHED|TCPF_SYN_SENT))
1801 return;
1802 xs_abort_connection(xprt, transport);
1803}
1804
Chuck Lever16be2d22007-08-06 11:57:38 -04001805static int xs_tcp_finish_connecting(struct rpc_xprt *xprt, struct socket *sock)
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001806{
Chuck Lever16be2d22007-08-06 11:57:38 -04001807 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Leveredb267a2006-08-22 20:06:18 -04001808
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001809 if (!transport->inet) {
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001810 struct sock *sk = sock->sk;
1811
1812 write_lock_bh(&sk->sk_callback_lock);
1813
Trond Myklebust2a9e1cf2008-10-28 15:21:39 -04001814 xs_save_old_callbacks(transport, sk);
1815
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001816 sk->sk_user_data = xprt;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001817 sk->sk_data_ready = xs_tcp_data_ready;
1818 sk->sk_state_change = xs_tcp_state_change;
1819 sk->sk_write_space = xs_tcp_write_space;
Trond Myklebust482f32e2009-03-11 14:38:00 -04001820 sk->sk_error_report = xs_error_report;
Trond Myklebustb079fa7b2005-12-13 16:13:52 -05001821 sk->sk_allocation = GFP_ATOMIC;
Chuck Lever3167e122005-08-25 16:25:55 -07001822
1823 /* socket options */
1824 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
1825 sock_reset_flag(sk, SOCK_LINGER);
1826 tcp_sk(sk)->linger2 = 0;
1827 tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001828
1829 xprt_clear_connected(xprt);
1830
1831 /* Reset to new socket */
Chuck Leveree0ac0c2006-12-05 16:35:15 -05001832 transport->sock = sock;
1833 transport->inet = sk;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001834
1835 write_unlock_bh(&sk->sk_callback_lock);
1836 }
1837
Trond Myklebust01d37c42009-03-11 14:09:39 -04001838 if (!xprt_bound(xprt))
1839 return -ENOTCONN;
1840
Chuck Leverb0d93ad2005-08-11 16:25:53 -04001841 /* Tell the socket layer to start connecting... */
Chuck Lever262ca072006-03-20 13:44:16 -05001842 xprt->stat.connect_count++;
1843 xprt->stat.connect_start = jiffies;
Chuck Lever95392c52007-08-06 11:57:58 -04001844 return kernel_connect(sock, xs_addr(xprt), xprt->addrlen, O_NONBLOCK);
Chuck Lever16be2d22007-08-06 11:57:38 -04001845}
1846
1847/**
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001848 * xs_tcp_setup_socket - create a TCP socket and connect to a remote endpoint
1849 * @xprt: RPC transport to connect
1850 * @transport: socket transport to connect
1851 * @create_sock: function to create a socket of the correct type
Chuck Lever16be2d22007-08-06 11:57:38 -04001852 *
1853 * Invoked by a work queue tasklet.
1854 */
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001855static void xs_tcp_setup_socket(struct rpc_xprt *xprt,
1856 struct sock_xprt *transport,
1857 struct socket *(*create_sock)(struct rpc_xprt *,
1858 struct sock_xprt *))
Chuck Lever16be2d22007-08-06 11:57:38 -04001859{
Chuck Lever16be2d22007-08-06 11:57:38 -04001860 struct socket *sock = transport->sock;
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001861 int status = -EIO;
Chuck Lever16be2d22007-08-06 11:57:38 -04001862
Trond Myklebust01d37c42009-03-11 14:09:39 -04001863 if (xprt->shutdown)
Chuck Lever16be2d22007-08-06 11:57:38 -04001864 goto out;
1865
1866 if (!sock) {
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001867 clear_bit(XPRT_CONNECTION_ABORT, &xprt->state);
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001868 sock = create_sock(xprt, transport);
1869 if (IS_ERR(sock)) {
1870 status = PTR_ERR(sock);
Chuck Lever16be2d22007-08-06 11:57:38 -04001871 goto out;
1872 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001873 } else {
1874 int abort_and_exit;
1875
1876 abort_and_exit = test_and_clear_bit(XPRT_CONNECTION_ABORT,
1877 &xprt->state);
Chuck Lever16be2d22007-08-06 11:57:38 -04001878 /* "close" the socket, preserving the local port */
Trond Myklebust40d25492009-03-11 14:37:58 -04001879 xs_tcp_reuse_connection(xprt, transport);
Chuck Lever16be2d22007-08-06 11:57:38 -04001880
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001881 if (abort_and_exit)
1882 goto out_eagain;
1883 }
1884
Chuck Leverc740eff2009-08-09 15:09:46 -04001885 dprintk("RPC: worker connecting xprt %p via %s to "
1886 "%s (port %s)\n", xprt,
1887 xprt->address_strings[RPC_DISPLAY_PROTO],
1888 xprt->address_strings[RPC_DISPLAY_ADDR],
1889 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Lever16be2d22007-08-06 11:57:38 -04001890
1891 status = xs_tcp_finish_connecting(xprt, sock);
Chuck Lever46121cf2007-01-31 12:14:08 -05001892 dprintk("RPC: %p connect status %d connected %d sock state %d\n",
1893 xprt, -status, xprt_connected(xprt),
1894 sock->sk->sk_state);
Trond Myklebust2a491992009-03-11 14:38:00 -04001895 switch (status) {
Trond Myklebustf75e6742009-04-21 17:18:20 -04001896 default:
1897 printk("%s: connect returned unhandled error %d\n",
1898 __func__, status);
1899 case -EADDRNOTAVAIL:
1900 /* We're probably in TIME_WAIT. Get rid of existing socket,
1901 * and retry
1902 */
1903 set_bit(XPRT_CONNECTION_CLOSE, &xprt->state);
1904 xprt_force_disconnect(xprt);
Trond Myklebust88b5ed72009-06-17 13:22:57 -07001905 break;
Trond Myklebust8a2cec22009-03-11 14:38:01 -04001906 case -ECONNREFUSED:
1907 case -ECONNRESET:
1908 case -ENETUNREACH:
1909 /* retry with existing socket, after a delay */
Trond Myklebust2a491992009-03-11 14:38:00 -04001910 case 0:
1911 case -EINPROGRESS:
1912 case -EALREADY:
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001913 xprt_clear_connecting(xprt);
1914 return;
Trond Myklebust9fcfe0c2010-03-02 13:06:21 -05001915 case -EINVAL:
1916 /* Happens, for instance, if the user specified a link
1917 * local IPv6 address without a scope-id.
1918 */
1919 goto out;
Chuck Levera246b012005-08-11 16:25:23 -04001920 }
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001921out_eagain:
Trond Myklebust2a491992009-03-11 14:38:00 -04001922 status = -EAGAIN;
Chuck Levera246b012005-08-11 16:25:23 -04001923out:
Chuck Lever2226feb2005-08-11 16:25:38 -04001924 xprt_clear_connecting(xprt);
Trond Myklebust7d1e8252009-03-11 14:38:03 -04001925 xprt_wake_pending_tasks(xprt, status);
Chuck Levera246b012005-08-11 16:25:23 -04001926}
1927
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001928static struct socket *xs_create_tcp_sock4(struct rpc_xprt *xprt,
1929 struct sock_xprt *transport)
1930{
1931 struct socket *sock;
1932 int err;
1933
1934 /* start from scratch */
1935 err = sock_create_kern(PF_INET, SOCK_STREAM, IPPROTO_TCP, &sock);
1936 if (err < 0) {
1937 dprintk("RPC: can't create TCP transport socket (%d).\n",
1938 -err);
1939 goto out_err;
1940 }
1941 xs_reclassify_socket4(sock);
1942
1943 if (xs_bind4(transport, sock) < 0) {
1944 sock_release(sock);
1945 goto out_err;
1946 }
1947 return sock;
1948out_err:
1949 return ERR_PTR(-EIO);
1950}
1951
1952/**
Chuck Levera246b012005-08-11 16:25:23 -04001953 * xs_tcp_connect_worker4 - connect a TCP socket to a remote endpoint
1954 * @work: RPC transport to connect
1955 *
1956 * Invoked by a work queue tasklet.
1957 */
1958static void xs_tcp_connect_worker4(struct work_struct *work)
1959{
1960 struct sock_xprt *transport =
1961 container_of(work, struct sock_xprt, connect_worker.work);
1962 struct rpc_xprt *xprt = &transport->xprt;
Chuck Levera246b012005-08-11 16:25:23 -04001963
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001964 xs_tcp_setup_socket(xprt, transport, xs_create_tcp_sock4);
1965}
Chuck Levera246b012005-08-11 16:25:23 -04001966
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001967static struct socket *xs_create_tcp_sock6(struct rpc_xprt *xprt,
1968 struct sock_xprt *transport)
1969{
1970 struct socket *sock;
1971 int err;
Chuck Lever9903cd12005-08-11 16:25:26 -04001972
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001973 /* start from scratch */
1974 err = sock_create_kern(PF_INET6, SOCK_STREAM, IPPROTO_TCP, &sock);
1975 if (err < 0) {
1976 dprintk("RPC: can't create TCP transport socket (%d).\n",
1977 -err);
1978 goto out_err;
Chuck Levera246b012005-08-11 16:25:23 -04001979 }
Trond Myklebustb61d59f2009-03-11 14:38:04 -04001980 xs_reclassify_socket6(sock);
1981
1982 if (xs_bind6(transport, sock) < 0) {
1983 sock_release(sock);
1984 goto out_err;
1985 }
1986 return sock;
1987out_err:
1988 return ERR_PTR(-EIO);
Chuck Levera246b012005-08-11 16:25:23 -04001989}
1990
Chuck Lever9903cd12005-08-11 16:25:26 -04001991/**
Chuck Lever68e220b2007-08-06 11:57:48 -04001992 * xs_tcp_connect_worker6 - connect a TCP socket to a remote endpoint
1993 * @work: RPC transport to connect
1994 *
1995 * Invoked by a work queue tasklet.
1996 */
1997static void xs_tcp_connect_worker6(struct work_struct *work)
1998{
1999 struct sock_xprt *transport =
2000 container_of(work, struct sock_xprt, connect_worker.work);
2001 struct rpc_xprt *xprt = &transport->xprt;
Chuck Lever68e220b2007-08-06 11:57:48 -04002002
Trond Myklebustb61d59f2009-03-11 14:38:04 -04002003 xs_tcp_setup_socket(xprt, transport, xs_create_tcp_sock6);
Chuck Lever68e220b2007-08-06 11:57:48 -04002004}
2005
2006/**
Chuck Lever9903cd12005-08-11 16:25:26 -04002007 * xs_connect - connect a socket to a remote endpoint
2008 * @task: address of RPC task that manages state of connect request
2009 *
2010 * TCP: If the remote end dropped the connection, delay reconnecting.
Chuck Lever03bf4b72005-08-25 16:25:55 -07002011 *
2012 * UDP socket connects are synchronous, but we use a work queue anyway
2013 * to guarantee that even unprivileged user processes can set up a
2014 * socket on a privileged port.
2015 *
2016 * If a UDP socket connect fails, the delay behavior here prevents
2017 * retry floods (hard mounts).
Chuck Lever9903cd12005-08-11 16:25:26 -04002018 */
2019static void xs_connect(struct rpc_task *task)
Chuck Levera246b012005-08-11 16:25:23 -04002020{
2021 struct rpc_xprt *xprt = task->tk_xprt;
Chuck Leveree0ac0c2006-12-05 16:35:15 -05002022 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002023
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002024 if (xprt_test_and_set_connecting(xprt))
2025 return;
2026
Chuck Lever09a21c42009-12-03 15:58:56 -05002027 if (transport->sock != NULL && !RPC_IS_SOFTCONN(task)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002028 dprintk("RPC: xs_connect delayed xprt %p for %lu "
2029 "seconds\n",
Chuck Lever03bf4b72005-08-25 16:25:55 -07002030 xprt, xprt->reestablish_timeout / HZ);
Trond Myklebustc1384c92007-06-14 18:00:42 -04002031 queue_delayed_work(rpciod_workqueue,
2032 &transport->connect_worker,
2033 xprt->reestablish_timeout);
Chuck Lever03bf4b72005-08-25 16:25:55 -07002034 xprt->reestablish_timeout <<= 1;
Neil Brown61d0a8e2009-09-23 14:36:37 -04002035 if (xprt->reestablish_timeout < XS_TCP_INIT_REEST_TO)
2036 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
Chuck Lever03bf4b72005-08-25 16:25:55 -07002037 if (xprt->reestablish_timeout > XS_TCP_MAX_REEST_TO)
2038 xprt->reestablish_timeout = XS_TCP_MAX_REEST_TO;
Chuck Leverb0d93ad2005-08-11 16:25:53 -04002039 } else {
Chuck Lever46121cf2007-01-31 12:14:08 -05002040 dprintk("RPC: xs_connect scheduled xprt %p\n", xprt);
Trond Myklebustc1384c92007-06-14 18:00:42 -04002041 queue_delayed_work(rpciod_workqueue,
2042 &transport->connect_worker, 0);
Chuck Levera246b012005-08-11 16:25:23 -04002043 }
2044}
2045
Trond Myklebuste06799f2007-11-05 15:44:12 -05002046static void xs_tcp_connect(struct rpc_task *task)
2047{
2048 struct rpc_xprt *xprt = task->tk_xprt;
2049
Trond Myklebuste06799f2007-11-05 15:44:12 -05002050 /* Exit if we need to wait for socket shutdown to complete */
2051 if (test_bit(XPRT_CLOSING, &xprt->state))
2052 return;
2053 xs_connect(task);
2054}
2055
Chuck Lever262ca072006-03-20 13:44:16 -05002056/**
2057 * xs_udp_print_stats - display UDP socket-specifc stats
2058 * @xprt: rpc_xprt struct containing statistics
2059 * @seq: output file
2060 *
2061 */
2062static void xs_udp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2063{
Chuck Leverc8475462006-12-05 16:35:26 -05002064 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
2065
Chuck Lever262ca072006-03-20 13:44:16 -05002066 seq_printf(seq, "\txprt:\tudp %u %lu %lu %lu %lu %Lu %Lu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002067 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002068 xprt->stat.bind_count,
2069 xprt->stat.sends,
2070 xprt->stat.recvs,
2071 xprt->stat.bad_xids,
2072 xprt->stat.req_u,
2073 xprt->stat.bklog_u);
2074}
2075
2076/**
2077 * xs_tcp_print_stats - display TCP socket-specifc stats
2078 * @xprt: rpc_xprt struct containing statistics
2079 * @seq: output file
2080 *
2081 */
2082static void xs_tcp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
2083{
Chuck Leverc8475462006-12-05 16:35:26 -05002084 struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Lever262ca072006-03-20 13:44:16 -05002085 long idle_time = 0;
2086
2087 if (xprt_connected(xprt))
2088 idle_time = (long)(jiffies - xprt->last_used) / HZ;
2089
2090 seq_printf(seq, "\txprt:\ttcp %u %lu %lu %lu %ld %lu %lu %lu %Lu %Lu\n",
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002091 transport->srcport,
Chuck Lever262ca072006-03-20 13:44:16 -05002092 xprt->stat.bind_count,
2093 xprt->stat.connect_count,
2094 xprt->stat.connect_time,
2095 idle_time,
2096 xprt->stat.sends,
2097 xprt->stat.recvs,
2098 xprt->stat.bad_xids,
2099 xprt->stat.req_u,
2100 xprt->stat.bklog_u);
2101}
2102
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002103/*
2104 * Allocate a bunch of pages for a scratch buffer for the rpc code. The reason
2105 * we allocate pages instead doing a kmalloc like rpc_malloc is because we want
2106 * to use the server side send routines.
2107 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002108static void *bc_malloc(struct rpc_task *task, size_t size)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002109{
2110 struct page *page;
2111 struct rpc_buffer *buf;
2112
2113 BUG_ON(size > PAGE_SIZE - sizeof(struct rpc_buffer));
2114 page = alloc_page(GFP_KERNEL);
2115
2116 if (!page)
2117 return NULL;
2118
2119 buf = page_address(page);
2120 buf->len = PAGE_SIZE;
2121
2122 return buf->data;
2123}
2124
2125/*
2126 * Free the space allocated in the bc_alloc routine
2127 */
H Hartley Sweeten5a51f132010-01-14 15:38:31 -07002128static void bc_free(void *buffer)
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002129{
2130 struct rpc_buffer *buf;
2131
2132 if (!buffer)
2133 return;
2134
2135 buf = container_of(buffer, struct rpc_buffer, data);
2136 free_page((unsigned long)buf);
2137}
2138
2139/*
2140 * Use the svc_sock to send the callback. Must be called with svsk->sk_mutex
2141 * held. Borrows heavily from svc_tcp_sendto and xs_tcp_send_request.
2142 */
2143static int bc_sendto(struct rpc_rqst *req)
2144{
2145 int len;
2146 struct xdr_buf *xbufp = &req->rq_snd_buf;
2147 struct rpc_xprt *xprt = req->rq_xprt;
2148 struct sock_xprt *transport =
2149 container_of(xprt, struct sock_xprt, xprt);
2150 struct socket *sock = transport->sock;
2151 unsigned long headoff;
2152 unsigned long tailoff;
2153
2154 /*
2155 * Set up the rpc header and record marker stuff
2156 */
2157 xs_encode_tcp_record_marker(xbufp);
2158
2159 tailoff = (unsigned long)xbufp->tail[0].iov_base & ~PAGE_MASK;
2160 headoff = (unsigned long)xbufp->head[0].iov_base & ~PAGE_MASK;
2161 len = svc_send_common(sock, xbufp,
2162 virt_to_page(xbufp->head[0].iov_base), headoff,
2163 xbufp->tail[0].iov_base, tailoff);
2164
2165 if (len != xbufp->len) {
2166 printk(KERN_NOTICE "Error sending entire callback!\n");
2167 len = -EAGAIN;
2168 }
2169
2170 return len;
2171}
2172
2173/*
2174 * The send routine. Borrows from svc_send
2175 */
2176static int bc_send_request(struct rpc_task *task)
2177{
2178 struct rpc_rqst *req = task->tk_rqstp;
2179 struct svc_xprt *xprt;
2180 struct svc_sock *svsk;
2181 u32 len;
2182
2183 dprintk("sending request with xid: %08x\n", ntohl(req->rq_xid));
2184 /*
2185 * Get the server socket associated with this callback xprt
2186 */
2187 xprt = req->rq_xprt->bc_xprt;
2188 svsk = container_of(xprt, struct svc_sock, sk_xprt);
2189
2190 /*
2191 * Grab the mutex to serialize data as the connection is shared
2192 * with the fore channel
2193 */
2194 if (!mutex_trylock(&xprt->xpt_mutex)) {
2195 rpc_sleep_on(&xprt->xpt_bc_pending, task, NULL);
2196 if (!mutex_trylock(&xprt->xpt_mutex))
2197 return -EAGAIN;
2198 rpc_wake_up_queued_task(&xprt->xpt_bc_pending, task);
2199 }
2200 if (test_bit(XPT_DEAD, &xprt->xpt_flags))
2201 len = -ENOTCONN;
2202 else
2203 len = bc_sendto(req);
2204 mutex_unlock(&xprt->xpt_mutex);
2205
2206 if (len > 0)
2207 len = 0;
2208
2209 return len;
2210}
2211
2212/*
2213 * The close routine. Since this is client initiated, we do nothing
2214 */
2215
2216static void bc_close(struct rpc_xprt *xprt)
2217{
2218 return;
2219}
2220
2221/*
2222 * The xprt destroy routine. Again, because this connection is client
2223 * initiated, we do nothing
2224 */
2225
2226static void bc_destroy(struct rpc_xprt *xprt)
2227{
2228 return;
2229}
2230
Chuck Lever262965f2005-08-11 16:25:56 -04002231static struct rpc_xprt_ops xs_udp_ops = {
Chuck Lever43118c22005-08-25 16:25:49 -07002232 .set_buffer_size = xs_udp_set_buffer_size,
Chuck Lever12a80462005-08-25 16:25:51 -07002233 .reserve_xprt = xprt_reserve_xprt_cong,
Chuck Lever49e9a892005-08-25 16:25:51 -07002234 .release_xprt = xprt_release_xprt_cong,
Chuck Lever45160d62007-07-01 12:13:17 -04002235 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002236 .set_port = xs_set_port,
Chuck Lever9903cd12005-08-11 16:25:26 -04002237 .connect = xs_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002238 .buf_alloc = rpc_malloc,
2239 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002240 .send_request = xs_udp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002241 .set_retrans_timeout = xprt_set_retrans_timeout_rtt,
Chuck Lever46c0ee82005-08-25 16:25:52 -07002242 .timer = xs_udp_timer,
Chuck Levera58dd392005-08-25 16:25:53 -07002243 .release_request = xprt_release_rqst_cong,
Chuck Lever262965f2005-08-11 16:25:56 -04002244 .close = xs_close,
2245 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002246 .print_stats = xs_udp_print_stats,
Chuck Lever262965f2005-08-11 16:25:56 -04002247};
2248
2249static struct rpc_xprt_ops xs_tcp_ops = {
Chuck Lever12a80462005-08-25 16:25:51 -07002250 .reserve_xprt = xprt_reserve_xprt,
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002251 .release_xprt = xs_tcp_release_xprt,
Chuck Lever45160d62007-07-01 12:13:17 -04002252 .rpcbind = rpcb_getport_async,
Chuck Lever92200412006-01-03 09:55:51 +01002253 .set_port = xs_set_port,
Trond Myklebuste06799f2007-11-05 15:44:12 -05002254 .connect = xs_tcp_connect,
Chuck Lever02107142006-01-03 09:55:49 +01002255 .buf_alloc = rpc_malloc,
2256 .buf_free = rpc_free,
Chuck Lever262965f2005-08-11 16:25:56 -04002257 .send_request = xs_tcp_send_request,
Chuck Leverfe3aca22005-08-25 16:25:50 -07002258 .set_retrans_timeout = xprt_set_retrans_timeout_def,
Ricardo Labiaga0d90ba12009-04-01 09:23:04 -04002259#if defined(CONFIG_NFS_V4_1)
2260 .release_request = bc_release_request,
2261#endif /* CONFIG_NFS_V4_1 */
Trond Myklebustf75e6742009-04-21 17:18:20 -04002262 .close = xs_tcp_close,
Chuck Lever9903cd12005-08-11 16:25:26 -04002263 .destroy = xs_destroy,
Chuck Lever262ca072006-03-20 13:44:16 -05002264 .print_stats = xs_tcp_print_stats,
Chuck Levera246b012005-08-11 16:25:23 -04002265};
2266
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03002267/*
2268 * The rpc_xprt_ops for the server backchannel
2269 */
2270
2271static struct rpc_xprt_ops bc_tcp_ops = {
2272 .reserve_xprt = xprt_reserve_xprt,
2273 .release_xprt = xprt_release_xprt,
2274 .buf_alloc = bc_malloc,
2275 .buf_free = bc_free,
2276 .send_request = bc_send_request,
2277 .set_retrans_timeout = xprt_set_retrans_timeout_def,
2278 .close = bc_close,
2279 .destroy = bc_destroy,
2280 .print_stats = xs_tcp_print_stats,
2281};
2282
\"Talpey, Thomas\3c341b0b2007-09-10 13:47:07 -04002283static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002284 unsigned int slot_table_size)
Chuck Leverc8541ec2006-10-17 14:44:27 -04002285{
2286 struct rpc_xprt *xprt;
Chuck Leverffc2e512006-12-05 16:35:11 -05002287 struct sock_xprt *new;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002288
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002289 if (args->addrlen > sizeof(xprt->addr)) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002290 dprintk("RPC: xs_setup_xprt: address too large\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002291 return ERR_PTR(-EBADF);
2292 }
2293
Chuck Leverffc2e512006-12-05 16:35:11 -05002294 new = kzalloc(sizeof(*new), GFP_KERNEL);
2295 if (new == NULL) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002296 dprintk("RPC: xs_setup_xprt: couldn't allocate "
2297 "rpc_xprt\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002298 return ERR_PTR(-ENOMEM);
2299 }
Chuck Leverffc2e512006-12-05 16:35:11 -05002300 xprt = &new->xprt;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002301
2302 xprt->max_reqs = slot_table_size;
2303 xprt->slot = kcalloc(xprt->max_reqs, sizeof(struct rpc_rqst), GFP_KERNEL);
2304 if (xprt->slot == NULL) {
2305 kfree(xprt);
Chuck Lever46121cf2007-01-31 12:14:08 -05002306 dprintk("RPC: xs_setup_xprt: couldn't allocate slot "
2307 "table\n");
Chuck Leverc8541ec2006-10-17 14:44:27 -04002308 return ERR_PTR(-ENOMEM);
2309 }
2310
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002311 memcpy(&xprt->addr, args->dstaddr, args->addrlen);
2312 xprt->addrlen = args->addrlen;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +02002313 if (args->srcaddr)
Chuck Leverfbfffbd2009-08-09 15:09:46 -04002314 memcpy(&new->srcaddr, args->srcaddr, args->addrlen);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002315
2316 return xprt;
2317}
2318
Trond Myklebust2881ae72007-12-20 16:03:54 -05002319static const struct rpc_timeout xs_udp_default_timeout = {
2320 .to_initval = 5 * HZ,
2321 .to_maxval = 30 * HZ,
2322 .to_increment = 5 * HZ,
2323 .to_retries = 5,
2324};
2325
Chuck Lever9903cd12005-08-11 16:25:26 -04002326/**
2327 * xs_setup_udp - Set up transport to use a UDP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002328 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002329 *
2330 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002331static struct rpc_xprt *xs_setup_udp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002332{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002333 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002334 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002335 struct sock_xprt *transport;
Chuck Levera246b012005-08-11 16:25:23 -04002336
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002337 xprt = xs_setup_xprt(args, xprt_udp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002338 if (IS_ERR(xprt))
2339 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002340 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002341
Chuck Leverec739ef2006-08-22 20:06:15 -04002342 xprt->prot = IPPROTO_UDP;
Chuck Lever808012f2005-08-25 16:25:49 -07002343 xprt->tsh_size = 0;
Chuck Levera246b012005-08-11 16:25:23 -04002344 /* XXX: header size can vary due to auth type, IPv6, etc. */
2345 xprt->max_payload = (1U << 16) - (MAX_HEADER << 3);
2346
Chuck Lever03bf4b72005-08-25 16:25:55 -07002347 xprt->bind_timeout = XS_BIND_TO;
2348 xprt->connect_timeout = XS_UDP_CONN_TO;
2349 xprt->reestablish_timeout = XS_UDP_REEST_TO;
2350 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002351
Chuck Lever262965f2005-08-11 16:25:56 -04002352 xprt->ops = &xs_udp_ops;
Chuck Levera246b012005-08-11 16:25:23 -04002353
Trond Myklebustba7392b2007-12-20 16:03:55 -05002354 xprt->timeout = &xs_udp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002355
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002356 switch (addr->sa_family) {
2357 case AF_INET:
2358 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2359 xprt_set_bound(xprt);
2360
2361 INIT_DELAYED_WORK(&transport->connect_worker,
2362 xs_udp_connect_worker4);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002363 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002364 break;
2365 case AF_INET6:
2366 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2367 xprt_set_bound(xprt);
2368
2369 INIT_DELAYED_WORK(&transport->connect_worker,
2370 xs_udp_connect_worker6);
Chuck Lever9dc3b092009-08-09 15:09:46 -04002371 xs_format_peer_addresses(xprt, "udp", RPCBIND_NETID_UDP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002372 break;
2373 default:
2374 kfree(xprt);
2375 return ERR_PTR(-EAFNOSUPPORT);
2376 }
2377
Chuck Leverc740eff2009-08-09 15:09:46 -04002378 if (xprt_bound(xprt))
2379 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2380 xprt->address_strings[RPC_DISPLAY_ADDR],
2381 xprt->address_strings[RPC_DISPLAY_PORT],
2382 xprt->address_strings[RPC_DISPLAY_PROTO]);
2383 else
2384 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2385 xprt->address_strings[RPC_DISPLAY_ADDR],
2386 xprt->address_strings[RPC_DISPLAY_PROTO]);
Chuck Leveredb267a2006-08-22 20:06:18 -04002387
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002388 if (try_module_get(THIS_MODULE))
2389 return xprt;
2390
2391 kfree(xprt->slot);
2392 kfree(xprt);
2393 return ERR_PTR(-EINVAL);
Chuck Levera246b012005-08-11 16:25:23 -04002394}
2395
Trond Myklebust2881ae72007-12-20 16:03:54 -05002396static const struct rpc_timeout xs_tcp_default_timeout = {
2397 .to_initval = 60 * HZ,
2398 .to_maxval = 60 * HZ,
2399 .to_retries = 2,
2400};
2401
Chuck Lever9903cd12005-08-11 16:25:26 -04002402/**
2403 * xs_setup_tcp - Set up transport to use a TCP socket
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002404 * @args: rpc transport creation arguments
Chuck Lever9903cd12005-08-11 16:25:26 -04002405 *
2406 */
Adrian Bunk483066d2007-10-24 18:24:02 +02002407static struct rpc_xprt *xs_setup_tcp(struct xprt_create *args)
Chuck Levera246b012005-08-11 16:25:23 -04002408{
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002409 struct sockaddr *addr = args->dstaddr;
Chuck Leverc8541ec2006-10-17 14:44:27 -04002410 struct rpc_xprt *xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002411 struct sock_xprt *transport;
Chuck Levera246b012005-08-11 16:25:23 -04002412
Frank van Maarseveen96802a02007-07-08 13:08:54 +02002413 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries);
Chuck Leverc8541ec2006-10-17 14:44:27 -04002414 if (IS_ERR(xprt))
2415 return xprt;
Chuck Leverc8475462006-12-05 16:35:26 -05002416 transport = container_of(xprt, struct sock_xprt, xprt);
Chuck Levera246b012005-08-11 16:25:23 -04002417
Chuck Leverec739ef2006-08-22 20:06:15 -04002418 xprt->prot = IPPROTO_TCP;
Chuck Lever808012f2005-08-25 16:25:49 -07002419 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
Chuck Lever808012f2005-08-25 16:25:49 -07002420 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
Chuck Levera246b012005-08-11 16:25:23 -04002421
Chuck Lever03bf4b72005-08-25 16:25:55 -07002422 xprt->bind_timeout = XS_BIND_TO;
2423 xprt->connect_timeout = XS_TCP_CONN_TO;
2424 xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO;
2425 xprt->idle_timeout = XS_IDLE_DISC_TO;
Chuck Levera246b012005-08-11 16:25:23 -04002426
Chuck Lever262965f2005-08-11 16:25:56 -04002427 xprt->ops = &xs_tcp_ops;
Trond Myklebustba7392b2007-12-20 16:03:55 -05002428 xprt->timeout = &xs_tcp_default_timeout;
Chuck Levera246b012005-08-11 16:25:23 -04002429
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002430 switch (addr->sa_family) {
2431 case AF_INET:
2432 if (((struct sockaddr_in *)addr)->sin_port != htons(0))
2433 xprt_set_bound(xprt);
2434
Chuck Lever9dc3b092009-08-09 15:09:46 -04002435 INIT_DELAYED_WORK(&transport->connect_worker,
2436 xs_tcp_connect_worker4);
2437 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002438 break;
2439 case AF_INET6:
2440 if (((struct sockaddr_in6 *)addr)->sin6_port != htons(0))
2441 xprt_set_bound(xprt);
2442
Chuck Lever9dc3b092009-08-09 15:09:46 -04002443 INIT_DELAYED_WORK(&transport->connect_worker,
2444 xs_tcp_connect_worker6);
2445 xs_format_peer_addresses(xprt, "tcp", RPCBIND_NETID_TCP6);
Chuck Lever8f9d5b12007-08-06 11:57:53 -04002446 break;
2447 default:
2448 kfree(xprt);
2449 return ERR_PTR(-EAFNOSUPPORT);
2450 }
2451
Chuck Leverc740eff2009-08-09 15:09:46 -04002452 if (xprt_bound(xprt))
2453 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2454 xprt->address_strings[RPC_DISPLAY_ADDR],
2455 xprt->address_strings[RPC_DISPLAY_PORT],
2456 xprt->address_strings[RPC_DISPLAY_PROTO]);
2457 else
2458 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2459 xprt->address_strings[RPC_DISPLAY_ADDR],
2460 xprt->address_strings[RPC_DISPLAY_PROTO]);
2461
Chuck Leveredb267a2006-08-22 20:06:18 -04002462
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002463 if (try_module_get(THIS_MODULE))
2464 return xprt;
2465
2466 kfree(xprt->slot);
2467 kfree(xprt);
2468 return ERR_PTR(-EINVAL);
Chuck Levera246b012005-08-11 16:25:23 -04002469}
Chuck Lever282b32e2006-12-05 16:35:51 -05002470
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002471/**
2472 * xs_setup_bc_tcp - Set up transport to use a TCP backchannel socket
2473 * @args: rpc transport creation arguments
2474 *
2475 */
2476static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
2477{
2478 struct sockaddr *addr = args->dstaddr;
2479 struct rpc_xprt *xprt;
2480 struct sock_xprt *transport;
2481 struct svc_sock *bc_sock;
2482
2483 if (!args->bc_xprt)
2484 ERR_PTR(-EINVAL);
2485
2486 xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries);
2487 if (IS_ERR(xprt))
2488 return xprt;
2489 transport = container_of(xprt, struct sock_xprt, xprt);
2490
2491 xprt->prot = IPPROTO_TCP;
2492 xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32);
2493 xprt->max_payload = RPC_MAX_FRAGMENT_SIZE;
2494 xprt->timeout = &xs_tcp_default_timeout;
2495
2496 /* backchannel */
2497 xprt_set_bound(xprt);
2498 xprt->bind_timeout = 0;
2499 xprt->connect_timeout = 0;
2500 xprt->reestablish_timeout = 0;
2501 xprt->idle_timeout = 0;
2502
2503 /*
2504 * The backchannel uses the same socket connection as the
2505 * forechannel
2506 */
2507 xprt->bc_xprt = args->bc_xprt;
2508 bc_sock = container_of(args->bc_xprt, struct svc_sock, sk_xprt);
2509 bc_sock->sk_bc_xprt = xprt;
2510 transport->sock = bc_sock->sk_sock;
2511 transport->inet = bc_sock->sk_sk;
2512
2513 xprt->ops = &bc_tcp_ops;
2514
2515 switch (addr->sa_family) {
2516 case AF_INET:
2517 xs_format_peer_addresses(xprt, "tcp",
2518 RPCBIND_NETID_TCP);
2519 break;
2520 case AF_INET6:
2521 xs_format_peer_addresses(xprt, "tcp",
2522 RPCBIND_NETID_TCP6);
2523 break;
2524 default:
2525 kfree(xprt);
2526 return ERR_PTR(-EAFNOSUPPORT);
2527 }
2528
2529 if (xprt_bound(xprt))
2530 dprintk("RPC: set up xprt to %s (port %s) via %s\n",
2531 xprt->address_strings[RPC_DISPLAY_ADDR],
2532 xprt->address_strings[RPC_DISPLAY_PORT],
2533 xprt->address_strings[RPC_DISPLAY_PROTO]);
2534 else
2535 dprintk("RPC: set up xprt to %s (autobind) via %s\n",
2536 xprt->address_strings[RPC_DISPLAY_ADDR],
2537 xprt->address_strings[RPC_DISPLAY_PROTO]);
2538
2539 /*
2540 * Since we don't want connections for the backchannel, we set
2541 * the xprt status to connected
2542 */
2543 xprt_set_connected(xprt);
2544
2545
2546 if (try_module_get(THIS_MODULE))
2547 return xprt;
2548 kfree(xprt->slot);
2549 kfree(xprt);
2550 return ERR_PTR(-EINVAL);
2551}
2552
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002553static struct xprt_class xs_udp_transport = {
2554 .list = LIST_HEAD_INIT(xs_udp_transport.list),
2555 .name = "udp",
2556 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002557 .ident = XPRT_TRANSPORT_UDP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002558 .setup = xs_setup_udp,
2559};
2560
2561static struct xprt_class xs_tcp_transport = {
2562 .list = LIST_HEAD_INIT(xs_tcp_transport.list),
2563 .name = "tcp",
2564 .owner = THIS_MODULE,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002565 .ident = XPRT_TRANSPORT_TCP,
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002566 .setup = xs_setup_tcp,
2567};
2568
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002569static struct xprt_class xs_bc_tcp_transport = {
2570 .list = LIST_HEAD_INIT(xs_bc_tcp_transport.list),
2571 .name = "tcp NFSv4.1 backchannel",
2572 .owner = THIS_MODULE,
2573 .ident = XPRT_TRANSPORT_BC_TCP,
2574 .setup = xs_setup_bc_tcp,
2575};
2576
Chuck Lever282b32e2006-12-05 16:35:51 -05002577/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002578 * init_socket_xprt - set up xprtsock's sysctls, register with RPC client
Chuck Lever282b32e2006-12-05 16:35:51 -05002579 *
2580 */
2581int init_socket_xprt(void)
2582{
Chuck Leverfbf76682006-12-05 16:35:54 -05002583#ifdef RPC_DEBUG
Eric W. Biederman2b1bec52007-02-14 00:33:24 -08002584 if (!sunrpc_table_header)
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08002585 sunrpc_table_header = register_sysctl_table(sunrpc_table);
Chuck Leverfbf76682006-12-05 16:35:54 -05002586#endif
2587
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002588 xprt_register_transport(&xs_udp_transport);
2589 xprt_register_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002590 xprt_register_transport(&xs_bc_tcp_transport);
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002591
Chuck Lever282b32e2006-12-05 16:35:51 -05002592 return 0;
2593}
2594
2595/**
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002596 * cleanup_socket_xprt - remove xprtsock's sysctls, unregister
Chuck Lever282b32e2006-12-05 16:35:51 -05002597 *
2598 */
2599void cleanup_socket_xprt(void)
2600{
Chuck Leverfbf76682006-12-05 16:35:54 -05002601#ifdef RPC_DEBUG
2602 if (sunrpc_table_header) {
2603 unregister_sysctl_table(sunrpc_table_header);
2604 sunrpc_table_header = NULL;
2605 }
2606#endif
\"Talpey, Thomas\bc255712007-09-10 13:46:39 -04002607
2608 xprt_unregister_transport(&xs_udp_transport);
2609 xprt_unregister_transport(&xs_tcp_transport);
Alexandros Batsakisf300bab2009-09-10 17:33:30 +03002610 xprt_unregister_transport(&xs_bc_tcp_transport);
Chuck Lever282b32e2006-12-05 16:35:51 -05002611}
Trond Myklebustcbf11072009-08-09 15:06:19 -04002612
2613static int param_set_uint_minmax(const char *val, struct kernel_param *kp,
2614 unsigned int min, unsigned int max)
2615{
2616 unsigned long num;
2617 int ret;
2618
2619 if (!val)
2620 return -EINVAL;
2621 ret = strict_strtoul(val, 0, &num);
2622 if (ret == -EINVAL || num < min || num > max)
2623 return -EINVAL;
2624 *((unsigned int *)kp->arg) = num;
2625 return 0;
2626}
2627
2628static int param_set_portnr(const char *val, struct kernel_param *kp)
2629{
2630 return param_set_uint_minmax(val, kp,
2631 RPC_MIN_RESVPORT,
2632 RPC_MAX_RESVPORT);
2633}
2634
2635static int param_get_portnr(char *buffer, struct kernel_param *kp)
2636{
2637 return param_get_uint(buffer, kp);
2638}
2639#define param_check_portnr(name, p) \
2640 __param_check(name, p, unsigned int);
2641
2642module_param_named(min_resvport, xprt_min_resvport, portnr, 0644);
2643module_param_named(max_resvport, xprt_max_resvport, portnr, 0644);
2644
2645static int param_set_slot_table_size(const char *val, struct kernel_param *kp)
2646{
2647 return param_set_uint_minmax(val, kp,
2648 RPC_MIN_SLOT_TABLE,
2649 RPC_MAX_SLOT_TABLE);
2650}
2651
2652static int param_get_slot_table_size(char *buffer, struct kernel_param *kp)
2653{
2654 return param_get_uint(buffer, kp);
2655}
2656#define param_check_slot_table_size(name, p) \
2657 __param_check(name, p, unsigned int);
2658
2659module_param_named(tcp_slot_table_entries, xprt_tcp_slot_table_entries,
2660 slot_table_size, 0644);
2661module_param_named(udp_slot_table_entries, xprt_udp_slot_table_entries,
2662 slot_table_size, 0644);
2663