]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/tipc/subscr.c
Merge remote-tracking branches 'spi/topic/spidev' and 'spi/topic/spidev-test' into...
[mirror_ubuntu-artful-kernel.git] / net / tipc / subscr.c
CommitLineData
b97bf3fd 1/*
5b06c85c 2 * net/tipc/subscr.c: TIPC network topology service
c4307285 3 *
593a5f22 4 * Copyright (c) 2000-2006, Ericsson AB
13a2e898 5 * Copyright (c) 2005-2007, 2010-2013, Wind River Systems
b97bf3fd
PL
6 * All rights reserved.
7 *
9ea1fd3c 8 * Redistribution and use in source and binary forms, with or without
b97bf3fd
PL
9 * modification, are permitted provided that the following conditions are met:
10 *
9ea1fd3c
PL
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.
b97bf3fd 19 *
9ea1fd3c
PL
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
b97bf3fd
PL
34 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
b97bf3fd 38#include "name_table.h"
5b06c85c 39#include "subscr.h"
b97bf3fd
PL
40
41/**
11f99906 42 * struct tipc_subscriber - TIPC network topology subscriber
13a2e898 43 * @conid: connection identifier to server connecting to subscriber
963a1855 44 * @lock: control access to subscriber
b97bf3fd 45 * @subscription_list: list of subscription objects for this subscriber
b97bf3fd 46 */
11f99906 47struct tipc_subscriber {
13a2e898
YX
48 int conid;
49 spinlock_t lock;
b97bf3fd 50 struct list_head subscription_list;
b97bf3fd
PL
51};
52
db5a753b
NH
53/**
54 * htohl - convert value to endianness used by destination
55 * @in: value to convert
56 * @swap: non-zero if endianness must be reversed
57 *
58 * Returns converted value
59 */
db5a753b
NH
60static u32 htohl(u32 in, int swap)
61{
62 return swap ? swab32(in) : in;
63}
64
13a2e898
YX
65static void subscr_send_event(struct tipc_subscription *sub, u32 found_lower,
66 u32 found_upper, u32 event, u32 port_ref,
b97bf3fd
PL
67 u32 node)
68{
a62fbcce 69 struct tipc_net *tn = net_generic(sub->net, tipc_net_id);
13a2e898
YX
70 struct tipc_subscriber *subscriber = sub->subscriber;
71 struct kvec msg_sect;
b97bf3fd
PL
72
73 msg_sect.iov_base = (void *)&sub->evt;
74 msg_sect.iov_len = sizeof(struct tipc_event);
db5a753b
NH
75 sub->evt.event = htohl(event, sub->swap);
76 sub->evt.found_lower = htohl(found_lower, sub->swap);
77 sub->evt.found_upper = htohl(found_upper, sub->swap);
78 sub->evt.port.ref = htohl(port_ref, sub->swap);
79 sub->evt.port.node = htohl(node, sub->swap);
a62fbcce
YX
80 tipc_conn_sendmsg(tn->topsrv, subscriber->conid, NULL,
81 msg_sect.iov_base, msg_sect.iov_len);
b97bf3fd
PL
82}
83
84/**
4323add6 85 * tipc_subscr_overlap - test for subscription overlap with the given values
b97bf3fd
PL
86 *
87 * Returns 1 if there is overlap, otherwise 0.
88 */
ae8509c4 89int tipc_subscr_overlap(struct tipc_subscription *sub, u32 found_lower,
4323add6 90 u32 found_upper)
b97bf3fd
PL
91{
92 if (found_lower < sub->seq.lower)
93 found_lower = sub->seq.lower;
94 if (found_upper > sub->seq.upper)
95 found_upper = sub->seq.upper;
96 if (found_lower > found_upper)
97 return 0;
98 return 1;
99}
100
101/**
4323add6 102 * tipc_subscr_report_overlap - issue event if there is subscription overlap
c4307285 103 *
b97bf3fd
PL
104 * Protected by nameseq.lock in name_table.c
105 */
ae8509c4
PG
106void tipc_subscr_report_overlap(struct tipc_subscription *sub, u32 found_lower,
107 u32 found_upper, u32 event, u32 port_ref,
108 u32 node, int must)
b97bf3fd 109{
4323add6 110 if (!tipc_subscr_overlap(sub, found_lower, found_upper))
b97bf3fd 111 return;
eb409460 112 if (!must && !(sub->filter & TIPC_SUB_PORTS))
b97bf3fd 113 return;
e15f8804 114
7e244776 115 subscr_send_event(sub, found_lower, found_upper, event, port_ref, node);
b97bf3fd
PL
116}
117
2f55c437 118static void subscr_timeout(unsigned long data)
b97bf3fd 119{
2f55c437 120 struct tipc_subscription *sub = (struct tipc_subscription *)data;
13a2e898 121 struct tipc_subscriber *subscriber = sub->subscriber;
a62fbcce 122 struct tipc_net *tn = net_generic(sub->net, tipc_net_id);
b97bf3fd 123
13a2e898
YX
124 /* The spin lock per subscriber is used to protect its members */
125 spin_lock_bh(&subscriber->lock);
126
eb409460 127 /* Validate timeout (in case subscription is being cancelled) */
eb409460 128 if (sub->timeout == TIPC_WAIT_FOREVER) {
13a2e898 129 spin_unlock_bh(&subscriber->lock);
eb409460
LC
130 return;
131 }
132
b97bf3fd 133 /* Unlink subscription from name table */
4323add6 134 tipc_nametbl_unsubscribe(sub);
b97bf3fd 135
28353e7f 136 /* Unlink subscription from subscriber */
b97bf3fd
PL
137 list_del(&sub->subscription_list);
138
13a2e898 139 spin_unlock_bh(&subscriber->lock);
28353e7f
AS
140
141 /* Notify subscriber of timeout */
28353e7f
AS
142 subscr_send_event(sub, sub->evt.s.seq.lower, sub->evt.s.seq.upper,
143 TIPC_SUBSCR_TIMEOUT, 0, 0);
144
b97bf3fd 145 /* Now destroy subscription */
b97bf3fd 146 kfree(sub);
a62fbcce 147 atomic_dec(&tn->subscription_count);
b97bf3fd
PL
148}
149
eb409460
LC
150/**
151 * subscr_del - delete a subscription within a subscription list
152 *
13a2e898 153 * Called with subscriber lock held.
eb409460 154 */
fead3909 155static void subscr_del(struct tipc_subscription *sub)
eb409460 156{
a62fbcce
YX
157 struct tipc_net *tn = net_generic(sub->net, tipc_net_id);
158
eb409460
LC
159 tipc_nametbl_unsubscribe(sub);
160 list_del(&sub->subscription_list);
161 kfree(sub);
a62fbcce 162 atomic_dec(&tn->subscription_count);
eb409460
LC
163}
164
b97bf3fd
PL
165/**
166 * subscr_terminate - terminate communication with a subscriber
c4307285 167 *
13a2e898 168 * Note: Must call it in process context since it might sleep.
b97bf3fd 169 */
a62fbcce 170static void subscr_terminate(struct tipc_subscription *sub)
b97bf3fd 171{
a62fbcce
YX
172 struct tipc_subscriber *subscriber = sub->subscriber;
173 struct tipc_net *tn = net_generic(sub->net, tipc_net_id);
174
175 tipc_conn_terminate(tn->topsrv, subscriber->conid);
13a2e898
YX
176}
177
178static void subscr_release(struct tipc_subscriber *subscriber)
179{
fead3909
PG
180 struct tipc_subscription *sub;
181 struct tipc_subscription *sub_temp;
b97bf3fd 182
13a2e898 183 spin_lock_bh(&subscriber->lock);
b97bf3fd
PL
184
185 /* Destroy any existing subscriptions for subscriber */
b97bf3fd
PL
186 list_for_each_entry_safe(sub, sub_temp, &subscriber->subscription_list,
187 subscription_list) {
188 if (sub->timeout != TIPC_WAIT_FOREVER) {
13a2e898 189 spin_unlock_bh(&subscriber->lock);
2f55c437 190 del_timer_sync(&sub->timer);
13a2e898 191 spin_lock_bh(&subscriber->lock);
b97bf3fd 192 }
eb409460 193 subscr_del(sub);
b97bf3fd 194 }
13a2e898 195 spin_unlock_bh(&subscriber->lock);
28353e7f
AS
196
197 /* Now destroy subscriber */
b97bf3fd
PL
198 kfree(subscriber);
199}
200
eb409460
LC
201/**
202 * subscr_cancel - handle subscription cancellation request
203 *
13a2e898 204 * Called with subscriber lock held. Routine must temporarily release lock
eb409460
LC
205 * to enable the subscription timeout routine to finish without deadlocking;
206 * the lock is then reclaimed to allow caller to release it upon return.
207 *
208 * Note that fields of 's' use subscriber's endianness!
209 */
eb409460 210static void subscr_cancel(struct tipc_subscr *s,
11f99906 211 struct tipc_subscriber *subscriber)
eb409460 212{
fead3909
PG
213 struct tipc_subscription *sub;
214 struct tipc_subscription *sub_temp;
eb409460
LC
215 int found = 0;
216
217 /* Find first matching subscription, exit if not found */
eb409460
LC
218 list_for_each_entry_safe(sub, sub_temp, &subscriber->subscription_list,
219 subscription_list) {
db5a753b
NH
220 if (!memcmp(s, &sub->evt.s, sizeof(struct tipc_subscr))) {
221 found = 1;
222 break;
223 }
eb409460
LC
224 }
225 if (!found)
226 return;
227
228 /* Cancel subscription timer (if used), then delete subscription */
eb409460
LC
229 if (sub->timeout != TIPC_WAIT_FOREVER) {
230 sub->timeout = TIPC_WAIT_FOREVER;
13a2e898 231 spin_unlock_bh(&subscriber->lock);
2f55c437 232 del_timer_sync(&sub->timer);
13a2e898 233 spin_lock_bh(&subscriber->lock);
eb409460 234 }
eb409460
LC
235 subscr_del(sub);
236}
237
b97bf3fd
PL
238/**
239 * subscr_subscribe - create subscription for subscriber
c4307285 240 *
13a2e898 241 * Called with subscriber lock held.
b97bf3fd 242 */
4ac1c8d0 243static int subscr_subscribe(struct net *net, struct tipc_subscr *s,
a5d0e7c0 244 struct tipc_subscriber *subscriber,
a62fbcce
YX
245 struct tipc_subscription **sub_p)
246{
247 struct tipc_net *tn = net_generic(net, tipc_net_id);
fead3909 248 struct tipc_subscription *sub;
db5a753b
NH
249 int swap;
250
251 /* Determine subscriber's endianness */
db5a753b 252 swap = !(s->filter & (TIPC_SUB_PORTS | TIPC_SUB_SERVICE));
eb409460
LC
253
254 /* Detect & process a subscription cancellation request */
db5a753b
NH
255 if (s->filter & htohl(TIPC_SUB_CANCEL, swap)) {
256 s->filter &= ~htohl(TIPC_SUB_CANCEL, swap);
eb409460 257 subscr_cancel(s, subscriber);
a5d0e7c0 258 return 0;
eb409460
LC
259 }
260
b97bf3fd 261 /* Refuse subscription if global limit exceeded */
a62fbcce 262 if (atomic_read(&tn->subscription_count) >= TIPC_MAX_SUBSCRIPTIONS) {
2cf8aa19 263 pr_warn("Subscription rejected, limit reached (%u)\n",
34f256cc 264 TIPC_MAX_SUBSCRIPTIONS);
a5d0e7c0 265 return -EINVAL;
b97bf3fd
PL
266 }
267
268 /* Allocate subscription object */
28353e7f 269 sub = kmalloc(sizeof(*sub), GFP_ATOMIC);
a10bd924 270 if (!sub) {
2cf8aa19 271 pr_warn("Subscription rejected, no memory\n");
a5d0e7c0 272 return -ENOMEM;
b97bf3fd
PL
273 }
274
b97bf3fd 275 /* Initialize subscription object */
4ac1c8d0 276 sub->net = net;
db5a753b
NH
277 sub->seq.type = htohl(s->seq.type, swap);
278 sub->seq.lower = htohl(s->seq.lower, swap);
279 sub->seq.upper = htohl(s->seq.upper, swap);
2f55c437 280 sub->timeout = msecs_to_jiffies(htohl(s->timeout, swap));
db5a753b 281 sub->filter = htohl(s->filter, swap);
8c974438
NH
282 if ((!(sub->filter & TIPC_SUB_PORTS) ==
283 !(sub->filter & TIPC_SUB_SERVICE)) ||
f64f9e71 284 (sub->seq.lower > sub->seq.upper)) {
2cf8aa19 285 pr_warn("Subscription rejected, illegal request\n");
b97bf3fd 286 kfree(sub);
a5d0e7c0 287 return -EINVAL;
b97bf3fd 288 }
b97bf3fd 289 list_add(&sub->subscription_list, &subscriber->subscription_list);
13a2e898 290 sub->subscriber = subscriber;
db5a753b 291 sub->swap = swap;
28353e7f 292 memcpy(&sub->evt.s, s, sizeof(struct tipc_subscr));
a62fbcce 293 atomic_inc(&tn->subscription_count);
b97bf3fd 294 if (sub->timeout != TIPC_WAIT_FOREVER) {
2f55c437
YX
295 setup_timer(&sub->timer, subscr_timeout, (unsigned long)sub);
296 mod_timer(&sub->timer, jiffies + sub->timeout);
b97bf3fd 297 }
a5d0e7c0
EH
298 *sub_p = sub;
299 return 0;
b97bf3fd
PL
300}
301
13a2e898
YX
302/* Handle one termination request for the subscriber */
303static void subscr_conn_shutdown_event(int conid, void *usr_data)
b97bf3fd 304{
13a2e898 305 subscr_release((struct tipc_subscriber *)usr_data);
b97bf3fd
PL
306}
307
13a2e898 308/* Handle one request to create a new subscription for the subscriber */
4ac1c8d0
YX
309static void subscr_conn_msg_event(struct net *net, int conid,
310 struct sockaddr_tipc *addr, void *usr_data,
311 void *buf, size_t len)
b97bf3fd 312{
13a2e898 313 struct tipc_subscriber *subscriber = usr_data;
a5d0e7c0 314 struct tipc_subscription *sub = NULL;
28353e7f 315
13a2e898 316 spin_lock_bh(&subscriber->lock);
4ac1c8d0
YX
317 if (subscr_subscribe(net, (struct tipc_subscr *)buf, subscriber,
318 &sub) < 0) {
a5d0e7c0 319 spin_unlock_bh(&subscriber->lock);
a62fbcce 320 subscr_terminate(sub);
a5d0e7c0
EH
321 return;
322 }
13a2e898
YX
323 if (sub)
324 tipc_nametbl_subscribe(sub);
325 spin_unlock_bh(&subscriber->lock);
b97bf3fd
PL
326}
327
13a2e898
YX
328/* Handle one request to establish a new subscriber */
329static void *subscr_named_msg_event(int conid)
b97bf3fd 330{
11f99906 331 struct tipc_subscriber *subscriber;
b97bf3fd
PL
332
333 /* Create subscriber object */
11f99906 334 subscriber = kzalloc(sizeof(struct tipc_subscriber), GFP_ATOMIC);
b97bf3fd 335 if (subscriber == NULL) {
2cf8aa19 336 pr_warn("Subscriber rejected, no memory\n");
13a2e898 337 return NULL;
b97bf3fd 338 }
b97bf3fd 339 INIT_LIST_HEAD(&subscriber->subscription_list);
13a2e898
YX
340 subscriber->conid = conid;
341 spin_lock_init(&subscriber->lock);
28353e7f 342
13a2e898 343 return (void *)subscriber;
b97bf3fd
PL
344}
345
a62fbcce 346int tipc_subscr_start(struct net *net)
b97bf3fd 347{
a62fbcce
YX
348 struct tipc_net *tn = net_generic(net, tipc_net_id);
349 const char name[] = "topology_server";
350 struct tipc_server *topsrv;
351 struct sockaddr_tipc *saddr;
352
353 saddr = kzalloc(sizeof(*saddr), GFP_ATOMIC);
354 if (!saddr)
355 return -ENOMEM;
356 saddr->family = AF_TIPC;
357 saddr->addrtype = TIPC_ADDR_NAMESEQ;
358 saddr->addr.nameseq.type = TIPC_TOP_SRV;
359 saddr->addr.nameseq.lower = TIPC_TOP_SRV;
360 saddr->addr.nameseq.upper = TIPC_TOP_SRV;
361 saddr->scope = TIPC_NODE_SCOPE;
362
363 topsrv = kzalloc(sizeof(*topsrv), GFP_ATOMIC);
364 if (!topsrv) {
365 kfree(saddr);
366 return -ENOMEM;
367 }
368 topsrv->net = net;
369 topsrv->saddr = saddr;
370 topsrv->imp = TIPC_CRITICAL_IMPORTANCE;
371 topsrv->type = SOCK_SEQPACKET;
372 topsrv->max_rcvbuf_size = sizeof(struct tipc_subscr);
373 topsrv->tipc_conn_recvmsg = subscr_conn_msg_event;
374 topsrv->tipc_conn_new = subscr_named_msg_event;
375 topsrv->tipc_conn_shutdown = subscr_conn_shutdown_event;
376
377 strncpy(topsrv->name, name, strlen(name) + 1);
378 tn->topsrv = topsrv;
379 atomic_set(&tn->subscription_count, 0);
380
381 return tipc_server_start(topsrv);
b97bf3fd
PL
382}
383
a62fbcce 384void tipc_subscr_stop(struct net *net)
b97bf3fd 385{
a62fbcce
YX
386 struct tipc_net *tn = net_generic(net, tipc_net_id);
387 struct tipc_server *topsrv = tn->topsrv;
388
389 tipc_server_stop(topsrv);
390 kfree(topsrv->saddr);
391 kfree(topsrv);
b97bf3fd 392}