blob: 406b09fc227bd071baa25ed4a2bba77afa92ec2d [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
Ying Xue57f1d182015-05-04 10:36:44 +080041static void tipc_subscrp_send_event(struct tipc_subscription *sub,
42 u32 found_lower, u32 found_upper,
Jon Maloy414574a2018-02-15 10:40:45 +010043 u32 event, u32 port, u32 node)
Per Lidenb97bf3f2006-01-02 19:04:38 +010044{
Jon Maloy414574a2018-02-15 10:40:45 +010045 struct tipc_event *evt = &sub->evt;
Per Lidenb97bf3f2006-01-02 19:04:38 +010046
Jon Maloydf79d042018-02-15 10:40:44 +010047 if (sub->inactive)
48 return;
Jon Maloy8985ecc2018-02-15 10:40:46 +010049 tipc_evt_write(evt, event, event);
50 tipc_evt_write(evt, found_lower, found_lower);
51 tipc_evt_write(evt, found_upper, found_upper);
52 tipc_evt_write(evt, port.ref, port);
53 tipc_evt_write(evt, port.node, node);
Jon Maloy414574a2018-02-15 10:40:45 +010054 tipc_conn_queue_evt(sub->server, sub->conid, event, evt);
Per Lidenb97bf3f2006-01-02 19:04:38 +010055}
56
57/**
Ying Xue57f1d182015-05-04 10:36:44 +080058 * tipc_subscrp_check_overlap - test for subscription overlap with the
59 * given values
Per Lidenb97bf3f2006-01-02 19:04:38 +010060 *
61 * Returns 1 if there is overlap, otherwise 0.
62 */
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +010063int tipc_subscrp_check_overlap(struct tipc_name_seq *seq, u32 found_lower,
Ying Xue57f1d182015-05-04 10:36:44 +080064 u32 found_upper)
Per Lidenb97bf3f2006-01-02 19:04:38 +010065{
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +010066 if (found_lower < seq->lower)
67 found_lower = seq->lower;
68 if (found_upper > seq->upper)
69 found_upper = seq->upper;
Per Lidenb97bf3f2006-01-02 19:04:38 +010070 if (found_lower > found_upper)
71 return 0;
72 return 1;
73}
74
Jon Maloy8985ecc2018-02-15 10:40:46 +010075void tipc_subscrp_report_overlap(struct tipc_subscription *sub,
76 u32 found_lower, u32 found_upper,
77 u32 event, u32 port, u32 node,
78 u32 scope, int must)
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +010079{
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +010080 struct tipc_name_seq seq;
Jon Maloy8985ecc2018-02-15 10:40:46 +010081 struct tipc_subscr *s = &sub->evt.s;
82 u32 filter = tipc_sub_read(s, filter);
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +010083
Jon Maloy8985ecc2018-02-15 10:40:46 +010084 seq.type = tipc_sub_read(s, seq.type);
85 seq.lower = tipc_sub_read(s, seq.lower);
86 seq.upper = tipc_sub_read(s, seq.upper);
87
Parthasarathy Bhuvaragana4273c72016-02-02 10:52:10 +010088 if (!tipc_subscrp_check_overlap(&seq, found_lower, found_upper))
Per Lidenb97bf3f2006-01-02 19:04:38 +010089 return;
Jon Maloy8985ecc2018-02-15 10:40:46 +010090
Jon Maloy232d07b2018-01-08 21:03:30 +010091 if (!must && !(filter & TIPC_SUB_PORTS))
92 return;
93 if (filter & TIPC_SUB_CLUSTER_SCOPE && scope == TIPC_NODE_SCOPE)
94 return;
95 if (filter & TIPC_SUB_NODE_SCOPE && scope != TIPC_NODE_SCOPE)
Per Lidenb97bf3f2006-01-02 19:04:38 +010096 return;
Jon Maloydf79d042018-02-15 10:40:44 +010097 spin_lock(&sub->lock);
98 tipc_subscrp_send_event(sub, found_lower, found_upper,
Jon Maloy8985ecc2018-02-15 10:40:46 +010099 event, port, node);
Jon Maloydf79d042018-02-15 10:40:44 +0100100 spin_unlock(&sub->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100101}
102
Kees Cook31b102b2017-10-30 14:06:45 -0700103static void tipc_subscrp_timeout(struct timer_list *t)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100104{
Kees Cook31b102b2017-10-30 14:06:45 -0700105 struct tipc_subscription *sub = from_timer(sub, t, timer);
Jon Maloydf79d042018-02-15 10:40:44 +0100106 struct tipc_subscr *s = &sub->evt.s;
Ying Xue557d054c2017-03-21 10:47:49 +0100107
Jon Maloydf79d042018-02-15 10:40:44 +0100108 spin_lock(&sub->lock);
109 tipc_subscrp_send_event(sub, s->seq.lower, s->seq.upper,
Ying Xue57f1d182015-05-04 10:36:44 +0800110 TIPC_SUBSCR_TIMEOUT, 0, 0);
Jon Maloydf79d042018-02-15 10:40:44 +0100111 sub->inactive = true;
112 spin_unlock(&sub->lock);
Ying Xue00bc00a92015-05-04 10:36:46 +0800113}
114
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100115static void tipc_subscrp_kref_release(struct kref *kref)
116{
Jon Maloy414574a2018-02-15 10:40:45 +0100117 struct tipc_subscription *sub;
118 struct tipc_net *tn;
119
120 sub = container_of(kref, struct tipc_subscription, kref);
121 tn = tipc_net(sub->server->net);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100122
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100123 atomic_dec(&tn->subscription_count);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100124 kfree(sub);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100125}
126
Ying Xue7efea602017-03-28 12:28:28 +0200127void tipc_subscrp_put(struct tipc_subscription *subscription)
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100128{
129 kref_put(&subscription->kref, tipc_subscrp_kref_release);
130}
131
Ying Xue7efea602017-03-28 12:28:28 +0200132void tipc_subscrp_get(struct tipc_subscription *subscription)
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100133{
134 kref_get(&subscription->kref);
135}
136
Jon Maloy414574a2018-02-15 10:40:45 +0100137static struct tipc_subscription *tipc_subscrp_create(struct tipc_server *srv,
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100138 struct tipc_subscr *s,
Jon Maloy8985ecc2018-02-15 10:40:46 +0100139 int conid)
Ying Xuea62fbcc2015-01-09 15:27:11 +0800140{
Jon Maloy414574a2018-02-15 10:40:45 +0100141 struct tipc_net *tn = tipc_net(srv->net);
Paul Gortmakerfead3902011-12-29 20:43:44 -0500142 struct tipc_subscription *sub;
Jon Maloy8985ecc2018-02-15 10:40:46 +0100143 u32 filter = tipc_sub_read(s, filter);
Lijun Cheneb409462006-10-16 21:59:42 -0700144
Per Lidenb97bf3f2006-01-02 19:04:38 +0100145 /* Refuse subscription if global limit exceeded */
Ying Xuea62fbcc2015-01-09 15:27:11 +0800146 if (atomic_read(&tn->subscription_count) >= TIPC_MAX_SUBSCRIPTIONS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400147 pr_warn("Subscription rejected, limit reached (%u)\n",
Ying Xue34f256c2012-08-16 12:09:13 +0000148 TIPC_MAX_SUBSCRIPTIONS);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100149 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100150 }
151
152 /* Allocate subscription object */
Allan Stephens28353e72008-05-19 13:29:47 -0700153 sub = kmalloc(sizeof(*sub), GFP_ATOMIC);
Allan Stephensa10bd922006-06-25 23:52:17 -0700154 if (!sub) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400155 pr_warn("Subscription rejected, no memory\n");
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100156 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157 }
158
Per Lidenb97bf3f2006-01-02 19:04:38 +0100159 /* Initialize subscription object */
Jon Maloy8985ecc2018-02-15 10:40:46 +0100160 if (filter & TIPC_SUB_PORTS && filter & TIPC_SUB_SERVICE)
161 goto err;
162 if (tipc_sub_read(s, seq.lower) > tipc_sub_read(s, seq.upper))
163 goto err;
Jon Maloy414574a2018-02-15 10:40:45 +0100164 sub->server = srv;
Jon Maloydf79d042018-02-15 10:40:44 +0100165 sub->conid = conid;
166 sub->inactive = false;
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100167 memcpy(&sub->evt.s, s, sizeof(*s));
Jon Maloydf79d042018-02-15 10:40:44 +0100168 spin_lock_init(&sub->lock);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100169 atomic_inc(&tn->subscription_count);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100170 kref_init(&sub->kref);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100171 return sub;
Jon Maloy8985ecc2018-02-15 10:40:46 +0100172err:
173 pr_warn("Subscription rejected, illegal request\n");
174 kfree(sub);
175 return NULL;
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100176}
177
Jon Maloy414574a2018-02-15 10:40:45 +0100178struct tipc_subscription *tipc_subscrp_subscribe(struct tipc_server *srv,
Jon Maloydf79d042018-02-15 10:40:44 +0100179 struct tipc_subscr *s,
Jon Maloy8985ecc2018-02-15 10:40:46 +0100180 int conid)
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100181{
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100182 struct tipc_subscription *sub = NULL;
183 u32 timeout;
184
Jon Maloy8985ecc2018-02-15 10:40:46 +0100185 sub = tipc_subscrp_create(srv, s, conid);
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100186 if (!sub)
Jon Maloydf79d042018-02-15 10:40:44 +0100187 return NULL;
Parthasarathy Bhuvaragan7c13c622016-02-02 10:52:11 +0100188
Jon Maloy8985ecc2018-02-15 10:40:46 +0100189 tipc_nametbl_subscribe(sub);
Kees Cook31b102b2017-10-30 14:06:45 -0700190 timer_setup(&sub->timer, tipc_subscrp_timeout, 0);
Jon Maloy8985ecc2018-02-15 10:40:46 +0100191 timeout = tipc_sub_read(&sub->evt.s, timeout);
Parthasarathy Bhuvaragand094c4d2017-01-24 13:00:44 +0100192 if (timeout != TIPC_WAIT_FOREVER)
193 mod_timer(&sub->timer, jiffies + msecs_to_jiffies(timeout));
Jon Maloydf79d042018-02-15 10:40:44 +0100194 return sub;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100195}
196
Jon Maloydf79d042018-02-15 10:40:44 +0100197void tipc_sub_delete(struct tipc_subscription *sub)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100198{
Jon Maloydf79d042018-02-15 10:40:44 +0100199 tipc_nametbl_unsubscribe(sub);
200 if (sub->evt.s.timeout != TIPC_WAIT_FOREVER)
201 del_timer_sync(&sub->timer);
202 list_del(&sub->subscrp_list);
203 tipc_subscrp_put(sub);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204}
205
Ying Xue57f1d182015-05-04 10:36:44 +0800206int tipc_topsrv_start(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100207{
Ying Xuea62fbcc2015-01-09 15:27:11 +0800208 struct tipc_net *tn = net_generic(net, tipc_net_id);
209 const char name[] = "topology_server";
210 struct tipc_server *topsrv;
211 struct sockaddr_tipc *saddr;
212
213 saddr = kzalloc(sizeof(*saddr), GFP_ATOMIC);
214 if (!saddr)
215 return -ENOMEM;
216 saddr->family = AF_TIPC;
217 saddr->addrtype = TIPC_ADDR_NAMESEQ;
218 saddr->addr.nameseq.type = TIPC_TOP_SRV;
219 saddr->addr.nameseq.lower = TIPC_TOP_SRV;
220 saddr->addr.nameseq.upper = TIPC_TOP_SRV;
221 saddr->scope = TIPC_NODE_SCOPE;
222
223 topsrv = kzalloc(sizeof(*topsrv), GFP_ATOMIC);
224 if (!topsrv) {
225 kfree(saddr);
226 return -ENOMEM;
227 }
228 topsrv->net = net;
229 topsrv->saddr = saddr;
Ying Xuea62fbcc2015-01-09 15:27:11 +0800230 topsrv->max_rcvbuf_size = sizeof(struct tipc_subscr);
Ying Xuea62fbcc2015-01-09 15:27:11 +0800231
232 strncpy(topsrv->name, name, strlen(name) + 1);
233 tn->topsrv = topsrv;
234 atomic_set(&tn->subscription_count, 0);
235
236 return tipc_server_start(topsrv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237}
238
Ying Xue57f1d182015-05-04 10:36:44 +0800239void tipc_topsrv_stop(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100240{
Ying Xuea62fbcc2015-01-09 15:27:11 +0800241 struct tipc_net *tn = net_generic(net, tipc_net_id);
242 struct tipc_server *topsrv = tn->topsrv;
243
244 tipc_server_stop(topsrv);
245 kfree(topsrv->saddr);
246 kfree(topsrv);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100247}