blob: 251065dfd8df8b81e5500af0e63e5a52cf8042b7 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
Allan Stephens5b06c85c2008-05-19 13:30:13 -07002 * net/tipc/subscr.c: TIPC network topology service
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Per Liden593a5f22006-01-11 19:14:19 +01004 * Copyright (c) 2000-2006, Ericsson AB
Ying Xue13a2e892013-06-17 10:54:40 -04005 * Copyright (c) 2005-2007, 2010-2013, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 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.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * 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
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "name_table.h"
Allan Stephens5b06c85c2008-05-19 13:30:13 -070039#include "subscr.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040
41/**
Paul Gortmaker11f99902011-12-29 20:49:39 -050042 * struct tipc_subscriber - TIPC network topology subscriber
Ying Xue00bc00a92015-05-04 10:36:46 +080043 * @kref: reference counter to tipc_subscription object
Ying Xue13a2e892013-06-17 10:54:40 -040044 * @conid: connection identifier to server connecting to subscriber
stephen hemminger963a18552014-01-12 12:48:00 -080045 * @lock: control access to subscriber
Ying Xue57f1d182015-05-04 10:36:44 +080046 * @subscrp_list: list of subscription objects for this subscriber
Per Lidenb97bf3f2006-01-02 19:04:38 +010047 */
Paul Gortmaker11f99902011-12-29 20:49:39 -050048struct tipc_subscriber {
Ying Xue00bc00a92015-05-04 10:36:46 +080049 struct kref kref;
Ying Xue13a2e892013-06-17 10:54:40 -040050 int conid;
51 spinlock_t lock;
Ying Xue57f1d182015-05-04 10:36:44 +080052 struct list_head subscrp_list;
Per Lidenb97bf3f2006-01-02 19:04:38 +010053};
54
Ying Xue00bc00a92015-05-04 10:36:46 +080055static void tipc_subscrb_put(struct tipc_subscriber *subscriber);
56
Per Lidenb97bf3f2006-01-02 19:04:38 +010057/**
Neil Hormandb5a7532010-10-21 01:06:16 +000058 * htohl - convert value to endianness used by destination
59 * @in: value to convert
60 * @swap: non-zero if endianness must be reversed
61 *
62 * Returns converted value
63 */
Neil Hormandb5a7532010-10-21 01:06:16 +000064static u32 htohl(u32 in, int swap)
65{
66 return swap ? swab32(in) : in;
67}
68
Ying Xue57f1d182015-05-04 10:36:44 +080069static void tipc_subscrp_send_event(struct tipc_subscription *sub,
70 u32 found_lower, u32 found_upper,
71 u32 event, u32 port_ref, u32 node)
Per Lidenb97bf3f2006-01-02 19:04:38 +010072{
Ying Xuea62fbcc2015-01-09 15:27:11 +080073 struct tipc_net *tn = net_generic(sub->net, tipc_net_id);
Ying Xue13a2e892013-06-17 10:54:40 -040074 struct tipc_subscriber *subscriber = sub->subscriber;
75 struct kvec msg_sect;
Per Lidenb97bf3f2006-01-02 19:04:38 +010076
77 msg_sect.iov_base = (void *)&sub->evt;
78 msg_sect.iov_len = sizeof(struct tipc_event);
Neil Hormandb5a7532010-10-21 01:06:16 +000079 sub->evt.event = htohl(event, sub->swap);
80 sub->evt.found_lower = htohl(found_lower, sub->swap);
81 sub->evt.found_upper = htohl(found_upper, sub->swap);
82 sub->evt.port.ref = htohl(port_ref, sub->swap);
83 sub->evt.port.node = htohl(node, sub->swap);
Ying Xuea62fbcc2015-01-09 15:27:11 +080084 tipc_conn_sendmsg(tn->topsrv, subscriber->conid, NULL,
85 msg_sect.iov_base, msg_sect.iov_len);
Per Lidenb97bf3f2006-01-02 19:04:38 +010086}
87
88/**
Ying Xue57f1d182015-05-04 10:36:44 +080089 * tipc_subscrp_check_overlap - test for subscription overlap with the
90 * given values
Per Lidenb97bf3f2006-01-02 19:04:38 +010091 *
92 * Returns 1 if there is overlap, otherwise 0.
93 */
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +010094int tipc_subscrp_check_overlap(struct tipc_name_seq *seq, u32 found_lower,
Ying Xue57f1d182015-05-04 10:36:44 +080095 u32 found_upper)
Per Lidenb97bf3f2006-01-02 19:04:38 +010096{
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +010097 if (found_lower < seq->lower)
98 found_lower = seq->lower;
99 if (found_upper > seq->upper)
100 found_upper = seq->upper;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100101 if (found_lower > found_upper)
102 return 0;
103 return 1;
104}
105
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +0100106u32 tipc_subscrp_convert_seq_type(u32 type, int swap)
107{
108 return htohl(type, swap);
109}
110
111void tipc_subscrp_convert_seq(struct tipc_name_seq *in, int swap,
112 struct tipc_name_seq *out)
113{
114 out->type = htohl(in->type, swap);
115 out->lower = htohl(in->lower, swap);
116 out->upper = htohl(in->upper, swap);
117}
118
Ying Xue57f1d182015-05-04 10:36:44 +0800119void tipc_subscrp_report_overlap(struct tipc_subscription *sub, u32 found_lower,
120 u32 found_upper, u32 event, u32 port_ref,
121 u32 node, int must)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122{
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +0100123 struct tipc_name_seq seq;
124
125 tipc_subscrp_convert_seq(&sub->evt.s.seq, sub->swap, &seq);
126 if (!tipc_subscrp_check_overlap(&seq, found_lower, found_upper))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127 return;
Parthasarathy Bhuvaragan30865232016-02-02 10:52:09 +0100128 if (!must &&
129 !(htohl(sub->evt.s.filter, sub->swap) & TIPC_SUB_PORTS))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130 return;
Allan Stephense15f8802008-05-19 13:27:31 -0700131
Ying Xue57f1d182015-05-04 10:36:44 +0800132 tipc_subscrp_send_event(sub, found_lower, found_upper, event, port_ref,
133 node);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100134}
135
Kees Cook31b102b2017-10-30 14:06:45 -0700136static void tipc_subscrp_timeout(struct timer_list *t)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100137{
Kees Cook31b102b2017-10-30 14:06:45 -0700138 struct tipc_subscription *sub = from_timer(sub, t, timer);
Ying Xue557d054c2017-03-21 10:47:49 +0100139 struct tipc_subscriber *subscriber = sub->subscriber;
140
141 spin_lock_bh(&subscriber->lock);
142 tipc_nametbl_unsubscribe(sub);
Ying Xue139bb362017-03-28 12:28:27 +0200143 list_del(&sub->subscrp_list);
Ying Xue557d054c2017-03-21 10:47:49 +0100144 spin_unlock_bh(&subscriber->lock);
Allan Stephens28353e72008-05-19 13:29:47 -0700145
146 /* Notify subscriber of timeout */
Ying Xue57f1d182015-05-04 10:36:44 +0800147 tipc_subscrp_send_event(sub, sub->evt.s.seq.lower, sub->evt.s.seq.upper,
148 TIPC_SUBSCR_TIMEOUT, 0, 0);
Allan Stephens28353e72008-05-19 13:29:47 -0700149
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100150 tipc_subscrp_put(sub);
Ying Xue00bc00a92015-05-04 10:36:46 +0800151}
152
153static void tipc_subscrb_kref_release(struct kref *kref)
154{
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100155 kfree(container_of(kref,struct tipc_subscriber, kref));
Ying Xue00bc00a92015-05-04 10:36:46 +0800156}
157
158static void tipc_subscrb_put(struct tipc_subscriber *subscriber)
159{
160 kref_put(&subscriber->kref, tipc_subscrb_kref_release);
161}
162
163static void tipc_subscrb_get(struct tipc_subscriber *subscriber)
164{
165 kref_get(&subscriber->kref);
166}
167
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100168static void tipc_subscrp_kref_release(struct kref *kref)
169{
170 struct tipc_subscription *sub = container_of(kref,
171 struct tipc_subscription,
172 kref);
173 struct tipc_net *tn = net_generic(sub->net, tipc_net_id);
174 struct tipc_subscriber *subscriber = sub->subscriber;
175
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100176 atomic_dec(&tn->subscription_count);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100177 kfree(sub);
178 tipc_subscrb_put(subscriber);
179}
180
Ying Xue7efea602017-03-28 12:28:28 +0200181void tipc_subscrp_put(struct tipc_subscription *subscription)
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100182{
183 kref_put(&subscription->kref, tipc_subscrp_kref_release);
184}
185
Ying Xue7efea602017-03-28 12:28:28 +0200186void tipc_subscrp_get(struct tipc_subscription *subscription)
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100187{
188 kref_get(&subscription->kref);
189}
190
191/* tipc_subscrb_subscrp_delete - delete a specific subscription or all
192 * subscriptions for a given subscriber.
193 */
194static void tipc_subscrb_subscrp_delete(struct tipc_subscriber *subscriber,
195 struct tipc_subscr *s)
196{
197 struct list_head *subscription_list = &subscriber->subscrp_list;
198 struct tipc_subscription *sub, *temp;
Parthasarathy Bhuvaragan458be022017-08-22 12:28:40 +0200199 u32 timeout;
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100200
201 spin_lock_bh(&subscriber->lock);
202 list_for_each_entry_safe(sub, temp, subscription_list, subscrp_list) {
203 if (s && memcmp(s, &sub->evt.s, sizeof(struct tipc_subscr)))
204 continue;
205
Parthasarathy Bhuvaragan458be022017-08-22 12:28:40 +0200206 timeout = htohl(sub->evt.s.timeout, sub->swap);
207 if (timeout == TIPC_WAIT_FOREVER || del_timer(&sub->timer)) {
208 tipc_nametbl_unsubscribe(sub);
209 list_del(&sub->subscrp_list);
210 tipc_subscrp_put(sub);
211 }
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100212
213 if (s)
214 break;
215 }
216 spin_unlock_bh(&subscriber->lock);
217}
218
Ying Xue00bc00a92015-05-04 10:36:46 +0800219static struct tipc_subscriber *tipc_subscrb_create(int conid)
220{
221 struct tipc_subscriber *subscriber;
222
223 subscriber = kzalloc(sizeof(*subscriber), GFP_ATOMIC);
224 if (!subscriber) {
225 pr_warn("Subscriber rejected, no memory\n");
226 return NULL;
227 }
Ying Xue00bc00a92015-05-04 10:36:46 +0800228 INIT_LIST_HEAD(&subscriber->subscrp_list);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100229 kref_init(&subscriber->kref);
Ying Xue00bc00a92015-05-04 10:36:46 +0800230 subscriber->conid = conid;
231 spin_lock_init(&subscriber->lock);
232
233 return subscriber;
234}
235
236static void tipc_subscrb_delete(struct tipc_subscriber *subscriber)
237{
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100238 tipc_subscrb_subscrp_delete(subscriber, NULL);
Ying Xue00bc00a92015-05-04 10:36:46 +0800239 tipc_subscrb_put(subscriber);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100240}
241
Ying Xue57f1d182015-05-04 10:36:44 +0800242static void tipc_subscrp_cancel(struct tipc_subscr *s,
243 struct tipc_subscriber *subscriber)
Lijun Cheneb409462006-10-16 21:59:42 -0700244{
Ying Xuefd849b72017-08-22 12:28:41 +0200245 tipc_subscrb_get(subscriber);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100246 tipc_subscrb_subscrp_delete(subscriber, s);
Ying Xuefd849b72017-08-22 12:28:41 +0200247 tipc_subscrb_put(subscriber);
Lijun Cheneb409462006-10-16 21:59:42 -0700248}
249
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100250static struct tipc_subscription *tipc_subscrp_create(struct net *net,
251 struct tipc_subscr *s,
Parthasarathy Bhuvaraganc8beccc62016-02-02 10:52:12 +0100252 int swap)
Ying Xuea62fbcc2015-01-09 15:27:11 +0800253{
254 struct tipc_net *tn = net_generic(net, tipc_net_id);
Paul Gortmakerfead3902011-12-29 20:43:44 -0500255 struct tipc_subscription *sub;
Parthasarathy Bhuvaraganc8beccc62016-02-02 10:52:12 +0100256 u32 filter = htohl(s->filter, swap);
Lijun Cheneb409462006-10-16 21:59:42 -0700257
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258 /* Refuse subscription if global limit exceeded */
Ying Xuea62fbcc2015-01-09 15:27:11 +0800259 if (atomic_read(&tn->subscription_count) >= TIPC_MAX_SUBSCRIPTIONS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400260 pr_warn("Subscription rejected, limit reached (%u)\n",
Ying Xue34f256c2012-08-16 12:09:13 +0000261 TIPC_MAX_SUBSCRIPTIONS);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100262 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100263 }
264
265 /* Allocate subscription object */
Allan Stephens28353e72008-05-19 13:29:47 -0700266 sub = kmalloc(sizeof(*sub), GFP_ATOMIC);
Allan Stephensa10bd922006-06-25 23:52:17 -0700267 if (!sub) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400268 pr_warn("Subscription rejected, no memory\n");
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100269 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100270 }
271
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272 /* Initialize subscription object */
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800273 sub->net = net;
Parthasarathy Bhuvaragan30865232016-02-02 10:52:09 +0100274 if (((filter & TIPC_SUB_PORTS) && (filter & TIPC_SUB_SERVICE)) ||
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +0100275 (htohl(s->seq.lower, swap) > htohl(s->seq.upper, swap))) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400276 pr_warn("Subscription rejected, illegal request\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100277 kfree(sub);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100278 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100279 }
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100280
281 sub->swap = swap;
282 memcpy(&sub->evt.s, s, sizeof(*s));
283 atomic_inc(&tn->subscription_count);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100284 kref_init(&sub->kref);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100285 return sub;
286}
287
288static void tipc_subscrp_subscribe(struct net *net, struct tipc_subscr *s,
Parthasarathy Bhuvaraganc8beccc62016-02-02 10:52:12 +0100289 struct tipc_subscriber *subscriber, int swap)
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100290{
291 struct tipc_net *tn = net_generic(net, tipc_net_id);
292 struct tipc_subscription *sub = NULL;
293 u32 timeout;
294
Parthasarathy Bhuvaraganc8beccc62016-02-02 10:52:12 +0100295 sub = tipc_subscrp_create(net, s, swap);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100296 if (!sub)
297 return tipc_conn_terminate(tn->topsrv, subscriber->conid);
298
Ying Xuea13683f2015-05-04 10:36:47 +0800299 spin_lock_bh(&subscriber->lock);
Ying Xue57f1d182015-05-04 10:36:44 +0800300 list_add(&sub->subscrp_list, &subscriber->subscrp_list);
Parthasarathy Bhuvaragand4091892016-02-02 10:52:14 +0100301 sub->subscriber = subscriber;
302 tipc_nametbl_subscribe(sub);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100303 tipc_subscrb_get(subscriber);
Ying Xuea13683f2015-05-04 10:36:47 +0800304 spin_unlock_bh(&subscriber->lock);
Parthasarathy Bhuvaragan30865232016-02-02 10:52:09 +0100305
Kees Cook31b102b2017-10-30 14:06:45 -0700306 timer_setup(&sub->timer, tipc_subscrp_timeout, 0);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100307 timeout = htohl(sub->evt.s.timeout, swap);
308
309 if (timeout != TIPC_WAIT_FOREVER)
310 mod_timer(&sub->timer, jiffies + msecs_to_jiffies(timeout));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100311}
312
Ying Xue13a2e892013-06-17 10:54:40 -0400313/* Handle one termination request for the subscriber */
Parthasarathy Bhuvaragan333f7962016-04-12 13:05:21 +0200314static void tipc_subscrb_release_cb(int conid, void *usr_data)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100315{
Ying Xue57f1d182015-05-04 10:36:44 +0800316 tipc_subscrb_delete((struct tipc_subscriber *)usr_data);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100317}
318
Ying Xue13a2e892013-06-17 10:54:40 -0400319/* Handle one request to create a new subscription for the subscriber */
Ying Xue57f1d182015-05-04 10:36:44 +0800320static void tipc_subscrb_rcv_cb(struct net *net, int conid,
321 struct sockaddr_tipc *addr, void *usr_data,
322 void *buf, size_t len)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323{
Parthasarathy Bhuvaraganc8beccc62016-02-02 10:52:12 +0100324 struct tipc_subscriber *subscriber = usr_data;
325 struct tipc_subscr *s = (struct tipc_subscr *)buf;
326 int swap;
327
328 /* Determine subscriber's endianness */
Parthasarathy Bhuvaragancb01c7c2016-02-02 10:52:13 +0100329 swap = !(s->filter & (TIPC_SUB_PORTS | TIPC_SUB_SERVICE |
330 TIPC_SUB_CANCEL));
Parthasarathy Bhuvaraganc8beccc62016-02-02 10:52:12 +0100331
332 /* Detect & process a subscription cancellation request */
333 if (s->filter & htohl(TIPC_SUB_CANCEL, swap)) {
334 s->filter &= ~htohl(TIPC_SUB_CANCEL, swap);
335 return tipc_subscrp_cancel(s, subscriber);
336 }
337
Dan Carpenterb4358652016-04-27 11:05:28 +0300338 tipc_subscrp_subscribe(net, s, subscriber, swap);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100339}
340
Ying Xue13a2e892013-06-17 10:54:40 -0400341/* Handle one request to establish a new subscriber */
Ying Xue57f1d182015-05-04 10:36:44 +0800342static void *tipc_subscrb_connect_cb(int conid)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100343{
Ying Xue1b7648282015-05-04 10:36:45 +0800344 return (void *)tipc_subscrb_create(conid);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345}
346
Ying Xue57f1d182015-05-04 10:36:44 +0800347int tipc_topsrv_start(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100348{
Ying Xuea62fbcc2015-01-09 15:27:11 +0800349 struct tipc_net *tn = net_generic(net, tipc_net_id);
350 const char name[] = "topology_server";
351 struct tipc_server *topsrv;
352 struct sockaddr_tipc *saddr;
353
354 saddr = kzalloc(sizeof(*saddr), GFP_ATOMIC);
355 if (!saddr)
356 return -ENOMEM;
357 saddr->family = AF_TIPC;
358 saddr->addrtype = TIPC_ADDR_NAMESEQ;
359 saddr->addr.nameseq.type = TIPC_TOP_SRV;
360 saddr->addr.nameseq.lower = TIPC_TOP_SRV;
361 saddr->addr.nameseq.upper = TIPC_TOP_SRV;
362 saddr->scope = TIPC_NODE_SCOPE;
363
364 topsrv = kzalloc(sizeof(*topsrv), GFP_ATOMIC);
365 if (!topsrv) {
366 kfree(saddr);
367 return -ENOMEM;
368 }
369 topsrv->net = net;
370 topsrv->saddr = saddr;
371 topsrv->imp = TIPC_CRITICAL_IMPORTANCE;
372 topsrv->type = SOCK_SEQPACKET;
373 topsrv->max_rcvbuf_size = sizeof(struct tipc_subscr);
Ying Xue57f1d182015-05-04 10:36:44 +0800374 topsrv->tipc_conn_recvmsg = tipc_subscrb_rcv_cb;
375 topsrv->tipc_conn_new = tipc_subscrb_connect_cb;
Parthasarathy Bhuvaragan333f7962016-04-12 13:05:21 +0200376 topsrv->tipc_conn_release = tipc_subscrb_release_cb;
Ying Xuea62fbcc2015-01-09 15:27:11 +0800377
378 strncpy(topsrv->name, name, strlen(name) + 1);
379 tn->topsrv = topsrv;
380 atomic_set(&tn->subscription_count, 0);
381
382 return tipc_server_start(topsrv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100383}
384
Ying Xue57f1d182015-05-04 10:36:44 +0800385void tipc_topsrv_stop(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100386{
Ying Xuea62fbcc2015-01-09 15:27:11 +0800387 struct tipc_net *tn = net_generic(net, tipc_net_id);
388 struct tipc_server *topsrv = tn->topsrv;
389
390 tipc_server_stop(topsrv);
391 kfree(topsrv->saddr);
392 kfree(topsrv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100393}