blob: e9ff8d801201279eaf91f347c730dbdd9e17f13d [file] [log] [blame]
Antonio Quartulli0b873932013-01-04 03:05:31 +01001/* Copyright (C) 2007-2013 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"
Antonio Quartullic384ea32011-06-26 03:37:18 +020021#include "distributed-arp-table.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000022#include "send.h"
23#include "routing.h"
24#include "translation-table.h"
25#include "soft-interface.h"
26#include "hard-interface.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000027#include "vis.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000028#include "gateway_common.h"
29#include "originator.h"
Martin Hundebøll612d2b42013-01-25 11:12:42 +010030#include "network-coding.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000031
Antonio Quartulliaf5d4f72012-11-26 00:38:50 +010032#include <linux/if_ether.h>
33
Sven Eckelmannbb079c82012-05-16 20:23:14 +020034static void batadv_send_outstanding_bcast_packet(struct work_struct *work);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000035
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000036/* send out an already prepared packet to the given address via the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020037 * specified batman interface
38 */
Sven Eckelmann56303d32012-06-05 22:31:31 +020039int batadv_send_skb_packet(struct sk_buff *skb,
40 struct batadv_hard_iface *hard_iface,
Sven Eckelmann9455e342012-05-12 02:09:37 +020041 const uint8_t *dst_addr)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000042{
Martin Hundebøll612d2b42013-01-25 11:12:42 +010043 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000044 struct ethhdr *ethhdr;
45
Sven Eckelmanne9a4f292012-06-03 22:19:19 +020046 if (hard_iface->if_status != BATADV_IF_ACTIVE)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000047 goto send_skb_err;
48
Marek Lindnere6c10f42011-02-18 12:33:20 +000049 if (unlikely(!hard_iface->net_dev))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000050 goto send_skb_err;
51
Marek Lindnere6c10f42011-02-18 12:33:20 +000052 if (!(hard_iface->net_dev->flags & IFF_UP)) {
Sven Eckelmann67969582012-03-26 16:22:45 +020053 pr_warn("Interface %s is not up - can't send packet via that interface!\n",
54 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000055 goto send_skb_err;
56 }
57
58 /* push to the ethernet header. */
Sven Eckelmann04b482a2012-05-12 02:09:38 +020059 if (batadv_skb_head_push(skb, ETH_HLEN) < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000060 goto send_skb_err;
61
62 skb_reset_mac_header(skb);
63
Antonio Quartulli7ed4be92013-04-08 15:08:18 +020064 ethhdr = eth_hdr(skb);
Marek Lindnere6c10f42011-02-18 12:33:20 +000065 memcpy(ethhdr->h_source, hard_iface->net_dev->dev_addr, ETH_ALEN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000066 memcpy(ethhdr->h_dest, dst_addr, ETH_ALEN);
Antonio Quartulliaf5d4f72012-11-26 00:38:50 +010067 ethhdr->h_proto = __constant_htons(ETH_P_BATMAN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000068
69 skb_set_network_header(skb, ETH_HLEN);
70 skb->priority = TC_PRIO_CONTROL;
Antonio Quartulliaf5d4f72012-11-26 00:38:50 +010071 skb->protocol = __constant_htons(ETH_P_BATMAN);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000072
Marek Lindnere6c10f42011-02-18 12:33:20 +000073 skb->dev = hard_iface->net_dev;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000074
Martin Hundebøll612d2b42013-01-25 11:12:42 +010075 /* Save a clone of the skb to use when decoding coded packets */
76 batadv_nc_skb_store_for_decoding(bat_priv, skb);
77
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000078 /* dev_queue_xmit() returns a negative result on error. However on
79 * congestion and traffic shaping, it drops and returns NET_XMIT_DROP
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +020080 * (which is > 0). This will not be treated as an error.
81 */
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000082 return dev_queue_xmit(skb);
83send_skb_err:
84 kfree_skb(skb);
85 return NET_XMIT_DROP;
86}
87
Martin Hundebøllbb351ba2012-10-16 16:13:48 +020088/**
89 * batadv_send_skb_to_orig - Lookup next-hop and transmit skb.
90 * @skb: Packet to be transmitted.
91 * @orig_node: Final destination of the packet.
92 * @recv_if: Interface used when receiving the packet (can be NULL).
93 *
94 * Looks up the best next-hop towards the passed originator and passes the
95 * skb on for preparation of MAC header. If the packet originated from this
96 * host, NULL can be passed as recv_if and no interface alternating is
97 * attempted.
98 *
Martin Hundebølle91ecfc2013-04-20 13:54:39 +020099 * Returns NET_XMIT_SUCCESS on success, NET_XMIT_DROP on failure, or
100 * NET_XMIT_POLICED if the skb is buffered for later transmit.
Martin Hundebøllbb351ba2012-10-16 16:13:48 +0200101 */
Martin Hundebølle91ecfc2013-04-20 13:54:39 +0200102int batadv_send_skb_to_orig(struct sk_buff *skb,
103 struct batadv_orig_node *orig_node,
104 struct batadv_hard_iface *recv_if)
Martin Hundebøllbb351ba2012-10-16 16:13:48 +0200105{
106 struct batadv_priv *bat_priv = orig_node->bat_priv;
107 struct batadv_neigh_node *neigh_node;
Martin Hundebølle91ecfc2013-04-20 13:54:39 +0200108 int ret = NET_XMIT_DROP;
Martin Hundebøllbb351ba2012-10-16 16:13:48 +0200109
110 /* batadv_find_router() increases neigh_nodes refcount if found. */
111 neigh_node = batadv_find_router(bat_priv, orig_node, recv_if);
112 if (!neigh_node)
Martin Hundebølle91ecfc2013-04-20 13:54:39 +0200113 return ret;
Martin Hundebøllbb351ba2012-10-16 16:13:48 +0200114
Martin Hundebølle91ecfc2013-04-20 13:54:39 +0200115 /* try to network code the packet, if it is received on an interface
116 * (i.e. being forwarded). If the packet originates from this node or if
117 * network coding fails, then send the packet as usual.
118 */
119 if (recv_if && batadv_nc_skb_forward(skb, neigh_node)) {
120 ret = NET_XMIT_POLICED;
121 } else {
122 batadv_send_skb_packet(skb, neigh_node->if_incoming,
123 neigh_node->addr);
124 ret = NET_XMIT_SUCCESS;
125 }
Martin Hundebøllbb351ba2012-10-16 16:13:48 +0200126
127 batadv_neigh_node_free_ref(neigh_node);
128
Martin Hundebølle91ecfc2013-04-20 13:54:39 +0200129 return ret;
Martin Hundebøllbb351ba2012-10-16 16:13:48 +0200130}
131
Sven Eckelmann56303d32012-06-05 22:31:31 +0200132void batadv_schedule_bat_ogm(struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000133{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200134 struct batadv_priv *bat_priv = netdev_priv(hard_iface->soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000135
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200136 if ((hard_iface->if_status == BATADV_IF_NOT_IN_USE) ||
137 (hard_iface->if_status == BATADV_IF_TO_BE_REMOVED))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000138 return;
139
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200140 /* the interface gets activated here to avoid race conditions between
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000141 * the moment of activating the interface in
142 * hardif_activate_interface() where the originator mac is set and
143 * outdated packets (especially uninitialized mac addresses) in the
144 * packet queue
145 */
Sven Eckelmanne9a4f292012-06-03 22:19:19 +0200146 if (hard_iface->if_status == BATADV_IF_TO_BE_ACTIVATED)
147 hard_iface->if_status = BATADV_IF_ACTIVE;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000148
Marek Lindnerbe9aa4c2012-05-07 04:22:05 +0800149 bat_priv->bat_algo_ops->bat_ogm_schedule(hard_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000150}
151
Sven Eckelmann56303d32012-06-05 22:31:31 +0200152static void batadv_forw_packet_free(struct batadv_forw_packet *forw_packet)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000153{
154 if (forw_packet->skb)
155 kfree_skb(forw_packet->skb);
Sven Eckelmann6d5808d2011-05-11 20:59:06 +0200156 if (forw_packet->if_incoming)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200157 batadv_hardif_free_ref(forw_packet->if_incoming);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000158 kfree(forw_packet);
159}
160
Sven Eckelmann56303d32012-06-05 22:31:31 +0200161static void
162_batadv_add_bcast_packet_to_list(struct batadv_priv *bat_priv,
163 struct batadv_forw_packet *forw_packet,
164 unsigned long send_time)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000165{
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000166 /* add new packet to packet list */
167 spin_lock_bh(&bat_priv->forw_bcast_list_lock);
168 hlist_add_head(&forw_packet->list, &bat_priv->forw_bcast_list);
169 spin_unlock_bh(&bat_priv->forw_bcast_list_lock);
170
171 /* start timer for this packet */
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200172 queue_delayed_work(batadv_event_workqueue, &forw_packet->delayed_work,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000173 send_time);
174}
175
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000176/* add a broadcast packet to the queue and setup timers. broadcast packets
Antonio Quartulli015758d2011-07-09 17:52:13 +0200177 * are sent multiple times to increase probability for being received.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000178 *
179 * This function returns NETDEV_TX_OK on success and NETDEV_TX_BUSY on
180 * errors.
181 *
182 * The skb is not consumed, so the caller should make sure that the
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200183 * skb is freed.
184 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200185int batadv_add_bcast_packet_to_list(struct batadv_priv *bat_priv,
Sven Eckelmann9455e342012-05-12 02:09:37 +0200186 const struct sk_buff *skb,
187 unsigned long delay)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000188{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200189 struct batadv_hard_iface *primary_if = NULL;
190 struct batadv_forw_packet *forw_packet;
Sven Eckelmann96412692012-06-05 22:31:30 +0200191 struct batadv_bcast_packet *bcast_packet;
Sven Eckelmann747e4222011-05-14 23:14:50 +0200192 struct sk_buff *newskb;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000193
Sven Eckelmann3e348192012-05-16 20:23:22 +0200194 if (!batadv_atomic_dec_not_zero(&bat_priv->bcast_queue_left)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200195 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
196 "bcast packet queue full\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000197 goto out;
198 }
199
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200200 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200201 if (!primary_if)
Marek Lindnerca06c6e2011-05-14 20:01:22 +0200202 goto out_and_inc;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000203
Sven Eckelmann704509b2011-05-14 23:14:54 +0200204 forw_packet = kmalloc(sizeof(*forw_packet), GFP_ATOMIC);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000205
206 if (!forw_packet)
207 goto out_and_inc;
208
Sven Eckelmann747e4222011-05-14 23:14:50 +0200209 newskb = skb_copy(skb, GFP_ATOMIC);
210 if (!newskb)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000211 goto packet_free;
212
213 /* as we have a copy now, it is safe to decrease the TTL */
Sven Eckelmann96412692012-06-05 22:31:30 +0200214 bcast_packet = (struct batadv_bcast_packet *)newskb->data;
Sven Eckelmann76543d12011-11-20 15:47:38 +0100215 bcast_packet->header.ttl--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000216
Sven Eckelmann747e4222011-05-14 23:14:50 +0200217 skb_reset_mac_header(newskb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000218
Sven Eckelmann747e4222011-05-14 23:14:50 +0200219 forw_packet->skb = newskb;
Marek Lindner32ae9b22011-04-20 15:40:58 +0200220 forw_packet->if_incoming = primary_if;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000221
222 /* how often did we send the bcast packet ? */
223 forw_packet->num_packets = 0;
224
Antonio Quartulli72414442012-12-25 13:14:37 +0100225 INIT_DELAYED_WORK(&forw_packet->delayed_work,
226 batadv_send_outstanding_bcast_packet);
227
Sven Eckelmannbb079c82012-05-16 20:23:14 +0200228 _batadv_add_bcast_packet_to_list(bat_priv, forw_packet, delay);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000229 return NETDEV_TX_OK;
230
231packet_free:
232 kfree(forw_packet);
233out_and_inc:
234 atomic_inc(&bat_priv->bcast_queue_left);
235out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200236 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200237 batadv_hardif_free_ref(primary_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000238 return NETDEV_TX_BUSY;
239}
240
Sven Eckelmannbb079c82012-05-16 20:23:14 +0200241static void batadv_send_outstanding_bcast_packet(struct work_struct *work)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000242{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200243 struct batadv_hard_iface *hard_iface;
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200244 struct delayed_work *delayed_work;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200245 struct batadv_forw_packet *forw_packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000246 struct sk_buff *skb1;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200247 struct net_device *soft_iface;
248 struct batadv_priv *bat_priv;
249
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200250 delayed_work = container_of(work, struct delayed_work, work);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200251 forw_packet = container_of(delayed_work, struct batadv_forw_packet,
252 delayed_work);
253 soft_iface = forw_packet->if_incoming->soft_iface;
254 bat_priv = netdev_priv(soft_iface);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000255
256 spin_lock_bh(&bat_priv->forw_bcast_list_lock);
257 hlist_del(&forw_packet->list);
258 spin_unlock_bh(&bat_priv->forw_bcast_list_lock);
259
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200260 if (atomic_read(&bat_priv->mesh_state) == BATADV_MESH_DEACTIVATING)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000261 goto out;
262
Antonio Quartullic384ea32011-06-26 03:37:18 +0200263 if (batadv_dat_drop_broadcast_packet(bat_priv, forw_packet))
264 goto out;
265
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000266 /* rebroadcast packet */
267 rcu_read_lock();
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200268 list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
Marek Lindnere6c10f42011-02-18 12:33:20 +0000269 if (hard_iface->soft_iface != soft_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000270 continue;
271
Matthias Schiffercaf65bf2013-03-09 23:14:23 +0100272 if (forw_packet->num_packets >= hard_iface->num_bcasts)
273 continue;
274
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000275 /* send a copy of the saved skb */
276 skb1 = skb_clone(forw_packet->skb, GFP_ATOMIC);
277 if (skb1)
Sven Eckelmann9455e342012-05-12 02:09:37 +0200278 batadv_send_skb_packet(skb1, hard_iface,
Sven Eckelmann3193e8f2012-05-12 02:09:42 +0200279 batadv_broadcast_addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000280 }
281 rcu_read_unlock();
282
283 forw_packet->num_packets++;
284
285 /* if we still have some more bcasts to send */
Matthias Schiffercaf65bf2013-03-09 23:14:23 +0100286 if (forw_packet->num_packets < BATADV_NUM_BCASTS_MAX) {
Sven Eckelmannbb079c82012-05-16 20:23:14 +0200287 _batadv_add_bcast_packet_to_list(bat_priv, forw_packet,
288 msecs_to_jiffies(5));
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000289 return;
290 }
291
292out:
Sven Eckelmannbb079c82012-05-16 20:23:14 +0200293 batadv_forw_packet_free(forw_packet);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000294 atomic_inc(&bat_priv->bcast_queue_left);
295}
296
Sven Eckelmann9455e342012-05-12 02:09:37 +0200297void batadv_send_outstanding_bat_ogm_packet(struct work_struct *work)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000298{
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200299 struct delayed_work *delayed_work;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200300 struct batadv_forw_packet *forw_packet;
301 struct batadv_priv *bat_priv;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000302
Sven Eckelmannbbb1f902012-07-08 17:13:15 +0200303 delayed_work = container_of(work, struct delayed_work, work);
Sven Eckelmann56303d32012-06-05 22:31:31 +0200304 forw_packet = container_of(delayed_work, struct batadv_forw_packet,
305 delayed_work);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000306 bat_priv = netdev_priv(forw_packet->if_incoming->soft_iface);
307 spin_lock_bh(&bat_priv->forw_bat_list_lock);
308 hlist_del(&forw_packet->list);
309 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
310
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200311 if (atomic_read(&bat_priv->mesh_state) == BATADV_MESH_DEACTIVATING)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000312 goto out;
313
Marek Lindner01c42242011-11-28 21:31:55 +0800314 bat_priv->bat_algo_ops->bat_ogm_emit(forw_packet);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000315
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200316 /* we have to have at least one packet in the queue
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000317 * to determine the queues wake up time unless we are
318 * shutting down
319 */
320 if (forw_packet->own)
Sven Eckelmann9455e342012-05-12 02:09:37 +0200321 batadv_schedule_bat_ogm(forw_packet->if_incoming);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000322
323out:
324 /* don't count own packet */
325 if (!forw_packet->own)
326 atomic_inc(&bat_priv->batman_queue_left);
327
Sven Eckelmannbb079c82012-05-16 20:23:14 +0200328 batadv_forw_packet_free(forw_packet);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000329}
330
Sven Eckelmann56303d32012-06-05 22:31:31 +0200331void
332batadv_purge_outstanding_packets(struct batadv_priv *bat_priv,
333 const struct batadv_hard_iface *hard_iface)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000334{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200335 struct batadv_forw_packet *forw_packet;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800336 struct hlist_node *safe_tmp_node;
Sven Eckelmann6d5808d2011-05-11 20:59:06 +0200337 bool pending;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000338
Marek Lindnere6c10f42011-02-18 12:33:20 +0000339 if (hard_iface)
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200340 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200341 "purge_outstanding_packets(): %s\n",
342 hard_iface->net_dev->name);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000343 else
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200344 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200345 "purge_outstanding_packets()\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000346
347 /* free bcast list */
348 spin_lock_bh(&bat_priv->forw_bcast_list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800349 hlist_for_each_entry_safe(forw_packet, safe_tmp_node,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000350 &bat_priv->forw_bcast_list, list) {
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200351 /* if purge_outstanding_packets() was called with an argument
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000352 * we delete only packets belonging to the given interface
353 */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000354 if ((hard_iface) &&
355 (forw_packet->if_incoming != hard_iface))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000356 continue;
357
358 spin_unlock_bh(&bat_priv->forw_bcast_list_lock);
359
Sven Eckelmannbb079c82012-05-16 20:23:14 +0200360 /* batadv_send_outstanding_bcast_packet() will lock the list to
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000361 * delete the item from the list
362 */
Sven Eckelmann6d5808d2011-05-11 20:59:06 +0200363 pending = cancel_delayed_work_sync(&forw_packet->delayed_work);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000364 spin_lock_bh(&bat_priv->forw_bcast_list_lock);
Sven Eckelmann6d5808d2011-05-11 20:59:06 +0200365
366 if (pending) {
367 hlist_del(&forw_packet->list);
Sven Eckelmannbb079c82012-05-16 20:23:14 +0200368 batadv_forw_packet_free(forw_packet);
Sven Eckelmann6d5808d2011-05-11 20:59:06 +0200369 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000370 }
371 spin_unlock_bh(&bat_priv->forw_bcast_list_lock);
372
373 /* free batman packet list */
374 spin_lock_bh(&bat_priv->forw_bat_list_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800375 hlist_for_each_entry_safe(forw_packet, safe_tmp_node,
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000376 &bat_priv->forw_bat_list, list) {
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200377 /* if purge_outstanding_packets() was called with an argument
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000378 * we delete only packets belonging to the given interface
379 */
Marek Lindnere6c10f42011-02-18 12:33:20 +0000380 if ((hard_iface) &&
381 (forw_packet->if_incoming != hard_iface))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000382 continue;
383
384 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
385
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200386 /* send_outstanding_bat_packet() will lock the list to
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000387 * delete the item from the list
388 */
Sven Eckelmann6d5808d2011-05-11 20:59:06 +0200389 pending = cancel_delayed_work_sync(&forw_packet->delayed_work);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000390 spin_lock_bh(&bat_priv->forw_bat_list_lock);
Sven Eckelmann6d5808d2011-05-11 20:59:06 +0200391
392 if (pending) {
393 hlist_del(&forw_packet->list);
Sven Eckelmannbb079c82012-05-16 20:23:14 +0200394 batadv_forw_packet_free(forw_packet);
Sven Eckelmann6d5808d2011-05-11 20:59:06 +0200395 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000396 }
397 spin_unlock_bh(&bat_priv->forw_bat_list_lock);
398}