]>
Commit | Line | Data |
---|---|---|
b97bf3fd PL |
1 | /* |
2 | * net/tipc/bearer.c: TIPC bearer code | |
c4307285 | 3 | * |
593a5f22 | 4 | * Copyright (c) 1996-2006, Ericsson AB |
2d627b92 | 5 | * Copyright (c) 2004-2006, 2010-2011, 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" | |
38 | #include "config.h" | |
b97bf3fd | 39 | #include "bearer.h" |
b97bf3fd | 40 | #include "discover.h" |
b97bf3fd | 41 | |
a29a194a | 42 | #define MAX_ADDR_STR 60 |
b97bf3fd | 43 | |
358a0d1c | 44 | static struct tipc_media *media_list[MAX_MEDIA]; |
e3ec9c7d | 45 | static u32 media_count; |
b97bf3fd | 46 | |
2d627b92 | 47 | struct tipc_bearer tipc_bearers[MAX_BEARERS]; |
b97bf3fd | 48 | |
3a777ff8 AS |
49 | static void bearer_disable(struct tipc_bearer *b_ptr); |
50 | ||
b97bf3fd | 51 | /** |
5c216e1d | 52 | * tipc_media_find - locates specified media object by name |
b97bf3fd | 53 | */ |
358a0d1c | 54 | struct tipc_media *tipc_media_find(const char *name) |
b97bf3fd | 55 | { |
b97bf3fd PL |
56 | u32 i; |
57 | ||
a31abe8d AS |
58 | for (i = 0; i < media_count; i++) { |
59 | if (!strcmp(media_list[i]->name, name)) | |
60 | return media_list[i]; | |
b97bf3fd | 61 | } |
1fc54d8f | 62 | return NULL; |
b97bf3fd PL |
63 | } |
64 | ||
c79be454 AS |
65 | /** |
66 | * media_find_id - locates specified media object by type identifier | |
67 | */ | |
358a0d1c | 68 | static struct tipc_media *media_find_id(u8 type) |
c79be454 AS |
69 | { |
70 | u32 i; | |
71 | ||
72 | for (i = 0; i < media_count; i++) { | |
a31abe8d AS |
73 | if (media_list[i]->type_id == type) |
74 | return media_list[i]; | |
c79be454 AS |
75 | } |
76 | return NULL; | |
77 | } | |
78 | ||
b97bf3fd PL |
79 | /** |
80 | * tipc_register_media - register a media type | |
c4307285 | 81 | * |
b97bf3fd PL |
82 | * Bearers for this media type must be activated separately at a later stage. |
83 | */ | |
358a0d1c | 84 | int tipc_register_media(struct tipc_media *m_ptr) |
b97bf3fd | 85 | { |
b97bf3fd PL |
86 | int res = -EINVAL; |
87 | ||
4323add6 | 88 | write_lock_bh(&tipc_net_lock); |
b97bf3fd | 89 | |
38129433 | 90 | if ((strlen(m_ptr->name) + 1) > TIPC_MAX_MEDIA_NAME) |
d0021b25 | 91 | goto exit; |
6c349210 | 92 | if (m_ptr->priority > TIPC_MAX_LINK_PRI) |
b97bf3fd | 93 | goto exit; |
706767da | 94 | if ((m_ptr->tolerance < TIPC_MIN_LINK_TOL) || |
6c349210 | 95 | (m_ptr->tolerance > TIPC_MAX_LINK_TOL)) |
b97bf3fd | 96 | goto exit; |
6c349210 | 97 | if (media_count >= MAX_MEDIA) |
b97bf3fd | 98 | goto exit; |
5c216e1d | 99 | if (tipc_media_find(m_ptr->name) || media_find_id(m_ptr->type_id)) |
c79be454 | 100 | goto exit; |
b97bf3fd | 101 | |
a31abe8d | 102 | media_list[media_count] = m_ptr; |
c79be454 | 103 | media_count++; |
b97bf3fd PL |
104 | res = 0; |
105 | exit: | |
4323add6 | 106 | write_unlock_bh(&tipc_net_lock); |
6c349210 | 107 | if (res) |
2cf8aa19 | 108 | pr_warn("Media <%s> registration error\n", m_ptr->name); |
b97bf3fd PL |
109 | return res; |
110 | } | |
111 | ||
112 | /** | |
4323add6 | 113 | * tipc_media_addr_printf - record media address in print buffer |
b97bf3fd | 114 | */ |
dc1aed37 | 115 | void tipc_media_addr_printf(char *buf, int len, struct tipc_media_addr *a) |
b97bf3fd | 116 | { |
c61b666e | 117 | char addr_str[MAX_ADDR_STR]; |
358a0d1c | 118 | struct tipc_media *m_ptr; |
dc1aed37 | 119 | int ret; |
b97bf3fd | 120 | |
3d749a6a | 121 | m_ptr = media_find_id(a->media_id); |
b97bf3fd | 122 | |
c61b666e | 123 | if (m_ptr && !m_ptr->addr2str(a, addr_str, sizeof(addr_str))) |
dc1aed37 | 124 | ret = tipc_snprintf(buf, len, "%s(%s)", m_ptr->name, addr_str); |
c61b666e | 125 | else { |
c61b666e | 126 | u32 i; |
b97bf3fd | 127 | |
dc1aed37 | 128 | ret = tipc_snprintf(buf, len, "UNKNOWN(%u)", a->media_id); |
3d749a6a | 129 | for (i = 0; i < sizeof(a->value); i++) |
dc1aed37 EH |
130 | ret += tipc_snprintf(buf - ret, len + ret, |
131 | "-%02x", a->value[i]); | |
b97bf3fd PL |
132 | } |
133 | } | |
134 | ||
135 | /** | |
4323add6 | 136 | * tipc_media_get_names - record names of registered media in buffer |
b97bf3fd | 137 | */ |
4323add6 | 138 | struct sk_buff *tipc_media_get_names(void) |
b97bf3fd PL |
139 | { |
140 | struct sk_buff *buf; | |
b97bf3fd PL |
141 | int i; |
142 | ||
4323add6 | 143 | buf = tipc_cfg_reply_alloc(MAX_MEDIA * TLV_SPACE(TIPC_MAX_MEDIA_NAME)); |
b97bf3fd PL |
144 | if (!buf) |
145 | return NULL; | |
146 | ||
4323add6 | 147 | read_lock_bh(&tipc_net_lock); |
a31abe8d AS |
148 | for (i = 0; i < media_count; i++) { |
149 | tipc_cfg_append_tlv(buf, TIPC_TLV_MEDIA_NAME, | |
150 | media_list[i]->name, | |
151 | strlen(media_list[i]->name) + 1); | |
b97bf3fd | 152 | } |
4323add6 | 153 | read_unlock_bh(&tipc_net_lock); |
b97bf3fd PL |
154 | return buf; |
155 | } | |
156 | ||
157 | /** | |
158 | * bearer_name_validate - validate & (optionally) deconstruct bearer name | |
2c53040f BH |
159 | * @name: ptr to bearer name string |
160 | * @name_parts: ptr to area for bearer name components (or NULL if not needed) | |
c4307285 | 161 | * |
b97bf3fd PL |
162 | * Returns 1 if bearer name is valid, otherwise 0. |
163 | */ | |
c4307285 | 164 | static int bearer_name_validate(const char *name, |
f19765f4 | 165 | struct tipc_bearer_names *name_parts) |
b97bf3fd PL |
166 | { |
167 | char name_copy[TIPC_MAX_BEARER_NAME]; | |
168 | char *media_name; | |
169 | char *if_name; | |
170 | u32 media_len; | |
171 | u32 if_len; | |
172 | ||
173 | /* copy bearer name & ensure length is OK */ | |
b97bf3fd PL |
174 | name_copy[TIPC_MAX_BEARER_NAME - 1] = 0; |
175 | /* need above in case non-Posix strncpy() doesn't pad with nulls */ | |
176 | strncpy(name_copy, name, TIPC_MAX_BEARER_NAME); | |
177 | if (name_copy[TIPC_MAX_BEARER_NAME - 1] != 0) | |
178 | return 0; | |
179 | ||
180 | /* ensure all component parts of bearer name are present */ | |
b97bf3fd | 181 | media_name = name_copy; |
2db9983a AS |
182 | if_name = strchr(media_name, ':'); |
183 | if (if_name == NULL) | |
b97bf3fd PL |
184 | return 0; |
185 | *(if_name++) = 0; | |
186 | media_len = if_name - media_name; | |
187 | if_len = strlen(if_name) + 1; | |
188 | ||
189 | /* validate component parts of bearer name */ | |
c4307285 | 190 | if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) || |
fc073938 | 191 | (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME)) |
b97bf3fd PL |
192 | return 0; |
193 | ||
194 | /* return bearer name components, if necessary */ | |
b97bf3fd PL |
195 | if (name_parts) { |
196 | strcpy(name_parts->media_name, media_name); | |
197 | strcpy(name_parts->if_name, if_name); | |
198 | } | |
199 | return 1; | |
200 | } | |
201 | ||
202 | /** | |
5c216e1d | 203 | * tipc_bearer_find - locates bearer object with matching bearer name |
b97bf3fd | 204 | */ |
5c216e1d | 205 | struct tipc_bearer *tipc_bearer_find(const char *name) |
b97bf3fd | 206 | { |
2d627b92 | 207 | struct tipc_bearer *b_ptr; |
b97bf3fd PL |
208 | u32 i; |
209 | ||
4323add6 | 210 | for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) { |
2d627b92 | 211 | if (b_ptr->active && (!strcmp(b_ptr->name, name))) |
b97bf3fd PL |
212 | return b_ptr; |
213 | } | |
1fc54d8f | 214 | return NULL; |
b97bf3fd PL |
215 | } |
216 | ||
217 | /** | |
4323add6 | 218 | * tipc_bearer_find_interface - locates bearer object with matching interface name |
b97bf3fd | 219 | */ |
2d627b92 | 220 | struct tipc_bearer *tipc_bearer_find_interface(const char *if_name) |
b97bf3fd | 221 | { |
2d627b92 | 222 | struct tipc_bearer *b_ptr; |
b97bf3fd PL |
223 | char *b_if_name; |
224 | u32 i; | |
225 | ||
4323add6 | 226 | for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) { |
b97bf3fd PL |
227 | if (!b_ptr->active) |
228 | continue; | |
2d627b92 | 229 | b_if_name = strchr(b_ptr->name, ':') + 1; |
b97bf3fd PL |
230 | if (!strcmp(b_if_name, if_name)) |
231 | return b_ptr; | |
232 | } | |
1fc54d8f | 233 | return NULL; |
b97bf3fd PL |
234 | } |
235 | ||
236 | /** | |
4323add6 | 237 | * tipc_bearer_get_names - record names of bearers in buffer |
b97bf3fd | 238 | */ |
4323add6 | 239 | struct sk_buff *tipc_bearer_get_names(void) |
b97bf3fd PL |
240 | { |
241 | struct sk_buff *buf; | |
2d627b92 | 242 | struct tipc_bearer *b_ptr; |
b97bf3fd PL |
243 | int i, j; |
244 | ||
4323add6 | 245 | buf = tipc_cfg_reply_alloc(MAX_BEARERS * TLV_SPACE(TIPC_MAX_BEARER_NAME)); |
b97bf3fd PL |
246 | if (!buf) |
247 | return NULL; | |
248 | ||
4323add6 | 249 | read_lock_bh(&tipc_net_lock); |
a31abe8d | 250 | for (i = 0; i < media_count; i++) { |
b97bf3fd | 251 | for (j = 0; j < MAX_BEARERS; j++) { |
4323add6 | 252 | b_ptr = &tipc_bearers[j]; |
a31abe8d | 253 | if (b_ptr->active && (b_ptr->media == media_list[i])) { |
c4307285 | 254 | tipc_cfg_append_tlv(buf, TIPC_TLV_BEARER_NAME, |
2d627b92 AS |
255 | b_ptr->name, |
256 | strlen(b_ptr->name) + 1); | |
b97bf3fd PL |
257 | } |
258 | } | |
259 | } | |
4323add6 | 260 | read_unlock_bh(&tipc_net_lock); |
b97bf3fd PL |
261 | return buf; |
262 | } | |
263 | ||
2d627b92 | 264 | void tipc_bearer_add_dest(struct tipc_bearer *b_ptr, u32 dest) |
b97bf3fd | 265 | { |
4323add6 | 266 | tipc_nmap_add(&b_ptr->nodes, dest); |
4323add6 | 267 | tipc_bcbearer_sort(); |
1209966c | 268 | tipc_disc_add_dest(b_ptr->link_req); |
b97bf3fd PL |
269 | } |
270 | ||
2d627b92 | 271 | void tipc_bearer_remove_dest(struct tipc_bearer *b_ptr, u32 dest) |
b97bf3fd | 272 | { |
4323add6 | 273 | tipc_nmap_remove(&b_ptr->nodes, dest); |
4323add6 | 274 | tipc_bcbearer_sort(); |
1209966c | 275 | tipc_disc_remove_dest(b_ptr->link_req); |
b97bf3fd PL |
276 | } |
277 | ||
278 | /* | |
3c294cb3 | 279 | * Interrupt enabling new requests after bearer blocking: |
c4307285 | 280 | * See bearer_send(). |
b97bf3fd | 281 | */ |
3c294cb3 | 282 | void tipc_continue(struct tipc_bearer *b) |
b97bf3fd | 283 | { |
3c294cb3 YX |
284 | spin_lock_bh(&b->lock); |
285 | b->blocked = 0; | |
286 | spin_unlock_bh(&b->lock); | |
b97bf3fd PL |
287 | } |
288 | ||
289 | /* | |
3c294cb3 | 290 | * tipc_bearer_blocked - determines if bearer is currently blocked |
b97bf3fd | 291 | */ |
3c294cb3 | 292 | int tipc_bearer_blocked(struct tipc_bearer *b) |
b97bf3fd | 293 | { |
3c294cb3 | 294 | int res; |
b97bf3fd | 295 | |
3c294cb3 YX |
296 | spin_lock_bh(&b->lock); |
297 | res = b->blocked; | |
298 | spin_unlock_bh(&b->lock); | |
b97bf3fd | 299 | |
b97bf3fd PL |
300 | return res; |
301 | } | |
302 | ||
b97bf3fd PL |
303 | /** |
304 | * tipc_enable_bearer - enable bearer with the given name | |
c4307285 | 305 | */ |
50d3e639 | 306 | int tipc_enable_bearer(const char *name, u32 disc_domain, u32 priority) |
b97bf3fd | 307 | { |
2d627b92 | 308 | struct tipc_bearer *b_ptr; |
358a0d1c | 309 | struct tipc_media *m_ptr; |
f19765f4 | 310 | struct tipc_bearer_names b_names; |
b97bf3fd PL |
311 | char addr_string[16]; |
312 | u32 bearer_id; | |
313 | u32 with_this_prio; | |
314 | u32 i; | |
315 | int res = -EINVAL; | |
316 | ||
b58343f9 | 317 | if (!tipc_own_addr) { |
2cf8aa19 EH |
318 | pr_warn("Bearer <%s> rejected, not supported in standalone mode\n", |
319 | name); | |
b97bf3fd | 320 | return -ENOPROTOOPT; |
a10bd924 | 321 | } |
f19765f4 | 322 | if (!bearer_name_validate(name, &b_names)) { |
2cf8aa19 | 323 | pr_warn("Bearer <%s> rejected, illegal name\n", name); |
16cb4b33 | 324 | return -EINVAL; |
a10bd924 | 325 | } |
66e019a6 AS |
326 | if (tipc_addr_domain_valid(disc_domain) && |
327 | (disc_domain != tipc_own_addr)) { | |
328 | if (tipc_in_scope(disc_domain, tipc_own_addr)) { | |
329 | disc_domain = tipc_own_addr & TIPC_CLUSTER_MASK; | |
330 | res = 0; /* accept any node in own cluster */ | |
336ebf5b | 331 | } else if (in_own_cluster_exact(disc_domain)) |
66e019a6 AS |
332 | res = 0; /* accept specified node in own cluster */ |
333 | } | |
334 | if (res) { | |
2cf8aa19 EH |
335 | pr_warn("Bearer <%s> rejected, illegal discovery domain\n", |
336 | name); | |
a10bd924 AS |
337 | return -EINVAL; |
338 | } | |
9efde4a0 | 339 | if ((priority > TIPC_MAX_LINK_PRI) && |
a10bd924 | 340 | (priority != TIPC_MEDIA_LINK_PRI)) { |
2cf8aa19 | 341 | pr_warn("Bearer <%s> rejected, illegal priority\n", name); |
b97bf3fd | 342 | return -EINVAL; |
a10bd924 | 343 | } |
b97bf3fd | 344 | |
4323add6 | 345 | write_lock_bh(&tipc_net_lock); |
b97bf3fd | 346 | |
f19765f4 | 347 | m_ptr = tipc_media_find(b_names.media_name); |
b97bf3fd | 348 | if (!m_ptr) { |
2cf8aa19 EH |
349 | pr_warn("Bearer <%s> rejected, media <%s> not registered\n", |
350 | name, b_names.media_name); | |
3a777ff8 | 351 | goto exit; |
b97bf3fd | 352 | } |
16cb4b33 PL |
353 | |
354 | if (priority == TIPC_MEDIA_LINK_PRI) | |
b97bf3fd PL |
355 | priority = m_ptr->priority; |
356 | ||
357 | restart: | |
358 | bearer_id = MAX_BEARERS; | |
359 | with_this_prio = 1; | |
360 | for (i = MAX_BEARERS; i-- != 0; ) { | |
4323add6 | 361 | if (!tipc_bearers[i].active) { |
b97bf3fd PL |
362 | bearer_id = i; |
363 | continue; | |
364 | } | |
2d627b92 | 365 | if (!strcmp(name, tipc_bearers[i].name)) { |
2cf8aa19 EH |
366 | pr_warn("Bearer <%s> rejected, already enabled\n", |
367 | name); | |
3a777ff8 | 368 | goto exit; |
b97bf3fd | 369 | } |
4323add6 | 370 | if ((tipc_bearers[i].priority == priority) && |
b97bf3fd PL |
371 | (++with_this_prio > 2)) { |
372 | if (priority-- == 0) { | |
2cf8aa19 EH |
373 | pr_warn("Bearer <%s> rejected, duplicate priority\n", |
374 | name); | |
3a777ff8 | 375 | goto exit; |
b97bf3fd | 376 | } |
2cf8aa19 EH |
377 | pr_warn("Bearer <%s> priority adjustment required %u->%u\n", |
378 | name, priority + 1, priority); | |
b97bf3fd PL |
379 | goto restart; |
380 | } | |
381 | } | |
382 | if (bearer_id >= MAX_BEARERS) { | |
2cf8aa19 EH |
383 | pr_warn("Bearer <%s> rejected, bearer limit reached (%u)\n", |
384 | name, MAX_BEARERS); | |
3a777ff8 | 385 | goto exit; |
b97bf3fd PL |
386 | } |
387 | ||
4323add6 | 388 | b_ptr = &tipc_bearers[bearer_id]; |
2d627b92 | 389 | strcpy(b_ptr->name, name); |
4babbaa8 | 390 | res = m_ptr->enable_media(b_ptr); |
b97bf3fd | 391 | if (res) { |
2cf8aa19 EH |
392 | pr_warn("Bearer <%s> rejected, enable failure (%d)\n", |
393 | name, -res); | |
3a777ff8 | 394 | goto exit; |
b97bf3fd PL |
395 | } |
396 | ||
397 | b_ptr->identity = bearer_id; | |
398 | b_ptr->media = m_ptr; | |
5c216e1d AS |
399 | b_ptr->tolerance = m_ptr->tolerance; |
400 | b_ptr->window = m_ptr->window; | |
b97bf3fd PL |
401 | b_ptr->net_plane = bearer_id + 'A'; |
402 | b_ptr->active = 1; | |
b97bf3fd | 403 | b_ptr->priority = priority; |
b97bf3fd | 404 | INIT_LIST_HEAD(&b_ptr->links); |
2d627b92 | 405 | spin_lock_init(&b_ptr->lock); |
3a777ff8 | 406 | |
8aeb89f2 | 407 | res = tipc_disc_create(b_ptr, &b_ptr->bcast_addr, disc_domain); |
3a777ff8 AS |
408 | if (res) { |
409 | bearer_disable(b_ptr); | |
2cf8aa19 EH |
410 | pr_warn("Bearer <%s> rejected, discovery object creation failed\n", |
411 | name); | |
3a777ff8 AS |
412 | goto exit; |
413 | } | |
2cf8aa19 EH |
414 | pr_info("Enabled bearer <%s>, discovery domain %s, priority %u\n", |
415 | name, | |
416 | tipc_addr_string_fill(addr_string, disc_domain), priority); | |
3a777ff8 | 417 | exit: |
4323add6 | 418 | write_unlock_bh(&tipc_net_lock); |
b97bf3fd PL |
419 | return res; |
420 | } | |
421 | ||
422 | /** | |
f2875c3c | 423 | * tipc_block_bearer - Block the bearer, and reset all its links |
b97bf3fd | 424 | */ |
f2875c3c | 425 | int tipc_block_bearer(struct tipc_bearer *b_ptr) |
b97bf3fd | 426 | { |
a18c4bc3 PG |
427 | struct tipc_link *l_ptr; |
428 | struct tipc_link *temp_l_ptr; | |
b97bf3fd | 429 | |
4323add6 | 430 | read_lock_bh(&tipc_net_lock); |
f2875c3c | 431 | pr_info("Blocking bearer <%s>\n", b_ptr->name); |
2d627b92 AS |
432 | spin_lock_bh(&b_ptr->lock); |
433 | b_ptr->blocked = 1; | |
b97bf3fd | 434 | list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) { |
6c00055a | 435 | struct tipc_node *n_ptr = l_ptr->owner; |
b97bf3fd PL |
436 | |
437 | spin_lock_bh(&n_ptr->lock); | |
4323add6 | 438 | tipc_link_reset(l_ptr); |
b97bf3fd PL |
439 | spin_unlock_bh(&n_ptr->lock); |
440 | } | |
2d627b92 | 441 | spin_unlock_bh(&b_ptr->lock); |
4323add6 | 442 | read_unlock_bh(&tipc_net_lock); |
0e35fd5e | 443 | return 0; |
b97bf3fd PL |
444 | } |
445 | ||
446 | /** | |
617d3c7a | 447 | * bearer_disable |
c4307285 | 448 | * |
4323add6 | 449 | * Note: This routine assumes caller holds tipc_net_lock. |
b97bf3fd | 450 | */ |
2d627b92 | 451 | static void bearer_disable(struct tipc_bearer *b_ptr) |
b97bf3fd | 452 | { |
a18c4bc3 PG |
453 | struct tipc_link *l_ptr; |
454 | struct tipc_link *temp_l_ptr; | |
d4cca39d | 455 | struct tipc_link_req *temp_req; |
b97bf3fd | 456 | |
2cf8aa19 | 457 | pr_info("Disabling bearer <%s>\n", b_ptr->name); |
2d627b92 | 458 | spin_lock_bh(&b_ptr->lock); |
2d627b92 | 459 | b_ptr->blocked = 1; |
4babbaa8 | 460 | b_ptr->media->disable_media(b_ptr); |
b97bf3fd | 461 | list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) { |
4323add6 | 462 | tipc_link_delete(l_ptr); |
b97bf3fd | 463 | } |
d4cca39d | 464 | temp_req = b_ptr->link_req; |
465 | b_ptr->link_req = NULL; | |
2d627b92 | 466 | spin_unlock_bh(&b_ptr->lock); |
d4cca39d | 467 | |
468 | if (temp_req) | |
469 | tipc_disc_delete(temp_req); | |
470 | ||
2d627b92 | 471 | memset(b_ptr, 0, sizeof(struct tipc_bearer)); |
b97bf3fd PL |
472 | } |
473 | ||
474 | int tipc_disable_bearer(const char *name) | |
475 | { | |
2d627b92 | 476 | struct tipc_bearer *b_ptr; |
b97bf3fd PL |
477 | int res; |
478 | ||
4323add6 | 479 | write_lock_bh(&tipc_net_lock); |
5c216e1d | 480 | b_ptr = tipc_bearer_find(name); |
ccc901ee | 481 | if (b_ptr == NULL) { |
2cf8aa19 | 482 | pr_warn("Attempt to disable unknown bearer <%s>\n", name); |
ccc901ee | 483 | res = -EINVAL; |
28cc937e AS |
484 | } else { |
485 | bearer_disable(b_ptr); | |
486 | res = 0; | |
487 | } | |
4323add6 | 488 | write_unlock_bh(&tipc_net_lock); |
b97bf3fd PL |
489 | return res; |
490 | } | |
491 | ||
492 | ||
493 | ||
4323add6 | 494 | void tipc_bearer_stop(void) |
b97bf3fd PL |
495 | { |
496 | u32 i; | |
497 | ||
b97bf3fd | 498 | for (i = 0; i < MAX_BEARERS; i++) { |
4323add6 | 499 | if (tipc_bearers[i].active) |
ccc901ee | 500 | bearer_disable(&tipc_bearers[i]); |
b97bf3fd | 501 | } |
b97bf3fd PL |
502 | media_count = 0; |
503 | } |