blob: 48852c2dcc033585a733c73fc5646834f9d458e8 [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"
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"
Ying Xue1da46562015-01-09 15:27:07 +080042#include "bcast.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010043
Patrick McHardya29a1942013-04-17 06:18:28 +000044#define MAX_ADDR_STR 60
Per Lidenb97bf3f2006-01-02 19:04:38 +010045
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080046static struct tipc_media * const media_info_array[] = {
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080047 &eth_media_info,
48#ifdef CONFIG_TIPC_MEDIA_IB
49 &ib_media_info,
50#endif
51 NULL
52};
Per Lidenb97bf3f2006-01-02 19:04:38 +010053
Richard Alpe0655f6a2014-11-20 10:29:07 +010054static const struct nla_policy
55tipc_nl_bearer_policy[TIPC_NLA_BEARER_MAX + 1] = {
56 [TIPC_NLA_BEARER_UNSPEC] = { .type = NLA_UNSPEC },
57 [TIPC_NLA_BEARER_NAME] = {
58 .type = NLA_STRING,
59 .len = TIPC_MAX_BEARER_NAME
60 },
61 [TIPC_NLA_BEARER_PROP] = { .type = NLA_NESTED },
62 [TIPC_NLA_BEARER_DOMAIN] = { .type = NLA_U32 }
63};
64
Richard Alpe46f15c62014-11-20 10:29:15 +010065static const struct nla_policy tipc_nl_media_policy[TIPC_NLA_MEDIA_MAX + 1] = {
66 [TIPC_NLA_MEDIA_UNSPEC] = { .type = NLA_UNSPEC },
67 [TIPC_NLA_MEDIA_NAME] = { .type = NLA_STRING },
68 [TIPC_NLA_MEDIA_PROP] = { .type = NLA_NESTED }
69};
70
Ying Xuef2f98002015-01-09 15:27:05 +080071static void bearer_disable(struct net *net, struct tipc_bearer *b_ptr,
72 bool shutting_down);
Allan Stephens3a777ff2011-04-21 13:58:26 -050073
Per Lidenb97bf3f2006-01-02 19:04:38 +010074/**
Allan Stephens5c216e12011-10-18 11:34:29 -040075 * tipc_media_find - locates specified media object by name
Per Lidenb97bf3f2006-01-02 19:04:38 +010076 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050077struct tipc_media *tipc_media_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +010078{
Per Lidenb97bf3f2006-01-02 19:04:38 +010079 u32 i;
80
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080081 for (i = 0; media_info_array[i] != NULL; i++) {
82 if (!strcmp(media_info_array[i]->name, name))
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080083 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +010084 }
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080085 return media_info_array[i];
Per Lidenb97bf3f2006-01-02 19:04:38 +010086}
87
88/**
Allan Stephensc79be452011-10-06 16:40:55 -040089 * media_find_id - locates specified media object by type identifier
90 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050091static struct tipc_media *media_find_id(u8 type)
Allan Stephensc79be452011-10-06 16:40:55 -040092{
93 u32 i;
94
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080095 for (i = 0; media_info_array[i] != NULL; i++) {
96 if (media_info_array[i]->type_id == type)
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080097 break;
Allan Stephensc79be452011-10-06 16:40:55 -040098 }
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080099 return media_info_array[i];
Per Lidenb97bf3f2006-01-02 19:04:38 +0100100}
101
102/**
Per Liden4323add2006-01-18 00:38:21 +0100103 * tipc_media_addr_printf - record media address in print buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100104 */
Erik Hugnedc1aed32012-06-29 00:50:23 -0400105void tipc_media_addr_printf(char *buf, int len, struct tipc_media_addr *a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100106{
Allan Stephensc61b6662011-10-07 11:31:49 -0400107 char addr_str[MAX_ADDR_STR];
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500108 struct tipc_media *m_ptr;
Erik Hugnedc1aed32012-06-29 00:50:23 -0400109 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100110
Allan Stephens3d749a62011-10-07 15:19:11 -0400111 m_ptr = media_find_id(a->media_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100112
Allan Stephensc61b6662011-10-07 11:31:49 -0400113 if (m_ptr && !m_ptr->addr2str(a, addr_str, sizeof(addr_str)))
Richard Alpe941787b2015-02-09 09:50:19 +0100114 ret = scnprintf(buf, len, "%s(%s)", m_ptr->name, addr_str);
Allan Stephensc61b6662011-10-07 11:31:49 -0400115 else {
Allan Stephensc61b6662011-10-07 11:31:49 -0400116 u32 i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100117
Richard Alpe941787b2015-02-09 09:50:19 +0100118 ret = scnprintf(buf, len, "UNKNOWN(%u)", a->media_id);
Allan Stephens3d749a62011-10-07 15:19:11 -0400119 for (i = 0; i < sizeof(a->value); i++)
Richard Alpe941787b2015-02-09 09:50:19 +0100120 ret += scnprintf(buf - ret, len + ret,
Erik Hugnedc1aed32012-06-29 00:50:23 -0400121 "-%02x", a->value[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122 }
123}
124
125/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100126 * bearer_name_validate - validate & (optionally) deconstruct bearer name
Ben Hutchings2c530402012-07-10 10:55:09 +0000127 * @name: ptr to bearer name string
128 * @name_parts: ptr to area for bearer name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900129 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100130 * Returns 1 if bearer name is valid, otherwise 0.
131 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900132static int bearer_name_validate(const char *name,
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500133 struct tipc_bearer_names *name_parts)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100134{
135 char name_copy[TIPC_MAX_BEARER_NAME];
136 char *media_name;
137 char *if_name;
138 u32 media_len;
139 u32 if_len;
140
141 /* copy bearer name & ensure length is OK */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100142 name_copy[TIPC_MAX_BEARER_NAME - 1] = 0;
143 /* need above in case non-Posix strncpy() doesn't pad with nulls */
144 strncpy(name_copy, name, TIPC_MAX_BEARER_NAME);
145 if (name_copy[TIPC_MAX_BEARER_NAME - 1] != 0)
146 return 0;
147
148 /* ensure all component parts of bearer name are present */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100149 media_name = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000150 if_name = strchr(media_name, ':');
151 if (if_name == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100152 return 0;
153 *(if_name++) = 0;
154 media_len = if_name - media_name;
155 if_len = strlen(if_name) + 1;
156
157 /* validate component parts of bearer name */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900158 if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) ||
Ying Xuefc073932012-08-16 12:09:08 +0000159 (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100160 return 0;
161
162 /* return bearer name components, if necessary */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100163 if (name_parts) {
164 strcpy(name_parts->media_name, media_name);
165 strcpy(name_parts->if_name, if_name);
166 }
167 return 1;
168}
169
170/**
Allan Stephens5c216e12011-10-18 11:34:29 -0400171 * tipc_bearer_find - locates bearer object with matching bearer name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100172 */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800173struct tipc_bearer *tipc_bearer_find(struct net *net, const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100174{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800175 struct tipc_net *tn = net_generic(net, tipc_net_id);
Allan Stephens2d627b92011-01-07 13:00:11 -0500176 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100177 u32 i;
178
Ying Xue3874ccb2014-03-27 12:54:33 +0800179 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800180 b_ptr = rtnl_dereference(tn->bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800181 if (b_ptr && (!strcmp(b_ptr->name, name)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100182 return b_ptr;
183 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800184 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100185}
186
Ying Xue7f9f95d2015-01-09 15:27:06 +0800187void tipc_bearer_add_dest(struct net *net, u32 bearer_id, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100188{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800189 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800190 struct tipc_bearer *b_ptr;
191
192 rcu_read_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800193 b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800194 if (b_ptr) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800195 tipc_bcbearer_sort(net, &b_ptr->nodes, dest, true);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800196 tipc_disc_add_dest(b_ptr->link_req);
197 }
198 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100199}
200
Ying Xue7f9f95d2015-01-09 15:27:06 +0800201void tipc_bearer_remove_dest(struct net *net, u32 bearer_id, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100202{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800203 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800204 struct tipc_bearer *b_ptr;
205
206 rcu_read_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800207 b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800208 if (b_ptr) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800209 tipc_bcbearer_sort(net, &b_ptr->nodes, dest, false);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800210 tipc_disc_remove_dest(b_ptr->link_req);
211 }
212 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100213}
214
Allan Stephensb274f4a2010-05-11 14:30:16 +0000215/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100216 * tipc_enable_bearer - enable bearer with the given name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900217 */
Richard Alpe9ab15462015-02-09 09:50:05 +0100218static int tipc_enable_bearer(struct net *net, const char *name,
219 u32 disc_domain, u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100220{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800221 struct tipc_net *tn = net_generic(net, tipc_net_id);
Allan Stephens2d627b92011-01-07 13:00:11 -0500222 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500223 struct tipc_media *m_ptr;
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500224 struct tipc_bearer_names b_names;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100225 char addr_string[16];
226 u32 bearer_id;
227 u32 with_this_prio;
228 u32 i;
229 int res = -EINVAL;
230
Ying Xue34747532015-01-09 15:27:10 +0800231 if (!tn->own_addr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400232 pr_warn("Bearer <%s> rejected, not supported in standalone mode\n",
233 name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100234 return -ENOPROTOOPT;
Allan Stephensa10bd922006-06-25 23:52:17 -0700235 }
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500236 if (!bearer_name_validate(name, &b_names)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400237 pr_warn("Bearer <%s> rejected, illegal name\n", name);
Per Liden16cb4b32006-01-13 22:22:22 +0100238 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700239 }
Allan Stephens66e019a2011-04-20 16:24:07 -0500240 if (tipc_addr_domain_valid(disc_domain) &&
Ying Xue34747532015-01-09 15:27:10 +0800241 (disc_domain != tn->own_addr)) {
242 if (tipc_in_scope(disc_domain, tn->own_addr)) {
243 disc_domain = tn->own_addr & TIPC_CLUSTER_MASK;
Allan Stephens66e019a2011-04-20 16:24:07 -0500244 res = 0; /* accept any node in own cluster */
Ying Xue34747532015-01-09 15:27:10 +0800245 } else if (in_own_cluster_exact(net, disc_domain))
Allan Stephens66e019a2011-04-20 16:24:07 -0500246 res = 0; /* accept specified node in own cluster */
247 }
248 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400249 pr_warn("Bearer <%s> rejected, illegal discovery domain\n",
250 name);
Allan Stephensa10bd922006-06-25 23:52:17 -0700251 return -EINVAL;
252 }
Allan Stephens9efde4a2011-11-03 13:15:10 -0400253 if ((priority > TIPC_MAX_LINK_PRI) &&
Allan Stephensa10bd922006-06-25 23:52:17 -0700254 (priority != TIPC_MEDIA_LINK_PRI)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400255 pr_warn("Bearer <%s> rejected, illegal priority\n", name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100256 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700257 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500259 m_ptr = tipc_media_find(b_names.media_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100260 if (!m_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400261 pr_warn("Bearer <%s> rejected, media <%s> not registered\n",
262 name, b_names.media_name);
Ying Xue7216cd92014-04-21 10:55:48 +0800263 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100264 }
Per Liden16cb4b32006-01-13 22:22:22 +0100265
266 if (priority == TIPC_MEDIA_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100267 priority = m_ptr->priority;
268
269restart:
270 bearer_id = MAX_BEARERS;
271 with_this_prio = 1;
272 for (i = MAX_BEARERS; i-- != 0; ) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800273 b_ptr = rtnl_dereference(tn->bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800274 if (!b_ptr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100275 bearer_id = i;
276 continue;
277 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800278 if (!strcmp(name, b_ptr->name)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400279 pr_warn("Bearer <%s> rejected, already enabled\n",
280 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800281 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100282 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800283 if ((b_ptr->priority == priority) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100284 (++with_this_prio > 2)) {
285 if (priority-- == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400286 pr_warn("Bearer <%s> rejected, duplicate priority\n",
287 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800288 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100289 }
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400290 pr_warn("Bearer <%s> priority adjustment required %u->%u\n",
291 name, priority + 1, priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100292 goto restart;
293 }
294 }
295 if (bearer_id >= MAX_BEARERS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400296 pr_warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
297 name, MAX_BEARERS);
Ying Xue7216cd92014-04-21 10:55:48 +0800298 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100299 }
300
Ying Xue3874ccb2014-03-27 12:54:33 +0800301 b_ptr = kzalloc(sizeof(*b_ptr), GFP_ATOMIC);
Ying Xue7216cd92014-04-21 10:55:48 +0800302 if (!b_ptr)
303 return -ENOMEM;
304
Allan Stephens2d627b92011-01-07 13:00:11 -0500305 strcpy(b_ptr->name, name);
Ying Xuee4d050c2013-12-10 20:45:43 -0800306 b_ptr->media = m_ptr;
Ying Xue7f9f95d2015-01-09 15:27:06 +0800307 res = m_ptr->enable_media(net, b_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100308 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400309 pr_warn("Bearer <%s> rejected, enable failure (%d)\n",
310 name, -res);
Ying Xue7216cd92014-04-21 10:55:48 +0800311 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100312 }
313
314 b_ptr->identity = bearer_id;
Allan Stephens5c216e12011-10-18 11:34:29 -0400315 b_ptr->tolerance = m_ptr->tolerance;
316 b_ptr->window = m_ptr->window;
Erik Hugnea21a5842014-03-28 10:32:08 +0100317 b_ptr->domain = disc_domain;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100318 b_ptr->net_plane = bearer_id + 'A';
Per Lidenb97bf3f2006-01-02 19:04:38 +0100319 b_ptr->priority = priority;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500320
Ying Xuec93d3ba2015-01-09 15:27:04 +0800321 res = tipc_disc_create(net, b_ptr, &b_ptr->bcast_addr);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500322 if (res) {
Ying Xuef2f98002015-01-09 15:27:05 +0800323 bearer_disable(net, b_ptr, false);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400324 pr_warn("Bearer <%s> rejected, discovery object creation failed\n",
325 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800326 return -EINVAL;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500327 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800328
Ying Xue7f9f95d2015-01-09 15:27:06 +0800329 rcu_assign_pointer(tn->bearer_list[bearer_id], b_ptr);
Ying Xue3874ccb2014-03-27 12:54:33 +0800330
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400331 pr_info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
332 name,
333 tipc_addr_string_fill(addr_string, disc_domain), priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100334 return res;
335}
336
337/**
Erik Hugne512137e2013-12-06 10:08:00 -0500338 * tipc_reset_bearer - Reset all links established over this bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100339 */
Ying Xuec93d3ba2015-01-09 15:27:04 +0800340static int tipc_reset_bearer(struct net *net, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100341{
Erik Hugne512137e2013-12-06 10:08:00 -0500342 pr_info("Resetting bearer <%s>\n", b_ptr->name);
Ying Xuef2f98002015-01-09 15:27:05 +0800343 tipc_link_reset_list(net, b_ptr->identity);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800344 tipc_disc_reset(net, b_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700345 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100346}
347
348/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400349 * bearer_disable
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900350 *
Ying Xue7216cd92014-04-21 10:55:48 +0800351 * Note: This routine assumes caller holds RTNL lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100352 */
Ying Xuef2f98002015-01-09 15:27:05 +0800353static void bearer_disable(struct net *net, struct tipc_bearer *b_ptr,
354 bool shutting_down)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100355{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800356 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue3874ccb2014-03-27 12:54:33 +0800357 u32 i;
358
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400359 pr_info("Disabling bearer <%s>\n", b_ptr->name);
Ying Xue4babbaa2013-10-18 07:23:17 +0200360 b_ptr->media->disable_media(b_ptr);
Ying Xuea8304522014-02-13 17:29:17 -0500361
Ying Xuef2f98002015-01-09 15:27:05 +0800362 tipc_link_delete_list(net, b_ptr->identity, shutting_down);
Ying Xuea8304522014-02-13 17:29:17 -0500363 if (b_ptr->link_req)
364 tipc_disc_delete(b_ptr->link_req);
Ying Xue3874ccb2014-03-27 12:54:33 +0800365
366 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800367 if (b_ptr == rtnl_dereference(tn->bearer_list[i])) {
368 RCU_INIT_POINTER(tn->bearer_list[i], NULL);
Ying Xue3874ccb2014-03-27 12:54:33 +0800369 break;
370 }
371 }
Ying Xuef8322df2014-04-21 10:55:45 +0800372 kfree_rcu(b_ptr, rcu);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100373}
374
Ying Xue7f9f95d2015-01-09 15:27:06 +0800375int tipc_enable_l2_media(struct net *net, struct tipc_bearer *b)
Ying Xuee4d050c2013-12-10 20:45:43 -0800376{
377 struct net_device *dev;
378 char *driver_name = strchr((const char *)b->name, ':') + 1;
379
380 /* Find device with specified name */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800381 dev = dev_get_by_name(net, driver_name);
Ying Xuee4d050c2013-12-10 20:45:43 -0800382 if (!dev)
383 return -ENODEV;
384
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400385 /* Associate TIPC bearer with L2 bearer */
Ying Xue2231c5a2014-04-21 10:55:47 +0800386 rcu_assign_pointer(b->media_ptr, dev);
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400387 memset(&b->bcast_addr, 0, sizeof(b->bcast_addr));
Ying Xuee4d050c2013-12-10 20:45:43 -0800388 memcpy(b->bcast_addr.value, dev->broadcast, b->media->hwaddr_len);
389 b->bcast_addr.media_id = b->media->type_id;
390 b->bcast_addr.broadcast = 1;
391 b->mtu = dev->mtu;
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400392 b->media->raw2addr(b, &b->addr, (char *)dev->dev_addr);
Ying Xuee4d050c2013-12-10 20:45:43 -0800393 rcu_assign_pointer(dev->tipc_ptr, b);
394 return 0;
395}
396
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400397/* tipc_disable_l2_media - detach TIPC bearer from an L2 interface
Ying Xuee4d050c2013-12-10 20:45:43 -0800398 *
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400399 * Mark L2 bearer as inactive so that incoming buffers are thrown away,
Ying Xuee4d050c2013-12-10 20:45:43 -0800400 * then get worker thread to complete bearer cleanup. (Can't do cleanup
401 * here because cleanup code needs to sleep and caller holds spinlocks.)
402 */
403void tipc_disable_l2_media(struct tipc_bearer *b)
404{
Ying Xue2231c5a2014-04-21 10:55:47 +0800405 struct net_device *dev;
406
407 dev = (struct net_device *)rtnl_dereference(b->media_ptr);
408 RCU_INIT_POINTER(b->media_ptr, NULL);
Ying Xuee4d050c2013-12-10 20:45:43 -0800409 RCU_INIT_POINTER(dev->tipc_ptr, NULL);
Ying Xuef1c8d8c2014-04-21 10:55:49 +0800410 synchronize_net();
Ying Xuee4d050c2013-12-10 20:45:43 -0800411 dev_put(dev);
412}
413
414/**
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400415 * tipc_l2_send_msg - send a TIPC packet out over an L2 interface
Ying Xuee4d050c2013-12-10 20:45:43 -0800416 * @buf: the packet to be sent
stephen hemminger963a18552014-01-12 12:48:00 -0800417 * @b_ptr: the bearer through which the packet is to be sent
Ying Xuee4d050c2013-12-10 20:45:43 -0800418 * @dest: peer destination address
419 */
Ying Xue1da46562015-01-09 15:27:07 +0800420int tipc_l2_send_msg(struct net *net, struct sk_buff *buf,
421 struct tipc_bearer *b, struct tipc_media_addr *dest)
Ying Xuee4d050c2013-12-10 20:45:43 -0800422{
423 struct sk_buff *clone;
Ying Xue2231c5a2014-04-21 10:55:47 +0800424 struct net_device *dev;
Ying Xuee4d050c2013-12-10 20:45:43 -0800425 int delta;
Ying Xue2231c5a2014-04-21 10:55:47 +0800426
427 dev = (struct net_device *)rcu_dereference_rtnl(b->media_ptr);
428 if (!dev)
429 return 0;
Ying Xuee4d050c2013-12-10 20:45:43 -0800430
431 clone = skb_clone(buf, GFP_ATOMIC);
432 if (!clone)
433 return 0;
434
435 delta = dev->hard_header_len - skb_headroom(buf);
436 if ((delta > 0) &&
437 pskb_expand_head(clone, SKB_DATA_ALIGN(delta), 0, GFP_ATOMIC)) {
438 kfree_skb(clone);
439 return 0;
440 }
441
442 skb_reset_network_header(clone);
443 clone->dev = dev;
444 clone->protocol = htons(ETH_P_TIPC);
445 dev_hard_header(clone, dev, ETH_P_TIPC, dest->value,
446 dev->dev_addr, clone->len);
447 dev_queue_xmit(clone);
448 return 0;
449}
450
451/* tipc_bearer_send- sends buffer to destination over bearer
452 *
453 * IMPORTANT:
454 * The media send routine must not alter the buffer being passed in
455 * as it may be needed for later retransmission!
456 */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800457void tipc_bearer_send(struct net *net, u32 bearer_id, struct sk_buff *buf,
Ying Xuee4d050c2013-12-10 20:45:43 -0800458 struct tipc_media_addr *dest)
459{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800460 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800461 struct tipc_bearer *b_ptr;
462
463 rcu_read_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800464 b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800465 if (likely(b_ptr))
Ying Xue1da46562015-01-09 15:27:07 +0800466 b_ptr->media->send_msg(net, buf, b_ptr, dest);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800467 rcu_read_unlock();
Ying Xuee4d050c2013-12-10 20:45:43 -0800468}
469
Ying Xue6e967ad2013-12-10 20:45:42 -0800470/**
471 * tipc_l2_rcv_msg - handle incoming TIPC message from an interface
472 * @buf: the received packet
473 * @dev: the net device that the packet was received on
474 * @pt: the packet_type structure which was used to register this handler
475 * @orig_dev: the original receive net device in case the device is a bond
476 *
477 * Accept only packets explicitly sent to this node, or broadcast packets;
478 * ignores packets sent using interface multicast, and traffic sent to other
479 * nodes (which can happen if interface is running in promiscuous mode).
480 */
481static int tipc_l2_rcv_msg(struct sk_buff *buf, struct net_device *dev,
482 struct packet_type *pt, struct net_device *orig_dev)
483{
484 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100485
Ying Xue6e967ad2013-12-10 20:45:42 -0800486 rcu_read_lock();
Ying Xueca07fb02014-04-21 10:55:43 +0800487 b_ptr = rcu_dereference_rtnl(dev->tipc_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800488 if (likely(b_ptr)) {
489 if (likely(buf->pkt_type <= PACKET_BROADCAST)) {
490 buf->next = NULL;
Ying Xuec93d3ba2015-01-09 15:27:04 +0800491 tipc_rcv(dev_net(dev), buf, b_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800492 rcu_read_unlock();
493 return NET_RX_SUCCESS;
494 }
495 }
496 rcu_read_unlock();
497
498 kfree_skb(buf);
499 return NET_RX_DROP;
500}
501
502/**
503 * tipc_l2_device_event - handle device events from network device
504 * @nb: the context of the notification
505 * @evt: the type of event
506 * @ptr: the net device that the event was on
507 *
508 * This function is called by the Ethernet driver in case of link
509 * change event.
510 */
511static int tipc_l2_device_event(struct notifier_block *nb, unsigned long evt,
512 void *ptr)
513{
Ying Xue6e967ad2013-12-10 20:45:42 -0800514 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800515 struct net *net = dev_net(dev);
516 struct tipc_bearer *b_ptr;
Ying Xue6e967ad2013-12-10 20:45:42 -0800517
Ying Xueca07fb02014-04-21 10:55:43 +0800518 b_ptr = rtnl_dereference(dev->tipc_ptr);
519 if (!b_ptr)
Ying Xue6e967ad2013-12-10 20:45:42 -0800520 return NOTIFY_DONE;
Ying Xue6e967ad2013-12-10 20:45:42 -0800521
522 b_ptr->mtu = dev->mtu;
523
524 switch (evt) {
525 case NETDEV_CHANGE:
526 if (netif_carrier_ok(dev))
527 break;
528 case NETDEV_DOWN:
529 case NETDEV_CHANGEMTU:
Ying Xuec93d3ba2015-01-09 15:27:04 +0800530 tipc_reset_bearer(net, b_ptr);
Erik Hugnea21a5842014-03-28 10:32:08 +0100531 break;
Ying Xue6e967ad2013-12-10 20:45:42 -0800532 case NETDEV_CHANGEADDR:
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400533 b_ptr->media->raw2addr(b_ptr, &b_ptr->addr,
Erik Hugnea21a5842014-03-28 10:32:08 +0100534 (char *)dev->dev_addr);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800535 tipc_reset_bearer(net, b_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800536 break;
537 case NETDEV_UNREGISTER:
538 case NETDEV_CHANGENAME:
Ying Xuef2f98002015-01-09 15:27:05 +0800539 bearer_disable(dev_net(dev), b_ptr, false);
Ying Xue6e967ad2013-12-10 20:45:42 -0800540 break;
541 }
Ying Xue6e967ad2013-12-10 20:45:42 -0800542 return NOTIFY_OK;
543}
544
545static struct packet_type tipc_packet_type __read_mostly = {
Joe Perches184593c2014-03-12 10:04:20 -0700546 .type = htons(ETH_P_TIPC),
Ying Xue6e967ad2013-12-10 20:45:42 -0800547 .func = tipc_l2_rcv_msg,
548};
549
550static struct notifier_block notifier = {
551 .notifier_call = tipc_l2_device_event,
552 .priority = 0,
553};
554
555int tipc_bearer_setup(void)
556{
Ying Xue970122f2014-02-20 11:32:50 +0800557 int err;
558
559 err = register_netdevice_notifier(&notifier);
560 if (err)
561 return err;
Ying Xue6e967ad2013-12-10 20:45:42 -0800562 dev_add_pack(&tipc_packet_type);
Ying Xue970122f2014-02-20 11:32:50 +0800563 return 0;
Ying Xue6e967ad2013-12-10 20:45:42 -0800564}
565
566void tipc_bearer_cleanup(void)
567{
568 unregister_netdevice_notifier(&notifier);
569 dev_remove_pack(&tipc_packet_type);
570}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100571
Ying Xuef2f98002015-01-09 15:27:05 +0800572void tipc_bearer_stop(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100573{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800574 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue3874ccb2014-03-27 12:54:33 +0800575 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100576 u32 i;
577
Per Lidenb97bf3f2006-01-02 19:04:38 +0100578 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800579 b_ptr = rtnl_dereference(tn->bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800580 if (b_ptr) {
Ying Xuef2f98002015-01-09 15:27:05 +0800581 bearer_disable(net, b_ptr, true);
Ying Xue7f9f95d2015-01-09 15:27:06 +0800582 tn->bearer_list[i] = NULL;
Ying Xue3874ccb2014-03-27 12:54:33 +0800583 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100584 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100585}
Richard Alpe0655f6a2014-11-20 10:29:07 +0100586
Richard Alpe35b9dd72014-11-20 10:29:08 +0100587/* Caller should hold rtnl_lock to protect the bearer */
Richard Alped8182802014-11-24 11:10:29 +0100588static int __tipc_nl_add_bearer(struct tipc_nl_msg *msg,
589 struct tipc_bearer *bearer)
Richard Alpe35b9dd72014-11-20 10:29:08 +0100590{
591 void *hdr;
592 struct nlattr *attrs;
593 struct nlattr *prop;
594
Richard Alpebfb3e5d2015-02-09 09:50:03 +0100595 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Richard Alpe35b9dd72014-11-20 10:29:08 +0100596 NLM_F_MULTI, TIPC_NL_BEARER_GET);
597 if (!hdr)
598 return -EMSGSIZE;
599
600 attrs = nla_nest_start(msg->skb, TIPC_NLA_BEARER);
601 if (!attrs)
602 goto msg_full;
603
604 if (nla_put_string(msg->skb, TIPC_NLA_BEARER_NAME, bearer->name))
605 goto attr_msg_full;
606
607 prop = nla_nest_start(msg->skb, TIPC_NLA_BEARER_PROP);
608 if (!prop)
609 goto prop_msg_full;
610 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, bearer->priority))
611 goto prop_msg_full;
612 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, bearer->tolerance))
613 goto prop_msg_full;
614 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, bearer->window))
615 goto prop_msg_full;
616
617 nla_nest_end(msg->skb, prop);
618 nla_nest_end(msg->skb, attrs);
619 genlmsg_end(msg->skb, hdr);
620
621 return 0;
622
623prop_msg_full:
624 nla_nest_cancel(msg->skb, prop);
625attr_msg_full:
626 nla_nest_cancel(msg->skb, attrs);
627msg_full:
628 genlmsg_cancel(msg->skb, hdr);
629
630 return -EMSGSIZE;
631}
632
633int tipc_nl_bearer_dump(struct sk_buff *skb, struct netlink_callback *cb)
634{
635 int err;
636 int i = cb->args[0];
637 struct tipc_bearer *bearer;
638 struct tipc_nl_msg msg;
Ying Xue7f9f95d2015-01-09 15:27:06 +0800639 struct net *net = sock_net(skb->sk);
640 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100641
642 if (i == MAX_BEARERS)
643 return 0;
644
645 msg.skb = skb;
646 msg.portid = NETLINK_CB(cb->skb).portid;
647 msg.seq = cb->nlh->nlmsg_seq;
648
649 rtnl_lock();
650 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800651 bearer = rtnl_dereference(tn->bearer_list[i]);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100652 if (!bearer)
653 continue;
654
655 err = __tipc_nl_add_bearer(&msg, bearer);
656 if (err)
657 break;
658 }
659 rtnl_unlock();
660
661 cb->args[0] = i;
662 return skb->len;
663}
664
665int tipc_nl_bearer_get(struct sk_buff *skb, struct genl_info *info)
666{
667 int err;
668 char *name;
669 struct sk_buff *rep;
670 struct tipc_bearer *bearer;
671 struct tipc_nl_msg msg;
672 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Ying Xue7f9f95d2015-01-09 15:27:06 +0800673 struct net *net = genl_info_net(info);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100674
675 if (!info->attrs[TIPC_NLA_BEARER])
676 return -EINVAL;
677
678 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
679 info->attrs[TIPC_NLA_BEARER],
680 tipc_nl_bearer_policy);
681 if (err)
682 return err;
683
684 if (!attrs[TIPC_NLA_BEARER_NAME])
685 return -EINVAL;
686 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
687
688 rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
689 if (!rep)
690 return -ENOMEM;
691
692 msg.skb = rep;
693 msg.portid = info->snd_portid;
694 msg.seq = info->snd_seq;
695
696 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800697 bearer = tipc_bearer_find(net, name);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100698 if (!bearer) {
699 err = -EINVAL;
700 goto err_out;
701 }
702
703 err = __tipc_nl_add_bearer(&msg, bearer);
704 if (err)
705 goto err_out;
706 rtnl_unlock();
707
708 return genlmsg_reply(rep, info);
709err_out:
710 rtnl_unlock();
711 nlmsg_free(rep);
712
713 return err;
714}
715
Richard Alpe0655f6a2014-11-20 10:29:07 +0100716int tipc_nl_bearer_disable(struct sk_buff *skb, struct genl_info *info)
717{
718 int err;
719 char *name;
720 struct tipc_bearer *bearer;
721 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Richard Alpe9ab15462015-02-09 09:50:05 +0100722 struct net *net = sock_net(skb->sk);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100723
724 if (!info->attrs[TIPC_NLA_BEARER])
725 return -EINVAL;
726
727 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
728 info->attrs[TIPC_NLA_BEARER],
729 tipc_nl_bearer_policy);
730 if (err)
731 return err;
732
733 if (!attrs[TIPC_NLA_BEARER_NAME])
734 return -EINVAL;
735
736 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
737
738 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800739 bearer = tipc_bearer_find(net, name);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100740 if (!bearer) {
741 rtnl_unlock();
742 return -EINVAL;
743 }
744
Ying Xuef2f98002015-01-09 15:27:05 +0800745 bearer_disable(net, bearer, false);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100746 rtnl_unlock();
747
748 return 0;
749}
750
751int tipc_nl_bearer_enable(struct sk_buff *skb, struct genl_info *info)
752{
753 int err;
754 char *bearer;
755 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Richard Alpe9ab15462015-02-09 09:50:05 +0100756 struct net *net = sock_net(skb->sk);
757 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100758 u32 domain;
759 u32 prio;
760
761 prio = TIPC_MEDIA_LINK_PRI;
Ying Xue34747532015-01-09 15:27:10 +0800762 domain = tn->own_addr & TIPC_CLUSTER_MASK;
Richard Alpe0655f6a2014-11-20 10:29:07 +0100763
764 if (!info->attrs[TIPC_NLA_BEARER])
765 return -EINVAL;
766
767 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
768 info->attrs[TIPC_NLA_BEARER],
769 tipc_nl_bearer_policy);
770 if (err)
771 return err;
772
773 if (!attrs[TIPC_NLA_BEARER_NAME])
774 return -EINVAL;
775
776 bearer = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
777
778 if (attrs[TIPC_NLA_BEARER_DOMAIN])
779 domain = nla_get_u32(attrs[TIPC_NLA_BEARER_DOMAIN]);
780
781 if (attrs[TIPC_NLA_BEARER_PROP]) {
782 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
783
784 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
785 props);
786 if (err)
787 return err;
788
789 if (props[TIPC_NLA_PROP_PRIO])
790 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
791 }
792
793 rtnl_lock();
Ying Xuec93d3ba2015-01-09 15:27:04 +0800794 err = tipc_enable_bearer(net, bearer, domain, prio);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100795 if (err) {
796 rtnl_unlock();
797 return err;
798 }
799 rtnl_unlock();
800
801 return 0;
802}
Richard Alpe315c00b2014-11-20 10:29:09 +0100803
804int tipc_nl_bearer_set(struct sk_buff *skb, struct genl_info *info)
805{
806 int err;
807 char *name;
808 struct tipc_bearer *b;
809 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Ying Xue7f9f95d2015-01-09 15:27:06 +0800810 struct net *net = genl_info_net(info);
Richard Alpe315c00b2014-11-20 10:29:09 +0100811
812 if (!info->attrs[TIPC_NLA_BEARER])
813 return -EINVAL;
814
815 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
816 info->attrs[TIPC_NLA_BEARER],
817 tipc_nl_bearer_policy);
818 if (err)
819 return err;
820
821 if (!attrs[TIPC_NLA_BEARER_NAME])
822 return -EINVAL;
823 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
824
825 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800826 b = tipc_bearer_find(net, name);
Richard Alpe315c00b2014-11-20 10:29:09 +0100827 if (!b) {
828 rtnl_unlock();
829 return -EINVAL;
830 }
831
832 if (attrs[TIPC_NLA_BEARER_PROP]) {
833 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
834
835 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
836 props);
837 if (err) {
838 rtnl_unlock();
839 return err;
840 }
841
842 if (props[TIPC_NLA_PROP_TOL])
843 b->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
844 if (props[TIPC_NLA_PROP_PRIO])
845 b->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
846 if (props[TIPC_NLA_PROP_WIN])
847 b->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
848 }
849 rtnl_unlock();
850
851 return 0;
852}
Richard Alpe46f15c62014-11-20 10:29:15 +0100853
Richard Alped8182802014-11-24 11:10:29 +0100854static int __tipc_nl_add_media(struct tipc_nl_msg *msg,
855 struct tipc_media *media)
Richard Alpe46f15c62014-11-20 10:29:15 +0100856{
857 void *hdr;
858 struct nlattr *attrs;
859 struct nlattr *prop;
860
Richard Alpebfb3e5d2015-02-09 09:50:03 +0100861 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Richard Alpe46f15c62014-11-20 10:29:15 +0100862 NLM_F_MULTI, TIPC_NL_MEDIA_GET);
863 if (!hdr)
864 return -EMSGSIZE;
865
866 attrs = nla_nest_start(msg->skb, TIPC_NLA_MEDIA);
867 if (!attrs)
868 goto msg_full;
869
870 if (nla_put_string(msg->skb, TIPC_NLA_MEDIA_NAME, media->name))
871 goto attr_msg_full;
872
873 prop = nla_nest_start(msg->skb, TIPC_NLA_MEDIA_PROP);
874 if (!prop)
875 goto prop_msg_full;
876 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, media->priority))
877 goto prop_msg_full;
878 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, media->tolerance))
879 goto prop_msg_full;
880 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, media->window))
881 goto prop_msg_full;
882
883 nla_nest_end(msg->skb, prop);
884 nla_nest_end(msg->skb, attrs);
885 genlmsg_end(msg->skb, hdr);
886
887 return 0;
888
889prop_msg_full:
890 nla_nest_cancel(msg->skb, prop);
891attr_msg_full:
892 nla_nest_cancel(msg->skb, attrs);
893msg_full:
894 genlmsg_cancel(msg->skb, hdr);
895
896 return -EMSGSIZE;
897}
898
899int tipc_nl_media_dump(struct sk_buff *skb, struct netlink_callback *cb)
900{
901 int err;
902 int i = cb->args[0];
903 struct tipc_nl_msg msg;
904
905 if (i == MAX_MEDIA)
906 return 0;
907
908 msg.skb = skb;
909 msg.portid = NETLINK_CB(cb->skb).portid;
910 msg.seq = cb->nlh->nlmsg_seq;
911
912 rtnl_lock();
913 for (; media_info_array[i] != NULL; i++) {
914 err = __tipc_nl_add_media(&msg, media_info_array[i]);
915 if (err)
916 break;
917 }
918 rtnl_unlock();
919
920 cb->args[0] = i;
921 return skb->len;
922}
923
924int tipc_nl_media_get(struct sk_buff *skb, struct genl_info *info)
925{
926 int err;
927 char *name;
928 struct tipc_nl_msg msg;
929 struct tipc_media *media;
930 struct sk_buff *rep;
931 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
932
933 if (!info->attrs[TIPC_NLA_MEDIA])
934 return -EINVAL;
935
936 err = nla_parse_nested(attrs, TIPC_NLA_MEDIA_MAX,
937 info->attrs[TIPC_NLA_MEDIA],
938 tipc_nl_media_policy);
939 if (err)
940 return err;
941
942 if (!attrs[TIPC_NLA_MEDIA_NAME])
943 return -EINVAL;
944 name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
945
946 rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
947 if (!rep)
948 return -ENOMEM;
949
950 msg.skb = rep;
951 msg.portid = info->snd_portid;
952 msg.seq = info->snd_seq;
953
954 rtnl_lock();
955 media = tipc_media_find(name);
956 if (!media) {
957 err = -EINVAL;
958 goto err_out;
959 }
960
961 err = __tipc_nl_add_media(&msg, media);
962 if (err)
963 goto err_out;
964 rtnl_unlock();
965
966 return genlmsg_reply(rep, info);
967err_out:
968 rtnl_unlock();
969 nlmsg_free(rep);
970
971 return err;
972}
Richard Alpe1e554172014-11-20 10:29:16 +0100973
974int tipc_nl_media_set(struct sk_buff *skb, struct genl_info *info)
975{
976 int err;
977 char *name;
978 struct tipc_media *m;
979 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
980
981 if (!info->attrs[TIPC_NLA_MEDIA])
982 return -EINVAL;
983
984 err = nla_parse_nested(attrs, TIPC_NLA_MEDIA_MAX,
985 info->attrs[TIPC_NLA_MEDIA],
986 tipc_nl_media_policy);
987
988 if (!attrs[TIPC_NLA_MEDIA_NAME])
989 return -EINVAL;
990 name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
991
992 rtnl_lock();
993 m = tipc_media_find(name);
994 if (!m) {
995 rtnl_unlock();
996 return -EINVAL;
997 }
998
999 if (attrs[TIPC_NLA_MEDIA_PROP]) {
1000 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
1001
1002 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_MEDIA_PROP],
1003 props);
1004 if (err) {
1005 rtnl_unlock();
1006 return err;
1007 }
1008
1009 if (props[TIPC_NLA_PROP_TOL])
1010 m->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
1011 if (props[TIPC_NLA_PROP_PRIO])
1012 m->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1013 if (props[TIPC_NLA_PROP_WIN])
1014 m->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
1015 }
1016 rtnl_unlock();
1017
1018 return 0;
1019}