batman-adv: Mark correctly aligned headers not as __packed
[deliverable/linux.git] / net / batman-adv / soft-interface.c
CommitLineData
9cfc7bd6 1/* Copyright (C) 2007-2012 B.A.T.M.A.N. contributors:
c6c8fea2
SE
2 *
3 * Marek Lindner, Simon Wunderlich
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of version 2 of the GNU General Public
7 * License as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA
c6c8fea2
SE
18 */
19
20#include "main.h"
21#include "soft-interface.h"
22#include "hard-interface.h"
23#include "routing.h"
24#include "send.h"
b706b13b 25#include "debugfs.h"
c6c8fea2 26#include "translation-table.h"
c6c8fea2
SE
27#include "hash.h"
28#include "gateway_common.h"
29#include "gateway_client.h"
b706b13b 30#include "sysfs.h"
43676ab5 31#include "originator.h"
c6c8fea2
SE
32#include <linux/slab.h>
33#include <linux/ethtool.h>
34#include <linux/etherdevice.h>
35#include <linux/if_vlan.h>
36#include "unicast.h"
23721387 37#include "bridge_loop_avoidance.h"
c6c8fea2
SE
38
39
0294ca0d
SE
40static 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);
f8214865
MH
46static 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);
c6c8fea2 50
0294ca0d
SE
51static 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,
f8214865
MH
57 .get_strings = batadv_get_strings,
58 .get_ethtool_stats = batadv_get_ethtool_stats,
59 .get_sset_count = batadv_get_sset_count,
c6c8fea2
SE
60};
61
04b482a2 62int batadv_skb_head_push(struct sk_buff *skb, unsigned int len)
c6c8fea2
SE
63{
64 int result;
65
9cfc7bd6 66 /* TODO: We must check if we can release all references to non-payload
c6c8fea2
SE
67 * 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
0294ca0d 81static int batadv_interface_open(struct net_device *dev)
c6c8fea2
SE
82{
83 netif_start_queue(dev);
84 return 0;
85}
86
0294ca0d 87static int batadv_interface_release(struct net_device *dev)
c6c8fea2
SE
88{
89 netif_stop_queue(dev);
90 return 0;
91}
92
0294ca0d 93static struct net_device_stats *batadv_interface_stats(struct net_device *dev)
c6c8fea2 94{
56303d34 95 struct batadv_priv *bat_priv = netdev_priv(dev);
1c9b0550
ML
96 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;
c6c8fea2
SE
104}
105
0294ca0d 106static int batadv_interface_set_mac_addr(struct net_device *dev, void *p)
c6c8fea2 107{
56303d34 108 struct batadv_priv *bat_priv = netdev_priv(dev);
c6c8fea2 109 struct sockaddr *addr = p;
40a3eb33 110 uint8_t old_addr[ETH_ALEN];
c6c8fea2
SE
111
112 if (!is_valid_ether_addr(addr->sa_data))
113 return -EADDRNOTAVAIL;
114
40a3eb33
D
115 memcpy(old_addr, dev->dev_addr, ETH_ALEN);
116 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
117
015758d0 118 /* only modify transtable if it has been initialized before */
39c75a51 119 if (atomic_read(&bat_priv->mesh_state) == BATADV_MESH_ACTIVE) {
40a3eb33 120 batadv_tt_local_remove(bat_priv, old_addr,
08c36d3e 121 "mac address changed", false);
42d0b044 122 batadv_tt_local_add(dev, addr->sa_data, BATADV_NULL_IFINDEX);
c6c8fea2
SE
123 }
124
28009a6c 125 dev->addr_assign_type &= ~NET_ADDR_RANDOM;
c6c8fea2
SE
126 return 0;
127}
128
0294ca0d 129static int batadv_interface_change_mtu(struct net_device *dev, int new_mtu)
c6c8fea2
SE
130{
131 /* check ranges */
9563877e 132 if ((new_mtu < 68) || (new_mtu > batadv_hardif_min_mtu(dev)))
c6c8fea2
SE
133 return -EINVAL;
134
135 dev->mtu = new_mtu;
136
137 return 0;
138}
139
0294ca0d
SE
140static int batadv_interface_tx(struct sk_buff *skb,
141 struct net_device *soft_iface)
c6c8fea2
SE
142{
143 struct ethhdr *ethhdr = (struct ethhdr *)skb->data;
56303d34
SE
144 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
145 struct batadv_hard_iface *primary_if = NULL;
96412690 146 struct batadv_bcast_packet *bcast_packet;
c6c8fea2 147 struct vlan_ethhdr *vhdr;
7e071c79 148 __be16 ethertype = __constant_htons(BATADV_ETH_P_BATMAN);
4934ab95
SW
149 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};
be7af5cf 153 unsigned int header_len = 0;
c6c8fea2 154 int data_len = skb->len, ret;
7a5cc242 155 short vid __maybe_unused = -1;
be7af5cf 156 bool do_bcast = false;
bbb1f90e 157 uint32_t seqno;
c6c8fea2 158
39c75a51 159 if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE)
c6c8fea2
SE
160 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
7e071c79 169 if (vhdr->h_vlan_encapsulated_proto != ethertype)
c6c8fea2
SE
170 break;
171
172 /* fall through */
7e071c79 173 case BATADV_ETH_P_BATMAN:
c6c8fea2 174 goto dropped;
a7f6ee94 175 }
c6c8fea2 176
08adf151 177 if (batadv_bla_tx(bat_priv, skb, vid))
23721387
SW
178 goto dropped;
179
a73105b8 180 /* Register the client MAC in the transtable */
08c36d3e 181 batadv_tt_local_add(soft_iface, ethhdr->h_source, skb->skb_iif);
c6c8fea2 182
b1a8c04b
SW
183 /* don't accept stp packets. STP does not help in meshes.
184 * better use the bridge loop avoidance ...
4934ab95
SW
185 *
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.
b1a8c04b 188 */
1eda58bf 189 if (batadv_compare_eth(ethhdr->h_dest, stp_addr))
b1a8c04b
SW
190 goto dropped;
191
4934ab95
SW
192 if (batadv_compare_eth(ethhdr->h_dest, ectp_addr))
193 goto dropped;
194
be7af5cf
ML
195 if (is_multicast_ether_addr(ethhdr->h_dest)) {
196 do_bcast = true;
c6c8fea2 197
be7af5cf 198 switch (atomic_read(&bat_priv->gw_mode)) {
cd646ab1 199 case BATADV_GW_MODE_SERVER:
be7af5cf 200 /* gateway servers should not send dhcp
9cfc7bd6
SE
201 * requests into the mesh
202 */
7cf06bc6 203 ret = batadv_gw_is_dhcp_target(skb, &header_len);
be7af5cf
ML
204 if (ret)
205 goto dropped;
206 break;
cd646ab1 207 case BATADV_GW_MODE_CLIENT:
be7af5cf 208 /* gateway clients should send dhcp requests
9cfc7bd6
SE
209 * via unicast to their gateway
210 */
7cf06bc6 211 ret = batadv_gw_is_dhcp_target(skb, &header_len);
be7af5cf
ML
212 if (ret)
213 do_bcast = false;
214 break;
cd646ab1 215 case BATADV_GW_MODE_OFF:
be7af5cf
ML
216 default:
217 break;
218 }
c6c8fea2
SE
219 }
220
221 /* ethernet packet should be broadcasted */
222 if (do_bcast) {
e5d89254 223 primary_if = batadv_primary_if_get_selected(bat_priv);
32ae9b22 224 if (!primary_if)
c6c8fea2
SE
225 goto dropped;
226
04b482a2 227 if (batadv_skb_head_push(skb, sizeof(*bcast_packet)) < 0)
c6c8fea2
SE
228 goto dropped;
229
96412690 230 bcast_packet = (struct batadv_bcast_packet *)skb->data;
7e071c79 231 bcast_packet->header.version = BATADV_COMPAT_VERSION;
42d0b044 232 bcast_packet->header.ttl = BATADV_TTL;
c6c8fea2
SE
233
234 /* batman packet type: broadcast */
acd34afa 235 bcast_packet->header.packet_type = BATADV_BCAST;
162d549c 236 bcast_packet->reserved = 0;
c6c8fea2
SE
237
238 /* hw address of first interface is the orig mac because only
9cfc7bd6
SE
239 * this mac is known throughout the mesh
240 */
c6c8fea2 241 memcpy(bcast_packet->orig,
32ae9b22 242 primary_if->net_dev->dev_addr, ETH_ALEN);
c6c8fea2
SE
243
244 /* set broadcast sequence number */
bbb1f90e
SE
245 seqno = atomic_inc_return(&bat_priv->bcast_seqno);
246 bcast_packet->seqno = htonl(seqno);
c6c8fea2 247
9455e34c 248 batadv_add_bcast_packet_to_list(bat_priv, skb, 1);
c6c8fea2
SE
249
250 /* a copy is stored in the bcast list, therefore removing
9cfc7bd6
SE
251 * the original skb.
252 */
c6c8fea2
SE
253 kfree_skb(skb);
254
255 /* unicast packet */
256 } else {
cd646ab1 257 if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_OFF) {
7cf06bc6 258 ret = batadv_gw_out_of_range(bat_priv, skb, ethhdr);
be7af5cf
ML
259 if (ret)
260 goto dropped;
261 }
262
88ed1e77 263 ret = batadv_unicast_send_skb(skb, bat_priv);
c6c8fea2
SE
264 if (ret != 0)
265 goto dropped_freed;
266 }
267
1c9b0550
ML
268 batadv_inc_counter(bat_priv, BATADV_CNT_TX);
269 batadv_add_counter(bat_priv, BATADV_CNT_TX_BYTES, data_len);
c6c8fea2
SE
270 goto end;
271
272dropped:
273 kfree_skb(skb);
274dropped_freed:
1c9b0550 275 batadv_inc_counter(bat_priv, BATADV_CNT_TX_DROPPED);
c6c8fea2 276end:
32ae9b22 277 if (primary_if)
e5d89254 278 batadv_hardif_free_ref(primary_if);
c6c8fea2
SE
279 return NETDEV_TX_OK;
280}
281
04b482a2 282void batadv_interface_rx(struct net_device *soft_iface,
56303d34 283 struct sk_buff *skb, struct batadv_hard_iface *recv_if,
37135173 284 int hdr_size, struct batadv_orig_node *orig_node)
c6c8fea2 285{
56303d34 286 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
c6c8fea2
SE
287 struct ethhdr *ethhdr;
288 struct vlan_ethhdr *vhdr;
04c9f416 289 struct batadv_header *batadv_header = (struct batadv_header *)skb->data;
7a5cc242 290 short vid __maybe_unused = -1;
7e071c79 291 __be16 ethertype = __constant_htons(BATADV_ETH_P_BATMAN);
2d3f6ccc
SW
292 bool is_bcast;
293
04c9f416 294 is_bcast = (batadv_header->packet_type == BATADV_BCAST);
c6c8fea2
SE
295
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
7e071c79 310 if (vhdr->h_vlan_encapsulated_proto != ethertype)
c6c8fea2
SE
311 break;
312
313 /* fall through */
7e071c79 314 case BATADV_ETH_P_BATMAN:
c6c8fea2
SE
315 goto dropped;
316 }
317
c6c8fea2
SE
318 /* 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
25985edc 323 /* should not be necessary anymore as we use skb_pull_rcsum()
c6c8fea2 324 * TODO: please verify this and remove this TODO
9cfc7bd6
SE
325 * -- Dec 21st 2009, Simon Wunderlich
326 */
c6c8fea2 327
9cfc7bd6 328 /* skb->ip_summed = CHECKSUM_UNNECESSARY; */
c6c8fea2 329
1c9b0550
ML
330 batadv_inc_counter(bat_priv, BATADV_CNT_RX);
331 batadv_add_counter(bat_priv, BATADV_CNT_RX_BYTES,
332 skb->len + ETH_HLEN);
c6c8fea2
SE
333
334 soft_iface->last_rx = jiffies;
335
37135173
AQ
336 if (orig_node)
337 batadv_tt_add_temporary_global_entry(bat_priv, orig_node,
338 ethhdr->h_source);
339
08c36d3e 340 if (batadv_is_ap_isolated(bat_priv, ethhdr->h_source, ethhdr->h_dest))
59b699cd
AQ
341 goto dropped;
342
23721387
SW
343 /* Let the bridge loop avoidance check the packet. If will
344 * not handle it, we can safely push it up.
345 */
04c9f416 346 if (batadv_bla_rx(bat_priv, skb, vid, is_bcast))
23721387
SW
347 goto out;
348
c6c8fea2 349 netif_rx(skb);
ba85fac2 350 goto out;
c6c8fea2
SE
351
352dropped:
353 kfree_skb(skb);
354out:
355 return;
356}
357
36c1d153
SE
358/* 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
0294ca0d 401static const struct net_device_ops batadv_netdev_ops = {
36c1d153 402 .ndo_init = batadv_softif_init,
0294ca0d
SE
403 .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,
c6c8fea2
SE
409 .ndo_validate_addr = eth_validate_addr
410};
c6c8fea2 411
0294ca0d 412static void batadv_interface_setup(struct net_device *dev)
c6c8fea2 413{
56303d34 414 struct batadv_priv *priv = netdev_priv(dev);
c6c8fea2
SE
415
416 ether_setup(dev);
417
0294ca0d 418 dev->netdev_ops = &batadv_netdev_ops;
c6c8fea2 419 dev->destructor = free_netdev;
af20b710 420 dev->tx_queue_len = 0;
c6c8fea2 421
9cfc7bd6 422 /* can't call min_mtu, because the needed variables
c6c8fea2
SE
423 * have not been initialized yet
424 */
425 dev->mtu = ETH_DATA_LEN;
6e215fd8 426 /* reserve more space in the skbuff for our header */
c11fdfae 427 dev->hard_header_len = BATADV_HEADER_LEN;
c6c8fea2
SE
428
429 /* generate random address */
28009a6c 430 eth_hw_addr_random(dev);
c6c8fea2 431
0294ca0d 432 SET_ETHTOOL_OPS(dev, &batadv_ethtool_ops);
c6c8fea2 433
704509b8 434 memset(priv, 0, sizeof(*priv));
c6c8fea2
SE
435}
436
04b482a2 437struct net_device *batadv_softif_create(const char *name)
c6c8fea2
SE
438{
439 struct net_device *soft_iface;
56303d34 440 struct batadv_priv *bat_priv;
c6c8fea2 441 int ret;
d69909d2 442 size_t cnt_len = sizeof(uint64_t) * BATADV_CNT_NUM;
c6c8fea2 443
0294ca0d
SE
444 soft_iface = alloc_netdev(sizeof(*bat_priv), name,
445 batadv_interface_setup);
c6c8fea2 446
320f422f 447 if (!soft_iface)
c6c8fea2 448 goto out;
c6c8fea2 449
1c9b0550
ML
450 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
c3caf519 459 ret = register_netdevice(soft_iface);
c6c8fea2
SE
460 if (ret < 0) {
461 pr_err("Unable to register the batman interface '%s': %i\n",
462 name, ret);
1c9b0550 463 goto free_bat_counters;
c6c8fea2
SE
464 }
465
c6c8fea2
SE
466 atomic_set(&bat_priv->aggregated_ogms, 1);
467 atomic_set(&bat_priv->bonding, 0);
23721387 468 atomic_set(&bat_priv->bridge_loop_avoidance, 0);
59b699cd 469 atomic_set(&bat_priv->ap_isolation, 0);
acd34afa 470 atomic_set(&bat_priv->vis_mode, BATADV_VIS_TYPE_CLIENT_UPDATE);
cd646ab1 471 atomic_set(&bat_priv->gw_mode, BATADV_GW_MODE_OFF);
c6c8fea2
SE
472 atomic_set(&bat_priv->gw_sel_class, 20);
473 atomic_set(&bat_priv->gw_bandwidth, 41);
474 atomic_set(&bat_priv->orig_interval, 1000);
8681a1c4 475 atomic_set(&bat_priv->hop_penalty, 30);
c6c8fea2
SE
476 atomic_set(&bat_priv->log_level, 0);
477 atomic_set(&bat_priv->fragmentation, 1);
42d0b044
SE
478 atomic_set(&bat_priv->bcast_queue_left, BATADV_BCAST_QUEUE_LEN);
479 atomic_set(&bat_priv->batman_queue_left, BATADV_BATMAN_QUEUE_LEN);
c6c8fea2 480
39c75a51 481 atomic_set(&bat_priv->mesh_state, BATADV_MESH_INACTIVE);
c6c8fea2 482 atomic_set(&bat_priv->bcast_seqno, 1);
807736f6
SE
483 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;
c6c8fea2
SE
492
493 bat_priv->primary_if = NULL;
494 bat_priv->num_ifaces = 0;
c6c8fea2 495
3193e8fd 496 ret = batadv_algo_select(bat_priv, batadv_routing_algo);
1c280471 497 if (ret < 0)
1c9b0550 498 goto unreg_soft_iface;
1c280471 499
5853e22c 500 ret = batadv_sysfs_add_meshif(soft_iface);
c6c8fea2 501 if (ret < 0)
1c9b0550 502 goto unreg_soft_iface;
c6c8fea2 503
40a072d7 504 ret = batadv_debugfs_add_meshif(soft_iface);
c6c8fea2
SE
505 if (ret < 0)
506 goto unreg_sysfs;
507
3193e8fd 508 ret = batadv_mesh_init(soft_iface);
c6c8fea2
SE
509 if (ret < 0)
510 goto unreg_debugfs;
511
512 return soft_iface;
513
514unreg_debugfs:
40a072d7 515 batadv_debugfs_del_meshif(soft_iface);
c6c8fea2 516unreg_sysfs:
5853e22c 517 batadv_sysfs_del_meshif(soft_iface);
c6c8fea2 518unreg_soft_iface:
1c9b0550 519 free_percpu(bat_priv->bat_counters);
06ba7ce2 520 unregister_netdevice(soft_iface);
c6c8fea2
SE
521 return NULL;
522
1c9b0550
ML
523free_bat_counters:
524 free_percpu(bat_priv->bat_counters);
c6c8fea2
SE
525free_soft_iface:
526 free_netdev(soft_iface);
527out:
528 return NULL;
529}
530
04b482a2 531void batadv_softif_destroy(struct net_device *soft_iface)
c6c8fea2 532{
40a072d7 533 batadv_debugfs_del_meshif(soft_iface);
5853e22c 534 batadv_sysfs_del_meshif(soft_iface);
3193e8fd 535 batadv_mesh_free(soft_iface);
c6c8fea2
SE
536 unregister_netdevice(soft_iface);
537}
538
04b482a2 539int batadv_softif_is_valid(const struct net_device *net_dev)
e44d8fe2 540{
0294ca0d 541 if (net_dev->netdev_ops->ndo_start_xmit == batadv_interface_tx)
e44d8fe2 542 return 1;
e44d8fe2
SE
543
544 return 0;
545}
546
c6c8fea2 547/* ethtool */
0294ca0d 548static int batadv_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
c6c8fea2
SE
549{
550 cmd->supported = 0;
551 cmd->advertising = 0;
70739497 552 ethtool_cmd_speed_set(cmd, SPEED_10);
c6c8fea2
SE
553 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
0294ca0d
SE
564static void batadv_get_drvinfo(struct net_device *dev,
565 struct ethtool_drvinfo *info)
c6c8fea2
SE
566{
567 strcpy(info->driver, "B.A.T.M.A.N. advanced");
42d0b044 568 strcpy(info->version, BATADV_SOURCE_VERSION);
c6c8fea2
SE
569 strcpy(info->fw_version, "N/A");
570 strcpy(info->bus_info, "batman");
571}
572
0294ca0d 573static u32 batadv_get_msglevel(struct net_device *dev)
c6c8fea2
SE
574{
575 return -EOPNOTSUPP;
576}
577
0294ca0d 578static void batadv_set_msglevel(struct net_device *dev, u32 value)
c6c8fea2
SE
579{
580}
581
0294ca0d 582static u32 batadv_get_link(struct net_device *dev)
c6c8fea2
SE
583{
584 return 1;
585}
f8214865
MH
586
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];
0294ca0d 593} batadv_counters_strings[] = {
1c9b0550
ML
594 { "tx" },
595 { "tx_bytes" },
596 { "tx_dropped" },
597 { "rx" },
598 { "rx_bytes" },
f8214865
MH
599 { "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)
0294ca0d
SE
617 memcpy(data, batadv_counters_strings,
618 sizeof(batadv_counters_strings));
f8214865
MH
619}
620
621static void batadv_get_ethtool_stats(struct net_device *dev,
622 struct ethtool_stats *stats,
623 uint64_t *data)
624{
56303d34 625 struct batadv_priv *bat_priv = netdev_priv(dev);
f8214865
MH
626 int i;
627
d69909d2 628 for (i = 0; i < BATADV_CNT_NUM; i++)
f8214865
MH
629 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)
d69909d2 635 return BATADV_CNT_NUM;
f8214865
MH
636
637 return -EOPNOTSUPP;
638}
This page took 0.159954 seconds and 5 git commands to generate.