blob: 82b278668ab708d98a77a221d73412b44a93e144 [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
Erik Hugned0f91932015-03-05 10:23:49 +010051#ifdef CONFIG_TIPC_MEDIA_UDP
52 &udp_media_info,
53#endif
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080054 NULL
55};
Per Lidenb97bf3f2006-01-02 19:04:38 +010056
Richard Alpe0655f6a2014-11-20 10:29:07 +010057static const struct nla_policy
58tipc_nl_bearer_policy[TIPC_NLA_BEARER_MAX + 1] = {
59 [TIPC_NLA_BEARER_UNSPEC] = { .type = NLA_UNSPEC },
60 [TIPC_NLA_BEARER_NAME] = {
61 .type = NLA_STRING,
62 .len = TIPC_MAX_BEARER_NAME
63 },
64 [TIPC_NLA_BEARER_PROP] = { .type = NLA_NESTED },
65 [TIPC_NLA_BEARER_DOMAIN] = { .type = NLA_U32 }
66};
67
Richard Alpe46f15c62014-11-20 10:29:15 +010068static const struct nla_policy tipc_nl_media_policy[TIPC_NLA_MEDIA_MAX + 1] = {
69 [TIPC_NLA_MEDIA_UNSPEC] = { .type = NLA_UNSPEC },
70 [TIPC_NLA_MEDIA_NAME] = { .type = NLA_STRING },
71 [TIPC_NLA_MEDIA_PROP] = { .type = NLA_NESTED }
72};
73
Jon Paul Maloyb1c29f62015-05-14 10:46:11 -040074static void bearer_disable(struct net *net, struct tipc_bearer *b_ptr);
Allan Stephens3a777ff2011-04-21 13:58:26 -050075
Per Lidenb97bf3f2006-01-02 19:04:38 +010076/**
Allan Stephens5c216e12011-10-18 11:34:29 -040077 * tipc_media_find - locates specified media object by name
Per Lidenb97bf3f2006-01-02 19:04:38 +010078 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050079struct tipc_media *tipc_media_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +010080{
Per Lidenb97bf3f2006-01-02 19:04:38 +010081 u32 i;
82
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080083 for (i = 0; media_info_array[i] != NULL; i++) {
84 if (!strcmp(media_info_array[i]->name, name))
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080085 break;
Per Lidenb97bf3f2006-01-02 19:04:38 +010086 }
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080087 return media_info_array[i];
Per Lidenb97bf3f2006-01-02 19:04:38 +010088}
89
90/**
Allan Stephensc79be452011-10-06 16:40:55 -040091 * media_find_id - locates specified media object by type identifier
92 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050093static struct tipc_media *media_find_id(u8 type)
Allan Stephensc79be452011-10-06 16:40:55 -040094{
95 u32 i;
96
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080097 for (i = 0; media_info_array[i] != NULL; i++) {
98 if (media_info_array[i]->type_id == type)
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080099 break;
Allan Stephensc79be452011-10-06 16:40:55 -0400100 }
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800101 return media_info_array[i];
Per Lidenb97bf3f2006-01-02 19:04:38 +0100102}
103
104/**
Per Liden4323add2006-01-18 00:38:21 +0100105 * tipc_media_addr_printf - record media address in print buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100106 */
Erik Hugnedc1aed32012-06-29 00:50:23 -0400107void tipc_media_addr_printf(char *buf, int len, struct tipc_media_addr *a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100108{
Allan Stephensc61b6662011-10-07 11:31:49 -0400109 char addr_str[MAX_ADDR_STR];
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500110 struct tipc_media *m_ptr;
Erik Hugnedc1aed32012-06-29 00:50:23 -0400111 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100112
Allan Stephens3d749a62011-10-07 15:19:11 -0400113 m_ptr = media_find_id(a->media_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114
Allan Stephensc61b6662011-10-07 11:31:49 -0400115 if (m_ptr && !m_ptr->addr2str(a, addr_str, sizeof(addr_str)))
Richard Alpe941787b2015-02-09 09:50:19 +0100116 ret = scnprintf(buf, len, "%s(%s)", m_ptr->name, addr_str);
Allan Stephensc61b6662011-10-07 11:31:49 -0400117 else {
Allan Stephensc61b6662011-10-07 11:31:49 -0400118 u32 i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100119
Richard Alpe941787b2015-02-09 09:50:19 +0100120 ret = scnprintf(buf, len, "UNKNOWN(%u)", a->media_id);
Allan Stephens3d749a62011-10-07 15:19:11 -0400121 for (i = 0; i < sizeof(a->value); i++)
Richard Alpe941787b2015-02-09 09:50:19 +0100122 ret += scnprintf(buf - ret, len + ret,
Erik Hugnedc1aed32012-06-29 00:50:23 -0400123 "-%02x", a->value[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100124 }
125}
126
127/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100128 * bearer_name_validate - validate & (optionally) deconstruct bearer name
Ben Hutchings2c530402012-07-10 10:55:09 +0000129 * @name: ptr to bearer name string
130 * @name_parts: ptr to area for bearer name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900131 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100132 * Returns 1 if bearer name is valid, otherwise 0.
133 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900134static int bearer_name_validate(const char *name,
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500135 struct tipc_bearer_names *name_parts)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100136{
137 char name_copy[TIPC_MAX_BEARER_NAME];
138 char *media_name;
139 char *if_name;
140 u32 media_len;
141 u32 if_len;
142
143 /* copy bearer name & ensure length is OK */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100144 name_copy[TIPC_MAX_BEARER_NAME - 1] = 0;
145 /* need above in case non-Posix strncpy() doesn't pad with nulls */
146 strncpy(name_copy, name, TIPC_MAX_BEARER_NAME);
147 if (name_copy[TIPC_MAX_BEARER_NAME - 1] != 0)
148 return 0;
149
150 /* ensure all component parts of bearer name are present */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100151 media_name = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000152 if_name = strchr(media_name, ':');
153 if (if_name == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100154 return 0;
155 *(if_name++) = 0;
156 media_len = if_name - media_name;
157 if_len = strlen(if_name) + 1;
158
159 /* validate component parts of bearer name */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900160 if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) ||
Ying Xuefc073932012-08-16 12:09:08 +0000161 (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100162 return 0;
163
164 /* return bearer name components, if necessary */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100165 if (name_parts) {
166 strcpy(name_parts->media_name, media_name);
167 strcpy(name_parts->if_name, if_name);
168 }
169 return 1;
170}
171
172/**
Allan Stephens5c216e12011-10-18 11:34:29 -0400173 * tipc_bearer_find - locates bearer object with matching bearer name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100174 */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800175struct tipc_bearer *tipc_bearer_find(struct net *net, const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100176{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800177 struct tipc_net *tn = net_generic(net, tipc_net_id);
Allan Stephens2d627b92011-01-07 13:00:11 -0500178 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100179 u32 i;
180
Ying Xue3874ccb2014-03-27 12:54:33 +0800181 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800182 b_ptr = rtnl_dereference(tn->bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800183 if (b_ptr && (!strcmp(b_ptr->name, name)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100184 return b_ptr;
185 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800186 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100187}
188
Ying Xue7f9f95d2015-01-09 15:27:06 +0800189void tipc_bearer_add_dest(struct net *net, u32 bearer_id, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100190{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800191 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800192 struct tipc_bearer *b_ptr;
193
194 rcu_read_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800195 b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800196 if (b_ptr) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800197 tipc_bcbearer_sort(net, &b_ptr->nodes, dest, true);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800198 tipc_disc_add_dest(b_ptr->link_req);
199 }
200 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100201}
202
Ying Xue7f9f95d2015-01-09 15:27:06 +0800203void tipc_bearer_remove_dest(struct net *net, u32 bearer_id, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800205 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800206 struct tipc_bearer *b_ptr;
207
208 rcu_read_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800209 b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800210 if (b_ptr) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800211 tipc_bcbearer_sort(net, &b_ptr->nodes, dest, false);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800212 tipc_disc_remove_dest(b_ptr->link_req);
213 }
214 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100215}
216
Allan Stephensb274f4a2010-05-11 14:30:16 +0000217/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100218 * tipc_enable_bearer - enable bearer with the given name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900219 */
Richard Alpe9ab15462015-02-09 09:50:05 +0100220static int tipc_enable_bearer(struct net *net, const char *name,
Erik Hugned0f91932015-03-05 10:23:49 +0100221 u32 disc_domain, u32 priority,
222 struct nlattr *attr[])
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);
Allan Stephens2d627b92011-01-07 13:00:11 -0500225 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500226 struct tipc_media *m_ptr;
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500227 struct tipc_bearer_names b_names;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100228 char addr_string[16];
229 u32 bearer_id;
230 u32 with_this_prio;
231 u32 i;
232 int res = -EINVAL;
233
Ying Xue34747532015-01-09 15:27:10 +0800234 if (!tn->own_addr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400235 pr_warn("Bearer <%s> rejected, not supported in standalone mode\n",
236 name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237 return -ENOPROTOOPT;
Allan Stephensa10bd922006-06-25 23:52:17 -0700238 }
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500239 if (!bearer_name_validate(name, &b_names)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400240 pr_warn("Bearer <%s> rejected, illegal name\n", name);
Per Liden16cb4b32006-01-13 22:22:22 +0100241 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700242 }
Allan Stephens66e019a2011-04-20 16:24:07 -0500243 if (tipc_addr_domain_valid(disc_domain) &&
Ying Xue34747532015-01-09 15:27:10 +0800244 (disc_domain != tn->own_addr)) {
245 if (tipc_in_scope(disc_domain, tn->own_addr)) {
246 disc_domain = tn->own_addr & TIPC_CLUSTER_MASK;
Allan Stephens66e019a2011-04-20 16:24:07 -0500247 res = 0; /* accept any node in own cluster */
Ying Xue34747532015-01-09 15:27:10 +0800248 } else if (in_own_cluster_exact(net, disc_domain))
Allan Stephens66e019a2011-04-20 16:24:07 -0500249 res = 0; /* accept specified node in own cluster */
250 }
251 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400252 pr_warn("Bearer <%s> rejected, illegal discovery domain\n",
253 name);
Allan Stephensa10bd922006-06-25 23:52:17 -0700254 return -EINVAL;
255 }
Allan Stephens9efde4a2011-11-03 13:15:10 -0400256 if ((priority > TIPC_MAX_LINK_PRI) &&
Allan Stephensa10bd922006-06-25 23:52:17 -0700257 (priority != TIPC_MEDIA_LINK_PRI)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400258 pr_warn("Bearer <%s> rejected, illegal priority\n", name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100259 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700260 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100261
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500262 m_ptr = tipc_media_find(b_names.media_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100263 if (!m_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400264 pr_warn("Bearer <%s> rejected, media <%s> not registered\n",
265 name, b_names.media_name);
Ying Xue7216cd92014-04-21 10:55:48 +0800266 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100267 }
Per Liden16cb4b32006-01-13 22:22:22 +0100268
269 if (priority == TIPC_MEDIA_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100270 priority = m_ptr->priority;
271
272restart:
273 bearer_id = MAX_BEARERS;
274 with_this_prio = 1;
275 for (i = MAX_BEARERS; i-- != 0; ) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800276 b_ptr = rtnl_dereference(tn->bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800277 if (!b_ptr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100278 bearer_id = i;
279 continue;
280 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800281 if (!strcmp(name, b_ptr->name)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400282 pr_warn("Bearer <%s> rejected, already enabled\n",
283 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800284 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100285 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800286 if ((b_ptr->priority == priority) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100287 (++with_this_prio > 2)) {
288 if (priority-- == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400289 pr_warn("Bearer <%s> rejected, duplicate priority\n",
290 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800291 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100292 }
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400293 pr_warn("Bearer <%s> priority adjustment required %u->%u\n",
294 name, priority + 1, priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100295 goto restart;
296 }
297 }
298 if (bearer_id >= MAX_BEARERS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400299 pr_warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
300 name, MAX_BEARERS);
Ying Xue7216cd92014-04-21 10:55:48 +0800301 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100302 }
303
Ying Xue3874ccb2014-03-27 12:54:33 +0800304 b_ptr = kzalloc(sizeof(*b_ptr), GFP_ATOMIC);
Ying Xue7216cd92014-04-21 10:55:48 +0800305 if (!b_ptr)
306 return -ENOMEM;
307
Allan Stephens2d627b92011-01-07 13:00:11 -0500308 strcpy(b_ptr->name, name);
Ying Xuee4d050c2013-12-10 20:45:43 -0800309 b_ptr->media = m_ptr;
Erik Hugned0f91932015-03-05 10:23:49 +0100310 res = m_ptr->enable_media(net, b_ptr, attr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100311 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400312 pr_warn("Bearer <%s> rejected, enable failure (%d)\n",
313 name, -res);
Ying Xue7216cd92014-04-21 10:55:48 +0800314 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100315 }
316
317 b_ptr->identity = bearer_id;
Allan Stephens5c216e12011-10-18 11:34:29 -0400318 b_ptr->tolerance = m_ptr->tolerance;
319 b_ptr->window = m_ptr->window;
Erik Hugnea21a5842014-03-28 10:32:08 +0100320 b_ptr->domain = disc_domain;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100321 b_ptr->net_plane = bearer_id + 'A';
Per Lidenb97bf3f2006-01-02 19:04:38 +0100322 b_ptr->priority = priority;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500323
Ying Xuec93d3ba2015-01-09 15:27:04 +0800324 res = tipc_disc_create(net, b_ptr, &b_ptr->bcast_addr);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500325 if (res) {
Jon Paul Maloyb1c29f62015-05-14 10:46:11 -0400326 bearer_disable(net, b_ptr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400327 pr_warn("Bearer <%s> rejected, discovery object creation failed\n",
328 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800329 return -EINVAL;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500330 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800331
Ying Xue7f9f95d2015-01-09 15:27:06 +0800332 rcu_assign_pointer(tn->bearer_list[bearer_id], b_ptr);
Ying Xue3874ccb2014-03-27 12:54:33 +0800333
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400334 pr_info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
335 name,
336 tipc_addr_string_fill(addr_string, disc_domain), priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100337 return res;
338}
339
340/**
Erik Hugne512137e2013-12-06 10:08:00 -0500341 * tipc_reset_bearer - Reset all links established over this bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100342 */
Ying Xuec93d3ba2015-01-09 15:27:04 +0800343static int tipc_reset_bearer(struct net *net, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100344{
Erik Hugne512137e2013-12-06 10:08:00 -0500345 pr_info("Resetting bearer <%s>\n", b_ptr->name);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400346 tipc_node_delete_links(net, b_ptr->identity);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800347 tipc_disc_reset(net, b_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700348 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100349}
350
351/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400352 * bearer_disable
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900353 *
Ying Xue7216cd92014-04-21 10:55:48 +0800354 * Note: This routine assumes caller holds RTNL lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100355 */
Jon Paul Maloyb1c29f62015-05-14 10:46:11 -0400356static void bearer_disable(struct net *net, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100357{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800358 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue3874ccb2014-03-27 12:54:33 +0800359 u32 i;
360
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400361 pr_info("Disabling bearer <%s>\n", b_ptr->name);
Ying Xue4babbaa2013-10-18 07:23:17 +0200362 b_ptr->media->disable_media(b_ptr);
Ying Xuea8304522014-02-13 17:29:17 -0500363
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400364 tipc_node_delete_links(net, b_ptr->identity);
Jon Paul Maloy282b3a02015-10-15 14:52:45 -0400365 RCU_INIT_POINTER(b_ptr->media_ptr, NULL);
Ying Xuea8304522014-02-13 17:29:17 -0500366 if (b_ptr->link_req)
367 tipc_disc_delete(b_ptr->link_req);
Ying Xue3874ccb2014-03-27 12:54:33 +0800368
369 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800370 if (b_ptr == rtnl_dereference(tn->bearer_list[i])) {
371 RCU_INIT_POINTER(tn->bearer_list[i], NULL);
Ying Xue3874ccb2014-03-27 12:54:33 +0800372 break;
373 }
374 }
Ying Xuef8322df2014-04-21 10:55:45 +0800375 kfree_rcu(b_ptr, rcu);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100376}
377
Erik Hugned0f91932015-03-05 10:23:49 +0100378int tipc_enable_l2_media(struct net *net, struct tipc_bearer *b,
379 struct nlattr *attr[])
Ying Xuee4d050c2013-12-10 20:45:43 -0800380{
381 struct net_device *dev;
382 char *driver_name = strchr((const char *)b->name, ':') + 1;
383
384 /* Find device with specified name */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800385 dev = dev_get_by_name(net, driver_name);
Ying Xuee4d050c2013-12-10 20:45:43 -0800386 if (!dev)
387 return -ENODEV;
388
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400389 /* Associate TIPC bearer with L2 bearer */
Ying Xue2231c5a2014-04-21 10:55:47 +0800390 rcu_assign_pointer(b->media_ptr, dev);
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400391 memset(&b->bcast_addr, 0, sizeof(b->bcast_addr));
Ying Xuee4d050c2013-12-10 20:45:43 -0800392 memcpy(b->bcast_addr.value, dev->broadcast, b->media->hwaddr_len);
393 b->bcast_addr.media_id = b->media->type_id;
394 b->bcast_addr.broadcast = 1;
395 b->mtu = dev->mtu;
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400396 b->media->raw2addr(b, &b->addr, (char *)dev->dev_addr);
Ying Xuee4d050c2013-12-10 20:45:43 -0800397 rcu_assign_pointer(dev->tipc_ptr, b);
398 return 0;
399}
400
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400401/* tipc_disable_l2_media - detach TIPC bearer from an L2 interface
Ying Xuee4d050c2013-12-10 20:45:43 -0800402 *
Jon Paul Maloy282b3a02015-10-15 14:52:45 -0400403 * Mark L2 bearer as inactive so that incoming buffers are thrown away
Ying Xuee4d050c2013-12-10 20:45:43 -0800404 */
405void tipc_disable_l2_media(struct tipc_bearer *b)
406{
Ying Xue2231c5a2014-04-21 10:55:47 +0800407 struct net_device *dev;
408
409 dev = (struct net_device *)rtnl_dereference(b->media_ptr);
Ying Xuee4d050c2013-12-10 20:45:43 -0800410 RCU_INIT_POINTER(dev->tipc_ptr, NULL);
Ying Xuef1c8d8c2014-04-21 10:55:49 +0800411 synchronize_net();
Ying Xuee4d050c2013-12-10 20:45:43 -0800412 dev_put(dev);
413}
414
415/**
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400416 * tipc_l2_send_msg - send a TIPC packet out over an L2 interface
Ying Xuee4d050c2013-12-10 20:45:43 -0800417 * @buf: the packet to be sent
stephen hemminger963a18552014-01-12 12:48:00 -0800418 * @b_ptr: the bearer through which the packet is to be sent
Ying Xuee4d050c2013-12-10 20:45:43 -0800419 * @dest: peer destination address
420 */
Ying Xue1da46562015-01-09 15:27:07 +0800421int tipc_l2_send_msg(struct net *net, struct sk_buff *buf,
422 struct tipc_bearer *b, struct tipc_media_addr *dest)
Ying Xuee4d050c2013-12-10 20:45:43 -0800423{
424 struct sk_buff *clone;
Ying Xue2231c5a2014-04-21 10:55:47 +0800425 struct net_device *dev;
Ying Xuee4d050c2013-12-10 20:45:43 -0800426 int delta;
Ying Xue2231c5a2014-04-21 10:55:47 +0800427
428 dev = (struct net_device *)rcu_dereference_rtnl(b->media_ptr);
429 if (!dev)
430 return 0;
Ying Xuee4d050c2013-12-10 20:45:43 -0800431
432 clone = skb_clone(buf, GFP_ATOMIC);
433 if (!clone)
434 return 0;
435
436 delta = dev->hard_header_len - skb_headroom(buf);
437 if ((delta > 0) &&
438 pskb_expand_head(clone, SKB_DATA_ALIGN(delta), 0, GFP_ATOMIC)) {
439 kfree_skb(clone);
440 return 0;
441 }
442
443 skb_reset_network_header(clone);
444 clone->dev = dev;
445 clone->protocol = htons(ETH_P_TIPC);
446 dev_hard_header(clone, dev, ETH_P_TIPC, dest->value,
447 dev->dev_addr, clone->len);
448 dev_queue_xmit(clone);
449 return 0;
450}
451
452/* tipc_bearer_send- sends buffer to destination over bearer
453 *
454 * IMPORTANT:
455 * The media send routine must not alter the buffer being passed in
456 * as it may be needed for later retransmission!
457 */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800458void tipc_bearer_send(struct net *net, u32 bearer_id, struct sk_buff *buf,
Ying Xuee4d050c2013-12-10 20:45:43 -0800459 struct tipc_media_addr *dest)
460{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800461 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800462 struct tipc_bearer *b_ptr;
463
464 rcu_read_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800465 b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800466 if (likely(b_ptr))
Ying Xue1da46562015-01-09 15:27:07 +0800467 b_ptr->media->send_msg(net, buf, b_ptr, dest);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800468 rcu_read_unlock();
Ying Xuee4d050c2013-12-10 20:45:43 -0800469}
470
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400471/* tipc_bearer_xmit() -send buffer to destination over bearer
472 */
473void tipc_bearer_xmit(struct net *net, u32 bearer_id,
474 struct sk_buff_head *xmitq,
475 struct tipc_media_addr *dst)
476{
477 struct tipc_net *tn = net_generic(net, tipc_net_id);
478 struct tipc_bearer *b;
479 struct sk_buff *skb, *tmp;
480
481 if (skb_queue_empty(xmitq))
482 return;
483
484 rcu_read_lock();
485 b = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
486 if (likely(b)) {
487 skb_queue_walk_safe(xmitq, skb, tmp) {
488 __skb_dequeue(xmitq);
489 b->media->send_msg(net, skb, b, dst);
490 /* Until we remove cloning in tipc_l2_send_msg(): */
491 kfree_skb(skb);
492 }
493 }
494 rcu_read_unlock();
495}
496
Ying Xue6e967ad2013-12-10 20:45:42 -0800497/**
498 * tipc_l2_rcv_msg - handle incoming TIPC message from an interface
499 * @buf: the received packet
500 * @dev: the net device that the packet was received on
501 * @pt: the packet_type structure which was used to register this handler
502 * @orig_dev: the original receive net device in case the device is a bond
503 *
504 * Accept only packets explicitly sent to this node, or broadcast packets;
505 * ignores packets sent using interface multicast, and traffic sent to other
506 * nodes (which can happen if interface is running in promiscuous mode).
507 */
508static int tipc_l2_rcv_msg(struct sk_buff *buf, struct net_device *dev,
509 struct packet_type *pt, struct net_device *orig_dev)
510{
511 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100512
Ying Xue6e967ad2013-12-10 20:45:42 -0800513 rcu_read_lock();
Ying Xueca07fb02014-04-21 10:55:43 +0800514 b_ptr = rcu_dereference_rtnl(dev->tipc_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800515 if (likely(b_ptr)) {
516 if (likely(buf->pkt_type <= PACKET_BROADCAST)) {
517 buf->next = NULL;
Ying Xuec93d3ba2015-01-09 15:27:04 +0800518 tipc_rcv(dev_net(dev), buf, b_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800519 rcu_read_unlock();
520 return NET_RX_SUCCESS;
521 }
522 }
523 rcu_read_unlock();
524
525 kfree_skb(buf);
526 return NET_RX_DROP;
527}
528
529/**
530 * tipc_l2_device_event - handle device events from network device
531 * @nb: the context of the notification
532 * @evt: the type of event
533 * @ptr: the net device that the event was on
534 *
535 * This function is called by the Ethernet driver in case of link
536 * change event.
537 */
538static int tipc_l2_device_event(struct notifier_block *nb, unsigned long evt,
539 void *ptr)
540{
Ying Xue6e967ad2013-12-10 20:45:42 -0800541 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800542 struct net *net = dev_net(dev);
543 struct tipc_bearer *b_ptr;
Ying Xue6e967ad2013-12-10 20:45:42 -0800544
Ying Xueca07fb02014-04-21 10:55:43 +0800545 b_ptr = rtnl_dereference(dev->tipc_ptr);
546 if (!b_ptr)
Ying Xue6e967ad2013-12-10 20:45:42 -0800547 return NOTIFY_DONE;
Ying Xue6e967ad2013-12-10 20:45:42 -0800548
549 b_ptr->mtu = dev->mtu;
550
551 switch (evt) {
552 case NETDEV_CHANGE:
553 if (netif_carrier_ok(dev))
554 break;
Jon Paul Maloy282b3a02015-10-15 14:52:45 -0400555 case NETDEV_GOING_DOWN:
Ying Xue6e967ad2013-12-10 20:45:42 -0800556 case NETDEV_CHANGEMTU:
Ying Xuec93d3ba2015-01-09 15:27:04 +0800557 tipc_reset_bearer(net, b_ptr);
Erik Hugnea21a5842014-03-28 10:32:08 +0100558 break;
Ying Xue6e967ad2013-12-10 20:45:42 -0800559 case NETDEV_CHANGEADDR:
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400560 b_ptr->media->raw2addr(b_ptr, &b_ptr->addr,
Erik Hugnea21a5842014-03-28 10:32:08 +0100561 (char *)dev->dev_addr);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800562 tipc_reset_bearer(net, b_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800563 break;
564 case NETDEV_UNREGISTER:
565 case NETDEV_CHANGENAME:
Jon Paul Maloyb1c29f62015-05-14 10:46:11 -0400566 bearer_disable(dev_net(dev), b_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800567 break;
568 }
Ying Xue6e967ad2013-12-10 20:45:42 -0800569 return NOTIFY_OK;
570}
571
572static struct packet_type tipc_packet_type __read_mostly = {
Joe Perches184593c2014-03-12 10:04:20 -0700573 .type = htons(ETH_P_TIPC),
Ying Xue6e967ad2013-12-10 20:45:42 -0800574 .func = tipc_l2_rcv_msg,
575};
576
577static struct notifier_block notifier = {
578 .notifier_call = tipc_l2_device_event,
579 .priority = 0,
580};
581
582int tipc_bearer_setup(void)
583{
Ying Xue970122f2014-02-20 11:32:50 +0800584 int err;
585
586 err = register_netdevice_notifier(&notifier);
587 if (err)
588 return err;
Ying Xue6e967ad2013-12-10 20:45:42 -0800589 dev_add_pack(&tipc_packet_type);
Ying Xue970122f2014-02-20 11:32:50 +0800590 return 0;
Ying Xue6e967ad2013-12-10 20:45:42 -0800591}
592
593void tipc_bearer_cleanup(void)
594{
595 unregister_netdevice_notifier(&notifier);
596 dev_remove_pack(&tipc_packet_type);
597}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100598
Ying Xuef2f98002015-01-09 15:27:05 +0800599void tipc_bearer_stop(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100600{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800601 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue3874ccb2014-03-27 12:54:33 +0800602 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100603 u32 i;
604
Per Lidenb97bf3f2006-01-02 19:04:38 +0100605 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800606 b_ptr = rtnl_dereference(tn->bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800607 if (b_ptr) {
Jon Paul Maloyb1c29f62015-05-14 10:46:11 -0400608 bearer_disable(net, b_ptr);
Ying Xue7f9f95d2015-01-09 15:27:06 +0800609 tn->bearer_list[i] = NULL;
Ying Xue3874ccb2014-03-27 12:54:33 +0800610 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100611 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100612}
Richard Alpe0655f6a2014-11-20 10:29:07 +0100613
Richard Alpe35b9dd72014-11-20 10:29:08 +0100614/* Caller should hold rtnl_lock to protect the bearer */
Richard Alped8182802014-11-24 11:10:29 +0100615static int __tipc_nl_add_bearer(struct tipc_nl_msg *msg,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200616 struct tipc_bearer *bearer, int nlflags)
Richard Alpe35b9dd72014-11-20 10:29:08 +0100617{
618 void *hdr;
619 struct nlattr *attrs;
620 struct nlattr *prop;
621
Richard Alpebfb3e5d2015-02-09 09:50:03 +0100622 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200623 nlflags, TIPC_NL_BEARER_GET);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100624 if (!hdr)
625 return -EMSGSIZE;
626
627 attrs = nla_nest_start(msg->skb, TIPC_NLA_BEARER);
628 if (!attrs)
629 goto msg_full;
630
631 if (nla_put_string(msg->skb, TIPC_NLA_BEARER_NAME, bearer->name))
632 goto attr_msg_full;
633
634 prop = nla_nest_start(msg->skb, TIPC_NLA_BEARER_PROP);
635 if (!prop)
636 goto prop_msg_full;
637 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, bearer->priority))
638 goto prop_msg_full;
639 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, bearer->tolerance))
640 goto prop_msg_full;
641 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, bearer->window))
642 goto prop_msg_full;
643
644 nla_nest_end(msg->skb, prop);
645 nla_nest_end(msg->skb, attrs);
646 genlmsg_end(msg->skb, hdr);
647
648 return 0;
649
650prop_msg_full:
651 nla_nest_cancel(msg->skb, prop);
652attr_msg_full:
653 nla_nest_cancel(msg->skb, attrs);
654msg_full:
655 genlmsg_cancel(msg->skb, hdr);
656
657 return -EMSGSIZE;
658}
659
660int tipc_nl_bearer_dump(struct sk_buff *skb, struct netlink_callback *cb)
661{
662 int err;
663 int i = cb->args[0];
664 struct tipc_bearer *bearer;
665 struct tipc_nl_msg msg;
Ying Xue7f9f95d2015-01-09 15:27:06 +0800666 struct net *net = sock_net(skb->sk);
667 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100668
669 if (i == MAX_BEARERS)
670 return 0;
671
672 msg.skb = skb;
673 msg.portid = NETLINK_CB(cb->skb).portid;
674 msg.seq = cb->nlh->nlmsg_seq;
675
676 rtnl_lock();
677 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800678 bearer = rtnl_dereference(tn->bearer_list[i]);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100679 if (!bearer)
680 continue;
681
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200682 err = __tipc_nl_add_bearer(&msg, bearer, NLM_F_MULTI);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100683 if (err)
684 break;
685 }
686 rtnl_unlock();
687
688 cb->args[0] = i;
689 return skb->len;
690}
691
692int tipc_nl_bearer_get(struct sk_buff *skb, struct genl_info *info)
693{
694 int err;
695 char *name;
696 struct sk_buff *rep;
697 struct tipc_bearer *bearer;
698 struct tipc_nl_msg msg;
699 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Ying Xue7f9f95d2015-01-09 15:27:06 +0800700 struct net *net = genl_info_net(info);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100701
702 if (!info->attrs[TIPC_NLA_BEARER])
703 return -EINVAL;
704
705 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
706 info->attrs[TIPC_NLA_BEARER],
707 tipc_nl_bearer_policy);
708 if (err)
709 return err;
710
711 if (!attrs[TIPC_NLA_BEARER_NAME])
712 return -EINVAL;
713 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
714
715 rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
716 if (!rep)
717 return -ENOMEM;
718
719 msg.skb = rep;
720 msg.portid = info->snd_portid;
721 msg.seq = info->snd_seq;
722
723 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800724 bearer = tipc_bearer_find(net, name);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100725 if (!bearer) {
726 err = -EINVAL;
727 goto err_out;
728 }
729
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200730 err = __tipc_nl_add_bearer(&msg, bearer, 0);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100731 if (err)
732 goto err_out;
733 rtnl_unlock();
734
735 return genlmsg_reply(rep, info);
736err_out:
737 rtnl_unlock();
738 nlmsg_free(rep);
739
740 return err;
741}
742
Richard Alpe0655f6a2014-11-20 10:29:07 +0100743int tipc_nl_bearer_disable(struct sk_buff *skb, struct genl_info *info)
744{
745 int err;
746 char *name;
747 struct tipc_bearer *bearer;
748 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Richard Alpe9ab15462015-02-09 09:50:05 +0100749 struct net *net = sock_net(skb->sk);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100750
751 if (!info->attrs[TIPC_NLA_BEARER])
752 return -EINVAL;
753
754 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
755 info->attrs[TIPC_NLA_BEARER],
756 tipc_nl_bearer_policy);
757 if (err)
758 return err;
759
760 if (!attrs[TIPC_NLA_BEARER_NAME])
761 return -EINVAL;
762
763 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
764
765 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800766 bearer = tipc_bearer_find(net, name);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100767 if (!bearer) {
768 rtnl_unlock();
769 return -EINVAL;
770 }
771
Jon Paul Maloyb1c29f62015-05-14 10:46:11 -0400772 bearer_disable(net, bearer);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100773 rtnl_unlock();
774
775 return 0;
776}
777
778int tipc_nl_bearer_enable(struct sk_buff *skb, struct genl_info *info)
779{
780 int err;
781 char *bearer;
782 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Richard Alpe9ab15462015-02-09 09:50:05 +0100783 struct net *net = sock_net(skb->sk);
784 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100785 u32 domain;
786 u32 prio;
787
788 prio = TIPC_MEDIA_LINK_PRI;
Ying Xue34747532015-01-09 15:27:10 +0800789 domain = tn->own_addr & TIPC_CLUSTER_MASK;
Richard Alpe0655f6a2014-11-20 10:29:07 +0100790
791 if (!info->attrs[TIPC_NLA_BEARER])
792 return -EINVAL;
793
794 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
795 info->attrs[TIPC_NLA_BEARER],
796 tipc_nl_bearer_policy);
797 if (err)
798 return err;
799
800 if (!attrs[TIPC_NLA_BEARER_NAME])
801 return -EINVAL;
802
803 bearer = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
804
805 if (attrs[TIPC_NLA_BEARER_DOMAIN])
806 domain = nla_get_u32(attrs[TIPC_NLA_BEARER_DOMAIN]);
807
808 if (attrs[TIPC_NLA_BEARER_PROP]) {
809 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
810
811 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
812 props);
813 if (err)
814 return err;
815
816 if (props[TIPC_NLA_PROP_PRIO])
817 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
818 }
819
820 rtnl_lock();
Erik Hugned0f91932015-03-05 10:23:49 +0100821 err = tipc_enable_bearer(net, bearer, domain, prio, attrs);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100822 if (err) {
823 rtnl_unlock();
824 return err;
825 }
826 rtnl_unlock();
827
828 return 0;
829}
Richard Alpe315c00b2014-11-20 10:29:09 +0100830
831int tipc_nl_bearer_set(struct sk_buff *skb, struct genl_info *info)
832{
833 int err;
834 char *name;
835 struct tipc_bearer *b;
836 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Richard Alpec3d6fb82015-05-06 13:58:54 +0200837 struct net *net = sock_net(skb->sk);
Richard Alpe315c00b2014-11-20 10:29:09 +0100838
839 if (!info->attrs[TIPC_NLA_BEARER])
840 return -EINVAL;
841
842 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
843 info->attrs[TIPC_NLA_BEARER],
844 tipc_nl_bearer_policy);
845 if (err)
846 return err;
847
848 if (!attrs[TIPC_NLA_BEARER_NAME])
849 return -EINVAL;
850 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
851
852 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800853 b = tipc_bearer_find(net, name);
Richard Alpe315c00b2014-11-20 10:29:09 +0100854 if (!b) {
855 rtnl_unlock();
856 return -EINVAL;
857 }
858
859 if (attrs[TIPC_NLA_BEARER_PROP]) {
860 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
861
862 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
863 props);
864 if (err) {
865 rtnl_unlock();
866 return err;
867 }
868
869 if (props[TIPC_NLA_PROP_TOL])
870 b->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
871 if (props[TIPC_NLA_PROP_PRIO])
872 b->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
873 if (props[TIPC_NLA_PROP_WIN])
874 b->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
875 }
876 rtnl_unlock();
877
878 return 0;
879}
Richard Alpe46f15c62014-11-20 10:29:15 +0100880
Richard Alped8182802014-11-24 11:10:29 +0100881static int __tipc_nl_add_media(struct tipc_nl_msg *msg,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200882 struct tipc_media *media, int nlflags)
Richard Alpe46f15c62014-11-20 10:29:15 +0100883{
884 void *hdr;
885 struct nlattr *attrs;
886 struct nlattr *prop;
887
Richard Alpebfb3e5d2015-02-09 09:50:03 +0100888 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200889 nlflags, TIPC_NL_MEDIA_GET);
Richard Alpe46f15c62014-11-20 10:29:15 +0100890 if (!hdr)
891 return -EMSGSIZE;
892
893 attrs = nla_nest_start(msg->skb, TIPC_NLA_MEDIA);
894 if (!attrs)
895 goto msg_full;
896
897 if (nla_put_string(msg->skb, TIPC_NLA_MEDIA_NAME, media->name))
898 goto attr_msg_full;
899
900 prop = nla_nest_start(msg->skb, TIPC_NLA_MEDIA_PROP);
901 if (!prop)
902 goto prop_msg_full;
903 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, media->priority))
904 goto prop_msg_full;
905 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, media->tolerance))
906 goto prop_msg_full;
907 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, media->window))
908 goto prop_msg_full;
909
910 nla_nest_end(msg->skb, prop);
911 nla_nest_end(msg->skb, attrs);
912 genlmsg_end(msg->skb, hdr);
913
914 return 0;
915
916prop_msg_full:
917 nla_nest_cancel(msg->skb, prop);
918attr_msg_full:
919 nla_nest_cancel(msg->skb, attrs);
920msg_full:
921 genlmsg_cancel(msg->skb, hdr);
922
923 return -EMSGSIZE;
924}
925
926int tipc_nl_media_dump(struct sk_buff *skb, struct netlink_callback *cb)
927{
928 int err;
929 int i = cb->args[0];
930 struct tipc_nl_msg msg;
931
932 if (i == MAX_MEDIA)
933 return 0;
934
935 msg.skb = skb;
936 msg.portid = NETLINK_CB(cb->skb).portid;
937 msg.seq = cb->nlh->nlmsg_seq;
938
939 rtnl_lock();
940 for (; media_info_array[i] != NULL; i++) {
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200941 err = __tipc_nl_add_media(&msg, media_info_array[i],
942 NLM_F_MULTI);
Richard Alpe46f15c62014-11-20 10:29:15 +0100943 if (err)
944 break;
945 }
946 rtnl_unlock();
947
948 cb->args[0] = i;
949 return skb->len;
950}
951
952int tipc_nl_media_get(struct sk_buff *skb, struct genl_info *info)
953{
954 int err;
955 char *name;
956 struct tipc_nl_msg msg;
957 struct tipc_media *media;
958 struct sk_buff *rep;
959 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
960
961 if (!info->attrs[TIPC_NLA_MEDIA])
962 return -EINVAL;
963
964 err = nla_parse_nested(attrs, TIPC_NLA_MEDIA_MAX,
965 info->attrs[TIPC_NLA_MEDIA],
966 tipc_nl_media_policy);
967 if (err)
968 return err;
969
970 if (!attrs[TIPC_NLA_MEDIA_NAME])
971 return -EINVAL;
972 name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
973
974 rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
975 if (!rep)
976 return -ENOMEM;
977
978 msg.skb = rep;
979 msg.portid = info->snd_portid;
980 msg.seq = info->snd_seq;
981
982 rtnl_lock();
983 media = tipc_media_find(name);
984 if (!media) {
985 err = -EINVAL;
986 goto err_out;
987 }
988
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200989 err = __tipc_nl_add_media(&msg, media, 0);
Richard Alpe46f15c62014-11-20 10:29:15 +0100990 if (err)
991 goto err_out;
992 rtnl_unlock();
993
994 return genlmsg_reply(rep, info);
995err_out:
996 rtnl_unlock();
997 nlmsg_free(rep);
998
999 return err;
1000}
Richard Alpe1e554172014-11-20 10:29:16 +01001001
1002int tipc_nl_media_set(struct sk_buff *skb, struct genl_info *info)
1003{
1004 int err;
1005 char *name;
1006 struct tipc_media *m;
1007 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
1008
1009 if (!info->attrs[TIPC_NLA_MEDIA])
1010 return -EINVAL;
1011
1012 err = nla_parse_nested(attrs, TIPC_NLA_MEDIA_MAX,
1013 info->attrs[TIPC_NLA_MEDIA],
1014 tipc_nl_media_policy);
1015
1016 if (!attrs[TIPC_NLA_MEDIA_NAME])
1017 return -EINVAL;
1018 name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
1019
1020 rtnl_lock();
1021 m = tipc_media_find(name);
1022 if (!m) {
1023 rtnl_unlock();
1024 return -EINVAL;
1025 }
1026
1027 if (attrs[TIPC_NLA_MEDIA_PROP]) {
1028 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
1029
1030 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_MEDIA_PROP],
1031 props);
1032 if (err) {
1033 rtnl_unlock();
1034 return err;
1035 }
1036
1037 if (props[TIPC_NLA_PROP_TOL])
1038 m->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
1039 if (props[TIPC_NLA_PROP_PRIO])
1040 m->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1041 if (props[TIPC_NLA_PROP_WIN])
1042 m->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
1043 }
1044 rtnl_unlock();
1045
1046 return 0;
1047}