blob: c2101c0bfd6dc041d5cebdbb81ca3f2aa4922396 [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
Patrick McHardya29a1942013-04-17 06:18:28 +000042#define MAX_ADDR_STR 60
Per Lidenb97bf3f2006-01-02 19:04:38 +010043
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 Stephens6c349212011-10-07 09:54:44 -040092 if (m_ptr->priority > TIPC_MAX_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +010093 goto exit;
Allan Stephens706767d2011-10-06 15:28:44 -040094 if ((m_ptr->tolerance < TIPC_MIN_LINK_TOL) ||
Allan Stephens6c349212011-10-07 09:54:44 -040095 (m_ptr->tolerance > TIPC_MAX_LINK_TOL))
Per Lidenb97bf3f2006-01-02 19:04:38 +010096 goto exit;
Allan Stephens6c349212011-10-07 09:54:44 -040097 if (media_count >= MAX_MEDIA)
Per Lidenb97bf3f2006-01-02 19:04:38 +010098 goto exit;
Allan Stephens5c216e12011-10-18 11:34:29 -040099 if (tipc_media_find(m_ptr->name) || media_find_id(m_ptr->type_id))
Allan Stephensc79be452011-10-06 16:40:55 -0400100 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100101
Allan Stephensa31abe82011-10-07 09:25:12 -0400102 media_list[media_count] = m_ptr;
Allan Stephensc79be452011-10-06 16:40:55 -0400103 media_count++;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100104 res = 0;
105exit:
Per Liden4323add2006-01-18 00:38:21 +0100106 write_unlock_bh(&tipc_net_lock);
Allan Stephens6c349212011-10-07 09:54:44 -0400107 if (res)
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400108 pr_warn("Media <%s> registration error\n", m_ptr->name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100109 return res;
110}
111
112/**
Per Liden4323add2006-01-18 00:38:21 +0100113 * tipc_media_addr_printf - record media address in print buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114 */
Erik Hugnedc1aed32012-06-29 00:50:23 -0400115void tipc_media_addr_printf(char *buf, int len, struct tipc_media_addr *a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100116{
Allan Stephensc61b6662011-10-07 11:31:49 -0400117 char addr_str[MAX_ADDR_STR];
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500118 struct tipc_media *m_ptr;
Erik Hugnedc1aed32012-06-29 00:50:23 -0400119 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100120
Allan Stephens3d749a62011-10-07 15:19:11 -0400121 m_ptr = media_find_id(a->media_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122
Allan Stephensc61b6662011-10-07 11:31:49 -0400123 if (m_ptr && !m_ptr->addr2str(a, addr_str, sizeof(addr_str)))
Erik Hugnedc1aed32012-06-29 00:50:23 -0400124 ret = tipc_snprintf(buf, len, "%s(%s)", m_ptr->name, addr_str);
Allan Stephensc61b6662011-10-07 11:31:49 -0400125 else {
Allan Stephensc61b6662011-10-07 11:31:49 -0400126 u32 i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127
Erik Hugnedc1aed32012-06-29 00:50:23 -0400128 ret = tipc_snprintf(buf, len, "UNKNOWN(%u)", a->media_id);
Allan Stephens3d749a62011-10-07 15:19:11 -0400129 for (i = 0; i < sizeof(a->value); i++)
Erik Hugnedc1aed32012-06-29 00:50:23 -0400130 ret += tipc_snprintf(buf - ret, len + ret,
131 "-%02x", a->value[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100132 }
133}
134
135/**
Per Liden4323add2006-01-18 00:38:21 +0100136 * tipc_media_get_names - record names of registered media in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100137 */
Per Liden4323add2006-01-18 00:38:21 +0100138struct sk_buff *tipc_media_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100139{
140 struct sk_buff *buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100141 int i;
142
Per Liden4323add2006-01-18 00:38:21 +0100143 buf = tipc_cfg_reply_alloc(MAX_MEDIA * TLV_SPACE(TIPC_MAX_MEDIA_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144 if (!buf)
145 return NULL;
146
Per Liden4323add2006-01-18 00:38:21 +0100147 read_lock_bh(&tipc_net_lock);
Allan Stephensa31abe82011-10-07 09:25:12 -0400148 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);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100152 }
Per Liden4323add2006-01-18 00:38:21 +0100153 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100154 return buf;
155}
156
157/**
158 * bearer_name_validate - validate & (optionally) deconstruct bearer name
Ben Hutchings2c530402012-07-10 10:55:09 +0000159 * @name: ptr to bearer name string
160 * @name_parts: ptr to area for bearer name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900161 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100162 * Returns 1 if bearer name is valid, otherwise 0.
163 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900164static int bearer_name_validate(const char *name,
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500165 struct tipc_bearer_names *name_parts)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100166{
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 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100174 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 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100181 media_name = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000182 if_name = strchr(media_name, ':');
183 if (if_name == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100184 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 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900190 if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) ||
Ying Xuefc073932012-08-16 12:09:08 +0000191 (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100192 return 0;
193
194 /* return bearer name components, if necessary */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100195 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/**
Allan Stephens5c216e12011-10-18 11:34:29 -0400203 * tipc_bearer_find - locates bearer object with matching bearer name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204 */
Allan Stephens5c216e12011-10-18 11:34:29 -0400205struct tipc_bearer *tipc_bearer_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100206{
Allan Stephens2d627b92011-01-07 13:00:11 -0500207 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100208 u32 i;
209
Per Liden4323add2006-01-18 00:38:21 +0100210 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
Allan Stephens2d627b92011-01-07 13:00:11 -0500211 if (b_ptr->active && (!strcmp(b_ptr->name, name)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100212 return b_ptr;
213 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800214 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100215}
216
217/**
Per Liden4323add2006-01-18 00:38:21 +0100218 * tipc_bearer_find_interface - locates bearer object with matching interface name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100219 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500220struct tipc_bearer *tipc_bearer_find_interface(const char *if_name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100221{
Allan Stephens2d627b92011-01-07 13:00:11 -0500222 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100223 char *b_if_name;
224 u32 i;
225
Per Liden4323add2006-01-18 00:38:21 +0100226 for (i = 0, b_ptr = tipc_bearers; i < MAX_BEARERS; i++, b_ptr++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100227 if (!b_ptr->active)
228 continue;
Allan Stephens2d627b92011-01-07 13:00:11 -0500229 b_if_name = strchr(b_ptr->name, ':') + 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100230 if (!strcmp(b_if_name, if_name))
231 return b_ptr;
232 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800233 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100234}
235
236/**
Per Liden4323add2006-01-18 00:38:21 +0100237 * tipc_bearer_get_names - record names of bearers in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100238 */
Per Liden4323add2006-01-18 00:38:21 +0100239struct sk_buff *tipc_bearer_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100240{
241 struct sk_buff *buf;
Allan Stephens2d627b92011-01-07 13:00:11 -0500242 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100243 int i, j;
244
Per Liden4323add2006-01-18 00:38:21 +0100245 buf = tipc_cfg_reply_alloc(MAX_BEARERS * TLV_SPACE(TIPC_MAX_BEARER_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100246 if (!buf)
247 return NULL;
248
Per Liden4323add2006-01-18 00:38:21 +0100249 read_lock_bh(&tipc_net_lock);
Allan Stephensa31abe82011-10-07 09:25:12 -0400250 for (i = 0; i < media_count; i++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100251 for (j = 0; j < MAX_BEARERS; j++) {
Per Liden4323add2006-01-18 00:38:21 +0100252 b_ptr = &tipc_bearers[j];
Allan Stephensa31abe82011-10-07 09:25:12 -0400253 if (b_ptr->active && (b_ptr->media == media_list[i])) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900254 tipc_cfg_append_tlv(buf, TIPC_TLV_BEARER_NAME,
Allan Stephens2d627b92011-01-07 13:00:11 -0500255 b_ptr->name,
256 strlen(b_ptr->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100257 }
258 }
259 }
Per Liden4323add2006-01-18 00:38:21 +0100260 read_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100261 return buf;
262}
263
Allan Stephens2d627b92011-01-07 13:00:11 -0500264void tipc_bearer_add_dest(struct tipc_bearer *b_ptr, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100265{
Per Liden4323add2006-01-18 00:38:21 +0100266 tipc_nmap_add(&b_ptr->nodes, dest);
Per Liden4323add2006-01-18 00:38:21 +0100267 tipc_bcbearer_sort();
Allan Stephens12099662011-04-21 19:05:25 -0500268 tipc_disc_add_dest(b_ptr->link_req);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100269}
270
Allan Stephens2d627b92011-01-07 13:00:11 -0500271void tipc_bearer_remove_dest(struct tipc_bearer *b_ptr, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272{
Per Liden4323add2006-01-18 00:38:21 +0100273 tipc_nmap_remove(&b_ptr->nodes, dest);
Per Liden4323add2006-01-18 00:38:21 +0100274 tipc_bcbearer_sort();
Allan Stephens12099662011-04-21 19:05:25 -0500275 tipc_disc_remove_dest(b_ptr->link_req);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100276}
277
Allan Stephensb274f4a2010-05-11 14:30:16 +0000278/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100279 * tipc_enable_bearer - enable bearer with the given name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900280 */
Allan Stephens50d3e632011-02-28 14:56:15 -0500281int tipc_enable_bearer(const char *name, u32 disc_domain, u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100282{
Allan Stephens2d627b92011-01-07 13:00:11 -0500283 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500284 struct tipc_media *m_ptr;
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500285 struct tipc_bearer_names b_names;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100286 char addr_string[16];
287 u32 bearer_id;
288 u32 with_this_prio;
289 u32 i;
290 int res = -EINVAL;
291
Allan Stephensb58343f2011-11-08 13:48:28 -0500292 if (!tipc_own_addr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400293 pr_warn("Bearer <%s> rejected, not supported in standalone mode\n",
294 name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100295 return -ENOPROTOOPT;
Allan Stephensa10bd922006-06-25 23:52:17 -0700296 }
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500297 if (!bearer_name_validate(name, &b_names)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400298 pr_warn("Bearer <%s> rejected, illegal name\n", name);
Per Liden16cb4b32006-01-13 22:22:22 +0100299 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700300 }
Allan Stephens66e019a2011-04-20 16:24:07 -0500301 if (tipc_addr_domain_valid(disc_domain) &&
302 (disc_domain != tipc_own_addr)) {
303 if (tipc_in_scope(disc_domain, tipc_own_addr)) {
304 disc_domain = tipc_own_addr & TIPC_CLUSTER_MASK;
305 res = 0; /* accept any node in own cluster */
Allan Stephens336ebf52012-04-17 18:02:01 -0400306 } else if (in_own_cluster_exact(disc_domain))
Allan Stephens66e019a2011-04-20 16:24:07 -0500307 res = 0; /* accept specified node in own cluster */
308 }
309 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400310 pr_warn("Bearer <%s> rejected, illegal discovery domain\n",
311 name);
Allan Stephensa10bd922006-06-25 23:52:17 -0700312 return -EINVAL;
313 }
Allan Stephens9efde4a2011-11-03 13:15:10 -0400314 if ((priority > TIPC_MAX_LINK_PRI) &&
Allan Stephensa10bd922006-06-25 23:52:17 -0700315 (priority != TIPC_MEDIA_LINK_PRI)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400316 pr_warn("Bearer <%s> rejected, illegal priority\n", name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100317 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700318 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100319
Per Liden4323add2006-01-18 00:38:21 +0100320 write_lock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100321
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500322 m_ptr = tipc_media_find(b_names.media_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100323 if (!m_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400324 pr_warn("Bearer <%s> rejected, media <%s> not registered\n",
325 name, b_names.media_name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500326 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100327 }
Per Liden16cb4b32006-01-13 22:22:22 +0100328
329 if (priority == TIPC_MEDIA_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100330 priority = m_ptr->priority;
331
332restart:
333 bearer_id = MAX_BEARERS;
334 with_this_prio = 1;
335 for (i = MAX_BEARERS; i-- != 0; ) {
Per Liden4323add2006-01-18 00:38:21 +0100336 if (!tipc_bearers[i].active) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100337 bearer_id = i;
338 continue;
339 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500340 if (!strcmp(name, tipc_bearers[i].name)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400341 pr_warn("Bearer <%s> rejected, already enabled\n",
342 name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500343 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100344 }
Per Liden4323add2006-01-18 00:38:21 +0100345 if ((tipc_bearers[i].priority == priority) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100346 (++with_this_prio > 2)) {
347 if (priority-- == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400348 pr_warn("Bearer <%s> rejected, duplicate priority\n",
349 name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500350 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100351 }
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400352 pr_warn("Bearer <%s> priority adjustment required %u->%u\n",
353 name, priority + 1, priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100354 goto restart;
355 }
356 }
357 if (bearer_id >= MAX_BEARERS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400358 pr_warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
359 name, MAX_BEARERS);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500360 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361 }
362
Per Liden4323add2006-01-18 00:38:21 +0100363 b_ptr = &tipc_bearers[bearer_id];
Allan Stephens2d627b92011-01-07 13:00:11 -0500364 strcpy(b_ptr->name, name);
Ying Xue4babbaa2013-10-18 07:23:17 +0200365 res = m_ptr->enable_media(b_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100366 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400367 pr_warn("Bearer <%s> rejected, enable failure (%d)\n",
368 name, -res);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500369 goto exit;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100370 }
371
372 b_ptr->identity = bearer_id;
373 b_ptr->media = m_ptr;
Allan Stephens5c216e12011-10-18 11:34:29 -0400374 b_ptr->tolerance = m_ptr->tolerance;
375 b_ptr->window = m_ptr->window;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376 b_ptr->net_plane = bearer_id + 'A';
377 b_ptr->active = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100378 b_ptr->priority = priority;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100379 INIT_LIST_HEAD(&b_ptr->links);
Allan Stephens2d627b92011-01-07 13:00:11 -0500380 spin_lock_init(&b_ptr->lock);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500381
Patrick McHardy8aeb89f2013-04-17 06:18:26 +0000382 res = tipc_disc_create(b_ptr, &b_ptr->bcast_addr, disc_domain);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500383 if (res) {
384 bearer_disable(b_ptr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400385 pr_warn("Bearer <%s> rejected, discovery object creation failed\n",
386 name);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500387 goto exit;
388 }
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400389 pr_info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
390 name,
391 tipc_addr_string_fill(addr_string, disc_domain), priority);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500392exit:
Per Liden4323add2006-01-18 00:38:21 +0100393 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100394 return res;
395}
396
397/**
Erik Hugne512137e2013-12-06 10:08:00 -0500398 * tipc_reset_bearer - Reset all links established over this bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100399 */
Erik Hugne512137e2013-12-06 10:08:00 -0500400int tipc_reset_bearer(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100401{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500402 struct tipc_link *l_ptr;
403 struct tipc_link *temp_l_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404
Per Liden4323add2006-01-18 00:38:21 +0100405 read_lock_bh(&tipc_net_lock);
Erik Hugne512137e2013-12-06 10:08:00 -0500406 pr_info("Resetting bearer <%s>\n", b_ptr->name);
Allan Stephens2d627b92011-01-07 13:00:11 -0500407 spin_lock_bh(&b_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100408 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
David S. Miller6c000552008-09-02 23:38:32 -0700409 struct tipc_node *n_ptr = l_ptr->owner;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100410
411 spin_lock_bh(&n_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100412 tipc_link_reset(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100413 spin_unlock_bh(&n_ptr->lock);
414 }
Allan Stephens2d627b92011-01-07 13:00:11 -0500415 spin_unlock_bh(&b_ptr->lock);
Per Liden4323add2006-01-18 00:38:21 +0100416 read_unlock_bh(&tipc_net_lock);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700417 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100418}
419
420/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400421 * bearer_disable
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900422 *
Per Liden4323add2006-01-18 00:38:21 +0100423 * Note: This routine assumes caller holds tipc_net_lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100424 */
Allan Stephens2d627b92011-01-07 13:00:11 -0500425static void bearer_disable(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100426{
Paul Gortmakera18c4bc2011-12-29 20:58:42 -0500427 struct tipc_link *l_ptr;
428 struct tipc_link *temp_l_ptr;
dingtianhongd4cca392013-08-09 17:12:58 +0800429 struct tipc_link_req *temp_req;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100430
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400431 pr_info("Disabling bearer <%s>\n", b_ptr->name);
Allan Stephens2d627b92011-01-07 13:00:11 -0500432 spin_lock_bh(&b_ptr->lock);
Ying Xue4babbaa2013-10-18 07:23:17 +0200433 b_ptr->media->disable_media(b_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100434 list_for_each_entry_safe(l_ptr, temp_l_ptr, &b_ptr->links, link_list) {
Per Liden4323add2006-01-18 00:38:21 +0100435 tipc_link_delete(l_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100436 }
dingtianhongd4cca392013-08-09 17:12:58 +0800437 temp_req = b_ptr->link_req;
438 b_ptr->link_req = NULL;
Allan Stephens2d627b92011-01-07 13:00:11 -0500439 spin_unlock_bh(&b_ptr->lock);
dingtianhongd4cca392013-08-09 17:12:58 +0800440
441 if (temp_req)
442 tipc_disc_delete(temp_req);
443
Allan Stephens2d627b92011-01-07 13:00:11 -0500444 memset(b_ptr, 0, sizeof(struct tipc_bearer));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100445}
446
447int tipc_disable_bearer(const char *name)
448{
Allan Stephens2d627b92011-01-07 13:00:11 -0500449 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100450 int res;
451
Per Liden4323add2006-01-18 00:38:21 +0100452 write_lock_bh(&tipc_net_lock);
Allan Stephens5c216e12011-10-18 11:34:29 -0400453 b_ptr = tipc_bearer_find(name);
Allan Stephensccc901e2010-10-14 13:58:26 +0000454 if (b_ptr == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400455 pr_warn("Attempt to disable unknown bearer <%s>\n", name);
Allan Stephensccc901e2010-10-14 13:58:26 +0000456 res = -EINVAL;
Allan Stephens28cc9372010-11-30 12:00:56 +0000457 } else {
458 bearer_disable(b_ptr);
459 res = 0;
460 }
Per Liden4323add2006-01-18 00:38:21 +0100461 write_unlock_bh(&tipc_net_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100462 return res;
463}
464
465
466
Per Liden4323add2006-01-18 00:38:21 +0100467void tipc_bearer_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100468{
469 u32 i;
470
Per Lidenb97bf3f2006-01-02 19:04:38 +0100471 for (i = 0; i < MAX_BEARERS; i++) {
Per Liden4323add2006-01-18 00:38:21 +0100472 if (tipc_bearers[i].active)
Allan Stephensccc901e2010-10-14 13:58:26 +0000473 bearer_disable(&tipc_bearers[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100474 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100475 media_count = 0;
476}