blob: de1c800ef80620d8eb38d7793262dc7db442d38e [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
Ying Xue7f9f95d2015-01-09 15:27:06 +080037#include <net/sock.h>
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "core.h"
39#include "config.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "bearer.h"
Richard Alpe0655f6a2014-11-20 10:29:07 +010041#include "link.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010042#include "discover.h"
Ying Xue1da46562015-01-09 15:27:07 +080043#include "bcast.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010044
Patrick McHardya29a1942013-04-17 06:18:28 +000045#define MAX_ADDR_STR 60
Per Lidenb97bf3f2006-01-02 19:04:38 +010046
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080047static struct tipc_media * const media_info_array[] = {
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080048 &eth_media_info,
49#ifdef CONFIG_TIPC_MEDIA_IB
50 &ib_media_info,
51#endif
52 NULL
53};
Per Lidenb97bf3f2006-01-02 19:04:38 +010054
Richard Alpe0655f6a2014-11-20 10:29:07 +010055static const struct nla_policy
56tipc_nl_bearer_policy[TIPC_NLA_BEARER_MAX + 1] = {
57 [TIPC_NLA_BEARER_UNSPEC] = { .type = NLA_UNSPEC },
58 [TIPC_NLA_BEARER_NAME] = {
59 .type = NLA_STRING,
60 .len = TIPC_MAX_BEARER_NAME
61 },
62 [TIPC_NLA_BEARER_PROP] = { .type = NLA_NESTED },
63 [TIPC_NLA_BEARER_DOMAIN] = { .type = NLA_U32 }
64};
65
Richard Alpe46f15c62014-11-20 10:29:15 +010066static const struct nla_policy tipc_nl_media_policy[TIPC_NLA_MEDIA_MAX + 1] = {
67 [TIPC_NLA_MEDIA_UNSPEC] = { .type = NLA_UNSPEC },
68 [TIPC_NLA_MEDIA_NAME] = { .type = NLA_STRING },
69 [TIPC_NLA_MEDIA_PROP] = { .type = NLA_NESTED }
70};
71
Ying Xuef2f98002015-01-09 15:27:05 +080072static void bearer_disable(struct net *net, struct tipc_bearer *b_ptr,
73 bool shutting_down);
Allan Stephens3a777ff2011-04-21 13:58:26 -050074
Per Lidenb97bf3f2006-01-02 19:04:38 +010075/**
Allan Stephens5c216e12011-10-18 11:34:29 -040076 * tipc_media_find - locates specified media object by name
Per Lidenb97bf3f2006-01-02 19:04:38 +010077 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050078struct tipc_media *tipc_media_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +010079{
Per Lidenb97bf3f2006-01-02 19:04:38 +010080 u32 i;
81
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080082 for (i = 0; media_info_array[i] != NULL; i++) {
83 if (!strcmp(media_info_array[i]->name, name))
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080084 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +010085 }
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080086 return media_info_array[i];
Per Lidenb97bf3f2006-01-02 19:04:38 +010087}
88
89/**
Allan Stephensc79be452011-10-06 16:40:55 -040090 * media_find_id - locates specified media object by type identifier
91 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050092static struct tipc_media *media_find_id(u8 type)
Allan Stephensc79be452011-10-06 16:40:55 -040093{
94 u32 i;
95
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080096 for (i = 0; media_info_array[i] != NULL; i++) {
97 if (media_info_array[i]->type_id == type)
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080098 break;
Allan Stephensc79be452011-10-06 16:40:55 -040099 }
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800100 return media_info_array[i];
Per Lidenb97bf3f2006-01-02 19:04:38 +0100101}
102
103/**
Per Liden4323add2006-01-18 00:38:21 +0100104 * tipc_media_addr_printf - record media address in print buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100105 */
Erik Hugnedc1aed32012-06-29 00:50:23 -0400106void tipc_media_addr_printf(char *buf, int len, struct tipc_media_addr *a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100107{
Allan Stephensc61b6662011-10-07 11:31:49 -0400108 char addr_str[MAX_ADDR_STR];
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500109 struct tipc_media *m_ptr;
Erik Hugnedc1aed32012-06-29 00:50:23 -0400110 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100111
Allan Stephens3d749a62011-10-07 15:19:11 -0400112 m_ptr = media_find_id(a->media_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100113
Allan Stephensc61b6662011-10-07 11:31:49 -0400114 if (m_ptr && !m_ptr->addr2str(a, addr_str, sizeof(addr_str)))
Erik Hugnedc1aed32012-06-29 00:50:23 -0400115 ret = tipc_snprintf(buf, len, "%s(%s)", m_ptr->name, addr_str);
Allan Stephensc61b6662011-10-07 11:31:49 -0400116 else {
Allan Stephensc61b6662011-10-07 11:31:49 -0400117 u32 i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100118
Erik Hugnedc1aed32012-06-29 00:50:23 -0400119 ret = tipc_snprintf(buf, len, "UNKNOWN(%u)", a->media_id);
Allan Stephens3d749a62011-10-07 15:19:11 -0400120 for (i = 0; i < sizeof(a->value); i++)
Erik Hugnedc1aed32012-06-29 00:50:23 -0400121 ret += tipc_snprintf(buf - ret, len + ret,
122 "-%02x", a->value[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100123 }
124}
125
126/**
Per Liden4323add2006-01-18 00:38:21 +0100127 * tipc_media_get_names - record names of registered media in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100128 */
Per Liden4323add2006-01-18 00:38:21 +0100129struct sk_buff *tipc_media_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130{
131 struct sk_buff *buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100132 int i;
133
Per Liden4323add2006-01-18 00:38:21 +0100134 buf = tipc_cfg_reply_alloc(MAX_MEDIA * TLV_SPACE(TIPC_MAX_MEDIA_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100135 if (!buf)
136 return NULL;
137
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800138 for (i = 0; media_info_array[i] != NULL; i++) {
Allan Stephensa31abe82011-10-07 09:25:12 -0400139 tipc_cfg_append_tlv(buf, TIPC_TLV_MEDIA_NAME,
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800140 media_info_array[i]->name,
141 strlen(media_info_array[i]->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100142 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100143 return buf;
144}
145
146/**
147 * bearer_name_validate - validate & (optionally) deconstruct bearer name
Ben Hutchings2c530402012-07-10 10:55:09 +0000148 * @name: ptr to bearer name string
149 * @name_parts: ptr to area for bearer name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900150 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100151 * Returns 1 if bearer name is valid, otherwise 0.
152 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900153static int bearer_name_validate(const char *name,
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500154 struct tipc_bearer_names *name_parts)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100155{
156 char name_copy[TIPC_MAX_BEARER_NAME];
157 char *media_name;
158 char *if_name;
159 u32 media_len;
160 u32 if_len;
161
162 /* copy bearer name & ensure length is OK */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100163 name_copy[TIPC_MAX_BEARER_NAME - 1] = 0;
164 /* need above in case non-Posix strncpy() doesn't pad with nulls */
165 strncpy(name_copy, name, TIPC_MAX_BEARER_NAME);
166 if (name_copy[TIPC_MAX_BEARER_NAME - 1] != 0)
167 return 0;
168
169 /* ensure all component parts of bearer name are present */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100170 media_name = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000171 if_name = strchr(media_name, ':');
172 if (if_name == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100173 return 0;
174 *(if_name++) = 0;
175 media_len = if_name - media_name;
176 if_len = strlen(if_name) + 1;
177
178 /* validate component parts of bearer name */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900179 if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) ||
Ying Xuefc073932012-08-16 12:09:08 +0000180 (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100181 return 0;
182
183 /* return bearer name components, if necessary */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100184 if (name_parts) {
185 strcpy(name_parts->media_name, media_name);
186 strcpy(name_parts->if_name, if_name);
187 }
188 return 1;
189}
190
191/**
Allan Stephens5c216e12011-10-18 11:34:29 -0400192 * tipc_bearer_find - locates bearer object with matching bearer name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100193 */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800194struct tipc_bearer *tipc_bearer_find(struct net *net, const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100195{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800196 struct tipc_net *tn = net_generic(net, tipc_net_id);
Allan Stephens2d627b92011-01-07 13:00:11 -0500197 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100198 u32 i;
199
Ying Xue3874ccb2014-03-27 12:54:33 +0800200 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800201 b_ptr = rtnl_dereference(tn->bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800202 if (b_ptr && (!strcmp(b_ptr->name, name)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100203 return b_ptr;
204 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800205 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100206}
207
Ying Xue7f9f95d2015-01-09 15:27:06 +0800208void tipc_bearer_add_dest(struct net *net, u32 bearer_id, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100209{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800210 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800211 struct tipc_bearer *b_ptr;
212
213 rcu_read_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800214 b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800215 if (b_ptr) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800216 tipc_bcbearer_sort(net, &b_ptr->nodes, dest, true);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800217 tipc_disc_add_dest(b_ptr->link_req);
218 }
219 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100220}
221
Ying Xue7f9f95d2015-01-09 15:27:06 +0800222void tipc_bearer_remove_dest(struct net *net, u32 bearer_id, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100223{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800224 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800225 struct tipc_bearer *b_ptr;
226
227 rcu_read_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800228 b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800229 if (b_ptr) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800230 tipc_bcbearer_sort(net, &b_ptr->nodes, dest, false);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800231 tipc_disc_remove_dest(b_ptr->link_req);
232 }
233 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100234}
235
Allan Stephensb274f4a2010-05-11 14:30:16 +0000236/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237 * tipc_enable_bearer - enable bearer with the given name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900238 */
Richard Alpe9ab15462015-02-09 09:50:05 +0100239static int tipc_enable_bearer(struct net *net, const char *name,
240 u32 disc_domain, u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100241{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800242 struct tipc_net *tn = net_generic(net, tipc_net_id);
Allan Stephens2d627b92011-01-07 13:00:11 -0500243 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500244 struct tipc_media *m_ptr;
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500245 struct tipc_bearer_names b_names;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100246 char addr_string[16];
247 u32 bearer_id;
248 u32 with_this_prio;
249 u32 i;
250 int res = -EINVAL;
251
Ying Xue34747532015-01-09 15:27:10 +0800252 if (!tn->own_addr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400253 pr_warn("Bearer <%s> rejected, not supported in standalone mode\n",
254 name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100255 return -ENOPROTOOPT;
Allan Stephensa10bd922006-06-25 23:52:17 -0700256 }
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500257 if (!bearer_name_validate(name, &b_names)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400258 pr_warn("Bearer <%s> rejected, illegal name\n", name);
Per Liden16cb4b32006-01-13 22:22:22 +0100259 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700260 }
Allan Stephens66e019a2011-04-20 16:24:07 -0500261 if (tipc_addr_domain_valid(disc_domain) &&
Ying Xue34747532015-01-09 15:27:10 +0800262 (disc_domain != tn->own_addr)) {
263 if (tipc_in_scope(disc_domain, tn->own_addr)) {
264 disc_domain = tn->own_addr & TIPC_CLUSTER_MASK;
Allan Stephens66e019a2011-04-20 16:24:07 -0500265 res = 0; /* accept any node in own cluster */
Ying Xue34747532015-01-09 15:27:10 +0800266 } else if (in_own_cluster_exact(net, disc_domain))
Allan Stephens66e019a2011-04-20 16:24:07 -0500267 res = 0; /* accept specified node in own cluster */
268 }
269 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400270 pr_warn("Bearer <%s> rejected, illegal discovery domain\n",
271 name);
Allan Stephensa10bd922006-06-25 23:52:17 -0700272 return -EINVAL;
273 }
Allan Stephens9efde4a2011-11-03 13:15:10 -0400274 if ((priority > TIPC_MAX_LINK_PRI) &&
Allan Stephensa10bd922006-06-25 23:52:17 -0700275 (priority != TIPC_MEDIA_LINK_PRI)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400276 pr_warn("Bearer <%s> rejected, illegal priority\n", name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100277 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700278 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100279
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500280 m_ptr = tipc_media_find(b_names.media_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100281 if (!m_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400282 pr_warn("Bearer <%s> rejected, media <%s> not registered\n",
283 name, b_names.media_name);
Ying Xue7216cd92014-04-21 10:55:48 +0800284 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100285 }
Per Liden16cb4b32006-01-13 22:22:22 +0100286
287 if (priority == TIPC_MEDIA_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100288 priority = m_ptr->priority;
289
290restart:
291 bearer_id = MAX_BEARERS;
292 with_this_prio = 1;
293 for (i = MAX_BEARERS; i-- != 0; ) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800294 b_ptr = rtnl_dereference(tn->bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800295 if (!b_ptr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100296 bearer_id = i;
297 continue;
298 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800299 if (!strcmp(name, b_ptr->name)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400300 pr_warn("Bearer <%s> rejected, already enabled\n",
301 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800302 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800304 if ((b_ptr->priority == priority) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100305 (++with_this_prio > 2)) {
306 if (priority-- == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400307 pr_warn("Bearer <%s> rejected, duplicate priority\n",
308 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800309 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310 }
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400311 pr_warn("Bearer <%s> priority adjustment required %u->%u\n",
312 name, priority + 1, priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100313 goto restart;
314 }
315 }
316 if (bearer_id >= MAX_BEARERS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400317 pr_warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
318 name, MAX_BEARERS);
Ying Xue7216cd92014-04-21 10:55:48 +0800319 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100320 }
321
Ying Xue3874ccb2014-03-27 12:54:33 +0800322 b_ptr = kzalloc(sizeof(*b_ptr), GFP_ATOMIC);
Ying Xue7216cd92014-04-21 10:55:48 +0800323 if (!b_ptr)
324 return -ENOMEM;
325
Allan Stephens2d627b92011-01-07 13:00:11 -0500326 strcpy(b_ptr->name, name);
Ying Xuee4d050c2013-12-10 20:45:43 -0800327 b_ptr->media = m_ptr;
Ying Xue7f9f95d2015-01-09 15:27:06 +0800328 res = m_ptr->enable_media(net, b_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100329 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400330 pr_warn("Bearer <%s> rejected, enable failure (%d)\n",
331 name, -res);
Ying Xue7216cd92014-04-21 10:55:48 +0800332 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100333 }
334
335 b_ptr->identity = bearer_id;
Allan Stephens5c216e12011-10-18 11:34:29 -0400336 b_ptr->tolerance = m_ptr->tolerance;
337 b_ptr->window = m_ptr->window;
Erik Hugnea21a5842014-03-28 10:32:08 +0100338 b_ptr->domain = disc_domain;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100339 b_ptr->net_plane = bearer_id + 'A';
Per Lidenb97bf3f2006-01-02 19:04:38 +0100340 b_ptr->priority = priority;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500341
Ying Xuec93d3ba2015-01-09 15:27:04 +0800342 res = tipc_disc_create(net, b_ptr, &b_ptr->bcast_addr);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500343 if (res) {
Ying Xuef2f98002015-01-09 15:27:05 +0800344 bearer_disable(net, b_ptr, false);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400345 pr_warn("Bearer <%s> rejected, discovery object creation failed\n",
346 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800347 return -EINVAL;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500348 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800349
Ying Xue7f9f95d2015-01-09 15:27:06 +0800350 rcu_assign_pointer(tn->bearer_list[bearer_id], b_ptr);
Ying Xue3874ccb2014-03-27 12:54:33 +0800351
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400352 pr_info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
353 name,
354 tipc_addr_string_fill(addr_string, disc_domain), priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100355 return res;
356}
357
358/**
Erik Hugne512137e2013-12-06 10:08:00 -0500359 * tipc_reset_bearer - Reset all links established over this bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100360 */
Ying Xuec93d3ba2015-01-09 15:27:04 +0800361static int tipc_reset_bearer(struct net *net, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100362{
Erik Hugne512137e2013-12-06 10:08:00 -0500363 pr_info("Resetting bearer <%s>\n", b_ptr->name);
Ying Xuef2f98002015-01-09 15:27:05 +0800364 tipc_link_reset_list(net, b_ptr->identity);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800365 tipc_disc_reset(net, b_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700366 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100367}
368
369/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400370 * bearer_disable
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900371 *
Ying Xue7216cd92014-04-21 10:55:48 +0800372 * Note: This routine assumes caller holds RTNL lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100373 */
Ying Xuef2f98002015-01-09 15:27:05 +0800374static void bearer_disable(struct net *net, struct tipc_bearer *b_ptr,
375 bool shutting_down)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800377 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue3874ccb2014-03-27 12:54:33 +0800378 u32 i;
379
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400380 pr_info("Disabling bearer <%s>\n", b_ptr->name);
Ying Xue4babbaa2013-10-18 07:23:17 +0200381 b_ptr->media->disable_media(b_ptr);
Ying Xuea8304522014-02-13 17:29:17 -0500382
Ying Xuef2f98002015-01-09 15:27:05 +0800383 tipc_link_delete_list(net, b_ptr->identity, shutting_down);
Ying Xuea8304522014-02-13 17:29:17 -0500384 if (b_ptr->link_req)
385 tipc_disc_delete(b_ptr->link_req);
Ying Xue3874ccb2014-03-27 12:54:33 +0800386
387 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800388 if (b_ptr == rtnl_dereference(tn->bearer_list[i])) {
389 RCU_INIT_POINTER(tn->bearer_list[i], NULL);
Ying Xue3874ccb2014-03-27 12:54:33 +0800390 break;
391 }
392 }
Ying Xuef8322df2014-04-21 10:55:45 +0800393 kfree_rcu(b_ptr, rcu);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100394}
395
Ying Xue7f9f95d2015-01-09 15:27:06 +0800396int tipc_enable_l2_media(struct net *net, struct tipc_bearer *b)
Ying Xuee4d050c2013-12-10 20:45:43 -0800397{
398 struct net_device *dev;
399 char *driver_name = strchr((const char *)b->name, ':') + 1;
400
401 /* Find device with specified name */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800402 dev = dev_get_by_name(net, driver_name);
Ying Xuee4d050c2013-12-10 20:45:43 -0800403 if (!dev)
404 return -ENODEV;
405
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400406 /* Associate TIPC bearer with L2 bearer */
Ying Xue2231c5a2014-04-21 10:55:47 +0800407 rcu_assign_pointer(b->media_ptr, dev);
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400408 memset(&b->bcast_addr, 0, sizeof(b->bcast_addr));
Ying Xuee4d050c2013-12-10 20:45:43 -0800409 memcpy(b->bcast_addr.value, dev->broadcast, b->media->hwaddr_len);
410 b->bcast_addr.media_id = b->media->type_id;
411 b->bcast_addr.broadcast = 1;
412 b->mtu = dev->mtu;
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400413 b->media->raw2addr(b, &b->addr, (char *)dev->dev_addr);
Ying Xuee4d050c2013-12-10 20:45:43 -0800414 rcu_assign_pointer(dev->tipc_ptr, b);
415 return 0;
416}
417
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400418/* tipc_disable_l2_media - detach TIPC bearer from an L2 interface
Ying Xuee4d050c2013-12-10 20:45:43 -0800419 *
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400420 * Mark L2 bearer as inactive so that incoming buffers are thrown away,
Ying Xuee4d050c2013-12-10 20:45:43 -0800421 * then get worker thread to complete bearer cleanup. (Can't do cleanup
422 * here because cleanup code needs to sleep and caller holds spinlocks.)
423 */
424void tipc_disable_l2_media(struct tipc_bearer *b)
425{
Ying Xue2231c5a2014-04-21 10:55:47 +0800426 struct net_device *dev;
427
428 dev = (struct net_device *)rtnl_dereference(b->media_ptr);
429 RCU_INIT_POINTER(b->media_ptr, NULL);
Ying Xuee4d050c2013-12-10 20:45:43 -0800430 RCU_INIT_POINTER(dev->tipc_ptr, NULL);
Ying Xuef1c8d8c2014-04-21 10:55:49 +0800431 synchronize_net();
Ying Xuee4d050c2013-12-10 20:45:43 -0800432 dev_put(dev);
433}
434
435/**
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400436 * tipc_l2_send_msg - send a TIPC packet out over an L2 interface
Ying Xuee4d050c2013-12-10 20:45:43 -0800437 * @buf: the packet to be sent
stephen hemminger963a18552014-01-12 12:48:00 -0800438 * @b_ptr: the bearer through which the packet is to be sent
Ying Xuee4d050c2013-12-10 20:45:43 -0800439 * @dest: peer destination address
440 */
Ying Xue1da46562015-01-09 15:27:07 +0800441int tipc_l2_send_msg(struct net *net, struct sk_buff *buf,
442 struct tipc_bearer *b, struct tipc_media_addr *dest)
Ying Xuee4d050c2013-12-10 20:45:43 -0800443{
444 struct sk_buff *clone;
Ying Xue2231c5a2014-04-21 10:55:47 +0800445 struct net_device *dev;
Ying Xuee4d050c2013-12-10 20:45:43 -0800446 int delta;
Ying Xue2231c5a2014-04-21 10:55:47 +0800447
448 dev = (struct net_device *)rcu_dereference_rtnl(b->media_ptr);
449 if (!dev)
450 return 0;
Ying Xuee4d050c2013-12-10 20:45:43 -0800451
452 clone = skb_clone(buf, GFP_ATOMIC);
453 if (!clone)
454 return 0;
455
456 delta = dev->hard_header_len - skb_headroom(buf);
457 if ((delta > 0) &&
458 pskb_expand_head(clone, SKB_DATA_ALIGN(delta), 0, GFP_ATOMIC)) {
459 kfree_skb(clone);
460 return 0;
461 }
462
463 skb_reset_network_header(clone);
464 clone->dev = dev;
465 clone->protocol = htons(ETH_P_TIPC);
466 dev_hard_header(clone, dev, ETH_P_TIPC, dest->value,
467 dev->dev_addr, clone->len);
468 dev_queue_xmit(clone);
469 return 0;
470}
471
472/* tipc_bearer_send- sends buffer to destination over bearer
473 *
474 * IMPORTANT:
475 * The media send routine must not alter the buffer being passed in
476 * as it may be needed for later retransmission!
477 */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800478void tipc_bearer_send(struct net *net, u32 bearer_id, struct sk_buff *buf,
Ying Xuee4d050c2013-12-10 20:45:43 -0800479 struct tipc_media_addr *dest)
480{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800481 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800482 struct tipc_bearer *b_ptr;
483
484 rcu_read_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800485 b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800486 if (likely(b_ptr))
Ying Xue1da46562015-01-09 15:27:07 +0800487 b_ptr->media->send_msg(net, buf, b_ptr, dest);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800488 rcu_read_unlock();
Ying Xuee4d050c2013-12-10 20:45:43 -0800489}
490
Ying Xue6e967ad2013-12-10 20:45:42 -0800491/**
492 * tipc_l2_rcv_msg - handle incoming TIPC message from an interface
493 * @buf: the received packet
494 * @dev: the net device that the packet was received on
495 * @pt: the packet_type structure which was used to register this handler
496 * @orig_dev: the original receive net device in case the device is a bond
497 *
498 * Accept only packets explicitly sent to this node, or broadcast packets;
499 * ignores packets sent using interface multicast, and traffic sent to other
500 * nodes (which can happen if interface is running in promiscuous mode).
501 */
502static int tipc_l2_rcv_msg(struct sk_buff *buf, struct net_device *dev,
503 struct packet_type *pt, struct net_device *orig_dev)
504{
505 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100506
Ying Xue6e967ad2013-12-10 20:45:42 -0800507 rcu_read_lock();
Ying Xueca07fb02014-04-21 10:55:43 +0800508 b_ptr = rcu_dereference_rtnl(dev->tipc_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800509 if (likely(b_ptr)) {
510 if (likely(buf->pkt_type <= PACKET_BROADCAST)) {
511 buf->next = NULL;
Ying Xuec93d3ba2015-01-09 15:27:04 +0800512 tipc_rcv(dev_net(dev), buf, b_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800513 rcu_read_unlock();
514 return NET_RX_SUCCESS;
515 }
516 }
517 rcu_read_unlock();
518
519 kfree_skb(buf);
520 return NET_RX_DROP;
521}
522
523/**
524 * tipc_l2_device_event - handle device events from network device
525 * @nb: the context of the notification
526 * @evt: the type of event
527 * @ptr: the net device that the event was on
528 *
529 * This function is called by the Ethernet driver in case of link
530 * change event.
531 */
532static int tipc_l2_device_event(struct notifier_block *nb, unsigned long evt,
533 void *ptr)
534{
Ying Xue6e967ad2013-12-10 20:45:42 -0800535 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800536 struct net *net = dev_net(dev);
537 struct tipc_bearer *b_ptr;
Ying Xue6e967ad2013-12-10 20:45:42 -0800538
Ying Xueca07fb02014-04-21 10:55:43 +0800539 b_ptr = rtnl_dereference(dev->tipc_ptr);
540 if (!b_ptr)
Ying Xue6e967ad2013-12-10 20:45:42 -0800541 return NOTIFY_DONE;
Ying Xue6e967ad2013-12-10 20:45:42 -0800542
543 b_ptr->mtu = dev->mtu;
544
545 switch (evt) {
546 case NETDEV_CHANGE:
547 if (netif_carrier_ok(dev))
548 break;
549 case NETDEV_DOWN:
550 case NETDEV_CHANGEMTU:
Ying Xuec93d3ba2015-01-09 15:27:04 +0800551 tipc_reset_bearer(net, b_ptr);
Erik Hugnea21a5842014-03-28 10:32:08 +0100552 break;
Ying Xue6e967ad2013-12-10 20:45:42 -0800553 case NETDEV_CHANGEADDR:
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400554 b_ptr->media->raw2addr(b_ptr, &b_ptr->addr,
Erik Hugnea21a5842014-03-28 10:32:08 +0100555 (char *)dev->dev_addr);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800556 tipc_reset_bearer(net, b_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800557 break;
558 case NETDEV_UNREGISTER:
559 case NETDEV_CHANGENAME:
Ying Xuef2f98002015-01-09 15:27:05 +0800560 bearer_disable(dev_net(dev), b_ptr, false);
Ying Xue6e967ad2013-12-10 20:45:42 -0800561 break;
562 }
Ying Xue6e967ad2013-12-10 20:45:42 -0800563 return NOTIFY_OK;
564}
565
566static struct packet_type tipc_packet_type __read_mostly = {
Joe Perches184593c2014-03-12 10:04:20 -0700567 .type = htons(ETH_P_TIPC),
Ying Xue6e967ad2013-12-10 20:45:42 -0800568 .func = tipc_l2_rcv_msg,
569};
570
571static struct notifier_block notifier = {
572 .notifier_call = tipc_l2_device_event,
573 .priority = 0,
574};
575
576int tipc_bearer_setup(void)
577{
Ying Xue970122f2014-02-20 11:32:50 +0800578 int err;
579
580 err = register_netdevice_notifier(&notifier);
581 if (err)
582 return err;
Ying Xue6e967ad2013-12-10 20:45:42 -0800583 dev_add_pack(&tipc_packet_type);
Ying Xue970122f2014-02-20 11:32:50 +0800584 return 0;
Ying Xue6e967ad2013-12-10 20:45:42 -0800585}
586
587void tipc_bearer_cleanup(void)
588{
589 unregister_netdevice_notifier(&notifier);
590 dev_remove_pack(&tipc_packet_type);
591}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100592
Ying Xuef2f98002015-01-09 15:27:05 +0800593void tipc_bearer_stop(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100594{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800595 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue3874ccb2014-03-27 12:54:33 +0800596 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100597 u32 i;
598
Per Lidenb97bf3f2006-01-02 19:04:38 +0100599 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800600 b_ptr = rtnl_dereference(tn->bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800601 if (b_ptr) {
Ying Xuef2f98002015-01-09 15:27:05 +0800602 bearer_disable(net, b_ptr, true);
Ying Xue7f9f95d2015-01-09 15:27:06 +0800603 tn->bearer_list[i] = NULL;
Ying Xue3874ccb2014-03-27 12:54:33 +0800604 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100605 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100606}
Richard Alpe0655f6a2014-11-20 10:29:07 +0100607
Richard Alpe35b9dd72014-11-20 10:29:08 +0100608/* Caller should hold rtnl_lock to protect the bearer */
Richard Alped8182802014-11-24 11:10:29 +0100609static int __tipc_nl_add_bearer(struct tipc_nl_msg *msg,
610 struct tipc_bearer *bearer)
Richard Alpe35b9dd72014-11-20 10:29:08 +0100611{
612 void *hdr;
613 struct nlattr *attrs;
614 struct nlattr *prop;
615
Richard Alpebfb3e5d2015-02-09 09:50:03 +0100616 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Richard Alpe35b9dd72014-11-20 10:29:08 +0100617 NLM_F_MULTI, TIPC_NL_BEARER_GET);
618 if (!hdr)
619 return -EMSGSIZE;
620
621 attrs = nla_nest_start(msg->skb, TIPC_NLA_BEARER);
622 if (!attrs)
623 goto msg_full;
624
625 if (nla_put_string(msg->skb, TIPC_NLA_BEARER_NAME, bearer->name))
626 goto attr_msg_full;
627
628 prop = nla_nest_start(msg->skb, TIPC_NLA_BEARER_PROP);
629 if (!prop)
630 goto prop_msg_full;
631 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, bearer->priority))
632 goto prop_msg_full;
633 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, bearer->tolerance))
634 goto prop_msg_full;
635 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, bearer->window))
636 goto prop_msg_full;
637
638 nla_nest_end(msg->skb, prop);
639 nla_nest_end(msg->skb, attrs);
640 genlmsg_end(msg->skb, hdr);
641
642 return 0;
643
644prop_msg_full:
645 nla_nest_cancel(msg->skb, prop);
646attr_msg_full:
647 nla_nest_cancel(msg->skb, attrs);
648msg_full:
649 genlmsg_cancel(msg->skb, hdr);
650
651 return -EMSGSIZE;
652}
653
654int tipc_nl_bearer_dump(struct sk_buff *skb, struct netlink_callback *cb)
655{
656 int err;
657 int i = cb->args[0];
658 struct tipc_bearer *bearer;
659 struct tipc_nl_msg msg;
Ying Xue7f9f95d2015-01-09 15:27:06 +0800660 struct net *net = sock_net(skb->sk);
661 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100662
663 if (i == MAX_BEARERS)
664 return 0;
665
666 msg.skb = skb;
667 msg.portid = NETLINK_CB(cb->skb).portid;
668 msg.seq = cb->nlh->nlmsg_seq;
669
670 rtnl_lock();
671 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800672 bearer = rtnl_dereference(tn->bearer_list[i]);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100673 if (!bearer)
674 continue;
675
676 err = __tipc_nl_add_bearer(&msg, bearer);
677 if (err)
678 break;
679 }
680 rtnl_unlock();
681
682 cb->args[0] = i;
683 return skb->len;
684}
685
686int tipc_nl_bearer_get(struct sk_buff *skb, struct genl_info *info)
687{
688 int err;
689 char *name;
690 struct sk_buff *rep;
691 struct tipc_bearer *bearer;
692 struct tipc_nl_msg msg;
693 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Ying Xue7f9f95d2015-01-09 15:27:06 +0800694 struct net *net = genl_info_net(info);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100695
696 if (!info->attrs[TIPC_NLA_BEARER])
697 return -EINVAL;
698
699 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
700 info->attrs[TIPC_NLA_BEARER],
701 tipc_nl_bearer_policy);
702 if (err)
703 return err;
704
705 if (!attrs[TIPC_NLA_BEARER_NAME])
706 return -EINVAL;
707 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
708
709 rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
710 if (!rep)
711 return -ENOMEM;
712
713 msg.skb = rep;
714 msg.portid = info->snd_portid;
715 msg.seq = info->snd_seq;
716
717 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800718 bearer = tipc_bearer_find(net, name);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100719 if (!bearer) {
720 err = -EINVAL;
721 goto err_out;
722 }
723
724 err = __tipc_nl_add_bearer(&msg, bearer);
725 if (err)
726 goto err_out;
727 rtnl_unlock();
728
729 return genlmsg_reply(rep, info);
730err_out:
731 rtnl_unlock();
732 nlmsg_free(rep);
733
734 return err;
735}
736
Richard Alpe0655f6a2014-11-20 10:29:07 +0100737int tipc_nl_bearer_disable(struct sk_buff *skb, struct genl_info *info)
738{
739 int err;
740 char *name;
741 struct tipc_bearer *bearer;
742 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Richard Alpe9ab15462015-02-09 09:50:05 +0100743 struct net *net = sock_net(skb->sk);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100744
745 if (!info->attrs[TIPC_NLA_BEARER])
746 return -EINVAL;
747
748 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
749 info->attrs[TIPC_NLA_BEARER],
750 tipc_nl_bearer_policy);
751 if (err)
752 return err;
753
754 if (!attrs[TIPC_NLA_BEARER_NAME])
755 return -EINVAL;
756
757 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
758
759 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800760 bearer = tipc_bearer_find(net, name);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100761 if (!bearer) {
762 rtnl_unlock();
763 return -EINVAL;
764 }
765
Ying Xuef2f98002015-01-09 15:27:05 +0800766 bearer_disable(net, bearer, false);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100767 rtnl_unlock();
768
769 return 0;
770}
771
772int tipc_nl_bearer_enable(struct sk_buff *skb, struct genl_info *info)
773{
774 int err;
775 char *bearer;
776 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Richard Alpe9ab15462015-02-09 09:50:05 +0100777 struct net *net = sock_net(skb->sk);
778 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100779 u32 domain;
780 u32 prio;
781
782 prio = TIPC_MEDIA_LINK_PRI;
Ying Xue34747532015-01-09 15:27:10 +0800783 domain = tn->own_addr & TIPC_CLUSTER_MASK;
Richard Alpe0655f6a2014-11-20 10:29:07 +0100784
785 if (!info->attrs[TIPC_NLA_BEARER])
786 return -EINVAL;
787
788 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
789 info->attrs[TIPC_NLA_BEARER],
790 tipc_nl_bearer_policy);
791 if (err)
792 return err;
793
794 if (!attrs[TIPC_NLA_BEARER_NAME])
795 return -EINVAL;
796
797 bearer = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
798
799 if (attrs[TIPC_NLA_BEARER_DOMAIN])
800 domain = nla_get_u32(attrs[TIPC_NLA_BEARER_DOMAIN]);
801
802 if (attrs[TIPC_NLA_BEARER_PROP]) {
803 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
804
805 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
806 props);
807 if (err)
808 return err;
809
810 if (props[TIPC_NLA_PROP_PRIO])
811 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
812 }
813
814 rtnl_lock();
Ying Xuec93d3ba2015-01-09 15:27:04 +0800815 err = tipc_enable_bearer(net, bearer, domain, prio);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100816 if (err) {
817 rtnl_unlock();
818 return err;
819 }
820 rtnl_unlock();
821
822 return 0;
823}
Richard Alpe315c00b2014-11-20 10:29:09 +0100824
825int tipc_nl_bearer_set(struct sk_buff *skb, struct genl_info *info)
826{
827 int err;
828 char *name;
829 struct tipc_bearer *b;
830 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Ying Xue7f9f95d2015-01-09 15:27:06 +0800831 struct net *net = genl_info_net(info);
Richard Alpe315c00b2014-11-20 10:29:09 +0100832
833 if (!info->attrs[TIPC_NLA_BEARER])
834 return -EINVAL;
835
836 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
837 info->attrs[TIPC_NLA_BEARER],
838 tipc_nl_bearer_policy);
839 if (err)
840 return err;
841
842 if (!attrs[TIPC_NLA_BEARER_NAME])
843 return -EINVAL;
844 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
845
846 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800847 b = tipc_bearer_find(net, name);
Richard Alpe315c00b2014-11-20 10:29:09 +0100848 if (!b) {
849 rtnl_unlock();
850 return -EINVAL;
851 }
852
853 if (attrs[TIPC_NLA_BEARER_PROP]) {
854 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
855
856 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
857 props);
858 if (err) {
859 rtnl_unlock();
860 return err;
861 }
862
863 if (props[TIPC_NLA_PROP_TOL])
864 b->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
865 if (props[TIPC_NLA_PROP_PRIO])
866 b->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
867 if (props[TIPC_NLA_PROP_WIN])
868 b->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
869 }
870 rtnl_unlock();
871
872 return 0;
873}
Richard Alpe46f15c62014-11-20 10:29:15 +0100874
Richard Alped8182802014-11-24 11:10:29 +0100875static int __tipc_nl_add_media(struct tipc_nl_msg *msg,
876 struct tipc_media *media)
Richard Alpe46f15c62014-11-20 10:29:15 +0100877{
878 void *hdr;
879 struct nlattr *attrs;
880 struct nlattr *prop;
881
Richard Alpebfb3e5d2015-02-09 09:50:03 +0100882 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Richard Alpe46f15c62014-11-20 10:29:15 +0100883 NLM_F_MULTI, TIPC_NL_MEDIA_GET);
884 if (!hdr)
885 return -EMSGSIZE;
886
887 attrs = nla_nest_start(msg->skb, TIPC_NLA_MEDIA);
888 if (!attrs)
889 goto msg_full;
890
891 if (nla_put_string(msg->skb, TIPC_NLA_MEDIA_NAME, media->name))
892 goto attr_msg_full;
893
894 prop = nla_nest_start(msg->skb, TIPC_NLA_MEDIA_PROP);
895 if (!prop)
896 goto prop_msg_full;
897 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, media->priority))
898 goto prop_msg_full;
899 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, media->tolerance))
900 goto prop_msg_full;
901 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, media->window))
902 goto prop_msg_full;
903
904 nla_nest_end(msg->skb, prop);
905 nla_nest_end(msg->skb, attrs);
906 genlmsg_end(msg->skb, hdr);
907
908 return 0;
909
910prop_msg_full:
911 nla_nest_cancel(msg->skb, prop);
912attr_msg_full:
913 nla_nest_cancel(msg->skb, attrs);
914msg_full:
915 genlmsg_cancel(msg->skb, hdr);
916
917 return -EMSGSIZE;
918}
919
920int tipc_nl_media_dump(struct sk_buff *skb, struct netlink_callback *cb)
921{
922 int err;
923 int i = cb->args[0];
924 struct tipc_nl_msg msg;
925
926 if (i == MAX_MEDIA)
927 return 0;
928
929 msg.skb = skb;
930 msg.portid = NETLINK_CB(cb->skb).portid;
931 msg.seq = cb->nlh->nlmsg_seq;
932
933 rtnl_lock();
934 for (; media_info_array[i] != NULL; i++) {
935 err = __tipc_nl_add_media(&msg, media_info_array[i]);
936 if (err)
937 break;
938 }
939 rtnl_unlock();
940
941 cb->args[0] = i;
942 return skb->len;
943}
944
945int tipc_nl_media_get(struct sk_buff *skb, struct genl_info *info)
946{
947 int err;
948 char *name;
949 struct tipc_nl_msg msg;
950 struct tipc_media *media;
951 struct sk_buff *rep;
952 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
953
954 if (!info->attrs[TIPC_NLA_MEDIA])
955 return -EINVAL;
956
957 err = nla_parse_nested(attrs, TIPC_NLA_MEDIA_MAX,
958 info->attrs[TIPC_NLA_MEDIA],
959 tipc_nl_media_policy);
960 if (err)
961 return err;
962
963 if (!attrs[TIPC_NLA_MEDIA_NAME])
964 return -EINVAL;
965 name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
966
967 rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
968 if (!rep)
969 return -ENOMEM;
970
971 msg.skb = rep;
972 msg.portid = info->snd_portid;
973 msg.seq = info->snd_seq;
974
975 rtnl_lock();
976 media = tipc_media_find(name);
977 if (!media) {
978 err = -EINVAL;
979 goto err_out;
980 }
981
982 err = __tipc_nl_add_media(&msg, media);
983 if (err)
984 goto err_out;
985 rtnl_unlock();
986
987 return genlmsg_reply(rep, info);
988err_out:
989 rtnl_unlock();
990 nlmsg_free(rep);
991
992 return err;
993}
Richard Alpe1e554172014-11-20 10:29:16 +0100994
995int tipc_nl_media_set(struct sk_buff *skb, struct genl_info *info)
996{
997 int err;
998 char *name;
999 struct tipc_media *m;
1000 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
1001
1002 if (!info->attrs[TIPC_NLA_MEDIA])
1003 return -EINVAL;
1004
1005 err = nla_parse_nested(attrs, TIPC_NLA_MEDIA_MAX,
1006 info->attrs[TIPC_NLA_MEDIA],
1007 tipc_nl_media_policy);
1008
1009 if (!attrs[TIPC_NLA_MEDIA_NAME])
1010 return -EINVAL;
1011 name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
1012
1013 rtnl_lock();
1014 m = tipc_media_find(name);
1015 if (!m) {
1016 rtnl_unlock();
1017 return -EINVAL;
1018 }
1019
1020 if (attrs[TIPC_NLA_MEDIA_PROP]) {
1021 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
1022
1023 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_MEDIA_PROP],
1024 props);
1025 if (err) {
1026 rtnl_unlock();
1027 return err;
1028 }
1029
1030 if (props[TIPC_NLA_PROP_TOL])
1031 m->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
1032 if (props[TIPC_NLA_PROP_PRIO])
1033 m->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1034 if (props[TIPC_NLA_PROP_WIN])
1035 m->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
1036 }
1037 rtnl_unlock();
1038
1039 return 0;
1040}