blob: 10f7edfb176ebd49c680ff4132db87aa00d3f04e [file] [log] [blame]
Sven Eckelmannac79cbb2017-01-01 00:00:00 +01001/* Copyright (C) 2007-2017 B.A.T.M.A.N. contributors:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00002 *
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
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000016 */
17
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018#include "soft-interface.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020019#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>
Sven Eckelmannc408c1b2016-07-22 01:30:10 +020025#include <linux/cpumask.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020026#include <linux/errno.h>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000027#include <linux/etherdevice.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020028#include <linux/ethtool.h>
29#include <linux/fs.h>
30#include <linux/if_ether.h>
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000031#include <linux/if_vlan.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020032#include <linux/jiffies.h>
33#include <linux/kernel.h>
Sven Eckelmann6be4d302016-01-16 10:29:42 +010034#include <linux/kref.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020035#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>
Sven Eckelmann569c9852016-06-13 07:41:31 +020043#include <linux/rtnetlink.h>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020044#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>
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020051
Sven Eckelmann01d350d2016-05-15 11:07:44 +020052#include "bat_algo.h"
Simon Wunderlich23721382012-01-22 20:00:19 +010053#include "bridge_loop_avoidance.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020054#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"
Martin Hundebølld353d8d2013-01-25 11:12:38 +010060#include "network-coding.h"
Sven Eckelmannf19dc772016-06-27 08:15:42 +020061#include "originator.h"
Sven Eckelmann1e2c2a42015-04-17 19:40:28 +020062#include "packet.h"
63#include "send.h"
64#include "sysfs.h"
65#include "translation-table.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000066
Sven Eckelmann04b482a2012-05-12 02:09:38 +020067int batadv_skb_head_push(struct sk_buff *skb, unsigned int len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000068{
69 int result;
70
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020071 /* TODO: We must check if we can release all references to non-payload
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000072 * 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
Sven Eckelmann0294ca02012-05-16 20:23:15 +020086static int batadv_interface_open(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000087{
88 netif_start_queue(dev);
89 return 0;
90}
91
Sven Eckelmann0294ca02012-05-16 20:23:15 +020092static int batadv_interface_release(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000093{
94 netif_stop_queue(dev);
95 return 0;
96}
97
Sven Eckelmannc408c1b2016-07-22 01:30:10 +020098/**
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
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200118static struct net_device_stats *batadv_interface_stats(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000119{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200120 struct batadv_priv *bat_priv = netdev_priv(dev);
Tobias Klauserab044f82017-04-05 13:46:31 +0200121 struct net_device_stats *stats = &dev->stats;
Marek Lindner1c9b0552012-06-23 11:47:53 +0200122
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;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000129}
130
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200131static int batadv_interface_set_mac_addr(struct net_device *dev, void *p)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000132{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200133 struct batadv_priv *bat_priv = netdev_priv(dev);
Antonio Quartulli94d1dd82014-03-31 13:48:10 +0200134 struct batadv_softif_vlan *vlan;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000135 struct sockaddr *addr = p;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200136 u8 old_addr[ETH_ALEN];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000137
138 if (!is_valid_ether_addr(addr->sa_data))
139 return -EADDRNOTAVAIL;
140
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100141 ether_addr_copy(old_addr, dev->dev_addr);
142 ether_addr_copy(dev->dev_addr, addr->sa_data);
Def40a3eb32012-09-20 14:56:13 +0200143
Antonio Quartulli015758d2011-07-09 17:52:13 +0200144 /* only modify transtable if it has been initialized before */
Antonio Quartulli94d1dd82014-03-31 13:48:10 +0200145 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,
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200151 "mac address changed", false);
Antonio Quartulli94d1dd82014-03-31 13:48:10 +0200152 batadv_tt_local_add(dev, addr->sa_data, vlan->vid,
Antonio Quartulli9464d072013-11-16 12:03:48 +0100153 BATADV_NULL_IFINDEX, BATADV_NO_MARK);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000154 }
Antonio Quartulli94d1dd82014-03-31 13:48:10 +0200155 rcu_read_unlock();
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000156
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000157 return 0;
158}
159
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200160static int batadv_interface_change_mtu(struct net_device *dev, int new_mtu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000161{
162 /* check ranges */
Sven Eckelmann95638772012-05-12 02:09:31 +0200163 if ((new_mtu < 68) || (new_mtu > batadv_hardif_min_mtu(dev)))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000164 return -EINVAL;
165
166 dev->mtu = new_mtu;
167
168 return 0;
169}
170
Linus LĂĽssinga4deee1a2013-05-26 17:56:07 +0200171/**
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
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200183static int batadv_interface_tx(struct sk_buff *skb,
184 struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000185{
Antonio Quartullic018ad32013-06-04 12:11:39 +0200186 struct ethhdr *ethhdr;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200187 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
188 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +0200189 struct batadv_bcast_packet *bcast_packet;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200190 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};
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100194 enum batadv_dhcp_recipient dhcp_rcp = BATADV_DHCP_NO;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200195 u8 *dst_hint = NULL, chaddr[ETH_ALEN];
Antonio Quartullic018ad32013-06-04 12:11:39 +0200196 struct vlan_ethhdr *vhdr;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200197 unsigned int header_len = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000198 int data_len = skb->len, ret;
Antonio Quartullic384ea32011-06-26 03:37:18 +0200199 unsigned long brd_delay = 1;
Marek Lindnera19d3d82013-05-27 15:33:25 +0800200 bool do_bcast = false, client_added;
Antonio Quartullic018ad32013-06-04 12:11:39 +0200201 unsigned short vid;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200202 u32 seqno;
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100203 int gw_mode;
Linus LĂĽssing1d8ab8d2014-02-15 17:47:52 +0100204 enum batadv_forw_mode forw_mode;
205 struct batadv_orig_node *mcast_single_orig = NULL;
Linus LĂĽssing53cf0372015-06-30 23:45:26 +0200206 int network_offset = ETH_HLEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000207
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200208 if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000209 goto dropped;
210
Linus LĂĽssinge2d9ba42017-02-17 11:17:07 +0100211 /* reset control block to avoid left overs from previous users */
212 memset(skb->cb, 0, sizeof(struct batadv_skb_cb));
213
Florian Westphal860e9532016-05-03 16:33:13 +0200214 netif_trans_update(soft_iface);
Antonio Quartullic018ad32013-06-04 12:11:39 +0200215 vid = batadv_get_vid(skb, 0);
Linus LĂĽssing927c2ed2014-01-19 22:22:45 +0100216 ethhdr = eth_hdr(skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000217
218 switch (ntohs(ethhdr->h_proto)) {
219 case ETH_P_8021Q:
Linus LĂĽssing927c2ed2014-01-19 22:22:45 +0100220 vhdr = vlan_eth_hdr(skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000221
Marek Lindner9d1601ef2016-03-20 18:39:56 +0800222 /* drop batman-in-batman packets to prevent loops */
223 if (vhdr->h_vlan_encapsulated_proto != htons(ETH_P_BATMAN)) {
Linus LĂĽssing53cf0372015-06-30 23:45:26 +0200224 network_offset += VLAN_HLEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000225 break;
Linus LĂĽssing53cf0372015-06-30 23:45:26 +0200226 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000227
228 /* fall through */
Antonio Quartulliaf5d4f72012-11-26 00:38:50 +0100229 case ETH_P_BATMAN:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000230 goto dropped;
Simon Wunderlicha7f6ee92012-01-22 20:00:18 +0100231 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000232
Linus LĂĽssing53cf0372015-06-30 23:45:26 +0200233 skb_set_network_header(skb, network_offset);
234
Sven Eckelmann08adf152012-05-12 13:38:47 +0200235 if (batadv_bla_tx(bat_priv, skb, vid))
Simon Wunderlich23721382012-01-22 20:00:19 +0100236 goto dropped;
237
Linus LĂĽssing9d2c9482013-08-06 20:21:15 +0200238 /* skb->data might have been reallocated by batadv_bla_tx() */
Linus LĂĽssing927c2ed2014-01-19 22:22:45 +0100239 ethhdr = eth_hdr(skb);
Linus LĂĽssing9d2c9482013-08-06 20:21:15 +0200240
Antonio Quartullia73105b2011-04-27 14:27:44 +0200241 /* Register the client MAC in the transtable */
Simon Wunderlichd3e97682016-11-24 16:11:01 +0100242 if (!is_multicast_ether_addr(ethhdr->h_source) &&
243 !batadv_bla_is_loopdetect_mac(ethhdr->h_source)) {
Marek Lindnera19d3d82013-05-27 15:33:25 +0800244 client_added = batadv_tt_local_add(soft_iface, ethhdr->h_source,
Antonio Quartulli9464d072013-11-16 12:03:48 +0100245 vid, skb->skb_iif,
246 skb->mark);
Marek Lindnera19d3d82013-05-27 15:33:25 +0800247 if (!client_added)
248 goto dropped;
249 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000250
Simon Wunderlichb1a8c042012-01-22 20:00:25 +0100251 /* don't accept stp packets. STP does not help in meshes.
252 * better use the bridge loop avoidance ...
Simon Wunderlich4934ab92012-08-19 20:10:09 +0200253 *
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.
Simon Wunderlichb1a8c042012-01-22 20:00:25 +0100256 */
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200257 if (batadv_compare_eth(ethhdr->h_dest, stp_addr))
Simon Wunderlichb1a8c042012-01-22 20:00:25 +0100258 goto dropped;
259
Simon Wunderlich4934ab92012-08-19 20:10:09 +0200260 if (batadv_compare_eth(ethhdr->h_dest, ectp_addr))
261 goto dropped;
262
Antonio Quartulli3a24a632016-05-06 02:46:38 +0800263 gw_mode = atomic_read(&bat_priv->gw.mode);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200264 if (is_multicast_ether_addr(ethhdr->h_dest)) {
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100265 /* if gw mode is off, broadcast every packet */
266 if (gw_mode == BATADV_GW_MODE_OFF) {
267 do_bcast = true;
268 goto send;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200269 }
Linus LĂĽssing9d2c9482013-08-06 20:21:15 +0200270
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100271 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()
Linus LĂĽssing9d2c9482013-08-06 20:21:15 +0200275 */
Linus LĂĽssing927c2ed2014-01-19 22:22:45 +0100276 ethhdr = eth_hdr(skb);
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100277 /* 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;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000293
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100294send:
Linus LĂĽssing1d8ab8d2014-02-15 17:47:52 +0100295 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
Simon Wunderlichc54f38c92013-07-29 17:56:44 +0200306 batadv_skb_set_priority(skb, 0);
307
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000308 /* ethernet packet should be broadcasted */
309 if (do_bcast) {
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200310 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200311 if (!primary_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000312 goto dropped;
313
Antonio Quartullic384ea32011-06-26 03:37:18 +0200314 /* 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
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200321 if (batadv_skb_head_push(skb, sizeof(*bcast_packet)) < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000322 goto dropped;
323
Sven Eckelmann96412692012-06-05 22:31:30 +0200324 bcast_packet = (struct batadv_bcast_packet *)skb->data;
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100325 bcast_packet->version = BATADV_COMPAT_VERSION;
326 bcast_packet->ttl = BATADV_TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000327
328 /* batman packet type: broadcast */
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100329 bcast_packet->packet_type = BATADV_BCAST;
Sven Eckelmann162d5492012-06-28 11:56:52 +0200330 bcast_packet->reserved = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000331
332 /* hw address of first interface is the orig mac because only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200333 * this mac is known throughout the mesh
334 */
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100335 ether_addr_copy(bcast_packet->orig,
336 primary_if->net_dev->dev_addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000337
338 /* set broadcast sequence number */
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200339 seqno = atomic_inc_return(&bat_priv->bcast_seqno);
340 bcast_packet->seqno = htonl(seqno);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000341
Linus LĂĽssing3111bee2016-08-07 12:34:19 +0200342 batadv_add_bcast_packet_to_list(bat_priv, skb, brd_delay, true);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000343
344 /* a copy is stored in the bcast list, therefore removing
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200345 * the original skb.
346 */
Sven Eckelmannbd687fe2016-07-17 21:04:00 +0200347 consume_skb(skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000348
349 /* unicast packet */
350 } else {
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100351 /* DHCP packets going to a server will use the GW feature */
352 if (dhcp_rcp == BATADV_DHCP_TO_SERVER) {
Linus LĂĽssing9d2c9482013-08-06 20:21:15 +0200353 ret = batadv_gw_out_of_range(bat_priv, skb);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200354 if (ret)
355 goto dropped;
Linus LĂĽssinge300d312013-07-03 10:40:00 +0200356 ret = batadv_send_skb_via_gw(bat_priv, skb, vid);
Linus LĂĽssing1d8ab8d2014-02-15 17:47:52 +0100357 } else if (mcast_single_orig) {
358 ret = batadv_send_skb_unicast(bat_priv, skb,
359 BATADV_UNICAST, 0,
360 mcast_single_orig, vid);
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100361 } else {
362 if (batadv_dat_snoop_outgoing_arp_request(bat_priv,
363 skb))
364 goto dropped;
Linus LĂĽssinge300d312013-07-03 10:40:00 +0200365
Antonio Quartulli6c413b12013-11-05 19:31:08 +0100366 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 }
Sven Eckelmanneaac2c82016-07-17 21:04:01 +0200371 if (ret != NET_XMIT_SUCCESS)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000372 goto dropped_freed;
373 }
374
Marek Lindner1c9b0552012-06-23 11:47:53 +0200375 batadv_inc_counter(bat_priv, BATADV_CNT_TX);
376 batadv_add_counter(bat_priv, BATADV_CNT_TX_BYTES, data_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000377 goto end;
378
379dropped:
380 kfree_skb(skb);
381dropped_freed:
Marek Lindner1c9b0552012-06-23 11:47:53 +0200382 batadv_inc_counter(bat_priv, BATADV_CNT_TX_DROPPED);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000383end:
Sven Eckelmannf19dc772016-06-27 08:15:42 +0200384 if (mcast_single_orig)
385 batadv_orig_node_put(mcast_single_orig);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200386 if (primary_if)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100387 batadv_hardif_put(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000388 return NETDEV_TX_OK;
389}
390
Sven Eckelmannf298cb92016-02-28 11:38:50 +0100391/**
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
Sven Eckelmannf298cb92016-02-28 11:38:50 +0100395 * @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 */
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200408void batadv_interface_rx(struct net_device *soft_iface,
Sven Eckelmann6535db52016-02-28 11:38:51 +0100409 struct sk_buff *skb, int hdr_size,
410 struct batadv_orig_node *orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000411{
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100412 struct batadv_bcast_packet *batadv_bcast_packet;
Antonio Quartullic018ad32013-06-04 12:11:39 +0200413 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Antonio Quartullic018ad32013-06-04 12:11:39 +0200414 struct vlan_ethhdr *vhdr;
415 struct ethhdr *ethhdr;
416 unsigned short vid;
Simon Wunderlich2d3f6cc2012-07-04 20:38:19 +0200417 bool is_bcast;
418
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100419 batadv_bcast_packet = (struct batadv_bcast_packet *)skb->data;
420 is_bcast = (batadv_bcast_packet->packet_type == BATADV_BCAST);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000421
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000422 skb_pull_rcsum(skb, hdr_size);
423 skb_reset_mac_header(skb);
424
Antonio Quartulli55883fd2013-12-23 01:28:05 +0100425 /* clean the netfilter state now that the batman-adv header has been
426 * removed
427 */
428 nf_reset(skb);
429
Sven Eckelmannc7829662016-02-26 17:56:13 +0100430 if (unlikely(!pskb_may_pull(skb, ETH_HLEN)))
431 goto dropped;
432
Antonio Quartulli2b1e2cb2013-12-23 21:43:39 +0100433 vid = batadv_get_vid(skb, 0);
Antonio Quartulli7ed4be92013-04-08 15:08:18 +0200434 ethhdr = eth_hdr(skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000435
436 switch (ntohs(ethhdr->h_proto)) {
437 case ETH_P_8021Q:
Sven Eckelmannc7829662016-02-26 17:56:13 +0100438 if (!pskb_may_pull(skb, VLAN_ETH_HLEN))
439 goto dropped;
440
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000441 vhdr = (struct vlan_ethhdr *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000442
Marek Lindner9d1601ef2016-03-20 18:39:56 +0800443 /* drop batman-in-batman packets to prevent loops */
444 if (vhdr->h_vlan_encapsulated_proto != htons(ETH_P_BATMAN))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000445 break;
446
447 /* fall through */
Antonio Quartulliaf5d4f72012-11-26 00:38:50 +0100448 case ETH_P_BATMAN:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000449 goto dropped;
450 }
451
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000452 /* skb->dev & skb->pkt_type are set here */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000453 skb->protocol = eth_type_trans(skb, soft_iface);
454
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300455 /* should not be necessary anymore as we use skb_pull_rcsum()
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000456 * TODO: please verify this and remove this TODO
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200457 * -- Dec 21st 2009, Simon Wunderlich
458 */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000459
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200460 /* skb->ip_summed = CHECKSUM_UNNECESSARY; */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000461
Marek Lindner1c9b0552012-06-23 11:47:53 +0200462 batadv_inc_counter(bat_priv, BATADV_CNT_RX);
463 batadv_add_counter(bat_priv, BATADV_CNT_RX_BYTES,
464 skb->len + ETH_HLEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000465
Antonio Quartulli74490f92012-11-08 21:55:30 +0100466 /* Let the bridge loop avoidance check the packet. If will
467 * not handle it, we can safely push it up.
468 */
469 if (batadv_bla_rx(bat_priv, skb, vid, is_bcast))
470 goto out;
471
Antonio Quartulli37135172012-07-05 23:38:30 +0200472 if (orig_node)
473 batadv_tt_add_temporary_global_entry(bat_priv, orig_node,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200474 ethhdr->h_source, vid);
Antonio Quartulli37135172012-07-05 23:38:30 +0200475
Antonio Quartulli42cb0be2013-11-16 12:03:52 +0100476 if (is_multicast_ether_addr(ethhdr->h_dest)) {
477 /* set the mark on broadcast packets if AP isolation is ON and
478 * the packet is coming from an "isolated" client
479 */
480 if (batadv_vlan_ap_isola_get(bat_priv, vid) &&
481 batadv_tt_global_is_isolated(bat_priv, ethhdr->h_source,
482 vid)) {
483 /* save bits in skb->mark not covered by the mask and
484 * apply the mark on the rest
485 */
486 skb->mark &= ~bat_priv->isolation_mark_mask;
487 skb->mark |= bat_priv->isolation_mark;
488 }
489 } else if (batadv_is_ap_isolated(bat_priv, ethhdr->h_source,
490 ethhdr->h_dest, vid)) {
Antonio Quartulli59b699c2011-07-07 15:35:36 +0200491 goto dropped;
Antonio Quartulli42cb0be2013-11-16 12:03:52 +0100492 }
Antonio Quartulli59b699c2011-07-07 15:35:36 +0200493
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000494 netif_rx(skb);
Simon Wunderlichba85fac2011-04-17 20:34:27 +0200495 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000496
497dropped:
498 kfree_skb(skb);
499out:
500 return;
501}
502
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200503/**
Sven Eckelmann6be4d302016-01-16 10:29:42 +0100504 * batadv_softif_vlan_release - release vlan from lists and queue for free after
505 * rcu grace period
506 * @ref: kref pointer of the vlan object
507 */
508static void batadv_softif_vlan_release(struct kref *ref)
509{
510 struct batadv_softif_vlan *vlan;
511
512 vlan = container_of(ref, struct batadv_softif_vlan, refcount);
513
514 spin_lock_bh(&vlan->bat_priv->softif_vlan_list_lock);
515 hlist_del_rcu(&vlan->list);
516 spin_unlock_bh(&vlan->bat_priv->softif_vlan_list_lock);
517
518 kfree_rcu(vlan, rcu);
519}
520
521/**
Sven Eckelmann9c3bf082016-01-17 11:01:21 +0100522 * batadv_softif_vlan_put - decrease the vlan object refcounter and
Sven Eckelmann6be4d302016-01-16 10:29:42 +0100523 * possibly release it
Sven Eckelmanne51f0392015-09-06 21:38:51 +0200524 * @vlan: the vlan object to release
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200525 */
Sven Eckelmann9c3bf082016-01-17 11:01:21 +0100526void batadv_softif_vlan_put(struct batadv_softif_vlan *vlan)
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200527{
Marek Lindner354136b2015-06-09 21:24:36 +0800528 if (!vlan)
529 return;
530
Sven Eckelmann6be4d302016-01-16 10:29:42 +0100531 kref_put(&vlan->refcount, batadv_softif_vlan_release);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200532}
533
534/**
535 * batadv_softif_vlan_get - get the vlan object for a specific vid
536 * @bat_priv: the bat priv with all the soft interface information
537 * @vid: the identifier of the vlan object to retrieve
538 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200539 * Return: the private data of the vlan matching the vid passed as argument or
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200540 * NULL otherwise. The refcounter of the returned object is incremented by 1.
541 */
Antonio Quartulli90f44352013-07-02 11:04:35 +0200542struct batadv_softif_vlan *batadv_softif_vlan_get(struct batadv_priv *bat_priv,
543 unsigned short vid)
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200544{
545 struct batadv_softif_vlan *vlan_tmp, *vlan = NULL;
546
547 rcu_read_lock();
548 hlist_for_each_entry_rcu(vlan_tmp, &bat_priv->softif_vlan_list, list) {
549 if (vlan_tmp->vid != vid)
550 continue;
551
Sven Eckelmann6be4d302016-01-16 10:29:42 +0100552 if (!kref_get_unless_zero(&vlan_tmp->refcount))
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200553 continue;
554
555 vlan = vlan_tmp;
556 break;
557 }
558 rcu_read_unlock();
559
560 return vlan;
561}
562
563/**
Antonio Quartulli6d030de2016-03-11 16:36:19 +0100564 * batadv_softif_create_vlan - allocate the needed resources for a new vlan
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200565 * @bat_priv: the bat priv with all the soft interface information
566 * @vid: the VLAN identifier
567 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200568 * Return: 0 on success, a negative error otherwise.
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200569 */
570int batadv_softif_create_vlan(struct batadv_priv *bat_priv, unsigned short vid)
571{
572 struct batadv_softif_vlan *vlan;
Antonio Quartulli90f44352013-07-02 11:04:35 +0200573 int err;
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200574
575 vlan = batadv_softif_vlan_get(bat_priv, vid);
576 if (vlan) {
Sven Eckelmann9c3bf082016-01-17 11:01:21 +0100577 batadv_softif_vlan_put(vlan);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200578 return -EEXIST;
579 }
580
581 vlan = kzalloc(sizeof(*vlan), GFP_ATOMIC);
582 if (!vlan)
583 return -ENOMEM;
584
Antonio Quartulli35df3b22014-05-08 17:13:15 +0200585 vlan->bat_priv = bat_priv;
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200586 vlan->vid = vid;
Sven Eckelmann6be4d302016-01-16 10:29:42 +0100587 kref_init(&vlan->refcount);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200588
Antonio Quartullib8cbd812013-07-02 11:04:36 +0200589 atomic_set(&vlan->ap_isolation, 0);
590
Antonio Quartulli90f44352013-07-02 11:04:35 +0200591 err = batadv_sysfs_add_vlan(bat_priv->soft_iface, vlan);
592 if (err) {
593 kfree(vlan);
594 return err;
595 }
596
Antonio Quartulli35df3b22014-05-08 17:13:15 +0200597 spin_lock_bh(&bat_priv->softif_vlan_list_lock);
Sven Eckelmanndf28ca62016-07-15 17:39:29 +0200598 kref_get(&vlan->refcount);
Antonio Quartulli35df3b22014-05-08 17:13:15 +0200599 hlist_add_head_rcu(&vlan->list, &bat_priv->softif_vlan_list);
600 spin_unlock_bh(&bat_priv->softif_vlan_list_lock);
601
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200602 /* add a new TT local entry. This one will be marked with the NOPURGE
603 * flag
604 */
605 batadv_tt_local_add(bat_priv->soft_iface,
606 bat_priv->soft_iface->dev_addr, vid,
Antonio Quartulli9464d072013-11-16 12:03:48 +0100607 BATADV_NULL_IFINDEX, BATADV_NO_MARK);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200608
Sven Eckelmanndf28ca62016-07-15 17:39:29 +0200609 /* don't return reference to new softif_vlan */
610 batadv_softif_vlan_put(vlan);
611
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200612 return 0;
613}
614
615/**
616 * batadv_softif_destroy_vlan - remove and destroy a softif_vlan object
617 * @bat_priv: the bat priv with all the soft interface information
618 * @vlan: the object to remove
619 */
620static void batadv_softif_destroy_vlan(struct batadv_priv *bat_priv,
621 struct batadv_softif_vlan *vlan)
622{
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200623 /* explicitly remove the associated TT local entry because it is marked
624 * with the NOPURGE flag
625 */
626 batadv_tt_local_remove(bat_priv, bat_priv->soft_iface->dev_addr,
627 vlan->vid, "vlan interface destroyed", false);
628
Antonio Quartulli35df3b22014-05-08 17:13:15 +0200629 batadv_sysfs_del_vlan(bat_priv, vlan);
Sven Eckelmann9c3bf082016-01-17 11:01:21 +0100630 batadv_softif_vlan_put(vlan);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200631}
632
633/**
634 * batadv_interface_add_vid - ndo_add_vid API implementation
635 * @dev: the netdev of the mesh interface
Sven Eckelmann7afcbbe2015-10-31 12:29:29 +0100636 * @proto: protocol of the the vlan id
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200637 * @vid: identifier of the new vlan
638 *
639 * Set up all the internal structures for handling the new vlan on top of the
640 * mesh interface
641 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200642 * Return: 0 on success or a negative error code in case of failure.
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200643 */
644static int batadv_interface_add_vid(struct net_device *dev, __be16 proto,
645 unsigned short vid)
646{
647 struct batadv_priv *bat_priv = netdev_priv(dev);
Antonio Quartulli35df3b22014-05-08 17:13:15 +0200648 struct batadv_softif_vlan *vlan;
649 int ret;
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200650
651 /* only 802.1Q vlans are supported.
652 * batman-adv does not know how to handle other types
653 */
654 if (proto != htons(ETH_P_8021Q))
655 return -EINVAL;
656
657 vid |= BATADV_VLAN_HAS_TAG;
658
Antonio Quartulli35df3b22014-05-08 17:13:15 +0200659 /* if a new vlan is getting created and it already exists, it means that
660 * it was not deleted yet. batadv_softif_vlan_get() increases the
661 * refcount in order to revive the object.
662 *
663 * if it does not exist then create it.
664 */
665 vlan = batadv_softif_vlan_get(bat_priv, vid);
666 if (!vlan)
667 return batadv_softif_create_vlan(bat_priv, vid);
668
669 /* recreate the sysfs object if it was already destroyed (and it should
670 * be since we received a kill_vid() for this vlan
671 */
672 if (!vlan->kobj) {
673 ret = batadv_sysfs_add_vlan(bat_priv->soft_iface, vlan);
674 if (ret) {
Sven Eckelmann9c3bf082016-01-17 11:01:21 +0100675 batadv_softif_vlan_put(vlan);
Antonio Quartulli35df3b22014-05-08 17:13:15 +0200676 return ret;
677 }
678 }
679
680 /* add a new TT local entry. This one will be marked with the NOPURGE
681 * flag. This must be added again, even if the vlan object already
682 * exists, because the entry was deleted by kill_vid()
683 */
684 batadv_tt_local_add(bat_priv->soft_iface,
685 bat_priv->soft_iface->dev_addr, vid,
686 BATADV_NULL_IFINDEX, BATADV_NO_MARK);
687
688 return 0;
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200689}
690
691/**
692 * batadv_interface_kill_vid - ndo_kill_vid API implementation
693 * @dev: the netdev of the mesh interface
Sven Eckelmann7afcbbe2015-10-31 12:29:29 +0100694 * @proto: protocol of the the vlan id
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200695 * @vid: identifier of the deleted vlan
696 *
697 * Destroy all the internal structures used to handle the vlan identified by vid
698 * on top of the mesh interface
699 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200700 * Return: 0 on success, -EINVAL if the specified prototype is not ETH_P_8021Q
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200701 * or -ENOENT if the specified vlan id wasn't registered.
702 */
703static int batadv_interface_kill_vid(struct net_device *dev, __be16 proto,
704 unsigned short vid)
705{
706 struct batadv_priv *bat_priv = netdev_priv(dev);
707 struct batadv_softif_vlan *vlan;
708
709 /* only 802.1Q vlans are supported. batman-adv does not know how to
710 * handle other types
711 */
712 if (proto != htons(ETH_P_8021Q))
713 return -EINVAL;
714
715 vlan = batadv_softif_vlan_get(bat_priv, vid | BATADV_VLAN_HAS_TAG);
716 if (!vlan)
717 return -ENOENT;
718
719 batadv_softif_destroy_vlan(bat_priv, vlan);
720
721 /* finally free the vlan object */
Sven Eckelmann9c3bf082016-01-17 11:01:21 +0100722 batadv_softif_vlan_put(vlan);
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200723
724 return 0;
725}
726
Sven Eckelmann36c1d152012-08-20 09:03:59 +0200727/* batman-adv network devices have devices nesting below it and are a special
728 * "super class" of normal network devices; split their locks off into a
729 * separate class since they always nest.
730 */
731static struct lock_class_key batadv_netdev_xmit_lock_key;
732static struct lock_class_key batadv_netdev_addr_lock_key;
733
734/**
735 * batadv_set_lockdep_class_one - Set lockdep class for a single tx queue
736 * @dev: device which owns the tx queue
737 * @txq: tx queue to modify
738 * @_unused: always NULL
739 */
740static void batadv_set_lockdep_class_one(struct net_device *dev,
741 struct netdev_queue *txq,
742 void *_unused)
743{
744 lockdep_set_class(&txq->_xmit_lock, &batadv_netdev_xmit_lock_key);
745}
746
747/**
748 * batadv_set_lockdep_class - Set txq and addr_list lockdep class
749 * @dev: network device to modify
750 */
751static void batadv_set_lockdep_class(struct net_device *dev)
752{
753 lockdep_set_class(&dev->addr_list_lock, &batadv_netdev_addr_lock_key);
754 netdev_for_each_tx_queue(dev, batadv_set_lockdep_class_one, NULL);
755}
756
757/**
Sven Eckelmann37130292013-02-11 17:10:22 +0800758 * batadv_softif_init_late - late stage initialization of soft interface
759 * @dev: registered network device to modify
760 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200761 * Return: error code on failures
Sven Eckelmann37130292013-02-11 17:10:22 +0800762 */
763static int batadv_softif_init_late(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000764{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200765 struct batadv_priv *bat_priv;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200766 u32 random_seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000767 int ret;
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200768 size_t cnt_len = sizeof(u64) * BATADV_CNT_NUM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000769
Sven Eckelmann37130292013-02-11 17:10:22 +0800770 batadv_set_lockdep_class(dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000771
Sven Eckelmann37130292013-02-11 17:10:22 +0800772 bat_priv = netdev_priv(dev);
773 bat_priv->soft_iface = dev;
Marek Lindner1c9b0552012-06-23 11:47:53 +0200774
775 /* batadv_interface_stats() needs to be available as soon as
776 * register_netdevice() has been called
777 */
Sven Eckelmann6b5e9712015-05-26 18:34:26 +0200778 bat_priv->bat_counters = __alloc_percpu(cnt_len, __alignof__(u64));
Marek Lindner1c9b0552012-06-23 11:47:53 +0200779 if (!bat_priv->bat_counters)
Sven Eckelmann37130292013-02-11 17:10:22 +0800780 return -ENOMEM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000781
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000782 atomic_set(&bat_priv->aggregated_ogms, 1);
783 atomic_set(&bat_priv->bonding, 0);
Antonio Quartullifa706552012-11-26 01:27:29 +0100784#ifdef CONFIG_BATMAN_ADV_BLA
Sven Eckelmanndab7b622015-02-18 18:20:24 +0100785 atomic_set(&bat_priv->bridge_loop_avoidance, 1);
Antonio Quartullifa706552012-11-26 01:27:29 +0100786#endif
Antonio Quartulli33af49a2012-08-08 18:50:57 +0200787#ifdef CONFIG_BATMAN_ADV_DAT
788 atomic_set(&bat_priv->distributed_arp_table, 1);
789#endif
Linus LĂĽssing60432d72014-02-15 17:47:51 +0100790#ifdef CONFIG_BATMAN_ADV_MCAST
Linus LĂĽssing72f7b2d2016-05-10 18:41:26 +0200791 bat_priv->mcast.querier_ipv4.exists = false;
792 bat_priv->mcast.querier_ipv4.shadowing = false;
793 bat_priv->mcast.querier_ipv6.exists = false;
794 bat_priv->mcast.querier_ipv6.shadowing = false;
Linus LĂĽssing60432d72014-02-15 17:47:51 +0100795 bat_priv->mcast.flags = BATADV_NO_FLAGS;
Linus LĂĽssing1d8ab8d2014-02-15 17:47:52 +0100796 atomic_set(&bat_priv->multicast_mode, 1);
Linus LĂĽssing60432d72014-02-15 17:47:51 +0100797 atomic_set(&bat_priv->mcast.num_disabled, 0);
Linus LĂĽssingab498862014-02-15 17:47:53 +0100798 atomic_set(&bat_priv->mcast.num_want_all_unsnoopables, 0);
Linus LĂĽssing4c8755d2014-02-15 17:47:54 +0100799 atomic_set(&bat_priv->mcast.num_want_all_ipv4, 0);
800 atomic_set(&bat_priv->mcast.num_want_all_ipv6, 0);
Linus LĂĽssing60432d72014-02-15 17:47:51 +0100801#endif
Antonio Quartulli3a24a632016-05-06 02:46:38 +0800802 atomic_set(&bat_priv->gw.mode, BATADV_GW_MODE_OFF);
Marek Lindner414254e2013-04-23 21:39:58 +0800803 atomic_set(&bat_priv->gw.bandwidth_down, 100);
804 atomic_set(&bat_priv->gw.bandwidth_up, 20);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000805 atomic_set(&bat_priv->orig_interval, 1000);
Simon Wunderliche03366e2014-06-17 12:16:03 +0200806 atomic_set(&bat_priv->hop_penalty, 30);
Marek Lindner0c430d02012-12-16 13:53:15 +0800807#ifdef CONFIG_BATMAN_ADV_DEBUG
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000808 atomic_set(&bat_priv->log_level, 0);
Marek Lindner0c430d02012-12-16 13:53:15 +0800809#endif
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000810 atomic_set(&bat_priv->fragmentation, 1);
Marek Lindnera19d3d82013-05-27 15:33:25 +0800811 atomic_set(&bat_priv->packet_size_max, ETH_DATA_LEN);
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200812 atomic_set(&bat_priv->bcast_queue_left, BATADV_BCAST_QUEUE_LEN);
813 atomic_set(&bat_priv->batman_queue_left, BATADV_BATMAN_QUEUE_LEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000814
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200815 atomic_set(&bat_priv->mesh_state, BATADV_MESH_INACTIVE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000816 atomic_set(&bat_priv->bcast_seqno, 1);
Sven Eckelmann807736f2012-07-15 22:26:51 +0200817 atomic_set(&bat_priv->tt.vn, 0);
818 atomic_set(&bat_priv->tt.local_changes, 0);
819 atomic_set(&bat_priv->tt.ogm_append_cnt, 0);
820#ifdef CONFIG_BATMAN_ADV_BLA
821 atomic_set(&bat_priv->bla.num_requests, 0);
822#endif
Antonio Quartulli33a3bb42016-05-05 13:09:43 +0200823 atomic_set(&bat_priv->tp_num, 0);
824
Sven Eckelmann807736f2012-07-15 22:26:51 +0200825 bat_priv->tt.last_changeset = NULL;
826 bat_priv->tt.last_changeset_len = 0;
Antonio Quartullic42edfe2013-11-16 12:03:47 +0100827 bat_priv->isolation_mark = 0;
828 bat_priv->isolation_mark_mask = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000829
Martin Hundebøllee75ed82013-05-23 16:53:03 +0200830 /* randomize initial seqno to avoid collision */
831 get_random_bytes(&random_seqno, sizeof(random_seqno));
832 atomic_set(&bat_priv->frag_seqno, random_seqno);
833
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000834 bat_priv->primary_if = NULL;
835 bat_priv->num_ifaces = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000836
Martin Hundebølld353d8d2013-01-25 11:12:38 +0100837 batadv_nc_init_bat_priv(bat_priv);
838
Sven Eckelmann37130292013-02-11 17:10:22 +0800839 ret = batadv_algo_select(bat_priv, batadv_routing_algo);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000840 if (ret < 0)
Sven Eckelmann37130292013-02-11 17:10:22 +0800841 goto free_bat_counters;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000842
Sven Eckelmann37130292013-02-11 17:10:22 +0800843 ret = batadv_debugfs_add_meshif(dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000844 if (ret < 0)
Sven Eckelmann37130292013-02-11 17:10:22 +0800845 goto free_bat_counters;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000846
Sven Eckelmann37130292013-02-11 17:10:22 +0800847 ret = batadv_mesh_init(dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000848 if (ret < 0)
849 goto unreg_debugfs;
850
Sven Eckelmann37130292013-02-11 17:10:22 +0800851 return 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000852
853unreg_debugfs:
Sven Eckelmann37130292013-02-11 17:10:22 +0800854 batadv_debugfs_del_meshif(dev);
Marek Lindner1c9b0552012-06-23 11:47:53 +0200855free_bat_counters:
856 free_percpu(bat_priv->bat_counters);
Martin Hundebøllf69ae772013-04-17 21:13:16 +0200857 bat_priv->bat_counters = NULL;
Sven Eckelmann37130292013-02-11 17:10:22 +0800858
859 return ret;
860}
861
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800862/**
863 * batadv_softif_slave_add - Add a slave interface to a batadv_soft_interface
864 * @dev: batadv_soft_interface used as master interface
865 * @slave_dev: net_device which should become the slave interface
866 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200867 * Return: 0 if successful or error otherwise.
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800868 */
869static int batadv_softif_slave_add(struct net_device *dev,
870 struct net_device *slave_dev)
871{
872 struct batadv_hard_iface *hard_iface;
Andrew Lunn2cd45a02016-04-21 12:57:27 +0200873 struct net *net = dev_net(dev);
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800874 int ret = -EINVAL;
875
876 hard_iface = batadv_hardif_get_by_netdev(slave_dev);
Marek Lindner00f548b2015-02-18 22:17:30 +0800877 if (!hard_iface || hard_iface->soft_iface)
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800878 goto out;
879
Andrew Lunn2cd45a02016-04-21 12:57:27 +0200880 ret = batadv_hardif_enable_interface(hard_iface, net, dev->name);
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800881
882out:
883 if (hard_iface)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100884 batadv_hardif_put(hard_iface);
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800885 return ret;
886}
887
888/**
889 * batadv_softif_slave_del - Delete a slave iface from a batadv_soft_interface
890 * @dev: batadv_soft_interface used as master interface
891 * @slave_dev: net_device which should be removed from the master interface
892 *
Sven Eckelmann62fe7102015-09-15 19:00:48 +0200893 * Return: 0 if successful or error otherwise.
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800894 */
895static int batadv_softif_slave_del(struct net_device *dev,
896 struct net_device *slave_dev)
897{
898 struct batadv_hard_iface *hard_iface;
899 int ret = -EINVAL;
900
901 hard_iface = batadv_hardif_get_by_netdev(slave_dev);
902
903 if (!hard_iface || hard_iface->soft_iface != dev)
904 goto out;
905
906 batadv_hardif_disable_interface(hard_iface, BATADV_IF_CLEANUP_KEEP);
907 ret = 0;
908
909out:
910 if (hard_iface)
Sven Eckelmann82047ad2016-01-17 11:01:10 +0100911 batadv_hardif_put(hard_iface);
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800912 return ret;
913}
914
Sven Eckelmann37130292013-02-11 17:10:22 +0800915static const struct net_device_ops batadv_netdev_ops = {
916 .ndo_init = batadv_softif_init_late,
917 .ndo_open = batadv_interface_open,
918 .ndo_stop = batadv_interface_release,
919 .ndo_get_stats = batadv_interface_stats,
Antonio Quartulli5d2c05b2013-07-02 11:04:34 +0200920 .ndo_vlan_rx_add_vid = batadv_interface_add_vid,
921 .ndo_vlan_rx_kill_vid = batadv_interface_kill_vid,
Sven Eckelmann37130292013-02-11 17:10:22 +0800922 .ndo_set_mac_address = batadv_interface_set_mac_addr,
923 .ndo_change_mtu = batadv_interface_change_mtu,
Linus LĂĽssinga4deee1a2013-05-26 17:56:07 +0200924 .ndo_set_rx_mode = batadv_interface_set_rx_mode,
Sven Eckelmann37130292013-02-11 17:10:22 +0800925 .ndo_start_xmit = batadv_interface_tx,
Sven Eckelmann3dbd5502013-02-11 17:10:27 +0800926 .ndo_validate_addr = eth_validate_addr,
927 .ndo_add_slave = batadv_softif_slave_add,
928 .ndo_del_slave = batadv_softif_slave_del,
Sven Eckelmann37130292013-02-11 17:10:22 +0800929};
930
Sven Eckelmann5405e192017-04-01 14:47:06 +0200931static void batadv_get_drvinfo(struct net_device *dev,
932 struct ethtool_drvinfo *info)
933{
934 strlcpy(info->driver, "B.A.T.M.A.N. advanced", sizeof(info->driver));
935 strlcpy(info->version, BATADV_SOURCE_VERSION, sizeof(info->version));
936 strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
937 strlcpy(info->bus_info, "batman", sizeof(info->bus_info));
938}
939
940/* Inspired by drivers/net/ethernet/dlink/sundance.c:1702
941 * Declare each description string in struct.name[] to get fixed sized buffer
942 * and compile time checking for strings longer than ETH_GSTRING_LEN.
943 */
944static const struct {
945 const char name[ETH_GSTRING_LEN];
946} batadv_counters_strings[] = {
947 { "tx" },
948 { "tx_bytes" },
949 { "tx_dropped" },
950 { "rx" },
951 { "rx_bytes" },
952 { "forward" },
953 { "forward_bytes" },
954 { "mgmt_tx" },
955 { "mgmt_tx_bytes" },
956 { "mgmt_rx" },
957 { "mgmt_rx_bytes" },
958 { "frag_tx" },
959 { "frag_tx_bytes" },
960 { "frag_rx" },
961 { "frag_rx_bytes" },
962 { "frag_fwd" },
963 { "frag_fwd_bytes" },
964 { "tt_request_tx" },
965 { "tt_request_rx" },
966 { "tt_response_tx" },
967 { "tt_response_rx" },
968 { "tt_roam_adv_tx" },
969 { "tt_roam_adv_rx" },
970#ifdef CONFIG_BATMAN_ADV_DAT
971 { "dat_get_tx" },
972 { "dat_get_rx" },
973 { "dat_put_tx" },
974 { "dat_put_rx" },
975 { "dat_cached_reply_tx" },
976#endif
977#ifdef CONFIG_BATMAN_ADV_NC
978 { "nc_code" },
979 { "nc_code_bytes" },
980 { "nc_recode" },
981 { "nc_recode_bytes" },
982 { "nc_buffer" },
983 { "nc_decode" },
984 { "nc_decode_bytes" },
985 { "nc_decode_failed" },
986 { "nc_sniffed" },
987#endif
988};
989
990static void batadv_get_strings(struct net_device *dev, u32 stringset, u8 *data)
991{
992 if (stringset == ETH_SS_STATS)
993 memcpy(data, batadv_counters_strings,
994 sizeof(batadv_counters_strings));
995}
996
997static void batadv_get_ethtool_stats(struct net_device *dev,
998 struct ethtool_stats *stats, u64 *data)
999{
1000 struct batadv_priv *bat_priv = netdev_priv(dev);
1001 int i;
1002
1003 for (i = 0; i < BATADV_CNT_NUM; i++)
1004 data[i] = batadv_sum_counter(bat_priv, i);
1005}
1006
1007static int batadv_get_sset_count(struct net_device *dev, int stringset)
1008{
1009 if (stringset == ETH_SS_STATS)
1010 return BATADV_CNT_NUM;
1011
1012 return -EOPNOTSUPP;
1013}
1014
1015static const struct ethtool_ops batadv_ethtool_ops = {
1016 .get_drvinfo = batadv_get_drvinfo,
1017 .get_link = ethtool_op_get_link,
1018 .get_strings = batadv_get_strings,
1019 .get_ethtool_stats = batadv_get_ethtool_stats,
1020 .get_sset_count = batadv_get_sset_count,
1021};
1022
Sven Eckelmann37130292013-02-11 17:10:22 +08001023/**
Sven Eckelmannb3246022013-02-11 17:10:23 +08001024 * batadv_softif_free - Deconstructor of batadv_soft_interface
1025 * @dev: Device to cleanup and remove
1026 */
1027static void batadv_softif_free(struct net_device *dev)
1028{
1029 batadv_debugfs_del_meshif(dev);
1030 batadv_mesh_free(dev);
Antonio Quartulli0c501342013-04-19 11:04:52 +02001031
1032 /* some scheduled RCU callbacks need the bat_priv struct to accomplish
1033 * their tasks. Wait for them all to be finished before freeing the
1034 * netdev and its private data (bat_priv)
1035 */
1036 rcu_barrier();
Sven Eckelmannb3246022013-02-11 17:10:23 +08001037}
1038
1039/**
Sven Eckelmann37130292013-02-11 17:10:22 +08001040 * batadv_softif_init_early - early stage initialization of soft interface
1041 * @dev: registered network device to modify
1042 */
1043static void batadv_softif_init_early(struct net_device *dev)
1044{
Sven Eckelmann37130292013-02-11 17:10:22 +08001045 ether_setup(dev);
1046
1047 dev->netdev_ops = &batadv_netdev_ops;
David S. Millercf124db2017-05-08 12:52:56 -04001048 dev->needs_free_netdev = true;
1049 dev->priv_destructor = batadv_softif_free;
Andrew Lunn0d21cda2016-03-01 22:19:05 +01001050 dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_NETNS_LOCAL;
Phil Suttercdf73702015-08-18 10:30:44 +02001051 dev->priv_flags |= IFF_NO_QUEUE;
Sven Eckelmann37130292013-02-11 17:10:22 +08001052
1053 /* can't call min_mtu, because the needed variables
1054 * have not been initialized yet
1055 */
1056 dev->mtu = ETH_DATA_LEN;
Sven Eckelmann37130292013-02-11 17:10:22 +08001057
1058 /* generate random address */
1059 eth_hw_addr_random(dev);
1060
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00001061 dev->ethtool_ops = &batadv_ethtool_ops;
Sven Eckelmann37130292013-02-11 17:10:22 +08001062}
1063
Andrew Lunn2cd45a02016-04-21 12:57:27 +02001064struct net_device *batadv_softif_create(struct net *net, const char *name)
Sven Eckelmann37130292013-02-11 17:10:22 +08001065{
1066 struct net_device *soft_iface;
1067 int ret;
1068
1069 soft_iface = alloc_netdev(sizeof(struct batadv_priv), name,
Tom Gundersenc835a672014-07-14 16:37:24 +02001070 NET_NAME_UNKNOWN, batadv_softif_init_early);
Sven Eckelmann37130292013-02-11 17:10:22 +08001071 if (!soft_iface)
1072 return NULL;
1073
Andrew Lunn2cd45a02016-04-21 12:57:27 +02001074 dev_net_set(soft_iface, net);
1075
Sven Eckelmanna4ac28c2013-02-11 17:10:26 +08001076 soft_iface->rtnl_link_ops = &batadv_link_ops;
1077
Sven Eckelmann37130292013-02-11 17:10:22 +08001078 ret = register_netdevice(soft_iface);
1079 if (ret < 0) {
1080 pr_err("Unable to register the batman interface '%s': %i\n",
1081 name, ret);
1082 free_netdev(soft_iface);
1083 return NULL;
1084 }
1085
1086 return soft_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001087}
1088
Marek Lindnere07932a2013-02-11 17:10:25 +08001089/**
1090 * batadv_softif_destroy_sysfs - deletion of batadv_soft_interface via sysfs
1091 * @soft_iface: the to-be-removed batman-adv interface
1092 */
1093void batadv_softif_destroy_sysfs(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001094{
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +01001095 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmann569c9852016-06-13 07:41:31 +02001096 struct batadv_softif_vlan *vlan;
Simon Wunderlich5bc44dc2013-01-11 10:19:51 +01001097
Sven Eckelmann569c9852016-06-13 07:41:31 +02001098 ASSERT_RTNL();
1099
1100 /* destroy the "untagged" VLAN */
1101 vlan = batadv_softif_vlan_get(bat_priv, BATADV_NO_FLAGS);
1102 if (vlan) {
1103 batadv_softif_destroy_vlan(bat_priv, vlan);
1104 batadv_softif_vlan_put(vlan);
1105 }
1106
1107 batadv_sysfs_del_meshif(soft_iface);
1108 unregister_netdevice(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001109}
1110
Sven Eckelmanna4ac28c2013-02-11 17:10:26 +08001111/**
1112 * batadv_softif_destroy_netlink - deletion of batadv_soft_interface via netlink
1113 * @soft_iface: the to-be-removed batman-adv interface
1114 * @head: list pointer
1115 */
1116static void batadv_softif_destroy_netlink(struct net_device *soft_iface,
1117 struct list_head *head)
1118{
Sven Eckelmann420cb1b2016-06-26 11:16:13 +02001119 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmanna4ac28c2013-02-11 17:10:26 +08001120 struct batadv_hard_iface *hard_iface;
Sven Eckelmann420cb1b2016-06-26 11:16:13 +02001121 struct batadv_softif_vlan *vlan;
Sven Eckelmanna4ac28c2013-02-11 17:10:26 +08001122
1123 list_for_each_entry(hard_iface, &batadv_hardif_list, list) {
1124 if (hard_iface->soft_iface == soft_iface)
1125 batadv_hardif_disable_interface(hard_iface,
1126 BATADV_IF_CLEANUP_KEEP);
1127 }
1128
Sven Eckelmann420cb1b2016-06-26 11:16:13 +02001129 /* destroy the "untagged" VLAN */
1130 vlan = batadv_softif_vlan_get(bat_priv, BATADV_NO_FLAGS);
1131 if (vlan) {
1132 batadv_softif_destroy_vlan(bat_priv, vlan);
1133 batadv_softif_vlan_put(vlan);
1134 }
1135
Sven Eckelmanna4ac28c2013-02-11 17:10:26 +08001136 batadv_sysfs_del_meshif(soft_iface);
1137 unregister_netdevice_queue(soft_iface, head);
1138}
1139
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001140bool batadv_softif_is_valid(const struct net_device *net_dev)
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +00001141{
Sven Eckelmann0294ca02012-05-16 20:23:15 +02001142 if (net_dev->netdev_ops->ndo_start_xmit == batadv_interface_tx)
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001143 return true;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +00001144
Sven Eckelmann4b426b12016-02-22 21:02:39 +01001145 return false;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +00001146}
1147
Sven Eckelmanna4ac28c2013-02-11 17:10:26 +08001148struct rtnl_link_ops batadv_link_ops __read_mostly = {
1149 .kind = "batadv",
1150 .priv_size = sizeof(struct batadv_priv),
1151 .setup = batadv_softif_init_early,
1152 .dellink = batadv_softif_destroy_netlink,
1153};