blob: f213ed10836185d338060a9d02ab7a2de862e9b4 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Ioctl handler
4 * Linux ethernet bridge
5 *
6 * Authors:
7 * Lennert Buytenhek <buytenh@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Randy Dunlap4fc268d2006-01-11 12:17:47 -080010#include <linux/capability.h>
Jakub Kicinskib6459412021-12-28 16:49:13 -080011#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/kernel.h>
13#include <linux/if_bridge.h>
14#include <linux/netdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/times.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070017#include <net/net_namespace.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080018#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "br_private.h"
20
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -070021static int get_bridge_ifindices(struct net *net, int *indices, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022{
23 struct net_device *dev;
24 int i = 0;
25
Nikolay Aleksandrov31ca0452016-05-04 16:18:45 +020026 rcu_read_lock();
27 for_each_netdev_rcu(net, dev) {
Pavel Emelianov7562f872007-05-03 15:13:45 -070028 if (i >= num)
29 break;
Kyungrok Chung254ec032021-10-16 20:21:36 +090030 if (netif_is_bridge_master(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 indices[i++] = dev->ifindex;
32 }
Nikolay Aleksandrov31ca0452016-05-04 16:18:45 +020033 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35 return i;
36}
37
38/* called with RTNL */
39static void get_port_ifindices(struct net_bridge *br, int *ifindices, int num)
40{
41 struct net_bridge_port *p;
42
43 list_for_each_entry(p, &br->port_list, list) {
44 if (p->port_no < num)
45 ifindices[p->port_no] = p->dev->ifindex;
46 }
47}
48
49/*
50 * Format up to a page worth of forwarding table entries
51 * userbuf -- where to copy result
52 * maxnum -- maximum number of entries desired
53 * (limited to a page for sanity)
54 * offset -- number of records to skip
55 */
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090056static int get_fdb_entries(struct net_bridge *br, void __user *userbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 unsigned long maxnum, unsigned long offset)
58{
59 int num;
60 void *buf;
Chris Wrightba8379b22006-11-20 15:02:49 -080061 size_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Chris Wrightba8379b22006-11-20 15:02:49 -080063 /* Clamp size to PAGE_SIZE, test maxnum to avoid overflow */
64 if (maxnum > PAGE_SIZE/sizeof(struct __fdb_entry))
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 maxnum = PAGE_SIZE/sizeof(struct __fdb_entry);
Chris Wrightba8379b22006-11-20 15:02:49 -080066
67 size = maxnum * sizeof(struct __fdb_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 buf = kmalloc(size, GFP_USER);
70 if (!buf)
71 return -ENOMEM;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 num = br_fdb_fillbuf(br, buf, maxnum, offset);
74 if (num > 0) {
Gustavo A. R. Silva865bfb22021-09-28 15:12:39 -050075 if (copy_to_user(userbuf, buf,
76 array_size(num, sizeof(struct __fdb_entry))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 num = -EFAULT;
78 }
79 kfree(buf);
80
81 return num;
82}
83
Eric Dumazet31ef30c2009-11-05 20:47:35 -080084/* called with RTNL */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static int add_del_if(struct net_bridge *br, int ifindex, int isadd)
86{
Eric W. Biedermancb990502012-11-16 03:03:08 +000087 struct net *net = dev_net(br->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 struct net_device *dev;
89 int ret;
90
Eric W. Biedermancb990502012-11-16 03:03:08 +000091 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return -EPERM;
93
Eric W. Biedermancb990502012-11-16 03:03:08 +000094 dev = __dev_get_by_index(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 if (dev == NULL)
96 return -EINVAL;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (isadd)
David Ahernca752be2017-10-04 17:48:50 -070099 ret = br_add_if(br, dev, NULL);
David S. Millereccaa9e2017-09-20 15:39:59 -0700100 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 ret = br_del_if(br, dev);
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return ret;
104}
105
Remi Pommarelfd3a4592021-12-24 12:46:40 +0100106#define BR_UARGS_MAX 4
107static int br_dev_read_uargs(unsigned long *args, size_t nr_args,
108 void __user **argp, void __user *data)
109{
110 int ret;
111
112 if (nr_args < 2 || nr_args > BR_UARGS_MAX)
113 return -EINVAL;
114
115 if (in_compat_syscall()) {
116 unsigned int cargs[BR_UARGS_MAX];
117 int i;
118
119 ret = copy_from_user(cargs, data, nr_args * sizeof(*cargs));
120 if (ret)
121 goto fault;
122
123 for (i = 0; i < nr_args; ++i)
124 args[i] = cargs[i];
125
126 *argp = compat_ptr(args[1]);
127 } else {
128 ret = copy_from_user(args, data, nr_args * sizeof(*args));
129 if (ret)
130 goto fault;
131 *argp = (void __user *)args[1];
132 }
133
134 return 0;
135fault:
136 return -EFAULT;
137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/*
140 * Legacy ioctl's through SIOCDEVPRIVATE
Randy Dunlap4bbd0262020-09-17 21:35:21 -0700141 * This interface is deprecated because it was too difficult
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300142 * to do the translation for 32/64bit ioctl compatibility.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 */
Remi Pommarelfd3a4592021-12-24 12:46:40 +0100144int br_dev_siocdevprivate(struct net_device *dev, struct ifreq *rq,
145 void __user *data, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 struct net_bridge *br = netdev_priv(dev);
Xin Longbf871ad2016-04-09 00:03:33 +0800148 struct net_bridge_port *p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 unsigned long args[4];
Arnd Bergmann561d8352021-07-27 15:44:51 +0200150 void __user *argp;
Remi Pommarelfd3a4592021-12-24 12:46:40 +0100151 int ret;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900152
Remi Pommarelfd3a4592021-12-24 12:46:40 +0100153 ret = br_dev_read_uargs(args, ARRAY_SIZE(args), &argp, data);
154 if (ret)
155 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 switch (args[0]) {
158 case BRCTL_ADD_IF:
159 case BRCTL_DEL_IF:
160 return add_del_if(br, args[1], args[0] == BRCTL_ADD_IF);
161
162 case BRCTL_GET_BRIDGE_INFO:
163 {
164 struct __bridge_info b;
165
166 memset(&b, 0, sizeof(struct __bridge_info));
167 rcu_read_lock();
168 memcpy(&b.designated_root, &br->designated_root, 8);
169 memcpy(&b.bridge_id, &br->bridge_id, 8);
170 b.root_path_cost = br->root_path_cost;
171 b.max_age = jiffies_to_clock_t(br->max_age);
172 b.hello_time = jiffies_to_clock_t(br->hello_time);
173 b.forward_delay = br->forward_delay;
174 b.bridge_max_age = br->bridge_max_age;
175 b.bridge_hello_time = br->bridge_hello_time;
176 b.bridge_forward_delay = jiffies_to_clock_t(br->bridge_forward_delay);
177 b.topology_change = br->topology_change;
178 b.topology_change_detected = br->topology_change_detected;
179 b.root_port = br->root_port;
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700180
181 b.stp_enabled = (br->stp_enabled != BR_NO_STP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 b.ageing_time = jiffies_to_clock_t(br->ageing_time);
183 b.hello_timer_value = br_timer_value(&br->hello_timer);
184 b.tcn_timer_value = br_timer_value(&br->tcn_timer);
185 b.topology_change_timer_value = br_timer_value(&br->topology_change_timer);
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +0100186 b.gc_timer_value = br_timer_value(&br->gc_work.timer);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900187 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 if (copy_to_user((void __user *)args[1], &b, sizeof(b)))
190 return -EFAULT;
191
192 return 0;
193 }
194
195 case BRCTL_GET_PORT_LIST:
196 {
197 int num, *indices;
198
199 num = args[2];
200 if (num < 0)
201 return -EINVAL;
202 if (num == 0)
203 num = 256;
204 if (num > BR_MAX_PORTS)
205 num = BR_MAX_PORTS;
206
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700207 indices = kcalloc(num, sizeof(int), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (indices == NULL)
209 return -ENOMEM;
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 get_port_ifindices(br, indices, num);
Gustavo A. R. Silva865bfb22021-09-28 15:12:39 -0500212 if (copy_to_user(argp, indices, array_size(num, sizeof(int))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 num = -EFAULT;
214 kfree(indices);
215 return num;
216 }
217
218 case BRCTL_SET_BRIDGE_FORWARD_DELAY:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000219 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return -EPERM;
221
Xin Longbf871ad2016-04-09 00:03:33 +0800222 ret = br_set_forward_delay(br, args[1]);
223 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 case BRCTL_SET_BRIDGE_HELLO_TIME:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000226 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return -EPERM;
228
Xin Longbf871ad2016-04-09 00:03:33 +0800229 ret = br_set_hello_time(br, args[1]);
230 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 case BRCTL_SET_BRIDGE_MAX_AGE:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000233 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return -EPERM;
235
Xin Longbf871ad2016-04-09 00:03:33 +0800236 ret = br_set_max_age(br, args[1]);
237 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 case BRCTL_SET_AGEING_TIME:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000240 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return -EPERM;
242
Xin Longbf871ad2016-04-09 00:03:33 +0800243 ret = br_set_ageing_time(br, args[1]);
244 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 case BRCTL_GET_PORT_INFO:
247 {
248 struct __port_info p;
249 struct net_bridge_port *pt;
250
251 rcu_read_lock();
252 if ((pt = br_get_port(br, args[2])) == NULL) {
253 rcu_read_unlock();
254 return -EINVAL;
255 }
256
257 memset(&p, 0, sizeof(struct __port_info));
258 memcpy(&p.designated_root, &pt->designated_root, 8);
259 memcpy(&p.designated_bridge, &pt->designated_bridge, 8);
260 p.port_id = pt->port_id;
261 p.designated_port = pt->designated_port;
262 p.path_cost = pt->path_cost;
263 p.designated_cost = pt->designated_cost;
264 p.state = pt->state;
265 p.top_change_ack = pt->topology_change_ack;
266 p.config_pending = pt->config_pending;
267 p.message_age_timer_value = br_timer_value(&pt->message_age_timer);
268 p.forward_delay_timer_value = br_timer_value(&pt->forward_delay_timer);
269 p.hold_timer_value = br_timer_value(&pt->hold_timer);
270
271 rcu_read_unlock();
272
Arnd Bergmann561d8352021-07-27 15:44:51 +0200273 if (copy_to_user(argp, &p, sizeof(p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return -EFAULT;
275
276 return 0;
277 }
278
279 case BRCTL_SET_BRIDGE_STP_STATE:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000280 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return -EPERM;
282
Horatiu Vultur419dba8a2020-04-26 15:22:08 +0200283 ret = br_stp_set_enabled(br, args[1], NULL);
Xin Longbf871ad2016-04-09 00:03:33 +0800284 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 case BRCTL_SET_BRIDGE_PRIORITY:
Eric W. Biedermancb990502012-11-16 03:03:08 +0000287 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return -EPERM;
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 br_stp_set_bridge_priority(br, args[1]);
Xin Longbf871ad2016-04-09 00:03:33 +0800291 ret = 0;
292 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 case BRCTL_SET_PORT_PRIORITY:
295 {
Eric W. Biedermancb990502012-11-16 03:03:08 +0000296 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return -EPERM;
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 spin_lock_bh(&br->lock);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900300 if ((p = br_get_port(br, args[1])) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 ret = -EINVAL;
302 else
stephen hemminger14f98f22011-04-04 14:03:33 +0000303 ret = br_stp_set_port_priority(p, args[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 spin_unlock_bh(&br->lock);
Xin Longbf871ad2016-04-09 00:03:33 +0800305 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307
308 case BRCTL_SET_PATH_COST:
309 {
Eric W. Biedermancb990502012-11-16 03:03:08 +0000310 if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return -EPERM;
312
stephen hemminger14f98f22011-04-04 14:03:33 +0000313 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if ((p = br_get_port(br, args[1])) == NULL)
315 ret = -EINVAL;
316 else
stephen hemminger14f98f22011-04-04 14:03:33 +0000317 ret = br_stp_set_path_cost(p, args[2]);
318 spin_unlock_bh(&br->lock);
Xin Longbf871ad2016-04-09 00:03:33 +0800319 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321
322 case BRCTL_GET_FDB_ENTRIES:
Arnd Bergmann561d8352021-07-27 15:44:51 +0200323 return get_fdb_entries(br, argp, args[2], args[3]);
Remi Pommarelfd3a4592021-12-24 12:46:40 +0100324
325 default:
326 ret = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328
Xin Longbf871ad2016-04-09 00:03:33 +0800329 if (!ret) {
330 if (p)
Nikolay Aleksandrov92899062017-11-01 12:18:13 +0200331 br_ifinfo_notify(RTM_NEWLINK, NULL, p);
Xin Longbf871ad2016-04-09 00:03:33 +0800332 else
333 netdev_state_change(br->dev);
334 }
335
336 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Remi Pommarelfd3a4592021-12-24 12:46:40 +0100339static int old_deviceless(struct net *net, void __user *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 unsigned long args[3];
Remi Pommarelfd3a4592021-12-24 12:46:40 +0100342 void __user *argp;
343 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Remi Pommarelfd3a4592021-12-24 12:46:40 +0100345 ret = br_dev_read_uargs(args, ARRAY_SIZE(args), &argp, data);
346 if (ret)
347 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 switch (args[0]) {
350 case BRCTL_GET_VERSION:
351 return BRCTL_VERSION;
352
353 case BRCTL_GET_BRIDGES:
354 {
355 int *indices;
356 int ret = 0;
357
358 if (args[2] >= 2048)
359 return -ENOMEM;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700360 indices = kcalloc(args[2], sizeof(int), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (indices == NULL)
362 return -ENOMEM;
363
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700364 args[2] = get_bridge_ifindices(net, indices, args[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Remi Pommarelfd3a4592021-12-24 12:46:40 +0100366 ret = copy_to_user(argp, indices,
Gustavo A. R. Silva865bfb22021-09-28 15:12:39 -0500367 array_size(args[2], sizeof(int)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 ? -EFAULT : args[2];
369
370 kfree(indices);
371 return ret;
372 }
373
374 case BRCTL_ADD_BRIDGE:
375 case BRCTL_DEL_BRIDGE:
376 {
377 char buf[IFNAMSIZ];
378
Eric W. Biedermancb990502012-11-16 03:03:08 +0000379 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return -EPERM;
381
Remi Pommarelfd3a4592021-12-24 12:46:40 +0100382 if (copy_from_user(buf, argp, IFNAMSIZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return -EFAULT;
384
385 buf[IFNAMSIZ-1] = 0;
386
387 if (args[0] == BRCTL_ADD_BRIDGE)
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700388 return br_add_bridge(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Alexey Dobriyan4aa678b2008-09-08 16:19:58 -0700390 return br_del_bridge(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
392 }
393
394 return -EOPNOTSUPP;
395}
396
Arnd Bergmannad2f99a2021-07-27 15:45:16 +0200397int br_ioctl_stub(struct net *net, struct net_bridge *br, unsigned int cmd,
398 struct ifreq *ifr, void __user *uarg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300400 int ret = -EOPNOTSUPP;
401
402 rtnl_lock();
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 switch (cmd) {
405 case SIOCGIFBR:
406 case SIOCSIFBR:
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300407 ret = old_deviceless(net, uarg);
408 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 case SIOCBRADDBR:
410 case SIOCBRDELBR:
411 {
412 char buf[IFNAMSIZ];
413
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300414 if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) {
415 ret = -EPERM;
416 break;
417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300419 if (copy_from_user(buf, uarg, IFNAMSIZ)) {
420 ret = -EFAULT;
421 break;
422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 buf[IFNAMSIZ-1] = 0;
425 if (cmd == SIOCBRADDBR)
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300426 ret = br_add_bridge(net, buf);
427 else
428 ret = br_del_bridge(net, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300430 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 case SIOCBRADDIF:
432 case SIOCBRDELIF:
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300433 ret = add_del_if(br, ifr->ifr_ifindex, cmd == SIOCBRADDIF);
434 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
Nikolay Aleksandrov893b1952021-08-05 11:29:01 +0300436
437 rtnl_unlock();
438
439 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}