blob: 44df528ed6ab279b593cd41d9f0c507f25618a93 [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,
Jon Maloy232d07b2018-01-08 21:03:30 +0100121 u32 node, u32 scope, int must)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122{
Jon Maloy232d07b2018-01-08 21:03:30 +0100123 u32 filter = htohl(sub->evt.s.filter, sub->swap);
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +0100124 struct tipc_name_seq seq;
125
126 tipc_subscrp_convert_seq(&sub->evt.s.seq, sub->swap, &seq);
127 if (!tipc_subscrp_check_overlap(&seq, found_lower, found_upper))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100128 return;
Jon Maloy232d07b2018-01-08 21:03:30 +0100129 if (!must && !(filter & TIPC_SUB_PORTS))
130 return;
131 if (filter & TIPC_SUB_CLUSTER_SCOPE && scope == TIPC_NODE_SCOPE)
132 return;
133 if (filter & TIPC_SUB_NODE_SCOPE && scope != TIPC_NODE_SCOPE)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100134 return;
Allan Stephense15f8802008-05-19 13:27:31 -0700135
Ying Xue57f1d182015-05-04 10:36:44 +0800136 tipc_subscrp_send_event(sub, found_lower, found_upper, event, port_ref,
137 node);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100138}
139
Kees Cook31b102b2017-10-30 14:06:45 -0700140static void tipc_subscrp_timeout(struct timer_list *t)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100141{
Kees Cook31b102b2017-10-30 14:06:45 -0700142 struct tipc_subscription *sub = from_timer(sub, t, timer);
Ying Xue557d054c2017-03-21 10:47:49 +0100143 struct tipc_subscriber *subscriber = sub->subscriber;
144
145 spin_lock_bh(&subscriber->lock);
146 tipc_nametbl_unsubscribe(sub);
Ying Xue139bb362017-03-28 12:28:27 +0200147 list_del(&sub->subscrp_list);
Ying Xue557d054c2017-03-21 10:47:49 +0100148 spin_unlock_bh(&subscriber->lock);
Allan Stephens28353e72008-05-19 13:29:47 -0700149
150 /* Notify subscriber of timeout */
Ying Xue57f1d182015-05-04 10:36:44 +0800151 tipc_subscrp_send_event(sub, sub->evt.s.seq.lower, sub->evt.s.seq.upper,
152 TIPC_SUBSCR_TIMEOUT, 0, 0);
Allan Stephens28353e72008-05-19 13:29:47 -0700153
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100154 tipc_subscrp_put(sub);
Ying Xue00bc00a92015-05-04 10:36:46 +0800155}
156
157static void tipc_subscrb_kref_release(struct kref *kref)
158{
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100159 kfree(container_of(kref,struct tipc_subscriber, kref));
Ying Xue00bc00a92015-05-04 10:36:46 +0800160}
161
162static void tipc_subscrb_put(struct tipc_subscriber *subscriber)
163{
164 kref_put(&subscriber->kref, tipc_subscrb_kref_release);
165}
166
167static void tipc_subscrb_get(struct tipc_subscriber *subscriber)
168{
169 kref_get(&subscriber->kref);
170}
171
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100172static void tipc_subscrp_kref_release(struct kref *kref)
173{
174 struct tipc_subscription *sub = container_of(kref,
175 struct tipc_subscription,
176 kref);
177 struct tipc_net *tn = net_generic(sub->net, tipc_net_id);
178 struct tipc_subscriber *subscriber = sub->subscriber;
179
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100180 atomic_dec(&tn->subscription_count);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100181 kfree(sub);
182 tipc_subscrb_put(subscriber);
183}
184
Ying Xue7efea602017-03-28 12:28:28 +0200185void tipc_subscrp_put(struct tipc_subscription *subscription)
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100186{
187 kref_put(&subscription->kref, tipc_subscrp_kref_release);
188}
189
Ying Xue7efea602017-03-28 12:28:28 +0200190void tipc_subscrp_get(struct tipc_subscription *subscription)
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100191{
192 kref_get(&subscription->kref);
193}
194
195/* tipc_subscrb_subscrp_delete - delete a specific subscription or all
196 * subscriptions for a given subscriber.
197 */
198static void tipc_subscrb_subscrp_delete(struct tipc_subscriber *subscriber,
199 struct tipc_subscr *s)
200{
201 struct list_head *subscription_list = &subscriber->subscrp_list;
202 struct tipc_subscription *sub, *temp;
Parthasarathy Bhuvaragan458be022017-08-22 12:28:40 +0200203 u32 timeout;
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100204
205 spin_lock_bh(&subscriber->lock);
206 list_for_each_entry_safe(sub, temp, subscription_list, subscrp_list) {
207 if (s && memcmp(s, &sub->evt.s, sizeof(struct tipc_subscr)))
208 continue;
209
Parthasarathy Bhuvaragan458be022017-08-22 12:28:40 +0200210 timeout = htohl(sub->evt.s.timeout, sub->swap);
211 if (timeout == TIPC_WAIT_FOREVER || del_timer(&sub->timer)) {
212 tipc_nametbl_unsubscribe(sub);
213 list_del(&sub->subscrp_list);
214 tipc_subscrp_put(sub);
215 }
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100216
217 if (s)
218 break;
219 }
220 spin_unlock_bh(&subscriber->lock);
221}
222
Ying Xue00bc00a92015-05-04 10:36:46 +0800223static struct tipc_subscriber *tipc_subscrb_create(int conid)
224{
225 struct tipc_subscriber *subscriber;
226
227 subscriber = kzalloc(sizeof(*subscriber), GFP_ATOMIC);
228 if (!subscriber) {
229 pr_warn("Subscriber rejected, no memory\n");
230 return NULL;
231 }
Ying Xue00bc00a92015-05-04 10:36:46 +0800232 INIT_LIST_HEAD(&subscriber->subscrp_list);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100233 kref_init(&subscriber->kref);
Ying Xue00bc00a92015-05-04 10:36:46 +0800234 subscriber->conid = conid;
235 spin_lock_init(&subscriber->lock);
236
237 return subscriber;
238}
239
240static void tipc_subscrb_delete(struct tipc_subscriber *subscriber)
241{
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100242 tipc_subscrb_subscrp_delete(subscriber, NULL);
Ying Xue00bc00a92015-05-04 10:36:46 +0800243 tipc_subscrb_put(subscriber);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100244}
245
Ying Xue57f1d182015-05-04 10:36:44 +0800246static void tipc_subscrp_cancel(struct tipc_subscr *s,
247 struct tipc_subscriber *subscriber)
Lijun Cheneb409462006-10-16 21:59:42 -0700248{
Ying Xuefd849b72017-08-22 12:28:41 +0200249 tipc_subscrb_get(subscriber);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100250 tipc_subscrb_subscrp_delete(subscriber, s);
Ying Xuefd849b72017-08-22 12:28:41 +0200251 tipc_subscrb_put(subscriber);
Lijun Cheneb409462006-10-16 21:59:42 -0700252}
253
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100254static struct tipc_subscription *tipc_subscrp_create(struct net *net,
255 struct tipc_subscr *s,
Parthasarathy Bhuvaraganc8beccc62016-02-02 10:52:12 +0100256 int swap)
Ying Xuea62fbcc2015-01-09 15:27:11 +0800257{
258 struct tipc_net *tn = net_generic(net, tipc_net_id);
Paul Gortmakerfead3902011-12-29 20:43:44 -0500259 struct tipc_subscription *sub;
Parthasarathy Bhuvaraganc8beccc62016-02-02 10:52:12 +0100260 u32 filter = htohl(s->filter, swap);
Lijun Cheneb409462006-10-16 21:59:42 -0700261
Per Lidenb97bf3f2006-01-02 19:04:38 +0100262 /* Refuse subscription if global limit exceeded */
Ying Xuea62fbcc2015-01-09 15:27:11 +0800263 if (atomic_read(&tn->subscription_count) >= TIPC_MAX_SUBSCRIPTIONS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400264 pr_warn("Subscription rejected, limit reached (%u)\n",
Ying Xue34f256c2012-08-16 12:09:13 +0000265 TIPC_MAX_SUBSCRIPTIONS);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100266 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100267 }
268
269 /* Allocate subscription object */
Allan Stephens28353e72008-05-19 13:29:47 -0700270 sub = kmalloc(sizeof(*sub), GFP_ATOMIC);
Allan Stephensa10bd922006-06-25 23:52:17 -0700271 if (!sub) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400272 pr_warn("Subscription rejected, no memory\n");
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100273 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100274 }
275
Per Lidenb97bf3f2006-01-02 19:04:38 +0100276 /* Initialize subscription object */
Ying Xue4ac1c8d2015-01-09 15:27:09 +0800277 sub->net = net;
Parthasarathy Bhuvaragan30865232016-02-02 10:52:09 +0100278 if (((filter & TIPC_SUB_PORTS) && (filter & TIPC_SUB_SERVICE)) ||
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +0100279 (htohl(s->seq.lower, swap) > htohl(s->seq.upper, swap))) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400280 pr_warn("Subscription rejected, illegal request\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100281 kfree(sub);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100282 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100283 }
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100284
285 sub->swap = swap;
286 memcpy(&sub->evt.s, s, sizeof(*s));
287 atomic_inc(&tn->subscription_count);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100288 kref_init(&sub->kref);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100289 return sub;
290}
291
292static void tipc_subscrp_subscribe(struct net *net, struct tipc_subscr *s,
Jon Maloy83485002018-01-08 21:03:29 +0100293 struct tipc_subscriber *subscriber, int swap,
294 bool status)
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100295{
296 struct tipc_net *tn = net_generic(net, tipc_net_id);
297 struct tipc_subscription *sub = NULL;
298 u32 timeout;
299
Parthasarathy Bhuvaraganc8beccc62016-02-02 10:52:12 +0100300 sub = tipc_subscrp_create(net, s, swap);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100301 if (!sub)
302 return tipc_conn_terminate(tn->topsrv, subscriber->conid);
303
Ying Xuea13683f2015-05-04 10:36:47 +0800304 spin_lock_bh(&subscriber->lock);
Ying Xue57f1d182015-05-04 10:36:44 +0800305 list_add(&sub->subscrp_list, &subscriber->subscrp_list);
Parthasarathy Bhuvaragand4091892016-02-02 10:52:14 +0100306 sub->subscriber = subscriber;
Jon Maloy83485002018-01-08 21:03:29 +0100307 tipc_nametbl_subscribe(sub, status);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100308 tipc_subscrb_get(subscriber);
Ying Xuea13683f2015-05-04 10:36:47 +0800309 spin_unlock_bh(&subscriber->lock);
Parthasarathy Bhuvaragan30865232016-02-02 10:52:09 +0100310
Kees Cook31b102b2017-10-30 14:06:45 -0700311 timer_setup(&sub->timer, tipc_subscrp_timeout, 0);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100312 timeout = htohl(sub->evt.s.timeout, swap);
313
314 if (timeout != TIPC_WAIT_FOREVER)
315 mod_timer(&sub->timer, jiffies + msecs_to_jiffies(timeout));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100316}
317
Ying Xue13a2e892013-06-17 10:54:40 -0400318/* Handle one termination request for the subscriber */
Parthasarathy Bhuvaragan333f7962016-04-12 13:05:21 +0200319static void tipc_subscrb_release_cb(int conid, void *usr_data)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100320{
Ying Xue57f1d182015-05-04 10:36:44 +0800321 tipc_subscrb_delete((struct tipc_subscriber *)usr_data);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100322}
323
Ying Xue13a2e892013-06-17 10:54:40 -0400324/* Handle one request to create a new subscription for the subscriber */
Ying Xue57f1d182015-05-04 10:36:44 +0800325static void tipc_subscrb_rcv_cb(struct net *net, int conid,
326 struct sockaddr_tipc *addr, void *usr_data,
327 void *buf, size_t len)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100328{
Parthasarathy Bhuvaraganc8beccc62016-02-02 10:52:12 +0100329 struct tipc_subscriber *subscriber = usr_data;
330 struct tipc_subscr *s = (struct tipc_subscr *)buf;
Jon Maloy83485002018-01-08 21:03:29 +0100331 bool status;
Parthasarathy Bhuvaraganc8beccc62016-02-02 10:52:12 +0100332 int swap;
333
334 /* Determine subscriber's endianness */
Parthasarathy Bhuvaragancb01c7c2016-02-02 10:52:13 +0100335 swap = !(s->filter & (TIPC_SUB_PORTS | TIPC_SUB_SERVICE |
336 TIPC_SUB_CANCEL));
Parthasarathy Bhuvaraganc8beccc62016-02-02 10:52:12 +0100337
338 /* Detect & process a subscription cancellation request */
339 if (s->filter & htohl(TIPC_SUB_CANCEL, swap)) {
340 s->filter &= ~htohl(TIPC_SUB_CANCEL, swap);
341 return tipc_subscrp_cancel(s, subscriber);
342 }
Jon Maloy83485002018-01-08 21:03:29 +0100343 status = !(s->filter & htohl(TIPC_SUB_NO_STATUS, swap));
344 tipc_subscrp_subscribe(net, s, subscriber, swap, status);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345}
346
Ying Xue13a2e892013-06-17 10:54:40 -0400347/* Handle one request to establish a new subscriber */
Ying Xue57f1d182015-05-04 10:36:44 +0800348static void *tipc_subscrb_connect_cb(int conid)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100349{
Ying Xue1b7648282015-05-04 10:36:45 +0800350 return (void *)tipc_subscrb_create(conid);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100351}
352
Ying Xue57f1d182015-05-04 10:36:44 +0800353int tipc_topsrv_start(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100354{
Ying Xuea62fbcc2015-01-09 15:27:11 +0800355 struct tipc_net *tn = net_generic(net, tipc_net_id);
356 const char name[] = "topology_server";
357 struct tipc_server *topsrv;
358 struct sockaddr_tipc *saddr;
359
360 saddr = kzalloc(sizeof(*saddr), GFP_ATOMIC);
361 if (!saddr)
362 return -ENOMEM;
363 saddr->family = AF_TIPC;
364 saddr->addrtype = TIPC_ADDR_NAMESEQ;
365 saddr->addr.nameseq.type = TIPC_TOP_SRV;
366 saddr->addr.nameseq.lower = TIPC_TOP_SRV;
367 saddr->addr.nameseq.upper = TIPC_TOP_SRV;
368 saddr->scope = TIPC_NODE_SCOPE;
369
370 topsrv = kzalloc(sizeof(*topsrv), GFP_ATOMIC);
371 if (!topsrv) {
372 kfree(saddr);
373 return -ENOMEM;
374 }
375 topsrv->net = net;
376 topsrv->saddr = saddr;
377 topsrv->imp = TIPC_CRITICAL_IMPORTANCE;
378 topsrv->type = SOCK_SEQPACKET;
379 topsrv->max_rcvbuf_size = sizeof(struct tipc_subscr);
Ying Xue57f1d182015-05-04 10:36:44 +0800380 topsrv->tipc_conn_recvmsg = tipc_subscrb_rcv_cb;
381 topsrv->tipc_conn_new = tipc_subscrb_connect_cb;
Parthasarathy Bhuvaragan333f7962016-04-12 13:05:21 +0200382 topsrv->tipc_conn_release = tipc_subscrb_release_cb;
Ying Xuea62fbcc2015-01-09 15:27:11 +0800383
384 strncpy(topsrv->name, name, strlen(name) + 1);
385 tn->topsrv = topsrv;
386 atomic_set(&tn->subscription_count, 0);
387
388 return tipc_server_start(topsrv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100389}
390
Ying Xue57f1d182015-05-04 10:36:44 +0800391void tipc_topsrv_stop(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100392{
Ying Xuea62fbcc2015-01-09 15:27:11 +0800393 struct tipc_net *tn = net_generic(net, tipc_net_id);
394 struct tipc_server *topsrv = tn->topsrv;
395
396 tipc_server_stop(topsrv);
397 kfree(topsrv->saddr);
398 kfree(topsrv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100399}