batman-adv: refactor wifi interface detection
[linux-2.6-block.git] / net / batman-adv / bat_v_elp.c
CommitLineData
d6f94d91
LL
1/* Copyright (C) 2011-2016 B.A.T.M.A.N. contributors:
2 *
3 * Linus Lüssing, Marek Lindner
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, see <http://www.gnu.org/licenses/>.
16 */
17
18#include "bat_v_elp.h"
19#include "main.h"
20
21#include <linux/atomic.h>
22#include <linux/byteorder/generic.h>
23#include <linux/errno.h>
24#include <linux/etherdevice.h>
c833484e 25#include <linux/ethtool.h>
d6f94d91
LL
26#include <linux/fs.h>
27#include <linux/if_ether.h>
28#include <linux/jiffies.h>
29#include <linux/kernel.h>
c833484e 30#include <linux/kref.h>
d6f94d91
LL
31#include <linux/netdevice.h>
32#include <linux/random.h>
33#include <linux/rculist.h>
34#include <linux/rcupdate.h>
c833484e 35#include <linux/rtnetlink.h>
d6f94d91
LL
36#include <linux/skbuff.h>
37#include <linux/stddef.h>
38#include <linux/string.h>
39#include <linux/types.h>
40#include <linux/workqueue.h>
c833484e 41#include <net/cfg80211.h>
d6f94d91
LL
42
43#include "bat_algo.h"
9323158e 44#include "bat_v_ogm.h"
d6f94d91 45#include "hard-interface.h"
ba412080 46#include "log.h"
162bd64c 47#include "originator.h"
d6f94d91 48#include "packet.h"
162bd64c 49#include "routing.h"
d6f94d91
LL
50#include "send.h"
51
52/**
53 * batadv_v_elp_start_timer - restart timer for ELP periodic work
54 * @hard_iface: the interface for which the timer has to be reset
55 */
56static void batadv_v_elp_start_timer(struct batadv_hard_iface *hard_iface)
57{
58 unsigned int msecs;
59
60 msecs = atomic_read(&hard_iface->bat_v.elp_interval) - BATADV_JITTER;
61 msecs += prandom_u32() % (2 * BATADV_JITTER);
62
63 queue_delayed_work(batadv_event_workqueue, &hard_iface->bat_v.elp_wq,
64 msecs_to_jiffies(msecs));
65}
66
c833484e
AQ
67/**
68 * batadv_v_elp_get_throughput - get the throughput towards a neighbour
69 * @neigh: the neighbour for which the throughput has to be obtained
70 *
71 * Return: The throughput towards the given neighbour in multiples of 100kpbs
72 * (a value of '1' equals to 0.1Mbps, '10' equals 1Mbps, etc).
73 */
74static u32 batadv_v_elp_get_throughput(struct batadv_hardif_neigh_node *neigh)
75{
76 struct batadv_hard_iface *hard_iface = neigh->if_incoming;
77 struct ethtool_link_ksettings link_settings;
78 struct station_info sinfo;
79 u32 throughput;
80 int ret;
81
82 /* if the user specified a customised value for this interface, then
83 * return it directly
84 */
85 throughput = atomic_read(&hard_iface->bat_v.throughput_override);
86 if (throughput != 0)
87 return throughput;
88
89 /* if this is a wireless device, then ask its throughput through
90 * cfg80211 API
91 */
92 if (batadv_is_wifi_netdev(hard_iface->net_dev)) {
f44a3ae9
ML
93 if (!batadv_is_cfg80211_netdev(hard_iface->net_dev))
94 /* unsupported WiFi driver version */
95 goto default_throughput;
c833484e 96
f44a3ae9
ML
97 ret = cfg80211_get_station(hard_iface->net_dev,
98 neigh->addr, &sinfo);
99 if (ret == -ENOENT) {
100 /* Node is not associated anymore! It would be
101 * possible to delete this neighbor. For now set
102 * the throughput metric to 0.
103 */
104 return 0;
105 }
106 if (!ret)
107 return sinfo.expected_throughput / 100;
c833484e
AQ
108 }
109
110 /* if not a wifi interface, check if this device provides data via
111 * ethtool (e.g. an Ethernet adapter)
112 */
113 memset(&link_settings, 0, sizeof(link_settings));
114 rtnl_lock();
115 ret = __ethtool_get_link_ksettings(hard_iface->net_dev, &link_settings);
116 rtnl_unlock();
117 if (ret == 0) {
118 /* link characteristics might change over time */
119 if (link_settings.base.duplex == DUPLEX_FULL)
120 hard_iface->bat_v.flags |= BATADV_FULL_DUPLEX;
121 else
122 hard_iface->bat_v.flags &= ~BATADV_FULL_DUPLEX;
123
124 throughput = link_settings.base.speed;
125 if (throughput && (throughput != SPEED_UNKNOWN))
126 return throughput * 10;
127 }
128
129default_throughput:
130 if (!(hard_iface->bat_v.flags & BATADV_WARNING_DEFAULT)) {
131 batadv_info(hard_iface->soft_iface,
132 "WiFi driver or ethtool info does not provide information about link speeds on interface %s, therefore defaulting to hardcoded throughput values of %u.%1u Mbps. Consider overriding the throughput manually or checking your driver.\n",
133 hard_iface->net_dev->name,
134 BATADV_THROUGHPUT_DEFAULT_VALUE / 10,
135 BATADV_THROUGHPUT_DEFAULT_VALUE % 10);
136 hard_iface->bat_v.flags |= BATADV_WARNING_DEFAULT;
137 }
138
139 /* if none of the above cases apply, return the base_throughput */
140 return BATADV_THROUGHPUT_DEFAULT_VALUE;
141}
142
143/**
144 * batadv_v_elp_throughput_metric_update - worker updating the throughput metric
145 * of a single hop neighbour
146 * @work: the work queue item
147 */
148void batadv_v_elp_throughput_metric_update(struct work_struct *work)
149{
150 struct batadv_hardif_neigh_node_bat_v *neigh_bat_v;
151 struct batadv_hardif_neigh_node *neigh;
152
153 neigh_bat_v = container_of(work, struct batadv_hardif_neigh_node_bat_v,
154 metric_work);
155 neigh = container_of(neigh_bat_v, struct batadv_hardif_neigh_node,
156 bat_v);
157
158 ewma_throughput_add(&neigh->bat_v.throughput,
159 batadv_v_elp_get_throughput(neigh));
160
161 /* decrement refcounter to balance increment performed before scheduling
162 * this task
163 */
164 batadv_hardif_neigh_put(neigh);
165}
166
8d2d499e
AQ
167/**
168 * batadv_v_elp_wifi_neigh_probe - send link probing packets to a neighbour
169 * @neigh: the neighbour to probe
170 *
171 * Sends a predefined number of unicast wifi packets to a given neighbour in
172 * order to trigger the throughput estimation on this link by the RC algorithm.
173 * Packets are sent only if there there is not enough payload unicast traffic
174 * towards this neighbour..
175 *
176 * Return: True on success and false in case of error during skb preparation.
177 */
178static bool
179batadv_v_elp_wifi_neigh_probe(struct batadv_hardif_neigh_node *neigh)
180{
181 struct batadv_hard_iface *hard_iface = neigh->if_incoming;
182 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
183 unsigned long last_tx_diff;
184 struct sk_buff *skb;
185 int probe_len, i;
186 int elp_skb_len;
187
188 /* this probing routine is for Wifi neighbours only */
189 if (!batadv_is_wifi_netdev(hard_iface->net_dev))
190 return true;
191
192 /* probe the neighbor only if no unicast packets have been sent
193 * to it in the last 100 milliseconds: this is the rate control
194 * algorithm sampling interval (minstrel). In this way, if not
195 * enough traffic has been sent to the neighbor, batman-adv can
196 * generate 2 probe packets and push the RC algorithm to perform
197 * the sampling
198 */
199 last_tx_diff = jiffies_to_msecs(jiffies - neigh->bat_v.last_unicast_tx);
200 if (last_tx_diff <= BATADV_ELP_PROBE_MAX_TX_DIFF)
201 return true;
202
203 probe_len = max_t(int, sizeof(struct batadv_elp_packet),
204 BATADV_ELP_MIN_PROBE_SIZE);
205
206 for (i = 0; i < BATADV_ELP_PROBES_PER_NODE; i++) {
207 elp_skb_len = hard_iface->bat_v.elp_skb->len;
208 skb = skb_copy_expand(hard_iface->bat_v.elp_skb, 0,
209 probe_len - elp_skb_len,
210 GFP_ATOMIC);
211 if (!skb)
212 return false;
213
214 /* Tell the skb to get as big as the allocated space (we want
215 * the packet to be exactly of that size to make the link
216 * throughput estimation effective.
217 */
218 skb_put(skb, probe_len - hard_iface->bat_v.elp_skb->len);
219
220 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
221 "Sending unicast (probe) ELP packet on interface %s to %pM\n",
222 hard_iface->net_dev->name, neigh->addr);
223
224 batadv_send_skb_packet(skb, hard_iface, neigh->addr);
225 }
226
227 return true;
228}
229
d6f94d91
LL
230/**
231 * batadv_v_elp_periodic_work - ELP periodic task per interface
232 * @work: work queue item
233 *
234 * Emits broadcast ELP message in regular intervals.
235 */
236static void batadv_v_elp_periodic_work(struct work_struct *work)
237{
c833484e 238 struct batadv_hardif_neigh_node *hardif_neigh;
d6f94d91
LL
239 struct batadv_hard_iface *hard_iface;
240 struct batadv_hard_iface_bat_v *bat_v;
241 struct batadv_elp_packet *elp_packet;
242 struct batadv_priv *bat_priv;
243 struct sk_buff *skb;
244 u32 elp_interval;
245
246 bat_v = container_of(work, struct batadv_hard_iface_bat_v, elp_wq.work);
247 hard_iface = container_of(bat_v, struct batadv_hard_iface, bat_v);
248 bat_priv = netdev_priv(hard_iface->soft_iface);
249
250 if (atomic_read(&bat_priv->mesh_state) == BATADV_MESH_DEACTIVATING)
251 goto out;
252
253 /* we are in the process of shutting this interface down */
254 if ((hard_iface->if_status == BATADV_IF_NOT_IN_USE) ||
255 (hard_iface->if_status == BATADV_IF_TO_BE_REMOVED))
256 goto out;
257
258 /* the interface was enabled but may not be ready yet */
259 if (hard_iface->if_status != BATADV_IF_ACTIVE)
260 goto restart_timer;
261
262 skb = skb_copy(hard_iface->bat_v.elp_skb, GFP_ATOMIC);
263 if (!skb)
264 goto restart_timer;
265
266 elp_packet = (struct batadv_elp_packet *)skb->data;
267 elp_packet->seqno = htonl(atomic_read(&hard_iface->bat_v.elp_seqno));
268 elp_interval = atomic_read(&hard_iface->bat_v.elp_interval);
269 elp_packet->elp_interval = htonl(elp_interval);
270
271 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
272 "Sending broadcast ELP packet on interface %s, seqno %u\n",
273 hard_iface->net_dev->name,
274 atomic_read(&hard_iface->bat_v.elp_seqno));
275
95d39278 276 batadv_send_broadcast_skb(skb, hard_iface);
d6f94d91
LL
277
278 atomic_inc(&hard_iface->bat_v.elp_seqno);
279
c833484e
AQ
280 /* The throughput metric is updated on each sent packet. This way, if a
281 * node is dead and no longer sends packets, batman-adv is still able to
282 * react timely to its death.
283 *
284 * The throughput metric is updated by following these steps:
285 * 1) if the hard_iface is wifi => send a number of unicast ELPs for
286 * probing/sampling to each neighbor
287 * 2) update the throughput metric value of each neighbor (note that the
288 * value retrieved in this step might be 100ms old because the
289 * probing packets at point 1) could still be in the HW queue)
290 */
291 rcu_read_lock();
292 hlist_for_each_entry_rcu(hardif_neigh, &hard_iface->neigh_list, list) {
8d2d499e
AQ
293 if (!batadv_v_elp_wifi_neigh_probe(hardif_neigh))
294 /* if something goes wrong while probing, better to stop
295 * sending packets immediately and reschedule the task
296 */
297 break;
298
c833484e
AQ
299 if (!kref_get_unless_zero(&hardif_neigh->refcount))
300 continue;
301
302 /* Reading the estimated throughput from cfg80211 is a task that
303 * may sleep and that is not allowed in an rcu protected
304 * context. Therefore schedule a task for that.
305 */
306 queue_work(batadv_event_workqueue,
307 &hardif_neigh->bat_v.metric_work);
308 }
309 rcu_read_unlock();
310
d6f94d91
LL
311restart_timer:
312 batadv_v_elp_start_timer(hard_iface);
313out:
314 return;
315}
316
317/**
318 * batadv_v_elp_iface_enable - setup the ELP interface private resources
319 * @hard_iface: interface for which the data has to be prepared
320 *
321 * Return: 0 on success or a -ENOMEM in case of failure.
322 */
323int batadv_v_elp_iface_enable(struct batadv_hard_iface *hard_iface)
324{
325 struct batadv_elp_packet *elp_packet;
326 unsigned char *elp_buff;
327 u32 random_seqno;
328 size_t size;
329 int res = -ENOMEM;
330
331 size = ETH_HLEN + NET_IP_ALIGN + BATADV_ELP_HLEN;
332 hard_iface->bat_v.elp_skb = dev_alloc_skb(size);
333 if (!hard_iface->bat_v.elp_skb)
334 goto out;
335
336 skb_reserve(hard_iface->bat_v.elp_skb, ETH_HLEN + NET_IP_ALIGN);
1e5d343b 337 elp_buff = skb_put(hard_iface->bat_v.elp_skb, BATADV_ELP_HLEN);
d6f94d91
LL
338 elp_packet = (struct batadv_elp_packet *)elp_buff;
339 memset(elp_packet, 0, BATADV_ELP_HLEN);
340
341 elp_packet->packet_type = BATADV_ELP;
342 elp_packet->version = BATADV_COMPAT_VERSION;
343
344 /* randomize initial seqno to avoid collision */
345 get_random_bytes(&random_seqno, sizeof(random_seqno));
346 atomic_set(&hard_iface->bat_v.elp_seqno, random_seqno);
d6f94d91 347
c833484e
AQ
348 /* assume full-duplex by default */
349 hard_iface->bat_v.flags |= BATADV_FULL_DUPLEX;
350
351 /* warn the user (again) if there is no throughput data is available */
352 hard_iface->bat_v.flags &= ~BATADV_WARNING_DEFAULT;
353
354 if (batadv_is_wifi_netdev(hard_iface->net_dev))
355 hard_iface->bat_v.flags &= ~BATADV_FULL_DUPLEX;
356
d6f94d91
LL
357 INIT_DELAYED_WORK(&hard_iface->bat_v.elp_wq,
358 batadv_v_elp_periodic_work);
359 batadv_v_elp_start_timer(hard_iface);
360 res = 0;
361
362out:
363 return res;
364}
365
366/**
367 * batadv_v_elp_iface_disable - release ELP interface private resources
368 * @hard_iface: interface for which the resources have to be released
369 */
370void batadv_v_elp_iface_disable(struct batadv_hard_iface *hard_iface)
371{
372 cancel_delayed_work_sync(&hard_iface->bat_v.elp_wq);
373
374 dev_kfree_skb(hard_iface->bat_v.elp_skb);
375 hard_iface->bat_v.elp_skb = NULL;
376}
377
ebe24cea
ML
378/**
379 * batadv_v_elp_iface_activate - update the ELP buffer belonging to the given
380 * hard-interface
381 * @primary_iface: the new primary interface
382 * @hard_iface: interface holding the to-be-updated buffer
383 */
384void batadv_v_elp_iface_activate(struct batadv_hard_iface *primary_iface,
385 struct batadv_hard_iface *hard_iface)
386{
387 struct batadv_elp_packet *elp_packet;
388 struct sk_buff *skb;
389
390 if (!hard_iface->bat_v.elp_skb)
391 return;
392
393 skb = hard_iface->bat_v.elp_skb;
394 elp_packet = (struct batadv_elp_packet *)skb->data;
395 ether_addr_copy(elp_packet->orig,
396 primary_iface->net_dev->dev_addr);
397}
398
d6f94d91
LL
399/**
400 * batadv_v_elp_primary_iface_set - change internal data to reflect the new
401 * primary interface
402 * @primary_iface: the new primary interface
403 */
404void batadv_v_elp_primary_iface_set(struct batadv_hard_iface *primary_iface)
405{
406 struct batadv_hard_iface *hard_iface;
d6f94d91
LL
407
408 /* update orig field of every elp iface belonging to this mesh */
409 rcu_read_lock();
410 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
411 if (primary_iface->soft_iface != hard_iface->soft_iface)
412 continue;
413
ebe24cea 414 batadv_v_elp_iface_activate(primary_iface, hard_iface);
d6f94d91
LL
415 }
416 rcu_read_unlock();
417}
162bd64c 418
162bd64c
LL
419/**
420 * batadv_v_elp_neigh_update - update an ELP neighbour node
421 * @bat_priv: the bat priv with all the soft interface information
422 * @neigh_addr: the neighbour interface address
423 * @if_incoming: the interface the packet was received through
424 * @elp_packet: the received ELP packet
425 *
426 * Updates the ELP neighbour node state with the data received within the new
427 * ELP packet.
428 */
429static void batadv_v_elp_neigh_update(struct batadv_priv *bat_priv,
430 u8 *neigh_addr,
431 struct batadv_hard_iface *if_incoming,
432 struct batadv_elp_packet *elp_packet)
433
434{
435 struct batadv_neigh_node *neigh;
436 struct batadv_orig_node *orig_neigh;
437 struct batadv_hardif_neigh_node *hardif_neigh;
438 s32 seqno_diff;
439 s32 elp_latest_seqno;
440
441 orig_neigh = batadv_v_ogm_orig_get(bat_priv, elp_packet->orig);
442 if (!orig_neigh)
443 return;
444
6f0a6b5e
ML
445 neigh = batadv_neigh_node_get_or_create(orig_neigh,
446 if_incoming, neigh_addr);
162bd64c
LL
447 if (!neigh)
448 goto orig_free;
449
450 hardif_neigh = batadv_hardif_neigh_get(if_incoming, neigh_addr);
451 if (!hardif_neigh)
452 goto neigh_free;
453
454 elp_latest_seqno = hardif_neigh->bat_v.elp_latest_seqno;
455 seqno_diff = ntohl(elp_packet->seqno) - elp_latest_seqno;
456
457 /* known or older sequence numbers are ignored. However always adopt
458 * if the router seems to have been restarted.
459 */
460 if (seqno_diff < 1 && seqno_diff > -BATADV_ELP_MAX_AGE)
461 goto hardif_free;
462
463 neigh->last_seen = jiffies;
464 hardif_neigh->last_seen = jiffies;
465 hardif_neigh->bat_v.elp_latest_seqno = ntohl(elp_packet->seqno);
466 hardif_neigh->bat_v.elp_interval = ntohl(elp_packet->elp_interval);
467
468hardif_free:
469 if (hardif_neigh)
470 batadv_hardif_neigh_put(hardif_neigh);
471neigh_free:
472 if (neigh)
473 batadv_neigh_node_put(neigh);
474orig_free:
475 if (orig_neigh)
476 batadv_orig_node_put(orig_neigh);
477}
478
479/**
480 * batadv_v_elp_packet_recv - main ELP packet handler
481 * @skb: the received packet
482 * @if_incoming: the interface this packet was received through
483 *
484 * Return: NET_RX_SUCCESS and consumes the skb if the packet was peoperly
485 * processed or NET_RX_DROP in case of failure.
486 */
487int batadv_v_elp_packet_recv(struct sk_buff *skb,
488 struct batadv_hard_iface *if_incoming)
489{
490 struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
491 struct batadv_elp_packet *elp_packet;
492 struct batadv_hard_iface *primary_if;
493 struct ethhdr *ethhdr = (struct ethhdr *)skb_mac_header(skb);
b91a2543
SE
494 bool res;
495 int ret = NET_RX_DROP;
162bd64c 496
b91a2543
SE
497 res = batadv_check_management_packet(skb, if_incoming, BATADV_ELP_HLEN);
498 if (!res)
499 goto free_skb;
162bd64c
LL
500
501 if (batadv_is_my_mac(bat_priv, ethhdr->h_source))
b91a2543 502 goto free_skb;
162bd64c
LL
503
504 /* did we receive a B.A.T.M.A.N. V ELP packet on an interface
505 * that does not have B.A.T.M.A.N. V ELP enabled ?
506 */
29824a55 507 if (strcmp(bat_priv->algo_ops->name, "BATMAN_V") != 0)
b91a2543 508 goto free_skb;
162bd64c
LL
509
510 elp_packet = (struct batadv_elp_packet *)skb->data;
511
512 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
513 "Received ELP packet from %pM seqno %u ORIG: %pM\n",
514 ethhdr->h_source, ntohl(elp_packet->seqno),
515 elp_packet->orig);
516
517 primary_if = batadv_primary_if_get_selected(bat_priv);
518 if (!primary_if)
b91a2543 519 goto free_skb;
162bd64c
LL
520
521 batadv_v_elp_neigh_update(bat_priv, ethhdr->h_source, if_incoming,
522 elp_packet);
523
b91a2543
SE
524 ret = NET_RX_SUCCESS;
525 batadv_hardif_put(primary_if);
526
527free_skb:
528 if (ret == NET_RX_SUCCESS)
529 consume_skb(skb);
530 else
531 kfree_skb(skb);
532
533 return ret;
162bd64c 534}