blob: aa62f93a91275b355b994c66318fddb8b42e1af6 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/bearer.c: TIPC bearer code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Per Liden593a5f22006-01-11 19:14:19 +01004 * Copyright (c) 1996-2006, Ericsson AB
Allan Stephens2d627b92011-01-07 13:00:11 -05005 * Copyright (c) 2004-2006, 2010-2011, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 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.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * 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
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
38#include "config.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010039#include "bearer.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "discover.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041
42#define MAX_ADDR_STR 32
43
Paul Gortmaker358a0d12011-12-29 20:19:42 -050044static struct tipc_media *media_list[MAX_MEDIA];
Allan Stephense3ec9c72010-12-31 18:59:34 +000045static u32 media_count;
Per Lidenb97bf3f2006-01-02 19:04:38 +010046
Allan Stephens2d627b92011-01-07 13:00:11 -050047struct tipc_bearer tipc_bearers[MAX_BEARERS];
Per Lidenb97bf3f2006-01-02 19:04:38 +010048
Allan Stephens3a777ff2011-04-21 13:58:26 -050049static void bearer_disable(struct tipc_bearer *b_ptr);
50
Per Lidenb97bf3f2006-01-02 19:04:38 +010051/**
Allan Stephens5c216e12011-10-18 11:34:29 -040052 * tipc_media_find - locates specified media object by name
Per Lidenb97bf3f2006-01-02 19:04:38 +010053 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050054struct tipc_media *tipc_media_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +010055{
Per Lidenb97bf3f2006-01-02 19:04:38 +010056 u32 i;
57
Allan Stephensa31abe82011-10-07 09:25:12 -040058 for (i = 0; i < media_count; i++) {
59 if (!strcmp(media_list[i]->name, name))
60 return media_list[i];
Per Lidenb97bf3f2006-01-02 19:04:38 +010061 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -080062 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +010063}
64
65/**
Allan Stephensc79be452011-10-06 16:40:55 -040066 * media_find_id - locates specified media object by type identifier
67 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050068static struct tipc_media *media_find_id(u8 type)
Allan Stephensc79be452011-10-06 16:40:55 -040069{
70 u32 i;
71
72 for (i = 0; i < media_count; i++) {
Allan Stephensa31abe82011-10-07 09:25:12 -040073 if (media_list[i]->type_id == type)
74 return media_list[i];
Allan Stephensc79be452011-10-06 16:40:55 -040075 }
76 return NULL;
77}
78
79/**
Per Lidenb97bf3f2006-01-02 19:04:38 +010080 * tipc_register_media - register a media type
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +090081 *
Per Lidenb97bf3f2006-01-02 19:04:38 +010082 * Bearers for this media type must be activated separately at a later stage.
83 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050084int tipc_register_media(struct tipc_media *m_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +010085{
Per Lidenb97bf3f2006-01-02 19:04:38 +010086 int res = -EINVAL;
87
Per Liden4323add2006-01-18 00:38:21 +010088 write_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +010089
Ying Xue38129432012-08-16 12:09:09 +000090 if ((strlen(m_ptr->name) + 1) > TIPC_MAX_MEDIA_NAME)
Neil Hormand0021b22010-03-03 08:31:23 +000091 goto exit;
Allan Stephens3d749a62011-10-07 15:19:11 -040092 if ((m_ptr->bcast_addr.media_id != m_ptr->type_id) ||
93 !m_ptr->bcast_addr.broadcast)
Per Lidenb97bf3f2006-01-02 19:04:38 +010094 goto exit;
Allan Stephens6c349212011-10-07 09:54:44 -040095 if (m_ptr->priority > TIPC_MAX_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +010096 goto exit;
Allan Stephens706767d2011-10-06 15:28:44 -040097 if ((m_ptr->tolerance < TIPC_MIN_LINK_TOL) ||
Allan Stephens6c349212011-10-07 09:54:44 -040098 (m_ptr->tolerance > TIPC_MAX_LINK_TOL))
Per Lidenb97bf3f2006-01-02 19:04:38 +010099 goto exit;
Allan Stephens6c349212011-10-07 09:54:44 -0400100 if (media_count >= MAX_MEDIA)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100101 goto exit;
Allan Stephens5c216e12011-10-18 11:34:29 -0400102 if (tipc_media_find(m_ptr->name) || media_find_id(m_ptr->type_id))
Allan Stephensc79be452011-10-06 16:40:55 -0400103 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100104
Allan Stephensa31abe82011-10-07 09:25:12 -0400105 media_list[media_count] = m_ptr;
Allan Stephensc79be452011-10-06 16:40:55 -0400106 media_count++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100107 res = 0;
108exit:
Per Liden4323add2006-01-18 00:38:21 +0100109 write_unlock_bh(&tipc_net_lock);
Allan Stephens6c349212011-10-07 09:54:44 -0400110 if (res)
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400111 pr_warn("Media <%s> registration error\n", m_ptr->name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100112 return res;
113}
114
115/**
Per Liden4323add2006-01-18 00:38:21 +0100116 * tipc_media_addr_printf - record media address in print buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100117 */
Erik Hugnedc1aed32012-06-29 00:50:23 -0400118void tipc_media_addr_printf(char *buf, int len, struct tipc_media_addr *a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100119{
Allan Stephensc61b6662011-10-07 11:31:49 -0400120 char addr_str[MAX_ADDR_STR];
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500121 struct tipc_media *m_ptr;
Erik Hugnedc1aed32012-06-29 00:50:23 -0400122 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100123
Allan Stephens3d749a62011-10-07 15:19:11 -0400124 m_ptr = media_find_id(a->media_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100125
Allan Stephensc61b6662011-10-07 11:31:49 -0400126 if (m_ptr && !m_ptr->addr2str(a, addr_str, sizeof(addr_str)))
Erik Hugnedc1aed32012-06-29 00:50:23 -0400127 ret = tipc_snprintf(buf, len, "%s(%s)", m_ptr->name, addr_str);
Allan Stephensc61b6662011-10-07 11:31:49 -0400128 else {
Allan Stephensc61b6662011-10-07 11:31:49 -0400129 u32 i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130
Erik Hugnedc1aed32012-06-29 00:50:23 -0400131 ret = tipc_snprintf(buf, len, "UNKNOWN(%u)", a->media_id);
Allan Stephens3d749a62011-10-07 15:19:11 -0400132 for (i = 0; i < sizeof(a->value); i++)
Erik Hugnedc1aed32012-06-29 00:50:23 -0400133 ret += tipc_snprintf(buf - ret, len + ret,
134 "-%02x", a->value[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100135 }
136}
137
138/**
Per Liden4323add2006-01-18 00:38:21 +0100139 * tipc_media_get_names - record names of registered media in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100140 */
Per Liden4323add2006-01-18 00:38:21 +0100141struct sk_buff *tipc_media_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100142{
143 struct sk_buff *buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144 int i;
145
Per Liden4323add2006-01-18 00:38:21 +0100146 buf = tipc_cfg_reply_alloc(MAX_MEDIA * TLV_SPACE(TIPC_MAX_MEDIA_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100147 if (!buf)
148 return NULL;
149
Per Liden4323add2006-01-18 00:38:21 +0100150 read_lock_bh(&tipc_net_lock);
Allan Stephensa31abe82011-10-07 09:25:12 -0400151 for (i = 0; i < media_count; i++) {
152 tipc_cfg_append_tlv(buf, TIPC_TLV_MEDIA_NAME,
153 media_list[i]->name,
154 strlen(media_list[i]->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100155 }
Per Liden4323add2006-01-18 00:38:21 +0100156 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157 return buf;
158}
159
160/**
161 * bearer_name_validate - validate & (optionally) deconstruct bearer name
Ben Hutchings2c530402012-07-10 10:55:09 +0000162 * @name: ptr to bearer name string
163 * @name_parts: ptr to area for bearer name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900164 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100165 * Returns 1 if bearer name is valid, otherwise 0.
166 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900167static int bearer_name_validate(const char *name,
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500168 struct tipc_bearer_names *name_parts)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100169{
170 char name_copy[TIPC_MAX_BEARER_NAME];
171 char *media_name;
172 char *if_name;
173 u32 media_len;
174 u32 if_len;
175
176 /* copy bearer name & ensure length is OK */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100177 name_copy[TIPC_MAX_BEARER_NAME - 1] = 0;
178 /* need above in case non-Posix strncpy() doesn't pad with nulls */
179 strncpy(name_copy, name, TIPC_MAX_BEARER_NAME);
180 if (name_copy[TIPC_MAX_BEARER_NAME - 1] != 0)
181 return 0;
182
183 /* ensure all component parts of bearer name are present */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100184 media_name = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000185 if_name = strchr(media_name, ':');
186 if (if_name == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100187 return 0;
188 *(if_name++) = 0;
189 media_len = if_name - media_name;
190 if_len = strlen(if_name) + 1;
191
192 /* validate component parts of bearer name */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900193 if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) ||
Ying Xuefc073932012-08-16 12:09:08 +0000194 (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100195 return 0;
196
197 /* return bearer name components, if necessary */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100198 if (name_parts) {
199 strcpy(name_parts->media_name, media_name);
200 strcpy(name_parts->if_name, if_name);
201 }
202 return 1;
203}
204
205/**
Allan Stephens5c216e12011-10-18 11:34:29 -0400206 * tipc_bearer_find - locates bearer object with matching bearer name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100207 */
Allan Stephens5c216e12011-10-18 11:34:29 -0400208struct tipc_bearer *tipc_bearer_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100209{
Allan Stephens2d627b92011-01-07 13:00:11 -0500210 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100211 u32 i;
212
Per Liden4323add2006-01-18 00:38:21 +0100213 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
Allan Stephens2d627b92011-01-07 13:00:11 -0500214 if (b_ptr->active && (!strcmp(b_ptr->name, name)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100215 return b_ptr;
216 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800217 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100218}
219
220/**
Per Liden4323add2006-01-18 00:38:21 +0100221 * tipc_bearer_find_interface - locates bearer object with matching interface name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100222 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500223struct tipc_bearer *tipc_bearer_find_interface(const char *if_name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100224{
Allan Stephens2d627b92011-01-07 13:00:11 -0500225 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100226 char *b_if_name;
227 u32 i;
228
Per Liden4323add2006-01-18 00:38:21 +0100229 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100230 if (!b_ptr->active)
231 continue;
Allan Stephens2d627b92011-01-07 13:00:11 -0500232 b_if_name = strchr(b_ptr->name, ':') + 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100233 if (!strcmp(b_if_name, if_name))
234 return b_ptr;
235 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800236 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237}
238
239/**
Per Liden4323add2006-01-18 00:38:21 +0100240 * tipc_bearer_get_names - record names of bearers in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100241 */
Per Liden4323add2006-01-18 00:38:21 +0100242struct sk_buff *tipc_bearer_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100243{
244 struct sk_buff *buf;
Allan Stephens2d627b92011-01-07 13:00:11 -0500245 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100246 int i, j;
247
Per Liden4323add2006-01-18 00:38:21 +0100248 buf = tipc_cfg_reply_alloc(MAX_BEARERS * TLV_SPACE(TIPC_MAX_BEARER_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100249 if (!buf)
250 return NULL;
251
Per Liden4323add2006-01-18 00:38:21 +0100252 read_lock_bh(&tipc_net_lock);
Allan Stephensa31abe82011-10-07 09:25:12 -0400253 for (i = 0; i < media_count; i++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100254 for (j = 0; j < MAX_BEARERS; j++) {
Per Liden4323add2006-01-18 00:38:21 +0100255 b_ptr = &tipc_bearers[j];
Allan Stephensa31abe82011-10-07 09:25:12 -0400256 if (b_ptr->active && (b_ptr->media == media_list[i])) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900257 tipc_cfg_append_tlv(buf, TIPC_TLV_BEARER_NAME,
Allan Stephens2d627b92011-01-07 13:00:11 -0500258 b_ptr->name,
259 strlen(b_ptr->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100260 }
261 }
262 }
Per Liden4323add2006-01-18 00:38:21 +0100263 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100264 return buf;
265}
266
Allan Stephens2d627b92011-01-07 13:00:11 -0500267void tipc_bearer_add_dest(struct tipc_bearer *b_ptr, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100268{
Per Liden4323add2006-01-18 00:38:21 +0100269 tipc_nmap_add(&b_ptr->nodes, dest);
Per Liden4323add2006-01-18 00:38:21 +0100270 tipc_bcbearer_sort();
Allan Stephens12099662011-04-21 19:05:25 -0500271 tipc_disc_add_dest(b_ptr->link_req);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272}
273
Allan Stephens2d627b92011-01-07 13:00:11 -0500274void tipc_bearer_remove_dest(struct tipc_bearer *b_ptr, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100275{
Per Liden4323add2006-01-18 00:38:21 +0100276 tipc_nmap_remove(&b_ptr->nodes, dest);
Per Liden4323add2006-01-18 00:38:21 +0100277 tipc_bcbearer_sort();
Allan Stephens12099662011-04-21 19:05:25 -0500278 tipc_disc_remove_dest(b_ptr->link_req);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100279}
280
281/*
Ying Xue3c294cb2012-11-15 11:34:45 +0800282 * Interrupt enabling new requests after bearer blocking:
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900283 * See bearer_send().
Per Lidenb97bf3f2006-01-02 19:04:38 +0100284 */
Ying Xue3c294cb2012-11-15 11:34:45 +0800285void tipc_continue(struct tipc_bearer *b)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100286{
Ying Xue3c294cb2012-11-15 11:34:45 +0800287 spin_lock_bh(&b->lock);
288 b->blocked = 0;
289 spin_unlock_bh(&b->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290}
291
292/*
Ying Xue3c294cb2012-11-15 11:34:45 +0800293 * tipc_bearer_blocked - determines if bearer is currently blocked
Per Lidenb97bf3f2006-01-02 19:04:38 +0100294 */
Ying Xue3c294cb2012-11-15 11:34:45 +0800295int tipc_bearer_blocked(struct tipc_bearer *b)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100296{
Ying Xue3c294cb2012-11-15 11:34:45 +0800297 int res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100298
Ying Xue3c294cb2012-11-15 11:34:45 +0800299 spin_lock_bh(&b->lock);
300 res = b->blocked;
301 spin_unlock_bh(&b->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100302
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303 return res;
304}
305
Allan Stephensb274f4a2010-05-11 14:30:16 +0000306/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100307 * tipc_enable_bearer - enable bearer with the given name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900308 */
Allan Stephens50d3e632011-02-28 14:56:15 -0500309int tipc_enable_bearer(const char *name, u32 disc_domain, u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310{
Allan Stephens2d627b92011-01-07 13:00:11 -0500311 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500312 struct tipc_media *m_ptr;
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500313 struct tipc_bearer_names b_names;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314 char addr_string[16];
315 u32 bearer_id;
316 u32 with_this_prio;
317 u32 i;
318 int res = -EINVAL;
319
Allan Stephensb58343f2011-11-08 13:48:28 -0500320 if (!tipc_own_addr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400321 pr_warn("Bearer <%s> rejected, not supported in standalone mode\n",
322 name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323 return -ENOPROTOOPT;
Allan Stephensa10bd922006-06-25 23:52:17 -0700324 }
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500325 if (!bearer_name_validate(name, &b_names)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400326 pr_warn("Bearer <%s> rejected, illegal name\n", name);
Per Liden16cb4b32006-01-13 22:22:22 +0100327 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700328 }
Allan Stephens66e019a2011-04-20 16:24:07 -0500329 if (tipc_addr_domain_valid(disc_domain) &&
330 (disc_domain != tipc_own_addr)) {
331 if (tipc_in_scope(disc_domain, tipc_own_addr)) {
332 disc_domain = tipc_own_addr & TIPC_CLUSTER_MASK;
333 res = 0; /* accept any node in own cluster */
Allan Stephens336ebf52012-04-17 18:02:01 -0400334 } else if (in_own_cluster_exact(disc_domain))
Allan Stephens66e019a2011-04-20 16:24:07 -0500335 res = 0; /* accept specified node in own cluster */
336 }
337 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400338 pr_warn("Bearer <%s> rejected, illegal discovery domain\n",
339 name);
Allan Stephensa10bd922006-06-25 23:52:17 -0700340 return -EINVAL;
341 }
Allan Stephens9efde4a2011-11-03 13:15:10 -0400342 if ((priority > TIPC_MAX_LINK_PRI) &&
Allan Stephensa10bd922006-06-25 23:52:17 -0700343 (priority != TIPC_MEDIA_LINK_PRI)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400344 pr_warn("Bearer <%s> rejected, illegal priority\n", name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700346 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100347
Per Liden4323add2006-01-18 00:38:21 +0100348 write_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100349
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500350 m_ptr = tipc_media_find(b_names.media_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100351 if (!m_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400352 pr_warn("Bearer <%s> rejected, media <%s> not registered\n",
353 name, b_names.media_name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500354 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100355 }
Per Liden16cb4b32006-01-13 22:22:22 +0100356
357 if (priority == TIPC_MEDIA_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100358 priority = m_ptr->priority;
359
360restart:
361 bearer_id = MAX_BEARERS;
362 with_this_prio = 1;
363 for (i = MAX_BEARERS; i-- != 0; ) {
Per Liden4323add2006-01-18 00:38:21 +0100364 if (!tipc_bearers[i].active) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100365 bearer_id = i;
366 continue;
367 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500368 if (!strcmp(name, tipc_bearers[i].name)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400369 pr_warn("Bearer <%s> rejected, already enabled\n",
370 name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500371 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100372 }
Per Liden4323add2006-01-18 00:38:21 +0100373 if ((tipc_bearers[i].priority == priority) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100374 (++with_this_prio > 2)) {
375 if (priority-- == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400376 pr_warn("Bearer <%s> rejected, duplicate priority\n",
377 name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500378 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100379 }
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400380 pr_warn("Bearer <%s> priority adjustment required %u->%u\n",
381 name, priority + 1, priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100382 goto restart;
383 }
384 }
385 if (bearer_id >= MAX_BEARERS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400386 pr_warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
387 name, MAX_BEARERS);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500388 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100389 }
390
Per Liden4323add2006-01-18 00:38:21 +0100391 b_ptr = &tipc_bearers[bearer_id];
Allan Stephens2d627b92011-01-07 13:00:11 -0500392 strcpy(b_ptr->name, name);
393 res = m_ptr->enable_bearer(b_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100394 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400395 pr_warn("Bearer <%s> rejected, enable failure (%d)\n",
396 name, -res);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500397 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100398 }
399
400 b_ptr->identity = bearer_id;
401 b_ptr->media = m_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -0400402 b_ptr->tolerance = m_ptr->tolerance;
403 b_ptr->window = m_ptr->window;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404 b_ptr->net_plane = bearer_id + 'A';
405 b_ptr->active = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100406 b_ptr->priority = priority;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100407 INIT_LIST_HEAD(&b_ptr->links);
Allan Stephens2d627b92011-01-07 13:00:11 -0500408 spin_lock_init(&b_ptr->lock);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500409
410 res = tipc_disc_create(b_ptr, &m_ptr->bcast_addr, disc_domain);
411 if (res) {
412 bearer_disable(b_ptr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400413 pr_warn("Bearer <%s> rejected, discovery object creation failed\n",
414 name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500415 goto exit;
416 }
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400417 pr_info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
418 name,
419 tipc_addr_string_fill(addr_string, disc_domain), priority);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500420exit:
Per Liden4323add2006-01-18 00:38:21 +0100421 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100422 return res;
423}
424
425/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000426 * tipc_block_bearer - Block the bearer with the given name, and reset all its links
Per Lidenb97bf3f2006-01-02 19:04:38 +0100427 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100428int tipc_block_bearer(const char *name)
429{
Allan Stephens2d627b92011-01-07 13:00:11 -0500430 struct tipc_bearer *b_ptr = NULL;
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500431 struct tipc_link *l_ptr;
432 struct tipc_link *temp_l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100433
Per Liden4323add2006-01-18 00:38:21 +0100434 read_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -0400435 b_ptr = tipc_bearer_find(name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100436 if (!b_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400437 pr_warn("Attempt to block unknown bearer <%s>\n", name);
Per Liden4323add2006-01-18 00:38:21 +0100438 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100439 return -EINVAL;
440 }
441
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400442 pr_info("Blocking bearer <%s>\n", name);
Allan Stephens2d627b92011-01-07 13:00:11 -0500443 spin_lock_bh(&b_ptr->lock);
444 b_ptr->blocked = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100445 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
David S. Miller6c000552008-09-02 23:38:32 -0700446 struct tipc_node *n_ptr = l_ptr->owner;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100447
448 spin_lock_bh(&n_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100449 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100450 spin_unlock_bh(&n_ptr->lock);
451 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500452 spin_unlock_bh(&b_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100453 read_unlock_bh(&tipc_net_lock);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700454 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100455}
456
457/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400458 * bearer_disable
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900459 *
Per Liden4323add2006-01-18 00:38:21 +0100460 * Note: This routine assumes caller holds tipc_net_lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100461 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500462static void bearer_disable(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100463{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500464 struct tipc_link *l_ptr;
465 struct tipc_link *temp_l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100466
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400467 pr_info("Disabling bearer <%s>\n", b_ptr->name);
Allan Stephens2d627b92011-01-07 13:00:11 -0500468 spin_lock_bh(&b_ptr->lock);
Allan Stephens2d627b92011-01-07 13:00:11 -0500469 b_ptr->blocked = 1;
470 b_ptr->media->disable_bearer(b_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100471 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
Per Liden4323add2006-01-18 00:38:21 +0100472 tipc_link_delete(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100473 }
Allan Stephens3a777ff2011-04-21 13:58:26 -0500474 if (b_ptr->link_req)
475 tipc_disc_delete(b_ptr->link_req);
Allan Stephens2d627b92011-01-07 13:00:11 -0500476 spin_unlock_bh(&b_ptr->lock);
477 memset(b_ptr, 0, sizeof(struct tipc_bearer));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100478}
479
480int tipc_disable_bearer(const char *name)
481{
Allan Stephens2d627b92011-01-07 13:00:11 -0500482 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100483 int res;
484
Per Liden4323add2006-01-18 00:38:21 +0100485 write_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -0400486 b_ptr = tipc_bearer_find(name);
Allan Stephensccc901e2010-10-14 13:58:26 +0000487 if (b_ptr == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400488 pr_warn("Attempt to disable unknown bearer <%s>\n", name);
Allan Stephensccc901e2010-10-14 13:58:26 +0000489 res = -EINVAL;
Allan Stephens28cc9372010-11-30 12:00:56 +0000490 } else {
491 bearer_disable(b_ptr);
492 res = 0;
493 }
Per Liden4323add2006-01-18 00:38:21 +0100494 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100495 return res;
496}
497
498
499
Per Liden4323add2006-01-18 00:38:21 +0100500void tipc_bearer_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100501{
502 u32 i;
503
Per Lidenb97bf3f2006-01-02 19:04:38 +0100504 for (i = 0; i < MAX_BEARERS; i++) {
Per Liden4323add2006-01-18 00:38:21 +0100505 if (tipc_bearers[i].active)
Allan Stephensccc901e2010-10-14 13:58:26 +0000506 bearer_disable(&tipc_bearers[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100507 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100508 media_count = 0;
509}