blob: e726419045e4b3091e27cecffcef18055419affc [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"
25#include "bat_debugfs.h"
26#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 Eckelmannc6c8fea2010-12-13 11:19:28 +000030#include "bat_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{
95 struct bat_priv *bat_priv = netdev_priv(dev);
96 return &bat_priv->stats;
97}
98
Sven Eckelmann0294ca02012-05-16 20:23:15 +020099static int batadv_interface_set_mac_addr(struct net_device *dev, void *p)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000100{
101 struct bat_priv *bat_priv = netdev_priv(dev);
102 struct sockaddr *addr = p;
103
104 if (!is_valid_ether_addr(addr->sa_data))
105 return -EADDRNOTAVAIL;
106
Antonio Quartulli015758d2011-07-09 17:52:13 +0200107 /* only modify transtable if it has been initialized before */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000108 if (atomic_read(&bat_priv->mesh_state) == MESH_ACTIVE) {
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200109 batadv_tt_local_remove(bat_priv, dev->dev_addr,
110 "mac address changed", false);
111 batadv_tt_local_add(dev, addr->sa_data, NULL_IFINDEX);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000112 }
113
114 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
Danny Kukawka28009a62012-02-17 05:43:27 +0000115 dev->addr_assign_type &= ~NET_ADDR_RANDOM;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000116 return 0;
117}
118
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200119static int batadv_interface_change_mtu(struct net_device *dev, int new_mtu)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000120{
121 /* check ranges */
Sven Eckelmann95638772012-05-12 02:09:31 +0200122 if ((new_mtu < 68) || (new_mtu > batadv_hardif_min_mtu(dev)))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000123 return -EINVAL;
124
125 dev->mtu = new_mtu;
126
127 return 0;
128}
129
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200130static int batadv_interface_tx(struct sk_buff *skb,
131 struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000132{
133 struct ethhdr *ethhdr = (struct ethhdr *)skb->data;
134 struct bat_priv *bat_priv = netdev_priv(soft_iface);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200135 struct hard_iface *primary_if = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000136 struct bcast_packet *bcast_packet;
137 struct vlan_ethhdr *vhdr;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200138 __be16 ethertype = __constant_htons(BATADV_ETH_P_BATMAN);
Simon Wunderlichb1a8c042012-01-22 20:00:25 +0100139 static const uint8_t stp_addr[ETH_ALEN] = {0x01, 0x80, 0xC2, 0x00, 0x00,
140 0x00};
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200141 unsigned int header_len = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000142 int data_len = skb->len, ret;
Simon Wunderlich7a5cc242012-01-22 20:00:27 +0100143 short vid __maybe_unused = -1;
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200144 bool do_bcast = false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000145
146 if (atomic_read(&bat_priv->mesh_state) != MESH_ACTIVE)
147 goto dropped;
148
149 soft_iface->trans_start = jiffies;
150
151 switch (ntohs(ethhdr->h_proto)) {
152 case ETH_P_8021Q:
153 vhdr = (struct vlan_ethhdr *)skb->data;
154 vid = ntohs(vhdr->h_vlan_TCI) & VLAN_VID_MASK;
155
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200156 if (vhdr->h_vlan_encapsulated_proto != ethertype)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000157 break;
158
159 /* fall through */
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200160 case BATADV_ETH_P_BATMAN:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000161 goto dropped;
Simon Wunderlicha7f6ee92012-01-22 20:00:18 +0100162 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000163
Sven Eckelmann08adf152012-05-12 13:38:47 +0200164 if (batadv_bla_tx(bat_priv, skb, vid))
Simon Wunderlich23721382012-01-22 20:00:19 +0100165 goto dropped;
166
Antonio Quartullia73105b2011-04-27 14:27:44 +0200167 /* Register the client MAC in the transtable */
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200168 batadv_tt_local_add(soft_iface, ethhdr->h_source, skb->skb_iif);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000169
Simon Wunderlichb1a8c042012-01-22 20:00:25 +0100170 /* don't accept stp packets. STP does not help in meshes.
171 * better use the bridge loop avoidance ...
172 */
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200173 if (batadv_compare_eth(ethhdr->h_dest, stp_addr))
Simon Wunderlichb1a8c042012-01-22 20:00:25 +0100174 goto dropped;
175
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200176 if (is_multicast_ether_addr(ethhdr->h_dest)) {
177 do_bcast = true;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000178
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200179 switch (atomic_read(&bat_priv->gw_mode)) {
180 case GW_MODE_SERVER:
181 /* gateway servers should not send dhcp
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200182 * requests into the mesh
183 */
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200184 ret = batadv_gw_is_dhcp_target(skb, &header_len);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200185 if (ret)
186 goto dropped;
187 break;
188 case GW_MODE_CLIENT:
189 /* gateway clients should send dhcp requests
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200190 * via unicast to their gateway
191 */
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200192 ret = batadv_gw_is_dhcp_target(skb, &header_len);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200193 if (ret)
194 do_bcast = false;
195 break;
196 case GW_MODE_OFF:
197 default:
198 break;
199 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000200 }
201
202 /* ethernet packet should be broadcasted */
203 if (do_bcast) {
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200204 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200205 if (!primary_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000206 goto dropped;
207
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200208 if (batadv_skb_head_push(skb, sizeof(*bcast_packet)) < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000209 goto dropped;
210
211 bcast_packet = (struct bcast_packet *)skb->data;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200212 bcast_packet->header.version = BATADV_COMPAT_VERSION;
Sven Eckelmann76543d12011-11-20 15:47:38 +0100213 bcast_packet->header.ttl = TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000214
215 /* batman packet type: broadcast */
Sven Eckelmann76543d12011-11-20 15:47:38 +0100216 bcast_packet->header.packet_type = BAT_BCAST;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000217
218 /* hw address of first interface is the orig mac because only
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200219 * this mac is known throughout the mesh
220 */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000221 memcpy(bcast_packet->orig,
Marek Lindner32ae9b22011-04-20 15:40:58 +0200222 primary_if->net_dev->dev_addr, ETH_ALEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000223
224 /* set broadcast sequence number */
225 bcast_packet->seqno =
226 htonl(atomic_inc_return(&bat_priv->bcast_seqno));
227
Sven Eckelmann9455e342012-05-12 02:09:37 +0200228 batadv_add_bcast_packet_to_list(bat_priv, skb, 1);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000229
230 /* a copy is stored in the bcast list, therefore removing
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200231 * the original skb.
232 */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000233 kfree_skb(skb);
234
235 /* unicast packet */
236 } else {
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200237 if (atomic_read(&bat_priv->gw_mode) != GW_MODE_OFF) {
Sven Eckelmann7cf06bc2012-05-12 02:09:29 +0200238 ret = batadv_gw_out_of_range(bat_priv, skb, ethhdr);
Marek Lindnerbe7af5c2011-09-08 13:12:53 +0200239 if (ret)
240 goto dropped;
241 }
242
Sven Eckelmann88ed1e772012-05-12 02:09:40 +0200243 ret = batadv_unicast_send_skb(skb, bat_priv);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000244 if (ret != 0)
245 goto dropped_freed;
246 }
247
248 bat_priv->stats.tx_packets++;
249 bat_priv->stats.tx_bytes += data_len;
250 goto end;
251
252dropped:
253 kfree_skb(skb);
254dropped_freed:
255 bat_priv->stats.tx_dropped++;
256end:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200257 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200258 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000259 return NETDEV_TX_OK;
260}
261
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200262void batadv_interface_rx(struct net_device *soft_iface,
263 struct sk_buff *skb, struct hard_iface *recv_if,
264 int hdr_size)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000265{
266 struct bat_priv *bat_priv = netdev_priv(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000267 struct ethhdr *ethhdr;
268 struct vlan_ethhdr *vhdr;
Simon Wunderlich7a5cc242012-01-22 20:00:27 +0100269 short vid __maybe_unused = -1;
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200270 __be16 ethertype = __constant_htons(BATADV_ETH_P_BATMAN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000271
272 /* check if enough space is available for pulling, and pull */
273 if (!pskb_may_pull(skb, hdr_size))
274 goto dropped;
275
276 skb_pull_rcsum(skb, hdr_size);
277 skb_reset_mac_header(skb);
278
279 ethhdr = (struct ethhdr *)skb_mac_header(skb);
280
281 switch (ntohs(ethhdr->h_proto)) {
282 case ETH_P_8021Q:
283 vhdr = (struct vlan_ethhdr *)skb->data;
284 vid = ntohs(vhdr->h_vlan_TCI) & VLAN_VID_MASK;
285
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200286 if (vhdr->h_vlan_encapsulated_proto != ethertype)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000287 break;
288
289 /* fall through */
Sven Eckelmann7e071c72012-06-03 22:19:13 +0200290 case BATADV_ETH_P_BATMAN:
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000291 goto dropped;
292 }
293
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000294 /* skb->dev & skb->pkt_type are set here */
295 if (unlikely(!pskb_may_pull(skb, ETH_HLEN)))
296 goto dropped;
297 skb->protocol = eth_type_trans(skb, soft_iface);
298
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300299 /* should not be necessary anymore as we use skb_pull_rcsum()
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000300 * TODO: please verify this and remove this TODO
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200301 * -- Dec 21st 2009, Simon Wunderlich
302 */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000303
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200304 /* skb->ip_summed = CHECKSUM_UNNECESSARY; */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000305
306 bat_priv->stats.rx_packets++;
Antonio Quartulli0d125072012-02-18 11:27:34 +0100307 bat_priv->stats.rx_bytes += skb->len + ETH_HLEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000308
309 soft_iface->last_rx = jiffies;
310
Sven Eckelmann08c36d32012-05-12 02:09:39 +0200311 if (batadv_is_ap_isolated(bat_priv, ethhdr->h_source, ethhdr->h_dest))
Antonio Quartulli59b699c2011-07-07 15:35:36 +0200312 goto dropped;
313
Simon Wunderlich23721382012-01-22 20:00:19 +0100314 /* Let the bridge loop avoidance check the packet. If will
315 * not handle it, we can safely push it up.
316 */
Sven Eckelmann08adf152012-05-12 13:38:47 +0200317 if (batadv_bla_rx(bat_priv, skb, vid))
Simon Wunderlich23721382012-01-22 20:00:19 +0100318 goto out;
319
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000320 netif_rx(skb);
Simon Wunderlichba85fac2011-04-17 20:34:27 +0200321 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000322
323dropped:
324 kfree_skb(skb);
325out:
326 return;
327}
328
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200329static const struct net_device_ops batadv_netdev_ops = {
330 .ndo_open = batadv_interface_open,
331 .ndo_stop = batadv_interface_release,
332 .ndo_get_stats = batadv_interface_stats,
333 .ndo_set_mac_address = batadv_interface_set_mac_addr,
334 .ndo_change_mtu = batadv_interface_change_mtu,
335 .ndo_start_xmit = batadv_interface_tx,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000336 .ndo_validate_addr = eth_validate_addr
337};
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000338
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200339static void batadv_interface_setup(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000340{
341 struct bat_priv *priv = netdev_priv(dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000342
343 ether_setup(dev);
344
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200345 dev->netdev_ops = &batadv_netdev_ops;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000346 dev->destructor = free_netdev;
Andrew Lunnaf20b712011-04-17 20:39:07 +0200347 dev->tx_queue_len = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000348
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200349 /* can't call min_mtu, because the needed variables
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000350 * have not been initialized yet
351 */
352 dev->mtu = ETH_DATA_LEN;
Sven Eckelmann6e215fd2011-05-08 12:45:45 +0200353 /* reserve more space in the skbuff for our header */
354 dev->hard_header_len = BAT_HEADER_LEN;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000355
356 /* generate random address */
Danny Kukawka28009a62012-02-17 05:43:27 +0000357 eth_hw_addr_random(dev);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000358
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200359 SET_ETHTOOL_OPS(dev, &batadv_ethtool_ops);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000360
Sven Eckelmann704509b2011-05-14 23:14:54 +0200361 memset(priv, 0, sizeof(*priv));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000362}
363
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200364struct net_device *batadv_softif_create(const char *name)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000365{
366 struct net_device *soft_iface;
367 struct bat_priv *bat_priv;
368 int ret;
369
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200370 soft_iface = alloc_netdev(sizeof(*bat_priv), name,
371 batadv_interface_setup);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000372
Joe Perches320f4222011-08-29 14:17:24 -0700373 if (!soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000374 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000375
Sven Eckelmannc3caf512011-05-03 11:51:38 +0200376 ret = register_netdevice(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000377 if (ret < 0) {
378 pr_err("Unable to register the batman interface '%s': %i\n",
379 name, ret);
380 goto free_soft_iface;
381 }
382
383 bat_priv = netdev_priv(soft_iface);
384
385 atomic_set(&bat_priv->aggregated_ogms, 1);
386 atomic_set(&bat_priv->bonding, 0);
Simon Wunderlich23721382012-01-22 20:00:19 +0100387 atomic_set(&bat_priv->bridge_loop_avoidance, 0);
Antonio Quartulli59b699c2011-07-07 15:35:36 +0200388 atomic_set(&bat_priv->ap_isolation, 0);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000389 atomic_set(&bat_priv->vis_mode, VIS_TYPE_CLIENT_UPDATE);
390 atomic_set(&bat_priv->gw_mode, GW_MODE_OFF);
391 atomic_set(&bat_priv->gw_sel_class, 20);
392 atomic_set(&bat_priv->gw_bandwidth, 41);
393 atomic_set(&bat_priv->orig_interval, 1000);
Marek Lindner8681a1c2012-01-27 23:11:55 +0800394 atomic_set(&bat_priv->hop_penalty, 30);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000395 atomic_set(&bat_priv->log_level, 0);
396 atomic_set(&bat_priv->fragmentation, 1);
397 atomic_set(&bat_priv->bcast_queue_left, BCAST_QUEUE_LEN);
398 atomic_set(&bat_priv->batman_queue_left, BATMAN_QUEUE_LEN);
399
400 atomic_set(&bat_priv->mesh_state, MESH_INACTIVE);
401 atomic_set(&bat_priv->bcast_seqno, 1);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200402 atomic_set(&bat_priv->ttvn, 0);
403 atomic_set(&bat_priv->tt_local_changes, 0);
404 atomic_set(&bat_priv->tt_ogm_append_cnt, 0);
Simon Wunderlich23721382012-01-22 20:00:19 +0100405 atomic_set(&bat_priv->bla_num_requests, 0);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200406
407 bat_priv->tt_buff = NULL;
408 bat_priv->tt_buff_len = 0;
Antonio Quartullicc47f662011-04-27 14:27:57 +0200409 bat_priv->tt_poss_change = false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000410
411 bat_priv->primary_if = NULL;
412 bat_priv->num_ifaces = 0;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000413
Martin Hundebøllf8214862012-04-20 17:02:45 +0200414 bat_priv->bat_counters = __alloc_percpu(sizeof(uint64_t) * BAT_CNT_NUM,
415 __alignof__(uint64_t));
416 if (!bat_priv->bat_counters)
417 goto unreg_soft_iface;
418
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200419 ret = batadv_algo_select(bat_priv, batadv_routing_algo);
Marek Lindner1c280472011-11-28 17:40:17 +0800420 if (ret < 0)
Martin Hundebøllf8214862012-04-20 17:02:45 +0200421 goto free_bat_counters;
Marek Lindner1c280472011-11-28 17:40:17 +0800422
Sven Eckelmann5853e222012-05-12 02:09:24 +0200423 ret = batadv_sysfs_add_meshif(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000424 if (ret < 0)
Martin Hundebøllf8214862012-04-20 17:02:45 +0200425 goto free_bat_counters;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000426
Sven Eckelmann40a072d2012-05-12 02:09:23 +0200427 ret = batadv_debugfs_add_meshif(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000428 if (ret < 0)
429 goto unreg_sysfs;
430
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200431 ret = batadv_mesh_init(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000432 if (ret < 0)
433 goto unreg_debugfs;
434
435 return soft_iface;
436
437unreg_debugfs:
Sven Eckelmann40a072d2012-05-12 02:09:23 +0200438 batadv_debugfs_del_meshif(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000439unreg_sysfs:
Sven Eckelmann5853e222012-05-12 02:09:24 +0200440 batadv_sysfs_del_meshif(soft_iface);
Martin Hundebøllf8214862012-04-20 17:02:45 +0200441free_bat_counters:
442 free_percpu(bat_priv->bat_counters);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000443unreg_soft_iface:
Simon Wunderlich06ba7ce2011-11-07 13:57:48 +0100444 unregister_netdevice(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000445 return NULL;
446
447free_soft_iface:
448 free_netdev(soft_iface);
449out:
450 return NULL;
451}
452
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200453void batadv_softif_destroy(struct net_device *soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000454{
Sven Eckelmann40a072d2012-05-12 02:09:23 +0200455 batadv_debugfs_del_meshif(soft_iface);
Sven Eckelmann5853e222012-05-12 02:09:24 +0200456 batadv_sysfs_del_meshif(soft_iface);
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200457 batadv_mesh_free(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000458 unregister_netdevice(soft_iface);
459}
460
Sven Eckelmann04b482a2012-05-12 02:09:38 +0200461int batadv_softif_is_valid(const struct net_device *net_dev)
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000462{
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200463 if (net_dev->netdev_ops->ndo_start_xmit == batadv_interface_tx)
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000464 return 1;
Sven Eckelmanne44d8fe2011-03-04 21:36:41 +0000465
466 return 0;
467}
468
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000469/* ethtool */
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200470static int batadv_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000471{
472 cmd->supported = 0;
473 cmd->advertising = 0;
David Decotigny70739492011-04-27 18:32:40 +0000474 ethtool_cmd_speed_set(cmd, SPEED_10);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000475 cmd->duplex = DUPLEX_FULL;
476 cmd->port = PORT_TP;
477 cmd->phy_address = 0;
478 cmd->transceiver = XCVR_INTERNAL;
479 cmd->autoneg = AUTONEG_DISABLE;
480 cmd->maxtxpkt = 0;
481 cmd->maxrxpkt = 0;
482
483 return 0;
484}
485
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200486static void batadv_get_drvinfo(struct net_device *dev,
487 struct ethtool_drvinfo *info)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000488{
489 strcpy(info->driver, "B.A.T.M.A.N. advanced");
490 strcpy(info->version, SOURCE_VERSION);
491 strcpy(info->fw_version, "N/A");
492 strcpy(info->bus_info, "batman");
493}
494
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200495static u32 batadv_get_msglevel(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000496{
497 return -EOPNOTSUPP;
498}
499
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200500static void batadv_set_msglevel(struct net_device *dev, u32 value)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000501{
502}
503
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200504static u32 batadv_get_link(struct net_device *dev)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000505{
506 return 1;
507}
Martin Hundebøllf8214862012-04-20 17:02:45 +0200508
509/* Inspired by drivers/net/ethernet/dlink/sundance.c:1702
510 * Declare each description string in struct.name[] to get fixed sized buffer
511 * and compile time checking for strings longer than ETH_GSTRING_LEN.
512 */
513static const struct {
514 const char name[ETH_GSTRING_LEN];
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200515} batadv_counters_strings[] = {
Martin Hundebøllf8214862012-04-20 17:02:45 +0200516 { "forward" },
517 { "forward_bytes" },
518 { "mgmt_tx" },
519 { "mgmt_tx_bytes" },
520 { "mgmt_rx" },
521 { "mgmt_rx_bytes" },
522 { "tt_request_tx" },
523 { "tt_request_rx" },
524 { "tt_response_tx" },
525 { "tt_response_rx" },
526 { "tt_roam_adv_tx" },
527 { "tt_roam_adv_rx" },
528};
529
530static void batadv_get_strings(struct net_device *dev, uint32_t stringset,
531 uint8_t *data)
532{
533 if (stringset == ETH_SS_STATS)
Sven Eckelmann0294ca02012-05-16 20:23:15 +0200534 memcpy(data, batadv_counters_strings,
535 sizeof(batadv_counters_strings));
Martin Hundebøllf8214862012-04-20 17:02:45 +0200536}
537
538static void batadv_get_ethtool_stats(struct net_device *dev,
539 struct ethtool_stats *stats,
540 uint64_t *data)
541{
542 struct bat_priv *bat_priv = netdev_priv(dev);
543 int i;
544
545 for (i = 0; i < BAT_CNT_NUM; i++)
546 data[i] = batadv_sum_counter(bat_priv, i);
547}
548
549static int batadv_get_sset_count(struct net_device *dev, int stringset)
550{
551 if (stringset == ETH_SS_STATS)
552 return BAT_CNT_NUM;
553
554 return -EOPNOTSUPP;
555}