]>
Commit | Line | Data |
---|---|---|
70041088 AG |
1 | /* |
2 | * Copyright (c) 2006 Oracle. All rights reserved. | |
3 | * | |
4 | * This software is available to you under a choice of one of two | |
5 | * licenses. You may choose to be licensed under the terms of the GNU | |
6 | * General Public License (GPL) Version 2, available from the file | |
7 | * COPYING in the main directory of this source tree, or the | |
8 | * OpenIB.org BSD license below: | |
9 | * | |
10 | * Redistribution and use in source and binary forms, with or | |
11 | * without modification, are permitted provided that the following | |
12 | * conditions are met: | |
13 | * | |
14 | * - Redistributions of source code must retain the above | |
15 | * copyright notice, this list of conditions and the following | |
16 | * disclaimer. | |
17 | * | |
18 | * - Redistributions in binary form must reproduce the above | |
19 | * copyright notice, this list of conditions and the following | |
20 | * disclaimer in the documentation and/or other materials | |
21 | * provided with the distribution. | |
22 | * | |
23 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
24 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
25 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | |
26 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS | |
27 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN | |
28 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | |
29 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
30 | * SOFTWARE. | |
31 | * | |
32 | */ | |
33 | #include <linux/kernel.h> | |
5a0e3ad6 | 34 | #include <linux/slab.h> |
70041088 | 35 | #include <linux/in.h> |
3a9a231d | 36 | #include <linux/module.h> |
70041088 | 37 | #include <net/tcp.h> |
467fa153 SV |
38 | #include <net/net_namespace.h> |
39 | #include <net/netns/generic.h> | |
70041088 AG |
40 | |
41 | #include "rds.h" | |
42 | #include "tcp.h" | |
43 | ||
44 | /* only for info exporting */ | |
45 | static DEFINE_SPINLOCK(rds_tcp_tc_list_lock); | |
46 | static LIST_HEAD(rds_tcp_tc_list); | |
ff51bf84 | 47 | static unsigned int rds_tcp_tc_count; |
70041088 AG |
48 | |
49 | /* Track rds_tcp_connection structs so they can be cleaned up */ | |
50 | static DEFINE_SPINLOCK(rds_tcp_conn_lock); | |
51 | static LIST_HEAD(rds_tcp_conn_list); | |
52 | ||
53 | static struct kmem_cache *rds_tcp_conn_slab; | |
54 | ||
c6a58ffe SV |
55 | static int rds_tcp_skbuf_handler(struct ctl_table *ctl, int write, |
56 | void __user *buffer, size_t *lenp, | |
57 | loff_t *fpos); | |
58 | ||
af73e72d WY |
59 | static int rds_tcp_min_sndbuf = SOCK_MIN_SNDBUF; |
60 | static int rds_tcp_min_rcvbuf = SOCK_MIN_RCVBUF; | |
c6a58ffe SV |
61 | |
62 | static struct ctl_table rds_tcp_sysctl_table[] = { | |
63 | #define RDS_TCP_SNDBUF 0 | |
64 | { | |
65 | .procname = "rds_tcp_sndbuf", | |
66 | /* data is per-net pointer */ | |
67 | .maxlen = sizeof(int), | |
68 | .mode = 0644, | |
69 | .proc_handler = rds_tcp_skbuf_handler, | |
70 | .extra1 = &rds_tcp_min_sndbuf, | |
71 | }, | |
72 | #define RDS_TCP_RCVBUF 1 | |
73 | { | |
74 | .procname = "rds_tcp_rcvbuf", | |
75 | /* data is per-net pointer */ | |
76 | .maxlen = sizeof(int), | |
77 | .mode = 0644, | |
78 | .proc_handler = rds_tcp_skbuf_handler, | |
79 | .extra1 = &rds_tcp_min_rcvbuf, | |
80 | }, | |
81 | { } | |
82 | }; | |
83 | ||
70041088 AG |
84 | /* doing it this way avoids calling tcp_sk() */ |
85 | void rds_tcp_nonagle(struct socket *sock) | |
86 | { | |
87 | mm_segment_t oldfs = get_fs(); | |
88 | int val = 1; | |
89 | ||
90 | set_fs(KERNEL_DS); | |
91 | sock->ops->setsockopt(sock, SOL_TCP, TCP_NODELAY, (char __user *)&val, | |
92 | sizeof(val)); | |
93 | set_fs(oldfs); | |
94 | } | |
95 | ||
70041088 AG |
96 | u32 rds_tcp_snd_nxt(struct rds_tcp_connection *tc) |
97 | { | |
98 | return tcp_sk(tc->t_sock->sk)->snd_nxt; | |
99 | } | |
100 | ||
101 | u32 rds_tcp_snd_una(struct rds_tcp_connection *tc) | |
102 | { | |
103 | return tcp_sk(tc->t_sock->sk)->snd_una; | |
104 | } | |
105 | ||
106 | void rds_tcp_restore_callbacks(struct socket *sock, | |
107 | struct rds_tcp_connection *tc) | |
108 | { | |
109 | rdsdebug("restoring sock %p callbacks from tc %p\n", sock, tc); | |
110 | write_lock_bh(&sock->sk->sk_callback_lock); | |
111 | ||
112 | /* done under the callback_lock to serialize with write_space */ | |
113 | spin_lock(&rds_tcp_tc_list_lock); | |
114 | list_del_init(&tc->t_list_item); | |
115 | rds_tcp_tc_count--; | |
116 | spin_unlock(&rds_tcp_tc_list_lock); | |
117 | ||
118 | tc->t_sock = NULL; | |
119 | ||
120 | sock->sk->sk_write_space = tc->t_orig_write_space; | |
121 | sock->sk->sk_data_ready = tc->t_orig_data_ready; | |
122 | sock->sk->sk_state_change = tc->t_orig_state_change; | |
123 | sock->sk->sk_user_data = NULL; | |
124 | ||
125 | write_unlock_bh(&sock->sk->sk_callback_lock); | |
126 | } | |
127 | ||
128 | /* | |
335b48d9 SV |
129 | * rds_tcp_reset_callbacks() switches the to the new sock and |
130 | * returns the existing tc->t_sock. | |
131 | * | |
132 | * The only functions that set tc->t_sock are rds_tcp_set_callbacks | |
133 | * and rds_tcp_reset_callbacks. Send and receive trust that | |
134 | * it is set. The absence of RDS_CONN_UP bit protects those paths | |
135 | * from being called while it isn't set. | |
136 | */ | |
137 | void rds_tcp_reset_callbacks(struct socket *sock, | |
ea3b1ea5 | 138 | struct rds_conn_path *cp) |
335b48d9 | 139 | { |
ea3b1ea5 | 140 | struct rds_tcp_connection *tc = cp->cp_transport_data; |
335b48d9 SV |
141 | struct socket *osock = tc->t_sock; |
142 | ||
143 | if (!osock) | |
144 | goto newsock; | |
145 | ||
146 | /* Need to resolve a duelling SYN between peers. | |
147 | * We have an outstanding SYN to this peer, which may | |
148 | * potentially have transitioned to the RDS_CONN_UP state, | |
149 | * so we must quiesce any send threads before resetting | |
ea3b1ea5 SV |
150 | * cp_transport_data. We quiesce these threads by setting |
151 | * cp_state to something other than RDS_CONN_UP, and then | |
335b48d9 SV |
152 | * waiting for any existing threads in rds_send_xmit to |
153 | * complete release_in_xmit(). (Subsequent threads entering | |
154 | * rds_send_xmit() will bail on !rds_conn_up(). | |
9c79440e SV |
155 | * |
156 | * However an incoming syn-ack at this point would end up | |
157 | * marking the conn as RDS_CONN_UP, and would again permit | |
158 | * rds_send_xmi() threads through, so ideally we would | |
159 | * synchronize on RDS_CONN_UP after lock_sock(), but cannot | |
160 | * do that: waiting on !RDS_IN_XMIT after lock_sock() may | |
161 | * end up deadlocking with tcp_sendmsg(), and the RDS_IN_XMIT | |
162 | * would not get set. As a result, we set c_state to | |
163 | * RDS_CONN_RESETTTING, to ensure that rds_tcp_state_change | |
164 | * cannot mark rds_conn_path_up() in the window before lock_sock() | |
335b48d9 | 165 | */ |
ea3b1ea5 SV |
166 | atomic_set(&cp->cp_state, RDS_CONN_RESETTING); |
167 | wait_event(cp->cp_waitq, !test_bit(RDS_IN_XMIT, &cp->cp_flags)); | |
335b48d9 SV |
168 | lock_sock(osock->sk); |
169 | /* reset receive side state for rds_tcp_data_recv() for osock */ | |
ac3615e7 SV |
170 | cancel_delayed_work_sync(&cp->cp_send_w); |
171 | cancel_delayed_work_sync(&cp->cp_recv_w); | |
335b48d9 SV |
172 | if (tc->t_tinc) { |
173 | rds_inc_put(&tc->t_tinc->ti_inc); | |
174 | tc->t_tinc = NULL; | |
175 | } | |
176 | tc->t_tinc_hdr_rem = sizeof(struct rds_header); | |
177 | tc->t_tinc_data_rem = 0; | |
ac3615e7 | 178 | rds_tcp_restore_callbacks(osock, tc); |
335b48d9 SV |
179 | release_sock(osock->sk); |
180 | sock_release(osock); | |
181 | newsock: | |
ea3b1ea5 | 182 | rds_send_path_reset(cp); |
335b48d9 | 183 | lock_sock(sock->sk); |
ac3615e7 | 184 | rds_tcp_set_callbacks(sock, cp); |
335b48d9 SV |
185 | release_sock(sock->sk); |
186 | } | |
187 | ||
188 | /* Add tc to rds_tcp_tc_list and set tc->t_sock. See comments | |
189 | * above rds_tcp_reset_callbacks for notes about synchronization | |
190 | * with data path | |
70041088 | 191 | */ |
ea3b1ea5 | 192 | void rds_tcp_set_callbacks(struct socket *sock, struct rds_conn_path *cp) |
70041088 | 193 | { |
ea3b1ea5 | 194 | struct rds_tcp_connection *tc = cp->cp_transport_data; |
70041088 AG |
195 | |
196 | rdsdebug("setting sock %p callbacks to tc %p\n", sock, tc); | |
197 | write_lock_bh(&sock->sk->sk_callback_lock); | |
198 | ||
199 | /* done under the callback_lock to serialize with write_space */ | |
200 | spin_lock(&rds_tcp_tc_list_lock); | |
201 | list_add_tail(&tc->t_list_item, &rds_tcp_tc_list); | |
202 | rds_tcp_tc_count++; | |
203 | spin_unlock(&rds_tcp_tc_list_lock); | |
204 | ||
205 | /* accepted sockets need our listen data ready undone */ | |
206 | if (sock->sk->sk_data_ready == rds_tcp_listen_data_ready) | |
207 | sock->sk->sk_data_ready = sock->sk->sk_user_data; | |
208 | ||
209 | tc->t_sock = sock; | |
ea3b1ea5 | 210 | tc->t_cpath = cp; |
70041088 AG |
211 | tc->t_orig_data_ready = sock->sk->sk_data_ready; |
212 | tc->t_orig_write_space = sock->sk->sk_write_space; | |
213 | tc->t_orig_state_change = sock->sk->sk_state_change; | |
214 | ||
ea3b1ea5 | 215 | sock->sk->sk_user_data = cp; |
70041088 AG |
216 | sock->sk->sk_data_ready = rds_tcp_data_ready; |
217 | sock->sk->sk_write_space = rds_tcp_write_space; | |
218 | sock->sk->sk_state_change = rds_tcp_state_change; | |
219 | ||
220 | write_unlock_bh(&sock->sk->sk_callback_lock); | |
221 | } | |
222 | ||
1ac507d4 | 223 | static void rds_tcp_tc_info(struct socket *rds_sock, unsigned int len, |
70041088 AG |
224 | struct rds_info_iterator *iter, |
225 | struct rds_info_lengths *lens) | |
226 | { | |
227 | struct rds_info_tcp_socket tsinfo; | |
228 | struct rds_tcp_connection *tc; | |
229 | unsigned long flags; | |
230 | struct sockaddr_in sin; | |
231 | int sinlen; | |
1ac507d4 | 232 | struct socket *sock; |
70041088 AG |
233 | |
234 | spin_lock_irqsave(&rds_tcp_tc_list_lock, flags); | |
235 | ||
236 | if (len / sizeof(tsinfo) < rds_tcp_tc_count) | |
237 | goto out; | |
238 | ||
239 | list_for_each_entry(tc, &rds_tcp_tc_list, t_list_item) { | |
240 | ||
1ac507d4 SV |
241 | sock = tc->t_sock; |
242 | if (sock) { | |
243 | sock->ops->getname(sock, (struct sockaddr *)&sin, | |
244 | &sinlen, 0); | |
245 | tsinfo.local_addr = sin.sin_addr.s_addr; | |
246 | tsinfo.local_port = sin.sin_port; | |
247 | sock->ops->getname(sock, (struct sockaddr *)&sin, | |
248 | &sinlen, 1); | |
249 | tsinfo.peer_addr = sin.sin_addr.s_addr; | |
250 | tsinfo.peer_port = sin.sin_port; | |
251 | } | |
70041088 AG |
252 | |
253 | tsinfo.hdr_rem = tc->t_tinc_hdr_rem; | |
254 | tsinfo.data_rem = tc->t_tinc_data_rem; | |
255 | tsinfo.last_sent_nxt = tc->t_last_sent_nxt; | |
256 | tsinfo.last_expected_una = tc->t_last_expected_una; | |
257 | tsinfo.last_seen_una = tc->t_last_seen_una; | |
258 | ||
259 | rds_info_copy(iter, &tsinfo, sizeof(tsinfo)); | |
260 | } | |
261 | ||
262 | out: | |
263 | lens->nr = rds_tcp_tc_count; | |
264 | lens->each = sizeof(tsinfo); | |
265 | ||
266 | spin_unlock_irqrestore(&rds_tcp_tc_list_lock, flags); | |
267 | } | |
268 | ||
d5a8ac28 | 269 | static int rds_tcp_laddr_check(struct net *net, __be32 addr) |
70041088 | 270 | { |
d5a8ac28 | 271 | if (inet_addr_type(net, addr) == RTN_LOCAL) |
70041088 AG |
272 | return 0; |
273 | return -EADDRNOTAVAIL; | |
274 | } | |
275 | ||
276 | static int rds_tcp_conn_alloc(struct rds_connection *conn, gfp_t gfp) | |
277 | { | |
278 | struct rds_tcp_connection *tc; | |
02105b2c | 279 | int i; |
70041088 | 280 | |
02105b2c SV |
281 | for (i = 0; i < RDS_MPATH_WORKERS; i++) { |
282 | tc = kmem_cache_alloc(rds_tcp_conn_slab, gfp); | |
283 | if (!tc) | |
284 | return -ENOMEM; | |
70041088 | 285 | |
02105b2c SV |
286 | mutex_init(&tc->t_conn_path_lock); |
287 | tc->t_sock = NULL; | |
288 | tc->t_tinc = NULL; | |
289 | tc->t_tinc_hdr_rem = sizeof(struct rds_header); | |
290 | tc->t_tinc_data_rem = 0; | |
70041088 | 291 | |
02105b2c SV |
292 | conn->c_path[i].cp_transport_data = tc; |
293 | tc->t_cpath = &conn->c_path[i]; | |
70041088 | 294 | |
02105b2c SV |
295 | spin_lock_irq(&rds_tcp_conn_lock); |
296 | list_add_tail(&tc->t_tcp_node, &rds_tcp_conn_list); | |
297 | spin_unlock_irq(&rds_tcp_conn_lock); | |
298 | rdsdebug("rds_conn_path [%d] tc %p\n", i, | |
299 | conn->c_path[i].cp_transport_data); | |
300 | } | |
70041088 | 301 | |
70041088 AG |
302 | return 0; |
303 | } | |
304 | ||
305 | static void rds_tcp_conn_free(void *arg) | |
306 | { | |
307 | struct rds_tcp_connection *tc = arg; | |
8200a59f | 308 | unsigned long flags; |
70041088 | 309 | rdsdebug("freeing tc %p\n", tc); |
8200a59f PE |
310 | |
311 | spin_lock_irqsave(&rds_tcp_conn_lock, flags); | |
312 | list_del(&tc->t_tcp_node); | |
313 | spin_unlock_irqrestore(&rds_tcp_conn_lock, flags); | |
314 | ||
70041088 AG |
315 | kmem_cache_free(rds_tcp_conn_slab, tc); |
316 | } | |
317 | ||
afb4164d SV |
318 | static bool list_has_conn(struct list_head *list, struct rds_connection *conn) |
319 | { | |
320 | struct rds_tcp_connection *tc, *_tc; | |
321 | ||
322 | list_for_each_entry_safe(tc, _tc, list, t_tcp_node) { | |
323 | if (tc->t_cpath->cp_conn == conn) | |
324 | return true; | |
325 | } | |
326 | return false; | |
327 | } | |
328 | ||
70041088 AG |
329 | static void rds_tcp_destroy_conns(void) |
330 | { | |
331 | struct rds_tcp_connection *tc, *_tc; | |
332 | LIST_HEAD(tmp_list); | |
333 | ||
334 | /* avoid calling conn_destroy with irqs off */ | |
335 | spin_lock_irq(&rds_tcp_conn_lock); | |
afb4164d SV |
336 | list_for_each_entry_safe(tc, _tc, &rds_tcp_conn_list, t_tcp_node) { |
337 | if (!list_has_conn(&tmp_list, tc->t_cpath->cp_conn)) | |
338 | list_move_tail(&tc->t_tcp_node, &tmp_list); | |
339 | } | |
70041088 AG |
340 | spin_unlock_irq(&rds_tcp_conn_lock); |
341 | ||
26e4e6bb | 342 | list_for_each_entry_safe(tc, _tc, &tmp_list, t_tcp_node) |
02105b2c | 343 | rds_conn_destroy(tc->t_cpath->cp_conn); |
70041088 AG |
344 | } |
345 | ||
467fa153 | 346 | static void rds_tcp_exit(void); |
70041088 AG |
347 | |
348 | struct rds_transport rds_tcp_transport = { | |
349 | .laddr_check = rds_tcp_laddr_check, | |
226f7a7d SV |
350 | .xmit_path_prepare = rds_tcp_xmit_path_prepare, |
351 | .xmit_path_complete = rds_tcp_xmit_path_complete, | |
70041088 | 352 | .xmit = rds_tcp_xmit, |
2da43c4a | 353 | .recv_path = rds_tcp_recv_path, |
70041088 AG |
354 | .conn_alloc = rds_tcp_conn_alloc, |
355 | .conn_free = rds_tcp_conn_free, | |
b04e8554 | 356 | .conn_path_connect = rds_tcp_conn_path_connect, |
226f7a7d | 357 | .conn_path_shutdown = rds_tcp_conn_path_shutdown, |
70041088 | 358 | .inc_copy_to_user = rds_tcp_inc_copy_to_user, |
70041088 AG |
359 | .inc_free = rds_tcp_inc_free, |
360 | .stats_info_copy = rds_tcp_stats_info_copy, | |
361 | .exit = rds_tcp_exit, | |
362 | .t_owner = THIS_MODULE, | |
363 | .t_name = "tcp", | |
335776bd | 364 | .t_type = RDS_TRANS_TCP, |
70041088 | 365 | .t_prefer_loopback = 1, |
5916e2c1 | 366 | .t_mp_capable = 1, |
70041088 AG |
367 | }; |
368 | ||
c7d03a00 | 369 | static unsigned int rds_tcp_netid; |
467fa153 SV |
370 | |
371 | /* per-network namespace private data for this module */ | |
372 | struct rds_tcp_net { | |
373 | struct socket *rds_tcp_listen_sock; | |
374 | struct work_struct rds_tcp_accept_w; | |
c6a58ffe SV |
375 | struct ctl_table_header *rds_tcp_sysctl; |
376 | struct ctl_table *ctl_table; | |
377 | int sndbuf_size; | |
378 | int rcvbuf_size; | |
467fa153 SV |
379 | }; |
380 | ||
c6a58ffe SV |
381 | /* All module specific customizations to the RDS-TCP socket should be done in |
382 | * rds_tcp_tune() and applied after socket creation. | |
383 | */ | |
384 | void rds_tcp_tune(struct socket *sock) | |
385 | { | |
386 | struct sock *sk = sock->sk; | |
387 | struct net *net = sock_net(sk); | |
388 | struct rds_tcp_net *rtn = net_generic(net, rds_tcp_netid); | |
389 | ||
390 | rds_tcp_nonagle(sock); | |
391 | lock_sock(sk); | |
392 | if (rtn->sndbuf_size > 0) { | |
393 | sk->sk_sndbuf = rtn->sndbuf_size; | |
394 | sk->sk_userlocks |= SOCK_SNDBUF_LOCK; | |
395 | } | |
396 | if (rtn->rcvbuf_size > 0) { | |
397 | sk->sk_sndbuf = rtn->rcvbuf_size; | |
398 | sk->sk_userlocks |= SOCK_RCVBUF_LOCK; | |
399 | } | |
400 | release_sock(sk); | |
401 | } | |
402 | ||
467fa153 SV |
403 | static void rds_tcp_accept_worker(struct work_struct *work) |
404 | { | |
405 | struct rds_tcp_net *rtn = container_of(work, | |
406 | struct rds_tcp_net, | |
407 | rds_tcp_accept_w); | |
408 | ||
409 | while (rds_tcp_accept_one(rtn->rds_tcp_listen_sock) == 0) | |
410 | cond_resched(); | |
411 | } | |
412 | ||
413 | void rds_tcp_accept_work(struct sock *sk) | |
414 | { | |
415 | struct net *net = sock_net(sk); | |
416 | struct rds_tcp_net *rtn = net_generic(net, rds_tcp_netid); | |
417 | ||
418 | queue_work(rds_wq, &rtn->rds_tcp_accept_w); | |
419 | } | |
420 | ||
421 | static __net_init int rds_tcp_init_net(struct net *net) | |
422 | { | |
423 | struct rds_tcp_net *rtn = net_generic(net, rds_tcp_netid); | |
c6a58ffe SV |
424 | struct ctl_table *tbl; |
425 | int err = 0; | |
467fa153 | 426 | |
c6a58ffe SV |
427 | memset(rtn, 0, sizeof(*rtn)); |
428 | ||
429 | /* {snd, rcv}buf_size default to 0, which implies we let the | |
430 | * stack pick the value, and permit auto-tuning of buffer size. | |
431 | */ | |
432 | if (net == &init_net) { | |
433 | tbl = rds_tcp_sysctl_table; | |
434 | } else { | |
435 | tbl = kmemdup(rds_tcp_sysctl_table, | |
436 | sizeof(rds_tcp_sysctl_table), GFP_KERNEL); | |
437 | if (!tbl) { | |
438 | pr_warn("could not set allocate syctl table\n"); | |
439 | return -ENOMEM; | |
440 | } | |
441 | rtn->ctl_table = tbl; | |
442 | } | |
443 | tbl[RDS_TCP_SNDBUF].data = &rtn->sndbuf_size; | |
444 | tbl[RDS_TCP_RCVBUF].data = &rtn->rcvbuf_size; | |
445 | rtn->rds_tcp_sysctl = register_net_sysctl(net, "net/rds/tcp", tbl); | |
446 | if (!rtn->rds_tcp_sysctl) { | |
447 | pr_warn("could not register sysctl\n"); | |
448 | err = -ENOMEM; | |
449 | goto fail; | |
450 | } | |
467fa153 SV |
451 | rtn->rds_tcp_listen_sock = rds_tcp_listen_init(net); |
452 | if (!rtn->rds_tcp_listen_sock) { | |
453 | pr_warn("could not set up listen sock\n"); | |
c6a58ffe SV |
454 | unregister_net_sysctl_table(rtn->rds_tcp_sysctl); |
455 | rtn->rds_tcp_sysctl = NULL; | |
456 | err = -EAFNOSUPPORT; | |
457 | goto fail; | |
467fa153 SV |
458 | } |
459 | INIT_WORK(&rtn->rds_tcp_accept_w, rds_tcp_accept_worker); | |
460 | return 0; | |
c6a58ffe SV |
461 | |
462 | fail: | |
463 | if (net != &init_net) | |
464 | kfree(tbl); | |
465 | return err; | |
467fa153 SV |
466 | } |
467 | ||
468 | static void __net_exit rds_tcp_exit_net(struct net *net) | |
469 | { | |
470 | struct rds_tcp_net *rtn = net_generic(net, rds_tcp_netid); | |
471 | ||
c6a58ffe SV |
472 | if (rtn->rds_tcp_sysctl) |
473 | unregister_net_sysctl_table(rtn->rds_tcp_sysctl); | |
474 | ||
475 | if (net != &init_net && rtn->ctl_table) | |
476 | kfree(rtn->ctl_table); | |
477 | ||
467fa153 SV |
478 | /* If rds_tcp_exit_net() is called as a result of netns deletion, |
479 | * the rds_tcp_kill_sock() device notifier would already have cleaned | |
480 | * up the listen socket, thus there is no work to do in this function. | |
481 | * | |
482 | * If rds_tcp_exit_net() is called as a result of module unload, | |
483 | * i.e., due to rds_tcp_exit() -> unregister_pernet_subsys(), then | |
484 | * we do need to clean up the listen socket here. | |
485 | */ | |
486 | if (rtn->rds_tcp_listen_sock) { | |
487 | rds_tcp_listen_stop(rtn->rds_tcp_listen_sock); | |
488 | rtn->rds_tcp_listen_sock = NULL; | |
489 | flush_work(&rtn->rds_tcp_accept_w); | |
490 | } | |
491 | } | |
492 | ||
493 | static struct pernet_operations rds_tcp_net_ops = { | |
494 | .init = rds_tcp_init_net, | |
495 | .exit = rds_tcp_exit_net, | |
496 | .id = &rds_tcp_netid, | |
497 | .size = sizeof(struct rds_tcp_net), | |
498 | }; | |
499 | ||
afb4164d SV |
500 | /* explicitly send a RST on each socket, thereby releasing any socket refcnts |
501 | * that may otherwise hold up netns deletion. | |
502 | */ | |
503 | static void rds_tcp_conn_paths_destroy(struct rds_connection *conn) | |
504 | { | |
505 | struct rds_conn_path *cp; | |
506 | struct rds_tcp_connection *tc; | |
507 | int i; | |
508 | struct sock *sk; | |
509 | ||
510 | for (i = 0; i < RDS_MPATH_WORKERS; i++) { | |
511 | cp = &conn->c_path[i]; | |
512 | tc = cp->cp_transport_data; | |
513 | if (!tc->t_sock) | |
514 | continue; | |
515 | sk = tc->t_sock->sk; | |
516 | sk->sk_prot->disconnect(sk, 0); | |
517 | tcp_done(sk); | |
518 | } | |
519 | } | |
520 | ||
467fa153 SV |
521 | static void rds_tcp_kill_sock(struct net *net) |
522 | { | |
523 | struct rds_tcp_connection *tc, *_tc; | |
467fa153 SV |
524 | LIST_HEAD(tmp_list); |
525 | struct rds_tcp_net *rtn = net_generic(net, rds_tcp_netid); | |
526 | ||
527 | rds_tcp_listen_stop(rtn->rds_tcp_listen_sock); | |
528 | rtn->rds_tcp_listen_sock = NULL; | |
529 | flush_work(&rtn->rds_tcp_accept_w); | |
530 | spin_lock_irq(&rds_tcp_conn_lock); | |
531 | list_for_each_entry_safe(tc, _tc, &rds_tcp_conn_list, t_tcp_node) { | |
02105b2c | 532 | struct net *c_net = read_pnet(&tc->t_cpath->cp_conn->c_net); |
467fa153 SV |
533 | |
534 | if (net != c_net || !tc->t_sock) | |
535 | continue; | |
afb4164d SV |
536 | if (!list_has_conn(&tmp_list, tc->t_cpath->cp_conn)) |
537 | list_move_tail(&tc->t_tcp_node, &tmp_list); | |
467fa153 SV |
538 | } |
539 | spin_unlock_irq(&rds_tcp_conn_lock); | |
540 | list_for_each_entry_safe(tc, _tc, &tmp_list, t_tcp_node) { | |
afb4164d | 541 | rds_tcp_conn_paths_destroy(tc->t_cpath->cp_conn); |
02105b2c | 542 | rds_conn_destroy(tc->t_cpath->cp_conn); |
467fa153 SV |
543 | } |
544 | } | |
545 | ||
a93d01f5 SV |
546 | void *rds_tcp_listen_sock_def_readable(struct net *net) |
547 | { | |
548 | struct rds_tcp_net *rtn = net_generic(net, rds_tcp_netid); | |
549 | ||
550 | return rtn->rds_tcp_listen_sock->sk->sk_user_data; | |
551 | } | |
552 | ||
467fa153 SV |
553 | static int rds_tcp_dev_event(struct notifier_block *this, |
554 | unsigned long event, void *ptr) | |
555 | { | |
556 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); | |
557 | ||
558 | /* rds-tcp registers as a pernet subys, so the ->exit will only | |
559 | * get invoked after network acitivity has quiesced. We need to | |
560 | * clean up all sockets to quiesce network activity, and use | |
561 | * the unregistration of the per-net loopback device as a trigger | |
562 | * to start that cleanup. | |
563 | */ | |
564 | if (event == NETDEV_UNREGISTER_FINAL && | |
565 | dev->ifindex == LOOPBACK_IFINDEX) | |
566 | rds_tcp_kill_sock(dev_net(dev)); | |
567 | ||
568 | return NOTIFY_DONE; | |
569 | } | |
570 | ||
571 | static struct notifier_block rds_tcp_dev_notifier = { | |
572 | .notifier_call = rds_tcp_dev_event, | |
573 | .priority = -10, /* must be called after other network notifiers */ | |
574 | }; | |
575 | ||
c6a58ffe SV |
576 | /* when sysctl is used to modify some kernel socket parameters,this |
577 | * function resets the RDS connections in that netns so that we can | |
578 | * restart with new parameters. The assumption is that such reset | |
579 | * events are few and far-between. | |
580 | */ | |
581 | static void rds_tcp_sysctl_reset(struct net *net) | |
582 | { | |
583 | struct rds_tcp_connection *tc, *_tc; | |
584 | ||
585 | spin_lock_irq(&rds_tcp_conn_lock); | |
586 | list_for_each_entry_safe(tc, _tc, &rds_tcp_conn_list, t_tcp_node) { | |
02105b2c | 587 | struct net *c_net = read_pnet(&tc->t_cpath->cp_conn->c_net); |
c6a58ffe SV |
588 | |
589 | if (net != c_net || !tc->t_sock) | |
590 | continue; | |
591 | ||
02105b2c SV |
592 | /* reconnect with new parameters */ |
593 | rds_conn_path_drop(tc->t_cpath); | |
c6a58ffe SV |
594 | } |
595 | spin_unlock_irq(&rds_tcp_conn_lock); | |
596 | } | |
597 | ||
598 | static int rds_tcp_skbuf_handler(struct ctl_table *ctl, int write, | |
599 | void __user *buffer, size_t *lenp, | |
600 | loff_t *fpos) | |
601 | { | |
602 | struct net *net = current->nsproxy->net_ns; | |
603 | int err; | |
604 | ||
605 | err = proc_dointvec_minmax(ctl, write, buffer, lenp, fpos); | |
606 | if (err < 0) { | |
607 | pr_warn("Invalid input. Must be >= %d\n", | |
608 | *(int *)(ctl->extra1)); | |
609 | return err; | |
610 | } | |
611 | if (write) | |
612 | rds_tcp_sysctl_reset(net); | |
613 | return 0; | |
614 | } | |
615 | ||
467fa153 SV |
616 | static void rds_tcp_exit(void) |
617 | { | |
618 | rds_info_deregister_func(RDS_INFO_TCP_SOCKETS, rds_tcp_tc_info); | |
619 | unregister_pernet_subsys(&rds_tcp_net_ops); | |
620 | if (unregister_netdevice_notifier(&rds_tcp_dev_notifier)) | |
621 | pr_warn("could not unregister rds_tcp_dev_notifier\n"); | |
622 | rds_tcp_destroy_conns(); | |
623 | rds_trans_unregister(&rds_tcp_transport); | |
624 | rds_tcp_recv_exit(); | |
625 | kmem_cache_destroy(rds_tcp_conn_slab); | |
626 | } | |
627 | module_exit(rds_tcp_exit); | |
628 | ||
ff51bf84 | 629 | static int rds_tcp_init(void) |
70041088 AG |
630 | { |
631 | int ret; | |
632 | ||
633 | rds_tcp_conn_slab = kmem_cache_create("rds_tcp_connection", | |
634 | sizeof(struct rds_tcp_connection), | |
635 | 0, 0, NULL); | |
8690bfa1 | 636 | if (!rds_tcp_conn_slab) { |
70041088 AG |
637 | ret = -ENOMEM; |
638 | goto out; | |
639 | } | |
640 | ||
467fa153 SV |
641 | ret = register_netdevice_notifier(&rds_tcp_dev_notifier); |
642 | if (ret) { | |
643 | pr_warn("could not register rds_tcp_dev_notifier\n"); | |
644 | goto out; | |
645 | } | |
646 | ||
647 | ret = register_pernet_subsys(&rds_tcp_net_ops); | |
648 | if (ret) | |
649 | goto out_slab; | |
650 | ||
70041088 AG |
651 | ret = rds_tcp_recv_init(); |
652 | if (ret) | |
3dad5424 | 653 | goto out_pernet; |
70041088 AG |
654 | |
655 | ret = rds_trans_register(&rds_tcp_transport); | |
656 | if (ret) | |
657 | goto out_recv; | |
658 | ||
70041088 AG |
659 | rds_info_register_func(RDS_INFO_TCP_SOCKETS, rds_tcp_tc_info); |
660 | ||
661 | goto out; | |
662 | ||
70041088 AG |
663 | out_recv: |
664 | rds_tcp_recv_exit(); | |
3dad5424 | 665 | out_pernet: |
467fa153 | 666 | unregister_pernet_subsys(&rds_tcp_net_ops); |
3dad5424 | 667 | out_slab: |
721c7443 SV |
668 | if (unregister_netdevice_notifier(&rds_tcp_dev_notifier)) |
669 | pr_warn("could not unregister rds_tcp_dev_notifier\n"); | |
70041088 AG |
670 | kmem_cache_destroy(rds_tcp_conn_slab); |
671 | out: | |
672 | return ret; | |
673 | } | |
674 | module_init(rds_tcp_init); | |
675 | ||
676 | MODULE_AUTHOR("Oracle Corporation <[email protected]>"); | |
677 | MODULE_DESCRIPTION("RDS: TCP transport"); | |
678 | MODULE_LICENSE("Dual BSD/GPL"); | |
679 |