]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - net/batman-adv/soft-interface.c
cpufreq: CPPC: Don't set transition_latency
[mirror_ubuntu-bionic-kernel.git] / net / batman-adv / soft-interface.c
1 /* Copyright (C) 2007-2017 B.A.T.M.A.N. contributors:
2 *
3 * Marek Lindner, Simon Wunderlich
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #include "soft-interface.h"
19 #include "main.h"
20
21 #include <linux/atomic.h>
22 #include <linux/byteorder/generic.h>
23 #include <linux/cache.h>
24 #include <linux/compiler.h>
25 #include <linux/cpumask.h>
26 #include <linux/errno.h>
27 #include <linux/etherdevice.h>
28 #include <linux/ethtool.h>
29 #include <linux/fs.h>
30 #include <linux/if_ether.h>
31 #include <linux/if_vlan.h>
32 #include <linux/jiffies.h>
33 #include <linux/kernel.h>
34 #include <linux/kref.h>
35 #include <linux/list.h>
36 #include <linux/lockdep.h>
37 #include <linux/netdevice.h>
38 #include <linux/percpu.h>
39 #include <linux/printk.h>
40 #include <linux/random.h>
41 #include <linux/rculist.h>
42 #include <linux/rcupdate.h>
43 #include <linux/rtnetlink.h>
44 #include <linux/skbuff.h>
45 #include <linux/slab.h>
46 #include <linux/socket.h>
47 #include <linux/spinlock.h>
48 #include <linux/stddef.h>
49 #include <linux/string.h>
50 #include <linux/types.h>
51
52 #include "bat_algo.h"
53 #include "bridge_loop_avoidance.h"
54 #include "debugfs.h"
55 #include "distributed-arp-table.h"
56 #include "gateway_client.h"
57 #include "gateway_common.h"
58 #include "hard-interface.h"
59 #include "multicast.h"
60 #include "network-coding.h"
61 #include "originator.h"
62 #include "packet.h"
63 #include "send.h"
64 #include "sysfs.h"
65 #include "translation-table.h"
66
67 int batadv_skb_head_push(struct sk_buff *skb, unsigned int len)
68 {
69 int result;
70
71 /* TODO: We must check if we can release all references to non-payload
72 * data using __skb_header_release in our skbs to allow skb_cow_header
73 * to work optimally. This means that those skbs are not allowed to read
74 * or write any data which is before the current position of skb->data
75 * after that call and thus allow other skbs with the same data buffer
76 * to write freely in that area.
77 */
78 result = skb_cow_head(skb, len);
79 if (result < 0)
80 return result;
81
82 skb_push(skb, len);
83 return 0;
84 }
85
86 static int batadv_interface_open(struct net_device *dev)
87 {
88 netif_start_queue(dev);
89 return 0;
90 }
91
92 static int batadv_interface_release(struct net_device *dev)
93 {
94 netif_stop_queue(dev);
95 return 0;
96 }
97
98 /**
99 * batadv_sum_counter - Sum the cpu-local counters for index 'idx'
100 * @bat_priv: the bat priv with all the soft interface information
101 * @idx: index of counter to sum up
102 *
103 * Return: sum of all cpu-local counters
104 */
105 static u64 batadv_sum_counter(struct batadv_priv *bat_priv, size_t idx)
106 {
107 u64 *counters, sum = 0;
108 int cpu;
109
110 for_each_possible_cpu(cpu) {
111 counters = per_cpu_ptr(bat_priv->bat_counters, cpu);
112 sum += counters[idx];
113 }
114
115 return sum;
116 }
117
118 static struct net_device_stats *batadv_interface_stats(struct net_device *dev)
119 {
120 struct batadv_priv *bat_priv = netdev_priv(dev);
121 struct net_device_stats *stats = &dev->stats;
122
123 stats->tx_packets = batadv_sum_counter(bat_priv, BATADV_CNT_TX);
124 stats->tx_bytes = batadv_sum_counter(bat_priv, BATADV_CNT_TX_BYTES);
125 stats->tx_dropped = batadv_sum_counter(bat_priv, BATADV_CNT_TX_DROPPED);
126 stats->rx_packets = batadv_sum_counter(bat_priv, BATADV_CNT_RX);
127 stats->rx_bytes = batadv_sum_counter(bat_priv, BATADV_CNT_RX_BYTES);
128 return stats;
129 }
130
131 static int batadv_interface_set_mac_addr(struct net_device *dev, void *p)
132 {
133 struct batadv_priv *bat_priv = netdev_priv(dev);
134 struct batadv_softif_vlan *vlan;
135 struct sockaddr *addr = p;
136 u8 old_addr[ETH_ALEN];
137
138 if (!is_valid_ether_addr(addr->sa_data))
139 return -EADDRNOTAVAIL;
140
141 ether_addr_copy(old_addr, dev->dev_addr);
142 ether_addr_copy(dev->dev_addr, addr->sa_data);
143
144 /* only modify transtable if it has been initialized before */
145 if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE)
146 return 0;
147
148 rcu_read_lock();
149 hlist_for_each_entry_rcu(vlan, &bat_priv->softif_vlan_list, list) {
150 batadv_tt_local_remove(bat_priv, old_addr, vlan->vid,
151 "mac address changed", false);
152 batadv_tt_local_add(dev, addr->sa_data, vlan->vid,
153 BATADV_NULL_IFINDEX, BATADV_NO_MARK);
154 }
155 rcu_read_unlock();
156
157 return 0;
158 }
159
160 static int batadv_interface_change_mtu(struct net_device *dev, int new_mtu)
161 {
162 /* check ranges */
163 if (new_mtu < 68 || new_mtu > batadv_hardif_min_mtu(dev))
164 return -EINVAL;
165
166 dev->mtu = new_mtu;
167
168 return 0;
169 }
170
171 /**
172 * batadv_interface_set_rx_mode - set the rx mode of a device
173 * @dev: registered network device to modify
174 *
175 * We do not actually need to set any rx filters for the virtual batman
176 * soft interface. However a dummy handler enables a user to set static
177 * multicast listeners for instance.
178 */
179 static void batadv_interface_set_rx_mode(struct net_device *dev)
180 {
181 }
182
183 static int batadv_interface_tx(struct sk_buff *skb,
184 struct net_device *soft_iface)
185 {
186 struct ethhdr *ethhdr;
187 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
188 struct batadv_hard_iface *primary_if = NULL;
189 struct batadv_bcast_packet *bcast_packet;
190 static const u8 stp_addr[ETH_ALEN] = {0x01, 0x80, 0xC2, 0x00,
191 0x00, 0x00};
192 static const u8 ectp_addr[ETH_ALEN] = {0xCF, 0x00, 0x00, 0x00,
193 0x00, 0x00};
194 enum batadv_dhcp_recipient dhcp_rcp = BATADV_DHCP_NO;
195 u8 *dst_hint = NULL, chaddr[ETH_ALEN];
196 struct vlan_ethhdr *vhdr;
197 unsigned int header_len = 0;
198 int data_len = skb->len, ret;
199 unsigned long brd_delay = 1;
200 bool do_bcast = false, client_added;
201 unsigned short vid;
202 u32 seqno;
203 int gw_mode;
204 enum batadv_forw_mode forw_mode;
205 struct batadv_orig_node *mcast_single_orig = NULL;
206 int network_offset = ETH_HLEN;
207
208 if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE)
209 goto dropped;
210
211 /* reset control block to avoid left overs from previous users */
212 memset(skb->cb, 0, sizeof(struct batadv_skb_cb));
213
214 netif_trans_update(soft_iface);
215 vid = batadv_get_vid(skb, 0);
216 ethhdr = eth_hdr(skb);
217
218 switch (ntohs(ethhdr->h_proto)) {
219 case ETH_P_8021Q:
220 vhdr = vlan_eth_hdr(skb);
221
222 /* drop batman-in-batman packets to prevent loops */
223 if (vhdr->h_vlan_encapsulated_proto != htons(ETH_P_BATMAN)) {
224 network_offset += VLAN_HLEN;
225 break;
226 }
227
228 /* fall through */
229 case ETH_P_BATMAN:
230 goto dropped;
231 }
232
233 skb_set_network_header(skb, network_offset);
234
235 if (batadv_bla_tx(bat_priv, skb, vid))
236 goto dropped;
237
238 /* skb->data might have been reallocated by batadv_bla_tx() */
239 ethhdr = eth_hdr(skb);
240
241 /* Register the client MAC in the transtable */
242 if (!is_multicast_ether_addr(ethhdr->h_source) &&
243 !batadv_bla_is_loopdetect_mac(ethhdr->h_source)) {
244 client_added = batadv_tt_local_add(soft_iface, ethhdr->h_source,
245 vid, skb->skb_iif,
246 skb->mark);
247 if (!client_added)
248 goto dropped;
249 }
250
251 /* don't accept stp packets. STP does not help in meshes.
252 * better use the bridge loop avoidance ...
253 *
254 * The same goes for ECTP sent at least by some Cisco Switches,
255 * it might confuse the mesh when used with bridge loop avoidance.
256 */
257 if (batadv_compare_eth(ethhdr->h_dest, stp_addr))
258 goto dropped;
259
260 if (batadv_compare_eth(ethhdr->h_dest, ectp_addr))
261 goto dropped;
262
263 gw_mode = atomic_read(&bat_priv->gw.mode);
264 if (is_multicast_ether_addr(ethhdr->h_dest)) {
265 /* if gw mode is off, broadcast every packet */
266 if (gw_mode == BATADV_GW_MODE_OFF) {
267 do_bcast = true;
268 goto send;
269 }
270
271 dhcp_rcp = batadv_gw_dhcp_recipient_get(skb, &header_len,
272 chaddr);
273 /* skb->data may have been modified by
274 * batadv_gw_dhcp_recipient_get()
275 */
276 ethhdr = eth_hdr(skb);
277 /* if gw_mode is on, broadcast any non-DHCP message.
278 * All the DHCP packets are going to be sent as unicast
279 */
280 if (dhcp_rcp == BATADV_DHCP_NO) {
281 do_bcast = true;
282 goto send;
283 }
284
285 if (dhcp_rcp == BATADV_DHCP_TO_CLIENT)
286 dst_hint = chaddr;
287 else if ((gw_mode == BATADV_GW_MODE_SERVER) &&
288 (dhcp_rcp == BATADV_DHCP_TO_SERVER))
289 /* gateways should not forward any DHCP message if
290 * directed to a DHCP server
291 */
292 goto dropped;
293
294 send:
295 if (do_bcast && !is_broadcast_ether_addr(ethhdr->h_dest)) {
296 forw_mode = batadv_mcast_forw_mode(bat_priv, skb,
297 &mcast_single_orig);
298 if (forw_mode == BATADV_FORW_NONE)
299 goto dropped;
300
301 if (forw_mode == BATADV_FORW_SINGLE)
302 do_bcast = false;
303 }
304 }
305
306 batadv_skb_set_priority(skb, 0);
307
308 /* ethernet packet should be broadcasted */
309 if (do_bcast) {
310 primary_if = batadv_primary_if_get_selected(bat_priv);
311 if (!primary_if)
312 goto dropped;
313
314 /* in case of ARP request, we do not immediately broadcasti the
315 * packet, instead we first wait for DAT to try to retrieve the
316 * correct ARP entry
317 */
318 if (batadv_dat_snoop_outgoing_arp_request(bat_priv, skb))
319 brd_delay = msecs_to_jiffies(ARP_REQ_DELAY);
320
321 if (batadv_skb_head_push(skb, sizeof(*bcast_packet)) < 0)
322 goto dropped;
323
324 bcast_packet = (struct batadv_bcast_packet *)skb->data;
325 bcast_packet->version = BATADV_COMPAT_VERSION;
326 bcast_packet->ttl = BATADV_TTL;
327
328 /* batman packet type: broadcast */
329 bcast_packet->packet_type = BATADV_BCAST;
330 bcast_packet->reserved = 0;
331
332 /* hw address of first interface is the orig mac because only
333 * this mac is known throughout the mesh
334 */
335 ether_addr_copy(bcast_packet->orig,
336 primary_if->net_dev->dev_addr);
337
338 /* set broadcast sequence number */
339 seqno = atomic_inc_return(&bat_priv->bcast_seqno);
340 bcast_packet->seqno = htonl(seqno);
341
342 batadv_add_bcast_packet_to_list(bat_priv, skb, brd_delay, true);
343
344 /* a copy is stored in the bcast list, therefore removing
345 * the original skb.
346 */
347 consume_skb(skb);
348
349 /* unicast packet */
350 } else {
351 /* DHCP packets going to a server will use the GW feature */
352 if (dhcp_rcp == BATADV_DHCP_TO_SERVER) {
353 ret = batadv_gw_out_of_range(bat_priv, skb);
354 if (ret)
355 goto dropped;
356 ret = batadv_send_skb_via_gw(bat_priv, skb, vid);
357 } else if (mcast_single_orig) {
358 ret = batadv_send_skb_unicast(bat_priv, skb,
359 BATADV_UNICAST, 0,
360 mcast_single_orig, vid);
361 } else {
362 if (batadv_dat_snoop_outgoing_arp_request(bat_priv,
363 skb))
364 goto dropped;
365
366 batadv_dat_snoop_outgoing_arp_reply(bat_priv, skb);
367
368 ret = batadv_send_skb_via_tt(bat_priv, skb, dst_hint,
369 vid);
370 }
371 if (ret != NET_XMIT_SUCCESS)
372 goto dropped_freed;
373 }
374
375 batadv_inc_counter(bat_priv, BATADV_CNT_TX);
376 batadv_add_counter(bat_priv, BATADV_CNT_TX_BYTES, data_len);
377 goto end;
378
379 dropped:
380 kfree_skb(skb);
381 dropped_freed:
382 batadv_inc_counter(bat_priv, BATADV_CNT_TX_DROPPED);
383 end:
384 if (mcast_single_orig)
385 batadv_orig_node_put(mcast_single_orig);
386 if (primary_if)
387 batadv_hardif_put(primary_if);
388 return NETDEV_TX_OK;
389 }
390
391 /**
392 * batadv_interface_rx - receive ethernet frame on local batman-adv interface
393 * @soft_iface: local interface which will receive the ethernet frame
394 * @skb: ethernet frame for @soft_iface
395 * @hdr_size: size of already parsed batman-adv header
396 * @orig_node: originator from which the batman-adv packet was sent
397 *
398 * Sends a ethernet frame to the receive path of the local @soft_iface.
399 * skb->data has still point to the batman-adv header with the size @hdr_size.
400 * The caller has to have parsed this header already and made sure that at least
401 * @hdr_size bytes are still available for pull in @skb.
402 *
403 * The packet may still get dropped. This can happen when the encapsulated
404 * ethernet frame is invalid or contains again an batman-adv packet. Also
405 * unicast packets will be dropped directly when it was sent between two
406 * isolated clients.
407 */
408 void batadv_interface_rx(struct net_device *soft_iface,
409 struct sk_buff *skb, int hdr_size,
410 struct batadv_orig_node *orig_node)
411 {
412 struct batadv_bcast_packet *batadv_bcast_packet;
413 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
414 struct vlan_ethhdr *vhdr;
415 struct ethhdr *ethhdr;
416 unsigned short vid;
417 bool is_bcast;
418
419 batadv_bcast_packet = (struct batadv_bcast_packet *)skb->data;
420 is_bcast = (batadv_bcast_packet->packet_type == BATADV_BCAST);
421
422 skb_pull_rcsum(skb, hdr_size);
423 skb_reset_mac_header(skb);
424
425 /* clean the netfilter state now that the batman-adv header has been
426 * removed
427 */
428 nf_reset(skb);
429
430 if (unlikely(!pskb_may_pull(skb, ETH_HLEN)))
431 goto dropped;
432
433 vid = batadv_get_vid(skb, 0);
434 ethhdr = eth_hdr(skb);
435
436 switch (ntohs(ethhdr->h_proto)) {
437 case ETH_P_8021Q:
438 if (!pskb_may_pull(skb, VLAN_ETH_HLEN))
439 goto dropped;
440
441 vhdr = (struct vlan_ethhdr *)skb->data;
442
443 /* drop batman-in-batman packets to prevent loops */
444 if (vhdr->h_vlan_encapsulated_proto != htons(ETH_P_BATMAN))
445 break;
446
447 /* fall through */
448 case ETH_P_BATMAN:
449 goto dropped;
450 }
451
452 /* skb->dev & skb->pkt_type are set here */
453 skb->protocol = eth_type_trans(skb, soft_iface);
454 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
455
456 batadv_inc_counter(bat_priv, BATADV_CNT_RX);
457 batadv_add_counter(bat_priv, BATADV_CNT_RX_BYTES,
458 skb->len + ETH_HLEN);
459
460 /* Let the bridge loop avoidance check the packet. If will
461 * not handle it, we can safely push it up.
462 */
463 if (batadv_bla_rx(bat_priv, skb, vid, is_bcast))
464 goto out;
465
466 if (orig_node)
467 batadv_tt_add_temporary_global_entry(bat_priv, orig_node,
468 ethhdr->h_source, vid);
469
470 if (is_multicast_ether_addr(ethhdr->h_dest)) {
471 /* set the mark on broadcast packets if AP isolation is ON and
472 * the packet is coming from an "isolated" client
473 */
474 if (batadv_vlan_ap_isola_get(bat_priv, vid) &&
475 batadv_tt_global_is_isolated(bat_priv, ethhdr->h_source,
476 vid)) {
477 /* save bits in skb->mark not covered by the mask and
478 * apply the mark on the rest
479 */
480 skb->mark &= ~bat_priv->isolation_mark_mask;
481 skb->mark |= bat_priv->isolation_mark;
482 }
483 } else if (batadv_is_ap_isolated(bat_priv, ethhdr->h_source,
484 ethhdr->h_dest, vid)) {
485 goto dropped;
486 }
487
488 netif_rx(skb);
489 goto out;
490
491 dropped:
492 kfree_skb(skb);
493 out:
494 return;
495 }
496
497 /**
498 * batadv_softif_vlan_release - release vlan from lists and queue for free after
499 * rcu grace period
500 * @ref: kref pointer of the vlan object
501 */
502 static void batadv_softif_vlan_release(struct kref *ref)
503 {
504 struct batadv_softif_vlan *vlan;
505
506 vlan = container_of(ref, struct batadv_softif_vlan, refcount);
507
508 spin_lock_bh(&vlan->bat_priv->softif_vlan_list_lock);
509 hlist_del_rcu(&vlan->list);
510 spin_unlock_bh(&vlan->bat_priv->softif_vlan_list_lock);
511
512 kfree_rcu(vlan, rcu);
513 }
514
515 /**
516 * batadv_softif_vlan_put - decrease the vlan object refcounter and
517 * possibly release it
518 * @vlan: the vlan object to release
519 */
520 void batadv_softif_vlan_put(struct batadv_softif_vlan *vlan)
521 {
522 if (!vlan)
523 return;
524
525 kref_put(&vlan->refcount, batadv_softif_vlan_release);
526 }
527
528 /**
529 * batadv_softif_vlan_get - get the vlan object for a specific vid
530 * @bat_priv: the bat priv with all the soft interface information
531 * @vid: the identifier of the vlan object to retrieve
532 *
533 * Return: the private data of the vlan matching the vid passed as argument or
534 * NULL otherwise. The refcounter of the returned object is incremented by 1.
535 */
536 struct batadv_softif_vlan *batadv_softif_vlan_get(struct batadv_priv *bat_priv,
537 unsigned short vid)
538 {
539 struct batadv_softif_vlan *vlan_tmp, *vlan = NULL;
540
541 rcu_read_lock();
542 hlist_for_each_entry_rcu(vlan_tmp, &bat_priv->softif_vlan_list, list) {
543 if (vlan_tmp->vid != vid)
544 continue;
545
546 if (!kref_get_unless_zero(&vlan_tmp->refcount))
547 continue;
548
549 vlan = vlan_tmp;
550 break;
551 }
552 rcu_read_unlock();
553
554 return vlan;
555 }
556
557 /**
558 * batadv_softif_create_vlan - allocate the needed resources for a new vlan
559 * @bat_priv: the bat priv with all the soft interface information
560 * @vid: the VLAN identifier
561 *
562 * Return: 0 on success, a negative error otherwise.
563 */
564 int batadv_softif_create_vlan(struct batadv_priv *bat_priv, unsigned short vid)
565 {
566 struct batadv_softif_vlan *vlan;
567 int err;
568
569 vlan = batadv_softif_vlan_get(bat_priv, vid);
570 if (vlan) {
571 batadv_softif_vlan_put(vlan);
572 return -EEXIST;
573 }
574
575 vlan = kzalloc(sizeof(*vlan), GFP_ATOMIC);
576 if (!vlan)
577 return -ENOMEM;
578
579 vlan->bat_priv = bat_priv;
580 vlan->vid = vid;
581 kref_init(&vlan->refcount);
582
583 atomic_set(&vlan->ap_isolation, 0);
584
585 err = batadv_sysfs_add_vlan(bat_priv->soft_iface, vlan);
586 if (err) {
587 kfree(vlan);
588 return err;
589 }
590
591 spin_lock_bh(&bat_priv->softif_vlan_list_lock);
592 kref_get(&vlan->refcount);
593 hlist_add_head_rcu(&vlan->list, &bat_priv->softif_vlan_list);
594 spin_unlock_bh(&bat_priv->softif_vlan_list_lock);
595
596 /* add a new TT local entry. This one will be marked with the NOPURGE
597 * flag
598 */
599 batadv_tt_local_add(bat_priv->soft_iface,
600 bat_priv->soft_iface->dev_addr, vid,
601 BATADV_NULL_IFINDEX, BATADV_NO_MARK);
602
603 /* don't return reference to new softif_vlan */
604 batadv_softif_vlan_put(vlan);
605
606 return 0;
607 }
608
609 /**
610 * batadv_softif_destroy_vlan - remove and destroy a softif_vlan object
611 * @bat_priv: the bat priv with all the soft interface information
612 * @vlan: the object to remove
613 */
614 static void batadv_softif_destroy_vlan(struct batadv_priv *bat_priv,
615 struct batadv_softif_vlan *vlan)
616 {
617 /* explicitly remove the associated TT local entry because it is marked
618 * with the NOPURGE flag
619 */
620 batadv_tt_local_remove(bat_priv, bat_priv->soft_iface->dev_addr,
621 vlan->vid, "vlan interface destroyed", false);
622
623 batadv_sysfs_del_vlan(bat_priv, vlan);
624 batadv_softif_vlan_put(vlan);
625 }
626
627 /**
628 * batadv_interface_add_vid - ndo_add_vid API implementation
629 * @dev: the netdev of the mesh interface
630 * @proto: protocol of the the vlan id
631 * @vid: identifier of the new vlan
632 *
633 * Set up all the internal structures for handling the new vlan on top of the
634 * mesh interface
635 *
636 * Return: 0 on success or a negative error code in case of failure.
637 */
638 static int batadv_interface_add_vid(struct net_device *dev, __be16 proto,
639 unsigned short vid)
640 {
641 struct batadv_priv *bat_priv = netdev_priv(dev);
642 struct batadv_softif_vlan *vlan;
643 int ret;
644
645 /* only 802.1Q vlans are supported.
646 * batman-adv does not know how to handle other types
647 */
648 if (proto != htons(ETH_P_8021Q))
649 return -EINVAL;
650
651 vid |= BATADV_VLAN_HAS_TAG;
652
653 /* if a new vlan is getting created and it already exists, it means that
654 * it was not deleted yet. batadv_softif_vlan_get() increases the
655 * refcount in order to revive the object.
656 *
657 * if it does not exist then create it.
658 */
659 vlan = batadv_softif_vlan_get(bat_priv, vid);
660 if (!vlan)
661 return batadv_softif_create_vlan(bat_priv, vid);
662
663 /* recreate the sysfs object if it was already destroyed (and it should
664 * be since we received a kill_vid() for this vlan
665 */
666 if (!vlan->kobj) {
667 ret = batadv_sysfs_add_vlan(bat_priv->soft_iface, vlan);
668 if (ret) {
669 batadv_softif_vlan_put(vlan);
670 return ret;
671 }
672 }
673
674 /* add a new TT local entry. This one will be marked with the NOPURGE
675 * flag. This must be added again, even if the vlan object already
676 * exists, because the entry was deleted by kill_vid()
677 */
678 batadv_tt_local_add(bat_priv->soft_iface,
679 bat_priv->soft_iface->dev_addr, vid,
680 BATADV_NULL_IFINDEX, BATADV_NO_MARK);
681
682 return 0;
683 }
684
685 /**
686 * batadv_interface_kill_vid - ndo_kill_vid API implementation
687 * @dev: the netdev of the mesh interface
688 * @proto: protocol of the the vlan id
689 * @vid: identifier of the deleted vlan
690 *
691 * Destroy all the internal structures used to handle the vlan identified by vid
692 * on top of the mesh interface
693 *
694 * Return: 0 on success, -EINVAL if the specified prototype is not ETH_P_8021Q
695 * or -ENOENT if the specified vlan id wasn't registered.
696 */
697 static int batadv_interface_kill_vid(struct net_device *dev, __be16 proto,
698 unsigned short vid)
699 {
700 struct batadv_priv *bat_priv = netdev_priv(dev);
701 struct batadv_softif_vlan *vlan;
702
703 /* only 802.1Q vlans are supported. batman-adv does not know how to
704 * handle other types
705 */
706 if (proto != htons(ETH_P_8021Q))
707 return -EINVAL;
708
709 vlan = batadv_softif_vlan_get(bat_priv, vid | BATADV_VLAN_HAS_TAG);
710 if (!vlan)
711 return -ENOENT;
712
713 batadv_softif_destroy_vlan(bat_priv, vlan);
714
715 /* finally free the vlan object */
716 batadv_softif_vlan_put(vlan);
717
718 return 0;
719 }
720
721 /* batman-adv network devices have devices nesting below it and are a special
722 * "super class" of normal network devices; split their locks off into a
723 * separate class since they always nest.
724 */
725 static struct lock_class_key batadv_netdev_xmit_lock_key;
726 static struct lock_class_key batadv_netdev_addr_lock_key;
727
728 /**
729 * batadv_set_lockdep_class_one - Set lockdep class for a single tx queue
730 * @dev: device which owns the tx queue
731 * @txq: tx queue to modify
732 * @_unused: always NULL
733 */
734 static void batadv_set_lockdep_class_one(struct net_device *dev,
735 struct netdev_queue *txq,
736 void *_unused)
737 {
738 lockdep_set_class(&txq->_xmit_lock, &batadv_netdev_xmit_lock_key);
739 }
740
741 /**
742 * batadv_set_lockdep_class - Set txq and addr_list lockdep class
743 * @dev: network device to modify
744 */
745 static void batadv_set_lockdep_class(struct net_device *dev)
746 {
747 lockdep_set_class(&dev->addr_list_lock, &batadv_netdev_addr_lock_key);
748 netdev_for_each_tx_queue(dev, batadv_set_lockdep_class_one, NULL);
749 }
750
751 /**
752 * batadv_softif_init_late - late stage initialization of soft interface
753 * @dev: registered network device to modify
754 *
755 * Return: error code on failures
756 */
757 static int batadv_softif_init_late(struct net_device *dev)
758 {
759 struct batadv_priv *bat_priv;
760 u32 random_seqno;
761 int ret;
762 size_t cnt_len = sizeof(u64) * BATADV_CNT_NUM;
763
764 batadv_set_lockdep_class(dev);
765
766 bat_priv = netdev_priv(dev);
767 bat_priv->soft_iface = dev;
768
769 /* batadv_interface_stats() needs to be available as soon as
770 * register_netdevice() has been called
771 */
772 bat_priv->bat_counters = __alloc_percpu(cnt_len, __alignof__(u64));
773 if (!bat_priv->bat_counters)
774 return -ENOMEM;
775
776 atomic_set(&bat_priv->aggregated_ogms, 1);
777 atomic_set(&bat_priv->bonding, 0);
778 #ifdef CONFIG_BATMAN_ADV_BLA
779 atomic_set(&bat_priv->bridge_loop_avoidance, 1);
780 #endif
781 #ifdef CONFIG_BATMAN_ADV_DAT
782 atomic_set(&bat_priv->distributed_arp_table, 1);
783 #endif
784 #ifdef CONFIG_BATMAN_ADV_MCAST
785 bat_priv->mcast.querier_ipv4.exists = false;
786 bat_priv->mcast.querier_ipv4.shadowing = false;
787 bat_priv->mcast.querier_ipv6.exists = false;
788 bat_priv->mcast.querier_ipv6.shadowing = false;
789 bat_priv->mcast.flags = BATADV_NO_FLAGS;
790 atomic_set(&bat_priv->multicast_mode, 1);
791 atomic_set(&bat_priv->mcast.num_disabled, 0);
792 atomic_set(&bat_priv->mcast.num_want_all_unsnoopables, 0);
793 atomic_set(&bat_priv->mcast.num_want_all_ipv4, 0);
794 atomic_set(&bat_priv->mcast.num_want_all_ipv6, 0);
795 #endif
796 atomic_set(&bat_priv->gw.mode, BATADV_GW_MODE_OFF);
797 atomic_set(&bat_priv->gw.bandwidth_down, 100);
798 atomic_set(&bat_priv->gw.bandwidth_up, 20);
799 atomic_set(&bat_priv->orig_interval, 1000);
800 atomic_set(&bat_priv->hop_penalty, 30);
801 #ifdef CONFIG_BATMAN_ADV_DEBUG
802 atomic_set(&bat_priv->log_level, 0);
803 #endif
804 atomic_set(&bat_priv->fragmentation, 1);
805 atomic_set(&bat_priv->packet_size_max, ETH_DATA_LEN);
806 atomic_set(&bat_priv->bcast_queue_left, BATADV_BCAST_QUEUE_LEN);
807 atomic_set(&bat_priv->batman_queue_left, BATADV_BATMAN_QUEUE_LEN);
808
809 atomic_set(&bat_priv->mesh_state, BATADV_MESH_INACTIVE);
810 atomic_set(&bat_priv->bcast_seqno, 1);
811 atomic_set(&bat_priv->tt.vn, 0);
812 atomic_set(&bat_priv->tt.local_changes, 0);
813 atomic_set(&bat_priv->tt.ogm_append_cnt, 0);
814 #ifdef CONFIG_BATMAN_ADV_BLA
815 atomic_set(&bat_priv->bla.num_requests, 0);
816 #endif
817 atomic_set(&bat_priv->tp_num, 0);
818
819 bat_priv->tt.last_changeset = NULL;
820 bat_priv->tt.last_changeset_len = 0;
821 bat_priv->isolation_mark = 0;
822 bat_priv->isolation_mark_mask = 0;
823
824 /* randomize initial seqno to avoid collision */
825 get_random_bytes(&random_seqno, sizeof(random_seqno));
826 atomic_set(&bat_priv->frag_seqno, random_seqno);
827
828 bat_priv->primary_if = NULL;
829 bat_priv->num_ifaces = 0;
830
831 batadv_nc_init_bat_priv(bat_priv);
832
833 ret = batadv_algo_select(bat_priv, batadv_routing_algo);
834 if (ret < 0)
835 goto free_bat_counters;
836
837 ret = batadv_debugfs_add_meshif(dev);
838 if (ret < 0)
839 goto free_bat_counters;
840
841 ret = batadv_mesh_init(dev);
842 if (ret < 0)
843 goto unreg_debugfs;
844
845 return 0;
846
847 unreg_debugfs:
848 batadv_debugfs_del_meshif(dev);
849 free_bat_counters:
850 free_percpu(bat_priv->bat_counters);
851 bat_priv->bat_counters = NULL;
852
853 return ret;
854 }
855
856 /**
857 * batadv_softif_slave_add - Add a slave interface to a batadv_soft_interface
858 * @dev: batadv_soft_interface used as master interface
859 * @slave_dev: net_device which should become the slave interface
860 * @extack: extended ACK report struct
861 *
862 * Return: 0 if successful or error otherwise.
863 */
864 static int batadv_softif_slave_add(struct net_device *dev,
865 struct net_device *slave_dev,
866 struct netlink_ext_ack *extack)
867 {
868 struct batadv_hard_iface *hard_iface;
869 struct net *net = dev_net(dev);
870 int ret = -EINVAL;
871
872 hard_iface = batadv_hardif_get_by_netdev(slave_dev);
873 if (!hard_iface || hard_iface->soft_iface)
874 goto out;
875
876 ret = batadv_hardif_enable_interface(hard_iface, net, dev->name);
877
878 out:
879 if (hard_iface)
880 batadv_hardif_put(hard_iface);
881 return ret;
882 }
883
884 /**
885 * batadv_softif_slave_del - Delete a slave iface from a batadv_soft_interface
886 * @dev: batadv_soft_interface used as master interface
887 * @slave_dev: net_device which should be removed from the master interface
888 *
889 * Return: 0 if successful or error otherwise.
890 */
891 static int batadv_softif_slave_del(struct net_device *dev,
892 struct net_device *slave_dev)
893 {
894 struct batadv_hard_iface *hard_iface;
895 int ret = -EINVAL;
896
897 hard_iface = batadv_hardif_get_by_netdev(slave_dev);
898
899 if (!hard_iface || hard_iface->soft_iface != dev)
900 goto out;
901
902 batadv_hardif_disable_interface(hard_iface, BATADV_IF_CLEANUP_KEEP);
903 ret = 0;
904
905 out:
906 if (hard_iface)
907 batadv_hardif_put(hard_iface);
908 return ret;
909 }
910
911 static const struct net_device_ops batadv_netdev_ops = {
912 .ndo_init = batadv_softif_init_late,
913 .ndo_open = batadv_interface_open,
914 .ndo_stop = batadv_interface_release,
915 .ndo_get_stats = batadv_interface_stats,
916 .ndo_vlan_rx_add_vid = batadv_interface_add_vid,
917 .ndo_vlan_rx_kill_vid = batadv_interface_kill_vid,
918 .ndo_set_mac_address = batadv_interface_set_mac_addr,
919 .ndo_change_mtu = batadv_interface_change_mtu,
920 .ndo_set_rx_mode = batadv_interface_set_rx_mode,
921 .ndo_start_xmit = batadv_interface_tx,
922 .ndo_validate_addr = eth_validate_addr,
923 .ndo_add_slave = batadv_softif_slave_add,
924 .ndo_del_slave = batadv_softif_slave_del,
925 };
926
927 static void batadv_get_drvinfo(struct net_device *dev,
928 struct ethtool_drvinfo *info)
929 {
930 strlcpy(info->driver, "B.A.T.M.A.N. advanced", sizeof(info->driver));
931 strlcpy(info->version, BATADV_SOURCE_VERSION, sizeof(info->version));
932 strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
933 strlcpy(info->bus_info, "batman", sizeof(info->bus_info));
934 }
935
936 /* Inspired by drivers/net/ethernet/dlink/sundance.c:1702
937 * Declare each description string in struct.name[] to get fixed sized buffer
938 * and compile time checking for strings longer than ETH_GSTRING_LEN.
939 */
940 static const struct {
941 const char name[ETH_GSTRING_LEN];
942 } batadv_counters_strings[] = {
943 { "tx" },
944 { "tx_bytes" },
945 { "tx_dropped" },
946 { "rx" },
947 { "rx_bytes" },
948 { "forward" },
949 { "forward_bytes" },
950 { "mgmt_tx" },
951 { "mgmt_tx_bytes" },
952 { "mgmt_rx" },
953 { "mgmt_rx_bytes" },
954 { "frag_tx" },
955 { "frag_tx_bytes" },
956 { "frag_rx" },
957 { "frag_rx_bytes" },
958 { "frag_fwd" },
959 { "frag_fwd_bytes" },
960 { "tt_request_tx" },
961 { "tt_request_rx" },
962 { "tt_response_tx" },
963 { "tt_response_rx" },
964 { "tt_roam_adv_tx" },
965 { "tt_roam_adv_rx" },
966 #ifdef CONFIG_BATMAN_ADV_DAT
967 { "dat_get_tx" },
968 { "dat_get_rx" },
969 { "dat_put_tx" },
970 { "dat_put_rx" },
971 { "dat_cached_reply_tx" },
972 #endif
973 #ifdef CONFIG_BATMAN_ADV_NC
974 { "nc_code" },
975 { "nc_code_bytes" },
976 { "nc_recode" },
977 { "nc_recode_bytes" },
978 { "nc_buffer" },
979 { "nc_decode" },
980 { "nc_decode_bytes" },
981 { "nc_decode_failed" },
982 { "nc_sniffed" },
983 #endif
984 };
985
986 static void batadv_get_strings(struct net_device *dev, u32 stringset, u8 *data)
987 {
988 if (stringset == ETH_SS_STATS)
989 memcpy(data, batadv_counters_strings,
990 sizeof(batadv_counters_strings));
991 }
992
993 static void batadv_get_ethtool_stats(struct net_device *dev,
994 struct ethtool_stats *stats, u64 *data)
995 {
996 struct batadv_priv *bat_priv = netdev_priv(dev);
997 int i;
998
999 for (i = 0; i < BATADV_CNT_NUM; i++)
1000 data[i] = batadv_sum_counter(bat_priv, i);
1001 }
1002
1003 static int batadv_get_sset_count(struct net_device *dev, int stringset)
1004 {
1005 if (stringset == ETH_SS_STATS)
1006 return BATADV_CNT_NUM;
1007
1008 return -EOPNOTSUPP;
1009 }
1010
1011 static const struct ethtool_ops batadv_ethtool_ops = {
1012 .get_drvinfo = batadv_get_drvinfo,
1013 .get_link = ethtool_op_get_link,
1014 .get_strings = batadv_get_strings,
1015 .get_ethtool_stats = batadv_get_ethtool_stats,
1016 .get_sset_count = batadv_get_sset_count,
1017 };
1018
1019 /**
1020 * batadv_softif_free - Deconstructor of batadv_soft_interface
1021 * @dev: Device to cleanup and remove
1022 */
1023 static void batadv_softif_free(struct net_device *dev)
1024 {
1025 batadv_debugfs_del_meshif(dev);
1026 batadv_mesh_free(dev);
1027
1028 /* some scheduled RCU callbacks need the bat_priv struct to accomplish
1029 * their tasks. Wait for them all to be finished before freeing the
1030 * netdev and its private data (bat_priv)
1031 */
1032 rcu_barrier();
1033 }
1034
1035 /**
1036 * batadv_softif_init_early - early stage initialization of soft interface
1037 * @dev: registered network device to modify
1038 */
1039 static void batadv_softif_init_early(struct net_device *dev)
1040 {
1041 ether_setup(dev);
1042
1043 dev->netdev_ops = &batadv_netdev_ops;
1044 dev->needs_free_netdev = true;
1045 dev->priv_destructor = batadv_softif_free;
1046 dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_NETNS_LOCAL;
1047 dev->priv_flags |= IFF_NO_QUEUE;
1048
1049 /* can't call min_mtu, because the needed variables
1050 * have not been initialized yet
1051 */
1052 dev->mtu = ETH_DATA_LEN;
1053
1054 /* generate random address */
1055 eth_hw_addr_random(dev);
1056
1057 dev->ethtool_ops = &batadv_ethtool_ops;
1058 }
1059
1060 struct net_device *batadv_softif_create(struct net *net, const char *name)
1061 {
1062 struct net_device *soft_iface;
1063 int ret;
1064
1065 soft_iface = alloc_netdev(sizeof(struct batadv_priv), name,
1066 NET_NAME_UNKNOWN, batadv_softif_init_early);
1067 if (!soft_iface)
1068 return NULL;
1069
1070 dev_net_set(soft_iface, net);
1071
1072 soft_iface->rtnl_link_ops = &batadv_link_ops;
1073
1074 ret = register_netdevice(soft_iface);
1075 if (ret < 0) {
1076 pr_err("Unable to register the batman interface '%s': %i\n",
1077 name, ret);
1078 free_netdev(soft_iface);
1079 return NULL;
1080 }
1081
1082 return soft_iface;
1083 }
1084
1085 /**
1086 * batadv_softif_destroy_sysfs - deletion of batadv_soft_interface via sysfs
1087 * @soft_iface: the to-be-removed batman-adv interface
1088 */
1089 void batadv_softif_destroy_sysfs(struct net_device *soft_iface)
1090 {
1091 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
1092 struct batadv_softif_vlan *vlan;
1093
1094 ASSERT_RTNL();
1095
1096 /* destroy the "untagged" VLAN */
1097 vlan = batadv_softif_vlan_get(bat_priv, BATADV_NO_FLAGS);
1098 if (vlan) {
1099 batadv_softif_destroy_vlan(bat_priv, vlan);
1100 batadv_softif_vlan_put(vlan);
1101 }
1102
1103 batadv_sysfs_del_meshif(soft_iface);
1104 unregister_netdevice(soft_iface);
1105 }
1106
1107 /**
1108 * batadv_softif_destroy_netlink - deletion of batadv_soft_interface via netlink
1109 * @soft_iface: the to-be-removed batman-adv interface
1110 * @head: list pointer
1111 */
1112 static void batadv_softif_destroy_netlink(struct net_device *soft_iface,
1113 struct list_head *head)
1114 {
1115 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
1116 struct batadv_hard_iface *hard_iface;
1117 struct batadv_softif_vlan *vlan;
1118
1119 list_for_each_entry(hard_iface, &batadv_hardif_list, list) {
1120 if (hard_iface->soft_iface == soft_iface)
1121 batadv_hardif_disable_interface(hard_iface,
1122 BATADV_IF_CLEANUP_KEEP);
1123 }
1124
1125 /* destroy the "untagged" VLAN */
1126 vlan = batadv_softif_vlan_get(bat_priv, BATADV_NO_FLAGS);
1127 if (vlan) {
1128 batadv_softif_destroy_vlan(bat_priv, vlan);
1129 batadv_softif_vlan_put(vlan);
1130 }
1131
1132 batadv_sysfs_del_meshif(soft_iface);
1133 unregister_netdevice_queue(soft_iface, head);
1134 }
1135
1136 bool batadv_softif_is_valid(const struct net_device *net_dev)
1137 {
1138 if (net_dev->netdev_ops->ndo_start_xmit == batadv_interface_tx)
1139 return true;
1140
1141 return false;
1142 }
1143
1144 struct rtnl_link_ops batadv_link_ops __read_mostly = {
1145 .kind = "batadv",
1146 .priv_size = sizeof(struct batadv_priv),
1147 .setup = batadv_softif_init_early,
1148 .dellink = batadv_softif_destroy_netlink,
1149 };