blob: 11333916279f29abc2795546cadd95ce95e52639 [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]);
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400196 if (b_ptr)
Ying Xue7a2f7d12014-04-21 10:55:46 +0800197 tipc_disc_add_dest(b_ptr->link_req);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800198 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]);
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400208 if (b_ptr)
Ying Xue7a2f7d12014-04-21 10:55:46 +0800209 tipc_disc_remove_dest(b_ptr->link_req);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800210 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100211}
212
Allan Stephensb274f4a2010-05-11 14:30:16 +0000213/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100214 * tipc_enable_bearer - enable bearer with the given name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900215 */
Richard Alpe9ab15462015-02-09 09:50:05 +0100216static int tipc_enable_bearer(struct net *net, const char *name,
Erik Hugned0f91932015-03-05 10:23:49 +0100217 u32 disc_domain, u32 priority,
218 struct nlattr *attr[])
Per Lidenb97bf3f2006-01-02 19:04:38 +0100219{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800220 struct tipc_net *tn = net_generic(net, tipc_net_id);
Allan Stephens2d627b92011-01-07 13:00:11 -0500221 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500222 struct tipc_media *m_ptr;
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500223 struct tipc_bearer_names b_names;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100224 char addr_string[16];
225 u32 bearer_id;
226 u32 with_this_prio;
227 u32 i;
228 int res = -EINVAL;
229
Ying Xue34747532015-01-09 15:27:10 +0800230 if (!tn->own_addr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400231 pr_warn("Bearer <%s> rejected, not supported in standalone mode\n",
232 name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100233 return -ENOPROTOOPT;
Allan Stephensa10bd922006-06-25 23:52:17 -0700234 }
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500235 if (!bearer_name_validate(name, &b_names)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400236 pr_warn("Bearer <%s> rejected, illegal name\n", name);
Per Liden16cb4b32006-01-13 22:22:22 +0100237 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700238 }
Allan Stephens66e019a2011-04-20 16:24:07 -0500239 if (tipc_addr_domain_valid(disc_domain) &&
Ying Xue34747532015-01-09 15:27:10 +0800240 (disc_domain != tn->own_addr)) {
241 if (tipc_in_scope(disc_domain, tn->own_addr)) {
242 disc_domain = tn->own_addr & TIPC_CLUSTER_MASK;
Allan Stephens66e019a2011-04-20 16:24:07 -0500243 res = 0; /* accept any node in own cluster */
Ying Xue34747532015-01-09 15:27:10 +0800244 } else if (in_own_cluster_exact(net, disc_domain))
Allan Stephens66e019a2011-04-20 16:24:07 -0500245 res = 0; /* accept specified node in own cluster */
246 }
247 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400248 pr_warn("Bearer <%s> rejected, illegal discovery domain\n",
249 name);
Allan Stephensa10bd922006-06-25 23:52:17 -0700250 return -EINVAL;
251 }
Allan Stephens9efde4a2011-11-03 13:15:10 -0400252 if ((priority > TIPC_MAX_LINK_PRI) &&
Allan Stephensa10bd922006-06-25 23:52:17 -0700253 (priority != TIPC_MEDIA_LINK_PRI)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400254 pr_warn("Bearer <%s> rejected, illegal priority\n", name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100255 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700256 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100257
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500258 m_ptr = tipc_media_find(b_names.media_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100259 if (!m_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400260 pr_warn("Bearer <%s> rejected, media <%s> not registered\n",
261 name, b_names.media_name);
Ying Xue7216cd92014-04-21 10:55:48 +0800262 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100263 }
Per Liden16cb4b32006-01-13 22:22:22 +0100264
265 if (priority == TIPC_MEDIA_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100266 priority = m_ptr->priority;
267
268restart:
269 bearer_id = MAX_BEARERS;
270 with_this_prio = 1;
271 for (i = MAX_BEARERS; i-- != 0; ) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800272 b_ptr = rtnl_dereference(tn->bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800273 if (!b_ptr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100274 bearer_id = i;
275 continue;
276 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800277 if (!strcmp(name, b_ptr->name)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400278 pr_warn("Bearer <%s> rejected, already enabled\n",
279 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800280 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100281 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800282 if ((b_ptr->priority == priority) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100283 (++with_this_prio > 2)) {
284 if (priority-- == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400285 pr_warn("Bearer <%s> rejected, duplicate priority\n",
286 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800287 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100288 }
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400289 pr_warn("Bearer <%s> priority adjustment required %u->%u\n",
290 name, priority + 1, priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100291 goto restart;
292 }
293 }
294 if (bearer_id >= MAX_BEARERS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400295 pr_warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
296 name, MAX_BEARERS);
Ying Xue7216cd92014-04-21 10:55:48 +0800297 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100298 }
299
Ying Xue3874ccb2014-03-27 12:54:33 +0800300 b_ptr = kzalloc(sizeof(*b_ptr), GFP_ATOMIC);
Ying Xue7216cd92014-04-21 10:55:48 +0800301 if (!b_ptr)
302 return -ENOMEM;
303
Allan Stephens2d627b92011-01-07 13:00:11 -0500304 strcpy(b_ptr->name, name);
Ying Xuee4d050c2013-12-10 20:45:43 -0800305 b_ptr->media = m_ptr;
Erik Hugned0f91932015-03-05 10:23:49 +0100306 res = m_ptr->enable_media(net, b_ptr, attr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100307 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400308 pr_warn("Bearer <%s> rejected, enable failure (%d)\n",
309 name, -res);
Ying Xue7216cd92014-04-21 10:55:48 +0800310 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100311 }
312
313 b_ptr->identity = bearer_id;
Allan Stephens5c216e12011-10-18 11:34:29 -0400314 b_ptr->tolerance = m_ptr->tolerance;
315 b_ptr->window = m_ptr->window;
Erik Hugnea21a5842014-03-28 10:32:08 +0100316 b_ptr->domain = disc_domain;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100317 b_ptr->net_plane = bearer_id + 'A';
Per Lidenb97bf3f2006-01-02 19:04:38 +0100318 b_ptr->priority = priority;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500319
Ying Xuec93d3ba2015-01-09 15:27:04 +0800320 res = tipc_disc_create(net, b_ptr, &b_ptr->bcast_addr);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500321 if (res) {
Jon Paul Maloyb1c29f62015-05-14 10:46:11 -0400322 bearer_disable(net, b_ptr);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400323 pr_warn("Bearer <%s> rejected, discovery object creation failed\n",
324 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800325 return -EINVAL;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500326 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800327
Ying Xue7f9f95d2015-01-09 15:27:06 +0800328 rcu_assign_pointer(tn->bearer_list[bearer_id], b_ptr);
Ying Xue3874ccb2014-03-27 12:54:33 +0800329
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400330 pr_info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
331 name,
332 tipc_addr_string_fill(addr_string, disc_domain), priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100333 return res;
334}
335
336/**
Erik Hugne512137e2013-12-06 10:08:00 -0500337 * tipc_reset_bearer - Reset all links established over this bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100338 */
Ying Xuec93d3ba2015-01-09 15:27:04 +0800339static int tipc_reset_bearer(struct net *net, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100340{
Erik Hugne512137e2013-12-06 10:08:00 -0500341 pr_info("Resetting bearer <%s>\n", b_ptr->name);
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400342 tipc_node_delete_links(net, b_ptr->identity);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800343 tipc_disc_reset(net, b_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700344 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345}
346
347/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400348 * bearer_disable
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900349 *
Ying Xue7216cd92014-04-21 10:55:48 +0800350 * Note: This routine assumes caller holds RTNL lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100351 */
Jon Paul Maloyb1c29f62015-05-14 10:46:11 -0400352static void bearer_disable(struct net *net, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100353{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800354 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue3874ccb2014-03-27 12:54:33 +0800355 u32 i;
356
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400357 pr_info("Disabling bearer <%s>\n", b_ptr->name);
Ying Xue4babbaa2013-10-18 07:23:17 +0200358 b_ptr->media->disable_media(b_ptr);
Ying Xuea8304522014-02-13 17:29:17 -0500359
Jon Paul Maloy6144a992015-07-30 18:24:16 -0400360 tipc_node_delete_links(net, b_ptr->identity);
Jon Paul Maloy282b3a02015-10-15 14:52:45 -0400361 RCU_INIT_POINTER(b_ptr->media_ptr, NULL);
Ying Xuea8304522014-02-13 17:29:17 -0500362 if (b_ptr->link_req)
363 tipc_disc_delete(b_ptr->link_req);
Ying Xue3874ccb2014-03-27 12:54:33 +0800364
365 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800366 if (b_ptr == rtnl_dereference(tn->bearer_list[i])) {
367 RCU_INIT_POINTER(tn->bearer_list[i], NULL);
Ying Xue3874ccb2014-03-27 12:54:33 +0800368 break;
369 }
370 }
Ying Xuef8322df2014-04-21 10:55:45 +0800371 kfree_rcu(b_ptr, rcu);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100372}
373
Erik Hugned0f91932015-03-05 10:23:49 +0100374int tipc_enable_l2_media(struct net *net, struct tipc_bearer *b,
375 struct nlattr *attr[])
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 Maloy282b3a02015-10-15 14:52:45 -0400399 * Mark L2 bearer as inactive so that incoming buffers are thrown away
Ying Xuee4d050c2013-12-10 20:45:43 -0800400 */
401void tipc_disable_l2_media(struct tipc_bearer *b)
402{
Ying Xue2231c5a2014-04-21 10:55:47 +0800403 struct net_device *dev;
404
405 dev = (struct net_device *)rtnl_dereference(b->media_ptr);
Ying Xuee4d050c2013-12-10 20:45:43 -0800406 RCU_INIT_POINTER(dev->tipc_ptr, NULL);
Ying Xuef1c8d8c2014-04-21 10:55:49 +0800407 synchronize_net();
Ying Xuee4d050c2013-12-10 20:45:43 -0800408 dev_put(dev);
409}
410
411/**
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400412 * tipc_l2_send_msg - send a TIPC packet out over an L2 interface
Ying Xuee4d050c2013-12-10 20:45:43 -0800413 * @buf: the packet to be sent
stephen hemminger963a18552014-01-12 12:48:00 -0800414 * @b_ptr: the bearer through which the packet is to be sent
Ying Xuee4d050c2013-12-10 20:45:43 -0800415 * @dest: peer destination address
416 */
Ying Xue1da46562015-01-09 15:27:07 +0800417int tipc_l2_send_msg(struct net *net, struct sk_buff *buf,
418 struct tipc_bearer *b, struct tipc_media_addr *dest)
Ying Xuee4d050c2013-12-10 20:45:43 -0800419{
420 struct sk_buff *clone;
Ying Xue2231c5a2014-04-21 10:55:47 +0800421 struct net_device *dev;
Ying Xuee4d050c2013-12-10 20:45:43 -0800422 int delta;
Ying Xue2231c5a2014-04-21 10:55:47 +0800423
424 dev = (struct net_device *)rcu_dereference_rtnl(b->media_ptr);
425 if (!dev)
426 return 0;
Ying Xuee4d050c2013-12-10 20:45:43 -0800427
428 clone = skb_clone(buf, GFP_ATOMIC);
429 if (!clone)
430 return 0;
431
432 delta = dev->hard_header_len - skb_headroom(buf);
433 if ((delta > 0) &&
434 pskb_expand_head(clone, SKB_DATA_ALIGN(delta), 0, GFP_ATOMIC)) {
435 kfree_skb(clone);
436 return 0;
437 }
438
439 skb_reset_network_header(clone);
440 clone->dev = dev;
441 clone->protocol = htons(ETH_P_TIPC);
442 dev_hard_header(clone, dev, ETH_P_TIPC, dest->value,
443 dev->dev_addr, clone->len);
444 dev_queue_xmit(clone);
445 return 0;
446}
447
448/* tipc_bearer_send- sends buffer to destination over bearer
449 *
450 * IMPORTANT:
451 * The media send routine must not alter the buffer being passed in
452 * as it may be needed for later retransmission!
453 */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800454void tipc_bearer_send(struct net *net, u32 bearer_id, struct sk_buff *buf,
Ying Xuee4d050c2013-12-10 20:45:43 -0800455 struct tipc_media_addr *dest)
456{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800457 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800458 struct tipc_bearer *b_ptr;
459
460 rcu_read_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800461 b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800462 if (likely(b_ptr))
Ying Xue1da46562015-01-09 15:27:07 +0800463 b_ptr->media->send_msg(net, buf, b_ptr, dest);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800464 rcu_read_unlock();
Ying Xuee4d050c2013-12-10 20:45:43 -0800465}
466
Jon Paul Maloy959e1782015-10-22 08:51:43 -0400467int tipc_bearer_mtu(struct net *net, u32 bearer_id)
468{
469 int mtu = 0;
470 struct tipc_bearer *b;
471
472 rcu_read_lock();
473 b = rcu_dereference_rtnl(tipc_net(net)->bearer_list[bearer_id]);
474 if (b)
475 mtu = b->mtu;
476 rcu_read_unlock();
477 return mtu;
478}
479
Jon Paul Maloy60852d62015-10-22 08:51:44 -0400480/* tipc_bearer_xmit_skb - sends buffer to destination over bearer
481 */
482void tipc_bearer_xmit_skb(struct net *net, u32 bearer_id,
483 struct sk_buff *skb,
484 struct tipc_media_addr *dest)
485{
486 struct tipc_net *tn = tipc_net(net);
487 struct tipc_bearer *b;
488
489 rcu_read_lock();
490 b = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
491 if (likely(b))
492 b->media->send_msg(net, skb, b, dest);
493 rcu_read_unlock();
494 /* Until we remove cloning in tipc_l2_send_msg(): */
495 kfree_skb(skb);
496}
497
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400498/* tipc_bearer_xmit() -send buffer to destination over bearer
499 */
500void tipc_bearer_xmit(struct net *net, u32 bearer_id,
501 struct sk_buff_head *xmitq,
502 struct tipc_media_addr *dst)
503{
504 struct tipc_net *tn = net_generic(net, tipc_net_id);
505 struct tipc_bearer *b;
506 struct sk_buff *skb, *tmp;
507
508 if (skb_queue_empty(xmitq))
509 return;
510
511 rcu_read_lock();
512 b = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
513 if (likely(b)) {
514 skb_queue_walk_safe(xmitq, skb, tmp) {
515 __skb_dequeue(xmitq);
516 b->media->send_msg(net, skb, b, dst);
517 /* Until we remove cloning in tipc_l2_send_msg(): */
518 kfree_skb(skb);
519 }
520 }
521 rcu_read_unlock();
522}
523
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400524/* tipc_bearer_bc_xmit() - broadcast buffers to all destinations
525 */
526void tipc_bearer_bc_xmit(struct net *net, u32 bearer_id,
527 struct sk_buff_head *xmitq)
528{
529 struct tipc_net *tn = tipc_net(net);
530 int net_id = tn->net_id;
531 struct tipc_bearer *b;
532 struct sk_buff *skb, *tmp;
533 struct tipc_msg *hdr;
534
535 rcu_read_lock();
536 b = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
537 if (likely(b)) {
538 skb_queue_walk_safe(xmitq, skb, tmp) {
539 hdr = buf_msg(skb);
540 msg_set_non_seq(hdr, 1);
541 msg_set_mc_netid(hdr, net_id);
542 __skb_dequeue(xmitq);
543 b->media->send_msg(net, skb, b, &b->bcast_addr);
544 /* Until we remove cloning in tipc_l2_send_msg(): */
545 kfree_skb(skb);
546 }
547 }
548 rcu_read_unlock();
549}
550
Ying Xue6e967ad2013-12-10 20:45:42 -0800551/**
552 * tipc_l2_rcv_msg - handle incoming TIPC message from an interface
553 * @buf: the received packet
554 * @dev: the net device that the packet was received on
555 * @pt: the packet_type structure which was used to register this handler
556 * @orig_dev: the original receive net device in case the device is a bond
557 *
558 * Accept only packets explicitly sent to this node, or broadcast packets;
559 * ignores packets sent using interface multicast, and traffic sent to other
560 * nodes (which can happen if interface is running in promiscuous mode).
561 */
562static int tipc_l2_rcv_msg(struct sk_buff *buf, struct net_device *dev,
563 struct packet_type *pt, struct net_device *orig_dev)
564{
565 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100566
Ying Xue6e967ad2013-12-10 20:45:42 -0800567 rcu_read_lock();
Ying Xueca07fb02014-04-21 10:55:43 +0800568 b_ptr = rcu_dereference_rtnl(dev->tipc_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800569 if (likely(b_ptr)) {
570 if (likely(buf->pkt_type <= PACKET_BROADCAST)) {
571 buf->next = NULL;
Ying Xuec93d3ba2015-01-09 15:27:04 +0800572 tipc_rcv(dev_net(dev), buf, b_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800573 rcu_read_unlock();
574 return NET_RX_SUCCESS;
575 }
576 }
577 rcu_read_unlock();
578
579 kfree_skb(buf);
580 return NET_RX_DROP;
581}
582
583/**
584 * tipc_l2_device_event - handle device events from network device
585 * @nb: the context of the notification
586 * @evt: the type of event
587 * @ptr: the net device that the event was on
588 *
589 * This function is called by the Ethernet driver in case of link
590 * change event.
591 */
592static int tipc_l2_device_event(struct notifier_block *nb, unsigned long evt,
593 void *ptr)
594{
Ying Xue6e967ad2013-12-10 20:45:42 -0800595 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800596 struct net *net = dev_net(dev);
597 struct tipc_bearer *b_ptr;
Ying Xue6e967ad2013-12-10 20:45:42 -0800598
Ying Xueca07fb02014-04-21 10:55:43 +0800599 b_ptr = rtnl_dereference(dev->tipc_ptr);
600 if (!b_ptr)
Ying Xue6e967ad2013-12-10 20:45:42 -0800601 return NOTIFY_DONE;
Ying Xue6e967ad2013-12-10 20:45:42 -0800602
603 b_ptr->mtu = dev->mtu;
604
605 switch (evt) {
606 case NETDEV_CHANGE:
607 if (netif_carrier_ok(dev))
608 break;
Jon Paul Maloy282b3a02015-10-15 14:52:45 -0400609 case NETDEV_GOING_DOWN:
Ying Xue6e967ad2013-12-10 20:45:42 -0800610 case NETDEV_CHANGEMTU:
Ying Xuec93d3ba2015-01-09 15:27:04 +0800611 tipc_reset_bearer(net, b_ptr);
Erik Hugnea21a5842014-03-28 10:32:08 +0100612 break;
Ying Xue6e967ad2013-12-10 20:45:42 -0800613 case NETDEV_CHANGEADDR:
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400614 b_ptr->media->raw2addr(b_ptr, &b_ptr->addr,
Erik Hugnea21a5842014-03-28 10:32:08 +0100615 (char *)dev->dev_addr);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800616 tipc_reset_bearer(net, b_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800617 break;
618 case NETDEV_UNREGISTER:
619 case NETDEV_CHANGENAME:
Jon Paul Maloyb1c29f62015-05-14 10:46:11 -0400620 bearer_disable(dev_net(dev), b_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800621 break;
622 }
Ying Xue6e967ad2013-12-10 20:45:42 -0800623 return NOTIFY_OK;
624}
625
626static struct packet_type tipc_packet_type __read_mostly = {
Joe Perches184593c2014-03-12 10:04:20 -0700627 .type = htons(ETH_P_TIPC),
Ying Xue6e967ad2013-12-10 20:45:42 -0800628 .func = tipc_l2_rcv_msg,
629};
630
631static struct notifier_block notifier = {
632 .notifier_call = tipc_l2_device_event,
633 .priority = 0,
634};
635
636int tipc_bearer_setup(void)
637{
Ying Xue970122f2014-02-20 11:32:50 +0800638 int err;
639
640 err = register_netdevice_notifier(&notifier);
641 if (err)
642 return err;
Ying Xue6e967ad2013-12-10 20:45:42 -0800643 dev_add_pack(&tipc_packet_type);
Ying Xue970122f2014-02-20 11:32:50 +0800644 return 0;
Ying Xue6e967ad2013-12-10 20:45:42 -0800645}
646
647void tipc_bearer_cleanup(void)
648{
649 unregister_netdevice_notifier(&notifier);
650 dev_remove_pack(&tipc_packet_type);
651}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100652
Ying Xuef2f98002015-01-09 15:27:05 +0800653void tipc_bearer_stop(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100654{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800655 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue3874ccb2014-03-27 12:54:33 +0800656 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100657 u32 i;
658
Per Lidenb97bf3f2006-01-02 19:04:38 +0100659 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800660 b_ptr = rtnl_dereference(tn->bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800661 if (b_ptr) {
Jon Paul Maloyb1c29f62015-05-14 10:46:11 -0400662 bearer_disable(net, b_ptr);
Ying Xue7f9f95d2015-01-09 15:27:06 +0800663 tn->bearer_list[i] = NULL;
Ying Xue3874ccb2014-03-27 12:54:33 +0800664 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100665 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100666}
Richard Alpe0655f6a2014-11-20 10:29:07 +0100667
Richard Alpe35b9dd72014-11-20 10:29:08 +0100668/* Caller should hold rtnl_lock to protect the bearer */
Richard Alped8182802014-11-24 11:10:29 +0100669static int __tipc_nl_add_bearer(struct tipc_nl_msg *msg,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200670 struct tipc_bearer *bearer, int nlflags)
Richard Alpe35b9dd72014-11-20 10:29:08 +0100671{
672 void *hdr;
673 struct nlattr *attrs;
674 struct nlattr *prop;
675
Richard Alpebfb3e5d2015-02-09 09:50:03 +0100676 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200677 nlflags, TIPC_NL_BEARER_GET);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100678 if (!hdr)
679 return -EMSGSIZE;
680
681 attrs = nla_nest_start(msg->skb, TIPC_NLA_BEARER);
682 if (!attrs)
683 goto msg_full;
684
685 if (nla_put_string(msg->skb, TIPC_NLA_BEARER_NAME, bearer->name))
686 goto attr_msg_full;
687
688 prop = nla_nest_start(msg->skb, TIPC_NLA_BEARER_PROP);
689 if (!prop)
690 goto prop_msg_full;
691 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, bearer->priority))
692 goto prop_msg_full;
693 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, bearer->tolerance))
694 goto prop_msg_full;
695 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, bearer->window))
696 goto prop_msg_full;
697
698 nla_nest_end(msg->skb, prop);
699 nla_nest_end(msg->skb, attrs);
700 genlmsg_end(msg->skb, hdr);
701
702 return 0;
703
704prop_msg_full:
705 nla_nest_cancel(msg->skb, prop);
706attr_msg_full:
707 nla_nest_cancel(msg->skb, attrs);
708msg_full:
709 genlmsg_cancel(msg->skb, hdr);
710
711 return -EMSGSIZE;
712}
713
714int tipc_nl_bearer_dump(struct sk_buff *skb, struct netlink_callback *cb)
715{
716 int err;
717 int i = cb->args[0];
718 struct tipc_bearer *bearer;
719 struct tipc_nl_msg msg;
Ying Xue7f9f95d2015-01-09 15:27:06 +0800720 struct net *net = sock_net(skb->sk);
721 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100722
723 if (i == MAX_BEARERS)
724 return 0;
725
726 msg.skb = skb;
727 msg.portid = NETLINK_CB(cb->skb).portid;
728 msg.seq = cb->nlh->nlmsg_seq;
729
730 rtnl_lock();
731 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800732 bearer = rtnl_dereference(tn->bearer_list[i]);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100733 if (!bearer)
734 continue;
735
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200736 err = __tipc_nl_add_bearer(&msg, bearer, NLM_F_MULTI);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100737 if (err)
738 break;
739 }
740 rtnl_unlock();
741
742 cb->args[0] = i;
743 return skb->len;
744}
745
746int tipc_nl_bearer_get(struct sk_buff *skb, struct genl_info *info)
747{
748 int err;
749 char *name;
750 struct sk_buff *rep;
751 struct tipc_bearer *bearer;
752 struct tipc_nl_msg msg;
753 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Ying Xue7f9f95d2015-01-09 15:27:06 +0800754 struct net *net = genl_info_net(info);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100755
756 if (!info->attrs[TIPC_NLA_BEARER])
757 return -EINVAL;
758
759 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
760 info->attrs[TIPC_NLA_BEARER],
761 tipc_nl_bearer_policy);
762 if (err)
763 return err;
764
765 if (!attrs[TIPC_NLA_BEARER_NAME])
766 return -EINVAL;
767 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
768
769 rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
770 if (!rep)
771 return -ENOMEM;
772
773 msg.skb = rep;
774 msg.portid = info->snd_portid;
775 msg.seq = info->snd_seq;
776
777 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800778 bearer = tipc_bearer_find(net, name);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100779 if (!bearer) {
780 err = -EINVAL;
781 goto err_out;
782 }
783
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200784 err = __tipc_nl_add_bearer(&msg, bearer, 0);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100785 if (err)
786 goto err_out;
787 rtnl_unlock();
788
789 return genlmsg_reply(rep, info);
790err_out:
791 rtnl_unlock();
792 nlmsg_free(rep);
793
794 return err;
795}
796
Richard Alpe0655f6a2014-11-20 10:29:07 +0100797int tipc_nl_bearer_disable(struct sk_buff *skb, struct genl_info *info)
798{
799 int err;
800 char *name;
801 struct tipc_bearer *bearer;
802 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Richard Alpe9ab15462015-02-09 09:50:05 +0100803 struct net *net = sock_net(skb->sk);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100804
805 if (!info->attrs[TIPC_NLA_BEARER])
806 return -EINVAL;
807
808 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
809 info->attrs[TIPC_NLA_BEARER],
810 tipc_nl_bearer_policy);
811 if (err)
812 return err;
813
814 if (!attrs[TIPC_NLA_BEARER_NAME])
815 return -EINVAL;
816
817 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
818
819 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800820 bearer = tipc_bearer_find(net, name);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100821 if (!bearer) {
822 rtnl_unlock();
823 return -EINVAL;
824 }
825
Jon Paul Maloyb1c29f62015-05-14 10:46:11 -0400826 bearer_disable(net, bearer);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100827 rtnl_unlock();
828
829 return 0;
830}
831
832int tipc_nl_bearer_enable(struct sk_buff *skb, struct genl_info *info)
833{
834 int err;
835 char *bearer;
836 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Richard Alpe9ab15462015-02-09 09:50:05 +0100837 struct net *net = sock_net(skb->sk);
838 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100839 u32 domain;
840 u32 prio;
841
842 prio = TIPC_MEDIA_LINK_PRI;
Ying Xue34747532015-01-09 15:27:10 +0800843 domain = tn->own_addr & TIPC_CLUSTER_MASK;
Richard Alpe0655f6a2014-11-20 10:29:07 +0100844
845 if (!info->attrs[TIPC_NLA_BEARER])
846 return -EINVAL;
847
848 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
849 info->attrs[TIPC_NLA_BEARER],
850 tipc_nl_bearer_policy);
851 if (err)
852 return err;
853
854 if (!attrs[TIPC_NLA_BEARER_NAME])
855 return -EINVAL;
856
857 bearer = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
858
859 if (attrs[TIPC_NLA_BEARER_DOMAIN])
860 domain = nla_get_u32(attrs[TIPC_NLA_BEARER_DOMAIN]);
861
862 if (attrs[TIPC_NLA_BEARER_PROP]) {
863 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
864
865 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
866 props);
867 if (err)
868 return err;
869
870 if (props[TIPC_NLA_PROP_PRIO])
871 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
872 }
873
874 rtnl_lock();
Erik Hugned0f91932015-03-05 10:23:49 +0100875 err = tipc_enable_bearer(net, bearer, domain, prio, attrs);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100876 if (err) {
877 rtnl_unlock();
878 return err;
879 }
880 rtnl_unlock();
881
882 return 0;
883}
Richard Alpe315c00b2014-11-20 10:29:09 +0100884
885int tipc_nl_bearer_set(struct sk_buff *skb, struct genl_info *info)
886{
887 int err;
888 char *name;
889 struct tipc_bearer *b;
890 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Richard Alpec3d6fb82015-05-06 13:58:54 +0200891 struct net *net = sock_net(skb->sk);
Richard Alpe315c00b2014-11-20 10:29:09 +0100892
893 if (!info->attrs[TIPC_NLA_BEARER])
894 return -EINVAL;
895
896 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
897 info->attrs[TIPC_NLA_BEARER],
898 tipc_nl_bearer_policy);
899 if (err)
900 return err;
901
902 if (!attrs[TIPC_NLA_BEARER_NAME])
903 return -EINVAL;
904 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
905
906 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800907 b = tipc_bearer_find(net, name);
Richard Alpe315c00b2014-11-20 10:29:09 +0100908 if (!b) {
909 rtnl_unlock();
910 return -EINVAL;
911 }
912
913 if (attrs[TIPC_NLA_BEARER_PROP]) {
914 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
915
916 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
917 props);
918 if (err) {
919 rtnl_unlock();
920 return err;
921 }
922
923 if (props[TIPC_NLA_PROP_TOL])
924 b->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
925 if (props[TIPC_NLA_PROP_PRIO])
926 b->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
927 if (props[TIPC_NLA_PROP_WIN])
928 b->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
929 }
930 rtnl_unlock();
931
932 return 0;
933}
Richard Alpe46f15c62014-11-20 10:29:15 +0100934
Richard Alped8182802014-11-24 11:10:29 +0100935static int __tipc_nl_add_media(struct tipc_nl_msg *msg,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200936 struct tipc_media *media, int nlflags)
Richard Alpe46f15c62014-11-20 10:29:15 +0100937{
938 void *hdr;
939 struct nlattr *attrs;
940 struct nlattr *prop;
941
Richard Alpebfb3e5d2015-02-09 09:50:03 +0100942 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200943 nlflags, TIPC_NL_MEDIA_GET);
Richard Alpe46f15c62014-11-20 10:29:15 +0100944 if (!hdr)
945 return -EMSGSIZE;
946
947 attrs = nla_nest_start(msg->skb, TIPC_NLA_MEDIA);
948 if (!attrs)
949 goto msg_full;
950
951 if (nla_put_string(msg->skb, TIPC_NLA_MEDIA_NAME, media->name))
952 goto attr_msg_full;
953
954 prop = nla_nest_start(msg->skb, TIPC_NLA_MEDIA_PROP);
955 if (!prop)
956 goto prop_msg_full;
957 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, media->priority))
958 goto prop_msg_full;
959 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, media->tolerance))
960 goto prop_msg_full;
961 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, media->window))
962 goto prop_msg_full;
963
964 nla_nest_end(msg->skb, prop);
965 nla_nest_end(msg->skb, attrs);
966 genlmsg_end(msg->skb, hdr);
967
968 return 0;
969
970prop_msg_full:
971 nla_nest_cancel(msg->skb, prop);
972attr_msg_full:
973 nla_nest_cancel(msg->skb, attrs);
974msg_full:
975 genlmsg_cancel(msg->skb, hdr);
976
977 return -EMSGSIZE;
978}
979
980int tipc_nl_media_dump(struct sk_buff *skb, struct netlink_callback *cb)
981{
982 int err;
983 int i = cb->args[0];
984 struct tipc_nl_msg msg;
985
986 if (i == MAX_MEDIA)
987 return 0;
988
989 msg.skb = skb;
990 msg.portid = NETLINK_CB(cb->skb).portid;
991 msg.seq = cb->nlh->nlmsg_seq;
992
993 rtnl_lock();
994 for (; media_info_array[i] != NULL; i++) {
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200995 err = __tipc_nl_add_media(&msg, media_info_array[i],
996 NLM_F_MULTI);
Richard Alpe46f15c62014-11-20 10:29:15 +0100997 if (err)
998 break;
999 }
1000 rtnl_unlock();
1001
1002 cb->args[0] = i;
1003 return skb->len;
1004}
1005
1006int tipc_nl_media_get(struct sk_buff *skb, struct genl_info *info)
1007{
1008 int err;
1009 char *name;
1010 struct tipc_nl_msg msg;
1011 struct tipc_media *media;
1012 struct sk_buff *rep;
1013 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
1014
1015 if (!info->attrs[TIPC_NLA_MEDIA])
1016 return -EINVAL;
1017
1018 err = nla_parse_nested(attrs, TIPC_NLA_MEDIA_MAX,
1019 info->attrs[TIPC_NLA_MEDIA],
1020 tipc_nl_media_policy);
1021 if (err)
1022 return err;
1023
1024 if (!attrs[TIPC_NLA_MEDIA_NAME])
1025 return -EINVAL;
1026 name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
1027
1028 rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
1029 if (!rep)
1030 return -ENOMEM;
1031
1032 msg.skb = rep;
1033 msg.portid = info->snd_portid;
1034 msg.seq = info->snd_seq;
1035
1036 rtnl_lock();
1037 media = tipc_media_find(name);
1038 if (!media) {
1039 err = -EINVAL;
1040 goto err_out;
1041 }
1042
Nicolas Dichtelf2f67392015-04-28 18:33:50 +02001043 err = __tipc_nl_add_media(&msg, media, 0);
Richard Alpe46f15c62014-11-20 10:29:15 +01001044 if (err)
1045 goto err_out;
1046 rtnl_unlock();
1047
1048 return genlmsg_reply(rep, info);
1049err_out:
1050 rtnl_unlock();
1051 nlmsg_free(rep);
1052
1053 return err;
1054}
Richard Alpe1e554172014-11-20 10:29:16 +01001055
1056int tipc_nl_media_set(struct sk_buff *skb, struct genl_info *info)
1057{
1058 int err;
1059 char *name;
1060 struct tipc_media *m;
1061 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
1062
1063 if (!info->attrs[TIPC_NLA_MEDIA])
1064 return -EINVAL;
1065
1066 err = nla_parse_nested(attrs, TIPC_NLA_MEDIA_MAX,
1067 info->attrs[TIPC_NLA_MEDIA],
1068 tipc_nl_media_policy);
1069
1070 if (!attrs[TIPC_NLA_MEDIA_NAME])
1071 return -EINVAL;
1072 name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
1073
1074 rtnl_lock();
1075 m = tipc_media_find(name);
1076 if (!m) {
1077 rtnl_unlock();
1078 return -EINVAL;
1079 }
1080
1081 if (attrs[TIPC_NLA_MEDIA_PROP]) {
1082 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
1083
1084 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_MEDIA_PROP],
1085 props);
1086 if (err) {
1087 rtnl_unlock();
1088 return err;
1089 }
1090
1091 if (props[TIPC_NLA_PROP_TOL])
1092 m->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
1093 if (props[TIPC_NLA_PROP_PRIO])
1094 m->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1095 if (props[TIPC_NLA_PROP_WIN])
1096 m->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
1097 }
1098 rtnl_unlock();
1099
1100 return 0;
1101}