2 * net/tipc/server.c: TIPC server infrastructure
4 * Copyright (c) 2012-2013, Wind River Systems
5 * Copyright (c) 2017-2018, Ericsson AB
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
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.
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.
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.
45 #include <linux/module.h>
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
53 #define TIPC_SERVER_NAME_LEN 32
56 * struct tipc_topsrv - TIPC server structure
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
61 * @awork: accept work item
62 * @rcv_wq: receive workqueue
63 * @send_wq: send workqueue
64 * @listener: topsrv listener socket
69 spinlock_t idr_lock
; /* for idr list */
72 struct work_struct awork
;
73 struct workqueue_struct
*rcv_wq
;
74 struct workqueue_struct
*send_wq
;
75 struct socket
*listener
;
76 char name
[TIPC_SERVER_NAME_LEN
];
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
86 * @sub_list: lsit to all pertaing subscriptions
87 * @sub_lock: lock protecting the subscription list
88 * @rwork: receive work item
89 * @outqueue: pointer to first outbound message in queue
90 * @outqueue_lock: control access to the outqueue
91 * @swork: send work item
98 struct tipc_topsrv
*server
;
99 struct list_head sub_list
;
100 spinlock_t sub_lock
; /* for subscription list */
101 struct work_struct rwork
;
102 struct list_head outqueue
;
103 spinlock_t outqueue_lock
; /* for outqueue */
104 struct work_struct swork
;
107 /* An entry waiting to be sent */
108 struct outqueue_entry
{
110 struct tipc_event evt
;
111 struct list_head list
;
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
);
119 static bool connected(struct tipc_conn
*con
)
121 return con
&& test_bit(CF_CONNECTED
, &con
->flags
);
124 static void tipc_conn_kref_release(struct kref
*kref
)
126 struct tipc_conn
*con
= container_of(kref
, struct tipc_conn
, kref
);
127 struct tipc_topsrv
*s
= con
->server
;
128 struct outqueue_entry
*e
, *safe
;
130 spin_lock_bh(&s
->idr_lock
);
131 idr_remove(&s
->conn_idr
, con
->conid
);
133 spin_unlock_bh(&s
->idr_lock
);
135 sock_release(con
->sock
);
137 spin_lock_bh(&con
->outqueue_lock
);
138 list_for_each_entry_safe(e
, safe
, &con
->outqueue
, list
) {
142 spin_unlock_bh(&con
->outqueue_lock
);
146 static void conn_put(struct tipc_conn
*con
)
148 kref_put(&con
->kref
, tipc_conn_kref_release
);
151 static void conn_get(struct tipc_conn
*con
)
153 kref_get(&con
->kref
);
156 static void tipc_conn_close(struct tipc_conn
*con
)
158 struct sock
*sk
= con
->sock
->sk
;
159 bool disconnect
= false;
161 write_lock_bh(&sk
->sk_callback_lock
);
162 disconnect
= test_and_clear_bit(CF_CONNECTED
, &con
->flags
);
165 sk
->sk_user_data
= NULL
;
166 tipc_conn_delete_sub(con
, NULL
);
168 write_unlock_bh(&sk
->sk_callback_lock
);
170 /* Handle concurrent calls from sending and receiving threads */
174 /* Don't flush pending works, -just let them expire */
175 kernel_sock_shutdown(con
->sock
, SHUT_RDWR
);
180 static struct tipc_conn
*tipc_conn_alloc(struct tipc_topsrv
*s
)
182 struct tipc_conn
*con
;
185 con
= kzalloc(sizeof(*con
), GFP_ATOMIC
);
187 return ERR_PTR(-ENOMEM
);
189 kref_init(&con
->kref
);
190 INIT_LIST_HEAD(&con
->outqueue
);
191 INIT_LIST_HEAD(&con
->sub_list
);
192 spin_lock_init(&con
->outqueue_lock
);
193 spin_lock_init(&con
->sub_lock
);
194 INIT_WORK(&con
->swork
, tipc_conn_send_work
);
195 INIT_WORK(&con
->rwork
, tipc_conn_recv_work
);
197 spin_lock_bh(&s
->idr_lock
);
198 ret
= idr_alloc(&s
->conn_idr
, con
, 0, 0, GFP_ATOMIC
);
201 spin_unlock_bh(&s
->idr_lock
);
202 return ERR_PTR(-ENOMEM
);
206 spin_unlock_bh(&s
->idr_lock
);
208 set_bit(CF_CONNECTED
, &con
->flags
);
214 static struct tipc_conn
*tipc_conn_lookup(struct tipc_topsrv
*s
, int conid
)
216 struct tipc_conn
*con
;
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
))
222 spin_unlock_bh(&s
->idr_lock
);
226 /* tipc_conn_delete_sub - delete a specific or all subscriptions
227 * for a given subscriber
229 static void tipc_conn_delete_sub(struct tipc_conn
*con
, struct tipc_subscr
*s
)
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
;
235 spin_lock_bh(&con
->sub_lock
);
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
);
244 spin_unlock_bh(&con
->sub_lock
);
247 static void tipc_conn_send_to_sock(struct tipc_conn
*con
)
249 struct list_head
*queue
= &con
->outqueue
;
250 struct tipc_topsrv
*srv
= con
->server
;
251 struct outqueue_entry
*e
;
252 struct tipc_event
*evt
;
258 spin_lock_bh(&con
->outqueue_lock
);
260 while (!list_empty(queue
)) {
261 e
= list_first_entry(queue
, struct outqueue_entry
, list
);
263 spin_unlock_bh(&con
->outqueue_lock
);
266 tipc_conn_delete_sub(con
, &evt
->s
);
268 memset(&msg
, 0, sizeof(msg
));
269 msg
.msg_flags
= MSG_DONTWAIT
;
271 iov
.iov_len
= sizeof(*evt
);
275 ret
= kernel_sendmsg(con
->sock
, &msg
, &iov
,
277 if (ret
== -EWOULDBLOCK
|| ret
== 0) {
280 } else if (ret
< 0) {
281 return tipc_conn_close(con
);
284 tipc_topsrv_kern_evt(srv
->net
, evt
);
287 /* Don't starve users filling buffers */
288 if (++count
>= MAX_SEND_MSG_COUNT
) {
292 spin_lock_bh(&con
->outqueue_lock
);
296 spin_unlock_bh(&con
->outqueue_lock
);
299 static void tipc_conn_send_work(struct work_struct
*work
)
301 struct tipc_conn
*con
= container_of(work
, struct tipc_conn
, swork
);
304 tipc_conn_send_to_sock(con
);
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()
312 void tipc_topsrv_queue_evt(struct net
*net
, int conid
,
313 u32 event
, struct tipc_event
*evt
)
315 struct tipc_topsrv
*srv
= tipc_topsrv(net
);
316 struct outqueue_entry
*e
;
317 struct tipc_conn
*con
;
319 con
= tipc_conn_lookup(srv
, conid
);
326 e
= kmalloc(sizeof(*e
), GFP_ATOMIC
);
329 e
->inactive
= (event
== TIPC_SUBSCR_TIMEOUT
);
330 memcpy(&e
->evt
, evt
, sizeof(*evt
));
331 spin_lock_bh(&con
->outqueue_lock
);
332 list_add_tail(&e
->list
, &con
->outqueue
);
333 spin_unlock_bh(&con
->outqueue_lock
);
335 if (queue_work(srv
->send_wq
, &con
->swork
))
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()
345 static void tipc_conn_write_space(struct sock
*sk
)
347 struct tipc_conn
*con
;
349 read_lock_bh(&sk
->sk_callback_lock
);
350 con
= sk
->sk_user_data
;
351 if (connected(con
)) {
353 if (!queue_work(con
->server
->send_wq
, &con
->swork
))
356 read_unlock_bh(&sk
->sk_callback_lock
);
359 static int tipc_conn_rcv_sub(struct tipc_topsrv
*srv
,
360 struct tipc_conn
*con
,
361 struct tipc_subscr
*s
)
363 struct tipc_net
*tn
= tipc_net(srv
->net
);
364 struct tipc_subscription
*sub
;
366 if (tipc_sub_read(s
, filter
) & TIPC_SUB_CANCEL
) {
367 s
->filter
&= __constant_ntohl(~TIPC_SUB_CANCEL
);
368 tipc_conn_delete_sub(con
, s
);
371 if (atomic_read(&tn
->subscription_count
) >= TIPC_MAX_SUBSCR
) {
372 pr_warn("Subscription rejected, max (%u)\n", TIPC_MAX_SUBSCR
);
375 sub
= tipc_sub_subscribe(srv
->net
, s
, con
->conid
);
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
);
385 static int tipc_conn_rcv_from_sock(struct tipc_conn
*con
)
387 struct tipc_topsrv
*srv
= con
->server
;
388 struct sock
*sk
= con
->sock
->sk
;
389 struct msghdr msg
= {};
390 struct tipc_subscr s
;
395 iov
.iov_len
= sizeof(s
);
397 iov_iter_kvec(&msg
.msg_iter
, READ
, &iov
, 1, iov
.iov_len
);
398 ret
= sock_recvmsg(con
->sock
, &msg
, MSG_DONTWAIT
);
399 if (ret
== -EWOULDBLOCK
)
401 if (ret
== sizeof(s
)) {
402 read_lock_bh(&sk
->sk_callback_lock
);
403 ret
= tipc_conn_rcv_sub(srv
, con
, &s
);
404 read_unlock_bh(&sk
->sk_callback_lock
);
407 tipc_conn_close(con
);
412 static void tipc_conn_recv_work(struct work_struct
*work
)
414 struct tipc_conn
*con
= container_of(work
, struct tipc_conn
, rwork
);
417 while (connected(con
)) {
418 if (tipc_conn_rcv_from_sock(con
))
421 /* Don't flood Rx machine */
422 if (++count
>= MAX_RECV_MSG_COUNT
) {
430 /* tipc_conn_data_ready - interrupt callback indicating the socket has data
431 * The queued work is launched into tipc_recv_work()->tipc_conn_rcv_from_sock()
433 static void tipc_conn_data_ready(struct sock
*sk
)
435 struct tipc_conn
*con
;
437 read_lock_bh(&sk
->sk_callback_lock
);
438 con
= sk
->sk_user_data
;
439 if (connected(con
)) {
441 if (!queue_work(con
->server
->rcv_wq
, &con
->rwork
))
444 read_unlock_bh(&sk
->sk_callback_lock
);
447 static void tipc_topsrv_accept(struct work_struct
*work
)
449 struct tipc_topsrv
*srv
= container_of(work
, struct tipc_topsrv
, awork
);
450 struct socket
*lsock
= srv
->listener
;
451 struct socket
*newsock
;
452 struct tipc_conn
*con
;
457 ret
= kernel_accept(lsock
, &newsock
, O_NONBLOCK
);
460 con
= tipc_conn_alloc(srv
);
463 sock_release(newsock
);
466 /* Register callbacks */
468 write_lock_bh(&newsk
->sk_callback_lock
);
469 newsk
->sk_data_ready
= tipc_conn_data_ready
;
470 newsk
->sk_write_space
= tipc_conn_write_space
;
471 newsk
->sk_user_data
= con
;
473 write_unlock_bh(&newsk
->sk_callback_lock
);
475 /* Wake up receive process in case of 'SYN+' message */
476 newsk
->sk_data_ready(newsk
);
480 /* tipc_topsrv_listener_data_ready - interrupt callback with connection request
481 * The queued job is launched into tipc_topsrv_accept()
483 static void tipc_topsrv_listener_data_ready(struct sock
*sk
)
485 struct tipc_topsrv
*srv
;
487 read_lock_bh(&sk
->sk_callback_lock
);
488 srv
= sk
->sk_user_data
;
490 queue_work(srv
->rcv_wq
, &srv
->awork
);
491 read_unlock_bh(&sk
->sk_callback_lock
);
494 static int tipc_topsrv_create_listener(struct tipc_topsrv
*srv
)
496 int imp
= TIPC_CRITICAL_IMPORTANCE
;
497 struct socket
*lsock
= NULL
;
498 struct sockaddr_tipc saddr
;
502 rc
= sock_create_kern(srv
->net
, AF_TIPC
, SOCK_SEQPACKET
, 0, &lsock
);
506 srv
->listener
= lsock
;
508 write_lock_bh(&sk
->sk_callback_lock
);
509 sk
->sk_data_ready
= tipc_topsrv_listener_data_ready
;
510 sk
->sk_user_data
= srv
;
511 write_unlock_bh(&sk
->sk_callback_lock
);
513 rc
= kernel_setsockopt(lsock
, SOL_TIPC
, TIPC_IMPORTANCE
,
514 (char *)&imp
, sizeof(imp
));
518 saddr
.family
= AF_TIPC
;
519 saddr
.addrtype
= TIPC_ADDR_NAMESEQ
;
520 saddr
.addr
.nameseq
.type
= TIPC_TOP_SRV
;
521 saddr
.addr
.nameseq
.lower
= TIPC_TOP_SRV
;
522 saddr
.addr
.nameseq
.upper
= TIPC_TOP_SRV
;
523 saddr
.scope
= TIPC_NODE_SCOPE
;
525 rc
= kernel_bind(lsock
, (struct sockaddr
*)&saddr
, sizeof(saddr
));
528 rc
= kernel_listen(lsock
, 0);
532 /* As server's listening socket owner and creator is the same module,
533 * we have to decrease TIPC module reference count to guarantee that
534 * it remains zero after the server socket is created, otherwise,
535 * executing "rmmod" command is unable to make TIPC module deleted
536 * after TIPC module is inserted successfully.
538 * However, the reference count is ever increased twice in
539 * sock_create_kern(): one is to increase the reference count of owner
540 * of TIPC socket's proto_ops struct; another is to increment the
541 * reference count of owner of TIPC proto struct. Therefore, we must
542 * decrement the module reference count twice to ensure that it keeps
543 * zero after server's listening socket is created. Of course, we
544 * must bump the module reference count twice as well before the socket
547 module_put(lsock
->ops
->owner
);
548 module_put(sk
->sk_prot_creator
->owner
);
556 bool tipc_topsrv_kern_subscr(struct net
*net
, u32 port
, u32 type
, u32 lower
,
557 u32 upper
, u32 filter
, int *conid
)
559 struct tipc_subscr sub
;
560 struct tipc_conn
*con
;
564 sub
.seq
.lower
= lower
;
565 sub
.seq
.upper
= upper
;
566 sub
.timeout
= TIPC_WAIT_FOREVER
;
568 *(u32
*)&sub
.usr_handle
= port
;
570 con
= tipc_conn_alloc(tipc_topsrv(net
));
576 rc
= tipc_conn_rcv_sub(tipc_topsrv(net
), con
, &sub
);
583 void tipc_topsrv_kern_unsubscr(struct net
*net
, int conid
)
585 struct tipc_conn
*con
;
587 con
= tipc_conn_lookup(tipc_topsrv(net
), conid
);
591 test_and_clear_bit(CF_CONNECTED
, &con
->flags
);
592 tipc_conn_delete_sub(con
, NULL
);
597 static void tipc_topsrv_kern_evt(struct net
*net
, struct tipc_event
*evt
)
599 u32 port
= *(u32
*)&evt
->s
.usr_handle
;
600 u32 self
= tipc_own_addr(net
);
601 struct sk_buff_head evtq
;
604 skb
= tipc_msg_create(TOP_SRV
, 0, INT_H_SIZE
, sizeof(*evt
),
605 self
, self
, port
, port
, 0);
608 msg_set_dest_droppable(buf_msg(skb
), true);
609 memcpy(msg_data(buf_msg(skb
)), evt
, sizeof(*evt
));
610 skb_queue_head_init(&evtq
);
611 __skb_queue_tail(&evtq
, skb
);
612 tipc_loopback_trace(net
, &evtq
);
613 tipc_sk_rcv(net
, &evtq
);
616 static int tipc_topsrv_work_start(struct tipc_topsrv
*s
)
618 s
->rcv_wq
= alloc_ordered_workqueue("tipc_rcv", 0);
620 pr_err("can't start tipc receive workqueue\n");
624 s
->send_wq
= alloc_ordered_workqueue("tipc_send", 0);
626 pr_err("can't start tipc send workqueue\n");
627 destroy_workqueue(s
->rcv_wq
);
634 static void tipc_topsrv_work_stop(struct tipc_topsrv
*s
)
636 destroy_workqueue(s
->rcv_wq
);
637 destroy_workqueue(s
->send_wq
);
640 static int tipc_topsrv_start(struct net
*net
)
642 struct tipc_net
*tn
= tipc_net(net
);
643 const char name
[] = "topology_server";
644 struct tipc_topsrv
*srv
;
647 srv
= kzalloc(sizeof(*srv
), GFP_ATOMIC
);
652 INIT_WORK(&srv
->awork
, tipc_topsrv_accept
);
654 strscpy(srv
->name
, name
, sizeof(srv
->name
));
656 atomic_set(&tn
->subscription_count
, 0);
658 spin_lock_init(&srv
->idr_lock
);
659 idr_init(&srv
->conn_idr
);
662 ret
= tipc_topsrv_work_start(srv
);
666 ret
= tipc_topsrv_create_listener(srv
);
668 tipc_topsrv_work_stop(srv
);
673 static void tipc_topsrv_stop(struct net
*net
)
675 struct tipc_topsrv
*srv
= tipc_topsrv(net
);
676 struct socket
*lsock
= srv
->listener
;
677 struct tipc_conn
*con
;
680 spin_lock_bh(&srv
->idr_lock
);
681 for (id
= 0; srv
->idr_in_use
; id
++) {
682 con
= idr_find(&srv
->conn_idr
, id
);
684 spin_unlock_bh(&srv
->idr_lock
);
685 tipc_conn_close(con
);
686 spin_lock_bh(&srv
->idr_lock
);
689 __module_get(lsock
->ops
->owner
);
690 __module_get(lsock
->sk
->sk_prot_creator
->owner
);
691 srv
->listener
= NULL
;
692 spin_unlock_bh(&srv
->idr_lock
);
694 tipc_topsrv_work_stop(srv
);
695 idr_destroy(&srv
->conn_idr
);
699 int __net_init
tipc_topsrv_init_net(struct net
*net
)
701 return tipc_topsrv_start(net
);
704 void __net_exit
tipc_topsrv_exit_net(struct net
*net
)
706 tipc_topsrv_stop(net
);