Blame view

net/rds/loop.c 7.11 KB
13796bf9e   Andy Grover   RDS: loopback
1
  /*
eee2fa6ab   Ka-Cheong Poon   rds: Changing IP ...
2
   * Copyright (c) 2006, 2017 Oracle and/or its affiliates. All rights reserved.
13796bf9e   Andy Grover   RDS: loopback
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
   *
   * This software is available to you under a choice of one of two
   * licenses.  You may choose to be licensed under the terms of the GNU
   * General Public License (GPL) Version 2, available from the file
   * COPYING in the main directory of this source tree, or the
   * OpenIB.org BSD license below:
   *
   *     Redistribution and use in source and binary forms, with or
   *     without modification, are permitted provided that the following
   *     conditions are met:
   *
   *      - Redistributions of source code must retain the above
   *        copyright notice, this list of conditions and the following
   *        disclaimer.
   *
   *      - Redistributions in binary form must reproduce the above
   *        copyright notice, this list of conditions and the following
   *        disclaimer in the documentation and/or other materials
   *        provided with the distribution.
   *
   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
   * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
   * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
   * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
   * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
   * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
   * SOFTWARE.
   *
   */
  #include <linux/kernel.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
34
  #include <linux/slab.h>
13796bf9e   Andy Grover   RDS: loopback
35
  #include <linux/in.h>
c809195f5   Sowmini Varadhan   rds: clean up loo...
36
37
  #include <net/net_namespace.h>
  #include <net/netns/generic.h>
eee2fa6ab   Ka-Cheong Poon   rds: Changing IP ...
38
  #include <linux/ipv6.h>
13796bf9e   Andy Grover   RDS: loopback
39

0cb43965d   Sowmini Varadhan   RDS: split out co...
40
  #include "rds_single_path.h"
13796bf9e   Andy Grover   RDS: loopback
41
42
43
44
45
  #include "rds.h"
  #include "loop.h"
  
  static DEFINE_SPINLOCK(loop_conns_lock);
  static LIST_HEAD(loop_conns);
c809195f5   Sowmini Varadhan   rds: clean up loo...
46
47
48
49
50
51
52
53
54
55
56
  static atomic_t rds_loop_unloading = ATOMIC_INIT(0);
  
  static void rds_loop_set_unloading(void)
  {
  	atomic_set(&rds_loop_unloading, 1);
  }
  
  static bool rds_loop_is_unloading(struct rds_connection *conn)
  {
  	return atomic_read(&rds_loop_unloading) != 0;
  }
13796bf9e   Andy Grover   RDS: loopback
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  
  /*
   * This 'loopback' transport is a special case for flows that originate
   * and terminate on the same machine.
   *
   * Connection build-up notices if the destination address is thought of
   * as a local address by a transport.  At that time it decides to use the
   * loopback transport instead of the bound transport of the sending socket.
   *
   * The loopback transport's sending path just hands the sent rds_message
   * straight to the receiving path via an embedded rds_incoming.
   */
  
  /*
   * Usually a message transits both the sender and receiver's conns as it
   * flows to the receiver.  In the loopback case, though, the receive path
   * is handed the sending conn so the sense of the addresses is reversed.
   */
  static int rds_loop_xmit(struct rds_connection *conn, struct rds_message *rm,
  			 unsigned int hdr_off, unsigned int sg,
  			 unsigned int off)
  {
6094628bf   Neil Horman   rds: prevent BUG_...
79
80
81
  	struct scatterlist *sgp = &rm->data.op_sg[sg];
  	int ret = sizeof(struct rds_header) +
  			be32_to_cpu(rm->m_inc.i_hdr.h_len);
77dd550e5   Andy Grover   RDS: Stop support...
82
83
84
  	/* Do not send cong updates to loopback */
  	if (rm->m_inc.i_hdr.h_flags & RDS_FLAG_CONG_BITMAP) {
  		rds_cong_map_updated(conn->c_fcong, ~(u64) 0);
6094628bf   Neil Horman   rds: prevent BUG_...
85
86
  		ret = min_t(int, ret, sgp->length - conn->c_xmit_data_off);
  		goto out;
77dd550e5   Andy Grover   RDS: Stop support...
87
  	}
13796bf9e   Andy Grover   RDS: loopback
88
  	BUG_ON(hdr_off || sg || off);
eee2fa6ab   Ka-Cheong Poon   rds: Changing IP ...
89
  	rds_inc_init(&rm->m_inc, conn, &conn->c_laddr);
d37c93590   Andy Grover   RDS: Move loop-on...
90
91
  	/* For the embedded inc. Matching put is in loop_inc_free() */
  	rds_message_addref(rm);
13796bf9e   Andy Grover   RDS: loopback
92

eee2fa6ab   Ka-Cheong Poon   rds: Changing IP ...
93
  	rds_recv_incoming(conn, &conn->c_laddr, &conn->c_faddr, &rm->m_inc,
6114eab53   Cong Wang   rds: remove the s...
94
  			  GFP_KERNEL);
13796bf9e   Andy Grover   RDS: loopback
95
96
97
98
99
  
  	rds_send_drop_acked(conn, be64_to_cpu(rm->m_inc.i_hdr.h_sequence),
  			    NULL);
  
  	rds_inc_put(&rm->m_inc);
6094628bf   Neil Horman   rds: prevent BUG_...
100
101
  out:
  	return ret;
13796bf9e   Andy Grover   RDS: loopback
102
  }
