2 * net/tipc/server.c: TIPC server infrastructure
4 * Copyright (c) 2012-2013, Wind River Systems
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the names of the copyright holders nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
19 * Alternatively, this software may be distributed under the terms of the
20 * GNU General Public License ("GPL") version 2 as published by the Free
21 * Software Foundation.
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
27 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 * POSSIBILITY OF SUCH DAMAGE.
40 #include <linux/module.h>
42 /* Number of messages to send before rescheduling */
43 #define MAX_SEND_MSG_COUNT 25
44 #define MAX_RECV_MSG_COUNT 25
45 #define CF_CONNECTED 1
48 #define sock2con(x) ((struct tipc_conn *)(x)->sk_user_data)
51 * struct tipc_conn - TIPC connection structure
52 * @kref: reference counter to connection object
53 * @conid: connection identifier
54 * @sock: socket handler associated with connection
55 * @flags: indicates connection state
56 * @server: pointer to connected server
57 * @rwork: receive work item
58 * @usr_data: user-specified field
59 * @rx_action: what to do when connection socket is active
60 * @outqueue: pointer to first outbound message in queue
61 * @outqueue_lock: control access to the outqueue
62 * @outqueue: list of connection objects for its server
63 * @swork: send work item
70 struct tipc_server
*server
;
71 struct work_struct rwork
;
72 int (*rx_action
) (struct tipc_conn
*con
);
74 struct list_head outqueue
;
75 spinlock_t outqueue_lock
;
76 struct work_struct swork
;
79 /* An entry waiting to be sent */
80 struct outqueue_entry
{
81 struct list_head list
;
83 struct sockaddr_tipc dest
;
86 static void tipc_recv_work(struct work_struct
*work
);
87 static void tipc_send_work(struct work_struct
*work
);
88 static void tipc_clean_outqueues(struct tipc_conn
*con
);
89 static void tipc_sock_release(struct tipc_conn
*con
);
91 static void tipc_conn_kref_release(struct kref
*kref
)
93 struct tipc_conn
*con
= container_of(kref
, struct tipc_conn
, kref
);
94 struct sockaddr_tipc
*saddr
= con
->server
->saddr
;
95 struct socket
*sock
= con
->sock
;
100 if (test_bit(CF_SERVER
, &con
->flags
)) {
101 __module_get(sock
->ops
->owner
);
102 __module_get(sk
->sk_prot_creator
->owner
);
104 saddr
->scope
= -TIPC_NODE_SCOPE
;
105 kernel_bind(sock
, (struct sockaddr
*)saddr
, sizeof(*saddr
));
106 tipc_sock_release(con
);
111 tipc_clean_outqueues(con
);
115 static void conn_put(struct tipc_conn
*con
)
117 kref_put(&con
->kref
, tipc_conn_kref_release
);
120 static void conn_get(struct tipc_conn
*con
)
122 kref_get(&con
->kref
);
125 static struct tipc_conn
*tipc_conn_lookup(struct tipc_server
*s
, int conid
)
127 struct tipc_conn
*con
;
129 spin_lock_bh(&s
->idr_lock
);
130 con
= idr_find(&s
->conn_idr
, conid
);
133 spin_unlock_bh(&s
->idr_lock
);
137 static void sock_data_ready(struct sock
*sk
)
139 struct tipc_conn
*con
;
141 read_lock_bh(&sk
->sk_callback_lock
);
143 if (con
&& test_bit(CF_CONNECTED
, &con
->flags
)) {
145 if (!queue_work(con
->server
->rcv_wq
, &con
->rwork
))
148 read_unlock_bh(&sk
->sk_callback_lock
);
151 static void sock_write_space(struct sock
*sk
)
153 struct tipc_conn
*con
;
155 read_lock_bh(&sk
->sk_callback_lock
);
157 if (con
&& test_bit(CF_CONNECTED
, &con
->flags
)) {
159 if (!queue_work(con
->server
->send_wq
, &con
->swork
))
162 read_unlock_bh(&sk
->sk_callback_lock
);
165 static void tipc_register_callbacks(struct socket
*sock
, struct tipc_conn
*con
)
167 struct sock
*sk
= sock
->sk
;
169 write_lock_bh(&sk
->sk_callback_lock
);
171 sk
->sk_data_ready
= sock_data_ready
;
172 sk
->sk_write_space
= sock_write_space
;
173 sk
->sk_user_data
= con
;
177 write_unlock_bh(&sk
->sk_callback_lock
);
180 static void tipc_unregister_callbacks(struct tipc_conn
*con
)
182 struct sock
*sk
= con
->sock
->sk
;
184 write_lock_bh(&sk
->sk_callback_lock
);
185 sk
->sk_user_data
= NULL
;
186 write_unlock_bh(&sk
->sk_callback_lock
);
189 static void tipc_sock_release(struct tipc_conn
*con
)
191 struct tipc_server
*s
= con
->server
;
194 s
->tipc_conn_release(con
->conid
, con
->usr_data
);
196 tipc_unregister_callbacks(con
);
199 static void tipc_close_conn(struct tipc_conn
*con
)
201 struct tipc_server
*s
= con
->server
;
203 if (test_and_clear_bit(CF_CONNECTED
, &con
->flags
)) {
205 spin_lock_bh(&s
->idr_lock
);
206 idr_remove(&s
->conn_idr
, con
->conid
);
208 spin_unlock_bh(&s
->idr_lock
);
210 /* We shouldn't flush pending works as we may be in the
211 * thread. In fact the races with pending rx/tx work structs
212 * are harmless for us here as we have already deleted this
213 * connection from server connection list.
215 kernel_sock_shutdown(con
->sock
, SHUT_RDWR
);
221 static struct tipc_conn
*tipc_alloc_conn(struct tipc_server
*s
)
223 struct tipc_conn
*con
;
226 con
= kzalloc(sizeof(struct tipc_conn
), GFP_ATOMIC
);
228 return ERR_PTR(-ENOMEM
);
230 kref_init(&con
->kref
);
231 INIT_LIST_HEAD(&con
->outqueue
);
232 spin_lock_init(&con
->outqueue_lock
);
233 INIT_WORK(&con
->swork
, tipc_send_work
);
234 INIT_WORK(&con
->rwork
, tipc_recv_work
);
236 spin_lock_bh(&s
->idr_lock
);
237 ret
= idr_alloc(&s
->conn_idr
, con
, 0, 0, GFP_ATOMIC
);
240 spin_unlock_bh(&s
->idr_lock
);
241 return ERR_PTR(-ENOMEM
);
245 spin_unlock_bh(&s
->idr_lock
);
247 set_bit(CF_CONNECTED
, &con
->flags
);
253 static int tipc_receive_from_sock(struct tipc_conn
*con
)
255 struct msghdr msg
= {};
256 struct tipc_server
*s
= con
->server
;
257 struct sockaddr_tipc addr
;
262 buf
= kmem_cache_alloc(s
->rcvbuf_cache
, GFP_ATOMIC
);
269 iov
.iov_len
= s
->max_rcvbuf_size
;
270 msg
.msg_name
= &addr
;
271 ret
= kernel_recvmsg(con
->sock
, &msg
, &iov
, 1, iov
.iov_len
,
274 kmem_cache_free(s
->rcvbuf_cache
, buf
);
278 s
->tipc_conn_recvmsg(sock_net(con
->sock
->sk
), con
->conid
, &addr
,
279 con
->usr_data
, buf
, ret
);
281 kmem_cache_free(s
->rcvbuf_cache
, buf
);
286 if (ret
!= -EWOULDBLOCK
)
287 tipc_close_conn(con
);
289 /* Don't return success if we really got EOF */
295 static int tipc_accept_from_sock(struct tipc_conn
*con
)
297 struct tipc_server
*s
= con
->server
;
298 struct socket
*sock
= con
->sock
;
299 struct socket
*newsock
;
300 struct tipc_conn
*newcon
;
303 ret
= kernel_accept(sock
, &newsock
, O_NONBLOCK
);
307 newcon
= tipc_alloc_conn(con
->server
);
308 if (IS_ERR(newcon
)) {
309 ret
= PTR_ERR(newcon
);
310 sock_release(newsock
);
314 newcon
->rx_action
= tipc_receive_from_sock
;
315 tipc_register_callbacks(newsock
, newcon
);
317 /* Notify that new connection is incoming */
318 newcon
->usr_data
= s
->tipc_conn_new(newcon
->conid
);
319 if (!newcon
->usr_data
) {
320 sock_release(newsock
);
324 /* Wake up receive process in case of 'SYN+' message */
325 newsock
->sk
->sk_data_ready(newsock
->sk
);
329 static struct socket
*tipc_create_listen_sock(struct tipc_conn
*con
)
331 struct tipc_server
*s
= con
->server
;
332 struct socket
*sock
= NULL
;
335 ret
= sock_create_kern(s
->net
, AF_TIPC
, SOCK_SEQPACKET
, 0, &sock
);
338 ret
= kernel_setsockopt(sock
, SOL_TIPC
, TIPC_IMPORTANCE
,
339 (char *)&s
->imp
, sizeof(s
->imp
));
342 ret
= kernel_bind(sock
, (struct sockaddr
*)s
->saddr
, sizeof(*s
->saddr
));
349 con
->rx_action
= tipc_accept_from_sock
;
351 ret
= kernel_listen(sock
, 0);
357 con
->rx_action
= tipc_receive_from_sock
;
360 pr_err("Unknown socket type %d\n", s
->type
);
364 /* As server's listening socket owner and creator is the same module,
365 * we have to decrease TIPC module reference count to guarantee that
366 * it remains zero after the server socket is created, otherwise,
367 * executing "rmmod" command is unable to make TIPC module deleted
368 * after TIPC module is inserted successfully.
370 * However, the reference count is ever increased twice in
371 * sock_create_kern(): one is to increase the reference count of owner
372 * of TIPC socket's proto_ops struct; another is to increment the
373 * reference count of owner of TIPC proto struct. Therefore, we must
374 * decrement the module reference count twice to ensure that it keeps
375 * zero after server's listening socket is created. Of course, we
376 * must bump the module reference count twice as well before the socket
379 module_put(sock
->ops
->owner
);
380 module_put(sock
->sk
->sk_prot_creator
->owner
);
381 set_bit(CF_SERVER
, &con
->flags
);
386 kernel_sock_shutdown(sock
, SHUT_RDWR
);
391 static int tipc_open_listening_sock(struct tipc_server
*s
)
394 struct tipc_conn
*con
;
396 con
= tipc_alloc_conn(s
);
400 sock
= tipc_create_listen_sock(con
);
402 idr_remove(&s
->conn_idr
, con
->conid
);
408 tipc_register_callbacks(sock
, con
);
412 static struct outqueue_entry
*tipc_alloc_entry(void *data
, int len
)
414 struct outqueue_entry
*entry
;
417 entry
= kmalloc(sizeof(struct outqueue_entry
), GFP_ATOMIC
);
421 buf
= kmalloc(len
, GFP_ATOMIC
);
427 memcpy(buf
, data
, len
);
428 entry
->iov
.iov_base
= buf
;
429 entry
->iov
.iov_len
= len
;
434 static void tipc_free_entry(struct outqueue_entry
*e
)
436 kfree(e
->iov
.iov_base
);
440 static void tipc_clean_outqueues(struct tipc_conn
*con
)
442 struct outqueue_entry
*e
, *safe
;
444 spin_lock_bh(&con
->outqueue_lock
);
445 list_for_each_entry_safe(e
, safe
, &con
->outqueue
, list
) {
449 spin_unlock_bh(&con
->outqueue_lock
);
452 int tipc_conn_sendmsg(struct tipc_server
*s
, int conid
,
453 struct sockaddr_tipc
*addr
, void *data
, size_t len
)
455 struct outqueue_entry
*e
;
456 struct tipc_conn
*con
;
458 con
= tipc_conn_lookup(s
, conid
);
462 e
= tipc_alloc_entry(data
, len
);
469 memcpy(&e
->dest
, addr
, sizeof(struct sockaddr_tipc
));
471 spin_lock_bh(&con
->outqueue_lock
);
472 list_add_tail(&e
->list
, &con
->outqueue
);
473 spin_unlock_bh(&con
->outqueue_lock
);
475 if (test_bit(CF_CONNECTED
, &con
->flags
)) {
476 if (!queue_work(s
->send_wq
, &con
->swork
))
484 void tipc_conn_terminate(struct tipc_server
*s
, int conid
)
486 struct tipc_conn
*con
;
488 con
= tipc_conn_lookup(s
, conid
);
490 tipc_close_conn(con
);
495 static void tipc_send_to_sock(struct tipc_conn
*con
)
498 struct tipc_server
*s
= con
->server
;
499 struct outqueue_entry
*e
;
503 spin_lock_bh(&con
->outqueue_lock
);
505 e
= list_entry(con
->outqueue
.next
, struct outqueue_entry
,
507 if ((struct list_head
*) e
== &con
->outqueue
)
509 spin_unlock_bh(&con
->outqueue_lock
);
511 memset(&msg
, 0, sizeof(msg
));
512 msg
.msg_flags
= MSG_DONTWAIT
;
514 if (s
->type
== SOCK_DGRAM
|| s
->type
== SOCK_RDM
) {
515 msg
.msg_name
= &e
->dest
;
516 msg
.msg_namelen
= sizeof(struct sockaddr_tipc
);
518 ret
= kernel_sendmsg(con
->sock
, &msg
, &e
->iov
, 1,
520 if (ret
== -EWOULDBLOCK
|| ret
== 0) {
523 } else if (ret
< 0) {
527 /* Don't starve users filling buffers */
528 if (++count
>= MAX_SEND_MSG_COUNT
) {
533 spin_lock_bh(&con
->outqueue_lock
);
537 spin_unlock_bh(&con
->outqueue_lock
);
542 tipc_close_conn(con
);
545 static void tipc_recv_work(struct work_struct
*work
)
547 struct tipc_conn
*con
= container_of(work
, struct tipc_conn
, rwork
);
550 while (test_bit(CF_CONNECTED
, &con
->flags
)) {
551 if (con
->rx_action(con
))
554 /* Don't flood Rx machine */
555 if (++count
>= MAX_RECV_MSG_COUNT
) {
563 static void tipc_send_work(struct work_struct
*work
)
565 struct tipc_conn
*con
= container_of(work
, struct tipc_conn
, swork
);
567 if (test_bit(CF_CONNECTED
, &con
->flags
))
568 tipc_send_to_sock(con
);
573 static void tipc_work_stop(struct tipc_server
*s
)
575 destroy_workqueue(s
->rcv_wq
);
576 destroy_workqueue(s
->send_wq
);
579 static int tipc_work_start(struct tipc_server
*s
)
581 s
->rcv_wq
= alloc_ordered_workqueue("tipc_rcv", 0);
583 pr_err("can't start tipc receive workqueue\n");
587 s
->send_wq
= alloc_ordered_workqueue("tipc_send", 0);
589 pr_err("can't start tipc send workqueue\n");
590 destroy_workqueue(s
->rcv_wq
);
597 int tipc_server_start(struct tipc_server
*s
)
601 spin_lock_init(&s
->idr_lock
);
602 idr_init(&s
->conn_idr
);
605 s
->rcvbuf_cache
= kmem_cache_create(s
->name
, s
->max_rcvbuf_size
,
606 0, SLAB_HWCACHE_ALIGN
, NULL
);
607 if (!s
->rcvbuf_cache
)
610 ret
= tipc_work_start(s
);
612 kmem_cache_destroy(s
->rcvbuf_cache
);
615 ret
= tipc_open_listening_sock(s
);
618 kmem_cache_destroy(s
->rcvbuf_cache
);
624 void tipc_server_stop(struct tipc_server
*s
)
626 struct tipc_conn
*con
;
630 spin_lock_bh(&s
->idr_lock
);
631 for (id
= 0; total
< s
->idr_in_use
; id
++) {
632 con
= idr_find(&s
->conn_idr
, id
);
635 spin_unlock_bh(&s
->idr_lock
);
636 tipc_close_conn(con
);
637 spin_lock_bh(&s
->idr_lock
);
640 spin_unlock_bh(&s
->idr_lock
);
643 kmem_cache_destroy(s
->rcvbuf_cache
);
644 idr_destroy(&s
->conn_idr
);