2 * net/tipc/subscr.c: TIPC subscription service
4 * Copyright (c) 2000-2006, Ericsson AB
5 * Copyright (c) 2005, Wind River Systems
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
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.
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.
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
34 * POSSIBILITY OF SUCH DAMAGE.
40 #include "name_table.h"
44 * struct subscriber - TIPC network topology subscriber
45 * @ref: object reference to subscriber object itself
46 * @lock: pointer to spinlock controlling access to subscriber object
47 * @subscriber_list: adjacent subscribers in top. server's list of subscribers
48 * @subscription_list: list of subscription objects for this subscriber
49 * @port_ref: object reference to port used to communicate with subscriber
50 * @swap: indicates if subscriber uses opposite endianness in its messages
56 struct list_head subscriber_list
;
57 struct list_head subscription_list
;
63 * struct top_srv - TIPC network topology subscription service
64 * @user_ref: TIPC userid of subscription service
65 * @setup_port: reference to TIPC port that handles subscription requests
66 * @subscription_count: number of active subscriptions (not subscribers!)
67 * @subscriber_list: list of ports subscribing to service
68 * @lock: spinlock govering access to subscriber list
74 atomic_t subscription_count
;
75 struct list_head subscriber_list
;
79 static struct top_srv topsrv
= { 0 };
82 * htohl - convert value to endianness used by destination
83 * @in: value to convert
84 * @swap: non-zero if endianness must be reversed
86 * Returns converted value
89 static u32
htohl(u32 in
, int swap
)
91 char *c
= (char *)&in
;
93 return swap
? ((c
[3] << 3) + (c
[2] << 2) + (c
[1] << 1) + c
[0]) : in
;
97 * subscr_send_event - send a message containing a tipc_event to the subscriber
100 static void subscr_send_event(struct subscription
*sub
,
107 struct iovec msg_sect
;
109 msg_sect
.iov_base
= (void *)&sub
->evt
;
110 msg_sect
.iov_len
= sizeof(struct tipc_event
);
112 sub
->evt
.event
= htohl(event
, sub
->owner
->swap
);
113 sub
->evt
.found_lower
= htohl(found_lower
, sub
->owner
->swap
);
114 sub
->evt
.found_upper
= htohl(found_upper
, sub
->owner
->swap
);
115 sub
->evt
.port
.ref
= htohl(port_ref
, sub
->owner
->swap
);
116 sub
->evt
.port
.node
= htohl(node
, sub
->owner
->swap
);
117 tipc_send(sub
->owner
->port_ref
, 1, &msg_sect
);
121 * tipc_subscr_overlap - test for subscription overlap with the given values
123 * Returns 1 if there is overlap, otherwise 0.
126 int tipc_subscr_overlap(struct subscription
*sub
,
131 if (found_lower
< sub
->seq
.lower
)
132 found_lower
= sub
->seq
.lower
;
133 if (found_upper
> sub
->seq
.upper
)
134 found_upper
= sub
->seq
.upper
;
135 if (found_lower
> found_upper
)
141 * tipc_subscr_report_overlap - issue event if there is subscription overlap
143 * Protected by nameseq.lock in name_table.c
146 void tipc_subscr_report_overlap(struct subscription
*sub
,
154 dbg("Rep overlap %u:%u,%u<->%u,%u\n", sub
->seq
.type
, sub
->seq
.lower
,
155 sub
->seq
.upper
, found_lower
, found_upper
);
156 if (!tipc_subscr_overlap(sub
, found_lower
, found_upper
))
158 if (!must
&& !(sub
->filter
& TIPC_SUB_PORTS
))
160 subscr_send_event(sub
, found_lower
, found_upper
, event
, port_ref
, node
);
164 * subscr_timeout - subscription timeout has occurred
167 static void subscr_timeout(struct subscription
*sub
)
169 struct subscriber
*subscriber
;
172 /* Validate subscriber reference (in case subscriber is terminating) */
174 subscriber_ref
= sub
->owner
->ref
;
175 subscriber
= (struct subscriber
*)tipc_ref_lock(subscriber_ref
);
176 if (subscriber
== NULL
)
179 /* Validate timeout (in case subscription is being cancelled) */
181 if (sub
->timeout
== TIPC_WAIT_FOREVER
) {
182 tipc_ref_unlock(subscriber_ref
);
186 /* Unlink subscription from name table */
188 tipc_nametbl_unsubscribe(sub
);
190 /* Notify subscriber of timeout, then unlink subscription */
192 subscr_send_event(sub
,
193 sub
->evt
.s
.seq
.lower
,
194 sub
->evt
.s
.seq
.upper
,
198 list_del(&sub
->subscription_list
);
200 /* Now destroy subscription */
202 tipc_ref_unlock(subscriber_ref
);
203 k_term_timer(&sub
->timer
);
205 atomic_dec(&topsrv
.subscription_count
);
209 * subscr_del - delete a subscription within a subscription list
211 * Called with subscriber locked.
214 static void subscr_del(struct subscription
*sub
)
216 tipc_nametbl_unsubscribe(sub
);
217 list_del(&sub
->subscription_list
);
219 atomic_dec(&topsrv
.subscription_count
);
223 * subscr_terminate - terminate communication with a subscriber
225 * Called with subscriber locked. Routine must temporarily release this lock
226 * to enable subscription timeout routine(s) to finish without deadlocking;
227 * the lock is then reclaimed to allow caller to release it upon return.
228 * (This should work even in the unlikely event some other thread creates
229 * a new object reference in the interim that uses this lock; this routine will
230 * simply wait for it to be released, then claim it.)
233 static void subscr_terminate(struct subscriber
*subscriber
)
235 struct subscription
*sub
;
236 struct subscription
*sub_temp
;
238 /* Invalidate subscriber reference */
240 tipc_ref_discard(subscriber
->ref
);
241 spin_unlock_bh(subscriber
->lock
);
243 /* Destroy any existing subscriptions for subscriber */
245 list_for_each_entry_safe(sub
, sub_temp
, &subscriber
->subscription_list
,
247 if (sub
->timeout
!= TIPC_WAIT_FOREVER
) {
248 k_cancel_timer(&sub
->timer
);
249 k_term_timer(&sub
->timer
);
251 dbg("Term: Removing sub %u,%u,%u from subscriber %x list\n",
252 sub
->seq
.type
, sub
->seq
.lower
, sub
->seq
.upper
, subscriber
);
256 /* Sever connection to subscriber */
258 tipc_shutdown(subscriber
->port_ref
);
259 tipc_deleteport(subscriber
->port_ref
);
261 /* Remove subscriber from topology server's subscriber list */
263 spin_lock_bh(&topsrv
.lock
);
264 list_del(&subscriber
->subscriber_list
);
265 spin_unlock_bh(&topsrv
.lock
);
267 /* Now destroy subscriber */
269 spin_lock_bh(subscriber
->lock
);
274 * subscr_cancel - handle subscription cancellation request
276 * Called with subscriber locked. Routine must temporarily release this lock
277 * to enable the subscription timeout routine to finish without deadlocking;
278 * the lock is then reclaimed to allow caller to release it upon return.
280 * Note that fields of 's' use subscriber's endianness!
283 static void subscr_cancel(struct tipc_subscr
*s
,
284 struct subscriber
*subscriber
)
286 struct subscription
*sub
;
287 struct subscription
*sub_temp
;
290 /* Find first matching subscription, exit if not found */
292 list_for_each_entry_safe(sub
, sub_temp
, &subscriber
->subscription_list
,
294 if (!memcmp(s
, &sub
->evt
.s
, sizeof(struct tipc_subscr
))) {
302 /* Cancel subscription timer (if used), then delete subscription */
304 if (sub
->timeout
!= TIPC_WAIT_FOREVER
) {
305 sub
->timeout
= TIPC_WAIT_FOREVER
;
306 spin_unlock_bh(subscriber
->lock
);
307 k_cancel_timer(&sub
->timer
);
308 k_term_timer(&sub
->timer
);
309 spin_lock_bh(subscriber
->lock
);
311 dbg("Cancel: removing sub %u,%u,%u from subscriber %x list\n",
312 sub
->seq
.type
, sub
->seq
.lower
, sub
->seq
.upper
, subscriber
);
317 * subscr_subscribe - create subscription for subscriber
319 * Called with subscriber locked
322 static void subscr_subscribe(struct tipc_subscr
*s
,
323 struct subscriber
*subscriber
)
325 struct subscription
*sub
;
327 /* Determine/update subscriber's endianness */
329 if (s
->filter
& (TIPC_SUB_PORTS
| TIPC_SUB_SERVICE
))
330 subscriber
->swap
= 0;
332 subscriber
->swap
= 1;
334 /* Detect & process a subscription cancellation request */
336 if (s
->filter
& htohl(TIPC_SUB_CANCEL
, subscriber
->swap
)) {
337 s
->filter
&= ~htohl(TIPC_SUB_CANCEL
, subscriber
->swap
);
338 subscr_cancel(s
, subscriber
);
342 /* Refuse subscription if global limit exceeded */
344 if (atomic_read(&topsrv
.subscription_count
) >= tipc_max_subscriptions
) {
345 warn("Subscription rejected, subscription limit reached (%u)\n",
346 tipc_max_subscriptions
);
347 subscr_terminate(subscriber
);
351 /* Allocate subscription object */
353 sub
= kzalloc(sizeof(*sub
), GFP_ATOMIC
);
355 warn("Subscription rejected, no memory\n");
356 subscr_terminate(subscriber
);
360 /* Initialize subscription object */
362 sub
->seq
.type
= htohl(s
->seq
.type
, subscriber
->swap
);
363 sub
->seq
.lower
= htohl(s
->seq
.lower
, subscriber
->swap
);
364 sub
->seq
.upper
= htohl(s
->seq
.upper
, subscriber
->swap
);
365 sub
->timeout
= htohl(s
->timeout
, subscriber
->swap
);
366 sub
->filter
= htohl(s
->filter
, subscriber
->swap
);
367 if ((!(sub
->filter
& TIPC_SUB_PORTS
)
368 == !(sub
->filter
& TIPC_SUB_SERVICE
))
369 || (sub
->seq
.lower
> sub
->seq
.upper
)) {
370 warn("Subscription rejected, illegal request\n");
372 subscr_terminate(subscriber
);
375 memcpy(&sub
->evt
.s
, s
, sizeof(struct tipc_subscr
));
376 INIT_LIST_HEAD(&sub
->subscription_list
);
377 INIT_LIST_HEAD(&sub
->nameseq_list
);
378 list_add(&sub
->subscription_list
, &subscriber
->subscription_list
);
379 atomic_inc(&topsrv
.subscription_count
);
380 if (sub
->timeout
!= TIPC_WAIT_FOREVER
) {
381 k_init_timer(&sub
->timer
,
382 (Handler
)subscr_timeout
, (unsigned long)sub
);
383 k_start_timer(&sub
->timer
, sub
->timeout
);
385 sub
->owner
= subscriber
;
386 tipc_nametbl_subscribe(sub
);
390 * subscr_conn_shutdown_event - handle termination request from subscriber
393 static void subscr_conn_shutdown_event(void *usr_handle
,
395 struct sk_buff
**buf
,
396 unsigned char const *data
,
400 struct subscriber
*subscriber
;
401 spinlock_t
*subscriber_lock
;
403 subscriber
= tipc_ref_lock((u32
)(unsigned long)usr_handle
);
404 if (subscriber
== NULL
)
407 subscriber_lock
= subscriber
->lock
;
408 subscr_terminate(subscriber
);
409 spin_unlock_bh(subscriber_lock
);
413 * subscr_conn_msg_event - handle new subscription request from subscriber
416 static void subscr_conn_msg_event(void *usr_handle
,
418 struct sk_buff
**buf
,
422 struct subscriber
*subscriber
;
423 spinlock_t
*subscriber_lock
;
425 subscriber
= tipc_ref_lock((u32
)(unsigned long)usr_handle
);
426 if (subscriber
== NULL
)
429 subscriber_lock
= subscriber
->lock
;
430 if (size
!= sizeof(struct tipc_subscr
))
431 subscr_terminate(subscriber
);
433 subscr_subscribe((struct tipc_subscr
*)data
, subscriber
);
435 spin_unlock_bh(subscriber_lock
);
439 * subscr_named_msg_event - handle request to establish a new subscriber
442 static void subscr_named_msg_event(void *usr_handle
,
444 struct sk_buff
**buf
,
448 struct tipc_portid
const *orig
,
449 struct tipc_name_seq
const *dest
)
451 struct subscriber
*subscriber
;
452 struct iovec msg_sect
= {NULL
, 0};
453 spinlock_t
*subscriber_lock
;
455 dbg("subscr_named_msg_event: orig = %x own = %x,\n",
456 orig
->node
, tipc_own_addr
);
457 if (size
&& (size
!= sizeof(struct tipc_subscr
))) {
458 warn("Subscriber rejected, invalid subscription size\n");
462 /* Create subscriber object */
464 subscriber
= kzalloc(sizeof(struct subscriber
), GFP_ATOMIC
);
465 if (subscriber
== NULL
) {
466 warn("Subscriber rejected, no memory\n");
469 INIT_LIST_HEAD(&subscriber
->subscription_list
);
470 INIT_LIST_HEAD(&subscriber
->subscriber_list
);
471 subscriber
->ref
= tipc_ref_acquire(subscriber
, &subscriber
->lock
);
472 if (subscriber
->ref
== 0) {
473 warn("Subscriber rejected, reference table exhausted\n");
478 /* Establish a connection to subscriber */
480 tipc_createport(topsrv
.user_ref
,
481 (void *)(unsigned long)subscriber
->ref
,
485 subscr_conn_shutdown_event
,
488 subscr_conn_msg_event
,
490 &subscriber
->port_ref
);
491 if (subscriber
->port_ref
== 0) {
492 warn("Subscriber rejected, unable to create port\n");
493 tipc_ref_discard(subscriber
->ref
);
497 tipc_connect2port(subscriber
->port_ref
, orig
);
500 /* Add subscriber to topology server's subscriber list */
502 tipc_ref_lock(subscriber
->ref
);
503 spin_lock_bh(&topsrv
.lock
);
504 list_add(&subscriber
->subscriber_list
, &topsrv
.subscriber_list
);
505 spin_unlock_bh(&topsrv
.lock
);
508 * Subscribe now if message contains a subscription,
509 * otherwise send an empty response to complete connection handshaking
512 subscriber_lock
= subscriber
->lock
;
514 subscr_subscribe((struct tipc_subscr
*)data
, subscriber
);
516 tipc_send(subscriber
->port_ref
, 1, &msg_sect
);
518 spin_unlock_bh(subscriber_lock
);
521 int tipc_subscr_start(void)
523 struct tipc_name_seq seq
= {TIPC_TOP_SRV
, TIPC_TOP_SRV
, TIPC_TOP_SRV
};
526 memset(&topsrv
, 0, sizeof (topsrv
));
527 spin_lock_init(&topsrv
.lock
);
528 INIT_LIST_HEAD(&topsrv
.subscriber_list
);
530 spin_lock_bh(&topsrv
.lock
);
531 res
= tipc_attach(&topsrv
.user_ref
, NULL
, NULL
);
533 spin_unlock_bh(&topsrv
.lock
);
537 res
= tipc_createport(topsrv
.user_ref
,
539 TIPC_CRITICAL_IMPORTANCE
,
544 subscr_named_msg_event
,
551 res
= tipc_nametbl_publish_rsv(topsrv
.setup_port
, TIPC_NODE_SCOPE
, &seq
);
555 spin_unlock_bh(&topsrv
.lock
);
559 err("Failed to create subscription service\n");
560 tipc_detach(topsrv
.user_ref
);
562 spin_unlock_bh(&topsrv
.lock
);
566 void tipc_subscr_stop(void)
568 struct subscriber
*subscriber
;
569 struct subscriber
*subscriber_temp
;
570 spinlock_t
*subscriber_lock
;
572 if (topsrv
.user_ref
) {
573 tipc_deleteport(topsrv
.setup_port
);
574 list_for_each_entry_safe(subscriber
, subscriber_temp
,
575 &topsrv
.subscriber_list
,
577 tipc_ref_lock(subscriber
->ref
);
578 subscriber_lock
= subscriber
->lock
;
579 subscr_terminate(subscriber
);
580 spin_unlock_bh(subscriber_lock
);
582 tipc_detach(topsrv
.user_ref
);
588 int tipc_ispublished(struct tipc_name
const *name
)
592 return(tipc_nametbl_translate(name
->type
, name
->instance
,&domain
) != 0);