]>
Commit | Line | Data |
---|---|---|
a246b010 CL |
1 | /* |
2 | * linux/net/sunrpc/xprtsock.c | |
3 | * | |
4 | * Client-side transport implementation for sockets. | |
5 | * | |
6 | * TCP callback races fixes (C) 1998 Red Hat Software <[email protected]> | |
7 | * TCP send fixes (C) 1998 Red Hat Software <[email protected]> | |
8 | * TCP NFS related read + write fixes | |
9 | * (C) 1999 Dave Airlie, University of Limerick, Ireland <[email protected]> | |
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 <[email protected]> | |
55aa4f58 CL |
14 | * |
15 | * IP socket transport implementation, (C) 2005 Chuck Lever <[email protected]> | |
a246b010 CL |
16 | */ |
17 | ||
18 | #include <linux/types.h> | |
19 | #include <linux/slab.h> | |
20 | #include <linux/capability.h> | |
21 | #include <linux/sched.h> | |
22 | #include <linux/pagemap.h> | |
23 | #include <linux/errno.h> | |
24 | #include <linux/socket.h> | |
25 | #include <linux/in.h> | |
26 | #include <linux/net.h> | |
27 | #include <linux/mm.h> | |
28 | #include <linux/udp.h> | |
29 | #include <linux/tcp.h> | |
30 | #include <linux/sunrpc/clnt.h> | |
02107148 | 31 | #include <linux/sunrpc/sched.h> |
a246b010 CL |
32 | #include <linux/file.h> |
33 | ||
34 | #include <net/sock.h> | |
35 | #include <net/checksum.h> | |
36 | #include <net/udp.h> | |
37 | #include <net/tcp.h> | |
38 | ||
c556b754 CL |
39 | /* |
40 | * xprtsock tunables | |
41 | */ | |
42 | unsigned int xprt_udp_slot_table_entries = RPC_DEF_SLOT_TABLE; | |
43 | unsigned int xprt_tcp_slot_table_entries = RPC_DEF_SLOT_TABLE; | |
44 | ||
45 | unsigned int xprt_min_resvport = RPC_DEF_MIN_RESVPORT; | |
46 | unsigned int xprt_max_resvport = RPC_DEF_MAX_RESVPORT; | |
47 | ||
fbf76683 CL |
48 | /* |
49 | * We can register our own files under /proc/sys/sunrpc by | |
50 | * calling register_sysctl_table() again. The files in that | |
51 | * directory become the union of all files registered there. | |
52 | * | |
53 | * We simply need to make sure that we don't collide with | |
54 | * someone else's file names! | |
55 | */ | |
56 | ||
57 | #ifdef RPC_DEBUG | |
58 | ||
59 | static unsigned int min_slot_table_size = RPC_MIN_SLOT_TABLE; | |
60 | static unsigned int max_slot_table_size = RPC_MAX_SLOT_TABLE; | |
61 | static unsigned int xprt_min_resvport_limit = RPC_MIN_RESVPORT; | |
62 | static unsigned int xprt_max_resvport_limit = RPC_MAX_RESVPORT; | |
63 | ||
64 | static struct ctl_table_header *sunrpc_table_header; | |
65 | ||
66 | /* | |
67 | * FIXME: changing the UDP slot table size should also resize the UDP | |
68 | * socket buffers for existing UDP transports | |
69 | */ | |
70 | static ctl_table xs_tunables_table[] = { | |
71 | { | |
72 | .ctl_name = CTL_SLOTTABLE_UDP, | |
73 | .procname = "udp_slot_table_entries", | |
74 | .data = &xprt_udp_slot_table_entries, | |
75 | .maxlen = sizeof(unsigned int), | |
76 | .mode = 0644, | |
77 | .proc_handler = &proc_dointvec_minmax, | |
78 | .strategy = &sysctl_intvec, | |
79 | .extra1 = &min_slot_table_size, | |
80 | .extra2 = &max_slot_table_size | |
81 | }, | |
82 | { | |
83 | .ctl_name = CTL_SLOTTABLE_TCP, | |
84 | .procname = "tcp_slot_table_entries", | |
85 | .data = &xprt_tcp_slot_table_entries, | |
86 | .maxlen = sizeof(unsigned int), | |
87 | .mode = 0644, | |
88 | .proc_handler = &proc_dointvec_minmax, | |
89 | .strategy = &sysctl_intvec, | |
90 | .extra1 = &min_slot_table_size, | |
91 | .extra2 = &max_slot_table_size | |
92 | }, | |
93 | { | |
94 | .ctl_name = CTL_MIN_RESVPORT, | |
95 | .procname = "min_resvport", | |
96 | .data = &xprt_min_resvport, | |
97 | .maxlen = sizeof(unsigned int), | |
98 | .mode = 0644, | |
99 | .proc_handler = &proc_dointvec_minmax, | |
100 | .strategy = &sysctl_intvec, | |
101 | .extra1 = &xprt_min_resvport_limit, | |
102 | .extra2 = &xprt_max_resvport_limit | |
103 | }, | |
104 | { | |
105 | .ctl_name = CTL_MAX_RESVPORT, | |
106 | .procname = "max_resvport", | |
107 | .data = &xprt_max_resvport, | |
108 | .maxlen = sizeof(unsigned int), | |
109 | .mode = 0644, | |
110 | .proc_handler = &proc_dointvec_minmax, | |
111 | .strategy = &sysctl_intvec, | |
112 | .extra1 = &xprt_min_resvport_limit, | |
113 | .extra2 = &xprt_max_resvport_limit | |
114 | }, | |
115 | { | |
116 | .ctl_name = 0, | |
117 | }, | |
118 | }; | |
119 | ||
120 | static ctl_table sunrpc_table[] = { | |
121 | { | |
122 | .ctl_name = CTL_SUNRPC, | |
123 | .procname = "sunrpc", | |
124 | .mode = 0555, | |
125 | .child = xs_tunables_table | |
126 | }, | |
127 | { | |
128 | .ctl_name = 0, | |
129 | }, | |
130 | }; | |
131 | ||
132 | #endif | |
133 | ||
262965f5 CL |
134 | /* |
135 | * How many times to try sending a request on a socket before waiting | |
136 | * for the socket buffer to clear. | |
137 | */ | |
138 | #define XS_SENDMSG_RETRY (10U) | |
139 | ||
03bf4b70 CL |
140 | /* |
141 | * 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 | ||
a246b010 CL |
184 | #ifdef RPC_DEBUG |
185 | # undef RPC_DEBUG_DATA | |
9903cd1c | 186 | # define RPCDBG_FACILITY RPCDBG_TRANS |
a246b010 CL |
187 | #endif |
188 | ||
a246b010 | 189 | #ifdef RPC_DEBUG_DATA |
9903cd1c | 190 | static void xs_pktdump(char *msg, u32 *packet, unsigned int count) |
a246b010 | 191 | { |
9903cd1c CL |
192 | u8 *buf = (u8 *) packet; |
193 | int j; | |
a246b010 CL |
194 | |
195 | dprintk("RPC: %s\n", msg); | |
196 | 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 | |
9903cd1c | 208 | static inline void xs_pktdump(char *msg, u32 *packet, unsigned int count) |
a246b010 CL |
209 | { |
210 | /* NOP */ | |
211 | } | |
212 | #endif | |
213 | ||
ffc2e518 CL |
214 | struct sock_xprt { |
215 | struct rpc_xprt xprt; | |
ee0ac0c2 CL |
216 | |
217 | /* | |
218 | * Network layer | |
219 | */ | |
220 | struct socket * sock; | |
221 | struct sock * inet; | |
51971139 CL |
222 | |
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; | |
c8475461 CL |
234 | |
235 | /* | |
236 | * Connection of transports | |
237 | */ | |
34161db6 | 238 | struct delayed_work connect_worker; |
c8475461 | 239 | unsigned short port; |
7c6e066e CL |
240 | |
241 | /* | |
242 | * UDP socket buffer size parameters | |
243 | */ | |
244 | size_t rcvsize, | |
245 | sndsize; | |
314dfd79 CL |
246 | |
247 | /* | |
248 | * Saved socket callback addresses | |
249 | */ | |
250 | void (*old_data_ready)(struct sock *, int); | |
251 | void (*old_state_change)(struct sock *); | |
252 | void (*old_write_space)(struct sock *); | |
ffc2e518 CL |
253 | }; |
254 | ||
e136d092 CL |
255 | /* |
256 | * TCP receive state flags | |
257 | */ | |
258 | #define TCP_RCV_LAST_FRAG (1UL << 0) | |
259 | #define TCP_RCV_COPY_FRAGHDR (1UL << 1) | |
260 | #define TCP_RCV_COPY_XID (1UL << 2) | |
261 | #define TCP_RCV_COPY_DATA (1UL << 3) | |
262 | ||
edb267a6 CL |
263 | static void xs_format_peer_addresses(struct rpc_xprt *xprt) |
264 | { | |
265 | struct sockaddr_in *addr = (struct sockaddr_in *) &xprt->addr; | |
266 | char *buf; | |
267 | ||
268 | buf = kzalloc(20, GFP_KERNEL); | |
269 | if (buf) { | |
270 | snprintf(buf, 20, "%u.%u.%u.%u", | |
271 | NIPQUAD(addr->sin_addr.s_addr)); | |
272 | } | |
273 | xprt->address_strings[RPC_DISPLAY_ADDR] = buf; | |
274 | ||
275 | buf = kzalloc(8, GFP_KERNEL); | |
276 | if (buf) { | |
277 | snprintf(buf, 8, "%u", | |
278 | ntohs(addr->sin_port)); | |
279 | } | |
280 | xprt->address_strings[RPC_DISPLAY_PORT] = buf; | |
281 | ||
282 | if (xprt->prot == IPPROTO_UDP) | |
283 | xprt->address_strings[RPC_DISPLAY_PROTO] = "udp"; | |
284 | else | |
285 | xprt->address_strings[RPC_DISPLAY_PROTO] = "tcp"; | |
286 | ||
287 | buf = kzalloc(48, GFP_KERNEL); | |
288 | if (buf) { | |
289 | snprintf(buf, 48, "addr=%u.%u.%u.%u port=%u proto=%s", | |
290 | NIPQUAD(addr->sin_addr.s_addr), | |
291 | ntohs(addr->sin_port), | |
292 | xprt->prot == IPPROTO_UDP ? "udp" : "tcp"); | |
293 | } | |
294 | xprt->address_strings[RPC_DISPLAY_ALL] = buf; | |
295 | } | |
296 | ||
297 | static void xs_free_peer_addresses(struct rpc_xprt *xprt) | |
298 | { | |
299 | kfree(xprt->address_strings[RPC_DISPLAY_ADDR]); | |
300 | kfree(xprt->address_strings[RPC_DISPLAY_PORT]); | |
301 | kfree(xprt->address_strings[RPC_DISPLAY_ALL]); | |
302 | } | |
303 | ||
b4b5cc85 CL |
304 | #define XS_SENDMSG_FLAGS (MSG_DONTWAIT | MSG_NOSIGNAL) |
305 | ||
24c5684b | 306 | static int xs_send_kvec(struct socket *sock, struct sockaddr *addr, int addrlen, struct kvec *vec, unsigned int base, int more) |
b4b5cc85 | 307 | { |
b4b5cc85 CL |
308 | struct msghdr msg = { |
309 | .msg_name = addr, | |
310 | .msg_namelen = addrlen, | |
24c5684b TM |
311 | .msg_flags = XS_SENDMSG_FLAGS | (more ? MSG_MORE : 0), |
312 | }; | |
313 | struct kvec iov = { | |
314 | .iov_base = vec->iov_base + base, | |
315 | .iov_len = vec->iov_len - base, | |
b4b5cc85 CL |
316 | }; |
317 | ||
24c5684b | 318 | if (iov.iov_len != 0) |
b4b5cc85 CL |
319 | return kernel_sendmsg(sock, &msg, &iov, 1, iov.iov_len); |
320 | return kernel_sendmsg(sock, &msg, NULL, 0, 0); | |
321 | } | |
322 | ||
24c5684b | 323 | static int xs_send_pagedata(struct socket *sock, struct xdr_buf *xdr, unsigned int base, int more) |
b4b5cc85 | 324 | { |
24c5684b TM |
325 | struct page **ppage; |
326 | unsigned int remainder; | |
327 | int err, sent = 0; | |
328 | ||
329 | remainder = xdr->page_len - base; | |
330 | base += xdr->page_base; | |
331 | ppage = xdr->pages + (base >> PAGE_SHIFT); | |
332 | base &= ~PAGE_MASK; | |
333 | for(;;) { | |
334 | unsigned int len = min_t(unsigned int, PAGE_SIZE - base, remainder); | |
335 | int flags = XS_SENDMSG_FLAGS; | |
b4b5cc85 | 336 | |
24c5684b TM |
337 | remainder -= len; |
338 | if (remainder != 0 || more) | |
339 | flags |= MSG_MORE; | |
340 | err = sock->ops->sendpage(sock, *ppage, base, len, flags); | |
341 | if (remainder == 0 || err != len) | |
342 | break; | |
343 | sent += err; | |
344 | ppage++; | |
345 | base = 0; | |
346 | } | |
347 | if (sent == 0) | |
348 | return err; | |
349 | if (err > 0) | |
350 | sent += err; | |
351 | return sent; | |
b4b5cc85 CL |
352 | } |
353 | ||
9903cd1c CL |
354 | /** |
355 | * xs_sendpages - write pages directly to a socket | |
356 | * @sock: socket to send on | |
357 | * @addr: UDP only -- address of destination | |
358 | * @addrlen: UDP only -- length of destination address | |
359 | * @xdr: buffer containing this request | |
360 | * @base: starting position in the buffer | |
361 | * | |
a246b010 | 362 | */ |
24c5684b | 363 | static int xs_sendpages(struct socket *sock, struct sockaddr *addr, int addrlen, struct xdr_buf *xdr, unsigned int base) |
a246b010 | 364 | { |
24c5684b TM |
365 | unsigned int remainder = xdr->len - base; |
366 | int err, sent = 0; | |
a246b010 | 367 | |
262965f5 CL |
368 | if (unlikely(!sock)) |
369 | return -ENOTCONN; | |
370 | ||
371 | clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags); | |
24c5684b TM |
372 | if (base != 0) { |
373 | addr = NULL; | |
374 | addrlen = 0; | |
375 | } | |
262965f5 | 376 | |
24c5684b TM |
377 | if (base < xdr->head[0].iov_len || addr != NULL) { |
378 | unsigned int len = xdr->head[0].iov_len - base; | |
379 | remainder -= len; | |
380 | err = xs_send_kvec(sock, addr, addrlen, &xdr->head[0], base, remainder != 0); | |
381 | if (remainder == 0 || err != len) | |
a246b010 | 382 | goto out; |
24c5684b | 383 | sent += err; |
a246b010 CL |
384 | base = 0; |
385 | } else | |
24c5684b | 386 | base -= xdr->head[0].iov_len; |
a246b010 | 387 | |
24c5684b TM |
388 | if (base < xdr->page_len) { |
389 | unsigned int len = xdr->page_len - base; | |
390 | remainder -= len; | |
391 | err = xs_send_pagedata(sock, xdr, base, remainder != 0); | |
392 | if (remainder == 0 || err != len) | |
a246b010 | 393 | goto out; |
24c5684b | 394 | sent += err; |
a246b010 | 395 | base = 0; |
24c5684b TM |
396 | } else |
397 | base -= xdr->page_len; | |
398 | ||
399 | if (base >= xdr->tail[0].iov_len) | |
400 | return sent; | |
401 | err = xs_send_kvec(sock, NULL, 0, &xdr->tail[0], base, 0); | |
a246b010 | 402 | out: |
24c5684b TM |
403 | if (sent == 0) |
404 | return err; | |
405 | if (err > 0) | |
406 | sent += err; | |
407 | return sent; | |
a246b010 CL |
408 | } |
409 | ||
9903cd1c | 410 | /** |
262965f5 CL |
411 | * xs_nospace - place task on wait queue if transmit was incomplete |
412 | * @task: task to put to sleep | |
9903cd1c | 413 | * |
a246b010 | 414 | */ |
262965f5 | 415 | static void xs_nospace(struct rpc_task *task) |
a246b010 | 416 | { |
262965f5 CL |
417 | struct rpc_rqst *req = task->tk_rqstp; |
418 | struct rpc_xprt *xprt = req->rq_xprt; | |
ee0ac0c2 | 419 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
a246b010 | 420 | |
262965f5 CL |
421 | dprintk("RPC: %4d xmit incomplete (%u left of %u)\n", |
422 | task->tk_pid, req->rq_slen - req->rq_bytes_sent, | |
423 | req->rq_slen); | |
424 | ||
ee0ac0c2 | 425 | if (test_bit(SOCK_ASYNC_NOSPACE, &transport->sock->flags)) { |
262965f5 CL |
426 | /* Protect against races with write_space */ |
427 | spin_lock_bh(&xprt->transport_lock); | |
428 | ||
429 | /* Don't race with disconnect */ | |
430 | if (!xprt_connected(xprt)) | |
431 | task->tk_status = -ENOTCONN; | |
ee0ac0c2 | 432 | else if (test_bit(SOCK_NOSPACE, &transport->sock->flags)) |
262965f5 CL |
433 | xprt_wait_for_buffer_space(task); |
434 | ||
435 | spin_unlock_bh(&xprt->transport_lock); | |
436 | } else | |
437 | /* Keep holding the socket if it is blocked */ | |
438 | rpc_delay(task, HZ>>4); | |
439 | } | |
440 | ||
441 | /** | |
442 | * xs_udp_send_request - write an RPC request to a UDP socket | |
443 | * @task: address of RPC task that manages the state of an RPC request | |
444 | * | |
445 | * Return values: | |
446 | * 0: The request has been sent | |
447 | * EAGAIN: The socket was blocked, please call again later to | |
448 | * complete the request | |
449 | * ENOTCONN: Caller needs to invoke connect logic then call again | |
450 | * other: Some other error occured, the request was not sent | |
451 | */ | |
452 | static int xs_udp_send_request(struct rpc_task *task) | |
453 | { | |
454 | struct rpc_rqst *req = task->tk_rqstp; | |
455 | struct rpc_xprt *xprt = req->rq_xprt; | |
ee0ac0c2 | 456 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
262965f5 CL |
457 | struct xdr_buf *xdr = &req->rq_snd_buf; |
458 | int status; | |
a246b010 | 459 | |
9903cd1c | 460 | xs_pktdump("packet data:", |
a246b010 CL |
461 | req->rq_svec->iov_base, |
462 | req->rq_svec->iov_len); | |
463 | ||
262965f5 | 464 | req->rq_xtime = jiffies; |
ee0ac0c2 CL |
465 | status = xs_sendpages(transport->sock, |
466 | (struct sockaddr *) &xprt->addr, | |
467 | xprt->addrlen, xdr, | |
468 | req->rq_bytes_sent); | |
a246b010 | 469 | |
262965f5 CL |
470 | dprintk("RPC: xs_udp_send_request(%u) = %d\n", |
471 | xdr->len - req->rq_bytes_sent, status); | |
a246b010 | 472 | |
262965f5 CL |
473 | if (likely(status >= (int) req->rq_slen)) |
474 | return 0; | |
a246b010 | 475 | |
262965f5 CL |
476 | /* Still some bytes left; set up for a retry later. */ |
477 | if (status > 0) | |
478 | status = -EAGAIN; | |
a246b010 | 479 | |
262965f5 CL |
480 | switch (status) { |
481 | case -ENETUNREACH: | |
482 | case -EPIPE: | |
a246b010 CL |
483 | case -ECONNREFUSED: |
484 | /* When the server has died, an ICMP port unreachable message | |
9903cd1c | 485 | * prompts ECONNREFUSED. */ |
a246b010 | 486 | break; |
262965f5 CL |
487 | case -EAGAIN: |
488 | xs_nospace(task); | |
a246b010 CL |
489 | break; |
490 | default: | |
262965f5 CL |
491 | dprintk("RPC: sendmsg returned unrecognized error %d\n", |
492 | -status); | |
9903cd1c | 493 | break; |
a246b010 | 494 | } |
262965f5 CL |
495 | |
496 | return status; | |
a246b010 CL |
497 | } |
498 | ||
808012fb CL |
499 | static inline void xs_encode_tcp_record_marker(struct xdr_buf *buf) |
500 | { | |
501 | u32 reclen = buf->len - sizeof(rpc_fraghdr); | |
502 | rpc_fraghdr *base = buf->head[0].iov_base; | |
503 | *base = htonl(RPC_LAST_STREAM_FRAGMENT | reclen); | |
504 | } | |
505 | ||
9903cd1c | 506 | /** |
262965f5 | 507 | * xs_tcp_send_request - write an RPC request to a TCP socket |
9903cd1c CL |
508 | * @task: address of RPC task that manages the state of an RPC request |
509 | * | |
510 | * Return values: | |
262965f5 CL |
511 | * 0: The request has been sent |
512 | * EAGAIN: The socket was blocked, please call again later to | |
513 | * complete the request | |
514 | * ENOTCONN: Caller needs to invoke connect logic then call again | |
515 | * other: Some other error occured, the request was not sent | |
9903cd1c CL |
516 | * |
517 | * XXX: In the case of soft timeouts, should we eventually give up | |
262965f5 | 518 | * if sendmsg is not able to make progress? |
9903cd1c | 519 | */ |
262965f5 | 520 | static int xs_tcp_send_request(struct rpc_task *task) |
a246b010 CL |
521 | { |
522 | struct rpc_rqst *req = task->tk_rqstp; | |
523 | struct rpc_xprt *xprt = req->rq_xprt; | |
ee0ac0c2 | 524 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
262965f5 | 525 | struct xdr_buf *xdr = &req->rq_snd_buf; |
a246b010 CL |
526 | int status, retry = 0; |
527 | ||
808012fb | 528 | xs_encode_tcp_record_marker(&req->rq_snd_buf); |
a246b010 | 529 | |
262965f5 CL |
530 | xs_pktdump("packet data:", |
531 | req->rq_svec->iov_base, | |
532 | req->rq_svec->iov_len); | |
a246b010 CL |
533 | |
534 | /* Continue transmitting the packet/record. We must be careful | |
535 | * to cope with writespace callbacks arriving _after_ we have | |
262965f5 | 536 | * called sendmsg(). */ |
a246b010 CL |
537 | while (1) { |
538 | req->rq_xtime = jiffies; | |
ee0ac0c2 CL |
539 | status = xs_sendpages(transport->sock, |
540 | NULL, 0, xdr, req->rq_bytes_sent); | |
a246b010 | 541 | |
262965f5 CL |
542 | dprintk("RPC: xs_tcp_send_request(%u) = %d\n", |
543 | xdr->len - req->rq_bytes_sent, status); | |
a246b010 | 544 | |
262965f5 | 545 | if (unlikely(status < 0)) |
a246b010 | 546 | break; |
a246b010 | 547 | |
262965f5 CL |
548 | /* If we've sent the entire packet, immediately |
549 | * reset the count of bytes sent. */ | |
550 | req->rq_bytes_sent += status; | |
ef759a2e | 551 | task->tk_bytes_sent += status; |
262965f5 CL |
552 | if (likely(req->rq_bytes_sent >= req->rq_slen)) { |
553 | req->rq_bytes_sent = 0; | |
554 | return 0; | |
555 | } | |
a246b010 CL |
556 | |
557 | status = -EAGAIN; | |
262965f5 | 558 | if (retry++ > XS_SENDMSG_RETRY) |
a246b010 CL |
559 | break; |
560 | } | |
561 | ||
262965f5 CL |
562 | switch (status) { |
563 | case -EAGAIN: | |
564 | xs_nospace(task); | |
565 | break; | |
566 | case -ECONNREFUSED: | |
567 | case -ECONNRESET: | |
568 | case -ENOTCONN: | |
569 | case -EPIPE: | |
570 | status = -ENOTCONN; | |
571 | break; | |
572 | default: | |
573 | dprintk("RPC: sendmsg returned unrecognized error %d\n", | |
574 | -status); | |
43118c29 | 575 | xprt_disconnect(xprt); |
262965f5 | 576 | break; |
a246b010 | 577 | } |
262965f5 | 578 | |
a246b010 CL |
579 | return status; |
580 | } | |
581 | ||
e0ab53de TM |
582 | /** |
583 | * xs_tcp_release_xprt - clean up after a tcp transmission | |
584 | * @xprt: transport | |
585 | * @task: rpc task | |
586 | * | |
587 | * This cleans up if an error causes us to abort the transmission of a request. | |
588 | * In this case, the socket may need to be reset in order to avoid confusing | |
589 | * the server. | |
590 | */ | |
591 | static void xs_tcp_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task) | |
592 | { | |
593 | struct rpc_rqst *req; | |
594 | ||
595 | if (task != xprt->snd_task) | |
596 | return; | |
597 | if (task == NULL) | |
598 | goto out_release; | |
599 | req = task->tk_rqstp; | |
600 | if (req->rq_bytes_sent == 0) | |
601 | goto out_release; | |
602 | if (req->rq_bytes_sent == req->rq_snd_buf.len) | |
603 | goto out_release; | |
604 | set_bit(XPRT_CLOSE_WAIT, &task->tk_xprt->state); | |
605 | out_release: | |
606 | xprt_release_xprt(xprt, task); | |
607 | } | |
608 | ||
9903cd1c CL |
609 | /** |
610 | * xs_close - close a socket | |
611 | * @xprt: transport | |
612 | * | |
3167e12c CL |
613 | * This is used when all requests are complete; ie, no DRC state remains |
614 | * on the server we want to save. | |
a246b010 | 615 | */ |
9903cd1c | 616 | static void xs_close(struct rpc_xprt *xprt) |
a246b010 | 617 | { |
ee0ac0c2 CL |
618 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
619 | struct socket *sock = transport->sock; | |
620 | struct sock *sk = transport->inet; | |
a246b010 CL |
621 | |
622 | if (!sk) | |
632e3bdc | 623 | goto clear_close_wait; |
a246b010 | 624 | |
9903cd1c CL |
625 | dprintk("RPC: xs_close xprt %p\n", xprt); |
626 | ||
a246b010 | 627 | write_lock_bh(&sk->sk_callback_lock); |
ee0ac0c2 CL |
628 | transport->inet = NULL; |
629 | transport->sock = NULL; | |
a246b010 | 630 | |
9903cd1c | 631 | sk->sk_user_data = NULL; |
314dfd79 CL |
632 | sk->sk_data_ready = transport->old_data_ready; |
633 | sk->sk_state_change = transport->old_state_change; | |
634 | sk->sk_write_space = transport->old_write_space; | |
a246b010 CL |
635 | write_unlock_bh(&sk->sk_callback_lock); |
636 | ||
9903cd1c | 637 | sk->sk_no_check = 0; |
a246b010 CL |
638 | |
639 | sock_release(sock); | |
632e3bdc TM |
640 | clear_close_wait: |
641 | smp_mb__before_clear_bit(); | |
642 | clear_bit(XPRT_CLOSE_WAIT, &xprt->state); | |
643 | smp_mb__after_clear_bit(); | |
a246b010 CL |
644 | } |
645 | ||
9903cd1c CL |
646 | /** |
647 | * xs_destroy - prepare to shutdown a transport | |
648 | * @xprt: doomed transport | |
649 | * | |
650 | */ | |
651 | static void xs_destroy(struct rpc_xprt *xprt) | |
a246b010 | 652 | { |
c8475461 CL |
653 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
654 | ||
9903cd1c CL |
655 | dprintk("RPC: xs_destroy xprt %p\n", xprt); |
656 | ||
c8475461 | 657 | cancel_delayed_work(&transport->connect_worker); |
a246b010 CL |
658 | flush_scheduled_work(); |
659 | ||
660 | xprt_disconnect(xprt); | |
9903cd1c | 661 | xs_close(xprt); |
edb267a6 | 662 | xs_free_peer_addresses(xprt); |
a246b010 | 663 | kfree(xprt->slot); |
c8541ecd | 664 | kfree(xprt); |
a246b010 CL |
665 | } |
666 | ||
9903cd1c CL |
667 | static inline struct rpc_xprt *xprt_from_sock(struct sock *sk) |
668 | { | |
669 | return (struct rpc_xprt *) sk->sk_user_data; | |
670 | } | |
671 | ||
672 | /** | |
673 | * xs_udp_data_ready - "data ready" callback for UDP sockets | |
674 | * @sk: socket with data to read | |
675 | * @len: how much data to read | |
676 | * | |
a246b010 | 677 | */ |
9903cd1c | 678 | static void xs_udp_data_ready(struct sock *sk, int len) |
a246b010 | 679 | { |
9903cd1c CL |
680 | struct rpc_task *task; |
681 | struct rpc_xprt *xprt; | |
a246b010 | 682 | struct rpc_rqst *rovr; |
9903cd1c | 683 | struct sk_buff *skb; |
a246b010 | 684 | int err, repsize, copied; |
d8ed029d AD |
685 | u32 _xid; |
686 | __be32 *xp; | |
a246b010 CL |
687 | |
688 | read_lock(&sk->sk_callback_lock); | |
9903cd1c CL |
689 | dprintk("RPC: xs_udp_data_ready...\n"); |
690 | if (!(xprt = xprt_from_sock(sk))) | |
a246b010 | 691 | goto out; |
a246b010 CL |
692 | |
693 | if ((skb = skb_recv_datagram(sk, 0, 1, &err)) == NULL) | |
694 | goto out; | |
695 | ||
696 | if (xprt->shutdown) | |
697 | goto dropit; | |
698 | ||
699 | repsize = skb->len - sizeof(struct udphdr); | |
700 | if (repsize < 4) { | |
9903cd1c | 701 | dprintk("RPC: impossible RPC reply size %d!\n", repsize); |
a246b010 CL |
702 | goto dropit; |
703 | } | |
704 | ||
705 | /* Copy the XID from the skb... */ | |
706 | xp = skb_header_pointer(skb, sizeof(struct udphdr), | |
707 | sizeof(_xid), &_xid); | |
708 | if (xp == NULL) | |
709 | goto dropit; | |
710 | ||
711 | /* Look up and lock the request corresponding to the given XID */ | |
4a0f8c04 | 712 | spin_lock(&xprt->transport_lock); |
a246b010 CL |
713 | rovr = xprt_lookup_rqst(xprt, *xp); |
714 | if (!rovr) | |
715 | goto out_unlock; | |
716 | task = rovr->rq_task; | |
717 | ||
a246b010 CL |
718 | if ((copied = rovr->rq_private_buf.buflen) > repsize) |
719 | copied = repsize; | |
720 | ||
721 | /* Suck it into the iovec, verify checksum if not done by hw. */ | |
722 | if (csum_partial_copy_to_xdr(&rovr->rq_private_buf, skb)) | |
723 | goto out_unlock; | |
724 | ||
725 | /* Something worked... */ | |
726 | dst_confirm(skb->dst); | |
727 | ||
1570c1e4 CL |
728 | xprt_adjust_cwnd(task, copied); |
729 | xprt_update_rtt(task); | |
730 | xprt_complete_rqst(task, copied); | |
a246b010 CL |
731 | |
732 | out_unlock: | |
4a0f8c04 | 733 | spin_unlock(&xprt->transport_lock); |
a246b010 CL |
734 | dropit: |
735 | skb_free_datagram(sk, skb); | |
736 | out: | |
737 | read_unlock(&sk->sk_callback_lock); | |
738 | } | |
739 | ||
dd456471 | 740 | static inline void xs_tcp_read_fraghdr(struct rpc_xprt *xprt, struct xdr_skb_reader *desc) |
a246b010 | 741 | { |
51971139 | 742 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
a246b010 CL |
743 | size_t len, used; |
744 | char *p; | |
745 | ||
51971139 CL |
746 | p = ((char *) &transport->tcp_fraghdr) + transport->tcp_offset; |
747 | len = sizeof(transport->tcp_fraghdr) - transport->tcp_offset; | |
9d292316 | 748 | used = xdr_skb_read_bits(desc, p, len); |
51971139 | 749 | transport->tcp_offset += used; |
a246b010 CL |
750 | if (used != len) |
751 | return; | |
808012fb | 752 | |
51971139 CL |
753 | transport->tcp_reclen = ntohl(transport->tcp_fraghdr); |
754 | if (transport->tcp_reclen & RPC_LAST_STREAM_FRAGMENT) | |
e136d092 | 755 | transport->tcp_flags |= TCP_RCV_LAST_FRAG; |
a246b010 | 756 | else |
e136d092 | 757 | transport->tcp_flags &= ~TCP_RCV_LAST_FRAG; |
51971139 | 758 | transport->tcp_reclen &= RPC_FRAGMENT_SIZE_MASK; |
808012fb | 759 | |
e136d092 | 760 | transport->tcp_flags &= ~TCP_RCV_COPY_FRAGHDR; |
51971139 | 761 | transport->tcp_offset = 0; |
808012fb | 762 | |
a246b010 | 763 | /* Sanity check of the record length */ |
51971139 | 764 | if (unlikely(transport->tcp_reclen < 4)) { |
9903cd1c | 765 | dprintk("RPC: invalid TCP record fragment length\n"); |
a246b010 | 766 | xprt_disconnect(xprt); |
9903cd1c | 767 | return; |
a246b010 CL |
768 | } |
769 | dprintk("RPC: reading TCP record fragment of length %d\n", | |
51971139 | 770 | transport->tcp_reclen); |
a246b010 CL |
771 | } |
772 | ||
51971139 | 773 | static void xs_tcp_check_fraghdr(struct sock_xprt *transport) |
a246b010 | 774 | { |
51971139 | 775 | if (transport->tcp_offset == transport->tcp_reclen) { |
e136d092 | 776 | transport->tcp_flags |= TCP_RCV_COPY_FRAGHDR; |
51971139 | 777 | transport->tcp_offset = 0; |
e136d092 CL |
778 | if (transport->tcp_flags & TCP_RCV_LAST_FRAG) { |
779 | transport->tcp_flags &= ~TCP_RCV_COPY_DATA; | |
780 | transport->tcp_flags |= TCP_RCV_COPY_XID; | |
51971139 | 781 | transport->tcp_copied = 0; |
a246b010 CL |
782 | } |
783 | } | |
784 | } | |
785 | ||
dd456471 | 786 | static inline void xs_tcp_read_xid(struct sock_xprt *transport, struct xdr_skb_reader *desc) |
a246b010 CL |
787 | { |
788 | size_t len, used; | |
789 | char *p; | |
790 | ||
51971139 | 791 | len = sizeof(transport->tcp_xid) - transport->tcp_offset; |
a246b010 | 792 | dprintk("RPC: reading XID (%Zu bytes)\n", len); |
51971139 | 793 | p = ((char *) &transport->tcp_xid) + transport->tcp_offset; |
9d292316 | 794 | used = xdr_skb_read_bits(desc, p, len); |
51971139 | 795 | transport->tcp_offset += used; |
a246b010 CL |
796 | if (used != len) |
797 | return; | |
e136d092 CL |
798 | transport->tcp_flags &= ~TCP_RCV_COPY_XID; |
799 | transport->tcp_flags |= TCP_RCV_COPY_DATA; | |
51971139 | 800 | transport->tcp_copied = 4; |
a246b010 | 801 | dprintk("RPC: reading reply for XID %08x\n", |
51971139 CL |
802 | ntohl(transport->tcp_xid)); |
803 | xs_tcp_check_fraghdr(transport); | |
a246b010 CL |
804 | } |
805 | ||
dd456471 | 806 | static inline void xs_tcp_read_request(struct rpc_xprt *xprt, struct xdr_skb_reader *desc) |
a246b010 | 807 | { |
51971139 | 808 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
a246b010 CL |
809 | struct rpc_rqst *req; |
810 | struct xdr_buf *rcvbuf; | |
811 | size_t len; | |
812 | ssize_t r; | |
813 | ||
814 | /* Find and lock the request corresponding to this xid */ | |
4a0f8c04 | 815 | spin_lock(&xprt->transport_lock); |
51971139 | 816 | req = xprt_lookup_rqst(xprt, transport->tcp_xid); |
a246b010 | 817 | if (!req) { |
e136d092 | 818 | transport->tcp_flags &= ~TCP_RCV_COPY_DATA; |
a246b010 | 819 | dprintk("RPC: XID %08x request not found!\n", |
51971139 | 820 | ntohl(transport->tcp_xid)); |
4a0f8c04 | 821 | spin_unlock(&xprt->transport_lock); |
a246b010 CL |
822 | return; |
823 | } | |
824 | ||
825 | rcvbuf = &req->rq_private_buf; | |
826 | len = desc->count; | |
51971139 | 827 | if (len > transport->tcp_reclen - transport->tcp_offset) { |
dd456471 | 828 | struct xdr_skb_reader my_desc; |
a246b010 | 829 | |
51971139 | 830 | len = transport->tcp_reclen - transport->tcp_offset; |
a246b010 CL |
831 | memcpy(&my_desc, desc, sizeof(my_desc)); |
832 | my_desc.count = len; | |
51971139 | 833 | r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied, |
9d292316 | 834 | &my_desc, xdr_skb_read_bits); |
a246b010 CL |
835 | desc->count -= r; |
836 | desc->offset += r; | |
837 | } else | |
51971139 | 838 | r = xdr_partial_copy_from_skb(rcvbuf, transport->tcp_copied, |
9d292316 | 839 | desc, xdr_skb_read_bits); |
a246b010 CL |
840 | |
841 | if (r > 0) { | |
51971139 CL |
842 | transport->tcp_copied += r; |
843 | transport->tcp_offset += r; | |
a246b010 CL |
844 | } |
845 | if (r != len) { | |
846 | /* Error when copying to the receive buffer, | |
847 | * usually because we weren't able to allocate | |
848 | * additional buffer pages. All we can do now | |
e136d092 | 849 | * is turn off TCP_RCV_COPY_DATA, so the request |
a246b010 CL |
850 | * will not receive any additional updates, |
851 | * and time out. | |
852 | * Any remaining data from this record will | |
853 | * be discarded. | |
854 | */ | |
e136d092 | 855 | transport->tcp_flags &= ~TCP_RCV_COPY_DATA; |
a246b010 | 856 | dprintk("RPC: XID %08x truncated request\n", |
51971139 | 857 | ntohl(transport->tcp_xid)); |
a246b010 | 858 | dprintk("RPC: xprt = %p, tcp_copied = %lu, tcp_offset = %u, tcp_reclen = %u\n", |
51971139 CL |
859 | xprt, transport->tcp_copied, transport->tcp_offset, |
860 | transport->tcp_reclen); | |
a246b010 CL |
861 | goto out; |
862 | } | |
863 | ||
864 | dprintk("RPC: XID %08x read %Zd bytes\n", | |
51971139 | 865 | ntohl(transport->tcp_xid), r); |
a246b010 | 866 | dprintk("RPC: xprt = %p, tcp_copied = %lu, tcp_offset = %u, tcp_reclen = %u\n", |
51971139 CL |
867 | xprt, transport->tcp_copied, transport->tcp_offset, |
868 | transport->tcp_reclen); | |
869 | ||
870 | if (transport->tcp_copied == req->rq_private_buf.buflen) | |
e136d092 | 871 | transport->tcp_flags &= ~TCP_RCV_COPY_DATA; |
51971139 | 872 | else if (transport->tcp_offset == transport->tcp_reclen) { |
e136d092 CL |
873 | if (transport->tcp_flags & TCP_RCV_LAST_FRAG) |
874 | transport->tcp_flags &= ~TCP_RCV_COPY_DATA; | |
a246b010 CL |
875 | } |
876 | ||
877 | out: | |
e136d092 | 878 | if (!(transport->tcp_flags & TCP_RCV_COPY_DATA)) |
51971139 | 879 | xprt_complete_rqst(req->rq_task, transport->tcp_copied); |
4a0f8c04 | 880 | spin_unlock(&xprt->transport_lock); |
51971139 | 881 | xs_tcp_check_fraghdr(transport); |
a246b010 CL |
882 | } |
883 | ||
dd456471 | 884 | static inline void xs_tcp_read_discard(struct sock_xprt *transport, struct xdr_skb_reader *desc) |
a246b010 CL |
885 | { |
886 | size_t len; | |
887 | ||
51971139 | 888 | len = transport->tcp_reclen - transport->tcp_offset; |
a246b010 CL |
889 | if (len > desc->count) |
890 | len = desc->count; | |
891 | desc->count -= len; | |
892 | desc->offset += len; | |
51971139 | 893 | transport->tcp_offset += len; |
a246b010 | 894 | dprintk("RPC: discarded %Zu bytes\n", len); |
51971139 | 895 | xs_tcp_check_fraghdr(transport); |
a246b010 CL |
896 | } |
897 | ||
9903cd1c | 898 | static int xs_tcp_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb, unsigned int offset, size_t len) |
a246b010 CL |
899 | { |
900 | struct rpc_xprt *xprt = rd_desc->arg.data; | |
51971139 | 901 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
dd456471 | 902 | struct xdr_skb_reader desc = { |
a246b010 CL |
903 | .skb = skb, |
904 | .offset = offset, | |
905 | .count = len, | |
9903cd1c | 906 | }; |
a246b010 | 907 | |
9903cd1c | 908 | dprintk("RPC: xs_tcp_data_recv started\n"); |
a246b010 CL |
909 | do { |
910 | /* Read in a new fragment marker if necessary */ | |
911 | /* Can we ever really expect to get completely empty fragments? */ | |
e136d092 | 912 | if (transport->tcp_flags & TCP_RCV_COPY_FRAGHDR) { |
9903cd1c | 913 | xs_tcp_read_fraghdr(xprt, &desc); |
a246b010 CL |
914 | continue; |
915 | } | |
916 | /* Read in the xid if necessary */ | |
e136d092 | 917 | if (transport->tcp_flags & TCP_RCV_COPY_XID) { |
51971139 | 918 | xs_tcp_read_xid(transport, &desc); |
a246b010 CL |
919 | continue; |
920 | } | |
921 | /* Read in the request data */ | |
e136d092 | 922 | if (transport->tcp_flags & TCP_RCV_COPY_DATA) { |
9903cd1c | 923 | xs_tcp_read_request(xprt, &desc); |
a246b010 CL |
924 | continue; |
925 | } | |
926 | /* Skip over any trailing bytes on short reads */ | |
51971139 | 927 | xs_tcp_read_discard(transport, &desc); |
a246b010 | 928 | } while (desc.count); |
9903cd1c | 929 | dprintk("RPC: xs_tcp_data_recv done\n"); |
a246b010 CL |
930 | return len - desc.count; |
931 | } | |
932 | ||
9903cd1c CL |
933 | /** |
934 | * xs_tcp_data_ready - "data ready" callback for TCP sockets | |
935 | * @sk: socket with data to read | |
936 | * @bytes: how much data to read | |
937 | * | |
938 | */ | |
939 | static void xs_tcp_data_ready(struct sock *sk, int bytes) | |
a246b010 CL |
940 | { |
941 | struct rpc_xprt *xprt; | |
942 | read_descriptor_t rd_desc; | |
943 | ||
944 | read_lock(&sk->sk_callback_lock); | |
9903cd1c CL |
945 | dprintk("RPC: xs_tcp_data_ready...\n"); |
946 | if (!(xprt = xprt_from_sock(sk))) | |
a246b010 | 947 | goto out; |
a246b010 CL |
948 | if (xprt->shutdown) |
949 | goto out; | |
950 | ||
9903cd1c | 951 | /* We use rd_desc to pass struct xprt to xs_tcp_data_recv */ |
a246b010 CL |
952 | rd_desc.arg.data = xprt; |
953 | rd_desc.count = 65536; | |
9903cd1c | 954 | tcp_read_sock(sk, &rd_desc, xs_tcp_data_recv); |
a246b010 CL |
955 | out: |
956 | read_unlock(&sk->sk_callback_lock); | |
957 | } | |
958 | ||
9903cd1c CL |
959 | /** |
960 | * xs_tcp_state_change - callback to handle TCP socket state changes | |
961 | * @sk: socket whose state has changed | |
962 | * | |
963 | */ | |
964 | static void xs_tcp_state_change(struct sock *sk) | |
a246b010 | 965 | { |
9903cd1c | 966 | struct rpc_xprt *xprt; |
a246b010 CL |
967 | |
968 | read_lock(&sk->sk_callback_lock); | |
969 | if (!(xprt = xprt_from_sock(sk))) | |
970 | goto out; | |
9903cd1c | 971 | dprintk("RPC: xs_tcp_state_change client %p...\n", xprt); |
a246b010 CL |
972 | dprintk("RPC: state %x conn %d dead %d zapped %d\n", |
973 | sk->sk_state, xprt_connected(xprt), | |
974 | sock_flag(sk, SOCK_DEAD), | |
975 | sock_flag(sk, SOCK_ZAPPED)); | |
976 | ||
977 | switch (sk->sk_state) { | |
978 | case TCP_ESTABLISHED: | |
4a0f8c04 | 979 | spin_lock_bh(&xprt->transport_lock); |
a246b010 | 980 | if (!xprt_test_and_set_connected(xprt)) { |
51971139 CL |
981 | struct sock_xprt *transport = container_of(xprt, |
982 | struct sock_xprt, xprt); | |
983 | ||
a246b010 | 984 | /* Reset TCP record info */ |
51971139 CL |
985 | transport->tcp_offset = 0; |
986 | transport->tcp_reclen = 0; | |
987 | transport->tcp_copied = 0; | |
e136d092 CL |
988 | transport->tcp_flags = |
989 | TCP_RCV_COPY_FRAGHDR | TCP_RCV_COPY_XID; | |
51971139 | 990 | |
03bf4b70 | 991 | xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO; |
44fbac22 | 992 | xprt_wake_pending_tasks(xprt, 0); |
a246b010 | 993 | } |
4a0f8c04 | 994 | spin_unlock_bh(&xprt->transport_lock); |
a246b010 CL |
995 | break; |
996 | case TCP_SYN_SENT: | |
997 | case TCP_SYN_RECV: | |
998 | break; | |
632e3bdc TM |
999 | case TCP_CLOSE_WAIT: |
1000 | /* Try to schedule an autoclose RPC calls */ | |
1001 | set_bit(XPRT_CLOSE_WAIT, &xprt->state); | |
1002 | if (test_and_set_bit(XPRT_LOCKED, &xprt->state) == 0) | |
1003 | schedule_work(&xprt->task_cleanup); | |
a246b010 CL |
1004 | default: |
1005 | xprt_disconnect(xprt); | |
a246b010 CL |
1006 | } |
1007 | out: | |
1008 | read_unlock(&sk->sk_callback_lock); | |
1009 | } | |
1010 | ||
9903cd1c | 1011 | /** |
c7b2cae8 CL |
1012 | * xs_udp_write_space - callback invoked when socket buffer space |
1013 | * becomes available | |
9903cd1c CL |
1014 | * @sk: socket whose state has changed |
1015 | * | |
a246b010 CL |
1016 | * Called when more output buffer space is available for this socket. |
1017 | * We try not to wake our writers until they can make "significant" | |
c7b2cae8 | 1018 | * progress, otherwise we'll waste resources thrashing kernel_sendmsg |
a246b010 CL |
1019 | * with a bunch of small requests. |
1020 | */ | |
c7b2cae8 | 1021 | static void xs_udp_write_space(struct sock *sk) |
a246b010 | 1022 | { |
a246b010 | 1023 | read_lock(&sk->sk_callback_lock); |
a246b010 | 1024 | |
c7b2cae8 CL |
1025 | /* from net/core/sock.c:sock_def_write_space */ |
1026 | if (sock_writeable(sk)) { | |
1027 | struct socket *sock; | |
1028 | struct rpc_xprt *xprt; | |
1029 | ||
1030 | if (unlikely(!(sock = sk->sk_socket))) | |
a246b010 | 1031 | goto out; |
c7b2cae8 CL |
1032 | if (unlikely(!(xprt = xprt_from_sock(sk)))) |
1033 | goto out; | |
1034 | if (unlikely(!test_and_clear_bit(SOCK_NOSPACE, &sock->flags))) | |
a246b010 | 1035 | goto out; |
c7b2cae8 CL |
1036 | |
1037 | xprt_write_space(xprt); | |
a246b010 CL |
1038 | } |
1039 | ||
c7b2cae8 CL |
1040 | out: |
1041 | read_unlock(&sk->sk_callback_lock); | |
1042 | } | |
a246b010 | 1043 | |
c7b2cae8 CL |
1044 | /** |
1045 | * xs_tcp_write_space - callback invoked when socket buffer space | |
1046 | * becomes available | |
1047 | * @sk: socket whose state has changed | |
1048 | * | |
1049 | * Called when more output buffer space is available for this socket. | |
1050 | * We try not to wake our writers until they can make "significant" | |
1051 | * progress, otherwise we'll waste resources thrashing kernel_sendmsg | |
1052 | * with a bunch of small requests. | |
1053 | */ | |
1054 | static void xs_tcp_write_space(struct sock *sk) | |
1055 | { | |
1056 | read_lock(&sk->sk_callback_lock); | |
1057 | ||
1058 | /* from net/core/stream.c:sk_stream_write_space */ | |
1059 | if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) { | |
1060 | struct socket *sock; | |
1061 | struct rpc_xprt *xprt; | |
1062 | ||
1063 | if (unlikely(!(sock = sk->sk_socket))) | |
1064 | goto out; | |
1065 | if (unlikely(!(xprt = xprt_from_sock(sk)))) | |
1066 | goto out; | |
1067 | if (unlikely(!test_and_clear_bit(SOCK_NOSPACE, &sock->flags))) | |
1068 | goto out; | |
1069 | ||
1070 | xprt_write_space(xprt); | |
1071 | } | |
1072 | ||
1073 | out: | |
a246b010 CL |
1074 | read_unlock(&sk->sk_callback_lock); |
1075 | } | |
1076 | ||
470056c2 | 1077 | static void xs_udp_do_set_buffer_size(struct rpc_xprt *xprt) |
a246b010 | 1078 | { |
ee0ac0c2 CL |
1079 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
1080 | struct sock *sk = transport->inet; | |
a246b010 | 1081 | |
7c6e066e | 1082 | if (transport->rcvsize) { |
a246b010 | 1083 | sk->sk_userlocks |= SOCK_RCVBUF_LOCK; |
7c6e066e | 1084 | sk->sk_rcvbuf = transport->rcvsize * xprt->max_reqs * 2; |
a246b010 | 1085 | } |
7c6e066e | 1086 | if (transport->sndsize) { |
a246b010 | 1087 | sk->sk_userlocks |= SOCK_SNDBUF_LOCK; |
7c6e066e | 1088 | sk->sk_sndbuf = transport->sndsize * xprt->max_reqs * 2; |
a246b010 CL |
1089 | sk->sk_write_space(sk); |
1090 | } | |
1091 | } | |
1092 | ||
43118c29 | 1093 | /** |
470056c2 | 1094 | * xs_udp_set_buffer_size - set send and receive limits |
43118c29 | 1095 | * @xprt: generic transport |
470056c2 CL |
1096 | * @sndsize: requested size of send buffer, in bytes |
1097 | * @rcvsize: requested size of receive buffer, in bytes | |
43118c29 | 1098 | * |
470056c2 | 1099 | * Set socket send and receive buffer size limits. |
43118c29 | 1100 | */ |
470056c2 | 1101 | static void xs_udp_set_buffer_size(struct rpc_xprt *xprt, size_t sndsize, size_t rcvsize) |
43118c29 | 1102 | { |
7c6e066e CL |
1103 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
1104 | ||
1105 | transport->sndsize = 0; | |
470056c2 | 1106 | if (sndsize) |
7c6e066e CL |
1107 | transport->sndsize = sndsize + 1024; |
1108 | transport->rcvsize = 0; | |
470056c2 | 1109 | if (rcvsize) |
7c6e066e | 1110 | transport->rcvsize = rcvsize + 1024; |
470056c2 CL |
1111 | |
1112 | xs_udp_do_set_buffer_size(xprt); | |
43118c29 CL |
1113 | } |
1114 | ||
46c0ee8b CL |
1115 | /** |
1116 | * xs_udp_timer - called when a retransmit timeout occurs on a UDP transport | |
1117 | * @task: task that timed out | |
1118 | * | |
1119 | * Adjust the congestion window after a retransmit timeout has occurred. | |
1120 | */ | |
1121 | static void xs_udp_timer(struct rpc_task *task) | |
1122 | { | |
1123 | xprt_adjust_cwnd(task, -ETIMEDOUT); | |
1124 | } | |
1125 | ||
b85d8806 CL |
1126 | static unsigned short xs_get_random_port(void) |
1127 | { | |
1128 | unsigned short range = xprt_max_resvport - xprt_min_resvport; | |
1129 | unsigned short rand = (unsigned short) net_random() % range; | |
1130 | return rand + xprt_min_resvport; | |
1131 | } | |
1132 | ||
92200412 CL |
1133 | /** |
1134 | * xs_set_port - reset the port number in the remote endpoint address | |
1135 | * @xprt: generic transport | |
1136 | * @port: new port number | |
1137 | * | |
1138 | */ | |
1139 | static void xs_set_port(struct rpc_xprt *xprt, unsigned short port) | |
1140 | { | |
c4efcb1d CL |
1141 | struct sockaddr_in *sap = (struct sockaddr_in *) &xprt->addr; |
1142 | ||
92200412 | 1143 | dprintk("RPC: setting port for xprt %p to %u\n", xprt, port); |
c4efcb1d CL |
1144 | |
1145 | sap->sin_port = htons(port); | |
92200412 CL |
1146 | } |
1147 | ||
c8475461 | 1148 | static int xs_bindresvport(struct sock_xprt *transport, struct socket *sock) |
a246b010 CL |
1149 | { |
1150 | struct sockaddr_in myaddr = { | |
1151 | .sin_family = AF_INET, | |
1152 | }; | |
529b33c6 | 1153 | int err; |
c8475461 | 1154 | unsigned short port = transport->port; |
a246b010 | 1155 | |
a246b010 CL |
1156 | do { |
1157 | myaddr.sin_port = htons(port); | |
e6242e92 | 1158 | err = kernel_bind(sock, (struct sockaddr *) &myaddr, |
a246b010 CL |
1159 | sizeof(myaddr)); |
1160 | if (err == 0) { | |
c8475461 | 1161 | transport->port = port; |
9903cd1c CL |
1162 | dprintk("RPC: xs_bindresvport bound to port %u\n", |
1163 | port); | |
a246b010 CL |
1164 | return 0; |
1165 | } | |
529b33c6 CL |
1166 | if (port <= xprt_min_resvport) |
1167 | port = xprt_max_resvport; | |
1168 | else | |
1169 | port--; | |
c8475461 | 1170 | } while (err == -EADDRINUSE && port != transport->port); |
a246b010 | 1171 | |
9903cd1c | 1172 | dprintk("RPC: can't bind to reserved port (%d).\n", -err); |
a246b010 CL |
1173 | return err; |
1174 | } | |
1175 | ||
ed07536e PZ |
1176 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
1177 | static struct lock_class_key xs_key[2]; | |
1178 | static struct lock_class_key xs_slock_key[2]; | |
1179 | ||
1180 | static inline void xs_reclassify_socket(struct socket *sock) | |
1181 | { | |
1182 | struct sock *sk = sock->sk; | |
1183 | BUG_ON(sk->sk_lock.owner != NULL); | |
1184 | switch (sk->sk_family) { | |
1185 | case AF_INET: | |
1186 | sock_lock_init_class_and_name(sk, "slock-AF_INET-NFS", | |
1187 | &xs_slock_key[0], "sk_lock-AF_INET-NFS", &xs_key[0]); | |
1188 | break; | |
1189 | ||
1190 | case AF_INET6: | |
1191 | sock_lock_init_class_and_name(sk, "slock-AF_INET6-NFS", | |
1192 | &xs_slock_key[1], "sk_lock-AF_INET6-NFS", &xs_key[1]); | |
1193 | break; | |
1194 | ||
1195 | default: | |
1196 | BUG(); | |
1197 | } | |
1198 | } | |
1199 | #else | |
1200 | static inline void xs_reclassify_socket(struct socket *sock) | |
1201 | { | |
1202 | } | |
1203 | #endif | |
1204 | ||
b0d93ad5 CL |
1205 | /** |
1206 | * xs_udp_connect_worker - set up a UDP socket | |
65f27f38 | 1207 | * @work: RPC transport to connect |
b0d93ad5 CL |
1208 | * |
1209 | * Invoked by a work queue tasklet. | |
1210 | */ | |
65f27f38 | 1211 | static void xs_udp_connect_worker(struct work_struct *work) |
a246b010 | 1212 | { |
34161db6 TM |
1213 | struct sock_xprt *transport = |
1214 | container_of(work, struct sock_xprt, connect_worker.work); | |
c8475461 | 1215 | struct rpc_xprt *xprt = &transport->xprt; |
ee0ac0c2 | 1216 | struct socket *sock = transport->sock; |
b0d93ad5 | 1217 | int err, status = -EIO; |
9903cd1c | 1218 | |
ec739ef0 | 1219 | if (xprt->shutdown || !xprt_bound(xprt)) |
b0d93ad5 | 1220 | goto out; |
9903cd1c | 1221 | |
b0d93ad5 CL |
1222 | /* Start by resetting any existing state */ |
1223 | xs_close(xprt); | |
9903cd1c | 1224 | |
b0d93ad5 CL |
1225 | if ((err = sock_create_kern(PF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock)) < 0) { |
1226 | dprintk("RPC: can't create UDP transport socket (%d).\n", -err); | |
1227 | goto out; | |
1228 | } | |
ed07536e | 1229 | xs_reclassify_socket(sock); |
9903cd1c | 1230 | |
c8475461 | 1231 | if (xprt->resvport && xs_bindresvport(transport, sock) < 0) { |
b0d93ad5 CL |
1232 | sock_release(sock); |
1233 | goto out; | |
1234 | } | |
9903cd1c | 1235 | |
edb267a6 | 1236 | dprintk("RPC: worker connecting xprt %p to address: %s\n", |
7559c7a2 | 1237 | xprt, xprt->address_strings[RPC_DISPLAY_ALL]); |
edb267a6 | 1238 | |
ee0ac0c2 | 1239 | if (!transport->inet) { |
b0d93ad5 | 1240 | struct sock *sk = sock->sk; |
a246b010 | 1241 | |
b0d93ad5 | 1242 | write_lock_bh(&sk->sk_callback_lock); |
a246b010 | 1243 | |
b0d93ad5 | 1244 | sk->sk_user_data = xprt; |
314dfd79 CL |
1245 | transport->old_data_ready = sk->sk_data_ready; |
1246 | transport->old_state_change = sk->sk_state_change; | |
1247 | transport->old_write_space = sk->sk_write_space; | |
9903cd1c | 1248 | sk->sk_data_ready = xs_udp_data_ready; |
c7b2cae8 | 1249 | sk->sk_write_space = xs_udp_write_space; |
a246b010 | 1250 | sk->sk_no_check = UDP_CSUM_NORCV; |
b079fa7b | 1251 | sk->sk_allocation = GFP_ATOMIC; |
b0d93ad5 | 1252 | |
a246b010 | 1253 | xprt_set_connected(xprt); |
a246b010 | 1254 | |
b0d93ad5 | 1255 | /* Reset to new socket */ |
ee0ac0c2 CL |
1256 | transport->sock = sock; |
1257 | transport->inet = sk; | |
a246b010 | 1258 | |
b0d93ad5 CL |
1259 | write_unlock_bh(&sk->sk_callback_lock); |
1260 | } | |
470056c2 | 1261 | xs_udp_do_set_buffer_size(xprt); |
b0d93ad5 CL |
1262 | status = 0; |
1263 | out: | |
1264 | xprt_wake_pending_tasks(xprt, status); | |
1265 | xprt_clear_connecting(xprt); | |
a246b010 CL |
1266 | } |
1267 | ||
3167e12c CL |
1268 | /* |
1269 | * We need to preserve the port number so the reply cache on the server can | |
1270 | * find our cached RPC replies when we get around to reconnecting. | |
1271 | */ | |
1272 | static void xs_tcp_reuse_connection(struct rpc_xprt *xprt) | |
1273 | { | |
1274 | int result; | |
ee0ac0c2 | 1275 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
3167e12c CL |
1276 | struct sockaddr any; |
1277 | ||
1278 | dprintk("RPC: disconnecting xprt %p to reuse port\n", xprt); | |
1279 | ||
1280 | /* | |
1281 | * Disconnect the transport socket by doing a connect operation | |
1282 | * with AF_UNSPEC. This should return immediately... | |
1283 | */ | |
1284 | memset(&any, 0, sizeof(any)); | |
1285 | any.sa_family = AF_UNSPEC; | |
ee0ac0c2 | 1286 | result = kernel_connect(transport->sock, &any, sizeof(any), 0); |
3167e12c CL |
1287 | if (result) |
1288 | dprintk("RPC: AF_UNSPEC connect return code %d\n", | |
1289 | result); | |
1290 | } | |
1291 | ||
9903cd1c | 1292 | /** |
b0d93ad5 | 1293 | * xs_tcp_connect_worker - connect a TCP socket to a remote endpoint |
65f27f38 | 1294 | * @work: RPC transport to connect |
9903cd1c CL |
1295 | * |
1296 | * Invoked by a work queue tasklet. | |
a246b010 | 1297 | */ |
65f27f38 | 1298 | static void xs_tcp_connect_worker(struct work_struct *work) |
a246b010 | 1299 | { |
34161db6 TM |
1300 | struct sock_xprt *transport = |
1301 | container_of(work, struct sock_xprt, connect_worker.work); | |
c8475461 | 1302 | struct rpc_xprt *xprt = &transport->xprt; |
ee0ac0c2 | 1303 | struct socket *sock = transport->sock; |
b0d93ad5 | 1304 | int err, status = -EIO; |
a246b010 | 1305 | |
ec739ef0 | 1306 | if (xprt->shutdown || !xprt_bound(xprt)) |
a246b010 CL |
1307 | goto out; |
1308 | ||
ee0ac0c2 | 1309 | if (!sock) { |
3167e12c CL |
1310 | /* start from scratch */ |
1311 | if ((err = sock_create_kern(PF_INET, SOCK_STREAM, IPPROTO_TCP, &sock)) < 0) { | |
1312 | dprintk("RPC: can't create TCP transport socket (%d).\n", -err); | |
1313 | goto out; | |
1314 | } | |
ed07536e | 1315 | xs_reclassify_socket(sock); |
a246b010 | 1316 | |
c8475461 | 1317 | if (xprt->resvport && xs_bindresvport(transport, sock) < 0) { |
3167e12c CL |
1318 | sock_release(sock); |
1319 | goto out; | |
1320 | } | |
1321 | } else | |
1322 | /* "close" the socket, preserving the local port */ | |
1323 | xs_tcp_reuse_connection(xprt); | |
a246b010 | 1324 | |
edb267a6 | 1325 | dprintk("RPC: worker connecting xprt %p to address: %s\n", |
7559c7a2 | 1326 | xprt, xprt->address_strings[RPC_DISPLAY_ALL]); |
edb267a6 | 1327 | |
ee0ac0c2 | 1328 | if (!transport->inet) { |
b0d93ad5 CL |
1329 | struct sock *sk = sock->sk; |
1330 | ||
1331 | write_lock_bh(&sk->sk_callback_lock); | |
1332 | ||
1333 | sk->sk_user_data = xprt; | |
314dfd79 CL |
1334 | transport->old_data_ready = sk->sk_data_ready; |
1335 | transport->old_state_change = sk->sk_state_change; | |
1336 | transport->old_write_space = sk->sk_write_space; | |
b0d93ad5 CL |
1337 | sk->sk_data_ready = xs_tcp_data_ready; |
1338 | sk->sk_state_change = xs_tcp_state_change; | |
1339 | sk->sk_write_space = xs_tcp_write_space; | |
b079fa7b | 1340 | sk->sk_allocation = GFP_ATOMIC; |
3167e12c CL |
1341 | |
1342 | /* socket options */ | |
1343 | sk->sk_userlocks |= SOCK_BINDPORT_LOCK; | |
1344 | sock_reset_flag(sk, SOCK_LINGER); | |
1345 | tcp_sk(sk)->linger2 = 0; | |
1346 | tcp_sk(sk)->nonagle |= TCP_NAGLE_OFF; | |
b0d93ad5 CL |
1347 | |
1348 | xprt_clear_connected(xprt); | |
1349 | ||
1350 | /* Reset to new socket */ | |
ee0ac0c2 CL |
1351 | transport->sock = sock; |
1352 | transport->inet = sk; | |
b0d93ad5 CL |
1353 | |
1354 | write_unlock_bh(&sk->sk_callback_lock); | |
1355 | } | |
1356 | ||
1357 | /* Tell the socket layer to start connecting... */ | |
262ca07d CL |
1358 | xprt->stat.connect_count++; |
1359 | xprt->stat.connect_start = jiffies; | |
e6242e92 | 1360 | status = kernel_connect(sock, (struct sockaddr *) &xprt->addr, |
c4efcb1d | 1361 | xprt->addrlen, O_NONBLOCK); |
a246b010 CL |
1362 | dprintk("RPC: %p connect status %d connected %d sock state %d\n", |
1363 | xprt, -status, xprt_connected(xprt), sock->sk->sk_state); | |
1364 | if (status < 0) { | |
1365 | switch (status) { | |
1366 | case -EINPROGRESS: | |
1367 | case -EALREADY: | |
1368 | goto out_clear; | |
3167e12c CL |
1369 | case -ECONNREFUSED: |
1370 | case -ECONNRESET: | |
1371 | /* retry with existing socket, after a delay */ | |
1372 | break; | |
1373 | default: | |
1374 | /* get rid of existing socket, and retry */ | |
1375 | xs_close(xprt); | |
1376 | break; | |
a246b010 CL |
1377 | } |
1378 | } | |
1379 | out: | |
44fbac22 | 1380 | xprt_wake_pending_tasks(xprt, status); |
a246b010 | 1381 | out_clear: |
2226feb6 | 1382 | xprt_clear_connecting(xprt); |
a246b010 CL |
1383 | } |
1384 | ||
9903cd1c CL |
1385 | /** |
1386 | * xs_connect - connect a socket to a remote endpoint | |
1387 | * @task: address of RPC task that manages state of connect request | |
1388 | * | |
1389 | * TCP: If the remote end dropped the connection, delay reconnecting. | |
03bf4b70 CL |
1390 | * |
1391 | * UDP socket connects are synchronous, but we use a work queue anyway | |
1392 | * to guarantee that even unprivileged user processes can set up a | |
1393 | * socket on a privileged port. | |
1394 | * | |
1395 | * If a UDP socket connect fails, the delay behavior here prevents | |
1396 | * retry floods (hard mounts). | |
9903cd1c CL |
1397 | */ |
1398 | static void xs_connect(struct rpc_task *task) | |
a246b010 CL |
1399 | { |
1400 | struct rpc_xprt *xprt = task->tk_xprt; | |
ee0ac0c2 | 1401 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
a246b010 | 1402 | |
b0d93ad5 CL |
1403 | if (xprt_test_and_set_connecting(xprt)) |
1404 | return; | |
1405 | ||
ee0ac0c2 | 1406 | if (transport->sock != NULL) { |
03bf4b70 CL |
1407 | dprintk("RPC: xs_connect delayed xprt %p for %lu seconds\n", |
1408 | xprt, xprt->reestablish_timeout / HZ); | |
c8475461 | 1409 | schedule_delayed_work(&transport->connect_worker, |
03bf4b70 CL |
1410 | xprt->reestablish_timeout); |
1411 | xprt->reestablish_timeout <<= 1; | |
1412 | if (xprt->reestablish_timeout > XS_TCP_MAX_REEST_TO) | |
1413 | xprt->reestablish_timeout = XS_TCP_MAX_REEST_TO; | |
b0d93ad5 CL |
1414 | } else { |
1415 | dprintk("RPC: xs_connect scheduled xprt %p\n", xprt); | |
34161db6 | 1416 | schedule_delayed_work(&transport->connect_worker, 0); |
b0d93ad5 CL |
1417 | |
1418 | /* flush_scheduled_work can sleep... */ | |
1419 | if (!RPC_IS_ASYNC(task)) | |
1420 | flush_scheduled_work(); | |
a246b010 CL |
1421 | } |
1422 | } | |
1423 | ||
262ca07d CL |
1424 | /** |
1425 | * xs_udp_print_stats - display UDP socket-specifc stats | |
1426 | * @xprt: rpc_xprt struct containing statistics | |
1427 | * @seq: output file | |
1428 | * | |
1429 | */ | |
1430 | static void xs_udp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq) | |
1431 | { | |
c8475461 CL |
1432 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
1433 | ||
262ca07d | 1434 | seq_printf(seq, "\txprt:\tudp %u %lu %lu %lu %lu %Lu %Lu\n", |
c8475461 | 1435 | transport->port, |
262ca07d CL |
1436 | xprt->stat.bind_count, |
1437 | xprt->stat.sends, | |
1438 | xprt->stat.recvs, | |
1439 | xprt->stat.bad_xids, | |
1440 | xprt->stat.req_u, | |
1441 | xprt->stat.bklog_u); | |
1442 | } | |
1443 | ||
1444 | /** | |
1445 | * xs_tcp_print_stats - display TCP socket-specifc stats | |
1446 | * @xprt: rpc_xprt struct containing statistics | |
1447 | * @seq: output file | |
1448 | * | |
1449 | */ | |
1450 | static void xs_tcp_print_stats(struct rpc_xprt *xprt, struct seq_file *seq) | |
1451 | { | |
c8475461 | 1452 | struct sock_xprt *transport = container_of(xprt, struct sock_xprt, xprt); |
262ca07d CL |
1453 | long idle_time = 0; |
1454 | ||
1455 | if (xprt_connected(xprt)) | |
1456 | idle_time = (long)(jiffies - xprt->last_used) / HZ; | |
1457 | ||
1458 | seq_printf(seq, "\txprt:\ttcp %u %lu %lu %lu %ld %lu %lu %lu %Lu %Lu\n", | |
c8475461 | 1459 | transport->port, |
262ca07d CL |
1460 | xprt->stat.bind_count, |
1461 | xprt->stat.connect_count, | |
1462 | xprt->stat.connect_time, | |
1463 | idle_time, | |
1464 | xprt->stat.sends, | |
1465 | xprt->stat.recvs, | |
1466 | xprt->stat.bad_xids, | |
1467 | xprt->stat.req_u, | |
1468 | xprt->stat.bklog_u); | |
1469 | } | |
1470 | ||
262965f5 | 1471 | static struct rpc_xprt_ops xs_udp_ops = { |
43118c29 | 1472 | .set_buffer_size = xs_udp_set_buffer_size, |
12a80469 | 1473 | .reserve_xprt = xprt_reserve_xprt_cong, |
49e9a890 | 1474 | .release_xprt = xprt_release_xprt_cong, |
bbf7c1dd | 1475 | .rpcbind = rpc_getport, |
92200412 | 1476 | .set_port = xs_set_port, |
262965f5 | 1477 | .connect = xs_connect, |
02107148 CL |
1478 | .buf_alloc = rpc_malloc, |
1479 | .buf_free = rpc_free, | |
262965f5 | 1480 | .send_request = xs_udp_send_request, |
fe3aca29 | 1481 | .set_retrans_timeout = xprt_set_retrans_timeout_rtt, |
46c0ee8b | 1482 | .timer = xs_udp_timer, |
a58dd398 | 1483 | .release_request = xprt_release_rqst_cong, |
262965f5 CL |
1484 | .close = xs_close, |
1485 | .destroy = xs_destroy, | |
262ca07d | 1486 | .print_stats = xs_udp_print_stats, |
262965f5 CL |
1487 | }; |
1488 | ||
1489 | static struct rpc_xprt_ops xs_tcp_ops = { | |
12a80469 | 1490 | .reserve_xprt = xprt_reserve_xprt, |
e0ab53de | 1491 | .release_xprt = xs_tcp_release_xprt, |
bbf7c1dd | 1492 | .rpcbind = rpc_getport, |
92200412 | 1493 | .set_port = xs_set_port, |
9903cd1c | 1494 | .connect = xs_connect, |
02107148 CL |
1495 | .buf_alloc = rpc_malloc, |
1496 | .buf_free = rpc_free, | |
262965f5 | 1497 | .send_request = xs_tcp_send_request, |
fe3aca29 | 1498 | .set_retrans_timeout = xprt_set_retrans_timeout_def, |
9903cd1c CL |
1499 | .close = xs_close, |
1500 | .destroy = xs_destroy, | |
262ca07d | 1501 | .print_stats = xs_tcp_print_stats, |
a246b010 CL |
1502 | }; |
1503 | ||
c8541ecd CL |
1504 | static struct rpc_xprt *xs_setup_xprt(struct sockaddr *addr, size_t addrlen, unsigned int slot_table_size) |
1505 | { | |
1506 | struct rpc_xprt *xprt; | |
ffc2e518 | 1507 | struct sock_xprt *new; |
c8541ecd CL |
1508 | |
1509 | if (addrlen > sizeof(xprt->addr)) { | |
1510 | dprintk("RPC: xs_setup_xprt: address too large\n"); | |
1511 | return ERR_PTR(-EBADF); | |
1512 | } | |
1513 | ||
ffc2e518 CL |
1514 | new = kzalloc(sizeof(*new), GFP_KERNEL); |
1515 | if (new == NULL) { | |
c8541ecd CL |
1516 | dprintk("RPC: xs_setup_xprt: couldn't allocate rpc_xprt\n"); |
1517 | return ERR_PTR(-ENOMEM); | |
1518 | } | |
ffc2e518 | 1519 | xprt = &new->xprt; |
c8541ecd CL |
1520 | |
1521 | xprt->max_reqs = slot_table_size; | |
1522 | xprt->slot = kcalloc(xprt->max_reqs, sizeof(struct rpc_rqst), GFP_KERNEL); | |
1523 | if (xprt->slot == NULL) { | |
1524 | kfree(xprt); | |
1525 | dprintk("RPC: xs_setup_xprt: couldn't allocate slot table\n"); | |
1526 | return ERR_PTR(-ENOMEM); | |
1527 | } | |
1528 | ||
1529 | memcpy(&xprt->addr, addr, addrlen); | |
1530 | xprt->addrlen = addrlen; | |
c8475461 | 1531 | new->port = xs_get_random_port(); |
c8541ecd CL |
1532 | |
1533 | return xprt; | |
1534 | } | |
1535 | ||
9903cd1c CL |
1536 | /** |
1537 | * xs_setup_udp - Set up transport to use a UDP socket | |
c8541ecd CL |
1538 | * @addr: address of remote server |
1539 | * @addrlen: length of address in bytes | |
9903cd1c CL |
1540 | * @to: timeout parameters |
1541 | * | |
1542 | */ | |
c8541ecd | 1543 | struct rpc_xprt *xs_setup_udp(struct sockaddr *addr, size_t addrlen, struct rpc_timeout *to) |
a246b010 | 1544 | { |
c8541ecd | 1545 | struct rpc_xprt *xprt; |
c8475461 | 1546 | struct sock_xprt *transport; |
a246b010 | 1547 | |
c8541ecd CL |
1548 | xprt = xs_setup_xprt(addr, addrlen, xprt_udp_slot_table_entries); |
1549 | if (IS_ERR(xprt)) | |
1550 | return xprt; | |
c8475461 | 1551 | transport = container_of(xprt, struct sock_xprt, xprt); |
a246b010 | 1552 | |
c8541ecd | 1553 | if (ntohs(((struct sockaddr_in *)addr)->sin_port) != 0) |
ec739ef0 | 1554 | xprt_set_bound(xprt); |
ec739ef0 CL |
1555 | |
1556 | xprt->prot = IPPROTO_UDP; | |
808012fb | 1557 | xprt->tsh_size = 0; |
a246b010 CL |
1558 | /* XXX: header size can vary due to auth type, IPv6, etc. */ |
1559 | xprt->max_payload = (1U << 16) - (MAX_HEADER << 3); | |
1560 | ||
34161db6 | 1561 | INIT_DELAYED_WORK(&transport->connect_worker, xs_udp_connect_worker); |
03bf4b70 CL |
1562 | xprt->bind_timeout = XS_BIND_TO; |
1563 | xprt->connect_timeout = XS_UDP_CONN_TO; | |
1564 | xprt->reestablish_timeout = XS_UDP_REEST_TO; | |
1565 | xprt->idle_timeout = XS_IDLE_DISC_TO; | |
a246b010 | 1566 | |
262965f5 | 1567 | xprt->ops = &xs_udp_ops; |
a246b010 CL |
1568 | |
1569 | if (to) | |
1570 | xprt->timeout = *to; | |
1571 | else | |
9903cd1c | 1572 | xprt_set_timeout(&xprt->timeout, 5, 5 * HZ); |
a246b010 | 1573 | |
edb267a6 CL |
1574 | xs_format_peer_addresses(xprt); |
1575 | dprintk("RPC: set up transport to address %s\n", | |
7559c7a2 | 1576 | xprt->address_strings[RPC_DISPLAY_ALL]); |
edb267a6 | 1577 | |
c8541ecd | 1578 | return xprt; |
a246b010 CL |
1579 | } |
1580 | ||
9903cd1c CL |
1581 | /** |
1582 | * xs_setup_tcp - Set up transport to use a TCP socket | |
c8541ecd CL |
1583 | * @addr: address of remote server |
1584 | * @addrlen: length of address in bytes | |
9903cd1c CL |
1585 | * @to: timeout parameters |
1586 | * | |
1587 | */ | |
c8541ecd | 1588 | struct rpc_xprt *xs_setup_tcp(struct sockaddr *addr, size_t addrlen, struct rpc_timeout *to) |
a246b010 | 1589 | { |
c8541ecd | 1590 | struct rpc_xprt *xprt; |
c8475461 | 1591 | struct sock_xprt *transport; |
a246b010 | 1592 | |
c8541ecd CL |
1593 | xprt = xs_setup_xprt(addr, addrlen, xprt_tcp_slot_table_entries); |
1594 | if (IS_ERR(xprt)) | |
1595 | return xprt; | |
c8475461 | 1596 | transport = container_of(xprt, struct sock_xprt, xprt); |
a246b010 | 1597 | |
c8541ecd | 1598 | if (ntohs(((struct sockaddr_in *)addr)->sin_port) != 0) |
ec739ef0 | 1599 | xprt_set_bound(xprt); |
ec739ef0 CL |
1600 | |
1601 | xprt->prot = IPPROTO_TCP; | |
808012fb | 1602 | xprt->tsh_size = sizeof(rpc_fraghdr) / sizeof(u32); |
808012fb | 1603 | xprt->max_payload = RPC_MAX_FRAGMENT_SIZE; |
a246b010 | 1604 | |
34161db6 | 1605 | INIT_DELAYED_WORK(&transport->connect_worker, xs_tcp_connect_worker); |
03bf4b70 CL |
1606 | xprt->bind_timeout = XS_BIND_TO; |
1607 | xprt->connect_timeout = XS_TCP_CONN_TO; | |
1608 | xprt->reestablish_timeout = XS_TCP_INIT_REEST_TO; | |
1609 | xprt->idle_timeout = XS_IDLE_DISC_TO; | |
a246b010 | 1610 | |
262965f5 | 1611 | xprt->ops = &xs_tcp_ops; |
a246b010 CL |
1612 | |
1613 | if (to) | |
1614 | xprt->timeout = *to; | |
1615 | else | |
9903cd1c | 1616 | xprt_set_timeout(&xprt->timeout, 2, 60 * HZ); |
a246b010 | 1617 | |
edb267a6 CL |
1618 | xs_format_peer_addresses(xprt); |
1619 | dprintk("RPC: set up transport to address %s\n", | |
7559c7a2 | 1620 | xprt->address_strings[RPC_DISPLAY_ALL]); |
edb267a6 | 1621 | |
c8541ecd | 1622 | return xprt; |
a246b010 | 1623 | } |
282b32e1 CL |
1624 | |
1625 | /** | |
fbf76683 | 1626 | * init_socket_xprt - set up xprtsock's sysctls |
282b32e1 CL |
1627 | * |
1628 | */ | |
1629 | int init_socket_xprt(void) | |
1630 | { | |
fbf76683 CL |
1631 | #ifdef RPC_DEBUG |
1632 | if (!sunrpc_table_header) { | |
1633 | sunrpc_table_header = register_sysctl_table(sunrpc_table, 1); | |
1634 | #ifdef CONFIG_PROC_FS | |
1635 | if (sunrpc_table[0].de) | |
1636 | sunrpc_table[0].de->owner = THIS_MODULE; | |
1637 | #endif | |
1638 | } | |
1639 | #endif | |
1640 | ||
282b32e1 CL |
1641 | return 0; |
1642 | } | |
1643 | ||
1644 | /** | |
fbf76683 | 1645 | * cleanup_socket_xprt - remove xprtsock's sysctls |
282b32e1 CL |
1646 | * |
1647 | */ | |
1648 | void cleanup_socket_xprt(void) | |
1649 | { | |
fbf76683 CL |
1650 | #ifdef RPC_DEBUG |
1651 | if (sunrpc_table_header) { | |
1652 | unregister_sysctl_table(sunrpc_table_header); | |
1653 | sunrpc_table_header = NULL; | |
1654 | } | |
1655 | #endif | |
282b32e1 | 1656 | } |