diff options
Diffstat (limited to 'net/tipc/subscr.c')
| -rw-r--r-- | net/tipc/subscr.c | 249 |
1 files changed, 136 insertions, 113 deletions
diff --git a/net/tipc/subscr.c b/net/tipc/subscr.c index 8c01ccd3626c..0326d3060bc7 100644 --- a/net/tipc/subscr.c +++ b/net/tipc/subscr.c | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * net/tipc/subscr.c: TIPC subscription service | 2 | * net/tipc/subscr.c: TIPC network topology service |
| 3 | * | 3 | * |
| 4 | * Copyright (c) 2000-2006, Ericsson AB | 4 | * Copyright (c) 2000-2006, Ericsson AB |
| 5 | * Copyright (c) 2005, Wind River Systems | 5 | * Copyright (c) 2005-2007, Wind River Systems |
| 6 | * All rights reserved. | 6 | * All rights reserved. |
| 7 | * | 7 | * |
| 8 | * Redistribution and use in source and binary forms, with or without | 8 | * Redistribution and use in source and binary forms, with or without |
| @@ -36,27 +36,24 @@ | |||
| 36 | 36 | ||
| 37 | #include "core.h" | 37 | #include "core.h" |
| 38 | #include "dbg.h" | 38 | #include "dbg.h" |
| 39 | #include "subscr.h" | ||
| 40 | #include "name_table.h" | 39 | #include "name_table.h" |
| 40 | #include "port.h" | ||
| 41 | #include "ref.h" | 41 | #include "ref.h" |
| 42 | #include "subscr.h" | ||
| 42 | 43 | ||
| 43 | /** | 44 | /** |
| 44 | * struct subscriber - TIPC network topology subscriber | 45 | * struct subscriber - TIPC network topology subscriber |
| 45 | * @ref: object reference to subscriber object itself | 46 | * @port_ref: object reference to server port connecting to subscriber |
| 46 | * @lock: pointer to spinlock controlling access to subscriber object | 47 | * @lock: pointer to spinlock controlling access to subscriber's server port |
| 47 | * @subscriber_list: adjacent subscribers in top. server's list of subscribers | 48 | * @subscriber_list: adjacent subscribers in top. server's list of subscribers |
| 48 | * @subscription_list: list of subscription objects for this subscriber | 49 | * @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 | ||
| 51 | */ | 50 | */ |
| 52 | 51 | ||
| 53 | struct subscriber { | 52 | struct subscriber { |
| 54 | u32 ref; | 53 | u32 port_ref; |
| 55 | spinlock_t *lock; | 54 | spinlock_t *lock; |
| 56 | struct list_head subscriber_list; | 55 | struct list_head subscriber_list; |
| 57 | struct list_head subscription_list; | 56 | struct list_head subscription_list; |
| 58 | u32 port_ref; | ||
| 59 | int swap; | ||
| 60 | }; | 57 | }; |
| 61 | 58 | ||
| 62 | /** | 59 | /** |
| @@ -88,13 +85,14 @@ static struct top_srv topsrv = { 0 }; | |||
| 88 | 85 | ||
| 89 | static u32 htohl(u32 in, int swap) | 86 | static u32 htohl(u32 in, int swap) |
| 90 | { | 87 | { |
| 91 | char *c = (char *)∈ | 88 | return swap ? (u32)___constant_swab32(in) : in; |
| 92 | |||
| 93 | return swap ? ((c[3] << 3) + (c[2] << 2) + (c[1] << 1) + c[0]) : in; | ||
| 94 | } | 89 | } |
| 95 | 90 | ||
| 96 | /** | 91 | /** |
| 97 | * subscr_send_event - send a message containing a tipc_event to the subscriber | 92 | * subscr_send_event - send a message containing a tipc_event to the subscriber |
| 93 | * | ||
| 94 | * Note: Must not hold subscriber's server port lock, since tipc_send() will | ||
| 95 | * try to take the lock if the message is rejected and returned! | ||
| 98 | */ | 96 | */ |
| 99 | 97 | ||
| 100 | static void subscr_send_event(struct subscription *sub, | 98 | static void subscr_send_event(struct subscription *sub, |
| @@ -109,12 +107,12 @@ static void subscr_send_event(struct subscription *sub, | |||
| 109 | msg_sect.iov_base = (void *)&sub->evt; | 107 | msg_sect.iov_base = (void *)&sub->evt; |
| 110 | msg_sect.iov_len = sizeof(struct tipc_event); | 108 | msg_sect.iov_len = sizeof(struct tipc_event); |
| 111 | 109 | ||
| 112 | sub->evt.event = htohl(event, sub->owner->swap); | 110 | sub->evt.event = htohl(event, sub->swap); |
| 113 | sub->evt.found_lower = htohl(found_lower, sub->owner->swap); | 111 | sub->evt.found_lower = htohl(found_lower, sub->swap); |
| 114 | sub->evt.found_upper = htohl(found_upper, sub->owner->swap); | 112 | sub->evt.found_upper = htohl(found_upper, sub->swap); |
| 115 | sub->evt.port.ref = htohl(port_ref, sub->owner->swap); | 113 | sub->evt.port.ref = htohl(port_ref, sub->swap); |
| 116 | sub->evt.port.node = htohl(node, sub->owner->swap); | 114 | sub->evt.port.node = htohl(node, sub->swap); |
| 117 | tipc_send(sub->owner->port_ref, 1, &msg_sect); | 115 | tipc_send(sub->server_ref, 1, &msg_sect); |
| 118 | } | 116 | } |
| 119 | 117 | ||
| 120 | /** | 118 | /** |
| @@ -151,13 +149,12 @@ void tipc_subscr_report_overlap(struct subscription *sub, | |||
| 151 | u32 node, | 149 | u32 node, |
| 152 | int must) | 150 | int must) |
| 153 | { | 151 | { |
| 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)) | 152 | if (!tipc_subscr_overlap(sub, found_lower, found_upper)) |
| 157 | return; | 153 | return; |
| 158 | if (!must && !(sub->filter & TIPC_SUB_PORTS)) | 154 | if (!must && !(sub->filter & TIPC_SUB_PORTS)) |
| 159 | return; | 155 | return; |
| 160 | subscr_send_event(sub, found_lower, found_upper, event, port_ref, node); | 156 | |
| 157 | sub->event_cb(sub, found_lower, found_upper, event, port_ref, node); | ||
| 161 | } | 158 | } |
| 162 | 159 | ||
| 163 | /** | 160 | /** |
| @@ -166,20 +163,18 @@ void tipc_subscr_report_overlap(struct subscription *sub, | |||
| 166 | 163 | ||
| 167 | static void subscr_timeout(struct subscription *sub) | 164 | static void subscr_timeout(struct subscription *sub) |
| 168 | { | 165 | { |
| 169 | struct subscriber *subscriber; | 166 | struct port *server_port; |
| 170 | u32 subscriber_ref; | ||
| 171 | 167 | ||
| 172 | /* Validate subscriber reference (in case subscriber is terminating) */ | 168 | /* Validate server port reference (in case subscriber is terminating) */ |
| 173 | 169 | ||
| 174 | subscriber_ref = sub->owner->ref; | 170 | server_port = tipc_port_lock(sub->server_ref); |
| 175 | subscriber = (struct subscriber *)tipc_ref_lock(subscriber_ref); | 171 | if (server_port == NULL) |
| 176 | if (subscriber == NULL) | ||
| 177 | return; | 172 | return; |
| 178 | 173 | ||
| 179 | /* Validate timeout (in case subscription is being cancelled) */ | 174 | /* Validate timeout (in case subscription is being cancelled) */ |
| 180 | 175 | ||
| 181 | if (sub->timeout == TIPC_WAIT_FOREVER) { | 176 | if (sub->timeout == TIPC_WAIT_FOREVER) { |
| 182 | tipc_ref_unlock(subscriber_ref); | 177 | tipc_port_unlock(server_port); |
| 183 | return; | 178 | return; |
| 184 | } | 179 | } |
| 185 | 180 | ||
| @@ -187,19 +182,21 @@ static void subscr_timeout(struct subscription *sub) | |||
| 187 | 182 | ||
| 188 | tipc_nametbl_unsubscribe(sub); | 183 | tipc_nametbl_unsubscribe(sub); |
| 189 | 184 | ||
| 190 | /* Notify subscriber of timeout, then unlink subscription */ | 185 | /* Unlink subscription from subscriber */ |
| 191 | 186 | ||
| 192 | subscr_send_event(sub, | ||
| 193 | sub->evt.s.seq.lower, | ||
| 194 | sub->evt.s.seq.upper, | ||
| 195 | TIPC_SUBSCR_TIMEOUT, | ||
| 196 | 0, | ||
| 197 | 0); | ||
| 198 | list_del(&sub->subscription_list); | 187 | list_del(&sub->subscription_list); |
| 199 | 188 | ||
| 189 | /* Release subscriber's server port */ | ||
| 190 | |||
| 191 | tipc_port_unlock(server_port); | ||
| 192 | |||
| 193 | /* Notify subscriber of timeout */ | ||
| 194 | |||
| 195 | subscr_send_event(sub, sub->evt.s.seq.lower, sub->evt.s.seq.upper, | ||
| 196 | TIPC_SUBSCR_TIMEOUT, 0, 0); | ||
| 197 | |||
| 200 | /* Now destroy subscription */ | 198 | /* Now destroy subscription */ |
| 201 | 199 | ||
| 202 | tipc_ref_unlock(subscriber_ref); | ||
| 203 | k_term_timer(&sub->timer); | 200 | k_term_timer(&sub->timer); |
| 204 | kfree(sub); | 201 | kfree(sub); |
| 205 | atomic_dec(&topsrv.subscription_count); | 202 | atomic_dec(&topsrv.subscription_count); |
| @@ -208,7 +205,7 @@ static void subscr_timeout(struct subscription *sub) | |||
| 208 | /** | 205 | /** |
| 209 | * subscr_del - delete a subscription within a subscription list | 206 | * subscr_del - delete a subscription within a subscription list |
| 210 | * | 207 | * |
| 211 | * Called with subscriber locked. | 208 | * Called with subscriber port locked. |
| 212 | */ | 209 | */ |
| 213 | 210 | ||
| 214 | static void subscr_del(struct subscription *sub) | 211 | static void subscr_del(struct subscription *sub) |
| @@ -222,7 +219,7 @@ static void subscr_del(struct subscription *sub) | |||
| 222 | /** | 219 | /** |
| 223 | * subscr_terminate - terminate communication with a subscriber | 220 | * subscr_terminate - terminate communication with a subscriber |
| 224 | * | 221 | * |
| 225 | * Called with subscriber locked. Routine must temporarily release this lock | 222 | * Called with subscriber port locked. Routine must temporarily release lock |
| 226 | * to enable subscription timeout routine(s) to finish without deadlocking; | 223 | * to enable subscription timeout routine(s) to finish without deadlocking; |
| 227 | * the lock is then reclaimed to allow caller to release it upon return. | 224 | * 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 | 225 | * (This should work even in the unlikely event some other thread creates |
| @@ -232,14 +229,21 @@ static void subscr_del(struct subscription *sub) | |||
| 232 | 229 | ||
| 233 | static void subscr_terminate(struct subscriber *subscriber) | 230 | static void subscr_terminate(struct subscriber *subscriber) |
| 234 | { | 231 | { |
| 232 | u32 port_ref; | ||
| 235 | struct subscription *sub; | 233 | struct subscription *sub; |
| 236 | struct subscription *sub_temp; | 234 | struct subscription *sub_temp; |
| 237 | 235 | ||
| 238 | /* Invalidate subscriber reference */ | 236 | /* Invalidate subscriber reference */ |
| 239 | 237 | ||
| 240 | tipc_ref_discard(subscriber->ref); | 238 | port_ref = subscriber->port_ref; |
| 239 | subscriber->port_ref = 0; | ||
| 241 | spin_unlock_bh(subscriber->lock); | 240 | spin_unlock_bh(subscriber->lock); |
| 242 | 241 | ||
| 242 | /* Sever connection to subscriber */ | ||
| 243 | |||
| 244 | tipc_shutdown(port_ref); | ||
| 245 | tipc_deleteport(port_ref); | ||
| 246 | |||
| 243 | /* Destroy any existing subscriptions for subscriber */ | 247 | /* Destroy any existing subscriptions for subscriber */ |
| 244 | 248 | ||
| 245 | list_for_each_entry_safe(sub, sub_temp, &subscriber->subscription_list, | 249 | list_for_each_entry_safe(sub, sub_temp, &subscriber->subscription_list, |
| @@ -253,27 +257,25 @@ static void subscr_terminate(struct subscriber *subscriber) | |||
| 253 | subscr_del(sub); | 257 | subscr_del(sub); |
| 254 | } | 258 | } |
| 255 | 259 | ||
| 256 | /* Sever connection to subscriber */ | ||
| 257 | |||
| 258 | tipc_shutdown(subscriber->port_ref); | ||
| 259 | tipc_deleteport(subscriber->port_ref); | ||
| 260 | |||
| 261 | /* Remove subscriber from topology server's subscriber list */ | 260 | /* Remove subscriber from topology server's subscriber list */ |
| 262 | 261 | ||
| 263 | spin_lock_bh(&topsrv.lock); | 262 | spin_lock_bh(&topsrv.lock); |
| 264 | list_del(&subscriber->subscriber_list); | 263 | list_del(&subscriber->subscriber_list); |
| 265 | spin_unlock_bh(&topsrv.lock); | 264 | spin_unlock_bh(&topsrv.lock); |
| 266 | 265 | ||
| 267 | /* Now destroy subscriber */ | 266 | /* Reclaim subscriber lock */ |
| 268 | 267 | ||
| 269 | spin_lock_bh(subscriber->lock); | 268 | spin_lock_bh(subscriber->lock); |
| 269 | |||
| 270 | /* Now destroy subscriber */ | ||
| 271 | |||
| 270 | kfree(subscriber); | 272 | kfree(subscriber); |
| 271 | } | 273 | } |
| 272 | 274 | ||
| 273 | /** | 275 | /** |
| 274 | * subscr_cancel - handle subscription cancellation request | 276 | * subscr_cancel - handle subscription cancellation request |
| 275 | * | 277 | * |
| 276 | * Called with subscriber locked. Routine must temporarily release this lock | 278 | * Called with subscriber port locked. Routine must temporarily release lock |
| 277 | * to enable the subscription timeout routine to finish without deadlocking; | 279 | * 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 | * the lock is then reclaimed to allow caller to release it upon return. |
| 279 | * | 281 | * |
| @@ -316,27 +318,25 @@ static void subscr_cancel(struct tipc_subscr *s, | |||
| 316 | /** | 318 | /** |
| 317 | * subscr_subscribe - create subscription for subscriber | 319 | * subscr_subscribe - create subscription for subscriber |
| 318 | * | 320 | * |
| 319 | * Called with subscriber locked | 321 | * Called with subscriber port locked. |
| 320 | */ | 322 | */ |
| 321 | 323 | ||
| 322 | static void subscr_subscribe(struct tipc_subscr *s, | 324 | static struct subscription *subscr_subscribe(struct tipc_subscr *s, |
| 323 | struct subscriber *subscriber) | 325 | struct subscriber *subscriber) |
| 324 | { | 326 | { |
| 325 | struct subscription *sub; | 327 | struct subscription *sub; |
| 328 | int swap; | ||
| 326 | 329 | ||
| 327 | /* Determine/update subscriber's endianness */ | 330 | /* Determine subscriber's endianness */ |
| 328 | 331 | ||
| 329 | if (s->filter & (TIPC_SUB_PORTS | TIPC_SUB_SERVICE)) | 332 | swap = !(s->filter & (TIPC_SUB_PORTS | TIPC_SUB_SERVICE)); |
| 330 | subscriber->swap = 0; | ||
| 331 | else | ||
| 332 | subscriber->swap = 1; | ||
| 333 | 333 | ||
| 334 | /* Detect & process a subscription cancellation request */ | 334 | /* Detect & process a subscription cancellation request */ |
| 335 | 335 | ||
| 336 | if (s->filter & htohl(TIPC_SUB_CANCEL, subscriber->swap)) { | 336 | if (s->filter & htohl(TIPC_SUB_CANCEL, swap)) { |
| 337 | s->filter &= ~htohl(TIPC_SUB_CANCEL, subscriber->swap); | 337 | s->filter &= ~htohl(TIPC_SUB_CANCEL, swap); |
| 338 | subscr_cancel(s, subscriber); | 338 | subscr_cancel(s, subscriber); |
| 339 | return; | 339 | return NULL; |
| 340 | } | 340 | } |
| 341 | 341 | ||
| 342 | /* Refuse subscription if global limit exceeded */ | 342 | /* Refuse subscription if global limit exceeded */ |
| @@ -345,63 +345,66 @@ static void subscr_subscribe(struct tipc_subscr *s, | |||
| 345 | warn("Subscription rejected, subscription limit reached (%u)\n", | 345 | warn("Subscription rejected, subscription limit reached (%u)\n", |
| 346 | tipc_max_subscriptions); | 346 | tipc_max_subscriptions); |
| 347 | subscr_terminate(subscriber); | 347 | subscr_terminate(subscriber); |
| 348 | return; | 348 | return NULL; |
| 349 | } | 349 | } |
| 350 | 350 | ||
| 351 | /* Allocate subscription object */ | 351 | /* Allocate subscription object */ |
| 352 | 352 | ||
| 353 | sub = kzalloc(sizeof(*sub), GFP_ATOMIC); | 353 | sub = kmalloc(sizeof(*sub), GFP_ATOMIC); |
| 354 | if (!sub) { | 354 | if (!sub) { |
| 355 | warn("Subscription rejected, no memory\n"); | 355 | warn("Subscription rejected, no memory\n"); |
| 356 | subscr_terminate(subscriber); | 356 | subscr_terminate(subscriber); |
| 357 | return; | 357 | return NULL; |
| 358 | } | 358 | } |
| 359 | 359 | ||
| 360 | /* Initialize subscription object */ | 360 | /* Initialize subscription object */ |
| 361 | 361 | ||
| 362 | sub->seq.type = htohl(s->seq.type, subscriber->swap); | 362 | sub->seq.type = htohl(s->seq.type, swap); |
| 363 | sub->seq.lower = htohl(s->seq.lower, subscriber->swap); | 363 | sub->seq.lower = htohl(s->seq.lower, swap); |
| 364 | sub->seq.upper = htohl(s->seq.upper, subscriber->swap); | 364 | sub->seq.upper = htohl(s->seq.upper, swap); |
| 365 | sub->timeout = htohl(s->timeout, subscriber->swap); | 365 | sub->timeout = htohl(s->timeout, swap); |
| 366 | sub->filter = htohl(s->filter, subscriber->swap); | 366 | sub->filter = htohl(s->filter, swap); |
| 367 | if ((!(sub->filter & TIPC_SUB_PORTS) | 367 | if ((!(sub->filter & TIPC_SUB_PORTS) |
| 368 | == !(sub->filter & TIPC_SUB_SERVICE)) | 368 | == !(sub->filter & TIPC_SUB_SERVICE)) |
| 369 | || (sub->seq.lower > sub->seq.upper)) { | 369 | || (sub->seq.lower > sub->seq.upper)) { |
| 370 | warn("Subscription rejected, illegal request\n"); | 370 | warn("Subscription rejected, illegal request\n"); |
| 371 | kfree(sub); | 371 | kfree(sub); |
| 372 | subscr_terminate(subscriber); | 372 | subscr_terminate(subscriber); |
| 373 | return; | 373 | return NULL; |
| 374 | } | 374 | } |
| 375 | memcpy(&sub->evt.s, s, sizeof(struct tipc_subscr)); | 375 | sub->event_cb = subscr_send_event; |
| 376 | INIT_LIST_HEAD(&sub->subscription_list); | ||
| 377 | INIT_LIST_HEAD(&sub->nameseq_list); | 376 | INIT_LIST_HEAD(&sub->nameseq_list); |
| 378 | list_add(&sub->subscription_list, &subscriber->subscription_list); | 377 | list_add(&sub->subscription_list, &subscriber->subscription_list); |
| 378 | sub->server_ref = subscriber->port_ref; | ||
| 379 | sub->swap = swap; | ||
| 380 | memcpy(&sub->evt.s, s, sizeof(struct tipc_subscr)); | ||
| 379 | atomic_inc(&topsrv.subscription_count); | 381 | atomic_inc(&topsrv.subscription_count); |
| 380 | if (sub->timeout != TIPC_WAIT_FOREVER) { | 382 | if (sub->timeout != TIPC_WAIT_FOREVER) { |
| 381 | k_init_timer(&sub->timer, | 383 | k_init_timer(&sub->timer, |
| 382 | (Handler)subscr_timeout, (unsigned long)sub); | 384 | (Handler)subscr_timeout, (unsigned long)sub); |
| 383 | k_start_timer(&sub->timer, sub->timeout); | 385 | k_start_timer(&sub->timer, sub->timeout); |
| 384 | } | 386 | } |
| 385 | sub->owner = subscriber; | 387 | |
| 386 | tipc_nametbl_subscribe(sub); | 388 | return sub; |
| 387 | } | 389 | } |
| 388 | 390 | ||
| 389 | /** | 391 | /** |
| 390 | * subscr_conn_shutdown_event - handle termination request from subscriber | 392 | * subscr_conn_shutdown_event - handle termination request from subscriber |
| 393 | * | ||
| 394 | * Called with subscriber's server port unlocked. | ||
| 391 | */ | 395 | */ |
| 392 | 396 | ||
| 393 | static void subscr_conn_shutdown_event(void *usr_handle, | 397 | static void subscr_conn_shutdown_event(void *usr_handle, |
| 394 | u32 portref, | 398 | u32 port_ref, |
| 395 | struct sk_buff **buf, | 399 | struct sk_buff **buf, |
| 396 | unsigned char const *data, | 400 | unsigned char const *data, |
| 397 | unsigned int size, | 401 | unsigned int size, |
| 398 | int reason) | 402 | int reason) |
| 399 | { | 403 | { |
| 400 | struct subscriber *subscriber; | 404 | struct subscriber *subscriber = usr_handle; |
| 401 | spinlock_t *subscriber_lock; | 405 | spinlock_t *subscriber_lock; |
| 402 | 406 | ||
| 403 | subscriber = tipc_ref_lock((u32)(unsigned long)usr_handle); | 407 | if (tipc_port_lock(port_ref) == NULL) |
| 404 | if (subscriber == NULL) | ||
| 405 | return; | 408 | return; |
| 406 | 409 | ||
| 407 | subscriber_lock = subscriber->lock; | 410 | subscriber_lock = subscriber->lock; |
| @@ -411,6 +414,8 @@ static void subscr_conn_shutdown_event(void *usr_handle, | |||
| 411 | 414 | ||
| 412 | /** | 415 | /** |
| 413 | * subscr_conn_msg_event - handle new subscription request from subscriber | 416 | * subscr_conn_msg_event - handle new subscription request from subscriber |
| 417 | * | ||
| 418 | * Called with subscriber's server port unlocked. | ||
| 414 | */ | 419 | */ |
| 415 | 420 | ||
| 416 | static void subscr_conn_msg_event(void *usr_handle, | 421 | static void subscr_conn_msg_event(void *usr_handle, |
| @@ -419,20 +424,46 @@ static void subscr_conn_msg_event(void *usr_handle, | |||
| 419 | const unchar *data, | 424 | const unchar *data, |
| 420 | u32 size) | 425 | u32 size) |
| 421 | { | 426 | { |
| 422 | struct subscriber *subscriber; | 427 | struct subscriber *subscriber = usr_handle; |
| 423 | spinlock_t *subscriber_lock; | 428 | spinlock_t *subscriber_lock; |
| 429 | struct subscription *sub; | ||
| 430 | |||
| 431 | /* | ||
| 432 | * Lock subscriber's server port (& make a local copy of lock pointer, | ||
| 433 | * in case subscriber is deleted while processing subscription request) | ||
| 434 | */ | ||
| 424 | 435 | ||
| 425 | subscriber = tipc_ref_lock((u32)(unsigned long)usr_handle); | 436 | if (tipc_port_lock(port_ref) == NULL) |
| 426 | if (subscriber == NULL) | ||
| 427 | return; | 437 | return; |
| 428 | 438 | ||
| 429 | subscriber_lock = subscriber->lock; | 439 | subscriber_lock = subscriber->lock; |
| 430 | if (size != sizeof(struct tipc_subscr)) | ||
| 431 | subscr_terminate(subscriber); | ||
| 432 | else | ||
| 433 | subscr_subscribe((struct tipc_subscr *)data, subscriber); | ||
| 434 | 440 | ||
| 435 | spin_unlock_bh(subscriber_lock); | 441 | if (size != sizeof(struct tipc_subscr)) { |
| 442 | subscr_terminate(subscriber); | ||
| 443 | spin_unlock_bh(subscriber_lock); | ||
| 444 | } else { | ||
| 445 | sub = subscr_subscribe((struct tipc_subscr *)data, subscriber); | ||
| 446 | spin_unlock_bh(subscriber_lock); | ||
| 447 | if (sub != NULL) { | ||
| 448 | |||
| 449 | /* | ||
| 450 | * We must release the server port lock before adding a | ||
| 451 | * subscription to the name table since TIPC needs to be | ||
| 452 | * able to (re)acquire the port lock if an event message | ||
| 453 | * issued by the subscription process is rejected and | ||
| 454 | * returned. The subscription cannot be deleted while | ||
| 455 | * it is being added to the name table because: | ||
| 456 | * a) the single-threading of the native API port code | ||
| 457 | * ensures the subscription cannot be cancelled and | ||
| 458 | * the subscriber connection cannot be broken, and | ||
| 459 | * b) the name table lock ensures the subscription | ||
| 460 | * timeout code cannot delete the subscription, | ||
| 461 | * so the subscription object is still protected. | ||
| 462 | */ | ||
| 463 | |||
| 464 | tipc_nametbl_subscribe(sub); | ||
| 465 | } | ||
| 466 | } | ||
| 436 | } | 467 | } |
| 437 | 468 | ||
| 438 | /** | 469 | /** |
| @@ -448,16 +479,10 @@ static void subscr_named_msg_event(void *usr_handle, | |||
| 448 | struct tipc_portid const *orig, | 479 | struct tipc_portid const *orig, |
| 449 | struct tipc_name_seq const *dest) | 480 | struct tipc_name_seq const *dest) |
| 450 | { | 481 | { |
| 451 | struct subscriber *subscriber; | 482 | static struct iovec msg_sect = {NULL, 0}; |
| 452 | struct iovec msg_sect = {NULL, 0}; | ||
| 453 | spinlock_t *subscriber_lock; | ||
| 454 | 483 | ||
| 455 | dbg("subscr_named_msg_event: orig = %x own = %x,\n", | 484 | struct subscriber *subscriber; |
| 456 | orig->node, tipc_own_addr); | 485 | u32 server_port_ref; |
| 457 | if (size && (size != sizeof(struct tipc_subscr))) { | ||
| 458 | warn("Subscriber rejected, invalid subscription size\n"); | ||
| 459 | return; | ||
| 460 | } | ||
| 461 | 486 | ||
| 462 | /* Create subscriber object */ | 487 | /* Create subscriber object */ |
| 463 | 488 | ||
| @@ -468,17 +493,11 @@ static void subscr_named_msg_event(void *usr_handle, | |||
| 468 | } | 493 | } |
| 469 | INIT_LIST_HEAD(&subscriber->subscription_list); | 494 | INIT_LIST_HEAD(&subscriber->subscription_list); |
| 470 | INIT_LIST_HEAD(&subscriber->subscriber_list); | 495 | 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"); | ||
| 474 | kfree(subscriber); | ||
| 475 | return; | ||
| 476 | } | ||
| 477 | 496 | ||
| 478 | /* Establish a connection to subscriber */ | 497 | /* Create server port & establish connection to subscriber */ |
| 479 | 498 | ||
| 480 | tipc_createport(topsrv.user_ref, | 499 | tipc_createport(topsrv.user_ref, |
| 481 | (void *)(unsigned long)subscriber->ref, | 500 | subscriber, |
| 482 | importance, | 501 | importance, |
| 483 | NULL, | 502 | NULL, |
| 484 | NULL, | 503 | NULL, |
| @@ -490,32 +509,36 @@ static void subscr_named_msg_event(void *usr_handle, | |||
| 490 | &subscriber->port_ref); | 509 | &subscriber->port_ref); |
| 491 | if (subscriber->port_ref == 0) { | 510 | if (subscriber->port_ref == 0) { |
| 492 | warn("Subscriber rejected, unable to create port\n"); | 511 | warn("Subscriber rejected, unable to create port\n"); |
| 493 | tipc_ref_discard(subscriber->ref); | ||
| 494 | kfree(subscriber); | 512 | kfree(subscriber); |
| 495 | return; | 513 | return; |
| 496 | } | 514 | } |
| 497 | tipc_connect2port(subscriber->port_ref, orig); | 515 | tipc_connect2port(subscriber->port_ref, orig); |
| 498 | 516 | ||
| 517 | /* Lock server port (& save lock address for future use) */ | ||
| 518 | |||
| 519 | subscriber->lock = tipc_port_lock(subscriber->port_ref)->publ.lock; | ||
| 499 | 520 | ||
| 500 | /* Add subscriber to topology server's subscriber list */ | 521 | /* Add subscriber to topology server's subscriber list */ |
| 501 | 522 | ||
| 502 | tipc_ref_lock(subscriber->ref); | ||
| 503 | spin_lock_bh(&topsrv.lock); | 523 | spin_lock_bh(&topsrv.lock); |
| 504 | list_add(&subscriber->subscriber_list, &topsrv.subscriber_list); | 524 | list_add(&subscriber->subscriber_list, &topsrv.subscriber_list); |
| 505 | spin_unlock_bh(&topsrv.lock); | 525 | spin_unlock_bh(&topsrv.lock); |
| 506 | 526 | ||
| 507 | /* | 527 | /* Unlock server port */ |
| 508 | * Subscribe now if message contains a subscription, | ||
| 509 | * otherwise send an empty response to complete connection handshaking | ||
| 510 | */ | ||
| 511 | 528 | ||
| 512 | subscriber_lock = subscriber->lock; | 529 | server_port_ref = subscriber->port_ref; |
| 513 | if (size) | 530 | spin_unlock_bh(subscriber->lock); |
| 514 | subscr_subscribe((struct tipc_subscr *)data, subscriber); | ||
| 515 | else | ||
| 516 | tipc_send(subscriber->port_ref, 1, &msg_sect); | ||
| 517 | 531 | ||
| 518 | spin_unlock_bh(subscriber_lock); | 532 | /* Send an ACK- to complete connection handshaking */ |
| 533 | |||
| 534 | tipc_send(server_port_ref, 1, &msg_sect); | ||
| 535 | |||
| 536 | /* Handle optional subscription request */ | ||
| 537 | |||
| 538 | if (size != 0) { | ||
| 539 | subscr_conn_msg_event(subscriber, server_port_ref, | ||
| 540 | buf, data, size); | ||
| 541 | } | ||
| 519 | } | 542 | } |
| 520 | 543 | ||
| 521 | int tipc_subscr_start(void) | 544 | int tipc_subscr_start(void) |
| @@ -574,8 +597,8 @@ void tipc_subscr_stop(void) | |||
| 574 | list_for_each_entry_safe(subscriber, subscriber_temp, | 597 | list_for_each_entry_safe(subscriber, subscriber_temp, |
| 575 | &topsrv.subscriber_list, | 598 | &topsrv.subscriber_list, |
| 576 | subscriber_list) { | 599 | subscriber_list) { |
| 577 | tipc_ref_lock(subscriber->ref); | ||
| 578 | subscriber_lock = subscriber->lock; | 600 | subscriber_lock = subscriber->lock; |
| 601 | spin_lock_bh(subscriber_lock); | ||
| 579 | subscr_terminate(subscriber); | 602 | subscr_terminate(subscriber); |
| 580 | spin_unlock_bh(subscriber_lock); | 603 | spin_unlock_bh(subscriber_lock); |
| 581 | } | 604 | } |
