blob: 2fe9dcb418d410363b4315c1812c0f97c0896530 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/bearer.c: TIPC bearer code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Richard Alpe0655f6a2014-11-20 10:29:07 +01004 * Copyright (c) 1996-2006, 2013-2014, Ericsson AB
Ying Xuee4d050c2013-12-10 20:45:43 -08005 * Copyright (c) 2004-2006, 2010-2013, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
Ying Xue7f9f95d2015-01-09 15:27:06 +080037#include <net/sock.h>
Per Lidenb97bf3f2006-01-02 19:04:38 +010038#include "core.h"
39#include "config.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "bearer.h"
Richard Alpe0655f6a2014-11-20 10:29:07 +010041#include "link.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010042#include "discover.h"
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)))
Erik Hugnedc1aed32012-06-29 00:50:23 -0400114 ret = tipc_snprintf(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
Erik Hugnedc1aed32012-06-29 00:50:23 -0400118 ret = tipc_snprintf(buf, len, "UNKNOWN(%u)", a->media_id);
Allan Stephens3d749a62011-10-07 15:19:11 -0400119 for (i = 0; i < sizeof(a->value); i++)
Erik Hugnedc1aed32012-06-29 00:50:23 -0400120 ret += tipc_snprintf(buf - ret, len + ret,
121 "-%02x", a->value[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122 }
123}
124
125/**
Per Liden4323add2006-01-18 00:38:21 +0100126 * tipc_media_get_names - record names of registered media in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127 */
Per Liden4323add2006-01-18 00:38:21 +0100128struct sk_buff *tipc_media_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100129{
130 struct sk_buff *buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100131 int i;
132
Per Liden4323add2006-01-18 00:38:21 +0100133 buf = tipc_cfg_reply_alloc(MAX_MEDIA * TLV_SPACE(TIPC_MAX_MEDIA_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100134 if (!buf)
135 return NULL;
136
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800137 for (i = 0; media_info_array[i] != NULL; i++) {
Allan Stephensa31abe82011-10-07 09:25:12 -0400138 tipc_cfg_append_tlv(buf, TIPC_TLV_MEDIA_NAME,
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800139 media_info_array[i]->name,
140 strlen(media_info_array[i]->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100141 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100142 return buf;
143}
144
145/**
146 * bearer_name_validate - validate & (optionally) deconstruct bearer name
Ben Hutchings2c530402012-07-10 10:55:09 +0000147 * @name: ptr to bearer name string
148 * @name_parts: ptr to area for bearer name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900149 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100150 * Returns 1 if bearer name is valid, otherwise 0.
151 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900152static int bearer_name_validate(const char *name,
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500153 struct tipc_bearer_names *name_parts)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100154{
155 char name_copy[TIPC_MAX_BEARER_NAME];
156 char *media_name;
157 char *if_name;
158 u32 media_len;
159 u32 if_len;
160
161 /* copy bearer name & ensure length is OK */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100162 name_copy[TIPC_MAX_BEARER_NAME - 1] = 0;
163 /* need above in case non-Posix strncpy() doesn't pad with nulls */
164 strncpy(name_copy, name, TIPC_MAX_BEARER_NAME);
165 if (name_copy[TIPC_MAX_BEARER_NAME - 1] != 0)
166 return 0;
167
168 /* ensure all component parts of bearer name are present */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100169 media_name = name_copy;
Allan Stephens2db99832010-12-31 18:59:33 +0000170 if_name = strchr(media_name, ':');
171 if (if_name == NULL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100172 return 0;
173 *(if_name++) = 0;
174 media_len = if_name - media_name;
175 if_len = strlen(if_name) + 1;
176
177 /* validate component parts of bearer name */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900178 if ((media_len <= 1) || (media_len > TIPC_MAX_MEDIA_NAME) ||
Ying Xuefc073932012-08-16 12:09:08 +0000179 (if_len <= 1) || (if_len > TIPC_MAX_IF_NAME))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100180 return 0;
181
182 /* return bearer name components, if necessary */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100183 if (name_parts) {
184 strcpy(name_parts->media_name, media_name);
185 strcpy(name_parts->if_name, if_name);
186 }
187 return 1;
188}
189
190/**
Allan Stephens5c216e12011-10-18 11:34:29 -0400191 * tipc_bearer_find - locates bearer object with matching bearer name
Per Lidenb97bf3f2006-01-02 19:04:38 +0100192 */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800193struct tipc_bearer *tipc_bearer_find(struct net *net, const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100194{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800195 struct tipc_net *tn = net_generic(net, tipc_net_id);
Allan Stephens2d627b92011-01-07 13:00:11 -0500196 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100197 u32 i;
198
Ying Xue3874ccb2014-03-27 12:54:33 +0800199 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800200 b_ptr = rtnl_dereference(tn->bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800201 if (b_ptr && (!strcmp(b_ptr->name, name)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100202 return b_ptr;
203 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800204 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100205}
206
207/**
Per Liden4323add2006-01-18 00:38:21 +0100208 * tipc_bearer_get_names - record names of bearers in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100209 */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800210struct sk_buff *tipc_bearer_get_names(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100211{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800212 struct tipc_net *tn = net_generic(net, tipc_net_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100213 struct sk_buff *buf;
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800214 struct tipc_bearer *b;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100215 int i, j;
216
Per Liden4323add2006-01-18 00:38:21 +0100217 buf = tipc_cfg_reply_alloc(MAX_BEARERS * TLV_SPACE(TIPC_MAX_BEARER_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100218 if (!buf)
219 return NULL;
220
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800221 for (i = 0; media_info_array[i] != NULL; i++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100222 for (j = 0; j < MAX_BEARERS; j++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800223 b = rtnl_dereference(tn->bearer_list[j]);
Ying Xue3874ccb2014-03-27 12:54:33 +0800224 if (!b)
225 continue;
Ying Xuef47de122014-03-27 12:54:34 +0800226 if (b->media == media_info_array[i]) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900227 tipc_cfg_append_tlv(buf, TIPC_TLV_BEARER_NAME,
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800228 b->name,
229 strlen(b->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100230 }
231 }
232 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100233 return buf;
234}
235
Ying Xue7f9f95d2015-01-09 15:27:06 +0800236void tipc_bearer_add_dest(struct net *net, u32 bearer_id, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800238 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800239 struct tipc_bearer *b_ptr;
240
241 rcu_read_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800242 b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800243 if (b_ptr) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800244 tipc_bcbearer_sort(net, &b_ptr->nodes, dest, true);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800245 tipc_disc_add_dest(b_ptr->link_req);
246 }
247 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100248}
249
Ying Xue7f9f95d2015-01-09 15:27:06 +0800250void tipc_bearer_remove_dest(struct net *net, u32 bearer_id, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100251{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800252 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800253 struct tipc_bearer *b_ptr;
254
255 rcu_read_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800256 b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800257 if (b_ptr) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800258 tipc_bcbearer_sort(net, &b_ptr->nodes, dest, false);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800259 tipc_disc_remove_dest(b_ptr->link_req);
260 }
261 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100262}
263
Allan Stephensb274f4a2010-05-11 14:30:16 +0000264/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100265 * tipc_enable_bearer - enable bearer with the given name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900266 */
Ying Xuec93d3ba2015-01-09 15:27:04 +0800267int tipc_enable_bearer(struct net *net, const char *name, u32 disc_domain,
268 u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100269{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800270 struct tipc_net *tn = net_generic(net, tipc_net_id);
Allan Stephens2d627b92011-01-07 13:00:11 -0500271 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500272 struct tipc_media *m_ptr;
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500273 struct tipc_bearer_names b_names;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100274 char addr_string[16];
275 u32 bearer_id;
276 u32 with_this_prio;
277 u32 i;
278 int res = -EINVAL;
279
Allan Stephensb58343f2011-11-08 13:48:28 -0500280 if (!tipc_own_addr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400281 pr_warn("Bearer <%s> rejected, not supported in standalone mode\n",
282 name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100283 return -ENOPROTOOPT;
Allan Stephensa10bd922006-06-25 23:52:17 -0700284 }
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500285 if (!bearer_name_validate(name, &b_names)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400286 pr_warn("Bearer <%s> rejected, illegal name\n", name);
Per Liden16cb4b32006-01-13 22:22:22 +0100287 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700288 }
Allan Stephens66e019a2011-04-20 16:24:07 -0500289 if (tipc_addr_domain_valid(disc_domain) &&
290 (disc_domain != tipc_own_addr)) {
291 if (tipc_in_scope(disc_domain, tipc_own_addr)) {
292 disc_domain = tipc_own_addr & TIPC_CLUSTER_MASK;
293 res = 0; /* accept any node in own cluster */
Allan Stephens336ebf52012-04-17 18:02:01 -0400294 } else if (in_own_cluster_exact(disc_domain))
Allan Stephens66e019a2011-04-20 16:24:07 -0500295 res = 0; /* accept specified node in own cluster */
296 }
297 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400298 pr_warn("Bearer <%s> rejected, illegal discovery domain\n",
299 name);
Allan Stephensa10bd922006-06-25 23:52:17 -0700300 return -EINVAL;
301 }
Allan Stephens9efde4a2011-11-03 13:15:10 -0400302 if ((priority > TIPC_MAX_LINK_PRI) &&
Allan Stephensa10bd922006-06-25 23:52:17 -0700303 (priority != TIPC_MEDIA_LINK_PRI)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400304 pr_warn("Bearer <%s> rejected, illegal priority\n", name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100305 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700306 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100307
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500308 m_ptr = tipc_media_find(b_names.media_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100309 if (!m_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400310 pr_warn("Bearer <%s> rejected, media <%s> not registered\n",
311 name, b_names.media_name);
Ying Xue7216cd92014-04-21 10:55:48 +0800312 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100313 }
Per Liden16cb4b32006-01-13 22:22:22 +0100314
315 if (priority == TIPC_MEDIA_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100316 priority = m_ptr->priority;
317
318restart:
319 bearer_id = MAX_BEARERS;
320 with_this_prio = 1;
321 for (i = MAX_BEARERS; i-- != 0; ) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800322 b_ptr = rtnl_dereference(tn->bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800323 if (!b_ptr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100324 bearer_id = i;
325 continue;
326 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800327 if (!strcmp(name, b_ptr->name)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400328 pr_warn("Bearer <%s> rejected, already enabled\n",
329 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800330 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100331 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800332 if ((b_ptr->priority == priority) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100333 (++with_this_prio > 2)) {
334 if (priority-- == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400335 pr_warn("Bearer <%s> rejected, duplicate priority\n",
336 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800337 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100338 }
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400339 pr_warn("Bearer <%s> priority adjustment required %u->%u\n",
340 name, priority + 1, priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100341 goto restart;
342 }
343 }
344 if (bearer_id >= MAX_BEARERS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400345 pr_warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
346 name, MAX_BEARERS);
Ying Xue7216cd92014-04-21 10:55:48 +0800347 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100348 }
349
Ying Xue3874ccb2014-03-27 12:54:33 +0800350 b_ptr = kzalloc(sizeof(*b_ptr), GFP_ATOMIC);
Ying Xue7216cd92014-04-21 10:55:48 +0800351 if (!b_ptr)
352 return -ENOMEM;
353
Allan Stephens2d627b92011-01-07 13:00:11 -0500354 strcpy(b_ptr->name, name);
Ying Xuee4d050c2013-12-10 20:45:43 -0800355 b_ptr->media = m_ptr;
Ying Xue7f9f95d2015-01-09 15:27:06 +0800356 res = m_ptr->enable_media(net, b_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100357 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400358 pr_warn("Bearer <%s> rejected, enable failure (%d)\n",
359 name, -res);
Ying Xue7216cd92014-04-21 10:55:48 +0800360 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361 }
362
363 b_ptr->identity = bearer_id;
Allan Stephens5c216e12011-10-18 11:34:29 -0400364 b_ptr->tolerance = m_ptr->tolerance;
365 b_ptr->window = m_ptr->window;
Erik Hugnea21a5842014-03-28 10:32:08 +0100366 b_ptr->domain = disc_domain;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100367 b_ptr->net_plane = bearer_id + 'A';
Per Lidenb97bf3f2006-01-02 19:04:38 +0100368 b_ptr->priority = priority;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500369
Ying Xuec93d3ba2015-01-09 15:27:04 +0800370 res = tipc_disc_create(net, b_ptr, &b_ptr->bcast_addr);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500371 if (res) {
Ying Xuef2f98002015-01-09 15:27:05 +0800372 bearer_disable(net, b_ptr, false);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400373 pr_warn("Bearer <%s> rejected, discovery object creation failed\n",
374 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800375 return -EINVAL;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500376 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800377
Ying Xue7f9f95d2015-01-09 15:27:06 +0800378 rcu_assign_pointer(tn->bearer_list[bearer_id], b_ptr);
Ying Xue3874ccb2014-03-27 12:54:33 +0800379
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400380 pr_info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
381 name,
382 tipc_addr_string_fill(addr_string, disc_domain), priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100383 return res;
384}
385
386/**
Erik Hugne512137e2013-12-06 10:08:00 -0500387 * tipc_reset_bearer - Reset all links established over this bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100388 */
Ying Xuec93d3ba2015-01-09 15:27:04 +0800389static int tipc_reset_bearer(struct net *net, struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100390{
Erik Hugne512137e2013-12-06 10:08:00 -0500391 pr_info("Resetting bearer <%s>\n", b_ptr->name);
Ying Xuef2f98002015-01-09 15:27:05 +0800392 tipc_link_reset_list(net, b_ptr->identity);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800393 tipc_disc_reset(net, b_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700394 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100395}
396
397/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400398 * bearer_disable
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900399 *
Ying Xue7216cd92014-04-21 10:55:48 +0800400 * Note: This routine assumes caller holds RTNL lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100401 */
Ying Xuef2f98002015-01-09 15:27:05 +0800402static void bearer_disable(struct net *net, struct tipc_bearer *b_ptr,
403 bool shutting_down)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100404{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800405 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue3874ccb2014-03-27 12:54:33 +0800406 u32 i;
407
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400408 pr_info("Disabling bearer <%s>\n", b_ptr->name);
Ying Xue4babbaa2013-10-18 07:23:17 +0200409 b_ptr->media->disable_media(b_ptr);
Ying Xuea8304522014-02-13 17:29:17 -0500410
Ying Xuef2f98002015-01-09 15:27:05 +0800411 tipc_link_delete_list(net, b_ptr->identity, shutting_down);
Ying Xuea8304522014-02-13 17:29:17 -0500412 if (b_ptr->link_req)
413 tipc_disc_delete(b_ptr->link_req);
Ying Xue3874ccb2014-03-27 12:54:33 +0800414
415 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800416 if (b_ptr == rtnl_dereference(tn->bearer_list[i])) {
417 RCU_INIT_POINTER(tn->bearer_list[i], NULL);
Ying Xue3874ccb2014-03-27 12:54:33 +0800418 break;
419 }
420 }
Ying Xuef8322df2014-04-21 10:55:45 +0800421 kfree_rcu(b_ptr, rcu);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100422}
423
Ying Xuef2f98002015-01-09 15:27:05 +0800424int tipc_disable_bearer(struct net *net, const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100425{
Allan Stephens2d627b92011-01-07 13:00:11 -0500426 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100427 int res;
428
Ying Xue7f9f95d2015-01-09 15:27:06 +0800429 b_ptr = tipc_bearer_find(net, name);
Allan Stephensccc901e2010-10-14 13:58:26 +0000430 if (b_ptr == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400431 pr_warn("Attempt to disable unknown bearer <%s>\n", name);
Allan Stephensccc901e2010-10-14 13:58:26 +0000432 res = -EINVAL;
Allan Stephens28cc9372010-11-30 12:00:56 +0000433 } else {
Ying Xuef2f98002015-01-09 15:27:05 +0800434 bearer_disable(net, b_ptr, false);
Allan Stephens28cc9372010-11-30 12:00:56 +0000435 res = 0;
436 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100437 return res;
438}
439
Ying Xue7f9f95d2015-01-09 15:27:06 +0800440int tipc_enable_l2_media(struct net *net, struct tipc_bearer *b)
Ying Xuee4d050c2013-12-10 20:45:43 -0800441{
442 struct net_device *dev;
443 char *driver_name = strchr((const char *)b->name, ':') + 1;
444
445 /* Find device with specified name */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800446 dev = dev_get_by_name(net, driver_name);
Ying Xuee4d050c2013-12-10 20:45:43 -0800447 if (!dev)
448 return -ENODEV;
449
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400450 /* Associate TIPC bearer with L2 bearer */
Ying Xue2231c5a2014-04-21 10:55:47 +0800451 rcu_assign_pointer(b->media_ptr, dev);
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400452 memset(&b->bcast_addr, 0, sizeof(b->bcast_addr));
Ying Xuee4d050c2013-12-10 20:45:43 -0800453 memcpy(b->bcast_addr.value, dev->broadcast, b->media->hwaddr_len);
454 b->bcast_addr.media_id = b->media->type_id;
455 b->bcast_addr.broadcast = 1;
456 b->mtu = dev->mtu;
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400457 b->media->raw2addr(b, &b->addr, (char *)dev->dev_addr);
Ying Xuee4d050c2013-12-10 20:45:43 -0800458 rcu_assign_pointer(dev->tipc_ptr, b);
459 return 0;
460}
461
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400462/* tipc_disable_l2_media - detach TIPC bearer from an L2 interface
Ying Xuee4d050c2013-12-10 20:45:43 -0800463 *
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400464 * Mark L2 bearer as inactive so that incoming buffers are thrown away,
Ying Xuee4d050c2013-12-10 20:45:43 -0800465 * then get worker thread to complete bearer cleanup. (Can't do cleanup
466 * here because cleanup code needs to sleep and caller holds spinlocks.)
467 */
468void tipc_disable_l2_media(struct tipc_bearer *b)
469{
Ying Xue2231c5a2014-04-21 10:55:47 +0800470 struct net_device *dev;
471
472 dev = (struct net_device *)rtnl_dereference(b->media_ptr);
473 RCU_INIT_POINTER(b->media_ptr, NULL);
Ying Xuee4d050c2013-12-10 20:45:43 -0800474 RCU_INIT_POINTER(dev->tipc_ptr, NULL);
Ying Xuef1c8d8c2014-04-21 10:55:49 +0800475 synchronize_net();
Ying Xuee4d050c2013-12-10 20:45:43 -0800476 dev_put(dev);
477}
478
479/**
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400480 * tipc_l2_send_msg - send a TIPC packet out over an L2 interface
Ying Xuee4d050c2013-12-10 20:45:43 -0800481 * @buf: the packet to be sent
stephen hemminger963a18552014-01-12 12:48:00 -0800482 * @b_ptr: the bearer through which the packet is to be sent
Ying Xuee4d050c2013-12-10 20:45:43 -0800483 * @dest: peer destination address
484 */
485int tipc_l2_send_msg(struct sk_buff *buf, struct tipc_bearer *b,
486 struct tipc_media_addr *dest)
487{
488 struct sk_buff *clone;
Ying Xue2231c5a2014-04-21 10:55:47 +0800489 struct net_device *dev;
Ying Xuee4d050c2013-12-10 20:45:43 -0800490 int delta;
Ying Xue2231c5a2014-04-21 10:55:47 +0800491
492 dev = (struct net_device *)rcu_dereference_rtnl(b->media_ptr);
493 if (!dev)
494 return 0;
Ying Xuee4d050c2013-12-10 20:45:43 -0800495
496 clone = skb_clone(buf, GFP_ATOMIC);
497 if (!clone)
498 return 0;
499
500 delta = dev->hard_header_len - skb_headroom(buf);
501 if ((delta > 0) &&
502 pskb_expand_head(clone, SKB_DATA_ALIGN(delta), 0, GFP_ATOMIC)) {
503 kfree_skb(clone);
504 return 0;
505 }
506
507 skb_reset_network_header(clone);
508 clone->dev = dev;
509 clone->protocol = htons(ETH_P_TIPC);
510 dev_hard_header(clone, dev, ETH_P_TIPC, dest->value,
511 dev->dev_addr, clone->len);
512 dev_queue_xmit(clone);
513 return 0;
514}
515
516/* tipc_bearer_send- sends buffer to destination over bearer
517 *
518 * IMPORTANT:
519 * The media send routine must not alter the buffer being passed in
520 * as it may be needed for later retransmission!
521 */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800522void tipc_bearer_send(struct net *net, u32 bearer_id, struct sk_buff *buf,
Ying Xuee4d050c2013-12-10 20:45:43 -0800523 struct tipc_media_addr *dest)
524{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800525 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800526 struct tipc_bearer *b_ptr;
527
528 rcu_read_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800529 b_ptr = rcu_dereference_rtnl(tn->bearer_list[bearer_id]);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800530 if (likely(b_ptr))
531 b_ptr->media->send_msg(buf, b_ptr, dest);
532 rcu_read_unlock();
Ying Xuee4d050c2013-12-10 20:45:43 -0800533}
534
Ying Xue6e967ad2013-12-10 20:45:42 -0800535/**
536 * tipc_l2_rcv_msg - handle incoming TIPC message from an interface
537 * @buf: the received packet
538 * @dev: the net device that the packet was received on
539 * @pt: the packet_type structure which was used to register this handler
540 * @orig_dev: the original receive net device in case the device is a bond
541 *
542 * Accept only packets explicitly sent to this node, or broadcast packets;
543 * ignores packets sent using interface multicast, and traffic sent to other
544 * nodes (which can happen if interface is running in promiscuous mode).
545 */
546static int tipc_l2_rcv_msg(struct sk_buff *buf, struct net_device *dev,
547 struct packet_type *pt, struct net_device *orig_dev)
548{
549 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100550
Ying Xue6e967ad2013-12-10 20:45:42 -0800551 rcu_read_lock();
Ying Xueca07fb02014-04-21 10:55:43 +0800552 b_ptr = rcu_dereference_rtnl(dev->tipc_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800553 if (likely(b_ptr)) {
554 if (likely(buf->pkt_type <= PACKET_BROADCAST)) {
555 buf->next = NULL;
Ying Xuec93d3ba2015-01-09 15:27:04 +0800556 tipc_rcv(dev_net(dev), buf, b_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800557 rcu_read_unlock();
558 return NET_RX_SUCCESS;
559 }
560 }
561 rcu_read_unlock();
562
563 kfree_skb(buf);
564 return NET_RX_DROP;
565}
566
567/**
568 * tipc_l2_device_event - handle device events from network device
569 * @nb: the context of the notification
570 * @evt: the type of event
571 * @ptr: the net device that the event was on
572 *
573 * This function is called by the Ethernet driver in case of link
574 * change event.
575 */
576static int tipc_l2_device_event(struct notifier_block *nb, unsigned long evt,
577 void *ptr)
578{
Ying Xue6e967ad2013-12-10 20:45:42 -0800579 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800580 struct net *net = dev_net(dev);
581 struct tipc_bearer *b_ptr;
Ying Xue6e967ad2013-12-10 20:45:42 -0800582
Ying Xueca07fb02014-04-21 10:55:43 +0800583 b_ptr = rtnl_dereference(dev->tipc_ptr);
584 if (!b_ptr)
Ying Xue6e967ad2013-12-10 20:45:42 -0800585 return NOTIFY_DONE;
Ying Xue6e967ad2013-12-10 20:45:42 -0800586
587 b_ptr->mtu = dev->mtu;
588
589 switch (evt) {
590 case NETDEV_CHANGE:
591 if (netif_carrier_ok(dev))
592 break;
593 case NETDEV_DOWN:
594 case NETDEV_CHANGEMTU:
Ying Xuec93d3ba2015-01-09 15:27:04 +0800595 tipc_reset_bearer(net, b_ptr);
Erik Hugnea21a5842014-03-28 10:32:08 +0100596 break;
Ying Xue6e967ad2013-12-10 20:45:42 -0800597 case NETDEV_CHANGEADDR:
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400598 b_ptr->media->raw2addr(b_ptr, &b_ptr->addr,
Erik Hugnea21a5842014-03-28 10:32:08 +0100599 (char *)dev->dev_addr);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800600 tipc_reset_bearer(net, b_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800601 break;
602 case NETDEV_UNREGISTER:
603 case NETDEV_CHANGENAME:
Ying Xuef2f98002015-01-09 15:27:05 +0800604 bearer_disable(dev_net(dev), b_ptr, false);
Ying Xue6e967ad2013-12-10 20:45:42 -0800605 break;
606 }
Ying Xue6e967ad2013-12-10 20:45:42 -0800607 return NOTIFY_OK;
608}
609
610static struct packet_type tipc_packet_type __read_mostly = {
Joe Perches184593c2014-03-12 10:04:20 -0700611 .type = htons(ETH_P_TIPC),
Ying Xue6e967ad2013-12-10 20:45:42 -0800612 .func = tipc_l2_rcv_msg,
613};
614
615static struct notifier_block notifier = {
616 .notifier_call = tipc_l2_device_event,
617 .priority = 0,
618};
619
620int tipc_bearer_setup(void)
621{
Ying Xue970122f2014-02-20 11:32:50 +0800622 int err;
623
624 err = register_netdevice_notifier(&notifier);
625 if (err)
626 return err;
Ying Xue6e967ad2013-12-10 20:45:42 -0800627 dev_add_pack(&tipc_packet_type);
Ying Xue970122f2014-02-20 11:32:50 +0800628 return 0;
Ying Xue6e967ad2013-12-10 20:45:42 -0800629}
630
631void tipc_bearer_cleanup(void)
632{
633 unregister_netdevice_notifier(&notifier);
634 dev_remove_pack(&tipc_packet_type);
635}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100636
Ying Xuef2f98002015-01-09 15:27:05 +0800637void tipc_bearer_stop(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100638{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800639 struct tipc_net *tn = net_generic(net, tipc_net_id);
Ying Xue3874ccb2014-03-27 12:54:33 +0800640 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100641 u32 i;
642
Per Lidenb97bf3f2006-01-02 19:04:38 +0100643 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800644 b_ptr = rtnl_dereference(tn->bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800645 if (b_ptr) {
Ying Xuef2f98002015-01-09 15:27:05 +0800646 bearer_disable(net, b_ptr, true);
Ying Xue7f9f95d2015-01-09 15:27:06 +0800647 tn->bearer_list[i] = NULL;
Ying Xue3874ccb2014-03-27 12:54:33 +0800648 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100649 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100650}
Richard Alpe0655f6a2014-11-20 10:29:07 +0100651
Richard Alpe35b9dd72014-11-20 10:29:08 +0100652/* Caller should hold rtnl_lock to protect the bearer */
Richard Alped8182802014-11-24 11:10:29 +0100653static int __tipc_nl_add_bearer(struct tipc_nl_msg *msg,
654 struct tipc_bearer *bearer)
Richard Alpe35b9dd72014-11-20 10:29:08 +0100655{
656 void *hdr;
657 struct nlattr *attrs;
658 struct nlattr *prop;
659
660 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_v2_family,
661 NLM_F_MULTI, TIPC_NL_BEARER_GET);
662 if (!hdr)
663 return -EMSGSIZE;
664
665 attrs = nla_nest_start(msg->skb, TIPC_NLA_BEARER);
666 if (!attrs)
667 goto msg_full;
668
669 if (nla_put_string(msg->skb, TIPC_NLA_BEARER_NAME, bearer->name))
670 goto attr_msg_full;
671
672 prop = nla_nest_start(msg->skb, TIPC_NLA_BEARER_PROP);
673 if (!prop)
674 goto prop_msg_full;
675 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, bearer->priority))
676 goto prop_msg_full;
677 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, bearer->tolerance))
678 goto prop_msg_full;
679 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, bearer->window))
680 goto prop_msg_full;
681
682 nla_nest_end(msg->skb, prop);
683 nla_nest_end(msg->skb, attrs);
684 genlmsg_end(msg->skb, hdr);
685
686 return 0;
687
688prop_msg_full:
689 nla_nest_cancel(msg->skb, prop);
690attr_msg_full:
691 nla_nest_cancel(msg->skb, attrs);
692msg_full:
693 genlmsg_cancel(msg->skb, hdr);
694
695 return -EMSGSIZE;
696}
697
698int tipc_nl_bearer_dump(struct sk_buff *skb, struct netlink_callback *cb)
699{
700 int err;
701 int i = cb->args[0];
702 struct tipc_bearer *bearer;
703 struct tipc_nl_msg msg;
Ying Xue7f9f95d2015-01-09 15:27:06 +0800704 struct net *net = sock_net(skb->sk);
705 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100706
707 if (i == MAX_BEARERS)
708 return 0;
709
710 msg.skb = skb;
711 msg.portid = NETLINK_CB(cb->skb).portid;
712 msg.seq = cb->nlh->nlmsg_seq;
713
714 rtnl_lock();
715 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800716 bearer = rtnl_dereference(tn->bearer_list[i]);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100717 if (!bearer)
718 continue;
719
720 err = __tipc_nl_add_bearer(&msg, bearer);
721 if (err)
722 break;
723 }
724 rtnl_unlock();
725
726 cb->args[0] = i;
727 return skb->len;
728}
729
730int tipc_nl_bearer_get(struct sk_buff *skb, struct genl_info *info)
731{
732 int err;
733 char *name;
734 struct sk_buff *rep;
735 struct tipc_bearer *bearer;
736 struct tipc_nl_msg msg;
737 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Ying Xue7f9f95d2015-01-09 15:27:06 +0800738 struct net *net = genl_info_net(info);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100739
740 if (!info->attrs[TIPC_NLA_BEARER])
741 return -EINVAL;
742
743 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
744 info->attrs[TIPC_NLA_BEARER],
745 tipc_nl_bearer_policy);
746 if (err)
747 return err;
748
749 if (!attrs[TIPC_NLA_BEARER_NAME])
750 return -EINVAL;
751 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
752
753 rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
754 if (!rep)
755 return -ENOMEM;
756
757 msg.skb = rep;
758 msg.portid = info->snd_portid;
759 msg.seq = info->snd_seq;
760
761 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800762 bearer = tipc_bearer_find(net, name);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100763 if (!bearer) {
764 err = -EINVAL;
765 goto err_out;
766 }
767
768 err = __tipc_nl_add_bearer(&msg, bearer);
769 if (err)
770 goto err_out;
771 rtnl_unlock();
772
773 return genlmsg_reply(rep, info);
774err_out:
775 rtnl_unlock();
776 nlmsg_free(rep);
777
778 return err;
779}
780
Richard Alpe0655f6a2014-11-20 10:29:07 +0100781int tipc_nl_bearer_disable(struct sk_buff *skb, struct genl_info *info)
782{
783 int err;
784 char *name;
785 struct tipc_bearer *bearer;
786 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Ying Xuef2f98002015-01-09 15:27:05 +0800787 struct net *net = genl_info_net(info);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100788
789 if (!info->attrs[TIPC_NLA_BEARER])
790 return -EINVAL;
791
792 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
793 info->attrs[TIPC_NLA_BEARER],
794 tipc_nl_bearer_policy);
795 if (err)
796 return err;
797
798 if (!attrs[TIPC_NLA_BEARER_NAME])
799 return -EINVAL;
800
801 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
802
803 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800804 bearer = tipc_bearer_find(net, name);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100805 if (!bearer) {
806 rtnl_unlock();
807 return -EINVAL;
808 }
809
Ying Xuef2f98002015-01-09 15:27:05 +0800810 bearer_disable(net, bearer, false);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100811 rtnl_unlock();
812
813 return 0;
814}
815
816int tipc_nl_bearer_enable(struct sk_buff *skb, struct genl_info *info)
817{
Ying Xuec93d3ba2015-01-09 15:27:04 +0800818 struct net *net = genl_info_net(info);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100819 int err;
820 char *bearer;
821 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
822 u32 domain;
823 u32 prio;
824
825 prio = TIPC_MEDIA_LINK_PRI;
826 domain = tipc_own_addr & TIPC_CLUSTER_MASK;
827
828 if (!info->attrs[TIPC_NLA_BEARER])
829 return -EINVAL;
830
831 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
832 info->attrs[TIPC_NLA_BEARER],
833 tipc_nl_bearer_policy);
834 if (err)
835 return err;
836
837 if (!attrs[TIPC_NLA_BEARER_NAME])
838 return -EINVAL;
839
840 bearer = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
841
842 if (attrs[TIPC_NLA_BEARER_DOMAIN])
843 domain = nla_get_u32(attrs[TIPC_NLA_BEARER_DOMAIN]);
844
845 if (attrs[TIPC_NLA_BEARER_PROP]) {
846 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
847
848 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
849 props);
850 if (err)
851 return err;
852
853 if (props[TIPC_NLA_PROP_PRIO])
854 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
855 }
856
857 rtnl_lock();
Ying Xuec93d3ba2015-01-09 15:27:04 +0800858 err = tipc_enable_bearer(net, bearer, domain, prio);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100859 if (err) {
860 rtnl_unlock();
861 return err;
862 }
863 rtnl_unlock();
864
865 return 0;
866}
Richard Alpe315c00b2014-11-20 10:29:09 +0100867
868int tipc_nl_bearer_set(struct sk_buff *skb, struct genl_info *info)
869{
870 int err;
871 char *name;
872 struct tipc_bearer *b;
873 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Ying Xue7f9f95d2015-01-09 15:27:06 +0800874 struct net *net = genl_info_net(info);
Richard Alpe315c00b2014-11-20 10:29:09 +0100875
876 if (!info->attrs[TIPC_NLA_BEARER])
877 return -EINVAL;
878
879 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
880 info->attrs[TIPC_NLA_BEARER],
881 tipc_nl_bearer_policy);
882 if (err)
883 return err;
884
885 if (!attrs[TIPC_NLA_BEARER_NAME])
886 return -EINVAL;
887 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
888
889 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800890 b = tipc_bearer_find(net, name);
Richard Alpe315c00b2014-11-20 10:29:09 +0100891 if (!b) {
892 rtnl_unlock();
893 return -EINVAL;
894 }
895
896 if (attrs[TIPC_NLA_BEARER_PROP]) {
897 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
898
899 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
900 props);
901 if (err) {
902 rtnl_unlock();
903 return err;
904 }
905
906 if (props[TIPC_NLA_PROP_TOL])
907 b->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
908 if (props[TIPC_NLA_PROP_PRIO])
909 b->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
910 if (props[TIPC_NLA_PROP_WIN])
911 b->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
912 }
913 rtnl_unlock();
914
915 return 0;
916}
Richard Alpe46f15c62014-11-20 10:29:15 +0100917
Richard Alped8182802014-11-24 11:10:29 +0100918static int __tipc_nl_add_media(struct tipc_nl_msg *msg,
919 struct tipc_media *media)
Richard Alpe46f15c62014-11-20 10:29:15 +0100920{
921 void *hdr;
922 struct nlattr *attrs;
923 struct nlattr *prop;
924
925 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_v2_family,
926 NLM_F_MULTI, TIPC_NL_MEDIA_GET);
927 if (!hdr)
928 return -EMSGSIZE;
929
930 attrs = nla_nest_start(msg->skb, TIPC_NLA_MEDIA);
931 if (!attrs)
932 goto msg_full;
933
934 if (nla_put_string(msg->skb, TIPC_NLA_MEDIA_NAME, media->name))
935 goto attr_msg_full;
936
937 prop = nla_nest_start(msg->skb, TIPC_NLA_MEDIA_PROP);
938 if (!prop)
939 goto prop_msg_full;
940 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, media->priority))
941 goto prop_msg_full;
942 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, media->tolerance))
943 goto prop_msg_full;
944 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, media->window))
945 goto prop_msg_full;
946
947 nla_nest_end(msg->skb, prop);
948 nla_nest_end(msg->skb, attrs);
949 genlmsg_end(msg->skb, hdr);
950
951 return 0;
952
953prop_msg_full:
954 nla_nest_cancel(msg->skb, prop);
955attr_msg_full:
956 nla_nest_cancel(msg->skb, attrs);
957msg_full:
958 genlmsg_cancel(msg->skb, hdr);
959
960 return -EMSGSIZE;
961}
962
963int tipc_nl_media_dump(struct sk_buff *skb, struct netlink_callback *cb)
964{
965 int err;
966 int i = cb->args[0];
967 struct tipc_nl_msg msg;
968
969 if (i == MAX_MEDIA)
970 return 0;
971
972 msg.skb = skb;
973 msg.portid = NETLINK_CB(cb->skb).portid;
974 msg.seq = cb->nlh->nlmsg_seq;
975
976 rtnl_lock();
977 for (; media_info_array[i] != NULL; i++) {
978 err = __tipc_nl_add_media(&msg, media_info_array[i]);
979 if (err)
980 break;
981 }
982 rtnl_unlock();
983
984 cb->args[0] = i;
985 return skb->len;
986}
987
988int tipc_nl_media_get(struct sk_buff *skb, struct genl_info *info)
989{
990 int err;
991 char *name;
992 struct tipc_nl_msg msg;
993 struct tipc_media *media;
994 struct sk_buff *rep;
995 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
996
997 if (!info->attrs[TIPC_NLA_MEDIA])
998 return -EINVAL;
999
1000 err = nla_parse_nested(attrs, TIPC_NLA_MEDIA_MAX,
1001 info->attrs[TIPC_NLA_MEDIA],
1002 tipc_nl_media_policy);
1003 if (err)
1004 return err;
1005
1006 if (!attrs[TIPC_NLA_MEDIA_NAME])
1007 return -EINVAL;
1008 name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
1009
1010 rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
1011 if (!rep)
1012 return -ENOMEM;
1013
1014 msg.skb = rep;
1015 msg.portid = info->snd_portid;
1016 msg.seq = info->snd_seq;
1017
1018 rtnl_lock();
1019 media = tipc_media_find(name);
1020 if (!media) {
1021 err = -EINVAL;
1022 goto err_out;
1023 }
1024
1025 err = __tipc_nl_add_media(&msg, media);
1026 if (err)
1027 goto err_out;
1028 rtnl_unlock();
1029
1030 return genlmsg_reply(rep, info);
1031err_out:
1032 rtnl_unlock();
1033 nlmsg_free(rep);
1034
1035 return err;
1036}
Richard Alpe1e554172014-11-20 10:29:16 +01001037
1038int tipc_nl_media_set(struct sk_buff *skb, struct genl_info *info)
1039{
1040 int err;
1041 char *name;
1042 struct tipc_media *m;
1043 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
1044
1045 if (!info->attrs[TIPC_NLA_MEDIA])
1046 return -EINVAL;
1047
1048 err = nla_parse_nested(attrs, TIPC_NLA_MEDIA_MAX,
1049 info->attrs[TIPC_NLA_MEDIA],
1050 tipc_nl_media_policy);
1051
1052 if (!attrs[TIPC_NLA_MEDIA_NAME])
1053 return -EINVAL;
1054 name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
1055
1056 rtnl_lock();
1057 m = tipc_media_find(name);
1058 if (!m) {
1059 rtnl_unlock();
1060 return -EINVAL;
1061 }
1062
1063 if (attrs[TIPC_NLA_MEDIA_PROP]) {
1064 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
1065
1066 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_MEDIA_PROP],
1067 props);
1068 if (err) {
1069 rtnl_unlock();
1070 return err;
1071 }
1072
1073 if (props[TIPC_NLA_PROP_TOL])
1074 m->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
1075 if (props[TIPC_NLA_PROP_PRIO])
1076 m->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1077 if (props[TIPC_NLA_PROP_WIN])
1078 m->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
1079 }
1080 rtnl_unlock();
1081
1082 return 0;
1083}