blob: 59815be0ab98a16fbb71425026ecc2d2446f4382 [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 *
Richard Alpe0655f6a2014-11-20 10:29:07 +01004 * Copyright (c) 1996-2006, 2013-2014, Ericsson AB
Ying Xuee4d050c2013-12-10 20:45:43 -08005 * Copyright (c) 2004-2006, 2010-2013, 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"
Richard Alpe0655f6a2014-11-20 10:29:07 +010040#include "link.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010041#include "discover.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010042
Patrick McHardya29a1942013-04-17 06:18:28 +000043#define MAX_ADDR_STR 60
Per Lidenb97bf3f2006-01-02 19:04:38 +010044
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080045static struct tipc_media * const media_info_array[] = {
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080046 &eth_media_info,
47#ifdef CONFIG_TIPC_MEDIA_IB
48 &ib_media_info,
49#endif
50 NULL
51};
Per Lidenb97bf3f2006-01-02 19:04:38 +010052
Richard Alpe0655f6a2014-11-20 10:29:07 +010053static const struct nla_policy
54tipc_nl_bearer_policy[TIPC_NLA_BEARER_MAX + 1] = {
55 [TIPC_NLA_BEARER_UNSPEC] = { .type = NLA_UNSPEC },
56 [TIPC_NLA_BEARER_NAME] = {
57 .type = NLA_STRING,
58 .len = TIPC_MAX_BEARER_NAME
59 },
60 [TIPC_NLA_BEARER_PROP] = { .type = NLA_NESTED },
61 [TIPC_NLA_BEARER_DOMAIN] = { .type = NLA_U32 }
62};
63
Ying Xuef8322df2014-04-21 10:55:45 +080064struct tipc_bearer __rcu *bearer_list[MAX_BEARERS + 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +010065
Jon Paul Maloy7d339392014-02-13 17:29:16 -050066static void bearer_disable(struct tipc_bearer *b_ptr, bool shutting_down);
Allan Stephens3a777ff2011-04-21 13:58:26 -050067
Per Lidenb97bf3f2006-01-02 19:04:38 +010068/**
Allan Stephens5c216e12011-10-18 11:34:29 -040069 * tipc_media_find - locates specified media object by name
Per Lidenb97bf3f2006-01-02 19:04:38 +010070 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050071struct tipc_media *tipc_media_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +010072{
Per Lidenb97bf3f2006-01-02 19:04:38 +010073 u32 i;
74
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080075 for (i = 0; media_info_array[i] != NULL; i++) {
76 if (!strcmp(media_info_array[i]->name, name))
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080077 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +010078 }
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080079 return media_info_array[i];
Per Lidenb97bf3f2006-01-02 19:04:38 +010080}
81
82/**
Allan Stephensc79be452011-10-06 16:40:55 -040083 * media_find_id - locates specified media object by type identifier
84 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050085static struct tipc_media *media_find_id(u8 type)
Allan Stephensc79be452011-10-06 16:40:55 -040086{
87 u32 i;
88
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080089 for (i = 0; media_info_array[i] != NULL; i++) {
90 if (media_info_array[i]->type_id == type)
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080091 break;
Allan Stephensc79be452011-10-06 16:40:55 -040092 }
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080093 return media_info_array[i];
Per Lidenb97bf3f2006-01-02 19:04:38 +010094}
95
96/**
Per Liden4323add2006-01-18 00:38:21 +010097 * tipc_media_addr_printf - record media address in print buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +010098 */
Erik Hugnedc1aed32012-06-29 00:50:23 -040099void tipc_media_addr_printf(char *buf, int len, struct tipc_media_addr *a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100100{
Allan Stephensc61b6662011-10-07 11:31:49 -0400101 char addr_str[MAX_ADDR_STR];
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500102 struct tipc_media *m_ptr;
Erik Hugnedc1aed32012-06-29 00:50:23 -0400103 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100104
Allan Stephens3d749a62011-10-07 15:19:11 -0400105 m_ptr = media_find_id(a->media_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100106
Allan Stephensc61b6662011-10-07 11:31:49 -0400107 if (m_ptr && !m_ptr->addr2str(a, addr_str, sizeof(addr_str)))
Erik Hugnedc1aed32012-06-29 00:50:23 -0400108 ret = tipc_snprintf(buf, len, "%s(%s)", m_ptr->name, addr_str);
Allan Stephensc61b6662011-10-07 11:31:49 -0400109 else {
Allan Stephensc61b6662011-10-07 11:31:49 -0400110 u32 i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100111
Erik Hugnedc1aed32012-06-29 00:50:23 -0400112 ret = tipc_snprintf(buf, len, "UNKNOWN(%u)", a->media_id);
Allan Stephens3d749a62011-10-07 15:19:11 -0400113 for (i = 0; i < sizeof(a->value); i++)
Erik Hugnedc1aed32012-06-29 00:50:23 -0400114 ret += tipc_snprintf(buf - ret, len + ret,
115 "-%02x", a->value[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100116 }
117}
118
119/**
Per Liden4323add2006-01-18 00:38:21 +0100120 * tipc_media_get_names - record names of registered media in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100121 */
Per Liden4323add2006-01-18 00:38:21 +0100122struct sk_buff *tipc_media_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100123{
124 struct sk_buff *buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100125 int i;
126
Per Liden4323add2006-01-18 00:38:21 +0100127 buf = tipc_cfg_reply_alloc(MAX_MEDIA * TLV_SPACE(TIPC_MAX_MEDIA_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100128 if (!buf)
129 return NULL;
130
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800131 for (i = 0; media_info_array[i] != NULL; i++) {
Allan Stephensa31abe82011-10-07 09:25:12 -0400132 tipc_cfg_append_tlv(buf, TIPC_TLV_MEDIA_NAME,
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800133 media_info_array[i]->name,
134 strlen(media_info_array[i]->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100135 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100136 return buf;
137}
138
139/**
140 * bearer_name_validate - validate & (optionally) deconstruct bearer name
Ben Hutchings2c530402012-07-10 10:55:09 +0000141 * @name: ptr to bearer name string
142 * @name_parts: ptr to area for bearer name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900143 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144 * Returns 1 if bearer name is valid, otherwise 0.
145 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900146static int bearer_name_validate(const char *name,
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500147 struct tipc_bearer_names *name_parts)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100148{
149 char name_copy[TIPC_MAX_BEARER_NAME];
150 char *media_name;
151 char *if_name;
152 u32 media_len;
153 u32 if_len;
154
155 /* copy bearer name & ensure length is OK */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100156 name_copy[TIPC_MAX_BEARER_NAME - 1] = 0;
157 /* need above in case non-Posix strncpy() doesn't pad with nulls */
158 strncpy(name_copy, name, TIPC_MAX_BEARER_NAME);
159 if (name_copy[TIPC_MAX_BEARER_NAME - 1] != 0)
160 return 0;
161
162 /* ensure all component parts of bearer name are present */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100163 media_name = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000164 if_name = strchr(media_name, ':');
165 if (if_name == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100166 return 0;
167 *(if_name++) = 0;
168 media_len = if_name - media_name;
169 if_len = strlen(if_name) + 1;
170
171 /* validate component parts of bearer name */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900172 if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) ||
Ying Xuefc073932012-08-16 12:09:08 +0000173 (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100174 return 0;
175
176 /* return bearer name components, if necessary */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100177 if (name_parts) {
178 strcpy(name_parts->media_name, media_name);
179 strcpy(name_parts->if_name, if_name);
180 }
181 return 1;
182}
183
184/**
Allan Stephens5c216e12011-10-18 11:34:29 -0400185 * tipc_bearer_find - locates bearer object with matching bearer name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100186 */
Allan Stephens5c216e12011-10-18 11:34:29 -0400187struct tipc_bearer *tipc_bearer_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100188{
Allan Stephens2d627b92011-01-07 13:00:11 -0500189 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100190 u32 i;
191
Ying Xue3874ccb2014-03-27 12:54:33 +0800192 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xuef8322df2014-04-21 10:55:45 +0800193 b_ptr = rtnl_dereference(bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800194 if (b_ptr && (!strcmp(b_ptr->name, name)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100195 return b_ptr;
196 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800197 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100198}
199
200/**
Per Liden4323add2006-01-18 00:38:21 +0100201 * tipc_bearer_get_names - record names of bearers in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100202 */
Per Liden4323add2006-01-18 00:38:21 +0100203struct sk_buff *tipc_bearer_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204{
205 struct sk_buff *buf;
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800206 struct tipc_bearer *b;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100207 int i, j;
208
Per Liden4323add2006-01-18 00:38:21 +0100209 buf = tipc_cfg_reply_alloc(MAX_BEARERS * TLV_SPACE(TIPC_MAX_BEARER_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100210 if (!buf)
211 return NULL;
212
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800213 for (i = 0; media_info_array[i] != NULL; i++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100214 for (j = 0; j < MAX_BEARERS; j++) {
Ying Xuef8322df2014-04-21 10:55:45 +0800215 b = rtnl_dereference(bearer_list[j]);
Ying Xue3874ccb2014-03-27 12:54:33 +0800216 if (!b)
217 continue;
Ying Xuef47de122014-03-27 12:54:34 +0800218 if (b->media == media_info_array[i]) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900219 tipc_cfg_append_tlv(buf, TIPC_TLV_BEARER_NAME,
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800220 b->name,
221 strlen(b->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100222 }
223 }
224 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100225 return buf;
226}
227
Ying Xue7a2f7d12014-04-21 10:55:46 +0800228void tipc_bearer_add_dest(u32 bearer_id, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100229{
Ying Xue7a2f7d12014-04-21 10:55:46 +0800230 struct tipc_bearer *b_ptr;
231
232 rcu_read_lock();
233 b_ptr = rcu_dereference_rtnl(bearer_list[bearer_id]);
234 if (b_ptr) {
Ying Xue28dd9412014-04-21 10:55:51 +0800235 tipc_bcbearer_sort(&b_ptr->nodes, dest, true);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800236 tipc_disc_add_dest(b_ptr->link_req);
237 }
238 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100239}
240
Ying Xue7a2f7d12014-04-21 10:55:46 +0800241void tipc_bearer_remove_dest(u32 bearer_id, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100242{
Ying Xue7a2f7d12014-04-21 10:55:46 +0800243 struct tipc_bearer *b_ptr;
244
245 rcu_read_lock();
246 b_ptr = rcu_dereference_rtnl(bearer_list[bearer_id]);
247 if (b_ptr) {
Ying Xue28dd9412014-04-21 10:55:51 +0800248 tipc_bcbearer_sort(&b_ptr->nodes, dest, false);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800249 tipc_disc_remove_dest(b_ptr->link_req);
250 }
251 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100252}
253
Allan Stephensb274f4a2010-05-11 14:30:16 +0000254/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100255 * tipc_enable_bearer - enable bearer with the given name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900256 */
Allan Stephens50d3e632011-02-28 14:56:15 -0500257int tipc_enable_bearer(const char *name, u32 disc_domain, u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258{
Allan Stephens2d627b92011-01-07 13:00:11 -0500259 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500260 struct tipc_media *m_ptr;
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500261 struct tipc_bearer_names b_names;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100262 char addr_string[16];
263 u32 bearer_id;
264 u32 with_this_prio;
265 u32 i;
266 int res = -EINVAL;
267
Allan Stephensb58343f2011-11-08 13:48:28 -0500268 if (!tipc_own_addr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400269 pr_warn("Bearer <%s> rejected, not supported in standalone mode\n",
270 name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100271 return -ENOPROTOOPT;
Allan Stephensa10bd922006-06-25 23:52:17 -0700272 }
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500273 if (!bearer_name_validate(name, &b_names)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400274 pr_warn("Bearer <%s> rejected, illegal name\n", name);
Per Liden16cb4b32006-01-13 22:22:22 +0100275 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700276 }
Allan Stephens66e019a2011-04-20 16:24:07 -0500277 if (tipc_addr_domain_valid(disc_domain) &&
278 (disc_domain != tipc_own_addr)) {
279 if (tipc_in_scope(disc_domain, tipc_own_addr)) {
280 disc_domain = tipc_own_addr & TIPC_CLUSTER_MASK;
281 res = 0; /* accept any node in own cluster */
Allan Stephens336ebf52012-04-17 18:02:01 -0400282 } else if (in_own_cluster_exact(disc_domain))
Allan Stephens66e019a2011-04-20 16:24:07 -0500283 res = 0; /* accept specified node in own cluster */
284 }
285 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400286 pr_warn("Bearer <%s> rejected, illegal discovery domain\n",
287 name);
Allan Stephensa10bd922006-06-25 23:52:17 -0700288 return -EINVAL;
289 }
Allan Stephens9efde4a2011-11-03 13:15:10 -0400290 if ((priority > TIPC_MAX_LINK_PRI) &&
Allan Stephensa10bd922006-06-25 23:52:17 -0700291 (priority != TIPC_MEDIA_LINK_PRI)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400292 pr_warn("Bearer <%s> rejected, illegal priority\n", name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700294 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100295
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500296 m_ptr = tipc_media_find(b_names.media_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100297 if (!m_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400298 pr_warn("Bearer <%s> rejected, media <%s> not registered\n",
299 name, b_names.media_name);
Ying Xue7216cd92014-04-21 10:55:48 +0800300 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301 }
Per Liden16cb4b32006-01-13 22:22:22 +0100302
303 if (priority == TIPC_MEDIA_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100304 priority = m_ptr->priority;
305
306restart:
307 bearer_id = MAX_BEARERS;
308 with_this_prio = 1;
309 for (i = MAX_BEARERS; i-- != 0; ) {
Ying Xuef8322df2014-04-21 10:55:45 +0800310 b_ptr = rtnl_dereference(bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800311 if (!b_ptr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100312 bearer_id = i;
313 continue;
314 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800315 if (!strcmp(name, b_ptr->name)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400316 pr_warn("Bearer <%s> rejected, already enabled\n",
317 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800318 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100319 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800320 if ((b_ptr->priority == priority) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100321 (++with_this_prio > 2)) {
322 if (priority-- == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400323 pr_warn("Bearer <%s> rejected, duplicate priority\n",
324 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800325 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100326 }
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400327 pr_warn("Bearer <%s> priority adjustment required %u->%u\n",
328 name, priority + 1, priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329 goto restart;
330 }
331 }
332 if (bearer_id >= MAX_BEARERS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400333 pr_warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
334 name, MAX_BEARERS);
Ying Xue7216cd92014-04-21 10:55:48 +0800335 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100336 }
337
Ying Xue3874ccb2014-03-27 12:54:33 +0800338 b_ptr = kzalloc(sizeof(*b_ptr), GFP_ATOMIC);
Ying Xue7216cd92014-04-21 10:55:48 +0800339 if (!b_ptr)
340 return -ENOMEM;
341
Allan Stephens2d627b92011-01-07 13:00:11 -0500342 strcpy(b_ptr->name, name);
Ying Xuee4d050c2013-12-10 20:45:43 -0800343 b_ptr->media = m_ptr;
Ying Xue4babbaa2013-10-18 07:23:17 +0200344 res = m_ptr->enable_media(b_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400346 pr_warn("Bearer <%s> rejected, enable failure (%d)\n",
347 name, -res);
Ying Xue7216cd92014-04-21 10:55:48 +0800348 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100349 }
350
351 b_ptr->identity = bearer_id;
Allan Stephens5c216e12011-10-18 11:34:29 -0400352 b_ptr->tolerance = m_ptr->tolerance;
353 b_ptr->window = m_ptr->window;
Erik Hugnea21a5842014-03-28 10:32:08 +0100354 b_ptr->domain = disc_domain;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100355 b_ptr->net_plane = bearer_id + 'A';
Per Lidenb97bf3f2006-01-02 19:04:38 +0100356 b_ptr->priority = priority;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500357
Erik Hugne16470112014-03-28 10:32:09 +0100358 res = tipc_disc_create(b_ptr, &b_ptr->bcast_addr);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500359 if (res) {
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500360 bearer_disable(b_ptr, false);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400361 pr_warn("Bearer <%s> rejected, discovery object creation failed\n",
362 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800363 return -EINVAL;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500364 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800365
Ying Xuef8322df2014-04-21 10:55:45 +0800366 rcu_assign_pointer(bearer_list[bearer_id], b_ptr);
Ying Xue3874ccb2014-03-27 12:54:33 +0800367
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400368 pr_info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
369 name,
370 tipc_addr_string_fill(addr_string, disc_domain), priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100371 return res;
372}
373
374/**
Erik Hugne512137e2013-12-06 10:08:00 -0500375 * tipc_reset_bearer - Reset all links established over this bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376 */
Ying Xue6e967ad2013-12-10 20:45:42 -0800377static int tipc_reset_bearer(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100378{
Erik Hugne512137e2013-12-06 10:08:00 -0500379 pr_info("Resetting bearer <%s>\n", b_ptr->name);
Ying Xuec61dd612014-02-13 17:29:09 -0500380 tipc_link_reset_list(b_ptr->identity);
Ying Xuea8b9b962014-04-21 10:55:52 +0800381 tipc_disc_reset(b_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700382 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100383}
384
385/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400386 * bearer_disable
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900387 *
Ying Xue7216cd92014-04-21 10:55:48 +0800388 * Note: This routine assumes caller holds RTNL lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100389 */
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500390static void bearer_disable(struct tipc_bearer *b_ptr, bool shutting_down)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100391{
Ying Xue3874ccb2014-03-27 12:54:33 +0800392 u32 i;
393
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400394 pr_info("Disabling bearer <%s>\n", b_ptr->name);
Ying Xue4babbaa2013-10-18 07:23:17 +0200395 b_ptr->media->disable_media(b_ptr);
Ying Xuea8304522014-02-13 17:29:17 -0500396
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500397 tipc_link_delete_list(b_ptr->identity, shutting_down);
Ying Xuea8304522014-02-13 17:29:17 -0500398 if (b_ptr->link_req)
399 tipc_disc_delete(b_ptr->link_req);
Ying Xue3874ccb2014-03-27 12:54:33 +0800400
401 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xuef8322df2014-04-21 10:55:45 +0800402 if (b_ptr == rtnl_dereference(bearer_list[i])) {
403 RCU_INIT_POINTER(bearer_list[i], NULL);
Ying Xue3874ccb2014-03-27 12:54:33 +0800404 break;
405 }
406 }
Ying Xuef8322df2014-04-21 10:55:45 +0800407 kfree_rcu(b_ptr, rcu);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100408}
409
410int tipc_disable_bearer(const char *name)
411{
Allan Stephens2d627b92011-01-07 13:00:11 -0500412 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100413 int res;
414
Allan Stephens5c216e12011-10-18 11:34:29 -0400415 b_ptr = tipc_bearer_find(name);
Allan Stephensccc901e2010-10-14 13:58:26 +0000416 if (b_ptr == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400417 pr_warn("Attempt to disable unknown bearer <%s>\n", name);
Allan Stephensccc901e2010-10-14 13:58:26 +0000418 res = -EINVAL;
Allan Stephens28cc9372010-11-30 12:00:56 +0000419 } else {
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500420 bearer_disable(b_ptr, false);
Allan Stephens28cc9372010-11-30 12:00:56 +0000421 res = 0;
422 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100423 return res;
424}
425
Ying Xuee4d050c2013-12-10 20:45:43 -0800426int tipc_enable_l2_media(struct tipc_bearer *b)
427{
428 struct net_device *dev;
429 char *driver_name = strchr((const char *)b->name, ':') + 1;
430
431 /* Find device with specified name */
432 dev = dev_get_by_name(&init_net, driver_name);
433 if (!dev)
434 return -ENODEV;
435
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400436 /* Associate TIPC bearer with L2 bearer */
Ying Xue2231c5a2014-04-21 10:55:47 +0800437 rcu_assign_pointer(b->media_ptr, dev);
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400438 memset(&b->bcast_addr, 0, sizeof(b->bcast_addr));
Ying Xuee4d050c2013-12-10 20:45:43 -0800439 memcpy(b->bcast_addr.value, dev->broadcast, b->media->hwaddr_len);
440 b->bcast_addr.media_id = b->media->type_id;
441 b->bcast_addr.broadcast = 1;
442 b->mtu = dev->mtu;
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400443 b->media->raw2addr(b, &b->addr, (char *)dev->dev_addr);
Ying Xuee4d050c2013-12-10 20:45:43 -0800444 rcu_assign_pointer(dev->tipc_ptr, b);
445 return 0;
446}
447
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400448/* tipc_disable_l2_media - detach TIPC bearer from an L2 interface
Ying Xuee4d050c2013-12-10 20:45:43 -0800449 *
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400450 * Mark L2 bearer as inactive so that incoming buffers are thrown away,
Ying Xuee4d050c2013-12-10 20:45:43 -0800451 * then get worker thread to complete bearer cleanup. (Can't do cleanup
452 * here because cleanup code needs to sleep and caller holds spinlocks.)
453 */
454void tipc_disable_l2_media(struct tipc_bearer *b)
455{
Ying Xue2231c5a2014-04-21 10:55:47 +0800456 struct net_device *dev;
457
458 dev = (struct net_device *)rtnl_dereference(b->media_ptr);
459 RCU_INIT_POINTER(b->media_ptr, NULL);
Ying Xuee4d050c2013-12-10 20:45:43 -0800460 RCU_INIT_POINTER(dev->tipc_ptr, NULL);
Ying Xuef1c8d8c2014-04-21 10:55:49 +0800461 synchronize_net();
Ying Xuee4d050c2013-12-10 20:45:43 -0800462 dev_put(dev);
463}
464
465/**
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400466 * tipc_l2_send_msg - send a TIPC packet out over an L2 interface
Ying Xuee4d050c2013-12-10 20:45:43 -0800467 * @buf: the packet to be sent
stephen hemminger963a18552014-01-12 12:48:00 -0800468 * @b_ptr: the bearer through which the packet is to be sent
Ying Xuee4d050c2013-12-10 20:45:43 -0800469 * @dest: peer destination address
470 */
471int tipc_l2_send_msg(struct sk_buff *buf, struct tipc_bearer *b,
472 struct tipc_media_addr *dest)
473{
474 struct sk_buff *clone;
Ying Xue2231c5a2014-04-21 10:55:47 +0800475 struct net_device *dev;
Ying Xuee4d050c2013-12-10 20:45:43 -0800476 int delta;
Ying Xue2231c5a2014-04-21 10:55:47 +0800477
478 dev = (struct net_device *)rcu_dereference_rtnl(b->media_ptr);
479 if (!dev)
480 return 0;
Ying Xuee4d050c2013-12-10 20:45:43 -0800481
482 clone = skb_clone(buf, GFP_ATOMIC);
483 if (!clone)
484 return 0;
485
486 delta = dev->hard_header_len - skb_headroom(buf);
487 if ((delta > 0) &&
488 pskb_expand_head(clone, SKB_DATA_ALIGN(delta), 0, GFP_ATOMIC)) {
489 kfree_skb(clone);
490 return 0;
491 }
492
493 skb_reset_network_header(clone);
494 clone->dev = dev;
495 clone->protocol = htons(ETH_P_TIPC);
496 dev_hard_header(clone, dev, ETH_P_TIPC, dest->value,
497 dev->dev_addr, clone->len);
498 dev_queue_xmit(clone);
499 return 0;
500}
501
502/* tipc_bearer_send- sends buffer to destination over bearer
503 *
504 * IMPORTANT:
505 * The media send routine must not alter the buffer being passed in
506 * as it may be needed for later retransmission!
507 */
Ying Xue7a2f7d12014-04-21 10:55:46 +0800508void tipc_bearer_send(u32 bearer_id, struct sk_buff *buf,
Ying Xuee4d050c2013-12-10 20:45:43 -0800509 struct tipc_media_addr *dest)
510{
Ying Xue7a2f7d12014-04-21 10:55:46 +0800511 struct tipc_bearer *b_ptr;
512
513 rcu_read_lock();
514 b_ptr = rcu_dereference_rtnl(bearer_list[bearer_id]);
515 if (likely(b_ptr))
516 b_ptr->media->send_msg(buf, b_ptr, dest);
517 rcu_read_unlock();
Ying Xuee4d050c2013-12-10 20:45:43 -0800518}
519
Ying Xue6e967ad2013-12-10 20:45:42 -0800520/**
521 * tipc_l2_rcv_msg - handle incoming TIPC message from an interface
522 * @buf: the received packet
523 * @dev: the net device that the packet was received on
524 * @pt: the packet_type structure which was used to register this handler
525 * @orig_dev: the original receive net device in case the device is a bond
526 *
527 * Accept only packets explicitly sent to this node, or broadcast packets;
528 * ignores packets sent using interface multicast, and traffic sent to other
529 * nodes (which can happen if interface is running in promiscuous mode).
530 */
531static int tipc_l2_rcv_msg(struct sk_buff *buf, struct net_device *dev,
532 struct packet_type *pt, struct net_device *orig_dev)
533{
534 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100535
Ying Xue6e967ad2013-12-10 20:45:42 -0800536 if (!net_eq(dev_net(dev), &init_net)) {
537 kfree_skb(buf);
538 return NET_RX_DROP;
539 }
540
541 rcu_read_lock();
Ying Xueca07fb02014-04-21 10:55:43 +0800542 b_ptr = rcu_dereference_rtnl(dev->tipc_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800543 if (likely(b_ptr)) {
544 if (likely(buf->pkt_type <= PACKET_BROADCAST)) {
545 buf->next = NULL;
Jon Paul Maloy170b3922014-01-07 17:02:41 -0500546 tipc_rcv(buf, b_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800547 rcu_read_unlock();
548 return NET_RX_SUCCESS;
549 }
550 }
551 rcu_read_unlock();
552
553 kfree_skb(buf);
554 return NET_RX_DROP;
555}
556
557/**
558 * tipc_l2_device_event - handle device events from network device
559 * @nb: the context of the notification
560 * @evt: the type of event
561 * @ptr: the net device that the event was on
562 *
563 * This function is called by the Ethernet driver in case of link
564 * change event.
565 */
566static int tipc_l2_device_event(struct notifier_block *nb, unsigned long evt,
567 void *ptr)
568{
569 struct tipc_bearer *b_ptr;
570 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
571
572 if (!net_eq(dev_net(dev), &init_net))
573 return NOTIFY_DONE;
574
Ying Xueca07fb02014-04-21 10:55:43 +0800575 b_ptr = rtnl_dereference(dev->tipc_ptr);
576 if (!b_ptr)
Ying Xue6e967ad2013-12-10 20:45:42 -0800577 return NOTIFY_DONE;
Ying Xue6e967ad2013-12-10 20:45:42 -0800578
579 b_ptr->mtu = dev->mtu;
580
581 switch (evt) {
582 case NETDEV_CHANGE:
583 if (netif_carrier_ok(dev))
584 break;
585 case NETDEV_DOWN:
586 case NETDEV_CHANGEMTU:
Erik Hugnea21a5842014-03-28 10:32:08 +0100587 tipc_reset_bearer(b_ptr);
588 break;
Ying Xue6e967ad2013-12-10 20:45:42 -0800589 case NETDEV_CHANGEADDR:
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400590 b_ptr->media->raw2addr(b_ptr, &b_ptr->addr,
Erik Hugnea21a5842014-03-28 10:32:08 +0100591 (char *)dev->dev_addr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800592 tipc_reset_bearer(b_ptr);
593 break;
594 case NETDEV_UNREGISTER:
595 case NETDEV_CHANGENAME:
Ying Xue4ae88c92014-04-21 10:55:50 +0800596 bearer_disable(b_ptr, false);
Ying Xue6e967ad2013-12-10 20:45:42 -0800597 break;
598 }
Ying Xue6e967ad2013-12-10 20:45:42 -0800599 return NOTIFY_OK;
600}
601
602static struct packet_type tipc_packet_type __read_mostly = {
Joe Perches184593c2014-03-12 10:04:20 -0700603 .type = htons(ETH_P_TIPC),
Ying Xue6e967ad2013-12-10 20:45:42 -0800604 .func = tipc_l2_rcv_msg,
605};
606
607static struct notifier_block notifier = {
608 .notifier_call = tipc_l2_device_event,
609 .priority = 0,
610};
611
612int tipc_bearer_setup(void)
613{
Ying Xue970122f2014-02-20 11:32:50 +0800614 int err;
615
616 err = register_netdevice_notifier(&notifier);
617 if (err)
618 return err;
Ying Xue6e967ad2013-12-10 20:45:42 -0800619 dev_add_pack(&tipc_packet_type);
Ying Xue970122f2014-02-20 11:32:50 +0800620 return 0;
Ying Xue6e967ad2013-12-10 20:45:42 -0800621}
622
623void tipc_bearer_cleanup(void)
624{
625 unregister_netdevice_notifier(&notifier);
626 dev_remove_pack(&tipc_packet_type);
627}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100628
Per Liden4323add2006-01-18 00:38:21 +0100629void tipc_bearer_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100630{
Ying Xue3874ccb2014-03-27 12:54:33 +0800631 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100632 u32 i;
633
Per Lidenb97bf3f2006-01-02 19:04:38 +0100634 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xuef8322df2014-04-21 10:55:45 +0800635 b_ptr = rtnl_dereference(bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800636 if (b_ptr) {
Ying Xue3874ccb2014-03-27 12:54:33 +0800637 bearer_disable(b_ptr, true);
638 bearer_list[i] = NULL;
639 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100640 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100641}
Richard Alpe0655f6a2014-11-20 10:29:07 +0100642
643int tipc_nl_bearer_disable(struct sk_buff *skb, struct genl_info *info)
644{
645 int err;
646 char *name;
647 struct tipc_bearer *bearer;
648 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
649
650 if (!info->attrs[TIPC_NLA_BEARER])
651 return -EINVAL;
652
653 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
654 info->attrs[TIPC_NLA_BEARER],
655 tipc_nl_bearer_policy);
656 if (err)
657 return err;
658
659 if (!attrs[TIPC_NLA_BEARER_NAME])
660 return -EINVAL;
661
662 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
663
664 rtnl_lock();
665 bearer = tipc_bearer_find(name);
666 if (!bearer) {
667 rtnl_unlock();
668 return -EINVAL;
669 }
670
671 bearer_disable(bearer, false);
672 rtnl_unlock();
673
674 return 0;
675}
676
677int tipc_nl_bearer_enable(struct sk_buff *skb, struct genl_info *info)
678{
679 int err;
680 char *bearer;
681 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
682 u32 domain;
683 u32 prio;
684
685 prio = TIPC_MEDIA_LINK_PRI;
686 domain = tipc_own_addr & TIPC_CLUSTER_MASK;
687
688 if (!info->attrs[TIPC_NLA_BEARER])
689 return -EINVAL;
690
691 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
692 info->attrs[TIPC_NLA_BEARER],
693 tipc_nl_bearer_policy);
694 if (err)
695 return err;
696
697 if (!attrs[TIPC_NLA_BEARER_NAME])
698 return -EINVAL;
699
700 bearer = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
701
702 if (attrs[TIPC_NLA_BEARER_DOMAIN])
703 domain = nla_get_u32(attrs[TIPC_NLA_BEARER_DOMAIN]);
704
705 if (attrs[TIPC_NLA_BEARER_PROP]) {
706 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
707
708 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
709 props);
710 if (err)
711 return err;
712
713 if (props[TIPC_NLA_PROP_PRIO])
714 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
715 }
716
717 rtnl_lock();
718 err = tipc_enable_bearer(bearer, domain, prio);
719 if (err) {
720 rtnl_unlock();
721 return err;
722 }
723 rtnl_unlock();
724
725 return 0;
726}