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