blob: 2f123a1b174b1e7dc7cf584f36131efd794be4b3 [file] [log] [blame]
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001/* Copyright (C) 2007-2012 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
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000018 */
19
20#include "main.h"
21#include "soft-interface.h"
22#include "hard-interface.h"
23#include "routing.h"
24#include "send.h"
Sven Eckelmannb706b132012-06-10 23:58:51 +020025#include "debugfs.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000026#include "translation-table.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000027#include "hash.h"
28#include "gateway_common.h"
29#include "gateway_client.h"
Sven Eckelmannb706b132012-06-10 23:58:51 +020030#include "sysfs.h"
Antonio Quartulli43676ab52011-04-26 21:31:45 +020031#include "originator.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000032#include <linux/slab.h>
33#include <linux/ethtool.h>
34#include <linux/etherdevice.h>
35#include <linux/if_vlan.h>
36#include "unicast.h"
Simon Wunderlich23721382012-01-22 20:00:19 +010037#include "bridge_loop_avoidance.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000038
39
Sven Eckelmann0294ca02012-05-16 20:23:15 +020040static int batadv_get_settings(struct net_device *dev, struct ethtool_cmd *cmd);
41static void batadv_get_drvinfo(struct net_device *dev,
42 struct ethtool_drvinfo *info);
43static u32 batadv_get_msglevel(struct net_device *dev);
44static void batadv_set_msglevel(struct net_device *dev, u32 value);
45static u32 batadv_get_link(struct net_device *dev);
Martin Hundebøllf8214862012-04-20 17:02:45 +020046static void batadv_get_strings(struct net_device *dev, u32 stringset, u8 *data);
47static void batadv_get_ethtool_stats(struct net_device *dev,
48 struct ethtool_stats *stats, u64 *data);
49static int batadv_get_sset_count(struct net_device *dev, int stringset);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000050
Sven Eckelmann0294ca02012-05-16 20:23:15 +020051static const struct ethtool_ops batadv_ethtool_ops = {
52 .get_settings = batadv_get_settings,
53 .get_drvinfo = batadv_get_drvinfo,
54 .get_msglevel = batadv_get_msglevel,
55 .set_msglevel = batadv_set_msglevel,
56 .get_link = batadv_get_link,
Martin Hundebøllf8214862012-04-20 17:02:45 +020057 .get_strings = batadv_get_strings,
58 .get_ethtool_stats = batadv_get_ethtool_stats,
59 .get_sset_count = batadv_get_sset_count,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000060};
61
Sven Eckelmann04b482a2012-05-12 02:09:38 +020062int batadv_skb_head_push(struct sk_buff *skb, unsigned int len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000063{
64 int result;
65
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020066 /* TODO: We must check if we can release all references to non-payload
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000067 * data using skb_header_release in our skbs to allow skb_cow_header to
68 * work optimally. This means that those skbs are not allowed to read
69 * or write any data which is before the current position of skb->data
70 * after that call and thus allow other skbs with the same data buffer
71 * to write freely in that area.
72 */
73 result = skb_cow_head(skb, len);
74 if (result < 0)
75 return result;
76
77 skb_push(skb, len);
78 return 0;
79}
80
Sven Eckelmann0294ca02012-05-16 20:23:15 +020081static int batadv_interface_open(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000082{
83 netif_start_queue(dev);
84 return 0;
85}
86
Sven Eckelmann0294ca02012-05-16 20:23:15 +020087static int batadv_interface_release(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000088{
89 netif_stop_queue(dev);
90 return 0;
91}
92
Sven Eckelmann0294ca02012-05-16 20:23:15 +020093static struct net_device_stats *batadv_interface_stats(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000094{
Sven Eckelmann56303d32012-06-05 22:31:31 +020095 struct batadv_priv *bat_priv = netdev_priv(dev);
Marek Lindner1c9b0552012-06-23 11:47:53 +020096 struct net_device_stats *stats = &bat_priv->stats;
97
98 stats->tx_packets = batadv_sum_counter(bat_priv, BATADV_CNT_TX);
99 stats->tx_bytes = batadv_sum_counter(bat_priv, BATADV_CNT_TX_BYTES);
100 stats->tx_dropped = batadv_sum_counter(bat_priv, BATADV_CNT_TX_DROPPED);
101 stats->rx_packets = batadv_sum_counter(bat_priv, BATADV_CNT_RX);
102 stats->rx_bytes = batadv_sum_counter(bat_priv, BATADV_CNT_RX_BYTES);
103 return stats;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000104}
105
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200106static int batadv_interface_set_mac_addr(struct net_device *dev, void *p)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000107{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200108 struct batadv_priv *bat_priv = netdev_priv(dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000109 struct sockaddr *addr = p;
Def40a3eb32012-09-20 14:56:13 +0200110 uint8_t old_addr[ETH_ALEN];
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000111
112 if (!is_valid_ether_addr(addr->sa_data))
113 return -EADDRNOTAVAIL;
114
Def40a3eb32012-09-20 14:56:13 +0200115 memcpy(old_addr, dev->dev_addr, ETH_ALEN);
116 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
117
Antonio Quartulli015758d2011-07-09 17:52:13 +0200118 /* only modify transtable if it has been initialized before */
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200119 if (atomic_read(&bat_priv->mesh_state) == BATADV_MESH_ACTIVE) {
Def40a3eb32012-09-20 14:56:13 +0200120 batadv_tt_local_remove(bat_priv, old_addr,
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200121 "mac address changed", false);
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200122 batadv_tt_local_add(dev, addr->sa_data, BATADV_NULL_IFINDEX);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000123 }
124
Danny Kukawka28009a62012-02-17 05:43:27 +0000125 dev->addr_assign_type &= ~NET_ADDR_RANDOM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000126 return 0;
127}
128
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200129static int batadv_interface_change_mtu(struct net_device *dev, int new_mtu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000130{
131 /* check ranges */
Sven Eckelmann95638772012-05-12 02:09:31 +0200132 if ((new_mtu < 68) || (new_mtu > batadv_hardif_min_mtu(dev)))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000133 return -EINVAL;
134
135 dev->mtu = new_mtu;
136
137 return 0;
138}
139
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200140static int batadv_interface_tx(struct sk_buff *skb,
141 struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000142{
143 struct ethhdr *ethhdr = (struct ethhdr *)skb->data;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200144 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
145 struct batadv_hard_iface *primary_if = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +0200146 struct batadv_bcast_packet *bcast_packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000147 struct vlan_ethhdr *vhdr;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200148 __be16 ethertype = __constant_htons(BATADV_ETH_P_BATMAN);
Simon Wunderlich4934ab92012-08-19 20:10:09 +0200149 static const uint8_t stp_addr[ETH_ALEN] = {0x01, 0x80, 0xC2, 0x00,
150 0x00, 0x00};
151 static const uint8_t ectp_addr[ETH_ALEN] = {0xCF, 0x00, 0x00, 0x00,
152 0x00, 0x00};
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200153 unsigned int header_len = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000154 int data_len = skb->len, ret;
Simon Wunderlich7a5cc242012-01-22 20:00:27 +0100155 short vid __maybe_unused = -1;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200156 bool do_bcast = false;
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200157 uint32_t seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000158
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200159 if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000160 goto dropped;
161
162 soft_iface->trans_start = jiffies;
163
164 switch (ntohs(ethhdr->h_proto)) {
165 case ETH_P_8021Q:
166 vhdr = (struct vlan_ethhdr *)skb->data;
167 vid = ntohs(vhdr->h_vlan_TCI) & VLAN_VID_MASK;
168
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200169 if (vhdr->h_vlan_encapsulated_proto != ethertype)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000170 break;
171
172 /* fall through */
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200173 case BATADV_ETH_P_BATMAN:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000174 goto dropped;
Simon Wunderlicha7f6ee92012-01-22 20:00:18 +0100175 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000176
Sven Eckelmann08adf152012-05-12 13:38:47 +0200177 if (batadv_bla_tx(bat_priv, skb, vid))
Simon Wunderlich23721382012-01-22 20:00:19 +0100178 goto dropped;
179
Antonio Quartullia73105b2011-04-27 14:27:44 +0200180 /* Register the client MAC in the transtable */
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200181 batadv_tt_local_add(soft_iface, ethhdr->h_source, skb->skb_iif);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000182
Simon Wunderlichb1a8c042012-01-22 20:00:25 +0100183 /* don't accept stp packets. STP does not help in meshes.
184 * better use the bridge loop avoidance ...
Simon Wunderlich4934ab92012-08-19 20:10:09 +0200185 *
186 * The same goes for ECTP sent at least by some Cisco Switches,
187 * it might confuse the mesh when used with bridge loop avoidance.
Simon Wunderlichb1a8c042012-01-22 20:00:25 +0100188 */
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200189 if (batadv_compare_eth(ethhdr->h_dest, stp_addr))
Simon Wunderlichb1a8c042012-01-22 20:00:25 +0100190 goto dropped;
191
Simon Wunderlich4934ab92012-08-19 20:10:09 +0200192 if (batadv_compare_eth(ethhdr->h_dest, ectp_addr))
193 goto dropped;
194
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200195 if (is_multicast_ether_addr(ethhdr->h_dest)) {
196 do_bcast = true;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000197
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200198 switch (atomic_read(&bat_priv->gw_mode)) {
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200199 case BATADV_GW_MODE_SERVER:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200200 /* gateway servers should not send dhcp
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200201 * requests into the mesh
202 */
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200203 ret = batadv_gw_is_dhcp_target(skb, &header_len);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200204 if (ret)
205 goto dropped;
206 break;
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200207 case BATADV_GW_MODE_CLIENT:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200208 /* gateway clients should send dhcp requests
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200209 * via unicast to their gateway
210 */
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200211 ret = batadv_gw_is_dhcp_target(skb, &header_len);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200212 if (ret)
213 do_bcast = false;
214 break;
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200215 case BATADV_GW_MODE_OFF:
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200216 default:
217 break;
218 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000219 }
220
221 /* ethernet packet should be broadcasted */
222 if (do_bcast) {
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200223 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200224 if (!primary_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000225 goto dropped;
226
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200227 if (batadv_skb_head_push(skb, sizeof(*bcast_packet)) < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000228 goto dropped;
229
Sven Eckelmann96412692012-06-05 22:31:30 +0200230 bcast_packet = (struct batadv_bcast_packet *)skb->data;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200231 bcast_packet->header.version = BATADV_COMPAT_VERSION;
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200232 bcast_packet->header.ttl = BATADV_TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000233
234 /* batman packet type: broadcast */
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200235 bcast_packet->header.packet_type = BATADV_BCAST;
Sven Eckelmann162d5492012-06-28 11:56:52 +0200236 bcast_packet->reserved = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000237
238 /* hw address of first interface is the orig mac because only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200239 * this mac is known throughout the mesh
240 */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000241 memcpy(bcast_packet->orig,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200242 primary_if->net_dev->dev_addr, ETH_ALEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000243
244 /* set broadcast sequence number */
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200245 seqno = atomic_inc_return(&bat_priv->bcast_seqno);
246 bcast_packet->seqno = htonl(seqno);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000247
Sven Eckelmann9455e342012-05-12 02:09:37 +0200248 batadv_add_bcast_packet_to_list(bat_priv, skb, 1);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000249
250 /* a copy is stored in the bcast list, therefore removing
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200251 * the original skb.
252 */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000253 kfree_skb(skb);
254
255 /* unicast packet */
256 } else {
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200257 if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_OFF) {
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200258 ret = batadv_gw_out_of_range(bat_priv, skb, ethhdr);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200259 if (ret)
260 goto dropped;
261 }
262
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200263 ret = batadv_unicast_send_skb(bat_priv, skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000264 if (ret != 0)
265 goto dropped_freed;
266 }
267
Marek Lindner1c9b0552012-06-23 11:47:53 +0200268 batadv_inc_counter(bat_priv, BATADV_CNT_TX);
269 batadv_add_counter(bat_priv, BATADV_CNT_TX_BYTES, data_len);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000270 goto end;
271
272dropped:
273 kfree_skb(skb);
274dropped_freed:
Marek Lindner1c9b0552012-06-23 11:47:53 +0200275 batadv_inc_counter(bat_priv, BATADV_CNT_TX_DROPPED);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000276end:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200277 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200278 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000279 return NETDEV_TX_OK;
280}
281
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200282void batadv_interface_rx(struct net_device *soft_iface,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200283 struct sk_buff *skb, struct batadv_hard_iface *recv_if,
Antonio Quartulli37135172012-07-05 23:38:30 +0200284 int hdr_size, struct batadv_orig_node *orig_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000285{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200286 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000287 struct ethhdr *ethhdr;
288 struct vlan_ethhdr *vhdr;
David S. Miller04c9f412012-07-10 23:56:33 -0700289 struct batadv_header *batadv_header = (struct batadv_header *)skb->data;
Simon Wunderlich7a5cc242012-01-22 20:00:27 +0100290 short vid __maybe_unused = -1;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200291 __be16 ethertype = __constant_htons(BATADV_ETH_P_BATMAN);
Simon Wunderlich2d3f6cc2012-07-04 20:38:19 +0200292 bool is_bcast;
293
David S. Miller04c9f412012-07-10 23:56:33 -0700294 is_bcast = (batadv_header->packet_type == BATADV_BCAST);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000295
296 /* check if enough space is available for pulling, and pull */
297 if (!pskb_may_pull(skb, hdr_size))
298 goto dropped;
299
300 skb_pull_rcsum(skb, hdr_size);
301 skb_reset_mac_header(skb);
302
303 ethhdr = (struct ethhdr *)skb_mac_header(skb);
304
305 switch (ntohs(ethhdr->h_proto)) {
306 case ETH_P_8021Q:
307 vhdr = (struct vlan_ethhdr *)skb->data;
308 vid = ntohs(vhdr->h_vlan_TCI) & VLAN_VID_MASK;
309
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200310 if (vhdr->h_vlan_encapsulated_proto != ethertype)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000311 break;
312
313 /* fall through */
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200314 case BATADV_ETH_P_BATMAN:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000315 goto dropped;
316 }
317
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000318 /* skb->dev & skb->pkt_type are set here */
319 if (unlikely(!pskb_may_pull(skb, ETH_HLEN)))
320 goto dropped;
321 skb->protocol = eth_type_trans(skb, soft_iface);
322
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300323 /* should not be necessary anymore as we use skb_pull_rcsum()
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000324 * TODO: please verify this and remove this TODO
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200325 * -- Dec 21st 2009, Simon Wunderlich
326 */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000327
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200328 /* skb->ip_summed = CHECKSUM_UNNECESSARY; */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000329
Marek Lindner1c9b0552012-06-23 11:47:53 +0200330 batadv_inc_counter(bat_priv, BATADV_CNT_RX);
331 batadv_add_counter(bat_priv, BATADV_CNT_RX_BYTES,
332 skb->len + ETH_HLEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000333
334 soft_iface->last_rx = jiffies;
335
Antonio Quartulli37135172012-07-05 23:38:30 +0200336 if (orig_node)
337 batadv_tt_add_temporary_global_entry(bat_priv, orig_node,
338 ethhdr->h_source);
339
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200340 if (batadv_is_ap_isolated(bat_priv, ethhdr->h_source, ethhdr->h_dest))
Antonio Quartulli59b699c2011-07-07 15:35:36 +0200341 goto dropped;
342
Simon Wunderlich23721382012-01-22 20:00:19 +0100343 /* Let the bridge loop avoidance check the packet. If will
344 * not handle it, we can safely push it up.
345 */
David S. Miller04c9f412012-07-10 23:56:33 -0700346 if (batadv_bla_rx(bat_priv, skb, vid, is_bcast))
Simon Wunderlich23721382012-01-22 20:00:19 +0100347 goto out;
348
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000349 netif_rx(skb);
Simon Wunderlichba85fac2011-04-17 20:34:27 +0200350 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000351
352dropped:
353 kfree_skb(skb);
354out:
355 return;
356}
357
Sven Eckelmann36c1d152012-08-20 09:03:59 +0200358/* batman-adv network devices have devices nesting below it and are a special
359 * "super class" of normal network devices; split their locks off into a
360 * separate class since they always nest.
361 */
362static struct lock_class_key batadv_netdev_xmit_lock_key;
363static struct lock_class_key batadv_netdev_addr_lock_key;
364
365/**
366 * batadv_set_lockdep_class_one - Set lockdep class for a single tx queue
367 * @dev: device which owns the tx queue
368 * @txq: tx queue to modify
369 * @_unused: always NULL
370 */
371static void batadv_set_lockdep_class_one(struct net_device *dev,
372 struct netdev_queue *txq,
373 void *_unused)
374{
375 lockdep_set_class(&txq->_xmit_lock, &batadv_netdev_xmit_lock_key);
376}
377
378/**
379 * batadv_set_lockdep_class - Set txq and addr_list lockdep class
380 * @dev: network device to modify
381 */
382static void batadv_set_lockdep_class(struct net_device *dev)
383{
384 lockdep_set_class(&dev->addr_list_lock, &batadv_netdev_addr_lock_key);
385 netdev_for_each_tx_queue(dev, batadv_set_lockdep_class_one, NULL);
386}
387
388/**
389 * batadv_softif_init - Late stage initialization of soft interface
390 * @dev: registered network device to modify
391 *
392 * Returns error code on failures
393 */
394static int batadv_softif_init(struct net_device *dev)
395{
396 batadv_set_lockdep_class(dev);
397
398 return 0;
399}
400
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200401static const struct net_device_ops batadv_netdev_ops = {
Sven Eckelmann36c1d152012-08-20 09:03:59 +0200402 .ndo_init = batadv_softif_init,
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200403 .ndo_open = batadv_interface_open,
404 .ndo_stop = batadv_interface_release,
405 .ndo_get_stats = batadv_interface_stats,
406 .ndo_set_mac_address = batadv_interface_set_mac_addr,
407 .ndo_change_mtu = batadv_interface_change_mtu,
408 .ndo_start_xmit = batadv_interface_tx,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000409 .ndo_validate_addr = eth_validate_addr
410};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000411
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200412static void batadv_interface_setup(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000413{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200414 struct batadv_priv *priv = netdev_priv(dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000415
416 ether_setup(dev);
417
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200418 dev->netdev_ops = &batadv_netdev_ops;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000419 dev->destructor = free_netdev;
Andrew Lunnaf20b712011-04-17 20:39:07 +0200420 dev->tx_queue_len = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000421
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200422 /* can't call min_mtu, because the needed variables
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000423 * have not been initialized yet
424 */
425 dev->mtu = ETH_DATA_LEN;
Sven Eckelmann6e215fd2011-05-08 12:45:45 +0200426 /* reserve more space in the skbuff for our header */
Sven Eckelmannc11fdfa2012-06-03 22:19:14 +0200427 dev->hard_header_len = BATADV_HEADER_LEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000428
429 /* generate random address */
Danny Kukawka28009a62012-02-17 05:43:27 +0000430 eth_hw_addr_random(dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000431
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200432 SET_ETHTOOL_OPS(dev, &batadv_ethtool_ops);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000433
Sven Eckelmann704509b2011-05-14 23:14:54 +0200434 memset(priv, 0, sizeof(*priv));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000435}
436
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200437struct net_device *batadv_softif_create(const char *name)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000438{
439 struct net_device *soft_iface;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200440 struct batadv_priv *bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000441 int ret;
Sven Eckelmannd69909d2012-06-03 22:19:20 +0200442 size_t cnt_len = sizeof(uint64_t) * BATADV_CNT_NUM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000443
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200444 soft_iface = alloc_netdev(sizeof(*bat_priv), name,
445 batadv_interface_setup);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000446
Joe Perches320f4222011-08-29 14:17:24 -0700447 if (!soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000448 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000449
Marek Lindner1c9b0552012-06-23 11:47:53 +0200450 bat_priv = netdev_priv(soft_iface);
451
452 /* batadv_interface_stats() needs to be available as soon as
453 * register_netdevice() has been called
454 */
455 bat_priv->bat_counters = __alloc_percpu(cnt_len, __alignof__(uint64_t));
456 if (!bat_priv->bat_counters)
457 goto free_soft_iface;
458
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200459 ret = register_netdevice(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000460 if (ret < 0) {
461 pr_err("Unable to register the batman interface '%s': %i\n",
462 name, ret);
Marek Lindner1c9b0552012-06-23 11:47:53 +0200463 goto free_bat_counters;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000464 }
465
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000466 atomic_set(&bat_priv->aggregated_ogms, 1);
467 atomic_set(&bat_priv->bonding, 0);
Simon Wunderlich23721382012-01-22 20:00:19 +0100468 atomic_set(&bat_priv->bridge_loop_avoidance, 0);
Antonio Quartulli59b699c2011-07-07 15:35:36 +0200469 atomic_set(&bat_priv->ap_isolation, 0);
Sven Eckelmannacd34af2012-06-03 22:19:21 +0200470 atomic_set(&bat_priv->vis_mode, BATADV_VIS_TYPE_CLIENT_UPDATE);
Sven Eckelmanncd646ab2012-06-03 22:19:18 +0200471 atomic_set(&bat_priv->gw_mode, BATADV_GW_MODE_OFF);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000472 atomic_set(&bat_priv->gw_sel_class, 20);
473 atomic_set(&bat_priv->gw_bandwidth, 41);
474 atomic_set(&bat_priv->orig_interval, 1000);
Marek Lindner8681a1c2012-01-27 23:11:55 +0800475 atomic_set(&bat_priv->hop_penalty, 30);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000476 atomic_set(&bat_priv->log_level, 0);
477 atomic_set(&bat_priv->fragmentation, 1);
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200478 atomic_set(&bat_priv->bcast_queue_left, BATADV_BCAST_QUEUE_LEN);
479 atomic_set(&bat_priv->batman_queue_left, BATADV_BATMAN_QUEUE_LEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000480
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200481 atomic_set(&bat_priv->mesh_state, BATADV_MESH_INACTIVE);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000482 atomic_set(&bat_priv->bcast_seqno, 1);
Sven Eckelmann807736f2012-07-15 22:26:51 +0200483 atomic_set(&bat_priv->tt.vn, 0);
484 atomic_set(&bat_priv->tt.local_changes, 0);
485 atomic_set(&bat_priv->tt.ogm_append_cnt, 0);
486#ifdef CONFIG_BATMAN_ADV_BLA
487 atomic_set(&bat_priv->bla.num_requests, 0);
488#endif
489 bat_priv->tt.last_changeset = NULL;
490 bat_priv->tt.last_changeset_len = 0;
491 bat_priv->tt.poss_change = false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000492
493 bat_priv->primary_if = NULL;
494 bat_priv->num_ifaces = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000495
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200496 ret = batadv_algo_select(bat_priv, batadv_routing_algo);
Marek Lindner1c280472011-11-28 17:40:17 +0800497 if (ret < 0)
Marek Lindner1c9b0552012-06-23 11:47:53 +0200498 goto unreg_soft_iface;
Marek Lindner1c280472011-11-28 17:40:17 +0800499
Sven Eckelmann5853e222012-05-12 02:09:24 +0200500 ret = batadv_sysfs_add_meshif(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000501 if (ret < 0)
Marek Lindner1c9b0552012-06-23 11:47:53 +0200502 goto unreg_soft_iface;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000503
Sven Eckelmann40a072d2012-05-12 02:09:23 +0200504 ret = batadv_debugfs_add_meshif(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000505 if (ret < 0)
506 goto unreg_sysfs;
507
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200508 ret = batadv_mesh_init(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000509 if (ret < 0)
510 goto unreg_debugfs;
511
512 return soft_iface;
513
514unreg_debugfs:
Sven Eckelmann40a072d2012-05-12 02:09:23 +0200515 batadv_debugfs_del_meshif(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000516unreg_sysfs:
Sven Eckelmann5853e222012-05-12 02:09:24 +0200517 batadv_sysfs_del_meshif(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000518unreg_soft_iface:
Marek Lindner1c9b0552012-06-23 11:47:53 +0200519 free_percpu(bat_priv->bat_counters);
Simon Wunderlich06ba7ce2011-11-07 13:57:48 +0100520 unregister_netdevice(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000521 return NULL;
522
Marek Lindner1c9b0552012-06-23 11:47:53 +0200523free_bat_counters:
524 free_percpu(bat_priv->bat_counters);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000525free_soft_iface:
526 free_netdev(soft_iface);
527out:
528 return NULL;
529}
530
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200531void batadv_softif_destroy(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000532{
Sven Eckelmann40a072d2012-05-12 02:09:23 +0200533 batadv_debugfs_del_meshif(soft_iface);
Sven Eckelmann5853e222012-05-12 02:09:24 +0200534 batadv_sysfs_del_meshif(soft_iface);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200535 batadv_mesh_free(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000536 unregister_netdevice(soft_iface);
537}
538
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200539int batadv_softif_is_valid(const struct net_device *net_dev)
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000540{
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200541 if (net_dev->netdev_ops->ndo_start_xmit == batadv_interface_tx)
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000542 return 1;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000543
544 return 0;
545}
546
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000547/* ethtool */
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200548static int batadv_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000549{
550 cmd->supported = 0;
551 cmd->advertising = 0;
David Decotigny70739492011-04-27 18:32:40 +0000552 ethtool_cmd_speed_set(cmd, SPEED_10);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000553 cmd->duplex = DUPLEX_FULL;
554 cmd->port = PORT_TP;
555 cmd->phy_address = 0;
556 cmd->transceiver = XCVR_INTERNAL;
557 cmd->autoneg = AUTONEG_DISABLE;
558 cmd->maxtxpkt = 0;
559 cmd->maxrxpkt = 0;
560
561 return 0;
562}
563
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200564static void batadv_get_drvinfo(struct net_device *dev,
565 struct ethtool_drvinfo *info)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000566{
567 strcpy(info->driver, "B.A.T.M.A.N. advanced");
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200568 strcpy(info->version, BATADV_SOURCE_VERSION);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000569 strcpy(info->fw_version, "N/A");
570 strcpy(info->bus_info, "batman");
571}
572
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200573static u32 batadv_get_msglevel(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000574{
575 return -EOPNOTSUPP;
576}
577
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200578static void batadv_set_msglevel(struct net_device *dev, u32 value)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000579{
580}
581
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200582static u32 batadv_get_link(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000583{
584 return 1;
585}
Martin Hundebøllf8214862012-04-20 17:02:45 +0200586
587/* Inspired by drivers/net/ethernet/dlink/sundance.c:1702
588 * Declare each description string in struct.name[] to get fixed sized buffer
589 * and compile time checking for strings longer than ETH_GSTRING_LEN.
590 */
591static const struct {
592 const char name[ETH_GSTRING_LEN];
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200593} batadv_counters_strings[] = {
Marek Lindner1c9b0552012-06-23 11:47:53 +0200594 { "tx" },
595 { "tx_bytes" },
596 { "tx_dropped" },
597 { "rx" },
598 { "rx_bytes" },
Martin Hundebøllf8214862012-04-20 17:02:45 +0200599 { "forward" },
600 { "forward_bytes" },
601 { "mgmt_tx" },
602 { "mgmt_tx_bytes" },
603 { "mgmt_rx" },
604 { "mgmt_rx_bytes" },
605 { "tt_request_tx" },
606 { "tt_request_rx" },
607 { "tt_response_tx" },
608 { "tt_response_rx" },
609 { "tt_roam_adv_tx" },
610 { "tt_roam_adv_rx" },
611};
612
613static void batadv_get_strings(struct net_device *dev, uint32_t stringset,
614 uint8_t *data)
615{
616 if (stringset == ETH_SS_STATS)
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200617 memcpy(data, batadv_counters_strings,
618 sizeof(batadv_counters_strings));
Martin Hundebøllf8214862012-04-20 17:02:45 +0200619}
620
621static void batadv_get_ethtool_stats(struct net_device *dev,
622 struct ethtool_stats *stats,
623 uint64_t *data)
624{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200625 struct batadv_priv *bat_priv = netdev_priv(dev);
Martin Hundebøllf8214862012-04-20 17:02:45 +0200626 int i;
627
Sven Eckelmannd69909d2012-06-03 22:19:20 +0200628 for (i = 0; i < BATADV_CNT_NUM; i++)
Martin Hundebøllf8214862012-04-20 17:02:45 +0200629 data[i] = batadv_sum_counter(bat_priv, i);
630}
631
632static int batadv_get_sset_count(struct net_device *dev, int stringset)
633{
634 if (stringset == ETH_SS_STATS)
Sven Eckelmannd69909d2012-06-03 22:19:20 +0200635 return BATADV_CNT_NUM;
Martin Hundebøllf8214862012-04-20 17:02:45 +0200636
637 return -EOPNOTSUPP;
638}