]>
Commit | Line | Data |
---|---|---|
c5fa7b3c YX |
1 | /* |
2 | * net/tipc/server.c: TIPC server infrastructure | |
3 | * | |
4 | * Copyright (c) 2012-2013, Wind River Systems | |
026321c6 | 5 | * Copyright (c) 2017-2018, Ericsson AB |
c5fa7b3c YX |
6 | * All rights reserved. |
7 | * | |
8 | * Redistribution and use in source and binary forms, with or without | |
9 | * modification, are permitted provided that the following conditions are met: | |
10 | * | |
11 | * 1. Redistributions of source code must retain the above copyright | |
12 | * notice, this list of conditions and the following disclaimer. | |
13 | * 2. Redistributions in binary form must reproduce the above copyright | |
14 | * notice, this list of conditions and the following disclaimer in the | |
15 | * documentation and/or other materials provided with the distribution. | |
16 | * 3. Neither the names of the copyright holders nor the names of its | |
17 | * contributors may be used to endorse or promote products derived from | |
18 | * this software without specific prior written permission. | |
19 | * | |
20 | * Alternatively, this software may be distributed under the terms of the | |
21 | * GNU General Public License ("GPL") version 2 as published by the Free | |
22 | * Software Foundation. | |
23 | * | |
24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
27 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE | |
28 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
29 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
30 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
31 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
32 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
33 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
34 | * POSSIBILITY OF SUCH DAMAGE. | |
35 | */ | |
36 | ||
c901d26d | 37 | #include "subscr.h" |
026321c6 | 38 | #include "topsrv.h" |
c5fa7b3c | 39 | #include "core.h" |
859fc7c0 | 40 | #include "socket.h" |
14c04493 JM |
41 | #include "addr.h" |
42 | #include "msg.h" | |
6c9081a3 | 43 | #include "bearer.h" |
c5fa7b3c | 44 | #include <net/sock.h> |
76100a8a | 45 | #include <linux/module.h> |
c5fa7b3c YX |
46 | |
47 | /* Number of messages to send before rescheduling */ | |
48 | #define MAX_SEND_MSG_COUNT 25 | |
49 | #define MAX_RECV_MSG_COUNT 25 | |
50 | #define CF_CONNECTED 1 | |
76100a8a | 51 | #define CF_SERVER 2 |
c5fa7b3c | 52 | |
5c45ab24 JM |
53 | #define TIPC_SERVER_NAME_LEN 32 |
54 | ||
55 | /** | |
026321c6 | 56 | * struct tipc_topsrv - TIPC server structure |
5c45ab24 JM |
57 | * @conn_idr: identifier set of connection |
58 | * @idr_lock: protect the connection identifier set | |
59 | * @idr_in_use: amount of allocated identifier entry | |
60 | * @net: network namspace instance | |
05a6843c | 61 | * @awork: accept work item |
5c45ab24 JM |
62 | * @rcv_wq: receive workqueue |
63 | * @send_wq: send workqueue | |
05a6843c | 64 | * @listener: topsrv listener socket |
5c45ab24 | 65 | * @name: server name |
5c45ab24 | 66 | */ |
026321c6 | 67 | struct tipc_topsrv { |
5c45ab24 JM |
68 | struct idr conn_idr; |
69 | spinlock_t idr_lock; /* for idr list */ | |
70 | int idr_in_use; | |
71 | struct net *net; | |
0ef897be | 72 | struct work_struct awork; |
5c45ab24 JM |
73 | struct workqueue_struct *rcv_wq; |
74 | struct workqueue_struct *send_wq; | |
0ef897be | 75 | struct socket *listener; |
5c45ab24 JM |
76 | char name[TIPC_SERVER_NAME_LEN]; |
77 | }; | |
c5fa7b3c YX |
78 | |
79 | /** | |
80 | * struct tipc_conn - TIPC connection structure | |
81 | * @kref: reference counter to connection object | |
82 | * @conid: connection identifier | |
83 | * @sock: socket handler associated with connection | |
84 | * @flags: indicates connection state | |
85 | * @server: pointer to connected server | |
df79d040 JM |
86 | * @sub_list: lsit to all pertaing subscriptions |
87 | * @sub_lock: lock protecting the subscription list | |
c5fa7b3c | 88 | * @rwork: receive work item |
c5fa7b3c | 89 | * @outqueue: pointer to first outbound message in queue |
963a1855 | 90 | * @outqueue_lock: control access to the outqueue |
c5fa7b3c YX |
91 | * @swork: send work item |
92 | */ | |
93 | struct tipc_conn { | |
94 | struct kref kref; | |
95 | int conid; | |
96 | struct socket *sock; | |
97 | unsigned long flags; | |
026321c6 | 98 | struct tipc_topsrv *server; |
df79d040 JM |
99 | struct list_head sub_list; |
100 | spinlock_t sub_lock; /* for subscription list */ | |
c5fa7b3c | 101 | struct work_struct rwork; |
c5fa7b3c | 102 | struct list_head outqueue; |
026321c6 | 103 | spinlock_t outqueue_lock; /* for outqueue */ |
c5fa7b3c YX |
104 | struct work_struct swork; |
105 | }; | |
106 | ||
107 | /* An entry waiting to be sent */ | |
108 | struct outqueue_entry { | |
414574a0 JM |
109 | bool inactive; |
110 | struct tipc_event evt; | |
c5fa7b3c | 111 | struct list_head list; |
c5fa7b3c YX |
112 | }; |
113 | ||
026321c6 JM |
114 | static void tipc_conn_recv_work(struct work_struct *work); |
115 | static void tipc_conn_send_work(struct work_struct *work); | |
116 | static void tipc_topsrv_kern_evt(struct net *net, struct tipc_event *evt); | |
117 | static void tipc_conn_delete_sub(struct tipc_conn *con, struct tipc_subscr *s); | |
5c45ab24 | 118 | |
df79d040 JM |
119 | static bool connected(struct tipc_conn *con) |
120 | { | |
121 | return con && test_bit(CF_CONNECTED, &con->flags); | |
122 | } | |
123 | ||
c5fa7b3c YX |
124 | static void tipc_conn_kref_release(struct kref *kref) |
125 | { | |
126 | struct tipc_conn *con = container_of(kref, struct tipc_conn, kref); | |
026321c6 | 127 | struct tipc_topsrv *s = con->server; |
0ef897be | 128 | struct outqueue_entry *e, *safe; |
76100a8a | 129 | |
14c04493 JM |
130 | spin_lock_bh(&s->idr_lock); |
131 | idr_remove(&s->conn_idr, con->conid); | |
132 | s->idr_in_use--; | |
133 | spin_unlock_bh(&s->idr_lock); | |
0ef897be JM |
134 | if (con->sock) |
135 | sock_release(con->sock); | |
136 | ||
137 | spin_lock_bh(&con->outqueue_lock); | |
138 | list_for_each_entry_safe(e, safe, &con->outqueue, list) { | |
139 | list_del(&e->list); | |
140 | kfree(e); | |
141 | } | |
142 | spin_unlock_bh(&con->outqueue_lock); | |
c5fa7b3c YX |
143 | kfree(con); |
144 | } | |
145 | ||
146 | static void conn_put(struct tipc_conn *con) | |
147 | { | |
148 | kref_put(&con->kref, tipc_conn_kref_release); | |
149 | } | |
150 | ||
151 | static void conn_get(struct tipc_conn *con) | |
152 | { | |
153 | kref_get(&con->kref); | |
154 | } | |
155 | ||
026321c6 | 156 | static void tipc_conn_close(struct tipc_conn *con) |
333f7962 | 157 | { |
e88f2be8 JM |
158 | struct sock *sk = con->sock->sk; |
159 | bool disconnect = false; | |
333f7962 | 160 | |
e88f2be8 JM |
161 | write_lock_bh(&sk->sk_callback_lock); |
162 | disconnect = test_and_clear_bit(CF_CONNECTED, &con->flags); | |
df79d040 | 163 | |
e88f2be8 JM |
164 | if (disconnect) { |
165 | sk->sk_user_data = NULL; | |
026321c6 | 166 | tipc_conn_delete_sub(con, NULL); |
c5fa7b3c | 167 | } |
e88f2be8 JM |
168 | write_unlock_bh(&sk->sk_callback_lock); |
169 | ||
170 | /* Handle concurrent calls from sending and receiving threads */ | |
171 | if (!disconnect) | |
172 | return; | |
173 | ||
174 | /* Don't flush pending works, -just let them expire */ | |
175 | kernel_sock_shutdown(con->sock, SHUT_RDWR); | |
0ef897be | 176 | |
e88f2be8 | 177 | conn_put(con); |
c5fa7b3c YX |
178 | } |
179 | ||
026321c6 | 180 | static struct tipc_conn *tipc_conn_alloc(struct tipc_topsrv *s) |
c5fa7b3c YX |
181 | { |
182 | struct tipc_conn *con; | |
183 | int ret; | |
184 | ||
026321c6 | 185 | con = kzalloc(sizeof(*con), GFP_ATOMIC); |
c5fa7b3c YX |
186 | if (!con) |
187 | return ERR_PTR(-ENOMEM); | |
188 | ||
189 | kref_init(&con->kref); | |
190 | INIT_LIST_HEAD(&con->outqueue); | |
df79d040 | 191 | INIT_LIST_HEAD(&con->sub_list); |
c5fa7b3c | 192 | spin_lock_init(&con->outqueue_lock); |
df79d040 | 193 | spin_lock_init(&con->sub_lock); |
026321c6 JM |
194 | INIT_WORK(&con->swork, tipc_conn_send_work); |
195 | INIT_WORK(&con->rwork, tipc_conn_recv_work); | |
c5fa7b3c YX |
196 | |
197 | spin_lock_bh(&s->idr_lock); | |
198 | ret = idr_alloc(&s->conn_idr, con, 0, 0, GFP_ATOMIC); | |
199 | if (ret < 0) { | |
200 | kfree(con); | |
201 | spin_unlock_bh(&s->idr_lock); | |
202 | return ERR_PTR(-ENOMEM); | |
203 | } | |
204 | con->conid = ret; | |
205 | s->idr_in_use++; | |
206 | spin_unlock_bh(&s->idr_lock); | |
207 | ||
208 | set_bit(CF_CONNECTED, &con->flags); | |
209 | con->server = s; | |
210 | ||
211 | return con; | |
212 | } | |
213 | ||
026321c6 | 214 | static struct tipc_conn *tipc_conn_lookup(struct tipc_topsrv *s, int conid) |
df79d040 | 215 | { |
026321c6 JM |
216 | struct tipc_conn *con; |
217 | ||
218 | spin_lock_bh(&s->idr_lock); | |
219 | con = idr_find(&s->conn_idr, conid); | |
220 | if (!connected(con) || !kref_get_unless_zero(&con->kref)) | |
221 | con = NULL; | |
222 | spin_unlock_bh(&s->idr_lock); | |
223 | return con; | |
224 | } | |
225 | ||
226 | /* tipc_conn_delete_sub - delete a specific or all subscriptions | |
227 | * for a given subscriber | |
228 | */ | |
229 | static void tipc_conn_delete_sub(struct tipc_conn *con, struct tipc_subscr *s) | |
230 | { | |
231 | struct tipc_net *tn = tipc_net(con->server->net); | |
232 | struct list_head *sub_list = &con->sub_list; | |
233 | struct tipc_subscription *sub, *tmp; | |
df79d040 | 234 | |
df79d040 | 235 | spin_lock_bh(&con->sub_lock); |
026321c6 JM |
236 | list_for_each_entry_safe(sub, tmp, sub_list, sub_list) { |
237 | if (!s || !memcmp(s, &sub->evt.s, sizeof(*s))) { | |
238 | tipc_sub_unsubscribe(sub); | |
239 | atomic_dec(&tn->subscription_count); | |
88690b10 TL |
240 | if (s) |
241 | break; | |
026321c6 JM |
242 | } |
243 | } | |
df79d040 | 244 | spin_unlock_bh(&con->sub_lock); |
df79d040 JM |
245 | } |
246 | ||
026321c6 | 247 | static void tipc_conn_send_to_sock(struct tipc_conn *con) |
c5fa7b3c | 248 | { |
026321c6 JM |
249 | struct list_head *queue = &con->outqueue; |
250 | struct tipc_topsrv *srv = con->server; | |
251 | struct outqueue_entry *e; | |
252 | struct tipc_event *evt; | |
253 | struct msghdr msg; | |
c5fa7b3c | 254 | struct kvec iov; |
026321c6 | 255 | int count = 0; |
c5fa7b3c YX |
256 | int ret; |
257 | ||
026321c6 JM |
258 | spin_lock_bh(&con->outqueue_lock); |
259 | ||
260 | while (!list_empty(queue)) { | |
261 | e = list_first_entry(queue, struct outqueue_entry, list); | |
262 | evt = &e->evt; | |
263 | spin_unlock_bh(&con->outqueue_lock); | |
264 | ||
265 | if (e->inactive) | |
266 | tipc_conn_delete_sub(con, &evt->s); | |
267 | ||
268 | memset(&msg, 0, sizeof(msg)); | |
269 | msg.msg_flags = MSG_DONTWAIT; | |
270 | iov.iov_base = evt; | |
271 | iov.iov_len = sizeof(*evt); | |
272 | msg.msg_name = NULL; | |
273 | ||
274 | if (con->sock) { | |
275 | ret = kernel_sendmsg(con->sock, &msg, &iov, | |
276 | 1, sizeof(*evt)); | |
277 | if (ret == -EWOULDBLOCK || ret == 0) { | |
278 | cond_resched(); | |
279 | return; | |
280 | } else if (ret < 0) { | |
281 | return tipc_conn_close(con); | |
282 | } | |
283 | } else { | |
284 | tipc_topsrv_kern_evt(srv->net, evt); | |
285 | } | |
286 | ||
287 | /* Don't starve users filling buffers */ | |
288 | if (++count >= MAX_SEND_MSG_COUNT) { | |
289 | cond_resched(); | |
290 | count = 0; | |
291 | } | |
292 | spin_lock_bh(&con->outqueue_lock); | |
293 | list_del(&e->list); | |
294 | kfree(e); | |
c5fa7b3c | 295 | } |
026321c6 JM |
296 | spin_unlock_bh(&con->outqueue_lock); |
297 | } | |
c5fa7b3c | 298 | |
026321c6 JM |
299 | static void tipc_conn_send_work(struct work_struct *work) |
300 | { | |
301 | struct tipc_conn *con = container_of(work, struct tipc_conn, swork); | |
302 | ||
303 | if (connected(con)) | |
304 | tipc_conn_send_to_sock(con); | |
305 | ||
306 | conn_put(con); | |
c5fa7b3c YX |
307 | } |
308 | ||
a484ef34 ZG |
309 | /* tipc_topsrv_queue_evt() - interrupt level call from a subscription instance |
310 | * The queued work is launched into tipc_conn_send_work()->tipc_conn_send_to_sock() | |
414574a0 | 311 | */ |
026321c6 JM |
312 | void tipc_topsrv_queue_evt(struct net *net, int conid, |
313 | u32 event, struct tipc_event *evt) | |
c5fa7b3c | 314 | { |
026321c6 | 315 | struct tipc_topsrv *srv = tipc_topsrv(net); |
c5fa7b3c YX |
316 | struct outqueue_entry *e; |
317 | struct tipc_conn *con; | |
318 | ||
5c45ab24 | 319 | con = tipc_conn_lookup(srv, conid); |
c5fa7b3c | 320 | if (!con) |
414574a0 | 321 | return; |
c5fa7b3c | 322 | |
414574a0 JM |
323 | if (!connected(con)) |
324 | goto err; | |
4c887aa6 | 325 | |
414574a0 JM |
326 | e = kmalloc(sizeof(*e), GFP_ATOMIC); |
327 | if (!e) | |
328 | goto err; | |
329 | e->inactive = (event == TIPC_SUBSCR_TIMEOUT); | |
330 | memcpy(&e->evt, evt, sizeof(*evt)); | |
c5fa7b3c YX |
331 | spin_lock_bh(&con->outqueue_lock); |
332 | list_add_tail(&e->list, &con->outqueue); | |
333 | spin_unlock_bh(&con->outqueue_lock); | |
334 | ||
5c45ab24 | 335 | if (queue_work(srv->send_wq, &con->swork)) |
414574a0 JM |
336 | return; |
337 | err: | |
338 | conn_put(con); | |
c5fa7b3c YX |
339 | } |
340 | ||
026321c6 JM |
341 | /* tipc_conn_write_space - interrupt callback after a sendmsg EAGAIN |
342 | * Indicates that there now is more space in the send buffer | |
343 | * The queued work is launched into tipc_send_work()->tipc_conn_send_to_sock() | |
344 | */ | |
345 | static void tipc_conn_write_space(struct sock *sk) | |
14c04493 JM |
346 | { |
347 | struct tipc_conn *con; | |
348 | ||
026321c6 JM |
349 | read_lock_bh(&sk->sk_callback_lock); |
350 | con = sk->sk_user_data; | |
351 | if (connected(con)) { | |
352 | conn_get(con); | |
353 | if (!queue_work(con->server->send_wq, &con->swork)) | |
354 | conn_put(con); | |
355 | } | |
356 | read_unlock_bh(&sk->sk_callback_lock); | |
14c04493 JM |
357 | } |
358 | ||
026321c6 JM |
359 | static int tipc_conn_rcv_sub(struct tipc_topsrv *srv, |
360 | struct tipc_conn *con, | |
361 | struct tipc_subscr *s) | |
14c04493 | 362 | { |
026321c6 JM |
363 | struct tipc_net *tn = tipc_net(srv->net); |
364 | struct tipc_subscription *sub; | |
88690b10 | 365 | u32 s_filter = tipc_sub_read(s, filter); |
14c04493 | 366 | |
88690b10 TL |
367 | if (s_filter & TIPC_SUB_CANCEL) { |
368 | tipc_sub_write(s, filter, s_filter & ~TIPC_SUB_CANCEL); | |
026321c6 JM |
369 | tipc_conn_delete_sub(con, s); |
370 | return 0; | |
371 | } | |
372 | if (atomic_read(&tn->subscription_count) >= TIPC_MAX_SUBSCR) { | |
373 | pr_warn("Subscription rejected, max (%u)\n", TIPC_MAX_SUBSCR); | |
374 | return -1; | |
375 | } | |
376 | sub = tipc_sub_subscribe(srv->net, s, con->conid); | |
377 | if (!sub) | |
378 | return -1; | |
379 | atomic_inc(&tn->subscription_count); | |
380 | spin_lock_bh(&con->sub_lock); | |
381 | list_add(&sub->sub_list, &con->sub_list); | |
382 | spin_unlock_bh(&con->sub_lock); | |
383 | return 0; | |
14c04493 JM |
384 | } |
385 | ||
026321c6 | 386 | static int tipc_conn_rcv_from_sock(struct tipc_conn *con) |
c5fa7b3c | 387 | { |
026321c6 JM |
388 | struct tipc_topsrv *srv = con->server; |
389 | struct sock *sk = con->sock->sk; | |
390 | struct msghdr msg = {}; | |
391 | struct tipc_subscr s; | |
414574a0 | 392 | struct kvec iov; |
c5fa7b3c YX |
393 | int ret; |
394 | ||
026321c6 JM |
395 | iov.iov_base = &s; |
396 | iov.iov_len = sizeof(s); | |
397 | msg.msg_name = NULL; | |
aa563d7b | 398 | iov_iter_kvec(&msg.msg_iter, READ, &iov, 1, iov.iov_len); |
026321c6 JM |
399 | ret = sock_recvmsg(con->sock, &msg, MSG_DONTWAIT); |
400 | if (ret == -EWOULDBLOCK) | |
401 | return -EWOULDBLOCK; | |
a88289f4 | 402 | if (ret == sizeof(s)) { |
026321c6 | 403 | read_lock_bh(&sk->sk_callback_lock); |
0771d7df TL |
404 | /* RACE: the connection can be closed in the meantime */ |
405 | if (likely(connected(con))) | |
406 | ret = tipc_conn_rcv_sub(srv, con, &s); | |
026321c6 | 407 | read_unlock_bh(&sk->sk_callback_lock); |
980d6927 TL |
408 | if (!ret) |
409 | return 0; | |
c5fa7b3c | 410 | } |
026321c6 | 411 | |
980d6927 | 412 | tipc_conn_close(con); |
026321c6 | 413 | return ret; |
c5fa7b3c YX |
414 | } |
415 | ||
026321c6 | 416 | static void tipc_conn_recv_work(struct work_struct *work) |
c5fa7b3c YX |
417 | { |
418 | struct tipc_conn *con = container_of(work, struct tipc_conn, rwork); | |
419 | int count = 0; | |
420 | ||
df79d040 | 421 | while (connected(con)) { |
026321c6 | 422 | if (tipc_conn_rcv_from_sock(con)) |
c5fa7b3c YX |
423 | break; |
424 | ||
425 | /* Don't flood Rx machine */ | |
426 | if (++count >= MAX_RECV_MSG_COUNT) { | |
427 | cond_resched(); | |
428 | count = 0; | |
429 | } | |
430 | } | |
431 | conn_put(con); | |
432 | } | |
433 | ||
026321c6 JM |
434 | /* tipc_conn_data_ready - interrupt callback indicating the socket has data |
435 | * The queued work is launched into tipc_recv_work()->tipc_conn_rcv_from_sock() | |
436 | */ | |
437 | static void tipc_conn_data_ready(struct sock *sk) | |
c5fa7b3c | 438 | { |
026321c6 | 439 | struct tipc_conn *con; |
c5fa7b3c | 440 | |
026321c6 JM |
441 | read_lock_bh(&sk->sk_callback_lock); |
442 | con = sk->sk_user_data; | |
443 | if (connected(con)) { | |
444 | conn_get(con); | |
445 | if (!queue_work(con->server->rcv_wq, &con->rwork)) | |
446 | conn_put(con); | |
447 | } | |
448 | read_unlock_bh(&sk->sk_callback_lock); | |
c5fa7b3c YX |
449 | } |
450 | ||
026321c6 | 451 | static void tipc_topsrv_accept(struct work_struct *work) |
c5fa7b3c | 452 | { |
026321c6 | 453 | struct tipc_topsrv *srv = container_of(work, struct tipc_topsrv, awork); |
0ef897be JM |
454 | struct socket *lsock = srv->listener; |
455 | struct socket *newsock; | |
456 | struct tipc_conn *con; | |
457 | struct sock *newsk; | |
458 | int ret; | |
459 | ||
460 | while (1) { | |
461 | ret = kernel_accept(lsock, &newsock, O_NONBLOCK); | |
462 | if (ret < 0) | |
463 | return; | |
026321c6 | 464 | con = tipc_conn_alloc(srv); |
0ef897be JM |
465 | if (IS_ERR(con)) { |
466 | ret = PTR_ERR(con); | |
467 | sock_release(newsock); | |
468 | return; | |
469 | } | |
470 | /* Register callbacks */ | |
471 | newsk = newsock->sk; | |
472 | write_lock_bh(&newsk->sk_callback_lock); | |
026321c6 JM |
473 | newsk->sk_data_ready = tipc_conn_data_ready; |
474 | newsk->sk_write_space = tipc_conn_write_space; | |
0ef897be JM |
475 | newsk->sk_user_data = con; |
476 | con->sock = newsock; | |
477 | write_unlock_bh(&newsk->sk_callback_lock); | |
478 | ||
479 | /* Wake up receive process in case of 'SYN+' message */ | |
480 | newsk->sk_data_ready(newsk); | |
481 | } | |
482 | } | |
483 | ||
bad7f869 | 484 | /* tipc_topsrv_listener_data_ready - interrupt callback with connection request |
026321c6 | 485 | * The queued job is launched into tipc_topsrv_accept() |
0ef897be | 486 | */ |
026321c6 | 487 | static void tipc_topsrv_listener_data_ready(struct sock *sk) |
0ef897be | 488 | { |
026321c6 | 489 | struct tipc_topsrv *srv; |
0ef897be JM |
490 | |
491 | read_lock_bh(&sk->sk_callback_lock); | |
492 | srv = sk->sk_user_data; | |
493 | if (srv->listener) | |
494 | queue_work(srv->rcv_wq, &srv->awork); | |
495 | read_unlock_bh(&sk->sk_callback_lock); | |
496 | } | |
497 | ||
026321c6 | 498 | static int tipc_topsrv_create_listener(struct tipc_topsrv *srv) |
0ef897be JM |
499 | { |
500 | int imp = TIPC_CRITICAL_IMPORTANCE; | |
501 | struct socket *lsock = NULL; | |
502 | struct sockaddr_tipc saddr; | |
503 | struct sock *sk; | |
504 | int rc; | |
505 | ||
506 | rc = sock_create_kern(srv->net, AF_TIPC, SOCK_SEQPACKET, 0, &lsock); | |
507 | if (rc < 0) | |
508 | return rc; | |
509 | ||
510 | srv->listener = lsock; | |
511 | sk = lsock->sk; | |
512 | write_lock_bh(&sk->sk_callback_lock); | |
026321c6 | 513 | sk->sk_data_ready = tipc_topsrv_listener_data_ready; |
0ef897be JM |
514 | sk->sk_user_data = srv; |
515 | write_unlock_bh(&sk->sk_callback_lock); | |
516 | ||
517 | rc = kernel_setsockopt(lsock, SOL_TIPC, TIPC_IMPORTANCE, | |
518 | (char *)&imp, sizeof(imp)); | |
519 | if (rc < 0) | |
520 | goto err; | |
521 | ||
522 | saddr.family = AF_TIPC; | |
523 | saddr.addrtype = TIPC_ADDR_NAMESEQ; | |
524 | saddr.addr.nameseq.type = TIPC_TOP_SRV; | |
525 | saddr.addr.nameseq.lower = TIPC_TOP_SRV; | |
526 | saddr.addr.nameseq.upper = TIPC_TOP_SRV; | |
527 | saddr.scope = TIPC_NODE_SCOPE; | |
528 | ||
529 | rc = kernel_bind(lsock, (struct sockaddr *)&saddr, sizeof(saddr)); | |
530 | if (rc < 0) | |
531 | goto err; | |
532 | rc = kernel_listen(lsock, 0); | |
533 | if (rc < 0) | |
534 | goto err; | |
535 | ||
536 | /* As server's listening socket owner and creator is the same module, | |
537 | * we have to decrease TIPC module reference count to guarantee that | |
538 | * it remains zero after the server socket is created, otherwise, | |
539 | * executing "rmmod" command is unable to make TIPC module deleted | |
540 | * after TIPC module is inserted successfully. | |
541 | * | |
542 | * However, the reference count is ever increased twice in | |
543 | * sock_create_kern(): one is to increase the reference count of owner | |
544 | * of TIPC socket's proto_ops struct; another is to increment the | |
545 | * reference count of owner of TIPC proto struct. Therefore, we must | |
546 | * decrement the module reference count twice to ensure that it keeps | |
547 | * zero after server's listening socket is created. Of course, we | |
548 | * must bump the module reference count twice as well before the socket | |
549 | * is closed. | |
550 | */ | |
551 | module_put(lsock->ops->owner); | |
552 | module_put(sk->sk_prot_creator->owner); | |
553 | ||
554 | return 0; | |
555 | err: | |
556 | sock_release(lsock); | |
557 | return -EINVAL; | |
c5fa7b3c YX |
558 | } |
559 | ||
026321c6 JM |
560 | bool tipc_topsrv_kern_subscr(struct net *net, u32 port, u32 type, u32 lower, |
561 | u32 upper, u32 filter, int *conid) | |
562 | { | |
563 | struct tipc_subscr sub; | |
564 | struct tipc_conn *con; | |
565 | int rc; | |
566 | ||
567 | sub.seq.type = type; | |
568 | sub.seq.lower = lower; | |
569 | sub.seq.upper = upper; | |
570 | sub.timeout = TIPC_WAIT_FOREVER; | |
571 | sub.filter = filter; | |
572 | *(u32 *)&sub.usr_handle = port; | |
573 | ||
574 | con = tipc_conn_alloc(tipc_topsrv(net)); | |
575 | if (IS_ERR(con)) | |
576 | return false; | |
577 | ||
578 | *conid = con->conid; | |
579 | con->sock = NULL; | |
580 | rc = tipc_conn_rcv_sub(tipc_topsrv(net), con, &sub); | |
96c252bf JM |
581 | if (rc >= 0) |
582 | return true; | |
583 | conn_put(con); | |
584 | return false; | |
026321c6 JM |
585 | } |
586 | ||
587 | void tipc_topsrv_kern_unsubscr(struct net *net, int conid) | |
588 | { | |
589 | struct tipc_conn *con; | |
590 | ||
591 | con = tipc_conn_lookup(tipc_topsrv(net), conid); | |
592 | if (!con) | |
593 | return; | |
594 | ||
595 | test_and_clear_bit(CF_CONNECTED, &con->flags); | |
596 | tipc_conn_delete_sub(con, NULL); | |
597 | conn_put(con); | |
598 | conn_put(con); | |
599 | } | |
600 | ||
601 | static void tipc_topsrv_kern_evt(struct net *net, struct tipc_event *evt) | |
602 | { | |
603 | u32 port = *(u32 *)&evt->s.usr_handle; | |
604 | u32 self = tipc_own_addr(net); | |
605 | struct sk_buff_head evtq; | |
606 | struct sk_buff *skb; | |
607 | ||
608 | skb = tipc_msg_create(TOP_SRV, 0, INT_H_SIZE, sizeof(*evt), | |
609 | self, self, port, port, 0); | |
610 | if (!skb) | |
611 | return; | |
612 | msg_set_dest_droppable(buf_msg(skb), true); | |
613 | memcpy(msg_data(buf_msg(skb)), evt, sizeof(*evt)); | |
614 | skb_queue_head_init(&evtq); | |
615 | __skb_queue_tail(&evtq, skb); | |
6c9081a3 | 616 | tipc_loopback_trace(net, &evtq); |
026321c6 JM |
617 | tipc_sk_rcv(net, &evtq); |
618 | } | |
619 | ||
620 | static int tipc_topsrv_work_start(struct tipc_topsrv *s) | |
c5fa7b3c | 621 | { |
06c8581f | 622 | s->rcv_wq = alloc_ordered_workqueue("tipc_rcv", 0); |
c5fa7b3c YX |
623 | if (!s->rcv_wq) { |
624 | pr_err("can't start tipc receive workqueue\n"); | |
625 | return -ENOMEM; | |
626 | } | |
627 | ||
06c8581f | 628 | s->send_wq = alloc_ordered_workqueue("tipc_send", 0); |
c5fa7b3c YX |
629 | if (!s->send_wq) { |
630 | pr_err("can't start tipc send workqueue\n"); | |
631 | destroy_workqueue(s->rcv_wq); | |
632 | return -ENOMEM; | |
633 | } | |
634 | ||
635 | return 0; | |
636 | } | |
637 | ||
026321c6 | 638 | static void tipc_topsrv_work_stop(struct tipc_topsrv *s) |
0ef897be JM |
639 | { |
640 | destroy_workqueue(s->rcv_wq); | |
641 | destroy_workqueue(s->send_wq); | |
642 | } | |
643 | ||
526f5b85 | 644 | static int tipc_topsrv_start(struct net *net) |
c5fa7b3c | 645 | { |
5c45ab24 JM |
646 | struct tipc_net *tn = tipc_net(net); |
647 | const char name[] = "topology_server"; | |
026321c6 | 648 | struct tipc_topsrv *srv; |
c5fa7b3c YX |
649 | int ret; |
650 | ||
5c45ab24 | 651 | srv = kzalloc(sizeof(*srv), GFP_ATOMIC); |
0ef897be | 652 | if (!srv) |
5c45ab24 | 653 | return -ENOMEM; |
0ef897be JM |
654 | |
655 | srv->net = net; | |
026321c6 | 656 | INIT_WORK(&srv->awork, tipc_topsrv_accept); |
5c45ab24 | 657 | |
29e270fc | 658 | strscpy(srv->name, name, sizeof(srv->name)); |
5c45ab24 JM |
659 | tn->topsrv = srv; |
660 | atomic_set(&tn->subscription_count, 0); | |
661 | ||
662 | spin_lock_init(&srv->idr_lock); | |
663 | idr_init(&srv->conn_idr); | |
664 | srv->idr_in_use = 0; | |
c5fa7b3c | 665 | |
026321c6 | 666 | ret = tipc_topsrv_work_start(srv); |
414574a0 | 667 | if (ret < 0) |
c5fa7b3c | 668 | return ret; |
414574a0 | 669 | |
026321c6 | 670 | ret = tipc_topsrv_create_listener(srv); |
414574a0 | 671 | if (ret < 0) |
026321c6 | 672 | tipc_topsrv_work_stop(srv); |
414574a0 | 673 | |
c756891a | 674 | return ret; |
c5fa7b3c YX |
675 | } |
676 | ||
526f5b85 | 677 | static void tipc_topsrv_stop(struct net *net) |
c5fa7b3c | 678 | { |
026321c6 | 679 | struct tipc_topsrv *srv = tipc_topsrv(net); |
0ef897be | 680 | struct socket *lsock = srv->listener; |
c5fa7b3c | 681 | struct tipc_conn *con; |
c5fa7b3c YX |
682 | int id; |
683 | ||
5c45ab24 JM |
684 | spin_lock_bh(&srv->idr_lock); |
685 | for (id = 0; srv->idr_in_use; id++) { | |
686 | con = idr_find(&srv->conn_idr, id); | |
c5fa7b3c | 687 | if (con) { |
5c45ab24 | 688 | spin_unlock_bh(&srv->idr_lock); |
026321c6 | 689 | tipc_conn_close(con); |
5c45ab24 | 690 | spin_lock_bh(&srv->idr_lock); |
c5fa7b3c YX |
691 | } |
692 | } | |
0ef897be JM |
693 | __module_get(lsock->ops->owner); |
694 | __module_get(lsock->sk->sk_prot_creator->owner); | |
0ef897be | 695 | srv->listener = NULL; |
5c45ab24 | 696 | spin_unlock_bh(&srv->idr_lock); |
26736a08 | 697 | sock_release(lsock); |
026321c6 | 698 | tipc_topsrv_work_stop(srv); |
5c45ab24 | 699 | idr_destroy(&srv->conn_idr); |
5c45ab24 | 700 | kfree(srv); |
c5fa7b3c | 701 | } |
526f5b85 JH |
702 | |
703 | int __net_init tipc_topsrv_init_net(struct net *net) | |
704 | { | |
705 | return tipc_topsrv_start(net); | |
706 | } | |
707 | ||
708 | void __net_exit tipc_topsrv_exit_net(struct net *net) | |
709 | { | |
710 | tipc_topsrv_stop(net); | |
711 | } |