tipc: remove filter and timeout elements from struct tipc_subscription
[deliverable/linux.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
00bc00a9 43 * @kref: reference counter to tipc_subscription object
13a2e898 44 * @conid: connection identifier to server connecting to subscriber
963a1855 45 * @lock: control access to subscriber
57f1d186 46 * @subscrp_list: list of subscription objects for this subscriber
b97bf3fd 47 */
11f99906 48struct tipc_subscriber {
00bc00a9 49 struct kref kref;
13a2e898
YX
50 int conid;
51 spinlock_t lock;
57f1d186 52 struct list_head subscrp_list;
b97bf3fd
PL
53};
54
00bc00a9
YX
55static void tipc_subscrp_delete(struct tipc_subscription *sub);
56static void tipc_subscrb_put(struct tipc_subscriber *subscriber);
57
db5a753b
NH
58/**
59 * htohl - convert value to endianness used by destination
60 * @in: value to convert
61 * @swap: non-zero if endianness must be reversed
62 *
63 * Returns converted value
64 */
db5a753b
NH
65static u32 htohl(u32 in, int swap)
66{
67 return swap ? swab32(in) : in;
68}
69
57f1d186
YX
70static void tipc_subscrp_send_event(struct tipc_subscription *sub,
71 u32 found_lower, u32 found_upper,
72 u32 event, u32 port_ref, u32 node)
b97bf3fd 73{
a62fbcce 74 struct tipc_net *tn = net_generic(sub->net, tipc_net_id);
13a2e898
YX
75 struct tipc_subscriber *subscriber = sub->subscriber;
76 struct kvec msg_sect;
b97bf3fd
PL
77
78 msg_sect.iov_base = (void *)&sub->evt;
79 msg_sect.iov_len = sizeof(struct tipc_event);
db5a753b
NH
80 sub->evt.event = htohl(event, sub->swap);
81 sub->evt.found_lower = htohl(found_lower, sub->swap);
82 sub->evt.found_upper = htohl(found_upper, sub->swap);
83 sub->evt.port.ref = htohl(port_ref, sub->swap);
84 sub->evt.port.node = htohl(node, sub->swap);
a62fbcce
YX
85 tipc_conn_sendmsg(tn->topsrv, subscriber->conid, NULL,
86 msg_sect.iov_base, msg_sect.iov_len);
b97bf3fd
PL
87}
88
89/**
57f1d186
YX
90 * tipc_subscrp_check_overlap - test for subscription overlap with the
91 * given values
b97bf3fd
PL
92 *
93 * Returns 1 if there is overlap, otherwise 0.
94 */
57f1d186
YX
95int tipc_subscrp_check_overlap(struct tipc_subscription *sub, u32 found_lower,
96 u32 found_upper)
b97bf3fd
PL
97{
98 if (found_lower < sub->seq.lower)
99 found_lower = sub->seq.lower;
100 if (found_upper > sub->seq.upper)
101 found_upper = sub->seq.upper;
102 if (found_lower > found_upper)
103 return 0;
104 return 1;
105}
106
57f1d186
YX
107void tipc_subscrp_report_overlap(struct tipc_subscription *sub, u32 found_lower,
108 u32 found_upper, u32 event, u32 port_ref,
109 u32 node, int must)
b97bf3fd 110{
57f1d186 111 if (!tipc_subscrp_check_overlap(sub, found_lower, found_upper))
b97bf3fd 112 return;
30865231
PB
113 if (!must &&
114 !(htohl(sub->evt.s.filter, sub->swap) & TIPC_SUB_PORTS))
b97bf3fd 115 return;
e15f8804 116
57f1d186
YX
117 tipc_subscrp_send_event(sub, found_lower, found_upper, event, port_ref,
118 node);
b97bf3fd
PL
119}
120
57f1d186 121static void tipc_subscrp_timeout(unsigned long data)
b97bf3fd 122{
2f55c437 123 struct tipc_subscription *sub = (struct tipc_subscription *)data;
13a2e898 124 struct tipc_subscriber *subscriber = sub->subscriber;
28353e7f
AS
125
126 /* Notify subscriber of timeout */
57f1d186
YX
127 tipc_subscrp_send_event(sub, sub->evt.s.seq.lower, sub->evt.s.seq.upper,
128 TIPC_SUBSCR_TIMEOUT, 0, 0);
28353e7f 129
00bc00a9
YX
130 spin_lock_bh(&subscriber->lock);
131 tipc_subscrp_delete(sub);
132 spin_unlock_bh(&subscriber->lock);
133
134 tipc_subscrb_put(subscriber);
b97bf3fd
PL
135}
136
00bc00a9 137static void tipc_subscrb_kref_release(struct kref *kref)
eb409460 138{
00bc00a9
YX
139 struct tipc_subscriber *subcriber = container_of(kref,
140 struct tipc_subscriber, kref);
a62fbcce 141
00bc00a9
YX
142 kfree(subcriber);
143}
144
145static void tipc_subscrb_put(struct tipc_subscriber *subscriber)
146{
147 kref_put(&subscriber->kref, tipc_subscrb_kref_release);
148}
149
150static void tipc_subscrb_get(struct tipc_subscriber *subscriber)
151{
152 kref_get(&subscriber->kref);
eb409460
LC
153}
154
1b764828
YX
155static struct tipc_subscriber *tipc_subscrb_create(int conid)
156{
157 struct tipc_subscriber *subscriber;
158
159 subscriber = kzalloc(sizeof(*subscriber), GFP_ATOMIC);
160 if (!subscriber) {
161 pr_warn("Subscriber rejected, no memory\n");
162 return NULL;
163 }
00bc00a9 164 kref_init(&subscriber->kref);
1b764828
YX
165 INIT_LIST_HEAD(&subscriber->subscrp_list);
166 subscriber->conid = conid;
167 spin_lock_init(&subscriber->lock);
168
169 return subscriber;
170}
171
57f1d186 172static void tipc_subscrb_delete(struct tipc_subscriber *subscriber)
13a2e898 173{
00bc00a9 174 struct tipc_subscription *sub, *temp;
b97bf3fd 175
13a2e898 176 spin_lock_bh(&subscriber->lock);
b97bf3fd 177 /* Destroy any existing subscriptions for subscriber */
00bc00a9 178 list_for_each_entry_safe(sub, temp, &subscriber->subscrp_list,
57f1d186 179 subscrp_list) {
00bc00a9
YX
180 if (del_timer(&sub->timer)) {
181 tipc_subscrp_delete(sub);
182 tipc_subscrb_put(subscriber);
b97bf3fd 183 }
b97bf3fd 184 }
13a2e898 185 spin_unlock_bh(&subscriber->lock);
28353e7f 186
00bc00a9
YX
187 tipc_subscrb_put(subscriber);
188}
189
190static void tipc_subscrp_delete(struct tipc_subscription *sub)
191{
192 struct tipc_net *tn = net_generic(sub->net, tipc_net_id);
193
194 tipc_nametbl_unsubscribe(sub);
195 list_del(&sub->subscrp_list);
196 kfree(sub);
197 atomic_dec(&tn->subscription_count);
b97bf3fd
PL
198}
199
57f1d186
YX
200static void tipc_subscrp_cancel(struct tipc_subscr *s,
201 struct tipc_subscriber *subscriber)
eb409460 202{
00bc00a9 203 struct tipc_subscription *sub, *temp;
eb409460 204
a13683f2 205 spin_lock_bh(&subscriber->lock);
eb409460 206 /* Find first matching subscription, exit if not found */
00bc00a9 207 list_for_each_entry_safe(sub, temp, &subscriber->subscrp_list,
57f1d186 208 subscrp_list) {
db5a753b 209 if (!memcmp(s, &sub->evt.s, sizeof(struct tipc_subscr))) {
00bc00a9
YX
210 if (del_timer(&sub->timer)) {
211 tipc_subscrp_delete(sub);
212 tipc_subscrb_put(subscriber);
213 }
db5a753b
NH
214 break;
215 }
eb409460 216 }
a13683f2 217 spin_unlock_bh(&subscriber->lock);
eb409460
LC
218}
219
57f1d186
YX
220static int tipc_subscrp_create(struct net *net, struct tipc_subscr *s,
221 struct tipc_subscriber *subscriber,
222 struct tipc_subscription **sub_p)
a62fbcce
YX
223{
224 struct tipc_net *tn = net_generic(net, tipc_net_id);
fead3909 225 struct tipc_subscription *sub;
30865231 226 u32 timeout, filter;
db5a753b
NH
227 int swap;
228
229 /* Determine subscriber's endianness */
db5a753b 230 swap = !(s->filter & (TIPC_SUB_PORTS | TIPC_SUB_SERVICE));
eb409460
LC
231
232 /* Detect & process a subscription cancellation request */
db5a753b
NH
233 if (s->filter & htohl(TIPC_SUB_CANCEL, swap)) {
234 s->filter &= ~htohl(TIPC_SUB_CANCEL, swap);
57f1d186 235 tipc_subscrp_cancel(s, subscriber);
a5d0e7c0 236 return 0;
eb409460
LC
237 }
238
b97bf3fd 239 /* Refuse subscription if global limit exceeded */
a62fbcce 240 if (atomic_read(&tn->subscription_count) >= TIPC_MAX_SUBSCRIPTIONS) {
2cf8aa19 241 pr_warn("Subscription rejected, limit reached (%u)\n",
34f256cc 242 TIPC_MAX_SUBSCRIPTIONS);
a5d0e7c0 243 return -EINVAL;
b97bf3fd
PL
244 }
245
246 /* Allocate subscription object */
28353e7f 247 sub = kmalloc(sizeof(*sub), GFP_ATOMIC);
a10bd924 248 if (!sub) {
2cf8aa19 249 pr_warn("Subscription rejected, no memory\n");
a5d0e7c0 250 return -ENOMEM;
b97bf3fd
PL
251 }
252
b97bf3fd 253 /* Initialize subscription object */
4ac1c8d0 254 sub->net = net;
db5a753b
NH
255 sub->seq.type = htohl(s->seq.type, swap);
256 sub->seq.lower = htohl(s->seq.lower, swap);
257 sub->seq.upper = htohl(s->seq.upper, swap);
30865231
PB
258 filter = htohl(s->filter, swap);
259 if (((filter & TIPC_SUB_PORTS) && (filter & TIPC_SUB_SERVICE)) ||
f64f9e71 260 (sub->seq.lower > sub->seq.upper)) {
2cf8aa19 261 pr_warn("Subscription rejected, illegal request\n");
b97bf3fd 262 kfree(sub);
a5d0e7c0 263 return -EINVAL;
b97bf3fd 264 }
a13683f2 265 spin_lock_bh(&subscriber->lock);
57f1d186 266 list_add(&sub->subscrp_list, &subscriber->subscrp_list);
a13683f2 267 spin_unlock_bh(&subscriber->lock);
30865231 268
13a2e898 269 sub->subscriber = subscriber;
db5a753b 270 sub->swap = swap;
57f1d186 271 memcpy(&sub->evt.s, s, sizeof(*s));
a62fbcce 272 atomic_inc(&tn->subscription_count);
00bc00a9 273 setup_timer(&sub->timer, tipc_subscrp_timeout, (unsigned long)sub);
30865231
PB
274 timeout = htohl(sub->evt.s.timeout, swap);
275 if (!mod_timer(&sub->timer, jiffies + msecs_to_jiffies(timeout)))
00bc00a9 276 tipc_subscrb_get(subscriber);
a5d0e7c0
EH
277 *sub_p = sub;
278 return 0;
b97bf3fd
PL
279}
280
13a2e898 281/* Handle one termination request for the subscriber */
57f1d186 282static void tipc_subscrb_shutdown_cb(int conid, void *usr_data)
b97bf3fd 283{
57f1d186 284 tipc_subscrb_delete((struct tipc_subscriber *)usr_data);
b97bf3fd
PL
285}
286
13a2e898 287/* Handle one request to create a new subscription for the subscriber */
57f1d186
YX
288static void tipc_subscrb_rcv_cb(struct net *net, int conid,
289 struct sockaddr_tipc *addr, void *usr_data,
290 void *buf, size_t len)
b97bf3fd 291{
4d5cfcba 292 struct tipc_subscriber *subscrb = usr_data;
a5d0e7c0 293 struct tipc_subscription *sub = NULL;
7fe8097c 294 struct tipc_net *tn = net_generic(net, tipc_net_id);
28353e7f 295
4d5cfcba
PB
296 if (tipc_subscrp_create(net, (struct tipc_subscr *)buf, subscrb, &sub))
297 return tipc_conn_terminate(tn->topsrv, subscrb->conid);
298
299 tipc_nametbl_subscribe(sub);
b97bf3fd
PL
300}
301
13a2e898 302/* Handle one request to establish a new subscriber */
57f1d186 303static void *tipc_subscrb_connect_cb(int conid)
b97bf3fd 304{
1b764828 305 return (void *)tipc_subscrb_create(conid);
b97bf3fd
PL
306}
307
57f1d186 308int tipc_topsrv_start(struct net *net)
b97bf3fd 309{
a62fbcce
YX
310 struct tipc_net *tn = net_generic(net, tipc_net_id);
311 const char name[] = "topology_server";
312 struct tipc_server *topsrv;
313 struct sockaddr_tipc *saddr;
314
315 saddr = kzalloc(sizeof(*saddr), GFP_ATOMIC);
316 if (!saddr)
317 return -ENOMEM;
318 saddr->family = AF_TIPC;
319 saddr->addrtype = TIPC_ADDR_NAMESEQ;
320 saddr->addr.nameseq.type = TIPC_TOP_SRV;
321 saddr->addr.nameseq.lower = TIPC_TOP_SRV;
322 saddr->addr.nameseq.upper = TIPC_TOP_SRV;
323 saddr->scope = TIPC_NODE_SCOPE;
324
325 topsrv = kzalloc(sizeof(*topsrv), GFP_ATOMIC);
326 if (!topsrv) {
327 kfree(saddr);
328 return -ENOMEM;
329 }
330 topsrv->net = net;
331 topsrv->saddr = saddr;
332 topsrv->imp = TIPC_CRITICAL_IMPORTANCE;
333 topsrv->type = SOCK_SEQPACKET;
334 topsrv->max_rcvbuf_size = sizeof(struct tipc_subscr);
57f1d186
YX
335 topsrv->tipc_conn_recvmsg = tipc_subscrb_rcv_cb;
336 topsrv->tipc_conn_new = tipc_subscrb_connect_cb;
337 topsrv->tipc_conn_shutdown = tipc_subscrb_shutdown_cb;
a62fbcce
YX
338
339 strncpy(topsrv->name, name, strlen(name) + 1);
340 tn->topsrv = topsrv;
341 atomic_set(&tn->subscription_count, 0);
342
343 return tipc_server_start(topsrv);
b97bf3fd
PL
344}
345
57f1d186 346void tipc_topsrv_stop(struct net *net)
b97bf3fd 347{
a62fbcce
YX
348 struct tipc_net *tn = net_generic(net, tipc_net_id);
349 struct tipc_server *topsrv = tn->topsrv;
350
351 tipc_server_stop(topsrv);
352 kfree(topsrv->saddr);
353 kfree(topsrv);
b97bf3fd 354}
This page took 0.706316 seconds and 5 git commands to generate.