iwlwifi: mvm: fix accessing Null pointer during fw dump collection
[cascardo/linux.git] / net / bridge / br_if.c
1 /*
2  *      Userspace interface
3  *      Linux ethernet bridge
4  *
5  *      Authors:
6  *      Lennert Buytenhek               <buytenh@gnu.org>
7  *
8  *      This program is free software; you can redistribute it and/or
9  *      modify it under the terms of the GNU General Public License
10  *      as published by the Free Software Foundation; either version
11  *      2 of the License, or (at your option) any later version.
12  */
13
14 #include <linux/kernel.h>
15 #include <linux/netdevice.h>
16 #include <linux/etherdevice.h>
17 #include <linux/netpoll.h>
18 #include <linux/ethtool.h>
19 #include <linux/if_arp.h>
20 #include <linux/module.h>
21 #include <linux/init.h>
22 #include <linux/rtnetlink.h>
23 #include <linux/if_ether.h>
24 #include <linux/slab.h>
25 #include <net/sock.h>
26 #include <linux/if_vlan.h>
27 #include <net/switchdev.h>
28
29 #include "br_private.h"
30
31 /*
32  * Determine initial path cost based on speed.
33  * using recommendations from 802.1d standard
34  *
35  * Since driver might sleep need to not be holding any locks.
36  */
37 static int port_cost(struct net_device *dev)
38 {
39         struct ethtool_link_ksettings ecmd;
40
41         if (!__ethtool_get_link_ksettings(dev, &ecmd)) {
42                 switch (ecmd.base.speed) {
43                 case SPEED_10000:
44                         return 2;
45                 case SPEED_1000:
46                         return 4;
47                 case SPEED_100:
48                         return 19;
49                 case SPEED_10:
50                         return 100;
51                 }
52         }
53
54         /* Old silly heuristics based on name */
55         if (!strncmp(dev->name, "lec", 3))
56                 return 7;
57
58         if (!strncmp(dev->name, "plip", 4))
59                 return 2500;
60
61         return 100;     /* assume old 10Mbps */
62 }
63
64
65 /* Check for port carrier transitions. */
66 void br_port_carrier_check(struct net_bridge_port *p)
67 {
68         struct net_device *dev = p->dev;
69         struct net_bridge *br = p->br;
70
71         if (!(p->flags & BR_ADMIN_COST) &&
72             netif_running(dev) && netif_oper_up(dev))
73                 p->path_cost = port_cost(dev);
74
75         if (!netif_running(br->dev))
76                 return;
77
78         spin_lock_bh(&br->lock);
79         if (netif_running(dev) && netif_oper_up(dev)) {
80                 if (p->state == BR_STATE_DISABLED)
81                         br_stp_enable_port(p);
82         } else {
83                 if (p->state != BR_STATE_DISABLED)
84                         br_stp_disable_port(p);
85         }
86         spin_unlock_bh(&br->lock);
87 }
88
89 static void br_port_set_promisc(struct net_bridge_port *p)
90 {
91         int err = 0;
92
93         if (br_promisc_port(p))
94                 return;
95
96         err = dev_set_promiscuity(p->dev, 1);
97         if (err)
98                 return;
99
100         br_fdb_unsync_static(p->br, p);
101         p->flags |= BR_PROMISC;
102 }
103
104 static void br_port_clear_promisc(struct net_bridge_port *p)
105 {
106         int err;
107
108         /* Check if the port is already non-promisc or if it doesn't
109          * support UNICAST filtering.  Without unicast filtering support
110          * we'll end up re-enabling promisc mode anyway, so just check for
111          * it here.
112          */
113         if (!br_promisc_port(p) || !(p->dev->priv_flags & IFF_UNICAST_FLT))
114                 return;
115
116         /* Since we'll be clearing the promisc mode, program the port
117          * first so that we don't have interruption in traffic.
118          */
119         err = br_fdb_sync_static(p->br, p);
120         if (err)
121                 return;
122
123         dev_set_promiscuity(p->dev, -1);
124         p->flags &= ~BR_PROMISC;
125 }
126
127 /* When a port is added or removed or when certain port flags
128  * change, this function is called to automatically manage
129  * promiscuity setting of all the bridge ports.  We are always called
130  * under RTNL so can skip using rcu primitives.
131  */
132 void br_manage_promisc(struct net_bridge *br)
133 {
134         struct net_bridge_port *p;
135         bool set_all = false;
136
137         /* If vlan filtering is disabled or bridge interface is placed
138          * into promiscuous mode, place all ports in promiscuous mode.
139          */
140         if ((br->dev->flags & IFF_PROMISC) || !br_vlan_enabled(br))
141                 set_all = true;
142
143         list_for_each_entry(p, &br->port_list, list) {
144                 if (set_all) {
145                         br_port_set_promisc(p);
146                 } else {
147                         /* If the number of auto-ports is <= 1, then all other
148                          * ports will have their output configuration
149                          * statically specified through fdbs.  Since ingress
150                          * on the auto-port becomes forwarding/egress to other
151                          * ports and egress configuration is statically known,
152                          * we can say that ingress configuration of the
153                          * auto-port is also statically known.
154                          * This lets us disable promiscuous mode and write
155                          * this config to hw.
156                          */
157                         if (br->auto_cnt == 0 ||
158                             (br->auto_cnt == 1 && br_auto_port(p)))
159                                 br_port_clear_promisc(p);
160                         else
161                                 br_port_set_promisc(p);
162                 }
163         }
164 }
165
166 static void nbp_update_port_count(struct net_bridge *br)
167 {
168         struct net_bridge_port *p;
169         u32 cnt = 0;
170
171         list_for_each_entry(p, &br->port_list, list) {
172                 if (br_auto_port(p))
173                         cnt++;
174         }
175         if (br->auto_cnt != cnt) {
176                 br->auto_cnt = cnt;
177                 br_manage_promisc(br);
178         }
179 }
180
181 static void nbp_delete_promisc(struct net_bridge_port *p)
182 {
183         /* If port is currently promiscuous, unset promiscuity.
184          * Otherwise, it is a static port so remove all addresses
185          * from it.
186          */
187         dev_set_allmulti(p->dev, -1);
188         if (br_promisc_port(p))
189                 dev_set_promiscuity(p->dev, -1);
190         else
191                 br_fdb_unsync_static(p->br, p);
192 }
193
194 static void release_nbp(struct kobject *kobj)
195 {
196         struct net_bridge_port *p
197                 = container_of(kobj, struct net_bridge_port, kobj);
198         kfree(p);
199 }
200
201 static struct kobj_type brport_ktype = {
202 #ifdef CONFIG_SYSFS
203         .sysfs_ops = &brport_sysfs_ops,
204 #endif
205         .release = release_nbp,
206 };
207
208 static void destroy_nbp(struct net_bridge_port *p)
209 {
210         struct net_device *dev = p->dev;
211
212         p->br = NULL;
213         p->dev = NULL;
214         dev_put(dev);
215
216         kobject_put(&p->kobj);
217 }
218
219 static void destroy_nbp_rcu(struct rcu_head *head)
220 {
221         struct net_bridge_port *p =
222                         container_of(head, struct net_bridge_port, rcu);
223         destroy_nbp(p);
224 }
225
226 static unsigned get_max_headroom(struct net_bridge *br)
227 {
228         unsigned max_headroom = 0;
229         struct net_bridge_port *p;
230
231         list_for_each_entry(p, &br->port_list, list) {
232                 unsigned dev_headroom = netdev_get_fwd_headroom(p->dev);
233
234                 if (dev_headroom > max_headroom)
235                         max_headroom = dev_headroom;
236         }
237
238         return max_headroom;
239 }
240
241 static void update_headroom(struct net_bridge *br, int new_hr)
242 {
243         struct net_bridge_port *p;
244
245         list_for_each_entry(p, &br->port_list, list)
246                 netdev_set_rx_headroom(p->dev, new_hr);
247
248         br->dev->needed_headroom = new_hr;
249 }
250
251 /* Delete port(interface) from bridge is done in two steps.
252  * via RCU. First step, marks device as down. That deletes
253  * all the timers and stops new packets from flowing through.
254  *
255  * Final cleanup doesn't occur until after all CPU's finished
256  * processing packets.
257  *
258  * Protected from multiple admin operations by RTNL mutex
259  */
260 static void del_nbp(struct net_bridge_port *p)
261 {
262         struct net_bridge *br = p->br;
263         struct net_device *dev = p->dev;
264
265         sysfs_remove_link(br->ifobj, p->dev->name);
266
267         nbp_delete_promisc(p);
268
269         spin_lock_bh(&br->lock);
270         br_stp_disable_port(p);
271         spin_unlock_bh(&br->lock);
272
273         br_ifinfo_notify(RTM_DELLINK, p);
274
275         list_del_rcu(&p->list);
276         if (netdev_get_fwd_headroom(dev) == br->dev->needed_headroom)
277                 update_headroom(br, get_max_headroom(br));
278         netdev_reset_rx_headroom(dev);
279
280         nbp_vlan_flush(p);
281         br_fdb_delete_by_port(br, p, 0, 1);
282         switchdev_deferred_process();
283
284         nbp_update_port_count(br);
285
286         netdev_upper_dev_unlink(dev, br->dev);
287
288         dev->priv_flags &= ~IFF_BRIDGE_PORT;
289
290         netdev_rx_handler_unregister(dev);
291
292         br_multicast_del_port(p);
293
294         kobject_uevent(&p->kobj, KOBJ_REMOVE);
295         kobject_del(&p->kobj);
296
297         br_netpoll_disable(p);
298
299         call_rcu(&p->rcu, destroy_nbp_rcu);
300 }
301
302 /* Delete bridge device */
303 void br_dev_delete(struct net_device *dev, struct list_head *head)
304 {
305         struct net_bridge *br = netdev_priv(dev);
306         struct net_bridge_port *p, *n;
307
308         list_for_each_entry_safe(p, n, &br->port_list, list) {
309                 del_nbp(p);
310         }
311
312         br_fdb_delete_by_port(br, NULL, 0, 1);
313
314         br_vlan_flush(br);
315         br_multicast_dev_del(br);
316         del_timer_sync(&br->gc_timer);
317
318         br_sysfs_delbr(br->dev);
319         unregister_netdevice_queue(br->dev, head);
320 }
321
322 /* find an available port number */
323 static int find_portno(struct net_bridge *br)
324 {
325         int index;
326         struct net_bridge_port *p;
327         unsigned long *inuse;
328
329         inuse = kcalloc(BITS_TO_LONGS(BR_MAX_PORTS), sizeof(unsigned long),
330                         GFP_KERNEL);
331         if (!inuse)
332                 return -ENOMEM;
333
334         set_bit(0, inuse);      /* zero is reserved */
335         list_for_each_entry(p, &br->port_list, list) {
336                 set_bit(p->port_no, inuse);
337         }
338         index = find_first_zero_bit(inuse, BR_MAX_PORTS);
339         kfree(inuse);
340
341         return (index >= BR_MAX_PORTS) ? -EXFULL : index;
342 }
343
344 /* called with RTNL but without bridge lock */
345 static struct net_bridge_port *new_nbp(struct net_bridge *br,
346                                        struct net_device *dev)
347 {
348         int index;
349         struct net_bridge_port *p;
350
351         index = find_portno(br);
352         if (index < 0)
353                 return ERR_PTR(index);
354
355         p = kzalloc(sizeof(*p), GFP_KERNEL);
356         if (p == NULL)
357                 return ERR_PTR(-ENOMEM);
358
359         p->br = br;
360         dev_hold(dev);
361         p->dev = dev;
362         p->path_cost = port_cost(dev);
363         p->priority = 0x8000 >> BR_PORT_BITS;
364         p->port_no = index;
365         p->flags = BR_LEARNING | BR_FLOOD;
366         br_init_port(p);
367         br_set_state(p, BR_STATE_DISABLED);
368         br_stp_port_timer_init(p);
369         br_multicast_add_port(p);
370
371         return p;
372 }
373
374 int br_add_bridge(struct net *net, const char *name)
375 {
376         struct net_device *dev;
377         int res;
378
379         dev = alloc_netdev(sizeof(struct net_bridge), name, NET_NAME_UNKNOWN,
380                            br_dev_setup);
381
382         if (!dev)
383                 return -ENOMEM;
384
385         dev_net_set(dev, net);
386         dev->rtnl_link_ops = &br_link_ops;
387
388         res = register_netdev(dev);
389         if (res)
390                 free_netdev(dev);
391         return res;
392 }
393
394 int br_del_bridge(struct net *net, const char *name)
395 {
396         struct net_device *dev;
397         int ret = 0;
398
399         rtnl_lock();
400         dev = __dev_get_by_name(net, name);
401         if (dev == NULL)
402                 ret =  -ENXIO;  /* Could not find device */
403
404         else if (!(dev->priv_flags & IFF_EBRIDGE)) {
405                 /* Attempt to delete non bridge device! */
406                 ret = -EPERM;
407         }
408
409         else if (dev->flags & IFF_UP) {
410                 /* Not shutdown yet. */
411                 ret = -EBUSY;
412         }
413
414         else
415                 br_dev_delete(dev, NULL);
416
417         rtnl_unlock();
418         return ret;
419 }
420
421 /* MTU of the bridge pseudo-device: ETH_DATA_LEN or the minimum of the ports */
422 int br_min_mtu(const struct net_bridge *br)
423 {
424         const struct net_bridge_port *p;
425         int mtu = 0;
426
427         ASSERT_RTNL();
428
429         if (list_empty(&br->port_list))
430                 mtu = ETH_DATA_LEN;
431         else {
432                 list_for_each_entry(p, &br->port_list, list) {
433                         if (!mtu  || p->dev->mtu < mtu)
434                                 mtu = p->dev->mtu;
435                 }
436         }
437         return mtu;
438 }
439
440 /*
441  * Recomputes features using slave's features
442  */
443 netdev_features_t br_features_recompute(struct net_bridge *br,
444         netdev_features_t features)
445 {
446         struct net_bridge_port *p;
447         netdev_features_t mask;
448
449         if (list_empty(&br->port_list))
450                 return features;
451
452         mask = features;
453         features &= ~NETIF_F_ONE_FOR_ALL;
454
455         list_for_each_entry(p, &br->port_list, list) {
456                 features = netdev_increment_features(features,
457                                                      p->dev->features, mask);
458         }
459         features = netdev_add_tso_features(features, mask);
460
461         return features;
462 }
463
464 /* called with RTNL */
465 int br_add_if(struct net_bridge *br, struct net_device *dev)
466 {
467         struct net_bridge_port *p;
468         int err = 0;
469         unsigned br_hr, dev_hr;
470         bool changed_addr;
471
472         /* Don't allow bridging non-ethernet like devices, or DSA-enabled
473          * master network devices since the bridge layer rx_handler prevents
474          * the DSA fake ethertype handler to be invoked, so we do not strip off
475          * the DSA switch tag protocol header and the bridge layer just return
476          * RX_HANDLER_CONSUMED, stopping RX processing for these frames.
477          */
478         if ((dev->flags & IFF_LOOPBACK) ||
479             dev->type != ARPHRD_ETHER || dev->addr_len != ETH_ALEN ||
480             !is_valid_ether_addr(dev->dev_addr) ||
481             netdev_uses_dsa(dev))
482                 return -EINVAL;
483
484         /* No bridging of bridges */
485         if (dev->netdev_ops->ndo_start_xmit == br_dev_xmit)
486                 return -ELOOP;
487
488         /* Device is already being bridged */
489         if (br_port_exists(dev))
490                 return -EBUSY;
491
492         /* No bridging devices that dislike that (e.g. wireless) */
493         if (dev->priv_flags & IFF_DONT_BRIDGE)
494                 return -EOPNOTSUPP;
495
496         p = new_nbp(br, dev);
497         if (IS_ERR(p))
498                 return PTR_ERR(p);
499
500         call_netdevice_notifiers(NETDEV_JOIN, dev);
501
502         err = dev_set_allmulti(dev, 1);
503         if (err)
504                 goto put_back;
505
506         err = kobject_init_and_add(&p->kobj, &brport_ktype, &(dev->dev.kobj),
507                                    SYSFS_BRIDGE_PORT_ATTR);
508         if (err)
509                 goto err1;
510
511         err = br_sysfs_addif(p);
512         if (err)
513                 goto err2;
514
515         err = br_netpoll_enable(p);
516         if (err)
517                 goto err3;
518
519         err = netdev_rx_handler_register(dev, br_handle_frame, p);
520         if (err)
521                 goto err4;
522
523         dev->priv_flags |= IFF_BRIDGE_PORT;
524
525         err = netdev_master_upper_dev_link(dev, br->dev, NULL, NULL);
526         if (err)
527                 goto err5;
528
529         dev_disable_lro(dev);
530
531         list_add_rcu(&p->list, &br->port_list);
532
533         nbp_update_port_count(br);
534
535         netdev_update_features(br->dev);
536
537         br_hr = br->dev->needed_headroom;
538         dev_hr = netdev_get_fwd_headroom(dev);
539         if (br_hr < dev_hr)
540                 update_headroom(br, dev_hr);
541         else
542                 netdev_set_rx_headroom(dev, br_hr);
543
544         if (br_fdb_insert(br, p, dev->dev_addr, 0))
545                 netdev_err(dev, "failed insert local address bridge forwarding table\n");
546
547         err = nbp_vlan_init(p);
548         if (err) {
549                 netdev_err(dev, "failed to initialize vlan filtering on this port\n");
550                 goto err6;
551         }
552
553         spin_lock_bh(&br->lock);
554         changed_addr = br_stp_recalculate_bridge_id(br);
555
556         if (netif_running(dev) && netif_oper_up(dev) &&
557             (br->dev->flags & IFF_UP))
558                 br_stp_enable_port(p);
559         spin_unlock_bh(&br->lock);
560
561         br_ifinfo_notify(RTM_NEWLINK, p);
562
563         if (changed_addr)
564                 call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);
565
566         dev_set_mtu(br->dev, br_min_mtu(br));
567
568         kobject_uevent(&p->kobj, KOBJ_ADD);
569
570         return 0;
571
572 err6:
573         list_del_rcu(&p->list);
574         br_fdb_delete_by_port(br, p, 0, 1);
575         nbp_update_port_count(br);
576         netdev_upper_dev_unlink(dev, br->dev);
577
578 err5:
579         dev->priv_flags &= ~IFF_BRIDGE_PORT;
580         netdev_rx_handler_unregister(dev);
581 err4:
582         br_netpoll_disable(p);
583 err3:
584         sysfs_remove_link(br->ifobj, p->dev->name);
585 err2:
586         kobject_put(&p->kobj);
587         p = NULL; /* kobject_put frees */
588 err1:
589         dev_set_allmulti(dev, -1);
590 put_back:
591         dev_put(dev);
592         kfree(p);
593         return err;
594 }
595
596 /* called with RTNL */
597 int br_del_if(struct net_bridge *br, struct net_device *dev)
598 {
599         struct net_bridge_port *p;
600         bool changed_addr;
601
602         p = br_port_get_rtnl(dev);
603         if (!p || p->br != br)
604                 return -EINVAL;
605
606         /* Since more than one interface can be attached to a bridge,
607          * there still maybe an alternate path for netconsole to use;
608          * therefore there is no reason for a NETDEV_RELEASE event.
609          */
610         del_nbp(p);
611
612         dev_set_mtu(br->dev, br_min_mtu(br));
613
614         spin_lock_bh(&br->lock);
615         changed_addr = br_stp_recalculate_bridge_id(br);
616         spin_unlock_bh(&br->lock);
617
618         if (changed_addr)
619                 call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);
620
621         netdev_update_features(br->dev);
622
623         return 0;
624 }
625
626 void br_port_flags_change(struct net_bridge_port *p, unsigned long mask)
627 {
628         struct net_bridge *br = p->br;
629
630         if (mask & BR_AUTO_MASK)
631                 nbp_update_port_count(br);
632 }