blob: a4389ef08a9807f5c3f35904dbede3086e2d49bf [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 *
Jon Paul Maloy35c55c92016-06-13 20:46:22 -04004 * Copyright (c) 1996-2006, 2013-2016, 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"
Jon Paul Maloy35c55c92016-06-13 20:46:22 -040042#include "monitor.h"
Ying Xue1da46562015-01-09 15:27:07 +080043#include "bcast.h"
Richard Alpe49cc66e2016-03-04 17:04:42 +010044#include "netlink.h"
Richard Alpeef20cd42016-08-26 10:52:53 +020045#include "udp_media.h"
Tuong Liencf5f55f2018-12-19 09:18:00 +070046#include "trace.h"
Tuong Lienfc1b6d62019-11-08 12:05:11 +070047#include "crypto.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010048
Patrick McHardya29a1942013-04-17 06:18:28 +000049#define MAX_ADDR_STR 60
Per Lidenb97bf3f2006-01-02 19:04:38 +010050
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080051static struct tipc_media * const media_info_array[] = {
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080052 &eth_media_info,
53#ifdef CONFIG_TIPC_MEDIA_IB
54 &ib_media_info,
55#endif
Erik Hugned0f91932015-03-05 10:23:49 +010056#ifdef CONFIG_TIPC_MEDIA_UDP
57 &udp_media_info,
58#endif
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080059 NULL
60};
Per Lidenb97bf3f2006-01-02 19:04:38 +010061
Jon Paul Maloy0d051bf2016-08-16 11:53:50 -040062static struct tipc_bearer *bearer_get(struct net *net, int bearer_id)
63{
64 struct tipc_net *tn = tipc_net(net);
65
Xin Long30a46162019-07-02 00:54:55 +080066 return rcu_dereference(tn->bearer_list[bearer_id]);
Jon Paul Maloy0d051bf2016-08-16 11:53:50 -040067}
68
Jon Paul Maloy1a906322015-11-19 14:30:47 -050069static void bearer_disable(struct net *net, struct tipc_bearer *b);
Parthasarathy Bhuvaragand55c60e2017-08-28 17:57:02 +020070static int tipc_l2_rcv_msg(struct sk_buff *skb, struct net_device *dev,
71 struct packet_type *pt, struct net_device *orig_dev);
Allan Stephens3a777ff2011-04-21 13:58:26 -050072
Per Lidenb97bf3f2006-01-02 19:04:38 +010073/**
Allan Stephens5c216e12011-10-18 11:34:29 -040074 * tipc_media_find - locates specified media object by name
Randy Dunlapec6a1642020-11-29 10:32:42 -080075 * @name: name to locate
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
Randy Dunlapec6a1642020-11-29 10:32:42 -080090 * @type: type identifier to locate
Allan Stephensc79be452011-10-06 16:40:55 -040091 */
Paul Gortmaker358a0d12011-12-29 20:19:42 -050092static struct tipc_media *media_find_id(u8 type)
Allan Stephensc79be452011-10-06 16:40:55 -040093{
94 u32 i;
95
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -080096 for (i = 0; media_info_array[i] != NULL; i++) {
97 if (media_info_array[i]->type_id == type)
Jon Paul Maloy5702dba2013-12-10 20:45:39 -080098 break;
Allan Stephensc79be452011-10-06 16:40:55 -040099 }
Jon Paul Maloyef72a7e2013-12-10 20:45:40 -0800100 return media_info_array[i];
Per Lidenb97bf3f2006-01-02 19:04:38 +0100101}
102
103/**
Per Liden4323add2006-01-18 00:38:21 +0100104 * tipc_media_addr_printf - record media address in print buffer
Randy Dunlapec6a1642020-11-29 10:32:42 -0800105 * @buf: output buffer
106 * @len: output buffer size remaining
107 * @a: input media address
Per Lidenb97bf3f2006-01-02 19:04:38 +0100108 */
Tuong Lienb4b97712018-12-19 09:17:56 +0700109int tipc_media_addr_printf(char *buf, int len, struct tipc_media_addr *a)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100110{
Allan Stephensc61b6662011-10-07 11:31:49 -0400111 char addr_str[MAX_ADDR_STR];
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500112 struct tipc_media *m;
Erik Hugnedc1aed32012-06-29 00:50:23 -0400113 int ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500115 m = media_find_id(a->media_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100116
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500117 if (m && !m->addr2str(a, addr_str, sizeof(addr_str)))
118 ret = scnprintf(buf, len, "%s(%s)", m->name, addr_str);
Allan Stephensc61b6662011-10-07 11:31:49 -0400119 else {
Allan Stephensc61b6662011-10-07 11:31:49 -0400120 u32 i;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100121
Richard Alpe941787b2015-02-09 09:50:19 +0100122 ret = scnprintf(buf, len, "UNKNOWN(%u)", a->media_id);
Allan Stephens3d749a62011-10-07 15:19:11 -0400123 for (i = 0; i < sizeof(a->value); i++)
Tuong Lienb4b97712018-12-19 09:17:56 +0700124 ret += scnprintf(buf + ret, len - ret,
125 "-%x", a->value[i]);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100126 }
Tuong Lienb4b97712018-12-19 09:17:56 +0700127 return ret;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100128}
129
130/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100131 * bearer_name_validate - validate & (optionally) deconstruct bearer name
Ben Hutchings2c530402012-07-10 10:55:09 +0000132 * @name: ptr to bearer name string
133 * @name_parts: ptr to area for bearer name components (or NULL if not needed)
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900134 *
Randy Dunlap637b77f2020-11-29 10:32:48 -0800135 * Return: 1 if bearer name is valid, otherwise 0.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100136 */
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900137static int bearer_name_validate(const char *name,
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500138 struct tipc_bearer_names *name_parts)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100139{
140 char name_copy[TIPC_MAX_BEARER_NAME];
141 char *media_name;
142 char *if_name;
143 u32 media_len;
144 u32 if_len;
145
146 /* copy bearer name & ensure length is OK */
Wenlin Kang2f51e572020-11-12 17:34:42 +0800147 if (strscpy(name_copy, name, TIPC_MAX_BEARER_NAME) < 0)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100148 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
Randy Dunlapec6a1642020-11-29 10:32:42 -0800174 * @net: the applicable net namespace
175 * @name: bearer name to locate
Per Lidenb97bf3f2006-01-02 19:04:38 +0100176 */
Ying Xue7f9f95d2015-01-09 15:27:06 +0800177struct tipc_bearer *tipc_bearer_find(struct net *net, const char *name)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100178{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800179 struct tipc_net *tn = net_generic(net, tipc_net_id);
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500180 struct tipc_bearer *b;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100181 u32 i;
182
Ying Xue3874ccb2014-03-27 12:54:33 +0800183 for (i = 0; i < MAX_BEARERS; i++) {
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500184 b = rtnl_dereference(tn->bearer_list[i]);
185 if (b && (!strcmp(b->name, name)))
186 return b;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100187 }
Sam Ravnborg1fc54d82006-03-20 22:36:47 -0800188 return NULL;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100189}
190
Parthasarathy Bhuvaraganff0d3e72016-07-26 08:47:21 +0200191/* tipc_bearer_get_name - get the bearer name from its id.
192 * @net: network namespace
193 * @name: a pointer to the buffer where the name will be stored.
194 * @bearer_id: the id to get the name from.
195 */
196int tipc_bearer_get_name(struct net *net, char *name, u32 bearer_id)
197{
198 struct tipc_net *tn = tipc_net(net);
199 struct tipc_bearer *b;
200
201 if (bearer_id >= MAX_BEARERS)
202 return -EINVAL;
203
204 b = rtnl_dereference(tn->bearer_list[bearer_id]);
205 if (!b)
206 return -EINVAL;
207
208 strcpy(name, b->name);
209 return 0;
210}
211
Ying Xue7f9f95d2015-01-09 15:27:06 +0800212void tipc_bearer_add_dest(struct net *net, u32 bearer_id, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100213{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800214 struct tipc_net *tn = net_generic(net, tipc_net_id);
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500215 struct tipc_bearer *b;
Ying Xue7a2f7d12014-04-21 10:55:46 +0800216
217 rcu_read_lock();
Xin Long30a46162019-07-02 00:54:55 +0800218 b = rcu_dereference(tn->bearer_list[bearer_id]);
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500219 if (b)
Jon Maloyb39e4652018-03-22 20:42:46 +0100220 tipc_disc_add_dest(b->disc);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800221 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100222}
223
Ying Xue7f9f95d2015-01-09 15:27:06 +0800224void tipc_bearer_remove_dest(struct net *net, u32 bearer_id, u32 dest)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100225{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800226 struct tipc_net *tn = net_generic(net, tipc_net_id);
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500227 struct tipc_bearer *b;
Ying Xue7a2f7d12014-04-21 10:55:46 +0800228
229 rcu_read_lock();
Xin Long30a46162019-07-02 00:54:55 +0800230 b = rcu_dereference(tn->bearer_list[bearer_id]);
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500231 if (b)
Jon Maloyb39e4652018-03-22 20:42:46 +0100232 tipc_disc_remove_dest(b->disc);
Ying Xue7a2f7d12014-04-21 10:55:46 +0800233 rcu_read_unlock();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100234}
235
Allan Stephensb274f4a2010-05-11 14:30:16 +0000236/**
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237 * tipc_enable_bearer - enable bearer with the given name
Randy Dunlapec6a1642020-11-29 10:32:42 -0800238 * @net: the applicable net namespace
239 * @name: bearer name to enable
240 * @disc_domain: bearer domain
241 * @prio: bearer priority
242 * @attr: nlattr array
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900243 */
Richard Alpe9ab15462015-02-09 09:50:05 +0100244static int tipc_enable_bearer(struct net *net, const char *name,
Jon Maloycb30a6332018-03-22 20:42:45 +0100245 u32 disc_domain, u32 prio,
Erik Hugned0f91932015-03-05 10:23:49 +0100246 struct nlattr *attr[])
Per Lidenb97bf3f2006-01-02 19:04:38 +0100247{
Jon Maloycb30a6332018-03-22 20:42:45 +0100248 struct tipc_net *tn = tipc_net(net);
249 struct tipc_bearer_names b_names;
Jon Maloycb30a6332018-03-22 20:42:45 +0100250 int with_this_prio = 1;
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500251 struct tipc_bearer *b;
252 struct tipc_media *m;
Jon Paul Maloy4e801fa2016-04-07 10:09:13 -0400253 struct sk_buff *skb;
Jon Maloycb30a6332018-03-22 20:42:45 +0100254 int bearer_id = 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100255 int res = -EINVAL;
Jon Maloycb30a6332018-03-22 20:42:45 +0100256 char *errstr = "";
Per Lidenb97bf3f2006-01-02 19:04:38 +0100257
Paul Gortmakerf19765f2011-12-29 21:39:49 -0500258 if (!bearer_name_validate(name, &b_names)) {
Jon Maloycb30a6332018-03-22 20:42:45 +0100259 errstr = "illegal name";
260 goto rejected;
Allan Stephensa10bd922006-06-25 23:52:17 -0700261 }
Jon Maloycb30a6332018-03-22 20:42:45 +0100262
Jon Maloycb30a6332018-03-22 20:42:45 +0100263 if (prio > TIPC_MAX_LINK_PRI && prio != TIPC_MEDIA_LINK_PRI) {
264 errstr = "illegal priority";
265 goto rejected;
Allan Stephensa10bd922006-06-25 23:52:17 -0700266 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100267
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500268 m = tipc_media_find(b_names.media_name);
269 if (!m) {
Jon Maloycb30a6332018-03-22 20:42:45 +0100270 errstr = "media not registered";
271 goto rejected;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272 }
Per Liden16cb4b32006-01-13 22:22:22 +0100273
Jon Maloycb30a6332018-03-22 20:42:45 +0100274 if (prio == TIPC_MEDIA_LINK_PRI)
275 prio = m->priority;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100276
Jon Maloycb30a6332018-03-22 20:42:45 +0100277 /* Check new bearer vs existing ones and find free bearer id if any */
278 while (bearer_id < MAX_BEARERS) {
279 b = rtnl_dereference(tn->bearer_list[bearer_id]);
280 if (!b)
281 break;
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500282 if (!strcmp(name, b->name)) {
Jon Maloycb30a6332018-03-22 20:42:45 +0100283 errstr = "already enabled";
284 goto rejected;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100285 }
Jon Maloycb30a6332018-03-22 20:42:45 +0100286 bearer_id++;
287 if (b->priority != prio)
288 continue;
289 if (++with_this_prio <= 2)
290 continue;
291 pr_warn("Bearer <%s>: already 2 bearers with priority %u\n",
292 name, prio);
293 if (prio == TIPC_MIN_LINK_PRI) {
294 errstr = "cannot adjust to lower";
295 goto rejected;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100296 }
Jon Maloycb30a6332018-03-22 20:42:45 +0100297 pr_warn("Bearer <%s>: trying with adjusted priority\n", name);
298 prio--;
299 bearer_id = 0;
300 with_this_prio = 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100301 }
Jon Maloycb30a6332018-03-22 20:42:45 +0100302
Per Lidenb97bf3f2006-01-02 19:04:38 +0100303 if (bearer_id >= MAX_BEARERS) {
Jon Maloycb30a6332018-03-22 20:42:45 +0100304 errstr = "max 3 bearers permitted";
305 goto rejected;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100306 }
307
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500308 b = kzalloc(sizeof(*b), GFP_ATOMIC);
309 if (!b)
Ying Xue7216cd92014-04-21 10:55:48 +0800310 return -ENOMEM;
311
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500312 strcpy(b->name, name);
313 b->media = m;
314 res = m->enable_media(net, b, attr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100315 if (res) {
Tommi Rantala19142552017-12-22 09:35:16 +0200316 kfree(b);
Jon Maloycb30a6332018-03-22 20:42:45 +0100317 errstr = "failed to enable media";
318 goto rejected;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100319 }
320
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500321 b->identity = bearer_id;
322 b->tolerance = m->tolerance;
Jon Maloy16ad3f42019-12-10 00:52:46 +0100323 b->min_win = m->min_win;
324 b->max_win = m->max_win;
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500325 b->domain = disc_domain;
326 b->net_plane = bearer_id + 'A';
Jon Maloycb30a6332018-03-22 20:42:45 +0100327 b->priority = prio;
Tuong Lien2a7ee692019-11-08 12:05:08 +0700328 refcount_set(&b->refcnt, 1);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500329
Jon Paul Maloy4e801fa2016-04-07 10:09:13 -0400330 res = tipc_disc_create(net, b, &b->bcast_addr, &skb);
Allan Stephens3a777ff2011-04-21 13:58:26 -0500331 if (res) {
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500332 bearer_disable(net, b);
Jon Maloycb30a6332018-03-22 20:42:45 +0100333 errstr = "failed to create discoverer";
334 goto rejected;
Allan Stephens3a777ff2011-04-21 13:58:26 -0500335 }
Ying Xue3874ccb2014-03-27 12:54:33 +0800336
Tuong Lien97982782020-06-11 17:08:08 +0700337 test_and_set_bit_lock(0, &b->up);
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500338 rcu_assign_pointer(tn->bearer_list[bearer_id], b);
Jon Paul Maloy4e801fa2016-04-07 10:09:13 -0400339 if (skb)
340 tipc_bearer_xmit_skb(net, bearer_id, skb, &b->bcast_addr);
Jon Paul Maloy35c55c92016-06-13 20:46:22 -0400341
Tommi Rantala19142552017-12-22 09:35:16 +0200342 if (tipc_mon_create(net, bearer_id)) {
343 bearer_disable(net, b);
Jon Paul Maloy35c55c92016-06-13 20:46:22 -0400344 return -ENOMEM;
Tommi Rantala19142552017-12-22 09:35:16 +0200345 }
Jon Paul Maloy35c55c92016-06-13 20:46:22 -0400346
Jon Maloy20263642018-03-22 20:42:47 +0100347 pr_info("Enabled bearer <%s>, priority %u\n", name, prio);
348
Jon Maloycb30a6332018-03-22 20:42:45 +0100349 return res;
350rejected:
Jon Maloy20263642018-03-22 20:42:47 +0100351 pr_warn("Enabling of bearer <%s> rejected, %s\n", name, errstr);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100352 return res;
353}
354
355/**
Erik Hugne512137e2013-12-06 10:08:00 -0500356 * tipc_reset_bearer - Reset all links established over this bearer
Randy Dunlapec6a1642020-11-29 10:32:42 -0800357 * @net: the applicable net namespace
358 * @b: the target bearer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100359 */
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500360static int tipc_reset_bearer(struct net *net, struct tipc_bearer *b)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100361{
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500362 pr_info("Resetting bearer <%s>\n", b->name);
363 tipc_node_delete_links(net, b->identity);
364 tipc_disc_reset(net, b);
Allan Stephens0e35fd52008-07-14 22:44:01 -0700365 return 0;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100366}
367
Tuong Lien2a7ee692019-11-08 12:05:08 +0700368bool tipc_bearer_hold(struct tipc_bearer *b)
369{
370 return (b && refcount_inc_not_zero(&b->refcnt));
371}
372
373void tipc_bearer_put(struct tipc_bearer *b)
374{
375 if (b && refcount_dec_and_test(&b->refcnt))
376 kfree_rcu(b, rcu);
377}
378
Per Lidenb97bf3f2006-01-02 19:04:38 +0100379/**
Randy Dunlapec6a1642020-11-29 10:32:42 -0800380 * bearer_disable - disable this bearer
381 * @net: the applicable net namespace
382 * @b: the bearer to disable
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900383 *
Ying Xue7216cd92014-04-21 10:55:48 +0800384 * Note: This routine assumes caller holds RTNL lock.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100385 */
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500386static void bearer_disable(struct net *net, struct tipc_bearer *b)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100387{
Jon Paul Maloy5b7066c2016-04-07 10:09:14 -0400388 struct tipc_net *tn = tipc_net(net);
389 int bearer_id = b->identity;
Ying Xue3874ccb2014-03-27 12:54:33 +0800390
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500391 pr_info("Disabling bearer <%s>\n", b->name);
Jon Paul Maloy0d051bf2016-08-16 11:53:50 -0400392 clear_bit_unlock(0, &b->up);
Jon Paul Maloy5b7066c2016-04-07 10:09:14 -0400393 tipc_node_delete_links(net, bearer_id);
Jon Paul Maloy0d051bf2016-08-16 11:53:50 -0400394 b->media->disable_media(b);
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500395 RCU_INIT_POINTER(b->media_ptr, NULL);
Jon Maloyb39e4652018-03-22 20:42:46 +0100396 if (b->disc)
397 tipc_disc_delete(b->disc);
Jon Paul Maloy5b7066c2016-04-07 10:09:14 -0400398 RCU_INIT_POINTER(tn->bearer_list[bearer_id], NULL);
Tuong Lien2a7ee692019-11-08 12:05:08 +0700399 tipc_bearer_put(b);
Jon Paul Maloy35c55c92016-06-13 20:46:22 -0400400 tipc_mon_delete(net, bearer_id);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100401}
402
Erik Hugned0f91932015-03-05 10:23:49 +0100403int tipc_enable_l2_media(struct net *net, struct tipc_bearer *b,
404 struct nlattr *attr[])
Ying Xuee4d050c2013-12-10 20:45:43 -0800405{
Jon Maloy52dfae52018-03-22 20:42:52 +0100406 char *dev_name = strchr((const char *)b->name, ':') + 1;
407 int hwaddr_len = b->media->hwaddr_len;
408 u8 node_id[NODE_ID_LEN] = {0,};
Ying Xuee4d050c2013-12-10 20:45:43 -0800409 struct net_device *dev;
Ying Xuee4d050c2013-12-10 20:45:43 -0800410
411 /* Find device with specified name */
Jon Maloy52dfae52018-03-22 20:42:52 +0100412 dev = dev_get_by_name(net, dev_name);
Ying Xuee4d050c2013-12-10 20:45:43 -0800413 if (!dev)
414 return -ENODEV;
Michal Kubeček3de81b72016-12-02 09:33:41 +0100415 if (tipc_mtu_bad(dev, 0)) {
416 dev_put(dev);
417 return -EINVAL;
418 }
John Rutherford6c9081a2019-08-07 12:52:29 +1000419 if (dev == net->loopback_dev) {
420 dev_put(dev);
421 pr_info("Enabling <%s> not permitted\n", b->name);
422 return -EINVAL;
423 }
Ying Xuee4d050c2013-12-10 20:45:43 -0800424
Jon Maloy52dfae52018-03-22 20:42:52 +0100425 /* Autoconfigure own node identity if needed */
426 if (!tipc_own_id(net) && hwaddr_len <= NODE_ID_LEN) {
427 memcpy(node_id, dev->dev_addr, hwaddr_len);
428 tipc_net_init(net, node_id, 0);
429 }
430 if (!tipc_own_id(net)) {
YueHaibing63135ee2018-07-25 18:00:49 +0800431 dev_put(dev);
Jon Maloy52dfae52018-03-22 20:42:52 +0100432 pr_warn("Failed to obtain node identity\n");
433 return -EINVAL;
434 }
435
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400436 /* Associate TIPC bearer with L2 bearer */
Ying Xue2231c5a2014-04-21 10:55:47 +0800437 rcu_assign_pointer(b->media_ptr, dev);
Parthasarathy Bhuvaragand55c60e2017-08-28 17:57:02 +0200438 b->pt.dev = dev;
439 b->pt.type = htons(ETH_P_TIPC);
440 b->pt.func = tipc_l2_rcv_msg;
441 dev_add_pack(&b->pt);
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400442 memset(&b->bcast_addr, 0, sizeof(b->bcast_addr));
Jon Maloy52dfae52018-03-22 20:42:52 +0100443 memcpy(b->bcast_addr.value, dev->broadcast, hwaddr_len);
Ying Xuee4d050c2013-12-10 20:45:43 -0800444 b->bcast_addr.media_id = b->media->type_id;
Jon Paul Maloy99999742017-01-18 13:50:50 -0500445 b->bcast_addr.broadcast = TIPC_BROADCAST_SUPPORT;
Ying Xuee4d050c2013-12-10 20:45:43 -0800446 b->mtu = dev->mtu;
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400447 b->media->raw2addr(b, &b->addr, (char *)dev->dev_addr);
Ying Xuee4d050c2013-12-10 20:45:43 -0800448 rcu_assign_pointer(dev->tipc_ptr, b);
449 return 0;
450}
451
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400452/* tipc_disable_l2_media - detach TIPC bearer from an L2 interface
Randy Dunlapec6a1642020-11-29 10:32:42 -0800453 * @b: the target bearer
Ying Xuee4d050c2013-12-10 20:45:43 -0800454 *
Jon Paul Maloy282b3a02015-10-15 14:52:45 -0400455 * Mark L2 bearer as inactive so that incoming buffers are thrown away
Ying Xuee4d050c2013-12-10 20:45:43 -0800456 */
457void tipc_disable_l2_media(struct tipc_bearer *b)
458{
Ying Xue2231c5a2014-04-21 10:55:47 +0800459 struct net_device *dev;
460
461 dev = (struct net_device *)rtnl_dereference(b->media_ptr);
Parthasarathy Bhuvaragand55c60e2017-08-28 17:57:02 +0200462 dev_remove_pack(&b->pt);
Ying Xuee4d050c2013-12-10 20:45:43 -0800463 RCU_INIT_POINTER(dev->tipc_ptr, NULL);
Ying Xuef1c8d8c2014-04-21 10:55:49 +0800464 synchronize_net();
Ying Xuee4d050c2013-12-10 20:45:43 -0800465 dev_put(dev);
466}
467
468/**
Jon Paul Maloy38504c22014-05-14 05:39:13 -0400469 * tipc_l2_send_msg - send a TIPC packet out over an L2 interface
Randy Dunlapec6a1642020-11-29 10:32:42 -0800470 * @net: the associated network namespace
Jon Paul Maloy5b7066c2016-04-07 10:09:14 -0400471 * @skb: the packet to be sent
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500472 * @b: the bearer through which the packet is to be sent
Ying Xuee4d050c2013-12-10 20:45:43 -0800473 * @dest: peer destination address
474 */
Jon Paul Maloy7214bcf2015-10-22 08:51:45 -0400475int tipc_l2_send_msg(struct net *net, struct sk_buff *skb,
Ying Xue1da46562015-01-09 15:27:07 +0800476 struct tipc_bearer *b, struct tipc_media_addr *dest)
Ying Xuee4d050c2013-12-10 20:45:43 -0800477{
Ying Xue2231c5a2014-04-21 10:55:47 +0800478 struct net_device *dev;
Ying Xuee4d050c2013-12-10 20:45:43 -0800479 int delta;
Ying Xue2231c5a2014-04-21 10:55:47 +0800480
Xin Long30a46162019-07-02 00:54:55 +0800481 dev = (struct net_device *)rcu_dereference(b->media_ptr);
Ying Xue2231c5a2014-04-21 10:55:47 +0800482 if (!dev)
483 return 0;
Ying Xuee4d050c2013-12-10 20:45:43 -0800484
Jon Paul Maloy0d051bf2016-08-16 11:53:50 -0400485 delta = SKB_DATA_ALIGN(dev->hard_header_len - skb_headroom(skb));
486 if ((delta > 0) && pskb_expand_head(skb, delta, 0, GFP_ATOMIC)) {
487 kfree_skb(skb);
488 return 0;
489 }
Jon Paul Maloy7214bcf2015-10-22 08:51:45 -0400490 skb_reset_network_header(skb);
491 skb->dev = dev;
492 skb->protocol = htons(ETH_P_TIPC);
493 dev_hard_header(skb, dev, ETH_P_TIPC, dest->value,
494 dev->dev_addr, skb->len);
495 dev_queue_xmit(skb);
Ying Xuee4d050c2013-12-10 20:45:43 -0800496 return 0;
497}
498
Jon Paul Maloy99999742017-01-18 13:50:50 -0500499bool tipc_bearer_bcast_support(struct net *net, u32 bearer_id)
500{
501 bool supp = false;
502 struct tipc_bearer *b;
503
504 rcu_read_lock();
505 b = bearer_get(net, bearer_id);
506 if (b)
507 supp = (b->bcast_addr.broadcast == TIPC_BROADCAST_SUPPORT);
508 rcu_read_unlock();
509 return supp;
510}
511
Jon Paul Maloy959e1782015-10-22 08:51:43 -0400512int tipc_bearer_mtu(struct net *net, u32 bearer_id)
513{
514 int mtu = 0;
515 struct tipc_bearer *b;
516
517 rcu_read_lock();
Xin Long30a46162019-07-02 00:54:55 +0800518 b = rcu_dereference(tipc_net(net)->bearer_list[bearer_id]);
Jon Paul Maloy959e1782015-10-22 08:51:43 -0400519 if (b)
520 mtu = b->mtu;
521 rcu_read_unlock();
522 return mtu;
523}
524
Jon Paul Maloy60852d62015-10-22 08:51:44 -0400525/* tipc_bearer_xmit_skb - sends buffer to destination over bearer
526 */
527void tipc_bearer_xmit_skb(struct net *net, u32 bearer_id,
528 struct sk_buff *skb,
529 struct tipc_media_addr *dest)
530{
Jon Paul Maloy0d051bf2016-08-16 11:53:50 -0400531 struct tipc_msg *hdr = buf_msg(skb);
Jon Paul Maloy60852d62015-10-22 08:51:44 -0400532 struct tipc_bearer *b;
533
534 rcu_read_lock();
Jon Paul Maloy0d051bf2016-08-16 11:53:50 -0400535 b = bearer_get(net, bearer_id);
Tuong Lienfc1b6d62019-11-08 12:05:11 +0700536 if (likely(b && (test_bit(0, &b->up) || msg_is_reset(hdr)))) {
537#ifdef CONFIG_TIPC_CRYPTO
538 tipc_crypto_xmit(net, &skb, b, dest, NULL);
539 if (skb)
540#endif
541 b->media->send_msg(net, skb, b, dest);
542 } else {
Jon Paul Maloy4e801fa2016-04-07 10:09:13 -0400543 kfree_skb(skb);
Tuong Lienfc1b6d62019-11-08 12:05:11 +0700544 }
Jon Paul Maloy60852d62015-10-22 08:51:44 -0400545 rcu_read_unlock();
Jon Paul Maloy60852d62015-10-22 08:51:44 -0400546}
547
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400548/* tipc_bearer_xmit() -send buffer to destination over bearer
549 */
550void tipc_bearer_xmit(struct net *net, u32 bearer_id,
551 struct sk_buff_head *xmitq,
Tuong Lienfc1b6d62019-11-08 12:05:11 +0700552 struct tipc_media_addr *dst,
553 struct tipc_node *__dnode)
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400554{
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400555 struct tipc_bearer *b;
556 struct sk_buff *skb, *tmp;
557
558 if (skb_queue_empty(xmitq))
559 return;
560
561 rcu_read_lock();
Jon Paul Maloy0d051bf2016-08-16 11:53:50 -0400562 b = bearer_get(net, bearer_id);
Jon Paul Maloy4e801fa2016-04-07 10:09:13 -0400563 if (unlikely(!b))
564 __skb_queue_purge(xmitq);
565 skb_queue_walk_safe(xmitq, skb, tmp) {
566 __skb_dequeue(xmitq);
Tuong Lienfc1b6d62019-11-08 12:05:11 +0700567 if (likely(test_bit(0, &b->up) || msg_is_reset(buf_msg(skb)))) {
568#ifdef CONFIG_TIPC_CRYPTO
569 tipc_crypto_xmit(net, &skb, b, dst, __dnode);
570 if (skb)
571#endif
572 b->media->send_msg(net, skb, b, dst);
573 } else {
Wei Yongjun5128b182016-08-23 23:01:02 +0000574 kfree_skb(skb);
Tuong Lienfc1b6d62019-11-08 12:05:11 +0700575 }
Jon Paul Maloyaf9b0282015-07-16 16:54:24 -0400576 }
577 rcu_read_unlock();
578}
579
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400580/* tipc_bearer_bc_xmit() - broadcast buffers to all destinations
581 */
582void tipc_bearer_bc_xmit(struct net *net, u32 bearer_id,
583 struct sk_buff_head *xmitq)
584{
585 struct tipc_net *tn = tipc_net(net);
Tuong Lienfc1b6d62019-11-08 12:05:11 +0700586 struct tipc_media_addr *dst;
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400587 int net_id = tn->net_id;
588 struct tipc_bearer *b;
589 struct sk_buff *skb, *tmp;
590 struct tipc_msg *hdr;
591
592 rcu_read_lock();
Jon Paul Maloy0d051bf2016-08-16 11:53:50 -0400593 b = bearer_get(net, bearer_id);
594 if (unlikely(!b || !test_bit(0, &b->up)))
Jon Paul Maloy4e801fa2016-04-07 10:09:13 -0400595 __skb_queue_purge(xmitq);
596 skb_queue_walk_safe(xmitq, skb, tmp) {
597 hdr = buf_msg(skb);
598 msg_set_non_seq(hdr, 1);
599 msg_set_mc_netid(hdr, net_id);
600 __skb_dequeue(xmitq);
Tuong Lienfc1b6d62019-11-08 12:05:11 +0700601 dst = &b->bcast_addr;
602#ifdef CONFIG_TIPC_CRYPTO
603 tipc_crypto_xmit(net, &skb, b, dst, NULL);
604 if (skb)
605#endif
606 b->media->send_msg(net, skb, b, dst);
Jon Paul Maloyb06b2812015-10-22 08:51:42 -0400607 }
608 rcu_read_unlock();
609}
610
Ying Xue6e967ad2013-12-10 20:45:42 -0800611/**
612 * tipc_l2_rcv_msg - handle incoming TIPC message from an interface
Andrew Lunnd8141202020-07-13 01:15:14 +0200613 * @skb: the received message
Ying Xue6e967ad2013-12-10 20:45:42 -0800614 * @dev: the net device that the packet was received on
615 * @pt: the packet_type structure which was used to register this handler
616 * @orig_dev: the original receive net device in case the device is a bond
617 *
618 * Accept only packets explicitly sent to this node, or broadcast packets;
619 * ignores packets sent using interface multicast, and traffic sent to other
620 * nodes (which can happen if interface is running in promiscuous mode).
621 */
Jon Paul Maloy4e801fa2016-04-07 10:09:13 -0400622static int tipc_l2_rcv_msg(struct sk_buff *skb, struct net_device *dev,
Ying Xue6e967ad2013-12-10 20:45:42 -0800623 struct packet_type *pt, struct net_device *orig_dev)
624{
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500625 struct tipc_bearer *b;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100626
Ying Xue6e967ad2013-12-10 20:45:42 -0800627 rcu_read_lock();
Xin Long30a46162019-07-02 00:54:55 +0800628 b = rcu_dereference(dev->tipc_ptr) ?:
629 rcu_dereference(orig_dev->tipc_ptr);
Jon Paul Maloy0d051bf2016-08-16 11:53:50 -0400630 if (likely(b && test_bit(0, &b->up) &&
Jon Paul Maloyfed5f572017-08-14 17:55:56 +0200631 (skb->pkt_type <= PACKET_MULTICAST))) {
David S. Millera8305bf2018-07-29 20:42:53 -0700632 skb_mark_not_on_list(skb);
Tuong Lienfc1b6d62019-11-08 12:05:11 +0700633 TIPC_SKB_CB(skb)->flags = 0;
Parthasarathy Bhuvaragand55c60e2017-08-28 17:57:02 +0200634 tipc_rcv(dev_net(b->pt.dev), skb, b);
Jon Paul Maloy4e801fa2016-04-07 10:09:13 -0400635 rcu_read_unlock();
636 return NET_RX_SUCCESS;
Ying Xue6e967ad2013-12-10 20:45:42 -0800637 }
638 rcu_read_unlock();
Jon Paul Maloy4e801fa2016-04-07 10:09:13 -0400639 kfree_skb(skb);
Ying Xue6e967ad2013-12-10 20:45:42 -0800640 return NET_RX_DROP;
641}
642
643/**
644 * tipc_l2_device_event - handle device events from network device
645 * @nb: the context of the notification
646 * @evt: the type of event
647 * @ptr: the net device that the event was on
648 *
649 * This function is called by the Ethernet driver in case of link
650 * change event.
651 */
652static int tipc_l2_device_event(struct notifier_block *nb, unsigned long evt,
653 void *ptr)
654{
Ying Xue6e967ad2013-12-10 20:45:42 -0800655 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Ying Xuec93d3ba2015-01-09 15:27:04 +0800656 struct net *net = dev_net(dev);
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500657 struct tipc_bearer *b;
Ying Xue6e967ad2013-12-10 20:45:42 -0800658
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500659 b = rtnl_dereference(dev->tipc_ptr);
660 if (!b)
Ying Xue6e967ad2013-12-10 20:45:42 -0800661 return NOTIFY_DONE;
Ying Xue6e967ad2013-12-10 20:45:42 -0800662
Tuong Liencf5f55f2018-12-19 09:18:00 +0700663 trace_tipc_l2_device_event(dev, b, evt);
Ying Xue6e967ad2013-12-10 20:45:42 -0800664 switch (evt) {
665 case NETDEV_CHANGE:
Parthasarathy Bhuvaragan94b6ddc2018-09-25 21:56:57 +0200666 if (netif_carrier_ok(dev) && netif_oper_up(dev)) {
667 test_and_set_bit_lock(0, &b->up);
Ying Xue6e967ad2013-12-10 20:45:42 -0800668 break;
Parthasarathy Bhuvaragan94b6ddc2018-09-25 21:56:57 +0200669 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500670 fallthrough;
Jon Paul Maloy282b3a02015-10-15 14:52:45 -0400671 case NETDEV_GOING_DOWN:
Jon Paul Maloy0d051bf2016-08-16 11:53:50 -0400672 clear_bit_unlock(0, &b->up);
Jon Paul Maloy5b7066c2016-04-07 10:09:14 -0400673 tipc_reset_bearer(net, b);
674 break;
Parthasarathy Bhuvaragan94b6ddc2018-09-25 21:56:57 +0200675 case NETDEV_UP:
676 test_and_set_bit_lock(0, &b->up);
677 break;
Ying Xue6e967ad2013-12-10 20:45:42 -0800678 case NETDEV_CHANGEMTU:
Michal Kubeček3de81b72016-12-02 09:33:41 +0100679 if (tipc_mtu_bad(dev, 0)) {
680 bearer_disable(net, b);
681 break;
682 }
683 b->mtu = dev->mtu;
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500684 tipc_reset_bearer(net, b);
Erik Hugnea21a5842014-03-28 10:32:08 +0100685 break;
Ying Xue6e967ad2013-12-10 20:45:42 -0800686 case NETDEV_CHANGEADDR:
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500687 b->media->raw2addr(b, &b->addr,
Jon Paul Maloy5b7066c2016-04-07 10:09:14 -0400688 (char *)dev->dev_addr);
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500689 tipc_reset_bearer(net, b);
Ying Xue6e967ad2013-12-10 20:45:42 -0800690 break;
691 case NETDEV_UNREGISTER:
692 case NETDEV_CHANGENAME:
Kleber Sacilotto de Souza8e0deed2017-09-06 11:08:06 +0200693 bearer_disable(net, b);
Ying Xue6e967ad2013-12-10 20:45:42 -0800694 break;
695 }
Ying Xue6e967ad2013-12-10 20:45:42 -0800696 return NOTIFY_OK;
697}
698
Ying Xue6e967ad2013-12-10 20:45:42 -0800699static struct notifier_block notifier = {
700 .notifier_call = tipc_l2_device_event,
701 .priority = 0,
702};
703
704int tipc_bearer_setup(void)
705{
Parthasarathy Bhuvaragand55c60e2017-08-28 17:57:02 +0200706 return register_netdevice_notifier(&notifier);
Ying Xue6e967ad2013-12-10 20:45:42 -0800707}
708
709void tipc_bearer_cleanup(void)
710{
711 unregister_netdevice_notifier(&notifier);
Ying Xue6e967ad2013-12-10 20:45:42 -0800712}
Per Lidenb97bf3f2006-01-02 19:04:38 +0100713
Ying Xuef2f98002015-01-09 15:27:05 +0800714void tipc_bearer_stop(struct net *net)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100715{
Ying Xue7f9f95d2015-01-09 15:27:06 +0800716 struct tipc_net *tn = net_generic(net, tipc_net_id);
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500717 struct tipc_bearer *b;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100718 u32 i;
719
Per Lidenb97bf3f2006-01-02 19:04:38 +0100720 for (i = 0; i < MAX_BEARERS; i++) {
Jon Paul Maloy1a906322015-11-19 14:30:47 -0500721 b = rtnl_dereference(tn->bearer_list[i]);
722 if (b) {
723 bearer_disable(net, b);
Ying Xue7f9f95d2015-01-09 15:27:06 +0800724 tn->bearer_list[i] = NULL;
Ying Xue3874ccb2014-03-27 12:54:33 +0800725 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100726 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100727}
Richard Alpe0655f6a2014-11-20 10:29:07 +0100728
John Rutherford6c9081a2019-08-07 12:52:29 +1000729void tipc_clone_to_loopback(struct net *net, struct sk_buff_head *pkts)
730{
731 struct net_device *dev = net->loopback_dev;
732 struct sk_buff *skb, *_skb;
733 int exp;
734
735 skb_queue_walk(pkts, _skb) {
736 skb = pskb_copy(_skb, GFP_ATOMIC);
737 if (!skb)
738 continue;
739
740 exp = SKB_DATA_ALIGN(dev->hard_header_len - skb_headroom(skb));
741 if (exp > 0 && pskb_expand_head(skb, exp, 0, GFP_ATOMIC)) {
742 kfree_skb(skb);
743 continue;
744 }
745
746 skb_reset_network_header(skb);
747 dev_hard_header(skb, dev, ETH_P_TIPC, dev->dev_addr,
748 dev->dev_addr, skb->len);
749 skb->dev = dev;
750 skb->pkt_type = PACKET_HOST;
751 skb->ip_summed = CHECKSUM_UNNECESSARY;
752 skb->protocol = eth_type_trans(skb, dev);
753 netif_rx_ni(skb);
754 }
755}
756
757static int tipc_loopback_rcv_pkt(struct sk_buff *skb, struct net_device *dev,
758 struct packet_type *pt, struct net_device *od)
759{
760 consume_skb(skb);
761 return NET_RX_SUCCESS;
762}
763
764int tipc_attach_loopback(struct net *net)
765{
766 struct net_device *dev = net->loopback_dev;
767 struct tipc_net *tn = tipc_net(net);
768
769 if (!dev)
770 return -ENODEV;
771
772 dev_hold(dev);
773 tn->loopback_pt.dev = dev;
774 tn->loopback_pt.type = htons(ETH_P_TIPC);
775 tn->loopback_pt.func = tipc_loopback_rcv_pkt;
776 dev_add_pack(&tn->loopback_pt);
777 return 0;
778}
779
780void tipc_detach_loopback(struct net *net)
781{
782 struct tipc_net *tn = tipc_net(net);
783
784 dev_remove_pack(&tn->loopback_pt);
785 dev_put(net->loopback_dev);
786}
787
Richard Alpe35b9dd72014-11-20 10:29:08 +0100788/* Caller should hold rtnl_lock to protect the bearer */
Richard Alped8182802014-11-24 11:10:29 +0100789static int __tipc_nl_add_bearer(struct tipc_nl_msg *msg,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200790 struct tipc_bearer *bearer, int nlflags)
Richard Alpe35b9dd72014-11-20 10:29:08 +0100791{
792 void *hdr;
793 struct nlattr *attrs;
794 struct nlattr *prop;
795
Richard Alpebfb3e5d2015-02-09 09:50:03 +0100796 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200797 nlflags, TIPC_NL_BEARER_GET);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100798 if (!hdr)
799 return -EMSGSIZE;
800
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200801 attrs = nla_nest_start_noflag(msg->skb, TIPC_NLA_BEARER);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100802 if (!attrs)
803 goto msg_full;
804
805 if (nla_put_string(msg->skb, TIPC_NLA_BEARER_NAME, bearer->name))
806 goto attr_msg_full;
807
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200808 prop = nla_nest_start_noflag(msg->skb, TIPC_NLA_BEARER_PROP);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100809 if (!prop)
810 goto prop_msg_full;
811 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, bearer->priority))
812 goto prop_msg_full;
813 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, bearer->tolerance))
814 goto prop_msg_full;
Jon Maloy16ad3f42019-12-10 00:52:46 +0100815 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, bearer->max_win))
Richard Alpe35b9dd72014-11-20 10:29:08 +0100816 goto prop_msg_full;
GhantaKrishnamurthy MohanKrishna682cd3c2018-04-19 11:06:20 +0200817 if (bearer->media->type_id == TIPC_MEDIA_TYPE_UDP)
818 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_MTU, bearer->mtu))
819 goto prop_msg_full;
Richard Alpe35b9dd72014-11-20 10:29:08 +0100820
821 nla_nest_end(msg->skb, prop);
Richard Alpefdb3acc2016-08-26 10:52:55 +0200822
823#ifdef CONFIG_TIPC_MEDIA_UDP
824 if (bearer->media->type_id == TIPC_MEDIA_TYPE_UDP) {
825 if (tipc_udp_nl_add_bearer_data(msg, bearer))
826 goto attr_msg_full;
827 }
828#endif
829
Richard Alpe35b9dd72014-11-20 10:29:08 +0100830 nla_nest_end(msg->skb, attrs);
831 genlmsg_end(msg->skb, hdr);
832
833 return 0;
834
835prop_msg_full:
836 nla_nest_cancel(msg->skb, prop);
837attr_msg_full:
838 nla_nest_cancel(msg->skb, attrs);
839msg_full:
840 genlmsg_cancel(msg->skb, hdr);
841
842 return -EMSGSIZE;
843}
844
845int tipc_nl_bearer_dump(struct sk_buff *skb, struct netlink_callback *cb)
846{
847 int err;
848 int i = cb->args[0];
849 struct tipc_bearer *bearer;
850 struct tipc_nl_msg msg;
Ying Xue7f9f95d2015-01-09 15:27:06 +0800851 struct net *net = sock_net(skb->sk);
852 struct tipc_net *tn = net_generic(net, tipc_net_id);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100853
854 if (i == MAX_BEARERS)
855 return 0;
856
857 msg.skb = skb;
858 msg.portid = NETLINK_CB(cb->skb).portid;
859 msg.seq = cb->nlh->nlmsg_seq;
860
861 rtnl_lock();
862 for (i = 0; i < MAX_BEARERS; i++) {
Ying Xue7f9f95d2015-01-09 15:27:06 +0800863 bearer = rtnl_dereference(tn->bearer_list[i]);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100864 if (!bearer)
865 continue;
866
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200867 err = __tipc_nl_add_bearer(&msg, bearer, NLM_F_MULTI);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100868 if (err)
869 break;
870 }
871 rtnl_unlock();
872
873 cb->args[0] = i;
874 return skb->len;
875}
876
877int tipc_nl_bearer_get(struct sk_buff *skb, struct genl_info *info)
878{
879 int err;
880 char *name;
881 struct sk_buff *rep;
882 struct tipc_bearer *bearer;
883 struct tipc_nl_msg msg;
884 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Ying Xue7f9f95d2015-01-09 15:27:06 +0800885 struct net *net = genl_info_net(info);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100886
887 if (!info->attrs[TIPC_NLA_BEARER])
888 return -EINVAL;
889
Johannes Berg8cb08172019-04-26 14:07:28 +0200890 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_BEARER_MAX,
891 info->attrs[TIPC_NLA_BEARER],
892 tipc_nl_bearer_policy, info->extack);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100893 if (err)
894 return err;
895
896 if (!attrs[TIPC_NLA_BEARER_NAME])
897 return -EINVAL;
898 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
899
900 rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
901 if (!rep)
902 return -ENOMEM;
903
904 msg.skb = rep;
905 msg.portid = info->snd_portid;
906 msg.seq = info->snd_seq;
907
908 rtnl_lock();
Ying Xue7f9f95d2015-01-09 15:27:06 +0800909 bearer = tipc_bearer_find(net, name);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100910 if (!bearer) {
911 err = -EINVAL;
912 goto err_out;
913 }
914
Nicolas Dichtelf2f67392015-04-28 18:33:50 +0200915 err = __tipc_nl_add_bearer(&msg, bearer, 0);
Richard Alpe35b9dd72014-11-20 10:29:08 +0100916 if (err)
917 goto err_out;
918 rtnl_unlock();
919
920 return genlmsg_reply(rep, info);
921err_out:
922 rtnl_unlock();
923 nlmsg_free(rep);
924
925 return err;
926}
927
Ying Xued59d8b72018-02-14 13:37:59 +0800928int __tipc_nl_bearer_disable(struct sk_buff *skb, struct genl_info *info)
Richard Alpe0655f6a2014-11-20 10:29:07 +0100929{
930 int err;
931 char *name;
932 struct tipc_bearer *bearer;
933 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Richard Alpe9ab15462015-02-09 09:50:05 +0100934 struct net *net = sock_net(skb->sk);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100935
936 if (!info->attrs[TIPC_NLA_BEARER])
937 return -EINVAL;
938
Johannes Berg8cb08172019-04-26 14:07:28 +0200939 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_BEARER_MAX,
940 info->attrs[TIPC_NLA_BEARER],
941 tipc_nl_bearer_policy, info->extack);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100942 if (err)
943 return err;
944
945 if (!attrs[TIPC_NLA_BEARER_NAME])
946 return -EINVAL;
947
948 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
949
Ying Xue7f9f95d2015-01-09 15:27:06 +0800950 bearer = tipc_bearer_find(net, name);
Ying Xued59d8b72018-02-14 13:37:59 +0800951 if (!bearer)
Richard Alpe0655f6a2014-11-20 10:29:07 +0100952 return -EINVAL;
Richard Alpe0655f6a2014-11-20 10:29:07 +0100953
Jon Paul Maloyb1c29f62015-05-14 10:46:11 -0400954 bearer_disable(net, bearer);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100955
956 return 0;
957}
958
Ying Xued59d8b72018-02-14 13:37:59 +0800959int tipc_nl_bearer_disable(struct sk_buff *skb, struct genl_info *info)
960{
961 int err;
962
963 rtnl_lock();
964 err = __tipc_nl_bearer_disable(skb, info);
965 rtnl_unlock();
966
967 return err;
968}
969
Ying Xue45cf7ed2018-02-14 13:38:00 +0800970int __tipc_nl_bearer_enable(struct sk_buff *skb, struct genl_info *info)
Richard Alpe0655f6a2014-11-20 10:29:07 +0100971{
972 int err;
973 char *bearer;
974 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Richard Alpe9ab15462015-02-09 09:50:05 +0100975 struct net *net = sock_net(skb->sk);
Jon Maloy20263642018-03-22 20:42:47 +0100976 u32 domain = 0;
Richard Alpe0655f6a2014-11-20 10:29:07 +0100977 u32 prio;
978
979 prio = TIPC_MEDIA_LINK_PRI;
Richard Alpe0655f6a2014-11-20 10:29:07 +0100980
981 if (!info->attrs[TIPC_NLA_BEARER])
982 return -EINVAL;
983
Johannes Berg8cb08172019-04-26 14:07:28 +0200984 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_BEARER_MAX,
985 info->attrs[TIPC_NLA_BEARER],
986 tipc_nl_bearer_policy, info->extack);
Richard Alpe0655f6a2014-11-20 10:29:07 +0100987 if (err)
988 return err;
989
990 if (!attrs[TIPC_NLA_BEARER_NAME])
991 return -EINVAL;
992
993 bearer = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
994
995 if (attrs[TIPC_NLA_BEARER_DOMAIN])
996 domain = nla_get_u32(attrs[TIPC_NLA_BEARER_DOMAIN]);
997
998 if (attrs[TIPC_NLA_BEARER_PROP]) {
999 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
1000
1001 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
1002 props);
1003 if (err)
1004 return err;
1005
1006 if (props[TIPC_NLA_PROP_PRIO])
1007 prio = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1008 }
1009
Ying Xue45cf7ed2018-02-14 13:38:00 +08001010 return tipc_enable_bearer(net, bearer, domain, prio, attrs);
1011}
1012
1013int tipc_nl_bearer_enable(struct sk_buff *skb, struct genl_info *info)
1014{
1015 int err;
1016
Richard Alpe0655f6a2014-11-20 10:29:07 +01001017 rtnl_lock();
Ying Xue45cf7ed2018-02-14 13:38:00 +08001018 err = __tipc_nl_bearer_enable(skb, info);
Richard Alpe0655f6a2014-11-20 10:29:07 +01001019 rtnl_unlock();
1020
Ying Xue45cf7ed2018-02-14 13:38:00 +08001021 return err;
Richard Alpe0655f6a2014-11-20 10:29:07 +01001022}
Richard Alpe315c00b2014-11-20 10:29:09 +01001023
Richard Alpeef20cd42016-08-26 10:52:53 +02001024int tipc_nl_bearer_add(struct sk_buff *skb, struct genl_info *info)
1025{
1026 int err;
1027 char *name;
1028 struct tipc_bearer *b;
1029 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
1030 struct net *net = sock_net(skb->sk);
1031
1032 if (!info->attrs[TIPC_NLA_BEARER])
1033 return -EINVAL;
1034
Johannes Berg8cb08172019-04-26 14:07:28 +02001035 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_BEARER_MAX,
1036 info->attrs[TIPC_NLA_BEARER],
1037 tipc_nl_bearer_policy, info->extack);
Richard Alpeef20cd42016-08-26 10:52:53 +02001038 if (err)
1039 return err;
1040
1041 if (!attrs[TIPC_NLA_BEARER_NAME])
1042 return -EINVAL;
1043 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
1044
1045 rtnl_lock();
1046 b = tipc_bearer_find(net, name);
1047 if (!b) {
1048 rtnl_unlock();
1049 return -EINVAL;
1050 }
1051
1052#ifdef CONFIG_TIPC_MEDIA_UDP
1053 if (attrs[TIPC_NLA_BEARER_UDP_OPTS]) {
1054 err = tipc_udp_nl_bearer_add(b,
1055 attrs[TIPC_NLA_BEARER_UDP_OPTS]);
1056 if (err) {
1057 rtnl_unlock();
1058 return err;
1059 }
1060 }
1061#endif
1062 rtnl_unlock();
1063
1064 return 0;
1065}
1066
Ying Xue93532bb2018-02-14 13:38:01 +08001067int __tipc_nl_bearer_set(struct sk_buff *skb, struct genl_info *info)
Richard Alpe315c00b2014-11-20 10:29:09 +01001068{
Richard Alpe315c00b2014-11-20 10:29:09 +01001069 struct tipc_bearer *b;
1070 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
Richard Alpec3d6fb82015-05-06 13:58:54 +02001071 struct net *net = sock_net(skb->sk);
Jon Maloy37c64cf2018-02-14 13:34:39 +01001072 char *name;
1073 int err;
Richard Alpe315c00b2014-11-20 10:29:09 +01001074
1075 if (!info->attrs[TIPC_NLA_BEARER])
1076 return -EINVAL;
1077
Johannes Berg8cb08172019-04-26 14:07:28 +02001078 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_BEARER_MAX,
1079 info->attrs[TIPC_NLA_BEARER],
1080 tipc_nl_bearer_policy, info->extack);
Richard Alpe315c00b2014-11-20 10:29:09 +01001081 if (err)
1082 return err;
1083
1084 if (!attrs[TIPC_NLA_BEARER_NAME])
1085 return -EINVAL;
1086 name = nla_data(attrs[TIPC_NLA_BEARER_NAME]);
1087
Ying Xue7f9f95d2015-01-09 15:27:06 +08001088 b = tipc_bearer_find(net, name);
Ying Xue93532bb2018-02-14 13:38:01 +08001089 if (!b)
Richard Alpe315c00b2014-11-20 10:29:09 +01001090 return -EINVAL;
Richard Alpe315c00b2014-11-20 10:29:09 +01001091
1092 if (attrs[TIPC_NLA_BEARER_PROP]) {
1093 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
1094
1095 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_BEARER_PROP],
1096 props);
Ying Xue93532bb2018-02-14 13:38:01 +08001097 if (err)
Richard Alpe315c00b2014-11-20 10:29:09 +01001098 return err;
Richard Alpe315c00b2014-11-20 10:29:09 +01001099
Jon Maloy37c64cf2018-02-14 13:34:39 +01001100 if (props[TIPC_NLA_PROP_TOL]) {
Richard Alpe315c00b2014-11-20 10:29:09 +01001101 b->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
GhantaKrishnamurthy MohanKrishna682cd3c2018-04-19 11:06:20 +02001102 tipc_node_apply_property(net, b, TIPC_NLA_PROP_TOL);
Jon Maloy37c64cf2018-02-14 13:34:39 +01001103 }
Richard Alpe315c00b2014-11-20 10:29:09 +01001104 if (props[TIPC_NLA_PROP_PRIO])
1105 b->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1106 if (props[TIPC_NLA_PROP_WIN])
Jon Maloy16ad3f42019-12-10 00:52:46 +01001107 b->max_win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
GhantaKrishnamurthy MohanKrishna682cd3c2018-04-19 11:06:20 +02001108 if (props[TIPC_NLA_PROP_MTU]) {
1109 if (b->media->type_id != TIPC_MEDIA_TYPE_UDP)
1110 return -EINVAL;
1111#ifdef CONFIG_TIPC_MEDIA_UDP
1112 if (tipc_udp_mtu_bad(nla_get_u32
1113 (props[TIPC_NLA_PROP_MTU])))
1114 return -EINVAL;
1115 b->mtu = nla_get_u32(props[TIPC_NLA_PROP_MTU]);
1116 tipc_node_apply_property(net, b, TIPC_NLA_PROP_MTU);
1117#endif
1118 }
Richard Alpe315c00b2014-11-20 10:29:09 +01001119 }
Richard Alpe315c00b2014-11-20 10:29:09 +01001120
1121 return 0;
1122}
Richard Alpe46f15c62014-11-20 10:29:15 +01001123
Ying Xue93532bb2018-02-14 13:38:01 +08001124int tipc_nl_bearer_set(struct sk_buff *skb, struct genl_info *info)
1125{
1126 int err;
1127
1128 rtnl_lock();
1129 err = __tipc_nl_bearer_set(skb, info);
1130 rtnl_unlock();
1131
1132 return err;
1133}
1134
Richard Alped8182802014-11-24 11:10:29 +01001135static int __tipc_nl_add_media(struct tipc_nl_msg *msg,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +02001136 struct tipc_media *media, int nlflags)
Richard Alpe46f15c62014-11-20 10:29:15 +01001137{
1138 void *hdr;
1139 struct nlattr *attrs;
1140 struct nlattr *prop;
1141
Richard Alpebfb3e5d2015-02-09 09:50:03 +01001142 hdr = genlmsg_put(msg->skb, msg->portid, msg->seq, &tipc_genl_family,
Nicolas Dichtelf2f67392015-04-28 18:33:50 +02001143 nlflags, TIPC_NL_MEDIA_GET);
Richard Alpe46f15c62014-11-20 10:29:15 +01001144 if (!hdr)
1145 return -EMSGSIZE;
1146
Michal Kubecekae0be8d2019-04-26 11:13:06 +02001147 attrs = nla_nest_start_noflag(msg->skb, TIPC_NLA_MEDIA);
Richard Alpe46f15c62014-11-20 10:29:15 +01001148 if (!attrs)
1149 goto msg_full;
1150
1151 if (nla_put_string(msg->skb, TIPC_NLA_MEDIA_NAME, media->name))
1152 goto attr_msg_full;
1153
Michal Kubecekae0be8d2019-04-26 11:13:06 +02001154 prop = nla_nest_start_noflag(msg->skb, TIPC_NLA_MEDIA_PROP);
Richard Alpe46f15c62014-11-20 10:29:15 +01001155 if (!prop)
1156 goto prop_msg_full;
1157 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_PRIO, media->priority))
1158 goto prop_msg_full;
1159 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_TOL, media->tolerance))
1160 goto prop_msg_full;
Jon Maloy16ad3f42019-12-10 00:52:46 +01001161 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_WIN, media->max_win))
Richard Alpe46f15c62014-11-20 10:29:15 +01001162 goto prop_msg_full;
GhantaKrishnamurthy MohanKrishna901271e02018-04-19 11:06:19 +02001163 if (media->type_id == TIPC_MEDIA_TYPE_UDP)
1164 if (nla_put_u32(msg->skb, TIPC_NLA_PROP_MTU, media->mtu))
1165 goto prop_msg_full;
Richard Alpe46f15c62014-11-20 10:29:15 +01001166
1167 nla_nest_end(msg->skb, prop);
1168 nla_nest_end(msg->skb, attrs);
1169 genlmsg_end(msg->skb, hdr);
1170
1171 return 0;
1172
1173prop_msg_full:
1174 nla_nest_cancel(msg->skb, prop);
1175attr_msg_full:
1176 nla_nest_cancel(msg->skb, attrs);
1177msg_full:
1178 genlmsg_cancel(msg->skb, hdr);
1179
1180 return -EMSGSIZE;
1181}
1182
1183int tipc_nl_media_dump(struct sk_buff *skb, struct netlink_callback *cb)
1184{
1185 int err;
1186 int i = cb->args[0];
1187 struct tipc_nl_msg msg;
1188
1189 if (i == MAX_MEDIA)
1190 return 0;
1191
1192 msg.skb = skb;
1193 msg.portid = NETLINK_CB(cb->skb).portid;
1194 msg.seq = cb->nlh->nlmsg_seq;
1195
1196 rtnl_lock();
1197 for (; media_info_array[i] != NULL; i++) {
Nicolas Dichtelf2f67392015-04-28 18:33:50 +02001198 err = __tipc_nl_add_media(&msg, media_info_array[i],
1199 NLM_F_MULTI);
Richard Alpe46f15c62014-11-20 10:29:15 +01001200 if (err)
1201 break;
1202 }
1203 rtnl_unlock();
1204
1205 cb->args[0] = i;
1206 return skb->len;
1207}
1208
1209int tipc_nl_media_get(struct sk_buff *skb, struct genl_info *info)
1210{
1211 int err;
1212 char *name;
1213 struct tipc_nl_msg msg;
1214 struct tipc_media *media;
1215 struct sk_buff *rep;
1216 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
1217
1218 if (!info->attrs[TIPC_NLA_MEDIA])
1219 return -EINVAL;
1220
Johannes Berg8cb08172019-04-26 14:07:28 +02001221 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_MEDIA_MAX,
1222 info->attrs[TIPC_NLA_MEDIA],
1223 tipc_nl_media_policy, info->extack);
Richard Alpe46f15c62014-11-20 10:29:15 +01001224 if (err)
1225 return err;
1226
1227 if (!attrs[TIPC_NLA_MEDIA_NAME])
1228 return -EINVAL;
1229 name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
1230
1231 rep = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
1232 if (!rep)
1233 return -ENOMEM;
1234
1235 msg.skb = rep;
1236 msg.portid = info->snd_portid;
1237 msg.seq = info->snd_seq;
1238
1239 rtnl_lock();
1240 media = tipc_media_find(name);
1241 if (!media) {
1242 err = -EINVAL;
1243 goto err_out;
1244 }
1245
Nicolas Dichtelf2f67392015-04-28 18:33:50 +02001246 err = __tipc_nl_add_media(&msg, media, 0);
Richard Alpe46f15c62014-11-20 10:29:15 +01001247 if (err)
1248 goto err_out;
1249 rtnl_unlock();
1250
1251 return genlmsg_reply(rep, info);
1252err_out:
1253 rtnl_unlock();
1254 nlmsg_free(rep);
1255
1256 return err;
1257}
Richard Alpe1e554172014-11-20 10:29:16 +01001258
Ying Xue07ffb222018-02-14 13:38:02 +08001259int __tipc_nl_media_set(struct sk_buff *skb, struct genl_info *info)
Richard Alpe1e554172014-11-20 10:29:16 +01001260{
1261 int err;
1262 char *name;
1263 struct tipc_media *m;
1264 struct nlattr *attrs[TIPC_NLA_BEARER_MAX + 1];
1265
1266 if (!info->attrs[TIPC_NLA_MEDIA])
1267 return -EINVAL;
1268
Johannes Berg8cb08172019-04-26 14:07:28 +02001269 err = nla_parse_nested_deprecated(attrs, TIPC_NLA_MEDIA_MAX,
1270 info->attrs[TIPC_NLA_MEDIA],
1271 tipc_nl_media_policy, info->extack);
Richard Alpe1e554172014-11-20 10:29:16 +01001272
1273 if (!attrs[TIPC_NLA_MEDIA_NAME])
1274 return -EINVAL;
1275 name = nla_data(attrs[TIPC_NLA_MEDIA_NAME]);
1276
Richard Alpe1e554172014-11-20 10:29:16 +01001277 m = tipc_media_find(name);
Ying Xue07ffb222018-02-14 13:38:02 +08001278 if (!m)
Richard Alpe1e554172014-11-20 10:29:16 +01001279 return -EINVAL;
Richard Alpe1e554172014-11-20 10:29:16 +01001280
1281 if (attrs[TIPC_NLA_MEDIA_PROP]) {
1282 struct nlattr *props[TIPC_NLA_PROP_MAX + 1];
1283
1284 err = tipc_nl_parse_link_prop(attrs[TIPC_NLA_MEDIA_PROP],
1285 props);
Ying Xue07ffb222018-02-14 13:38:02 +08001286 if (err)
Richard Alpe1e554172014-11-20 10:29:16 +01001287 return err;
Richard Alpe1e554172014-11-20 10:29:16 +01001288
1289 if (props[TIPC_NLA_PROP_TOL])
1290 m->tolerance = nla_get_u32(props[TIPC_NLA_PROP_TOL]);
1291 if (props[TIPC_NLA_PROP_PRIO])
1292 m->priority = nla_get_u32(props[TIPC_NLA_PROP_PRIO]);
1293 if (props[TIPC_NLA_PROP_WIN])
Jon Maloy16ad3f42019-12-10 00:52:46 +01001294 m->max_win = nla_get_u32(props[TIPC_NLA_PROP_WIN]);
GhantaKrishnamurthy MohanKrishna901271e02018-04-19 11:06:19 +02001295 if (props[TIPC_NLA_PROP_MTU]) {
1296 if (m->type_id != TIPC_MEDIA_TYPE_UDP)
1297 return -EINVAL;
1298#ifdef CONFIG_TIPC_MEDIA_UDP
1299 if (tipc_udp_mtu_bad(nla_get_u32
1300 (props[TIPC_NLA_PROP_MTU])))
1301 return -EINVAL;
1302 m->mtu = nla_get_u32(props[TIPC_NLA_PROP_MTU]);
1303#endif
1304 }
Richard Alpe1e554172014-11-20 10:29:16 +01001305 }
Richard Alpe1e554172014-11-20 10:29:16 +01001306
1307 return 0;
1308}
Ying Xue07ffb222018-02-14 13:38:02 +08001309
1310int tipc_nl_media_set(struct sk_buff *skb, struct genl_info *info)
1311{
1312 int err;
1313
1314 rtnl_lock();
1315 err = __tipc_nl_media_set(skb, info);
1316 rtnl_unlock();
1317
1318 return err;
1319}