blob: c3e0b924e8c2fe20271f6f77e53806c6bb143c49 [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 *
Jon Maloydf79d042018-02-15 10:40:44 +01004 * Copyright (c) 2000-2017, 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/**
Neil Hormandb5a7532010-10-21 01:06:16 +000042 * htohl - convert value to endianness used by destination
43 * @in: value to convert
44 * @swap: non-zero if endianness must be reversed
45 *
46 * Returns converted value
47 */
Neil Hormandb5a7532010-10-21 01:06:16 +000048static u32 htohl(u32 in, int swap)
49{
50 return swap ? swab32(in) : in;
51}
52
Ying Xue57f1d182015-05-04 10:36:44 +080053static void tipc_subscrp_send_event(struct tipc_subscription *sub,
54 u32 found_lower, u32 found_upper,
Jon Maloy414574a2018-02-15 10:40:45 +010055 u32 event, u32 port, u32 node)
Per Lidenb97bf3f2006-01-02 19:04:38 +010056{
Jon Maloy414574a2018-02-15 10:40:45 +010057 struct tipc_event *evt = &sub->evt;
58 bool swap = sub->swap;
Per Lidenb97bf3f2006-01-02 19:04:38 +010059
Jon Maloydf79d042018-02-15 10:40:44 +010060 if (sub->inactive)
61 return;
Jon Maloy414574a2018-02-15 10:40:45 +010062 evt->event = htohl(event, swap);
63 evt->found_lower = htohl(found_lower, swap);
64 evt->found_upper = htohl(found_upper, swap);
65 evt->port.ref = htohl(port, swap);
66 evt->port.node = htohl(node, swap);
67 tipc_conn_queue_evt(sub->server, sub->conid, event, evt);
Per Lidenb97bf3f2006-01-02 19:04:38 +010068}
69
70/**
Ying Xue57f1d182015-05-04 10:36:44 +080071 * tipc_subscrp_check_overlap - test for subscription overlap with the
72 * given values
Per Lidenb97bf3f2006-01-02 19:04:38 +010073 *
74 * Returns 1 if there is overlap, otherwise 0.
75 */
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +010076int tipc_subscrp_check_overlap(struct tipc_name_seq *seq, u32 found_lower,
Ying Xue57f1d182015-05-04 10:36:44 +080077 u32 found_upper)
Per Lidenb97bf3f2006-01-02 19:04:38 +010078{
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +010079 if (found_lower < seq->lower)
80 found_lower = seq->lower;
81 if (found_upper > seq->upper)
82 found_upper = seq->upper;
Per Lidenb97bf3f2006-01-02 19:04:38 +010083 if (found_lower > found_upper)
84 return 0;
85 return 1;
86}
87
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +010088u32 tipc_subscrp_convert_seq_type(u32 type, int swap)
89{
90 return htohl(type, swap);
91}
92
93void tipc_subscrp_convert_seq(struct tipc_name_seq *in, int swap,
94 struct tipc_name_seq *out)
95{
96 out->type = htohl(in->type, swap);
97 out->lower = htohl(in->lower, swap);
98 out->upper = htohl(in->upper, swap);
99}
100
Ying Xue57f1d182015-05-04 10:36:44 +0800101void tipc_subscrp_report_overlap(struct tipc_subscription *sub, u32 found_lower,
102 u32 found_upper, u32 event, u32 port_ref,
Jon Maloy232d07b2018-01-08 21:03:30 +0100103 u32 node, u32 scope, int must)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100104{
Jon Maloy232d07b2018-01-08 21:03:30 +0100105 u32 filter = htohl(sub->evt.s.filter, sub->swap);
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +0100106 struct tipc_name_seq seq;
107
108 tipc_subscrp_convert_seq(&sub->evt.s.seq, sub->swap, &seq);
109 if (!tipc_subscrp_check_overlap(&seq, found_lower, found_upper))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100110 return;
Jon Maloy232d07b2018-01-08 21:03:30 +0100111 if (!must && !(filter & TIPC_SUB_PORTS))
112 return;
113 if (filter & TIPC_SUB_CLUSTER_SCOPE && scope == TIPC_NODE_SCOPE)
114 return;
115 if (filter & TIPC_SUB_NODE_SCOPE && scope != TIPC_NODE_SCOPE)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100116 return;
Jon Maloydf79d042018-02-15 10:40:44 +0100117 spin_lock(&sub->lock);
118 tipc_subscrp_send_event(sub, found_lower, found_upper,
119 event, port_ref, node);
120 spin_unlock(&sub->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100121}
122
Kees Cook31b102b2017-10-30 14:06:45 -0700123static void tipc_subscrp_timeout(struct timer_list *t)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100124{
Kees Cook31b102b2017-10-30 14:06:45 -0700125 struct tipc_subscription *sub = from_timer(sub, t, timer);
Jon Maloydf79d042018-02-15 10:40:44 +0100126 struct tipc_subscr *s = &sub->evt.s;
Ying Xue557d054c2017-03-21 10:47:49 +0100127
Jon Maloydf79d042018-02-15 10:40:44 +0100128 spin_lock(&sub->lock);
129 tipc_subscrp_send_event(sub, s->seq.lower, s->seq.upper,
Ying Xue57f1d182015-05-04 10:36:44 +0800130 TIPC_SUBSCR_TIMEOUT, 0, 0);
Jon Maloydf79d042018-02-15 10:40:44 +0100131 sub->inactive = true;
132 spin_unlock(&sub->lock);
Ying Xue00bc00a92015-05-04 10:36:46 +0800133}
134
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100135static void tipc_subscrp_kref_release(struct kref *kref)
136{
Jon Maloy414574a2018-02-15 10:40:45 +0100137 struct tipc_subscription *sub;
138 struct tipc_net *tn;
139
140 sub = container_of(kref, struct tipc_subscription, kref);
141 tn = tipc_net(sub->server->net);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100142
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100143 atomic_dec(&tn->subscription_count);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100144 kfree(sub);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100145}
146
Ying Xue7efea602017-03-28 12:28:28 +0200147void tipc_subscrp_put(struct tipc_subscription *subscription)
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100148{
149 kref_put(&subscription->kref, tipc_subscrp_kref_release);
150}
151
Ying Xue7efea602017-03-28 12:28:28 +0200152void tipc_subscrp_get(struct tipc_subscription *subscription)
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100153{
154 kref_get(&subscription->kref);
155}
156
Jon Maloy414574a2018-02-15 10:40:45 +0100157static struct tipc_subscription *tipc_subscrp_create(struct tipc_server *srv,
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100158 struct tipc_subscr *s,
Jon Maloydf79d042018-02-15 10:40:44 +0100159 int conid, bool swap)
Ying Xuea62fbcc2015-01-09 15:27:11 +0800160{
Jon Maloy414574a2018-02-15 10:40:45 +0100161 struct tipc_net *tn = tipc_net(srv->net);
Paul Gortmakerfead3902011-12-29 20:43:44 -0500162 struct tipc_subscription *sub;
Parthasarathy Bhuvaraganc8beccc62016-02-02 10:52:12 +0100163 u32 filter = htohl(s->filter, swap);
Lijun Cheneb409462006-10-16 21:59:42 -0700164
Per Lidenb97bf3f2006-01-02 19:04:38 +0100165 /* Refuse subscription if global limit exceeded */
Ying Xuea62fbcc2015-01-09 15:27:11 +0800166 if (atomic_read(&tn->subscription_count) >= TIPC_MAX_SUBSCRIPTIONS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400167 pr_warn("Subscription rejected, limit reached (%u)\n",
Ying Xue34f256c2012-08-16 12:09:13 +0000168 TIPC_MAX_SUBSCRIPTIONS);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100169 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100170 }
171
172 /* Allocate subscription object */
Allan Stephens28353e72008-05-19 13:29:47 -0700173 sub = kmalloc(sizeof(*sub), GFP_ATOMIC);
Allan Stephensa10bd922006-06-25 23:52:17 -0700174 if (!sub) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400175 pr_warn("Subscription rejected, no memory\n");
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100176 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100177 }
178
Per Lidenb97bf3f2006-01-02 19:04:38 +0100179 /* Initialize subscription object */
Jon Maloy414574a2018-02-15 10:40:45 +0100180 sub->server = srv;
Jon Maloydf79d042018-02-15 10:40:44 +0100181 sub->conid = conid;
182 sub->inactive = false;
Parthasarathy Bhuvaragan30865232016-02-02 10:52:09 +0100183 if (((filter & TIPC_SUB_PORTS) && (filter & TIPC_SUB_SERVICE)) ||
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +0100184 (htohl(s->seq.lower, swap) > htohl(s->seq.upper, swap))) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400185 pr_warn("Subscription rejected, illegal request\n");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100186 kfree(sub);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100187 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100188 }
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100189
190 sub->swap = swap;
191 memcpy(&sub->evt.s, s, sizeof(*s));
Jon Maloydf79d042018-02-15 10:40:44 +0100192 spin_lock_init(&sub->lock);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100193 atomic_inc(&tn->subscription_count);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100194 kref_init(&sub->kref);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100195 return sub;
196}
197
Jon Maloy414574a2018-02-15 10:40:45 +0100198struct tipc_subscription *tipc_subscrp_subscribe(struct tipc_server *srv,
Jon Maloydf79d042018-02-15 10:40:44 +0100199 struct tipc_subscr *s,
200 int conid, bool swap,
201 bool status)
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100202{
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100203 struct tipc_subscription *sub = NULL;
204 u32 timeout;
205
Jon Maloy414574a2018-02-15 10:40:45 +0100206 sub = tipc_subscrp_create(srv, s, conid, swap);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100207 if (!sub)
Jon Maloydf79d042018-02-15 10:40:44 +0100208 return NULL;
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100209
Jon Maloy83485002018-01-08 21:03:29 +0100210 tipc_nametbl_subscribe(sub, status);
Kees Cook31b102b2017-10-30 14:06:45 -0700211 timer_setup(&sub->timer, tipc_subscrp_timeout, 0);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100212 timeout = htohl(sub->evt.s.timeout, swap);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100213 if (timeout != TIPC_WAIT_FOREVER)
214 mod_timer(&sub->timer, jiffies + msecs_to_jiffies(timeout));
Jon Maloydf79d042018-02-15 10:40:44 +0100215 return sub;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100216}
217
Jon Maloydf79d042018-02-15 10:40:44 +0100218void tipc_sub_delete(struct tipc_subscription *sub)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100219{
Jon Maloydf79d042018-02-15 10:40:44 +0100220 tipc_nametbl_unsubscribe(sub);
221 if (sub->evt.s.timeout != TIPC_WAIT_FOREVER)
222 del_timer_sync(&sub->timer);
223 list_del(&sub->subscrp_list);
224 tipc_subscrp_put(sub);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100225}
226
Ying Xue57f1d182015-05-04 10:36:44 +0800227int tipc_topsrv_start(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100228{
Ying Xuea62fbcc2015-01-09 15:27:11 +0800229 struct tipc_net *tn = net_generic(net, tipc_net_id);
230 const char name[] = "topology_server";
231 struct tipc_server *topsrv;
232 struct sockaddr_tipc *saddr;
233
234 saddr = kzalloc(sizeof(*saddr), GFP_ATOMIC);
235 if (!saddr)
236 return -ENOMEM;
237 saddr->family = AF_TIPC;
238 saddr->addrtype = TIPC_ADDR_NAMESEQ;
239 saddr->addr.nameseq.type = TIPC_TOP_SRV;
240 saddr->addr.nameseq.lower = TIPC_TOP_SRV;
241 saddr->addr.nameseq.upper = TIPC_TOP_SRV;
242 saddr->scope = TIPC_NODE_SCOPE;
243
244 topsrv = kzalloc(sizeof(*topsrv), GFP_ATOMIC);
245 if (!topsrv) {
246 kfree(saddr);
247 return -ENOMEM;
248 }
249 topsrv->net = net;
250 topsrv->saddr = saddr;
Ying Xuea62fbcc2015-01-09 15:27:11 +0800251 topsrv->max_rcvbuf_size = sizeof(struct tipc_subscr);
Ying Xuea62fbcc2015-01-09 15:27:11 +0800252
253 strncpy(topsrv->name, name, strlen(name) + 1);
254 tn->topsrv = topsrv;
255 atomic_set(&tn->subscription_count, 0);
256
257 return tipc_server_start(topsrv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258}
259
Ying Xue57f1d182015-05-04 10:36:44 +0800260void tipc_topsrv_stop(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100261{
Ying Xuea62fbcc2015-01-09 15:27:11 +0800262 struct tipc_net *tn = net_generic(net, tipc_net_id);
263 struct tipc_server *topsrv = tn->topsrv;
264
265 tipc_server_stop(topsrv);
266 kfree(topsrv->saddr);
267 kfree(topsrv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100268}