]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/batman-adv/soft-interface.c
batman-adv: detect not yet announced clients
[mirror_ubuntu-artful-kernel.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
SE
109 struct sockaddr *addr = p;
110
111 if (!is_valid_ether_addr(addr->sa_data))
112 return -EADDRNOTAVAIL;
113
015758d0 114 /* only modify transtable if it has been initialized before */
39c75a51 115 if (atomic_read(&bat_priv->mesh_state) == BATADV_MESH_ACTIVE) {
08c36d3e
SE
116 batadv_tt_local_remove(bat_priv, dev->dev_addr,
117 "mac address changed", false);
42d0b044 118 batadv_tt_local_add(dev, addr->sa_data, BATADV_NULL_IFINDEX);
c6c8fea2
SE
119 }
120
121 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
28009a6c 122 dev->addr_assign_type &= ~NET_ADDR_RANDOM;
c6c8fea2
SE
123 return 0;
124}
125
0294ca0d 126static int batadv_interface_change_mtu(struct net_device *dev, int new_mtu)
c6c8fea2
SE
127{
128 /* check ranges */
9563877e 129 if ((new_mtu < 68) || (new_mtu > batadv_hardif_min_mtu(dev)))
c6c8fea2
SE
130 return -EINVAL;
131
132 dev->mtu = new_mtu;
133
134 return 0;
135}
136
0294ca0d
SE
137static int batadv_interface_tx(struct sk_buff *skb,
138 struct net_device *soft_iface)
c6c8fea2
SE
139{
140 struct ethhdr *ethhdr = (struct ethhdr *)skb->data;
56303d34
SE
141 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
142 struct batadv_hard_iface *primary_if = NULL;
96412690 143 struct batadv_bcast_packet *bcast_packet;
c6c8fea2 144 struct vlan_ethhdr *vhdr;
7e071c79 145 __be16 ethertype = __constant_htons(BATADV_ETH_P_BATMAN);
b1a8c04b
SW
146 static const uint8_t stp_addr[ETH_ALEN] = {0x01, 0x80, 0xC2, 0x00, 0x00,
147 0x00};
be7af5cf 148 unsigned int header_len = 0;
c6c8fea2 149 int data_len = skb->len, ret;
7a5cc242 150 short vid __maybe_unused = -1;
be7af5cf 151 bool do_bcast = false;
bbb1f90e 152 uint32_t seqno;
c6c8fea2 153
39c75a51 154 if (atomic_read(&bat_priv->mesh_state) != BATADV_MESH_ACTIVE)
c6c8fea2
SE
155 goto dropped;
156
157 soft_iface->trans_start = jiffies;
158
159 switch (ntohs(ethhdr->h_proto)) {
160 case ETH_P_8021Q:
161 vhdr = (struct vlan_ethhdr *)skb->data;
162 vid = ntohs(vhdr->h_vlan_TCI) & VLAN_VID_MASK;
163
7e071c79 164 if (vhdr->h_vlan_encapsulated_proto != ethertype)
c6c8fea2
SE
165 break;
166
167 /* fall through */
7e071c79 168 case BATADV_ETH_P_BATMAN:
c6c8fea2 169 goto dropped;
a7f6ee94 170 }
c6c8fea2 171
08adf151 172 if (batadv_bla_tx(bat_priv, skb, vid))
23721387
SW
173 goto dropped;
174
a73105b8 175 /* Register the client MAC in the transtable */
08c36d3e 176 batadv_tt_local_add(soft_iface, ethhdr->h_source, skb->skb_iif);
c6c8fea2 177
b1a8c04b
SW
178 /* don't accept stp packets. STP does not help in meshes.
179 * better use the bridge loop avoidance ...
180 */
1eda58bf 181 if (batadv_compare_eth(ethhdr->h_dest, stp_addr))
b1a8c04b
SW
182 goto dropped;
183
be7af5cf
ML
184 if (is_multicast_ether_addr(ethhdr->h_dest)) {
185 do_bcast = true;
c6c8fea2 186
be7af5cf 187 switch (atomic_read(&bat_priv->gw_mode)) {
cd646ab1 188 case BATADV_GW_MODE_SERVER:
be7af5cf 189 /* gateway servers should not send dhcp
9cfc7bd6
SE
190 * requests into the mesh
191 */
7cf06bc6 192 ret = batadv_gw_is_dhcp_target(skb, &header_len);
be7af5cf
ML
193 if (ret)
194 goto dropped;
195 break;
cd646ab1 196 case BATADV_GW_MODE_CLIENT:
be7af5cf 197 /* gateway clients should send dhcp requests
9cfc7bd6
SE
198 * via unicast to their gateway
199 */
7cf06bc6 200 ret = batadv_gw_is_dhcp_target(skb, &header_len);
be7af5cf
ML
201 if (ret)
202 do_bcast = false;
203 break;
cd646ab1 204 case BATADV_GW_MODE_OFF:
be7af5cf
ML
205 default:
206 break;
207 }
c6c8fea2
SE
208 }
209
210 /* ethernet packet should be broadcasted */
211 if (do_bcast) {
e5d89254 212 primary_if = batadv_primary_if_get_selected(bat_priv);
32ae9b22 213 if (!primary_if)
c6c8fea2
SE
214 goto dropped;
215
04b482a2 216 if (batadv_skb_head_push(skb, sizeof(*bcast_packet)) < 0)
c6c8fea2
SE
217 goto dropped;
218
96412690 219 bcast_packet = (struct batadv_bcast_packet *)skb->data;
7e071c79 220 bcast_packet->header.version = BATADV_COMPAT_VERSION;
42d0b044 221 bcast_packet->header.ttl = BATADV_TTL;
c6c8fea2
SE
222
223 /* batman packet type: broadcast */
acd34afa 224 bcast_packet->header.packet_type = BATADV_BCAST;
162d549c 225 bcast_packet->reserved = 0;
c6c8fea2
SE
226
227 /* hw address of first interface is the orig mac because only
9cfc7bd6
SE
228 * this mac is known throughout the mesh
229 */
c6c8fea2 230 memcpy(bcast_packet->orig,
32ae9b22 231 primary_if->net_dev->dev_addr, ETH_ALEN);
c6c8fea2
SE
232
233 /* set broadcast sequence number */
bbb1f90e
SE
234 seqno = atomic_inc_return(&bat_priv->bcast_seqno);
235 bcast_packet->seqno = htonl(seqno);
c6c8fea2 236
9455e34c 237 batadv_add_bcast_packet_to_list(bat_priv, skb, 1);
c6c8fea2
SE
238
239 /* a copy is stored in the bcast list, therefore removing
9cfc7bd6
SE
240 * the original skb.
241 */
c6c8fea2
SE
242 kfree_skb(skb);
243
244 /* unicast packet */
245 } else {
cd646ab1 246 if (atomic_read(&bat_priv->gw_mode) != BATADV_GW_MODE_OFF) {
7cf06bc6 247 ret = batadv_gw_out_of_range(bat_priv, skb, ethhdr);
be7af5cf
ML
248 if (ret)
249 goto dropped;
250 }
251
88ed1e77 252 ret = batadv_unicast_send_skb(skb, bat_priv);
c6c8fea2
SE
253 if (ret != 0)
254 goto dropped_freed;
255 }
256
1c9b0550
ML
257 batadv_inc_counter(bat_priv, BATADV_CNT_TX);
258 batadv_add_counter(bat_priv, BATADV_CNT_TX_BYTES, data_len);
c6c8fea2
SE
259 goto end;
260
261dropped:
262 kfree_skb(skb);
263dropped_freed:
1c9b0550 264 batadv_inc_counter(bat_priv, BATADV_CNT_TX_DROPPED);
c6c8fea2 265end:
32ae9b22 266 if (primary_if)
e5d89254 267 batadv_hardif_free_ref(primary_if);
c6c8fea2
SE
268 return NETDEV_TX_OK;
269}
270
04b482a2 271void batadv_interface_rx(struct net_device *soft_iface,
56303d34 272 struct sk_buff *skb, struct batadv_hard_iface *recv_if,
04b482a2 273 int hdr_size)
c6c8fea2 274{
56303d34 275 struct batadv_priv *bat_priv = netdev_priv(soft_iface);
c6c8fea2
SE
276 struct ethhdr *ethhdr;
277 struct vlan_ethhdr *vhdr;
04c9f416 278 struct batadv_header *batadv_header = (struct batadv_header *)skb->data;
7a5cc242 279 short vid __maybe_unused = -1;
7e071c79 280 __be16 ethertype = __constant_htons(BATADV_ETH_P_BATMAN);
2d3f6ccc
SW
281 bool is_bcast;
282
04c9f416 283 is_bcast = (batadv_header->packet_type == BATADV_BCAST);
c6c8fea2
SE
284
285 /* check if enough space is available for pulling, and pull */
286 if (!pskb_may_pull(skb, hdr_size))
287 goto dropped;
288
289 skb_pull_rcsum(skb, hdr_size);
290 skb_reset_mac_header(skb);
291
292 ethhdr = (struct ethhdr *)skb_mac_header(skb);
293
294 switch (ntohs(ethhdr->h_proto)) {
295 case ETH_P_8021Q:
296 vhdr = (struct vlan_ethhdr *)skb->data;
297 vid = ntohs(vhdr->h_vlan_TCI) & VLAN_VID_MASK;
298
7e071c79 299 if (vhdr->h_vlan_encapsulated_proto != ethertype)
c6c8fea2
SE
300 break;
301
302 /* fall through */
7e071c79 303 case BATADV_ETH_P_BATMAN:
c6c8fea2
SE
304 goto dropped;
305 }
306
c6c8fea2
SE
307 /* skb->dev & skb->pkt_type are set here */
308 if (unlikely(!pskb_may_pull(skb, ETH_HLEN)))
309 goto dropped;
310 skb->protocol = eth_type_trans(skb, soft_iface);
311
25985edc 312 /* should not be necessary anymore as we use skb_pull_rcsum()
c6c8fea2 313 * TODO: please verify this and remove this TODO
9cfc7bd6
SE
314 * -- Dec 21st 2009, Simon Wunderlich
315 */
c6c8fea2 316
9cfc7bd6 317 /* skb->ip_summed = CHECKSUM_UNNECESSARY; */
c6c8fea2 318
1c9b0550
ML
319 batadv_inc_counter(bat_priv, BATADV_CNT_RX);
320 batadv_add_counter(bat_priv, BATADV_CNT_RX_BYTES,
321 skb->len + ETH_HLEN);
c6c8fea2
SE
322
323 soft_iface->last_rx = jiffies;
324
08c36d3e 325 if (batadv_is_ap_isolated(bat_priv, ethhdr->h_source, ethhdr->h_dest))
59b699cd
AQ
326 goto dropped;
327
23721387
SW
328 /* Let the bridge loop avoidance check the packet. If will
329 * not handle it, we can safely push it up.
330 */
04c9f416 331 if (batadv_bla_rx(bat_priv, skb, vid, is_bcast))
23721387
SW
332 goto out;
333
c6c8fea2 334 netif_rx(skb);
ba85fac2 335 goto out;
c6c8fea2
SE
336
337dropped:
338 kfree_skb(skb);
339out:
340 return;
341}
342
0294ca0d
SE
343static const struct net_device_ops batadv_netdev_ops = {
344 .ndo_open = batadv_interface_open,
345 .ndo_stop = batadv_interface_release,
346 .ndo_get_stats = batadv_interface_stats,
347 .ndo_set_mac_address = batadv_interface_set_mac_addr,
348 .ndo_change_mtu = batadv_interface_change_mtu,
349 .ndo_start_xmit = batadv_interface_tx,
c6c8fea2
SE
350 .ndo_validate_addr = eth_validate_addr
351};
c6c8fea2 352
0294ca0d 353static void batadv_interface_setup(struct net_device *dev)
c6c8fea2 354{
56303d34 355 struct batadv_priv *priv = netdev_priv(dev);
c6c8fea2
SE
356
357 ether_setup(dev);
358
0294ca0d 359 dev->netdev_ops = &batadv_netdev_ops;
c6c8fea2 360 dev->destructor = free_netdev;
af20b710 361 dev->tx_queue_len = 0;
c6c8fea2 362
9cfc7bd6 363 /* can't call min_mtu, because the needed variables
c6c8fea2
SE
364 * have not been initialized yet
365 */
366 dev->mtu = ETH_DATA_LEN;
6e215fd8 367 /* reserve more space in the skbuff for our header */
c11fdfae 368 dev->hard_header_len = BATADV_HEADER_LEN;
c6c8fea2
SE
369
370 /* generate random address */
28009a6c 371 eth_hw_addr_random(dev);
c6c8fea2 372
0294ca0d 373 SET_ETHTOOL_OPS(dev, &batadv_ethtool_ops);
c6c8fea2 374
704509b8 375 memset(priv, 0, sizeof(*priv));
c6c8fea2
SE
376}
377
04b482a2 378struct net_device *batadv_softif_create(const char *name)
c6c8fea2
SE
379{
380 struct net_device *soft_iface;
56303d34 381 struct batadv_priv *bat_priv;
c6c8fea2 382 int ret;
d69909d2 383 size_t cnt_len = sizeof(uint64_t) * BATADV_CNT_NUM;
c6c8fea2 384
0294ca0d
SE
385 soft_iface = alloc_netdev(sizeof(*bat_priv), name,
386 batadv_interface_setup);
c6c8fea2 387
320f422f 388 if (!soft_iface)
c6c8fea2 389 goto out;
c6c8fea2 390
1c9b0550
ML
391 bat_priv = netdev_priv(soft_iface);
392
393 /* batadv_interface_stats() needs to be available as soon as
394 * register_netdevice() has been called
395 */
396 bat_priv->bat_counters = __alloc_percpu(cnt_len, __alignof__(uint64_t));
397 if (!bat_priv->bat_counters)
398 goto free_soft_iface;
399
c3caf519 400 ret = register_netdevice(soft_iface);
c6c8fea2
SE
401 if (ret < 0) {
402 pr_err("Unable to register the batman interface '%s': %i\n",
403 name, ret);
1c9b0550 404 goto free_bat_counters;
c6c8fea2
SE
405 }
406
c6c8fea2
SE
407 atomic_set(&bat_priv->aggregated_ogms, 1);
408 atomic_set(&bat_priv->bonding, 0);
23721387 409 atomic_set(&bat_priv->bridge_loop_avoidance, 0);
59b699cd 410 atomic_set(&bat_priv->ap_isolation, 0);
acd34afa 411 atomic_set(&bat_priv->vis_mode, BATADV_VIS_TYPE_CLIENT_UPDATE);
cd646ab1 412 atomic_set(&bat_priv->gw_mode, BATADV_GW_MODE_OFF);
c6c8fea2
SE
413 atomic_set(&bat_priv->gw_sel_class, 20);
414 atomic_set(&bat_priv->gw_bandwidth, 41);
415 atomic_set(&bat_priv->orig_interval, 1000);
8681a1c4 416 atomic_set(&bat_priv->hop_penalty, 30);
c6c8fea2
SE
417 atomic_set(&bat_priv->log_level, 0);
418 atomic_set(&bat_priv->fragmentation, 1);
42d0b044
SE
419 atomic_set(&bat_priv->bcast_queue_left, BATADV_BCAST_QUEUE_LEN);
420 atomic_set(&bat_priv->batman_queue_left, BATADV_BATMAN_QUEUE_LEN);
c6c8fea2 421
39c75a51 422 atomic_set(&bat_priv->mesh_state, BATADV_MESH_INACTIVE);
c6c8fea2 423 atomic_set(&bat_priv->bcast_seqno, 1);
807736f6
SE
424 atomic_set(&bat_priv->tt.vn, 0);
425 atomic_set(&bat_priv->tt.local_changes, 0);
426 atomic_set(&bat_priv->tt.ogm_append_cnt, 0);
427#ifdef CONFIG_BATMAN_ADV_BLA
428 atomic_set(&bat_priv->bla.num_requests, 0);
429#endif
430 bat_priv->tt.last_changeset = NULL;
431 bat_priv->tt.last_changeset_len = 0;
432 bat_priv->tt.poss_change = false;
c6c8fea2
SE
433
434 bat_priv->primary_if = NULL;
435 bat_priv->num_ifaces = 0;
c6c8fea2 436
3193e8fd 437 ret = batadv_algo_select(bat_priv, batadv_routing_algo);
1c280471 438 if (ret < 0)
1c9b0550 439 goto unreg_soft_iface;
1c280471 440
5853e22c 441 ret = batadv_sysfs_add_meshif(soft_iface);
c6c8fea2 442 if (ret < 0)
1c9b0550 443 goto unreg_soft_iface;
c6c8fea2 444
40a072d7 445 ret = batadv_debugfs_add_meshif(soft_iface);
c6c8fea2
SE
446 if (ret < 0)
447 goto unreg_sysfs;
448
3193e8fd 449 ret = batadv_mesh_init(soft_iface);
c6c8fea2
SE
450 if (ret < 0)
451 goto unreg_debugfs;
452
453 return soft_iface;
454
455unreg_debugfs:
40a072d7 456 batadv_debugfs_del_meshif(soft_iface);
c6c8fea2 457unreg_sysfs:
5853e22c 458 batadv_sysfs_del_meshif(soft_iface);
c6c8fea2 459unreg_soft_iface:
1c9b0550 460 free_percpu(bat_priv->bat_counters);
06ba7ce2 461 unregister_netdevice(soft_iface);
c6c8fea2
SE
462 return NULL;
463
1c9b0550
ML
464free_bat_counters:
465 free_percpu(bat_priv->bat_counters);
c6c8fea2
SE
466free_soft_iface:
467 free_netdev(soft_iface);
468out:
469 return NULL;
470}
471
04b482a2 472void batadv_softif_destroy(struct net_device *soft_iface)
c6c8fea2 473{
40a072d7 474 batadv_debugfs_del_meshif(soft_iface);
5853e22c 475 batadv_sysfs_del_meshif(soft_iface);
3193e8fd 476 batadv_mesh_free(soft_iface);
c6c8fea2
SE
477 unregister_netdevice(soft_iface);
478}
479
04b482a2 480int batadv_softif_is_valid(const struct net_device *net_dev)
e44d8fe2 481{
0294ca0d 482 if (net_dev->netdev_ops->ndo_start_xmit == batadv_interface_tx)
e44d8fe2 483 return 1;
e44d8fe2
SE
484
485 return 0;
486}
487
c6c8fea2 488/* ethtool */
0294ca0d 489static int batadv_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
c6c8fea2
SE
490{
491 cmd->supported = 0;
492 cmd->advertising = 0;
70739497 493 ethtool_cmd_speed_set(cmd, SPEED_10);
c6c8fea2
SE
494 cmd->duplex = DUPLEX_FULL;
495 cmd->port = PORT_TP;
496 cmd->phy_address = 0;
497 cmd->transceiver = XCVR_INTERNAL;
498 cmd->autoneg = AUTONEG_DISABLE;
499 cmd->maxtxpkt = 0;
500 cmd->maxrxpkt = 0;
501
502 return 0;
503}
504
0294ca0d
SE
505static void batadv_get_drvinfo(struct net_device *dev,
506 struct ethtool_drvinfo *info)
c6c8fea2
SE
507{
508 strcpy(info->driver, "B.A.T.M.A.N. advanced");
42d0b044 509 strcpy(info->version, BATADV_SOURCE_VERSION);
c6c8fea2
SE
510 strcpy(info->fw_version, "N/A");
511 strcpy(info->bus_info, "batman");
512}
513
0294ca0d 514static u32 batadv_get_msglevel(struct net_device *dev)
c6c8fea2
SE
515{
516 return -EOPNOTSUPP;
517}
518
0294ca0d 519static void batadv_set_msglevel(struct net_device *dev, u32 value)
c6c8fea2
SE
520{
521}
522
0294ca0d 523static u32 batadv_get_link(struct net_device *dev)
c6c8fea2
SE
524{
525 return 1;
526}
f8214865
MH
527
528/* Inspired by drivers/net/ethernet/dlink/sundance.c:1702
529 * Declare each description string in struct.name[] to get fixed sized buffer
530 * and compile time checking for strings longer than ETH_GSTRING_LEN.
531 */
532static const struct {
533 const char name[ETH_GSTRING_LEN];
0294ca0d 534} batadv_counters_strings[] = {
1c9b0550
ML
535 { "tx" },
536 { "tx_bytes" },
537 { "tx_dropped" },
538 { "rx" },
539 { "rx_bytes" },
f8214865
MH
540 { "forward" },
541 { "forward_bytes" },
542 { "mgmt_tx" },
543 { "mgmt_tx_bytes" },
544 { "mgmt_rx" },
545 { "mgmt_rx_bytes" },
546 { "tt_request_tx" },
547 { "tt_request_rx" },
548 { "tt_response_tx" },
549 { "tt_response_rx" },
550 { "tt_roam_adv_tx" },
551 { "tt_roam_adv_rx" },
552};
553
554static void batadv_get_strings(struct net_device *dev, uint32_t stringset,
555 uint8_t *data)
556{
557 if (stringset == ETH_SS_STATS)
0294ca0d
SE
558 memcpy(data, batadv_counters_strings,
559 sizeof(batadv_counters_strings));
f8214865
MH
560}
561
562static void batadv_get_ethtool_stats(struct net_device *dev,
563 struct ethtool_stats *stats,
564 uint64_t *data)
565{
56303d34 566 struct batadv_priv *bat_priv = netdev_priv(dev);
f8214865
MH
567 int i;
568
d69909d2 569 for (i = 0; i < BATADV_CNT_NUM; i++)
f8214865
MH
570 data[i] = batadv_sum_counter(bat_priv, i);
571}
572
573static int batadv_get_sset_count(struct net_device *dev, int stringset)
574{
575 if (stringset == ETH_SS_STATS)
d69909d2 576 return BATADV_CNT_NUM;
f8214865
MH
577
578 return -EOPNOTSUPP;
579}