tipc: set con sock in tipc_conn_alloc
[platform/kernel/linux-starfive.git] / net / tipc / topsrv.c
1 /*
2  * net/tipc/server.c: TIPC server infrastructure
3  *
4  * Copyright (c) 2012-2013, Wind River Systems
5  * Copyright (c) 2017-2018, Ericsson AB
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
37 #include "subscr.h"
38 #include "topsrv.h"
39 #include "core.h"
40 #include "socket.h"
41 #include "addr.h"
42 #include "msg.h"
43 #include "bearer.h"
44 #include <net/sock.h>
45 #include <linux/module.h>
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
51
52 #define TIPC_SERVER_NAME_LEN    32
53
54 /**
55  * struct tipc_topsrv - TIPC server structure
56  * @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
60  * @awork: accept work item
61  * @rcv_wq: receive workqueue
62  * @send_wq: send workqueue
63  * @listener: topsrv listener socket
64  * @name: server name
65  */
66 struct tipc_topsrv {
67         struct idr conn_idr;
68         spinlock_t idr_lock; /* for idr list */
69         int idr_in_use;
70         struct net *net;
71         struct work_struct awork;
72         struct workqueue_struct *rcv_wq;
73         struct workqueue_struct *send_wq;
74         struct socket *listener;
75         char name[TIPC_SERVER_NAME_LEN];
76 };
77
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
85  * @sub_list: lsit to all pertaing subscriptions
86  * @sub_lock: lock protecting the subscription list
87  * @rwork: receive work item
88  * @outqueue: pointer to first outbound message in queue
89  * @outqueue_lock: control access to the outqueue
90  * @swork: send work item
91  */
92 struct tipc_conn {
93         struct kref kref;
94         int conid;
95         struct socket *sock;
96         unsigned long flags;
97         struct tipc_topsrv *server;
98         struct list_head sub_list;
99         spinlock_t sub_lock; /* for subscription list */
100         struct work_struct rwork;
101         struct list_head outqueue;
102         spinlock_t outqueue_lock; /* for outqueue */
103         struct work_struct swork;
104 };
105
106 /* An entry waiting to be sent */
107 struct outqueue_entry {
108         bool inactive;
109         struct tipc_event evt;
110         struct list_head list;
111 };
112
113 static void tipc_conn_recv_work(struct work_struct *work);
114 static void tipc_conn_send_work(struct work_struct *work);
115 static void tipc_topsrv_kern_evt(struct net *net, struct tipc_event *evt);
116 static void tipc_conn_delete_sub(struct tipc_conn *con, struct tipc_subscr *s);
117
118 static bool connected(struct tipc_conn *con)
119 {
120         return con && test_bit(CF_CONNECTED, &con->flags);
121 }
122
123 static void tipc_conn_kref_release(struct kref *kref)
124 {
125         struct tipc_conn *con = container_of(kref, struct tipc_conn, kref);
126         struct tipc_topsrv *s = con->server;
127         struct outqueue_entry *e, *safe;
128
129         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);
133         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);
142         kfree(con);
143 }
144
145 static void conn_put(struct tipc_conn *con)
146 {
147         kref_put(&con->kref, tipc_conn_kref_release);
148 }
149
150 static void conn_get(struct tipc_conn *con)
151 {
152         kref_get(&con->kref);
153 }
154
155 static void tipc_conn_close(struct tipc_conn *con)
156 {
157         struct sock *sk = con->sock->sk;
158         bool disconnect = false;
159
160         write_lock_bh(&sk->sk_callback_lock);
161         disconnect = test_and_clear_bit(CF_CONNECTED, &con->flags);
162
163         if (disconnect) {
164                 sk->sk_user_data = NULL;
165                 tipc_conn_delete_sub(con, NULL);
166         }
167         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);
175
176         conn_put(con);
177 }
178
179 static struct tipc_conn *tipc_conn_alloc(struct tipc_topsrv *s, struct socket *sock)
180 {
181         struct tipc_conn *con;
182         int ret;
183
184         con = kzalloc(sizeof(*con), GFP_ATOMIC);
185         if (!con)
186                 return ERR_PTR(-ENOMEM);
187
188         kref_init(&con->kref);
189         INIT_LIST_HEAD(&con->outqueue);
190         INIT_LIST_HEAD(&con->sub_list);
191         spin_lock_init(&con->outqueue_lock);
192         spin_lock_init(&con->sub_lock);
193         INIT_WORK(&con->swork, tipc_conn_send_work);
194         INIT_WORK(&con->rwork, tipc_conn_recv_work);
195
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
206         set_bit(CF_CONNECTED, &con->flags);
207         con->server = s;
208         con->sock = sock;
209         spin_unlock_bh(&s->idr_lock);
210
211         return con;
212 }
213
214 static struct tipc_conn *tipc_conn_lookup(struct tipc_topsrv *s, int conid)
215 {
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;
234
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);
240                         if (s)
241                                 break;
242                 }
243         }
244         spin_unlock_bh(&con->sub_lock);
245 }
246
247 static void tipc_conn_send_to_sock(struct tipc_conn *con)
248 {
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;
254         struct kvec iov;
255         int count = 0;
256         int ret;
257
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);
295         }
296         spin_unlock_bh(&con->outqueue_lock);
297 }
298
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);
307 }
308
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()
311  */
312 void tipc_topsrv_queue_evt(struct net *net, int conid,
313                            u32 event, struct tipc_event *evt)
314 {
315         struct tipc_topsrv *srv = tipc_topsrv(net);
316         struct outqueue_entry *e;
317         struct tipc_conn *con;
318
319         con = tipc_conn_lookup(srv, conid);
320         if (!con)
321                 return;
322
323         if (!connected(con))
324                 goto err;
325
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));
331         spin_lock_bh(&con->outqueue_lock);
332         list_add_tail(&e->list, &con->outqueue);
333         spin_unlock_bh(&con->outqueue_lock);
334
335         if (queue_work(srv->send_wq, &con->swork))
336                 return;
337 err:
338         conn_put(con);
339 }
340
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)
346 {
347         struct tipc_conn *con;
348
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);
357 }
358
359 static int tipc_conn_rcv_sub(struct tipc_topsrv *srv,
360                              struct tipc_conn *con,
361                              struct tipc_subscr *s)
362 {
363         struct tipc_net *tn = tipc_net(srv->net);
364         struct tipc_subscription *sub;
365         u32 s_filter = tipc_sub_read(s, filter);
366
367         if (s_filter & TIPC_SUB_CANCEL) {
368                 tipc_sub_write(s, filter, s_filter & ~TIPC_SUB_CANCEL);
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;
384 }
385
386 static int tipc_conn_rcv_from_sock(struct tipc_conn *con)
387 {
388         struct tipc_topsrv *srv = con->server;
389         struct sock *sk = con->sock->sk;
390         struct msghdr msg = {};
391         struct tipc_subscr s;
392         struct kvec iov;
393         int ret;
394
395         iov.iov_base = &s;
396         iov.iov_len = sizeof(s);
397         msg.msg_name = NULL;
398         iov_iter_kvec(&msg.msg_iter, READ, &iov, 1, iov.iov_len);
399         ret = sock_recvmsg(con->sock, &msg, MSG_DONTWAIT);
400         if (ret == -EWOULDBLOCK)
401                 return -EWOULDBLOCK;
402         if (ret == sizeof(s)) {
403                 read_lock_bh(&sk->sk_callback_lock);
404                 /* RACE: the connection can be closed in the meantime */
405                 if (likely(connected(con)))
406                         ret = tipc_conn_rcv_sub(srv, con, &s);
407                 read_unlock_bh(&sk->sk_callback_lock);
408                 if (!ret)
409                         return 0;
410         }
411
412         tipc_conn_close(con);
413         return ret;
414 }
415
416 static void tipc_conn_recv_work(struct work_struct *work)
417 {
418         struct tipc_conn *con = container_of(work, struct tipc_conn, rwork);
419         int count = 0;
420
421         while (connected(con)) {
422                 if (tipc_conn_rcv_from_sock(con))
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
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)
438 {
439         struct tipc_conn *con;
440
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);
449 }
450
451 static void tipc_topsrv_accept(struct work_struct *work)
452 {
453         struct tipc_topsrv *srv = container_of(work, struct tipc_topsrv, awork);
454         struct socket *newsock, *lsock;
455         struct tipc_conn *con;
456         struct sock *newsk;
457         int ret;
458
459         spin_lock_bh(&srv->idr_lock);
460         if (!srv->listener) {
461                 spin_unlock_bh(&srv->idr_lock);
462                 return;
463         }
464         lsock = srv->listener;
465         spin_unlock_bh(&srv->idr_lock);
466
467         while (1) {
468                 ret = kernel_accept(lsock, &newsock, O_NONBLOCK);
469                 if (ret < 0)
470                         return;
471                 con = tipc_conn_alloc(srv, newsock);
472                 if (IS_ERR(con)) {
473                         ret = PTR_ERR(con);
474                         sock_release(newsock);
475                         return;
476                 }
477                 /* Register callbacks */
478                 newsk = newsock->sk;
479                 write_lock_bh(&newsk->sk_callback_lock);
480                 newsk->sk_data_ready = tipc_conn_data_ready;
481                 newsk->sk_write_space = tipc_conn_write_space;
482                 newsk->sk_user_data = con;
483                 write_unlock_bh(&newsk->sk_callback_lock);
484
485                 /* Wake up receive process in case of 'SYN+' message */
486                 newsk->sk_data_ready(newsk);
487         }
488 }
489
490 /* tipc_topsrv_listener_data_ready - interrupt callback with connection request
491  * The queued job is launched into tipc_topsrv_accept()
492  */
493 static void tipc_topsrv_listener_data_ready(struct sock *sk)
494 {
495         struct tipc_topsrv *srv;
496
497         read_lock_bh(&sk->sk_callback_lock);
498         srv = sk->sk_user_data;
499         if (srv)
500                 queue_work(srv->rcv_wq, &srv->awork);
501         read_unlock_bh(&sk->sk_callback_lock);
502 }
503
504 static int tipc_topsrv_create_listener(struct tipc_topsrv *srv)
505 {
506         struct socket *lsock = NULL;
507         struct sockaddr_tipc saddr;
508         struct sock *sk;
509         int rc;
510
511         rc = sock_create_kern(srv->net, AF_TIPC, SOCK_SEQPACKET, 0, &lsock);
512         if (rc < 0)
513                 return rc;
514
515         srv->listener = lsock;
516         sk = lsock->sk;
517         write_lock_bh(&sk->sk_callback_lock);
518         sk->sk_data_ready = tipc_topsrv_listener_data_ready;
519         sk->sk_user_data = srv;
520         write_unlock_bh(&sk->sk_callback_lock);
521
522         lock_sock(sk);
523         rc = tsk_set_importance(sk, TIPC_CRITICAL_IMPORTANCE);
524         release_sock(sk);
525         if (rc < 0)
526                 goto err;
527
528         saddr.family                    = AF_TIPC;
529         saddr.addrtype                  = TIPC_SERVICE_RANGE;
530         saddr.addr.nameseq.type = TIPC_TOP_SRV;
531         saddr.addr.nameseq.lower        = TIPC_TOP_SRV;
532         saddr.addr.nameseq.upper        = TIPC_TOP_SRV;
533         saddr.scope                     = TIPC_NODE_SCOPE;
534
535         rc = tipc_sk_bind(lsock, (struct sockaddr *)&saddr, sizeof(saddr));
536         if (rc < 0)
537                 goto err;
538         rc = kernel_listen(lsock, 0);
539         if (rc < 0)
540                 goto err;
541
542         /* As server's listening socket owner and creator is the same module,
543          * we have to decrease TIPC module reference count to guarantee that
544          * it remains zero after the server socket is created, otherwise,
545          * executing "rmmod" command is unable to make TIPC module deleted
546          * after TIPC module is inserted successfully.
547          *
548          * However, the reference count is ever increased twice in
549          * sock_create_kern(): one is to increase the reference count of owner
550          * of TIPC socket's proto_ops struct; another is to increment the
551          * reference count of owner of TIPC proto struct. Therefore, we must
552          * decrement the module reference count twice to ensure that it keeps
553          * zero after server's listening socket is created. Of course, we
554          * must bump the module reference count twice as well before the socket
555          * is closed.
556          */
557         module_put(lsock->ops->owner);
558         module_put(sk->sk_prot_creator->owner);
559
560         return 0;
561 err:
562         sock_release(lsock);
563         return -EINVAL;
564 }
565
566 bool tipc_topsrv_kern_subscr(struct net *net, u32 port, u32 type, u32 lower,
567                              u32 upper, u32 filter, int *conid)
568 {
569         struct tipc_subscr sub;
570         struct tipc_conn *con;
571         int rc;
572
573         sub.seq.type = type;
574         sub.seq.lower = lower;
575         sub.seq.upper = upper;
576         sub.timeout = TIPC_WAIT_FOREVER;
577         sub.filter = filter;
578         *(u64 *)&sub.usr_handle = (u64)port;
579
580         con = tipc_conn_alloc(tipc_topsrv(net), NULL);
581         if (IS_ERR(con))
582                 return false;
583
584         *conid = con->conid;
585         rc = tipc_conn_rcv_sub(tipc_topsrv(net), con, &sub);
586         if (rc >= 0)
587                 return true;
588         conn_put(con);
589         return false;
590 }
591
592 void tipc_topsrv_kern_unsubscr(struct net *net, int conid)
593 {
594         struct tipc_conn *con;
595
596         con = tipc_conn_lookup(tipc_topsrv(net), conid);
597         if (!con)
598                 return;
599
600         test_and_clear_bit(CF_CONNECTED, &con->flags);
601         tipc_conn_delete_sub(con, NULL);
602         conn_put(con);
603         conn_put(con);
604 }
605
606 static void tipc_topsrv_kern_evt(struct net *net, struct tipc_event *evt)
607 {
608         u32 port = *(u32 *)&evt->s.usr_handle;
609         u32 self = tipc_own_addr(net);
610         struct sk_buff_head evtq;
611         struct sk_buff *skb;
612
613         skb = tipc_msg_create(TOP_SRV, 0, INT_H_SIZE, sizeof(*evt),
614                               self, self, port, port, 0);
615         if (!skb)
616                 return;
617         msg_set_dest_droppable(buf_msg(skb), true);
618         memcpy(msg_data(buf_msg(skb)), evt, sizeof(*evt));
619         skb_queue_head_init(&evtq);
620         __skb_queue_tail(&evtq, skb);
621         tipc_loopback_trace(net, &evtq);
622         tipc_sk_rcv(net, &evtq);
623 }
624
625 static int tipc_topsrv_work_start(struct tipc_topsrv *s)
626 {
627         s->rcv_wq = alloc_ordered_workqueue("tipc_rcv", 0);
628         if (!s->rcv_wq) {
629                 pr_err("can't start tipc receive workqueue\n");
630                 return -ENOMEM;
631         }
632
633         s->send_wq = alloc_ordered_workqueue("tipc_send", 0);
634         if (!s->send_wq) {
635                 pr_err("can't start tipc send workqueue\n");
636                 destroy_workqueue(s->rcv_wq);
637                 return -ENOMEM;
638         }
639
640         return 0;
641 }
642
643 static void tipc_topsrv_work_stop(struct tipc_topsrv *s)
644 {
645         destroy_workqueue(s->rcv_wq);
646         destroy_workqueue(s->send_wq);
647 }
648
649 static int tipc_topsrv_start(struct net *net)
650 {
651         struct tipc_net *tn = tipc_net(net);
652         const char name[] = "topology_server";
653         struct tipc_topsrv *srv;
654         int ret;
655
656         srv = kzalloc(sizeof(*srv), GFP_ATOMIC);
657         if (!srv)
658                 return -ENOMEM;
659
660         srv->net = net;
661         INIT_WORK(&srv->awork, tipc_topsrv_accept);
662
663         strscpy(srv->name, name, sizeof(srv->name));
664         tn->topsrv = srv;
665         atomic_set(&tn->subscription_count, 0);
666
667         spin_lock_init(&srv->idr_lock);
668         idr_init(&srv->conn_idr);
669         srv->idr_in_use = 0;
670
671         ret = tipc_topsrv_work_start(srv);
672         if (ret < 0)
673                 goto err_start;
674
675         ret = tipc_topsrv_create_listener(srv);
676         if (ret < 0)
677                 goto err_create;
678
679         return 0;
680
681 err_create:
682         tipc_topsrv_work_stop(srv);
683 err_start:
684         kfree(srv);
685         return ret;
686 }
687
688 static void tipc_topsrv_stop(struct net *net)
689 {
690         struct tipc_topsrv *srv = tipc_topsrv(net);
691         struct socket *lsock = srv->listener;
692         struct tipc_conn *con;
693         int id;
694
695         spin_lock_bh(&srv->idr_lock);
696         for (id = 0; srv->idr_in_use; id++) {
697                 con = idr_find(&srv->conn_idr, id);
698                 if (con) {
699                         spin_unlock_bh(&srv->idr_lock);
700                         tipc_conn_close(con);
701                         spin_lock_bh(&srv->idr_lock);
702                 }
703         }
704         __module_get(lsock->ops->owner);
705         __module_get(lsock->sk->sk_prot_creator->owner);
706         srv->listener = NULL;
707         spin_unlock_bh(&srv->idr_lock);
708
709         tipc_topsrv_work_stop(srv);
710         sock_release(lsock);
711         idr_destroy(&srv->conn_idr);
712         kfree(srv);
713 }
714
715 int __net_init tipc_topsrv_init_net(struct net *net)
716 {
717         return tipc_topsrv_start(net);
718 }
719
720 void __net_exit tipc_topsrv_exit_net(struct net *net)
721 {
722         tipc_topsrv_stop(net);
723 }