d37c93590   Andy Grover   RDS: Move loop-on...
103
104
105
106
107
108
  /*
   * See rds_loop_xmit(). Since our inc is embedded in the rm, we
   * make sure the rm lives at least until the inc is done.
   */
  static void rds_loop_inc_free(struct rds_incoming *inc)
  {
5c3da57d7   Joshua Houghton   net: rds: fix cod...
109
110
111
  	struct rds_message *rm = container_of(inc, struct rds_message, m_inc);
  
  	rds_message_put(rm);
d37c93590   Andy Grover   RDS: Move loop-on...
112
  }
13796bf9e   Andy Grover   RDS: loopback
113
  /* we need to at least give the thread something to succeed */
2da43c4a1   Sowmini Varadhan   RDS: TCP: make re...
114
  static int rds_loop_recv_path(struct rds_conn_path *cp)
13796bf9e   Andy Grover   RDS: loopback
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
  {
  	return 0;
  }
  
  struct rds_loop_connection {
  	struct list_head loop_node;
  	struct rds_connection *conn;
  };
  
  /*
   * Even the loopback transport needs to keep track of its connections,
   * so it can call rds_conn_destroy() on them on exit. N.B. there are
   * 1+ loopback addresses (127.*.*.*) so it's not a bug to have
   * multiple loopback conns allocated, although rather useless.
   */
  static int rds_loop_conn_alloc(struct rds_connection *conn, gfp_t gfp)
  {
  	struct rds_loop_connection *lc;
  	unsigned long flags;
f0229eaaf   Dan Carpenter   RDS: use gfp flag...
134
  	lc = kzalloc(sizeof(struct rds_loop_connection), gfp);
8690bfa17   Andy Grover   RDS: cleanup: rem...
135
  	if (!lc)
13796bf9e   Andy Grover   RDS: loopback
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
  		return -ENOMEM;
  
  	INIT_LIST_HEAD(&lc->loop_node);
  	lc->conn = conn;
  	conn->c_transport_data = lc;
  
  	spin_lock_irqsave(&loop_conns_lock, flags);
  	list_add_tail(&lc->loop_node, &loop_conns);
  	spin_unlock_irqrestore(&loop_conns_lock, flags);
  
  	return 0;
  }
  
  static void rds_loop_conn_free(void *arg)
  {
  	struct rds_loop_connection *lc = arg;
58c490bab   Pavel Emelyanov   rds: Lost locking...
152
  	unsigned long flags;
13796bf9e   Andy Grover   RDS: loopback
153
154
  	rdsdebug("lc %p
  ", lc);
58c490bab   Pavel Emelyanov   rds: Lost locking...
155
  	spin_lock_irqsave(&loop_conns_lock, flags);
13796bf9e   Andy Grover   RDS: loopback
156
  	list_del(&lc->loop_node);
58c490bab   Pavel Emelyanov   rds: Lost locking...
157
  	spin_unlock_irqrestore(&loop_conns_lock, flags);
13796bf9e   Andy Grover   RDS: loopback
158
159
  	kfree(lc);
  }
b04e8554f   Sowmini Varadhan   RDS: TCP: Hooks t...
160
  static int rds_loop_conn_path_connect(struct rds_conn_path *cp)
13796bf9e   Andy Grover   RDS: loopback
161
  {
b04e8554f   Sowmini Varadhan   RDS: TCP: Hooks t...
162
  	rds_connect_complete(cp->cp_conn);
13796bf9e   Andy Grover   RDS: loopback
163
164
  	return 0;
  }
226f7a7d9   Sowmini Varadhan   RDS: Rework path ...
165
  static void rds_loop_conn_path_shutdown(struct rds_conn_path *cp)
13796bf9e   Andy Grover   RDS: loopback
166
167
168
169
170
171
172
  {
  }
  
  void rds_loop_exit(void)
  {
  	struct rds_loop_connection *lc, *_lc;
  	LIST_HEAD(tmp_list);
c809195f5   Sowmini Varadhan   rds: clean up loo...
173
174
  	rds_loop_set_unloading();
  	synchronize_rcu();
13796bf9e   Andy Grover   RDS: loopback
175
176
177
178
179
180
181
182
183
184
185
  	/* avoid calling conn_destroy with irqs off */
  	spin_lock_irq(&loop_conns_lock);
  	list_splice(&loop_conns, &tmp_list);
  	INIT_LIST_HEAD(&loop_conns);
  	spin_unlock_irq(&loop_conns_lock);
  
  	list_for_each_entry_safe(lc, _lc, &tmp_list, loop_node) {
  		WARN_ON(lc->conn->c_passive);
  		rds_conn_destroy(lc->conn);
  	}
  }
c809195f5   Sowmini Varadhan   rds: clean up loo...
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
  static void rds_loop_kill_conns(struct net *net)
  {
  	struct rds_loop_connection *lc, *_lc;
  	LIST_HEAD(tmp_list);
  
  	spin_lock_irq(&loop_conns_lock);
  	list_for_each_entry_safe(lc, _lc, &loop_conns, loop_node)  {
  		struct net *c_net = read_pnet(&lc->conn->c_net);
  
  		if (net != c_net)
  			continue;
  		list_move_tail(&lc->loop_node, &tmp_list);
  	}
  	spin_unlock_irq(&loop_conns_lock);
  
  	list_for_each_entry_safe(lc, _lc, &tmp_list, loop_node) {
  		WARN_ON(lc->conn->c_passive);
  		rds_conn_destroy(lc->conn);
  	}
  }
  
  static void __net_exit rds_loop_exit_net(struct net *net)
  {
  	rds_loop_kill_conns(net);
  }
  
  static struct pernet_operations rds_loop_net_ops = {
  	.exit = rds_loop_exit_net,
  };
  
  int rds_loop_net_init(void)
  {
  	return register_pernet_device(&rds_loop_net_ops);
  }
  
  void rds_loop_net_exit(void)
  {
  	unregister_pernet_device(&rds_loop_net_ops);
  }
13796bf9e   Andy Grover   RDS: loopback
225
226
227
228
229
230
231
232
  /*
   * This is missing .xmit_* because loop doesn't go through generic
   * rds_send_xmit() and doesn't call rds_recv_incoming().  .listen_stop and
   * .laddr_check are missing because transport.c doesn't iterate over
   * rds_loop_transport.
   */
  struct rds_transport rds_loop_transport = {
  	.xmit			= rds_loop_xmit,
2da43c4a1   Sowmini Varadhan   RDS: TCP: make re...
233
  	.recv_path		= rds_loop_recv_path,
13796bf9e   Andy Grover   RDS: loopback
234
235
  	.conn_alloc		= rds_loop_conn_alloc,
  	.conn_free		= rds_loop_conn_free,
b04e8554f   Sowmini Varadhan   RDS: TCP: Hooks t...
236
  	.conn_path_connect	= rds_loop_conn_path_connect,
226f7a7d9   Sowmini Varadhan   RDS: Rework path ...
237
  	.conn_path_shutdown	= rds_loop_conn_path_shutdown,
13796bf9e   Andy Grover   RDS: loopback
238
  	.inc_copy_to_user	= rds_message_inc_copy_to_user,
d37c93590   Andy Grover   RDS: Move loop-on...
239
  	.inc_free		= rds_loop_inc_free,
13796bf9e   Andy Grover   RDS: loopback
240
  	.t_name			= "loopback",
f1693c63a   Santosh Shilimkar   rds: avoid unenec...
241
  	.t_type			= RDS_TRANS_LOOP,
c809195f5   Sowmini Varadhan   rds: clean up loo...
242
  	.t_unloading		= rds_loop_is_unloading,
13796bf9e   Andy Grover   RDS: loopback
243
  };