blob: 5522865deae951e2bf5f60dc43676461b5ab7884 [file] [log] [blame]
Ying Xuec5fa7b32013-06-17 10:54:39 -04001/*
2 * net/tipc/server.c: TIPC server infrastructure
3 *
4 * Copyright (c) 2012-2013, Wind River Systems
Jon Maloy026321c2018-02-15 10:40:51 +01005 * Copyright (c) 2017-2018, Ericsson AB
Ying Xuec5fa7b32013-06-17 10:54:39 -04006 * 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
Jon Maloyc901d262018-02-15 10:40:43 +010037#include "subscr.h"
Jon Maloy026321c2018-02-15 10:40:51 +010038#include "topsrv.h"
Ying Xuec5fa7b32013-06-17 10:54:39 -040039#include "core.h"
Ying Xue859fc7c2015-01-09 15:27:01 +080040#include "socket.h"
Jon Maloy14c04492017-10-13 11:04:17 +020041#include "addr.h"
42#include "msg.h"
John Rutherford6c9081a2019-08-07 12:52:29 +100043#include "bearer.h"
Ying Xuec5fa7b32013-06-17 10:54:39 -040044#include <net/sock.h>
Ying Xue76100a82015-03-18 09:32:57 +080045#include <linux/module.h>
Ying Xuec5fa7b32013-06-17 10:54:39 -040046
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
51
Jon Maloy5c45ab22018-02-15 10:40:49 +010052#define TIPC_SERVER_NAME_LEN 32
53
54/**
Jon Maloy026321c2018-02-15 10:40:51 +010055 * struct tipc_topsrv - TIPC server structure
Jon Maloy5c45ab22018-02-15 10:40:49 +010056 * @conn_idr: identifier set of connection
57 * @idr_lock: protect the connection identifier set
58 * @idr_in_use: amount of allocated identifier entry
59 * @net: network namspace instance
Zhenbo Gao05a68432018-09-03 14:08:40 +080060 * @awork: accept work item
Jon Maloy5c45ab22018-02-15 10:40:49 +010061 * @rcv_wq: receive workqueue
62 * @send_wq: send workqueue
Zhenbo Gao05a68432018-09-03 14:08:40 +080063 * @listener: topsrv listener socket
Jon Maloy5c45ab22018-02-15 10:40:49 +010064 * @name: server name
Jon Maloy5c45ab22018-02-15 10:40:49 +010065 */
Jon Maloy026321c2018-02-15 10:40:51 +010066struct tipc_topsrv {
Jon Maloy5c45ab22018-02-15 10:40:49 +010067 struct idr conn_idr;
68 spinlock_t idr_lock; /* for idr list */
69 int idr_in_use;
70 struct net *net;
Jon Maloy0ef897b2018-02-15 10:40:50 +010071 struct work_struct awork;
Jon Maloy5c45ab22018-02-15 10:40:49 +010072 struct workqueue_struct *rcv_wq;
73 struct workqueue_struct *send_wq;
Jon Maloy0ef897b2018-02-15 10:40:50 +010074 struct socket *listener;
Jon Maloy5c45ab22018-02-15 10:40:49 +010075 char name[TIPC_SERVER_NAME_LEN];
76};
Ying Xuec5fa7b32013-06-17 10:54:39 -040077
78/**
79 * struct tipc_conn - TIPC connection structure
80 * @kref: reference counter to connection object
81 * @conid: connection identifier
82 * @sock: socket handler associated with connection
83 * @flags: indicates connection state
84 * @server: pointer to connected server
Jon Maloydf79d042018-02-15 10:40:44 +010085 * @sub_list: lsit to all pertaing subscriptions
86 * @sub_lock: lock protecting the subscription list
Ying Xuec5fa7b32013-06-17 10:54:39 -040087 * @rwork: receive work item
Ying Xuec5fa7b32013-06-17 10:54:39 -040088 * @outqueue: pointer to first outbound message in queue
stephen hemminger963a18552014-01-12 12:48:00 -080089 * @outqueue_lock: control access to the outqueue
Ying Xuec5fa7b32013-06-17 10:54:39 -040090 * @swork: send work item
91 */
92struct tipc_conn {
93 struct kref kref;
94 int conid;
95 struct socket *sock;
96 unsigned long flags;
Jon Maloy026321c2018-02-15 10:40:51 +010097 struct tipc_topsrv *server;
Jon Maloydf79d042018-02-15 10:40:44 +010098 struct list_head sub_list;
99 spinlock_t sub_lock; /* for subscription list */
Ying Xuec5fa7b32013-06-17 10:54:39 -0400100 struct work_struct rwork;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400101 struct list_head outqueue;
Jon Maloy026321c2018-02-15 10:40:51 +0100102 spinlock_t outqueue_lock; /* for outqueue */
Ying Xuec5fa7b32013-06-17 10:54:39 -0400103 struct work_struct swork;
104};
105
106/* An entry waiting to be sent */
107struct outqueue_entry {
Jon Maloy414574a2018-02-15 10:40:45 +0100108 bool inactive;
109 struct tipc_event evt;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400110 struct list_head list;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400111};
112
Jon Maloy026321c2018-02-15 10:40:51 +0100113static void tipc_conn_recv_work(struct work_struct *work);
114static void tipc_conn_send_work(struct work_struct *work);
115static void tipc_topsrv_kern_evt(struct net *net, struct tipc_event *evt);
116static void tipc_conn_delete_sub(struct tipc_conn *con, struct tipc_subscr *s);
Jon Maloy5c45ab22018-02-15 10:40:49 +0100117
Jon Maloydf79d042018-02-15 10:40:44 +0100118static bool connected(struct tipc_conn *con)
119{
120 return con && test_bit(CF_CONNECTED, &con->flags);
121}
122
Ying Xuec5fa7b32013-06-17 10:54:39 -0400123static void tipc_conn_kref_release(struct kref *kref)
124{
125 struct tipc_conn *con = container_of(kref, struct tipc_conn, kref);
Jon Maloy026321c2018-02-15 10:40:51 +0100126 struct tipc_topsrv *s = con->server;
Jon Maloy0ef897b2018-02-15 10:40:50 +0100127 struct outqueue_entry *e, *safe;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400128
Jon Maloy14c04492017-10-13 11:04:17 +0200129 spin_lock_bh(&s->idr_lock);
130 idr_remove(&s->conn_idr, con->conid);
131 s->idr_in_use--;
132 spin_unlock_bh(&s->idr_lock);
Jon Maloy0ef897b2018-02-15 10:40:50 +0100133 if (con->sock)
134 sock_release(con->sock);
135
136 spin_lock_bh(&con->outqueue_lock);
137 list_for_each_entry_safe(e, safe, &con->outqueue, list) {
138 list_del(&e->list);
139 kfree(e);
140 }
141 spin_unlock_bh(&con->outqueue_lock);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400142 kfree(con);
143}
144
145static void conn_put(struct tipc_conn *con)
146{
147 kref_put(&con->kref, tipc_conn_kref_release);
148}
149
150static void conn_get(struct tipc_conn *con)
151{
152 kref_get(&con->kref);
153}
154
Jon Maloy026321c2018-02-15 10:40:51 +0100155static void tipc_conn_close(struct tipc_conn *con)
Parthasarathy Bhuvaragan333f7962016-04-12 13:05:21 +0200156{
Jon Maloye88f2be2018-01-15 17:56:28 +0100157 struct sock *sk = con->sock->sk;
158 bool disconnect = false;
Parthasarathy Bhuvaragan333f7962016-04-12 13:05:21 +0200159
Jon Maloye88f2be2018-01-15 17:56:28 +0100160 write_lock_bh(&sk->sk_callback_lock);
161 disconnect = test_and_clear_bit(CF_CONNECTED, &con->flags);
Jon Maloydf79d042018-02-15 10:40:44 +0100162
Jon Maloye88f2be2018-01-15 17:56:28 +0100163 if (disconnect) {
164 sk->sk_user_data = NULL;
Jon Maloy026321c2018-02-15 10:40:51 +0100165 tipc_conn_delete_sub(con, NULL);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400166 }
Jon Maloye88f2be2018-01-15 17:56:28 +0100167 write_unlock_bh(&sk->sk_callback_lock);
168
169 /* Handle concurrent calls from sending and receiving threads */
170 if (!disconnect)
171 return;
172
173 /* Don't flush pending works, -just let them expire */
174 kernel_sock_shutdown(con->sock, SHUT_RDWR);
Jon Maloy0ef897b2018-02-15 10:40:50 +0100175
Jon Maloye88f2be2018-01-15 17:56:28 +0100176 conn_put(con);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400177}
178
Jon Maloy026321c2018-02-15 10:40:51 +0100179static struct tipc_conn *tipc_conn_alloc(struct tipc_topsrv *s)
Ying Xuec5fa7b32013-06-17 10:54:39 -0400180{
181 struct tipc_conn *con;
182 int ret;
183
Jon Maloy026321c2018-02-15 10:40:51 +0100184 con = kzalloc(sizeof(*con), GFP_ATOMIC);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400185 if (!con)
186 return ERR_PTR(-ENOMEM);
187
188 kref_init(&con->kref);
189 INIT_LIST_HEAD(&con->outqueue);
Jon Maloydf79d042018-02-15 10:40:44 +0100190 INIT_LIST_HEAD(&con->sub_list);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400191 spin_lock_init(&con->outqueue_lock);
Jon Maloydf79d042018-02-15 10:40:44 +0100192 spin_lock_init(&con->sub_lock);
Jon Maloy026321c2018-02-15 10:40:51 +0100193 INIT_WORK(&con->swork, tipc_conn_send_work);
194 INIT_WORK(&con->rwork, tipc_conn_recv_work);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400195
196 spin_lock_bh(&s->idr_lock);
197 ret = idr_alloc(&s->conn_idr, con, 0, 0, GFP_ATOMIC);
198 if (ret < 0) {
199 kfree(con);
200 spin_unlock_bh(&s->idr_lock);
201 return ERR_PTR(-ENOMEM);
202 }
203 con->conid = ret;
204 s->idr_in_use++;
205 spin_unlock_bh(&s->idr_lock);
206
207 set_bit(CF_CONNECTED, &con->flags);
208 con->server = s;
209
210 return con;
211}
212
Jon Maloy026321c2018-02-15 10:40:51 +0100213static struct tipc_conn *tipc_conn_lookup(struct tipc_topsrv *s, int conid)
Jon Maloydf79d042018-02-15 10:40:44 +0100214{
Jon Maloy026321c2018-02-15 10:40:51 +0100215 struct tipc_conn *con;
Jon Maloydf79d042018-02-15 10:40:44 +0100216
Jon Maloy026321c2018-02-15 10:40:51 +0100217 spin_lock_bh(&s->idr_lock);
218 con = idr_find(&s->conn_idr, conid);
219 if (!connected(con) || !kref_get_unless_zero(&con->kref))
220 con = NULL;
221 spin_unlock_bh(&s->idr_lock);
222 return con;
Jon Maloydf79d042018-02-15 10:40:44 +0100223}
224
Jon Maloy026321c2018-02-15 10:40:51 +0100225/* tipc_conn_delete_sub - delete a specific or all subscriptions
226 * for a given subscriber
227 */
228static void tipc_conn_delete_sub(struct tipc_conn *con, struct tipc_subscr *s)
Ying Xuec5fa7b32013-06-17 10:54:39 -0400229{
Jon Maloy026321c2018-02-15 10:40:51 +0100230 struct tipc_net *tn = tipc_net(con->server->net);
231 struct list_head *sub_list = &con->sub_list;
232 struct tipc_subscription *sub, *tmp;
233
234 spin_lock_bh(&con->sub_lock);
235 list_for_each_entry_safe(sub, tmp, sub_list, sub_list) {
236 if (!s || !memcmp(s, &sub->evt.s, sizeof(*s))) {
237 tipc_sub_unsubscribe(sub);
238 atomic_dec(&tn->subscription_count);
Tuong Lien88690b12020-05-13 19:33:18 +0700239 if (s)
240 break;
Jon Maloy026321c2018-02-15 10:40:51 +0100241 }
242 }
243 spin_unlock_bh(&con->sub_lock);
244}
245
246static void tipc_conn_send_to_sock(struct tipc_conn *con)
247{
248 struct list_head *queue = &con->outqueue;
249 struct tipc_topsrv *srv = con->server;
250 struct outqueue_entry *e;
251 struct tipc_event *evt;
252 struct msghdr msg;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400253 struct kvec iov;
Jon Maloy026321c2018-02-15 10:40:51 +0100254 int count = 0;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400255 int ret;
256
Jon Maloy026321c2018-02-15 10:40:51 +0100257 spin_lock_bh(&con->outqueue_lock);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400258
Jon Maloy026321c2018-02-15 10:40:51 +0100259 while (!list_empty(queue)) {
260 e = list_first_entry(queue, struct outqueue_entry, list);
261 evt = &e->evt;
262 spin_unlock_bh(&con->outqueue_lock);
263
264 if (e->inactive)
265 tipc_conn_delete_sub(con, &evt->s);
266
267 memset(&msg, 0, sizeof(msg));
268 msg.msg_flags = MSG_DONTWAIT;
269 iov.iov_base = evt;
270 iov.iov_len = sizeof(*evt);
271 msg.msg_name = NULL;
272
273 if (con->sock) {
274 ret = kernel_sendmsg(con->sock, &msg, &iov,
275 1, sizeof(*evt));
276 if (ret == -EWOULDBLOCK || ret == 0) {
277 cond_resched();
278 return;
279 } else if (ret < 0) {
280 return tipc_conn_close(con);
281 }
282 } else {
283 tipc_topsrv_kern_evt(srv->net, evt);
284 }
285
286 /* Don't starve users filling buffers */
287 if (++count >= MAX_SEND_MSG_COUNT) {
288 cond_resched();
289 count = 0;
290 }
291 spin_lock_bh(&con->outqueue_lock);
292 list_del(&e->list);
293 kfree(e);
294 }
295 spin_unlock_bh(&con->outqueue_lock);
296}
297
298static void tipc_conn_send_work(struct work_struct *work)
299{
300 struct tipc_conn *con = container_of(work, struct tipc_conn, swork);
301
302 if (connected(con))
303 tipc_conn_send_to_sock(con);
304
305 conn_put(con);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400306}
307
Zhenbo Gaoa484ef32018-09-03 16:36:46 +0800308/* tipc_topsrv_queue_evt() - interrupt level call from a subscription instance
309 * The queued work is launched into tipc_conn_send_work()->tipc_conn_send_to_sock()
Jon Maloy414574a2018-02-15 10:40:45 +0100310 */
Jon Maloy026321c2018-02-15 10:40:51 +0100311void tipc_topsrv_queue_evt(struct net *net, int conid,
312 u32 event, struct tipc_event *evt)
Ying Xuec5fa7b32013-06-17 10:54:39 -0400313{
Jon Maloy026321c2018-02-15 10:40:51 +0100314 struct tipc_topsrv *srv = tipc_topsrv(net);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400315 struct outqueue_entry *e;
316 struct tipc_conn *con;
317
Jon Maloy5c45ab22018-02-15 10:40:49 +0100318 con = tipc_conn_lookup(srv, conid);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400319 if (!con)
Jon Maloy414574a2018-02-15 10:40:45 +0100320 return;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400321
Jon Maloy414574a2018-02-15 10:40:45 +0100322 if (!connected(con))
323 goto err;
Parthasarathy Bhuvaragan4c887aa2017-01-24 13:00:47 +0100324
Jon Maloy414574a2018-02-15 10:40:45 +0100325 e = kmalloc(sizeof(*e), GFP_ATOMIC);
326 if (!e)
327 goto err;
328 e->inactive = (event == TIPC_SUBSCR_TIMEOUT);
329 memcpy(&e->evt, evt, sizeof(*evt));
Ying Xuec5fa7b32013-06-17 10:54:39 -0400330 spin_lock_bh(&con->outqueue_lock);
331 list_add_tail(&e->list, &con->outqueue);
332 spin_unlock_bh(&con->outqueue_lock);
333
Jon Maloy5c45ab22018-02-15 10:40:49 +0100334 if (queue_work(srv->send_wq, &con->swork))
Jon Maloy414574a2018-02-15 10:40:45 +0100335 return;
336err:
337 conn_put(con);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400338}
339
Jon Maloy026321c2018-02-15 10:40:51 +0100340/* tipc_conn_write_space - interrupt callback after a sendmsg EAGAIN
341 * Indicates that there now is more space in the send buffer
342 * The queued work is launched into tipc_send_work()->tipc_conn_send_to_sock()
343 */
344static void tipc_conn_write_space(struct sock *sk)
Jon Maloy14c04492017-10-13 11:04:17 +0200345{
346 struct tipc_conn *con;
347
Jon Maloy026321c2018-02-15 10:40:51 +0100348 read_lock_bh(&sk->sk_callback_lock);
349 con = sk->sk_user_data;
350 if (connected(con)) {
351 conn_get(con);
352 if (!queue_work(con->server->send_wq, &con->swork))
353 conn_put(con);
354 }
355 read_unlock_bh(&sk->sk_callback_lock);
Jon Maloy14c04492017-10-13 11:04:17 +0200356}
357
Jon Maloy026321c2018-02-15 10:40:51 +0100358static int tipc_conn_rcv_sub(struct tipc_topsrv *srv,
359 struct tipc_conn *con,
360 struct tipc_subscr *s)
Jon Maloy14c04492017-10-13 11:04:17 +0200361{
Jon Maloy026321c2018-02-15 10:40:51 +0100362 struct tipc_net *tn = tipc_net(srv->net);
363 struct tipc_subscription *sub;
Tuong Lien88690b12020-05-13 19:33:18 +0700364 u32 s_filter = tipc_sub_read(s, filter);
Jon Maloy14c04492017-10-13 11:04:17 +0200365
Tuong Lien88690b12020-05-13 19:33:18 +0700366 if (s_filter & TIPC_SUB_CANCEL) {
367 tipc_sub_write(s, filter, s_filter & ~TIPC_SUB_CANCEL);
Jon Maloy026321c2018-02-15 10:40:51 +0100368 tipc_conn_delete_sub(con, s);
369 return 0;
370 }
371 if (atomic_read(&tn->subscription_count) >= TIPC_MAX_SUBSCR) {
372 pr_warn("Subscription rejected, max (%u)\n", TIPC_MAX_SUBSCR);
373 return -1;
374 }
375 sub = tipc_sub_subscribe(srv->net, s, con->conid);
376 if (!sub)
377 return -1;
378 atomic_inc(&tn->subscription_count);
379 spin_lock_bh(&con->sub_lock);
380 list_add(&sub->sub_list, &con->sub_list);
381 spin_unlock_bh(&con->sub_lock);
382 return 0;
Jon Maloy14c04492017-10-13 11:04:17 +0200383}
384
Jon Maloy026321c2018-02-15 10:40:51 +0100385static int tipc_conn_rcv_from_sock(struct tipc_conn *con)
Ying Xuec5fa7b32013-06-17 10:54:39 -0400386{
Jon Maloy026321c2018-02-15 10:40:51 +0100387 struct tipc_topsrv *srv = con->server;
388 struct sock *sk = con->sock->sk;
389 struct msghdr msg = {};
390 struct tipc_subscr s;
Jon Maloy414574a2018-02-15 10:40:45 +0100391 struct kvec iov;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400392 int ret;
393
Jon Maloy026321c2018-02-15 10:40:51 +0100394 iov.iov_base = &s;
395 iov.iov_len = sizeof(s);
396 msg.msg_name = NULL;
David Howellsaa563d72018-10-20 00:57:56 +0100397 iov_iter_kvec(&msg.msg_iter, READ, &iov, 1, iov.iov_len);
Jon Maloy026321c2018-02-15 10:40:51 +0100398 ret = sock_recvmsg(con->sock, &msg, MSG_DONTWAIT);
399 if (ret == -EWOULDBLOCK)
400 return -EWOULDBLOCK;
Ying Xuea88289f2019-01-14 17:22:24 +0800401 if (ret == sizeof(s)) {
Jon Maloy026321c2018-02-15 10:40:51 +0100402 read_lock_bh(&sk->sk_callback_lock);
Tuong Lien0771d7d2020-05-13 19:33:17 +0700403 /* RACE: the connection can be closed in the meantime */
404 if (likely(connected(con)))
405 ret = tipc_conn_rcv_sub(srv, con, &s);
Jon Maloy026321c2018-02-15 10:40:51 +0100406 read_unlock_bh(&sk->sk_callback_lock);
Tuong Lien980d6922020-05-04 11:15:54 +0700407 if (!ret)
408 return 0;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400409 }
Jon Maloy026321c2018-02-15 10:40:51 +0100410
Tuong Lien980d6922020-05-04 11:15:54 +0700411 tipc_conn_close(con);
Jon Maloy026321c2018-02-15 10:40:51 +0100412 return ret;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400413}
414
Jon Maloy026321c2018-02-15 10:40:51 +0100415static void tipc_conn_recv_work(struct work_struct *work)
Ying Xuec5fa7b32013-06-17 10:54:39 -0400416{
417 struct tipc_conn *con = container_of(work, struct tipc_conn, rwork);
418 int count = 0;
419
Jon Maloydf79d042018-02-15 10:40:44 +0100420 while (connected(con)) {
Jon Maloy026321c2018-02-15 10:40:51 +0100421 if (tipc_conn_rcv_from_sock(con))
Ying Xuec5fa7b32013-06-17 10:54:39 -0400422 break;
423
424 /* Don't flood Rx machine */
425 if (++count >= MAX_RECV_MSG_COUNT) {
426 cond_resched();
427 count = 0;
428 }
429 }
430 conn_put(con);
431}
432
Jon Maloy026321c2018-02-15 10:40:51 +0100433/* tipc_conn_data_ready - interrupt callback indicating the socket has data
434 * The queued work is launched into tipc_recv_work()->tipc_conn_rcv_from_sock()
435 */
436static void tipc_conn_data_ready(struct sock *sk)
Ying Xuec5fa7b32013-06-17 10:54:39 -0400437{
Jon Maloy026321c2018-02-15 10:40:51 +0100438 struct tipc_conn *con;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400439
Jon Maloy026321c2018-02-15 10:40:51 +0100440 read_lock_bh(&sk->sk_callback_lock);
441 con = sk->sk_user_data;
442 if (connected(con)) {
443 conn_get(con);
444 if (!queue_work(con->server->rcv_wq, &con->rwork))
445 conn_put(con);
446 }
447 read_unlock_bh(&sk->sk_callback_lock);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400448}
449
Jon Maloy026321c2018-02-15 10:40:51 +0100450static void tipc_topsrv_accept(struct work_struct *work)
Ying Xuec5fa7b32013-06-17 10:54:39 -0400451{
Jon Maloy026321c2018-02-15 10:40:51 +0100452 struct tipc_topsrv *srv = container_of(work, struct tipc_topsrv, awork);
Jon Maloy0ef897b2018-02-15 10:40:50 +0100453 struct socket *lsock = srv->listener;
454 struct socket *newsock;
455 struct tipc_conn *con;
456 struct sock *newsk;
457 int ret;
458
459 while (1) {
460 ret = kernel_accept(lsock, &newsock, O_NONBLOCK);
461 if (ret < 0)
462 return;
Jon Maloy026321c2018-02-15 10:40:51 +0100463 con = tipc_conn_alloc(srv);
Jon Maloy0ef897b2018-02-15 10:40:50 +0100464 if (IS_ERR(con)) {
465 ret = PTR_ERR(con);
466 sock_release(newsock);
467 return;
468 }
469 /* Register callbacks */
470 newsk = newsock->sk;
471 write_lock_bh(&newsk->sk_callback_lock);
Jon Maloy026321c2018-02-15 10:40:51 +0100472 newsk->sk_data_ready = tipc_conn_data_ready;
473 newsk->sk_write_space = tipc_conn_write_space;
Jon Maloy0ef897b2018-02-15 10:40:50 +0100474 newsk->sk_user_data = con;
475 con->sock = newsock;
476 write_unlock_bh(&newsk->sk_callback_lock);
477
478 /* Wake up receive process in case of 'SYN+' message */
479 newsk->sk_data_ready(newsk);
480 }
481}
482
Christophe JAILLETbad7f862019-07-21 12:38:11 +0200483/* tipc_topsrv_listener_data_ready - interrupt callback with connection request
Jon Maloy026321c2018-02-15 10:40:51 +0100484 * The queued job is launched into tipc_topsrv_accept()
Jon Maloy0ef897b2018-02-15 10:40:50 +0100485 */
Jon Maloy026321c2018-02-15 10:40:51 +0100486static void tipc_topsrv_listener_data_ready(struct sock *sk)
Jon Maloy0ef897b2018-02-15 10:40:50 +0100487{
Jon Maloy026321c2018-02-15 10:40:51 +0100488 struct tipc_topsrv *srv;
Jon Maloy0ef897b2018-02-15 10:40:50 +0100489
490 read_lock_bh(&sk->sk_callback_lock);
491 srv = sk->sk_user_data;
492 if (srv->listener)
493 queue_work(srv->rcv_wq, &srv->awork);
494 read_unlock_bh(&sk->sk_callback_lock);
495}
496
Jon Maloy026321c2018-02-15 10:40:51 +0100497static int tipc_topsrv_create_listener(struct tipc_topsrv *srv)
Jon Maloy0ef897b2018-02-15 10:40:50 +0100498{
Jon Maloy0ef897b2018-02-15 10:40:50 +0100499 struct socket *lsock = NULL;
500 struct sockaddr_tipc saddr;
501 struct sock *sk;
502 int rc;
503
504 rc = sock_create_kern(srv->net, AF_TIPC, SOCK_SEQPACKET, 0, &lsock);
505 if (rc < 0)
506 return rc;
507
508 srv->listener = lsock;
509 sk = lsock->sk;
510 write_lock_bh(&sk->sk_callback_lock);
Jon Maloy026321c2018-02-15 10:40:51 +0100511 sk->sk_data_ready = tipc_topsrv_listener_data_ready;
Jon Maloy0ef897b2018-02-15 10:40:50 +0100512 sk->sk_user_data = srv;
513 write_unlock_bh(&sk->sk_callback_lock);
514
Christoph Hellwig095ae612020-05-28 07:12:36 +0200515 lock_sock(sk);
516 rc = tsk_set_importance(sk, TIPC_CRITICAL_IMPORTANCE);
517 release_sock(sk);
Jon Maloy0ef897b2018-02-15 10:40:50 +0100518 if (rc < 0)
519 goto err;
520
521 saddr.family = AF_TIPC;
Jon Maloyb6f88d92020-11-25 13:29:15 -0500522 saddr.addrtype = TIPC_SERVICE_RANGE;
523 saddr.addr.nameseq.type = TIPC_TOP_SRV;
Jon Maloy0ef897b2018-02-15 10:40:50 +0100524 saddr.addr.nameseq.lower = TIPC_TOP_SRV;
525 saddr.addr.nameseq.upper = TIPC_TOP_SRV;
526 saddr.scope = TIPC_NODE_SCOPE;
527
Jon Maloy72671b32020-10-29 21:29:38 -0400528 rc = tipc_sk_bind(lsock, (struct sockaddr *)&saddr, sizeof(saddr));
Jon Maloy0ef897b2018-02-15 10:40:50 +0100529 if (rc < 0)
530 goto err;
531 rc = kernel_listen(lsock, 0);
532 if (rc < 0)
533 goto err;
534
535 /* As server's listening socket owner and creator is the same module,
536 * we have to decrease TIPC module reference count to guarantee that
537 * it remains zero after the server socket is created, otherwise,
538 * executing "rmmod" command is unable to make TIPC module deleted
539 * after TIPC module is inserted successfully.
540 *
541 * However, the reference count is ever increased twice in
542 * sock_create_kern(): one is to increase the reference count of owner
543 * of TIPC socket's proto_ops struct; another is to increment the
544 * reference count of owner of TIPC proto struct. Therefore, we must
545 * decrement the module reference count twice to ensure that it keeps
546 * zero after server's listening socket is created. Of course, we
547 * must bump the module reference count twice as well before the socket
548 * is closed.
549 */
550 module_put(lsock->ops->owner);
551 module_put(sk->sk_prot_creator->owner);
552
553 return 0;
554err:
555 sock_release(lsock);
556 return -EINVAL;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400557}
558
Jon Maloy026321c2018-02-15 10:40:51 +0100559bool tipc_topsrv_kern_subscr(struct net *net, u32 port, u32 type, u32 lower,
560 u32 upper, u32 filter, int *conid)
561{
562 struct tipc_subscr sub;
563 struct tipc_conn *con;
564 int rc;
565
566 sub.seq.type = type;
567 sub.seq.lower = lower;
568 sub.seq.upper = upper;
569 sub.timeout = TIPC_WAIT_FOREVER;
570 sub.filter = filter;
571 *(u32 *)&sub.usr_handle = port;
572
573 con = tipc_conn_alloc(tipc_topsrv(net));
574 if (IS_ERR(con))
575 return false;
576
577 *conid = con->conid;
578 con->sock = NULL;
579 rc = tipc_conn_rcv_sub(tipc_topsrv(net), con, &sub);
Jon Maloy96c252b2018-02-19 12:48:21 +0100580 if (rc >= 0)
581 return true;
582 conn_put(con);
583 return false;
Jon Maloy026321c2018-02-15 10:40:51 +0100584}
585
586void tipc_topsrv_kern_unsubscr(struct net *net, int conid)
587{
588 struct tipc_conn *con;
589
590 con = tipc_conn_lookup(tipc_topsrv(net), conid);
591 if (!con)
592 return;
593
594 test_and_clear_bit(CF_CONNECTED, &con->flags);
595 tipc_conn_delete_sub(con, NULL);
596 conn_put(con);
597 conn_put(con);
598}
599
600static void tipc_topsrv_kern_evt(struct net *net, struct tipc_event *evt)
601{
602 u32 port = *(u32 *)&evt->s.usr_handle;
603 u32 self = tipc_own_addr(net);
604 struct sk_buff_head evtq;
605 struct sk_buff *skb;
606
607 skb = tipc_msg_create(TOP_SRV, 0, INT_H_SIZE, sizeof(*evt),
608 self, self, port, port, 0);
609 if (!skb)
610 return;
611 msg_set_dest_droppable(buf_msg(skb), true);
612 memcpy(msg_data(buf_msg(skb)), evt, sizeof(*evt));
613 skb_queue_head_init(&evtq);
614 __skb_queue_tail(&evtq, skb);
John Rutherford6c9081a2019-08-07 12:52:29 +1000615 tipc_loopback_trace(net, &evtq);
Jon Maloy026321c2018-02-15 10:40:51 +0100616 tipc_sk_rcv(net, &evtq);
617}
618
619static int tipc_topsrv_work_start(struct tipc_topsrv *s)
Ying Xuec5fa7b32013-06-17 10:54:39 -0400620{
Parthasarathy Bhuvaragan06c85812016-02-02 10:52:17 +0100621 s->rcv_wq = alloc_ordered_workqueue("tipc_rcv", 0);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400622 if (!s->rcv_wq) {
623 pr_err("can't start tipc receive workqueue\n");
624 return -ENOMEM;
625 }
626
Parthasarathy Bhuvaragan06c85812016-02-02 10:52:17 +0100627 s->send_wq = alloc_ordered_workqueue("tipc_send", 0);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400628 if (!s->send_wq) {
629 pr_err("can't start tipc send workqueue\n");
630 destroy_workqueue(s->rcv_wq);
631 return -ENOMEM;
632 }
633
634 return 0;
635}
636
Jon Maloy026321c2018-02-15 10:40:51 +0100637static void tipc_topsrv_work_stop(struct tipc_topsrv *s)
Jon Maloy0ef897b2018-02-15 10:40:50 +0100638{
639 destroy_workqueue(s->rcv_wq);
640 destroy_workqueue(s->send_wq);
641}
642
Junwei Hu526f5b82019-05-20 14:43:59 +0800643static int tipc_topsrv_start(struct net *net)
Ying Xuec5fa7b32013-06-17 10:54:39 -0400644{
Jon Maloy5c45ab22018-02-15 10:40:49 +0100645 struct tipc_net *tn = tipc_net(net);
646 const char name[] = "topology_server";
Jon Maloy026321c2018-02-15 10:40:51 +0100647 struct tipc_topsrv *srv;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400648 int ret;
649
Jon Maloy5c45ab22018-02-15 10:40:49 +0100650 srv = kzalloc(sizeof(*srv), GFP_ATOMIC);
Jon Maloy0ef897b2018-02-15 10:40:50 +0100651 if (!srv)
Jon Maloy5c45ab22018-02-15 10:40:49 +0100652 return -ENOMEM;
Jon Maloy0ef897b2018-02-15 10:40:50 +0100653
654 srv->net = net;
Jon Maloy026321c2018-02-15 10:40:51 +0100655 INIT_WORK(&srv->awork, tipc_topsrv_accept);
Jon Maloy5c45ab22018-02-15 10:40:49 +0100656
Guoqing Jiang29e270f2018-10-19 12:08:22 +0800657 strscpy(srv->name, name, sizeof(srv->name));
Jon Maloy5c45ab22018-02-15 10:40:49 +0100658 tn->topsrv = srv;
659 atomic_set(&tn->subscription_count, 0);
660
661 spin_lock_init(&srv->idr_lock);
662 idr_init(&srv->conn_idr);
663 srv->idr_in_use = 0;
664
Jon Maloy026321c2018-02-15 10:40:51 +0100665 ret = tipc_topsrv_work_start(srv);
Jon Maloy414574a2018-02-15 10:40:45 +0100666 if (ret < 0)
Wang Haifa6882c2020-11-09 22:09:13 +0800667 goto err_start;
Jon Maloy414574a2018-02-15 10:40:45 +0100668
Jon Maloy026321c2018-02-15 10:40:51 +0100669 ret = tipc_topsrv_create_listener(srv);
Jon Maloy414574a2018-02-15 10:40:45 +0100670 if (ret < 0)
Wang Haifa6882c2020-11-09 22:09:13 +0800671 goto err_create;
Jon Maloy414574a2018-02-15 10:40:45 +0100672
Wang Haifa6882c2020-11-09 22:09:13 +0800673 return 0;
674
675err_create:
676 tipc_topsrv_work_stop(srv);
677err_start:
678 kfree(srv);
Ying Xuec756891a2013-08-01 08:29:18 -0400679 return ret;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400680}
681
Junwei Hu526f5b82019-05-20 14:43:59 +0800682static void tipc_topsrv_stop(struct net *net)
Ying Xuec5fa7b32013-06-17 10:54:39 -0400683{
Jon Maloy026321c2018-02-15 10:40:51 +0100684 struct tipc_topsrv *srv = tipc_topsrv(net);
Jon Maloy0ef897b2018-02-15 10:40:50 +0100685 struct socket *lsock = srv->listener;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400686 struct tipc_conn *con;
Ying Xuec5fa7b32013-06-17 10:54:39 -0400687 int id;
688
Jon Maloy5c45ab22018-02-15 10:40:49 +0100689 spin_lock_bh(&srv->idr_lock);
690 for (id = 0; srv->idr_in_use; id++) {
691 con = idr_find(&srv->conn_idr, id);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400692 if (con) {
Jon Maloy5c45ab22018-02-15 10:40:49 +0100693 spin_unlock_bh(&srv->idr_lock);
Jon Maloy026321c2018-02-15 10:40:51 +0100694 tipc_conn_close(con);
Jon Maloy5c45ab22018-02-15 10:40:49 +0100695 spin_lock_bh(&srv->idr_lock);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400696 }
697 }
Jon Maloy0ef897b2018-02-15 10:40:50 +0100698 __module_get(lsock->ops->owner);
699 __module_get(lsock->sk->sk_prot_creator->owner);
Jon Maloy0ef897b2018-02-15 10:40:50 +0100700 srv->listener = NULL;
Jon Maloy5c45ab22018-02-15 10:40:49 +0100701 spin_unlock_bh(&srv->idr_lock);
Paolo Abeni26736a02018-02-19 19:02:24 +0100702 sock_release(lsock);
Jon Maloy026321c2018-02-15 10:40:51 +0100703 tipc_topsrv_work_stop(srv);
Jon Maloy5c45ab22018-02-15 10:40:49 +0100704 idr_destroy(&srv->conn_idr);
Jon Maloy5c45ab22018-02-15 10:40:49 +0100705 kfree(srv);
Ying Xuec5fa7b32013-06-17 10:54:39 -0400706}
Junwei Hu526f5b82019-05-20 14:43:59 +0800707
708int __net_init tipc_topsrv_init_net(struct net *net)
709{
710 return tipc_topsrv_start(net);
711}
712
713void __net_exit tipc_topsrv_exit_net(struct net *net)
714{
715 tipc_topsrv_stop(net);
716}