blob: 5f6f32369c16067bc4d27b93b3028d3a7f673d83 [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
37#include "core.h"
38#include "config.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"
Per Lidenb97bf3f2006-01-02 19:04:38 +010042
Patrick McHardya29a1942013-04-17 06:18:28 +000043#define MAX_ADDR_STR 60
Per Lidenb97bf3f2006-01-02 19:04:38 +010044
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080045static struct tipc_media * const media_info_array[] = {
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080046 &eth_media_info,
47#ifdef CONFIG_TIPC_MEDIA_IB
48 &ib_media_info,
49#endif
50 NULL
51};
Per Lidenb97bf3f2006-01-02 19:04:38 +010052
Richard Alpe0655f6a2014-11-20 10:29:07 +010053static const struct nla_policy
54tipc_nl_bearer_policy[TIPC_NLA_BEARER_MAX + 1] = {
55 [TIPC_NLA_BEARER_UNSPEC] = { .type = NLA_UNSPEC },
56 [TIPC_NLA_BEARER_NAME] = {
57 .type = NLA_STRING,
58 .len = TIPC_MAX_BEARER_NAME
59 },
60 [TIPC_NLA_BEARER_PROP] = { .type = NLA_NESTED },
61 [TIPC_NLA_BEARER_DOMAIN] = { .type = NLA_U32 }
62};
63
Richard Alpe46f15c62014-11-20 10:29:15 +010064static const struct nla_policy tipc_nl_media_policy[TIPC_NLA_MEDIA_MAX + 1] = {
65 [TIPC_NLA_MEDIA_UNSPEC] = { .type = NLA_UNSPEC },
66 [TIPC_NLA_MEDIA_NAME] = { .type = NLA_STRING },
67 [TIPC_NLA_MEDIA_PROP] = { .type = NLA_NESTED }
68};
69
Ying Xuef8322df2014-04-21 10:55:45 +080070struct tipc_bearer __rcu *bearer_list[MAX_BEARERS + 1];
Per Lidenb97bf3f2006-01-02 19:04:38 +010071
Jon Paul Maloy7d339392014-02-13 17:29:16 -050072static void bearer_disable(struct tipc_bearer *b_ptr, 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 */
Allan Stephens5c216e12011-10-18 11:34:29 -0400193struct tipc_bearer *tipc_bearer_find(const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100194{
Allan Stephens2d627b92011-01-07 13:00:11 -0500195 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100196 u32 i;
197
Ying Xue3874ccb2014-03-27 12:54:33 +0800198 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xuef8322df2014-04-21 10:55:45 +0800199 b_ptr = rtnl_dereference(bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800200 if (b_ptr && (!strcmp(b_ptr->name, name)))
Per Lidenb97bf3f2006-01-02 19:04:38 +0100201 return b_ptr;
202 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800203 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100204}
205
206/**
Per Liden4323add2006-01-18 00:38:21 +0100207 * tipc_bearer_get_names - record names of bearers in buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100208 */
Per Liden4323add2006-01-18 00:38:21 +0100209struct sk_buff *tipc_bearer_get_names(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100210{
211 struct sk_buff *buf;
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800212 struct tipc_bearer *b;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100213 int i, j;
214
Per Liden4323add2006-01-18 00:38:21 +0100215 buf = tipc_cfg_reply_alloc(MAX_BEARERS * TLV_SPACE(TIPC_MAX_BEARER_NAME));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100216 if (!buf)
217 return NULL;
218
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800219 for (i = 0; media_info_array[i] != NULL; i++) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100220 for (j = 0; j < MAX_BEARERS; j++) {
Ying Xuef8322df2014-04-21 10:55:45 +0800221 b = rtnl_dereference(bearer_list[j]);
Ying Xue3874ccb2014-03-27 12:54:33 +0800222 if (!b)
223 continue;
Ying Xuef47de122014-03-27 12:54:34 +0800224 if (b->media == media_info_array[i]) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900225 tipc_cfg_append_tlv(buf, TIPC_TLV_BEARER_NAME,
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800226 b->name,
227 strlen(b->name) + 1);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100228 }
229 }
230 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100231 return buf;
232}
233
Ying Xue7a2f7d12014-04-21 10:55:46 +0800234void tipc_bearer_add_dest(u32 bearer_id, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100235{
Ying Xue7a2f7d12014-04-21 10:55:46 +0800236 struct tipc_bearer *b_ptr;
237
238 rcu_read_lock();
239 b_ptr = rcu_dereference_rtnl(bearer_list[bearer_id]);
240 if (b_ptr) {
Ying Xue28dd9412014-04-21 10:55:51 +0800241 tipc_bcbearer_sort(&b_ptr->nodes, dest, true);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800242 tipc_disc_add_dest(b_ptr->link_req);
243 }
244 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100245}
246
Ying Xue7a2f7d12014-04-21 10:55:46 +0800247void tipc_bearer_remove_dest(u32 bearer_id, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100248{
Ying Xue7a2f7d12014-04-21 10:55:46 +0800249 struct tipc_bearer *b_ptr;
250
251 rcu_read_lock();
252 b_ptr = rcu_dereference_rtnl(bearer_list[bearer_id]);
253 if (b_ptr) {
Ying Xue28dd9412014-04-21 10:55:51 +0800254 tipc_bcbearer_sort(&b_ptr->nodes, dest, false);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800255 tipc_disc_remove_dest(b_ptr->link_req);
256 }
257 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100258}
259
Allan Stephensb274f4a2010-05-11 14:30:16 +0000260/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100261 * tipc_enable_bearer - enable bearer with the given name
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900262 */
Allan Stephens50d3e632011-02-28 14:56:15 -0500263int tipc_enable_bearer(const char *name, u32 disc_domain, u32 priority)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100264{
Allan Stephens2d627b92011-01-07 13:00:11 -0500265 struct tipc_bearer *b_ptr;
Paul Gortmaker358a0d12011-12-29 20:19:42 -0500266 struct tipc_media *m_ptr;
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500267 struct tipc_bearer_names b_names;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100268 char addr_string[16];
269 u32 bearer_id;
270 u32 with_this_prio;
271 u32 i;
272 int res = -EINVAL;
273
Allan Stephensb58343f2011-11-08 13:48:28 -0500274 if (!tipc_own_addr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400275 pr_warn("Bearer <%s> rejected, not supported in standalone mode\n",
276 name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100277 return -ENOPROTOOPT;
Allan Stephensa10bd922006-06-25 23:52:17 -0700278 }
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500279 if (!bearer_name_validate(name, &b_names)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400280 pr_warn("Bearer <%s> rejected, illegal name\n", name);
Per Liden16cb4b32006-01-13 22:22:22 +0100281 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700282 }
Allan Stephens66e019a2011-04-20 16:24:07 -0500283 if (tipc_addr_domain_valid(disc_domain) &&
284 (disc_domain != tipc_own_addr)) {
285 if (tipc_in_scope(disc_domain, tipc_own_addr)) {
286 disc_domain = tipc_own_addr & TIPC_CLUSTER_MASK;
287 res = 0; /* accept any node in own cluster */
Allan Stephens336ebf52012-04-17 18:02:01 -0400288 } else if (in_own_cluster_exact(disc_domain))
Allan Stephens66e019a2011-04-20 16:24:07 -0500289 res = 0; /* accept specified node in own cluster */
290 }
291 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400292 pr_warn("Bearer <%s> rejected, illegal discovery domain\n",
293 name);
Allan Stephensa10bd922006-06-25 23:52:17 -0700294 return -EINVAL;
295 }
Allan Stephens9efde4a2011-11-03 13:15:10 -0400296 if ((priority > TIPC_MAX_LINK_PRI) &&
Allan Stephensa10bd922006-06-25 23:52:17 -0700297 (priority != TIPC_MEDIA_LINK_PRI)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400298 pr_warn("Bearer <%s> rejected, illegal priority\n", name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100299 return -EINVAL;
Allan Stephensa10bd922006-06-25 23:52:17 -0700300 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500302 m_ptr = tipc_media_find(b_names.media_name);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303 if (!m_ptr) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400304 pr_warn("Bearer <%s> rejected, media <%s> not registered\n",
305 name, b_names.media_name);
Ying Xue7216cd92014-04-21 10:55:48 +0800306 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100307 }
Per Liden16cb4b32006-01-13 22:22:22 +0100308
309 if (priority == TIPC_MEDIA_LINK_PRI)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100310 priority = m_ptr->priority;
311
312restart:
313 bearer_id = MAX_BEARERS;
314 with_this_prio = 1;
315 for (i = MAX_BEARERS; i-- != 0; ) {
Ying Xuef8322df2014-04-21 10:55:45 +0800316 b_ptr = rtnl_dereference(bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800317 if (!b_ptr) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100318 bearer_id = i;
319 continue;
320 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800321 if (!strcmp(name, b_ptr->name)) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400322 pr_warn("Bearer <%s> rejected, already enabled\n",
323 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800324 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100325 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800326 if ((b_ptr->priority == priority) &&
Per Lidenb97bf3f2006-01-02 19:04:38 +0100327 (++with_this_prio > 2)) {
328 if (priority-- == 0) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400329 pr_warn("Bearer <%s> rejected, duplicate priority\n",
330 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800331 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332 }
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400333 pr_warn("Bearer <%s> priority adjustment required %u->%u\n",
334 name, priority + 1, priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100335 goto restart;
336 }
337 }
338 if (bearer_id >= MAX_BEARERS) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400339 pr_warn("Bearer <%s> rejected, bearer limit reached (%u)\n",
340 name, MAX_BEARERS);
Ying Xue7216cd92014-04-21 10:55:48 +0800341 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100342 }
343
Ying Xue3874ccb2014-03-27 12:54:33 +0800344 b_ptr = kzalloc(sizeof(*b_ptr), GFP_ATOMIC);
Ying Xue7216cd92014-04-21 10:55:48 +0800345 if (!b_ptr)
346 return -ENOMEM;
347
Allan Stephens2d627b92011-01-07 13:00:11 -0500348 strcpy(b_ptr->name, name);
Ying Xuee4d050c2013-12-10 20:45:43 -0800349 b_ptr->media = m_ptr;
Ying Xue4babbaa2013-10-18 07:23:17 +0200350 res = m_ptr->enable_media(b_ptr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100351 if (res) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400352 pr_warn("Bearer <%s> rejected, enable failure (%d)\n",
353 name, -res);
Ying Xue7216cd92014-04-21 10:55:48 +0800354 return -EINVAL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100355 }
356
357 b_ptr->identity = bearer_id;
Allan Stephens5c216e12011-10-18 11:34:29 -0400358 b_ptr->tolerance = m_ptr->tolerance;
359 b_ptr->window = m_ptr->window;
Erik Hugnea21a5842014-03-28 10:32:08 +0100360 b_ptr->domain = disc_domain;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361 b_ptr->net_plane = bearer_id + 'A';
Per Lidenb97bf3f2006-01-02 19:04:38 +0100362 b_ptr->priority = priority;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500363
Erik Hugne16470112014-03-28 10:32:09 +0100364 res = tipc_disc_create(b_ptr, &b_ptr->bcast_addr);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500365 if (res) {
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500366 bearer_disable(b_ptr, false);
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400367 pr_warn("Bearer <%s> rejected, discovery object creation failed\n",
368 name);
Ying Xue7216cd92014-04-21 10:55:48 +0800369 return -EINVAL;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500370 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800371
Ying Xuef8322df2014-04-21 10:55:45 +0800372 rcu_assign_pointer(bearer_list[bearer_id], b_ptr);
Ying Xue3874ccb2014-03-27 12:54:33 +0800373
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400374 pr_info("Enabled bearer <%s>, discovery domain %s, priority %u\n",
375 name,
376 tipc_addr_string_fill(addr_string, disc_domain), priority);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100377 return res;
378}
379
380/**
Erik Hugne512137e2013-12-06 10:08:00 -0500381 * tipc_reset_bearer - Reset all links established over this bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100382 */
Ying Xue6e967ad2013-12-10 20:45:42 -0800383static int tipc_reset_bearer(struct tipc_bearer *b_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100384{
Erik Hugne512137e2013-12-06 10:08:00 -0500385 pr_info("Resetting bearer <%s>\n", b_ptr->name);
Ying Xuec61dd612014-02-13 17:29:09 -0500386 tipc_link_reset_list(b_ptr->identity);
Ying Xuea8b9b962014-04-21 10:55:52 +0800387 tipc_disc_reset(b_ptr);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700388 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100389}
390
391/**
Paul Gortmaker617d3c72012-04-30 15:29:02 -0400392 * bearer_disable
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900393 *
Ying Xue7216cd92014-04-21 10:55:48 +0800394 * Note: This routine assumes caller holds RTNL lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100395 */
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500396static void bearer_disable(struct tipc_bearer *b_ptr, bool shutting_down)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100397{
Ying Xue3874ccb2014-03-27 12:54:33 +0800398 u32 i;
399
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400400 pr_info("Disabling bearer <%s>\n", b_ptr->name);
Ying Xue4babbaa2013-10-18 07:23:17 +0200401 b_ptr->media->disable_media(b_ptr);
Ying Xuea8304522014-02-13 17:29:17 -0500402
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500403 tipc_link_delete_list(b_ptr->identity, shutting_down);
Ying Xuea8304522014-02-13 17:29:17 -0500404 if (b_ptr->link_req)
405 tipc_disc_delete(b_ptr->link_req);
Ying Xue3874ccb2014-03-27 12:54:33 +0800406
407 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xuef8322df2014-04-21 10:55:45 +0800408 if (b_ptr == rtnl_dereference(bearer_list[i])) {
409 RCU_INIT_POINTER(bearer_list[i], NULL);
Ying Xue3874ccb2014-03-27 12:54:33 +0800410 break;
411 }
412 }
Ying Xuef8322df2014-04-21 10:55:45 +0800413 kfree_rcu(b_ptr, rcu);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100414}
415
416int tipc_disable_bearer(const char *name)
417{
Allan Stephens2d627b92011-01-07 13:00:11 -0500418 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100419 int res;
420
Allan Stephens5c216e12011-10-18 11:34:29 -0400421 b_ptr = tipc_bearer_find(name);
Allan Stephensccc901e2010-10-14 13:58:26 +0000422 if (b_ptr == NULL) {
Erik Hugne2cf8aa12012-06-29 00:16:37 -0400423 pr_warn("Attempt to disable unknown bearer <%s>\n", name);
Allan Stephensccc901e2010-10-14 13:58:26 +0000424 res = -EINVAL;
Allan Stephens28cc9372010-11-30 12:00:56 +0000425 } else {
Jon Paul Maloy7d339392014-02-13 17:29:16 -0500426 bearer_disable(b_ptr, false);
Allan Stephens28cc9372010-11-30 12:00:56 +0000427 res = 0;
428 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100429 return res;
430}
431
Ying Xuee4d050c2013-12-10 20:45:43 -0800432int tipc_enable_l2_media(struct tipc_bearer *b)
433{
434 struct net_device *dev;
435 char *driver_name = strchr((const char *)b->name, ':') + 1;
436
437 /* Find device with specified name */
438 dev = dev_get_by_name(&init_net, driver_name);
439 if (!dev)
440 return -ENODEV;
441
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400442 /* Associate TIPC bearer with L2 bearer */
Ying Xue2231c5a2014-04-21 10:55:47 +0800443 rcu_assign_pointer(b->media_ptr, dev);
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400444 memset(&b->bcast_addr, 0, sizeof(b->bcast_addr));
Ying Xuee4d050c2013-12-10 20:45:43 -0800445 memcpy(b->bcast_addr.value, dev->broadcast, b->media->hwaddr_len);
446 b->bcast_addr.media_id = b->media->type_id;
447 b->bcast_addr.broadcast = 1;
448 b->mtu = dev->mtu;
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400449 b->media->raw2addr(b, &b->addr, (char *)dev->dev_addr);
Ying Xuee4d050c2013-12-10 20:45:43 -0800450 rcu_assign_pointer(dev->tipc_ptr, b);
451 return 0;
452}
453
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400454/* tipc_disable_l2_media - detach TIPC bearer from an L2 interface
Ying Xuee4d050c2013-12-10 20:45:43 -0800455 *
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400456 * Mark L2 bearer as inactive so that incoming buffers are thrown away,
Ying Xuee4d050c2013-12-10 20:45:43 -0800457 * then get worker thread to complete bearer cleanup. (Can't do cleanup
458 * here because cleanup code needs to sleep and caller holds spinlocks.)
459 */
460void tipc_disable_l2_media(struct tipc_bearer *b)
461{
Ying Xue2231c5a2014-04-21 10:55:47 +0800462 struct net_device *dev;
463
464 dev = (struct net_device *)rtnl_dereference(b->media_ptr);
465 RCU_INIT_POINTER(b->media_ptr, NULL);
Ying Xuee4d050c2013-12-10 20:45:43 -0800466 RCU_INIT_POINTER(dev->tipc_ptr, NULL);
Ying Xuef1c8d8c2014-04-21 10:55:49 +0800467 synchronize_net();
Ying Xuee4d050c2013-12-10 20:45:43 -0800468 dev_put(dev);
469}
470
471/**
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400472 * tipc_l2_send_msg - send a TIPC packet out over an L2 interface
Ying Xuee4d050c2013-12-10 20:45:43 -0800473 * @buf: the packet to be sent
stephen hemminger963a18552014-01-12 12:48:00 -0800474 * @b_ptr: the bearer through which the packet is to be sent
Ying Xuee4d050c2013-12-10 20:45:43 -0800475 * @dest: peer destination address
476 */
477int tipc_l2_send_msg(struct sk_buff *buf, struct tipc_bearer *b,
478 struct tipc_media_addr *dest)
479{
480 struct sk_buff *clone;
Ying Xue2231c5a2014-04-21 10:55:47 +0800481 struct net_device *dev;
Ying Xuee4d050c2013-12-10 20:45:43 -0800482 int delta;
Ying Xue2231c5a2014-04-21 10:55:47 +0800483
484 dev = (struct net_device *)rcu_dereference_rtnl(b->media_ptr);
485 if (!dev)
486 return 0;
Ying Xuee4d050c2013-12-10 20:45:43 -0800487
488 clone = skb_clone(buf, GFP_ATOMIC);
489 if (!clone)
490 return 0;
491
492 delta = dev->hard_header_len - skb_headroom(buf);
493 if ((delta > 0) &&
494 pskb_expand_head(clone, SKB_DATA_ALIGN(delta), 0, GFP_ATOMIC)) {
495 kfree_skb(clone);
496 return 0;
497 }
498
499 skb_reset_network_header(clone);
500 clone->dev = dev;
501 clone->protocol = htons(ETH_P_TIPC);
502 dev_hard_header(clone, dev, ETH_P_TIPC, dest->value,
503 dev->dev_addr, clone->len);
504 dev_queue_xmit(clone);
505 return 0;
506}
507
508/* tipc_bearer_send- sends buffer to destination over bearer
509 *
510 * IMPORTANT:
511 * The media send routine must not alter the buffer being passed in
512 * as it may be needed for later retransmission!
513 */
Ying Xue7a2f7d12014-04-21 10:55:46 +0800514void tipc_bearer_send(u32 bearer_id, struct sk_buff *buf,
Ying Xuee4d050c2013-12-10 20:45:43 -0800515 struct tipc_media_addr *dest)
516{
Ying Xue7a2f7d12014-04-21 10:55:46 +0800517 struct tipc_bearer *b_ptr;
518
519 rcu_read_lock();
520 b_ptr = rcu_dereference_rtnl(bearer_list[bearer_id]);
521 if (likely(b_ptr))
522 b_ptr->media->send_msg(buf, b_ptr, dest);
523 rcu_read_unlock();
Ying Xuee4d050c2013-12-10 20:45:43 -0800524}
525
Ying Xue6e967ad2013-12-10 20:45:42 -0800526/**
527 * tipc_l2_rcv_msg - handle incoming TIPC message from an interface
528 * @buf: the received packet
529 * @dev: the net device that the packet was received on
530 * @pt: the packet_type structure which was used to register this handler
531 * @orig_dev: the original receive net device in case the device is a bond
532 *
533 * Accept only packets explicitly sent to this node, or broadcast packets;
534 * ignores packets sent using interface multicast, and traffic sent to other
535 * nodes (which can happen if interface is running in promiscuous mode).
536 */
537static int tipc_l2_rcv_msg(struct sk_buff *buf, struct net_device *dev,
538 struct packet_type *pt, struct net_device *orig_dev)
539{
540 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100541
Ying Xue6e967ad2013-12-10 20:45:42 -0800542 if (!net_eq(dev_net(dev), &init_net)) {
543 kfree_skb(buf);
544 return NET_RX_DROP;
545 }
546
547 rcu_read_lock();
Ying Xueca07fb02014-04-21 10:55:43 +0800548 b_ptr = rcu_dereference_rtnl(dev->tipc_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800549 if (likely(b_ptr)) {
550 if (likely(buf->pkt_type <= PACKET_BROADCAST)) {
551 buf->next = NULL;
Jon Paul Maloy170b3922014-01-07 17:02:41 -0500552 tipc_rcv(buf, b_ptr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800553 rcu_read_unlock();
554 return NET_RX_SUCCESS;
555 }
556 }
557 rcu_read_unlock();
558
559 kfree_skb(buf);
560 return NET_RX_DROP;
561}
562
563/**
564 * tipc_l2_device_event - handle device events from network device
565 * @nb: the context of the notification
566 * @evt: the type of event
567 * @ptr: the net device that the event was on
568 *
569 * This function is called by the Ethernet driver in case of link
570 * change event.
571 */
572static int tipc_l2_device_event(struct notifier_block *nb, unsigned long evt,
573 void *ptr)
574{
575 struct tipc_bearer *b_ptr;
576 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
577
578 if (!net_eq(dev_net(dev), &init_net))
579 return NOTIFY_DONE;
580
Ying Xueca07fb02014-04-21 10:55:43 +0800581 b_ptr = rtnl_dereference(dev->tipc_ptr);
582 if (!b_ptr)
Ying Xue6e967ad2013-12-10 20:45:42 -0800583 return NOTIFY_DONE;
Ying Xue6e967ad2013-12-10 20:45:42 -0800584
585 b_ptr->mtu = dev->mtu;
586
587 switch (evt) {
588 case NETDEV_CHANGE:
589 if (netif_carrier_ok(dev))
590 break;
591 case NETDEV_DOWN:
592 case NETDEV_CHANGEMTU:
Erik Hugnea21a5842014-03-28 10:32:08 +0100593 tipc_reset_bearer(b_ptr);
594 break;
Ying Xue6e967ad2013-12-10 20:45:42 -0800595 case NETDEV_CHANGEADDR:
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400596 b_ptr->media->raw2addr(b_ptr, &b_ptr->addr,
Erik Hugnea21a5842014-03-28 10:32:08 +0100597 (char *)dev->dev_addr);
Ying Xue6e967ad2013-12-10 20:45:42 -0800598 tipc_reset_bearer(b_ptr);
599 break;
600 case NETDEV_UNREGISTER:
601 case NETDEV_CHANGENAME:
Ying Xue4ae88c92014-04-21 10:55:50 +0800602 bearer_disable(b_ptr, false);
Ying Xue6e967ad2013-12-10 20:45:42 -0800603 break;
604 }
Ying Xue6e967ad2013-12-10 20:45:42 -0800605 return NOTIFY_OK;
606}
607
608static struct packet_type tipc_packet_type __read_mostly = {
Joe Perches184593c2014-03-12 10:04:20 -0700609 .type = htons(ETH_P_TIPC),
Ying Xue6e967ad2013-12-10 20:45:42 -0800610 .func = tipc_l2_rcv_msg,
611};
612
613static struct notifier_block notifier = {
614 .notifier_call = tipc_l2_device_event,
615 .priority = 0,
616};
617
618int tipc_bearer_setup(void)
619{
Ying Xue970122f2014-02-20 11:32:50 +0800620 int err;
621
622 err = register_netdevice_notifier(&notifier);
623 if (err)
624 return err;
Ying Xue6e967ad2013-12-10 20:45:42 -0800625 dev_add_pack(&tipc_packet_type);
Ying Xue970122f2014-02-20 11:32:50 +0800626 return 0;
Ying Xue6e967ad2013-12-10 20:45:42 -0800627}
628
629void tipc_bearer_cleanup(void)
630{
631 unregister_netdevice_notifier(&notifier);
632 dev_remove_pack(&tipc_packet_type);
633}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100634
Per Liden4323add2006-01-18 00:38:21 +0100635void tipc_bearer_stop(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100636{
Ying Xue3874ccb2014-03-27 12:54:33 +0800637 struct tipc_bearer *b_ptr;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100638 u32 i;
639
Per Lidenb97bf3f2006-01-02 19:04:38 +0100640 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xuef8322df2014-04-21 10:55:45 +0800641 b_ptr = rtnl_dereference(bearer_list[i]);
Ying Xuef47de122014-03-27 12:54:34 +0800642 if (b_ptr) {
Ying Xue3874ccb2014-03-27 12:54:33 +0800643 bearer_disable(b_ptr, true);
644 bearer_list[i] = NULL;
645 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100646 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100647}
Richard Alpe0655f6a2014-11-20 10:29:07 +0100648
Richard Alpe35b9dd72014-11-20 10:29:08 +0100649/* Caller should hold rtnl_lock to protect the bearer */
650int __tipc_nl_add_bearer(struct tipc_nl_msg *msg, struct tipc_bearer *bearer)
651{
652 void *hdr;
653 struct nlattr *attrs;
654 struct nlattr *prop;
655
656 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_v2_family,
657 NLM_F_MULTI, TIPC_NL_BEARER_GET);
658 if (!hdr)
659 return -EMSGSIZE;
660
661 attrs = nla_nest_start(msg->skb, TIPC_NLA_BEARER);
662 if (!attrs)
663 goto msg_full;
664
665 if (nla_put_string(msg->skb, TIPC_NLA_BEARER_NAME, bearer->name))
666 goto attr_msg_full;
667
668 prop = nla_nest_start(msg->skb, TIPC_NLA_BEARER_PROP);
669 if (!prop)
670 goto prop_msg_full;
671 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, bearer->priority))
672 goto prop_msg_full;
673 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, bearer->tolerance))
674 goto prop_msg_full;
675 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, bearer->window))
676 goto prop_msg_full;
677
678 nla_nest_end(msg->skb, prop);
679 nla_nest_end(msg->skb, attrs);
680 genlmsg_end(msg->skb, hdr);
681
682 return 0;
683
684prop_msg_full:
685 nla_nest_cancel(msg->skb, prop);
686attr_msg_full:
687 nla_nest_cancel(msg->skb, attrs);
688msg_full:
689 genlmsg_cancel(msg->skb, hdr);
690
691 return -EMSGSIZE;
692}
693
694int tipc_nl_bearer_dump(struct sk_buff *skb, struct netlink_callback *cb)
695{
696 int err;
697 int i = cb->args[0];
698 struct tipc_bearer *bearer;
699 struct tipc_nl_msg msg;
700
701 if (i == MAX_BEARERS)
702 return 0;
703
704 msg.skb = skb;
705 msg.portid = NETLINK_CB(cb->skb).portid;
706 msg.seq = cb->nlh->nlmsg_seq;
707
708 rtnl_lock();
709 for (i = 0; i < MAX_BEARERS; i++) {
710 bearer = rtnl_dereference(bearer_list[i]);
711 if (!bearer)
712 continue;
713
714 err = __tipc_nl_add_bearer(&msg, bearer);
715 if (err)
716 break;
717 }
718 rtnl_unlock();
719
720 cb->args[0] = i;
721 return skb->len;
722}
723
724int tipc_nl_bearer_get(struct sk_buff *skb, struct genl_info *info)
725{
726 int err;
727 char *name;
728 struct sk_buff *rep;
729 struct tipc_bearer *bearer;
730 struct tipc_nl_msg msg;
731 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
732
733 if (!info->attrs[TIPC_NLA_BEARER])
734 return -EINVAL;
735
736 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
737 info->attrs[TIPC_NLA_BEARER],
738 tipc_nl_bearer_policy);
739 if (err)
740 return err;
741
742 if (!attrs[TIPC_NLA_BEARER_NAME])
743 return -EINVAL;
744 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
745
746 rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
747 if (!rep)
748 return -ENOMEM;
749
750 msg.skb = rep;
751 msg.portid = info->snd_portid;
752 msg.seq = info->snd_seq;
753
754 rtnl_lock();
755 bearer = tipc_bearer_find(name);
756 if (!bearer) {
757 err = -EINVAL;
758 goto err_out;
759 }
760
761 err = __tipc_nl_add_bearer(&msg, bearer);
762 if (err)
763 goto err_out;
764 rtnl_unlock();
765
766 return genlmsg_reply(rep, info);
767err_out:
768 rtnl_unlock();
769 nlmsg_free(rep);
770
771 return err;
772}
773
Richard Alpe0655f6a2014-11-20 10:29:07 +0100774int tipc_nl_bearer_disable(struct sk_buff *skb, struct genl_info *info)
775{
776 int err;
777 char *name;
778 struct tipc_bearer *bearer;
779 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
780
781 if (!info->attrs[TIPC_NLA_BEARER])
782 return -EINVAL;
783
784 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
785 info->attrs[TIPC_NLA_BEARER],
786 tipc_nl_bearer_policy);
787 if (err)
788 return err;
789
790 if (!attrs[TIPC_NLA_BEARER_NAME])
791 return -EINVAL;
792
793 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
794
795 rtnl_lock();
796 bearer = tipc_bearer_find(name);
797 if (!bearer) {
798 rtnl_unlock();
799 return -EINVAL;
800 }
801
802 bearer_disable(bearer, false);
803 rtnl_unlock();
804
805 return 0;
806}
807
808int tipc_nl_bearer_enable(struct sk_buff *skb, struct genl_info *info)
809{
810 int err;
811 char *bearer;
812 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
813 u32 domain;
814 u32 prio;
815
816 prio = TIPC_MEDIA_LINK_PRI;
817 domain = tipc_own_addr & TIPC_CLUSTER_MASK;
818
819 if (!info->attrs[TIPC_NLA_BEARER])
820 return -EINVAL;
821
822 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
823 info->attrs[TIPC_NLA_BEARER],
824 tipc_nl_bearer_policy);
825 if (err)
826 return err;
827
828 if (!attrs[TIPC_NLA_BEARER_NAME])
829 return -EINVAL;
830
831 bearer = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
832
833 if (attrs[TIPC_NLA_BEARER_DOMAIN])
834 domain = nla_get_u32(attrs[TIPC_NLA_BEARER_DOMAIN]);
835
836 if (attrs[TIPC_NLA_BEARER_PROP]) {
837 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
838
839 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
840 props);
841 if (err)
842 return err;
843
844 if (props[TIPC_NLA_PROP_PRIO])
845 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
846 }
847
848 rtnl_lock();
849 err = tipc_enable_bearer(bearer, domain, prio);
850 if (err) {
851 rtnl_unlock();
852 return err;
853 }
854 rtnl_unlock();
855
856 return 0;
857}
Richard Alpe315c00b2014-11-20 10:29:09 +0100858
859int tipc_nl_bearer_set(struct sk_buff *skb, struct genl_info *info)
860{
861 int err;
862 char *name;
863 struct tipc_bearer *b;
864 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
865
866 if (!info->attrs[TIPC_NLA_BEARER])
867 return -EINVAL;
868
869 err = nla_parse_nested(attrs, TIPC_NLA_BEARER_MAX,
870 info->attrs[TIPC_NLA_BEARER],
871 tipc_nl_bearer_policy);
872 if (err)
873 return err;
874
875 if (!attrs[TIPC_NLA_BEARER_NAME])
876 return -EINVAL;
877 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
878
879 rtnl_lock();
880 b = tipc_bearer_find(name);
881 if (!b) {
882 rtnl_unlock();
883 return -EINVAL;
884 }
885
886 if (attrs[TIPC_NLA_BEARER_PROP]) {
887 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
888
889 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
890 props);
891 if (err) {
892 rtnl_unlock();
893 return err;
894 }
895
896 if (props[TIPC_NLA_PROP_TOL])
897 b->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
898 if (props[TIPC_NLA_PROP_PRIO])
899 b->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
900 if (props[TIPC_NLA_PROP_WIN])
901 b->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
902 }
903 rtnl_unlock();
904
905 return 0;
906}
Richard Alpe46f15c62014-11-20 10:29:15 +0100907
908int __tipc_nl_add_media(struct tipc_nl_msg *msg, struct tipc_media *media)
909{
910 void *hdr;
911 struct nlattr *attrs;
912 struct nlattr *prop;
913
914 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_v2_family,
915 NLM_F_MULTI, TIPC_NL_MEDIA_GET);
916 if (!hdr)
917 return -EMSGSIZE;
918
919 attrs = nla_nest_start(msg->skb, TIPC_NLA_MEDIA);
920 if (!attrs)
921 goto msg_full;
922
923 if (nla_put_string(msg->skb, TIPC_NLA_MEDIA_NAME, media->name))
924 goto attr_msg_full;
925
926 prop = nla_nest_start(msg->skb, TIPC_NLA_MEDIA_PROP);
927 if (!prop)
928 goto prop_msg_full;
929 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, media->priority))
930 goto prop_msg_full;
931 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, media->tolerance))
932 goto prop_msg_full;
933 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, media->window))
934 goto prop_msg_full;
935
936 nla_nest_end(msg->skb, prop);
937 nla_nest_end(msg->skb, attrs);
938 genlmsg_end(msg->skb, hdr);
939
940 return 0;
941
942prop_msg_full:
943 nla_nest_cancel(msg->skb, prop);
944attr_msg_full:
945 nla_nest_cancel(msg->skb, attrs);
946msg_full:
947 genlmsg_cancel(msg->skb, hdr);
948
949 return -EMSGSIZE;
950}
951
952int tipc_nl_media_dump(struct sk_buff *skb, struct netlink_callback *cb)
953{
954 int err;
955 int i = cb->args[0];
956 struct tipc_nl_msg msg;
957
958 if (i == MAX_MEDIA)
959 return 0;
960
961 msg.skb = skb;
962 msg.portid = NETLINK_CB(cb->skb).portid;
963 msg.seq = cb->nlh->nlmsg_seq;
964
965 rtnl_lock();
966 for (; media_info_array[i] != NULL; i++) {
967 err = __tipc_nl_add_media(&msg, media_info_array[i]);
968 if (err)
969 break;
970 }
971 rtnl_unlock();
972
973 cb->args[0] = i;
974 return skb->len;
975}
976
977int tipc_nl_media_get(struct sk_buff *skb, struct genl_info *info)
978{
979 int err;
980 char *name;
981 struct tipc_nl_msg msg;
982 struct tipc_media *media;
983 struct sk_buff *rep;
984 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
985
986 if (!info->attrs[TIPC_NLA_MEDIA])
987 return -EINVAL;
988
989 err = nla_parse_nested(attrs, TIPC_NLA_MEDIA_MAX,
990 info->attrs[TIPC_NLA_MEDIA],
991 tipc_nl_media_policy);
992 if (err)
993 return err;
994
995 if (!attrs[TIPC_NLA_MEDIA_NAME])
996 return -EINVAL;
997 name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
998
999 rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
1000 if (!rep)
1001 return -ENOMEM;
1002
1003 msg.skb = rep;
1004 msg.portid = info->snd_portid;
1005 msg.seq = info->snd_seq;
1006
1007 rtnl_lock();
1008 media = tipc_media_find(name);
1009 if (!media) {
1010 err = -EINVAL;
1011 goto err_out;
1012 }
1013
1014 err = __tipc_nl_add_media(&msg, media);
1015 if (err)
1016 goto err_out;
1017 rtnl_unlock();
1018
1019 return genlmsg_reply(rep, info);
1020err_out:
1021 rtnl_unlock();
1022 nlmsg_free(rep);
1023
1024 return err;
1025}
Richard Alpe1e554172014-11-20 10:29:16 +01001026
1027int tipc_nl_media_set(struct sk_buff *skb, struct genl_info *info)
1028{
1029 int err;
1030 char *name;
1031 struct tipc_media *m;
1032 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
1033
1034 if (!info->attrs[TIPC_NLA_MEDIA])
1035 return -EINVAL;
1036
1037 err = nla_parse_nested(attrs, TIPC_NLA_MEDIA_MAX,
1038 info->attrs[TIPC_NLA_MEDIA],
1039 tipc_nl_media_policy);
1040
1041 if (!attrs[TIPC_NLA_MEDIA_NAME])
1042 return -EINVAL;
1043 name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
1044
1045 rtnl_lock();
1046 m = tipc_media_find(name);
1047 if (!m) {
1048 rtnl_unlock();
1049 return -EINVAL;
1050 }
1051
1052 if (attrs[TIPC_NLA_MEDIA_PROP]) {
1053 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
1054
1055 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_MEDIA_PROP],
1056 props);
1057 if (err) {
1058 rtnl_unlock();
1059 return err;
1060 }
1061
1062 if (props[TIPC_NLA_PROP_TOL])
1063 m->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
1064 if (props[TIPC_NLA_PROP_PRIO])
1065 m->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1066 if (props[TIPC_NLA_PROP_WIN])
1067 m->window = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
1068 }
1069 rtnl_unlock();
1070
1071 return 0;
1072}