blob: 35f76f2f7824b8c2756e60bb5249fd4f5502cc8d [file] [log] [blame]
Simon Wunderliche19f9752014-01-04 18:04:25 +01001/* Copyright (C) 2007-2014 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
Antonio Quartulliebf38fb2013-11-03 20:40:48 +010015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000016 */
17
18#include "main.h"
19#include "routing.h"
20#include "send.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000021#include "soft-interface.h"
22#include "hard-interface.h"
23#include "icmp_socket.h"
24#include "translation-table.h"
25#include "originator.h"
Simon Wunderlich23721382012-01-22 20:00:19 +010026#include "bridge_loop_avoidance.h"
Antonio Quartullic384ea32011-06-26 03:37:18 +020027#include "distributed-arp-table.h"
Martin Hundebøll95332472013-01-25 11:12:40 +010028#include "network-coding.h"
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +020029#include "fragmentation.h"
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000030
Antonio Quartullic018ad32013-06-04 12:11:39 +020031#include <linux/if_vlan.h>
32
Sven Eckelmann63b01032012-05-16 20:23:13 +020033static int batadv_route_unicast_packet(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +020034 struct batadv_hard_iface *recv_if);
Simon Wunderlicha7f6ee92012-01-22 20:00:18 +010035
Simon Wunderlich7351a4822013-11-13 19:14:47 +010036/**
37 * _batadv_update_route - set the router for this originator
38 * @bat_priv: the bat priv with all the soft interface information
39 * @orig_node: orig node which is to be configured
40 * @recv_if: the receive interface for which this route is set
41 * @neigh_node: neighbor which should be the next router
42 *
43 * This function does not perform any error checks
44 */
Sven Eckelmann56303d32012-06-05 22:31:31 +020045static void _batadv_update_route(struct batadv_priv *bat_priv,
46 struct batadv_orig_node *orig_node,
Simon Wunderlich7351a4822013-11-13 19:14:47 +010047 struct batadv_hard_iface *recv_if,
Sven Eckelmann56303d32012-06-05 22:31:31 +020048 struct batadv_neigh_node *neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000049{
Simon Wunderlich7351a4822013-11-13 19:14:47 +010050 struct batadv_orig_ifinfo *orig_ifinfo;
Sven Eckelmann56303d32012-06-05 22:31:31 +020051 struct batadv_neigh_node *curr_router;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000052
Simon Wunderlich7351a4822013-11-13 19:14:47 +010053 orig_ifinfo = batadv_orig_ifinfo_get(orig_node, recv_if);
54 if (!orig_ifinfo)
55 return;
56
57 rcu_read_lock();
58 curr_router = rcu_dereference(orig_ifinfo->router);
59 if (curr_router && !atomic_inc_not_zero(&curr_router->refcount))
60 curr_router = NULL;
61 rcu_read_unlock();
Marek Lindnera8e7f4b2010-12-12 21:57:10 +000062
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000063 /* route deleted */
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000064 if ((curr_router) && (!neigh_node)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +020065 batadv_dbg(BATADV_DBG_ROUTES, bat_priv,
66 "Deleting route towards: %pM\n", orig_node->orig);
Antonio Quartulli95fb1302013-08-07 18:28:55 +020067 batadv_tt_global_del_orig(bat_priv, orig_node, -1,
Sven Eckelmann08c36d32012-05-12 02:09:39 +020068 "Deleted route towards originator");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000069
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000070 /* route added */
71 } else if ((!curr_router) && (neigh_node)) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +020072 batadv_dbg(BATADV_DBG_ROUTES, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +020073 "Adding route towards: %pM (via %pM)\n",
74 orig_node->orig, neigh_node->addr);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000075 /* route changed */
Sven Eckelmannbb899b82011-05-10 11:22:37 +020076 } else if (neigh_node && curr_router) {
Sven Eckelmann39c75a52012-06-03 22:19:22 +020077 batadv_dbg(BATADV_DBG_ROUTES, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +020078 "Changing route towards: %pM (now via %pM - was via %pM)\n",
79 orig_node->orig, neigh_node->addr,
80 curr_router->addr);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000081 }
82
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000083 if (curr_router)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +020084 batadv_neigh_node_free_ref(curr_router);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000085
86 /* increase refcount of new best neighbor */
Marek Lindner44524fc2011-02-10 14:33:53 +000087 if (neigh_node && !atomic_inc_not_zero(&neigh_node->refcount))
88 neigh_node = NULL;
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000089
90 spin_lock_bh(&orig_node->neigh_list_lock);
Simon Wunderlich7351a4822013-11-13 19:14:47 +010091 rcu_assign_pointer(orig_ifinfo->router, neigh_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000092 spin_unlock_bh(&orig_node->neigh_list_lock);
Simon Wunderlich7351a4822013-11-13 19:14:47 +010093 batadv_orig_ifinfo_free_ref(orig_ifinfo);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +000094
95 /* decrease refcount of previous best neighbor */
96 if (curr_router)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +020097 batadv_neigh_node_free_ref(curr_router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +000098}
99
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100100/**
101 * batadv_update_route - set the router for this originator
102 * @bat_priv: the bat priv with all the soft interface information
103 * @orig_node: orig node which is to be configured
104 * @recv_if: the receive interface for which this route is set
105 * @neigh_node: neighbor which should be the next router
106 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200107void batadv_update_route(struct batadv_priv *bat_priv,
108 struct batadv_orig_node *orig_node,
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100109 struct batadv_hard_iface *recv_if,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200110 struct batadv_neigh_node *neigh_node)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000111{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200112 struct batadv_neigh_node *router = NULL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000113
114 if (!orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000115 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000116
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100117 router = batadv_orig_router_get(orig_node, recv_if);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000118
119 if (router != neigh_node)
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100120 _batadv_update_route(bat_priv, orig_node, recv_if, neigh_node);
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000121
122out:
123 if (router)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200124 batadv_neigh_node_free_ref(router);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000125}
126
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000127/* checks whether the host restarted and is in the protection time.
128 * returns:
129 * 0 if the packet is to be accepted
130 * 1 if the packet is to be ignored.
131 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200132int batadv_window_protected(struct batadv_priv *bat_priv, int32_t seq_num_diff,
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200133 unsigned long *last_reset)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000134{
Sven Eckelmann42d0b042012-06-03 22:19:17 +0200135 if (seq_num_diff <= -BATADV_TQ_LOCAL_WINDOW_SIZE ||
136 seq_num_diff >= BATADV_EXPECTED_SEQNO_RANGE) {
137 if (!batadv_has_timed_out(*last_reset,
138 BATADV_RESET_PROTECTION_MS))
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000139 return 1;
Marek Lindner8c7bf242012-03-17 15:28:33 +0800140
141 *last_reset = jiffies;
Sven Eckelmann39c75a52012-06-03 22:19:22 +0200142 batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
Sven Eckelmann1eda58b2012-05-12 13:48:58 +0200143 "old packet received, start protection\n");
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000144 }
Marek Lindner8c7bf242012-03-17 15:28:33 +0800145
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000146 return 0;
147}
148
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200149bool batadv_check_management_packet(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200150 struct batadv_hard_iface *hard_iface,
Sven Eckelmann30d3c512012-05-12 02:09:36 +0200151 int header_len)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000152{
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000153 struct ethhdr *ethhdr;
154
155 /* drop packet if it has not necessary minimum size */
Marek Lindnerc3e29312012-03-04 16:56:25 +0800156 if (unlikely(!pskb_may_pull(skb, header_len)))
157 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000158
Antonio Quartulli7ed4be92013-04-08 15:08:18 +0200159 ethhdr = eth_hdr(skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000160
161 /* packet with broadcast indication but unicast recipient */
162 if (!is_broadcast_ether_addr(ethhdr->h_dest))
Marek Lindnerc3e29312012-03-04 16:56:25 +0800163 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000164
165 /* packet with broadcast sender address */
166 if (is_broadcast_ether_addr(ethhdr->h_source))
Marek Lindnerc3e29312012-03-04 16:56:25 +0800167 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000168
169 /* create a copy of the skb, if needed, to modify it. */
170 if (skb_cow(skb, 0) < 0)
Marek Lindnerc3e29312012-03-04 16:56:25 +0800171 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000172
173 /* keep skb linear */
174 if (skb_linearize(skb) < 0)
Marek Lindnerc3e29312012-03-04 16:56:25 +0800175 return false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000176
Marek Lindnerc3e29312012-03-04 16:56:25 +0800177 return true;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000178}
179
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200180/**
181 * batadv_recv_my_icmp_packet - receive an icmp packet locally
182 * @bat_priv: the bat priv with all the soft interface information
183 * @skb: icmp packet to process
184 *
185 * Returns NET_RX_SUCCESS if the packet has been consumed or NET_RX_DROP
186 * otherwise.
187 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200188static int batadv_recv_my_icmp_packet(struct batadv_priv *bat_priv,
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200189 struct sk_buff *skb)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000190{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200191 struct batadv_hard_iface *primary_if = NULL;
192 struct batadv_orig_node *orig_node = NULL;
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200193 struct batadv_icmp_header *icmph;
194 int res, ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000195
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200196 icmph = (struct batadv_icmp_header *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000197
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200198 switch (icmph->msg_type) {
199 case BATADV_ECHO_REPLY:
200 case BATADV_DESTINATION_UNREACHABLE:
201 case BATADV_TTL_EXCEEDED:
202 /* receive the packet */
203 if (skb_linearize(skb) < 0)
204 break;
205
206 batadv_socket_receive_packet(icmph, skb->len);
207 break;
208 case BATADV_ECHO_REQUEST:
209 /* answer echo request (ping) */
210 primary_if = batadv_primary_if_get_selected(bat_priv);
211 if (!primary_if)
212 goto out;
213
214 /* get routing information */
215 orig_node = batadv_orig_hash_find(bat_priv, icmph->orig);
216 if (!orig_node)
217 goto out;
218
219 /* create a copy of the skb, if needed, to modify it. */
220 if (skb_cow(skb, ETH_HLEN) < 0)
221 goto out;
222
223 icmph = (struct batadv_icmp_header *)skb->data;
224
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100225 ether_addr_copy(icmph->dst, icmph->orig);
226 ether_addr_copy(icmph->orig, primary_if->net_dev->dev_addr);
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200227 icmph->msg_type = BATADV_ECHO_REPLY;
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100228 icmph->ttl = BATADV_TTL;
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200229
230 res = batadv_send_skb_to_orig(skb, orig_node, NULL);
231 if (res != NET_XMIT_DROP)
232 ret = NET_RX_SUCCESS;
233
234 break;
235 default:
236 /* drop unknown type */
Marek Lindner44524fc2011-02-10 14:33:53 +0000237 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000238 }
Marek Lindner44524fc2011-02-10 14:33:53 +0000239out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200240 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200241 batadv_hardif_free_ref(primary_if);
Marek Lindner44524fc2011-02-10 14:33:53 +0000242 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200243 batadv_orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000244 return ret;
245}
246
Sven Eckelmann56303d32012-06-05 22:31:31 +0200247static int batadv_recv_icmp_ttl_exceeded(struct batadv_priv *bat_priv,
Sven Eckelmann63b01032012-05-16 20:23:13 +0200248 struct sk_buff *skb)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000249{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200250 struct batadv_hard_iface *primary_if = NULL;
251 struct batadv_orig_node *orig_node = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +0200252 struct batadv_icmp_packet *icmp_packet;
Marek Lindner44524fc2011-02-10 14:33:53 +0000253 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000254
Sven Eckelmann96412692012-06-05 22:31:30 +0200255 icmp_packet = (struct batadv_icmp_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000256
257 /* send TTL exceeded if packet is an echo request (traceroute) */
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100258 if (icmp_packet->msg_type != BATADV_ECHO_REQUEST) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100259 pr_debug("Warning - can't forward icmp packet from %pM to %pM: ttl exceeded\n",
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100260 icmp_packet->orig, icmp_packet->dst);
Marek Lindner44524fc2011-02-10 14:33:53 +0000261 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000262 }
263
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200264 primary_if = batadv_primary_if_get_selected(bat_priv);
Marek Lindner32ae9b22011-04-20 15:40:58 +0200265 if (!primary_if)
Marek Lindner44524fc2011-02-10 14:33:53 +0000266 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000267
268 /* get routing information */
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100269 orig_node = batadv_orig_hash_find(bat_priv, icmp_packet->orig);
Marek Lindner44524fc2011-02-10 14:33:53 +0000270 if (!orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000271 goto out;
Marek Lindner44524fc2011-02-10 14:33:53 +0000272
Marek Lindner44524fc2011-02-10 14:33:53 +0000273 /* create a copy of the skb, if needed, to modify it. */
Antonio Quartulli0d125072012-02-18 11:27:34 +0100274 if (skb_cow(skb, ETH_HLEN) < 0)
Marek Lindner44524fc2011-02-10 14:33:53 +0000275 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000276
Sven Eckelmann96412692012-06-05 22:31:30 +0200277 icmp_packet = (struct batadv_icmp_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000278
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100279 ether_addr_copy(icmp_packet->dst, icmp_packet->orig);
280 ether_addr_copy(icmp_packet->orig, primary_if->net_dev->dev_addr);
Antonio Quartulli27a417e2013-12-05 15:33:00 +0100281 icmp_packet->msg_type = BATADV_TTL_EXCEEDED;
282 icmp_packet->ttl = BATADV_TTL;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000283
Martin Hundebølle91ecfc2013-04-20 13:54:39 +0200284 if (batadv_send_skb_to_orig(skb, orig_node, NULL) != NET_XMIT_DROP)
Martin Hundebøllbb351ba2012-10-16 16:13:48 +0200285 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000286
Marek Lindner44524fc2011-02-10 14:33:53 +0000287out:
Marek Lindner32ae9b22011-04-20 15:40:58 +0200288 if (primary_if)
Sven Eckelmanne5d89252012-05-12 13:48:54 +0200289 batadv_hardif_free_ref(primary_if);
Marek Lindner44524fc2011-02-10 14:33:53 +0000290 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200291 batadv_orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000292 return ret;
293}
294
295
Sven Eckelmann56303d32012-06-05 22:31:31 +0200296int batadv_recv_icmp_packet(struct sk_buff *skb,
297 struct batadv_hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000298{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200299 struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200300 struct batadv_icmp_header *icmph;
301 struct batadv_icmp_packet_rr *icmp_packet_rr;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000302 struct ethhdr *ethhdr;
Sven Eckelmann56303d32012-06-05 22:31:31 +0200303 struct batadv_orig_node *orig_node = NULL;
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200304 int hdr_size = sizeof(struct batadv_icmp_header);
Marek Lindner44524fc2011-02-10 14:33:53 +0000305 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000306
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000307 /* drop packet if it has not necessary minimum size */
308 if (unlikely(!pskb_may_pull(skb, hdr_size)))
Marek Lindner44524fc2011-02-10 14:33:53 +0000309 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000310
Antonio Quartulli7ed4be92013-04-08 15:08:18 +0200311 ethhdr = eth_hdr(skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000312
313 /* packet with unicast indication but broadcast recipient */
314 if (is_broadcast_ether_addr(ethhdr->h_dest))
Marek Lindner44524fc2011-02-10 14:33:53 +0000315 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000316
317 /* packet with broadcast sender address */
318 if (is_broadcast_ether_addr(ethhdr->h_source))
Marek Lindner44524fc2011-02-10 14:33:53 +0000319 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000320
321 /* not for me */
Antonio Quartullife8a93b2013-04-03 19:10:26 +0200322 if (!batadv_is_my_mac(bat_priv, ethhdr->h_dest))
Marek Lindner44524fc2011-02-10 14:33:53 +0000323 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000324
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200325 icmph = (struct batadv_icmp_header *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000326
327 /* add record route information if not full */
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200328 if ((icmph->msg_type == BATADV_ECHO_REPLY ||
329 icmph->msg_type == BATADV_ECHO_REQUEST) &&
330 (skb->len >= sizeof(struct batadv_icmp_packet_rr))) {
331 if (skb_linearize(skb) < 0)
332 goto out;
333
334 /* create a copy of the skb, if needed, to modify it. */
335 if (skb_cow(skb, ETH_HLEN) < 0)
336 goto out;
337
338 icmph = (struct batadv_icmp_header *)skb->data;
339 icmp_packet_rr = (struct batadv_icmp_packet_rr *)icmph;
340 if (icmp_packet_rr->rr_cur >= BATADV_RR_LEN)
341 goto out;
342
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100343 ether_addr_copy(icmp_packet_rr->rr[icmp_packet_rr->rr_cur],
344 ethhdr->h_dest);
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200345 icmp_packet_rr->rr_cur++;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000346 }
347
348 /* packet for me */
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200349 if (batadv_is_my_mac(bat_priv, icmph->dst))
350 return batadv_recv_my_icmp_packet(bat_priv, skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000351
352 /* TTL exceeded */
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100353 if (icmph->ttl < 2)
Sven Eckelmann63b01032012-05-16 20:23:13 +0200354 return batadv_recv_icmp_ttl_exceeded(bat_priv, skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000355
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000356 /* get routing information */
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200357 orig_node = batadv_orig_hash_find(bat_priv, icmph->dst);
Marek Lindner44524fc2011-02-10 14:33:53 +0000358 if (!orig_node)
Linus Lüssinge1a5382f2011-03-14 22:43:37 +0000359 goto out;
Marek Lindner44524fc2011-02-10 14:33:53 +0000360
Marek Lindner44524fc2011-02-10 14:33:53 +0000361 /* create a copy of the skb, if needed, to modify it. */
Antonio Quartulli0d125072012-02-18 11:27:34 +0100362 if (skb_cow(skb, ETH_HLEN) < 0)
Marek Lindner44524fc2011-02-10 14:33:53 +0000363 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000364
Simon Wunderlichda6b8c22013-10-22 22:50:09 +0200365 icmph = (struct batadv_icmp_header *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000366
Marek Lindner44524fc2011-02-10 14:33:53 +0000367 /* decrement ttl */
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100368 icmph->ttl--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000369
Marek Lindner44524fc2011-02-10 14:33:53 +0000370 /* route it */
Martin Hundebølle91ecfc2013-04-20 13:54:39 +0200371 if (batadv_send_skb_to_orig(skb, orig_node, recv_if) != NET_XMIT_DROP)
Martin Hundebøllbb351ba2012-10-16 16:13:48 +0200372 ret = NET_RX_SUCCESS;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000373
Marek Lindner44524fc2011-02-10 14:33:53 +0000374out:
Marek Lindner44524fc2011-02-10 14:33:53 +0000375 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200376 batadv_orig_node_free_ref(orig_node);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000377 return ret;
378}
379
Martin Hundebøllf86ce0a2013-01-14 00:20:32 +0100380/**
381 * batadv_check_unicast_packet - Check for malformed unicast packets
David S. Miller6e0895c2013-04-22 20:32:51 -0400382 * @bat_priv: the bat priv with all the soft interface information
Martin Hundebøllf86ce0a2013-01-14 00:20:32 +0100383 * @skb: packet to check
384 * @hdr_size: size of header to pull
385 *
386 * Check for short header and bad addresses in given packet. Returns negative
387 * value when check fails and 0 otherwise. The negative value depends on the
388 * reason: -ENODATA for bad header, -EBADR for broadcast destination or source,
389 * and -EREMOTE for non-local (other host) destination.
390 */
Antonio Quartullife8a93b2013-04-03 19:10:26 +0200391static int batadv_check_unicast_packet(struct batadv_priv *bat_priv,
392 struct sk_buff *skb, int hdr_size)
Martin Hundebøllff51fd72012-07-05 11:34:27 +0200393{
394 struct ethhdr *ethhdr;
395
396 /* drop packet if it has not necessary minimum size */
397 if (unlikely(!pskb_may_pull(skb, hdr_size)))
Martin Hundebøllf86ce0a2013-01-14 00:20:32 +0100398 return -ENODATA;
Martin Hundebøllff51fd72012-07-05 11:34:27 +0200399
Antonio Quartulli7ed4be92013-04-08 15:08:18 +0200400 ethhdr = eth_hdr(skb);
Martin Hundebøllff51fd72012-07-05 11:34:27 +0200401
402 /* packet with unicast indication but broadcast recipient */
403 if (is_broadcast_ether_addr(ethhdr->h_dest))
Martin Hundebøllf86ce0a2013-01-14 00:20:32 +0100404 return -EBADR;
Martin Hundebøllff51fd72012-07-05 11:34:27 +0200405
406 /* packet with broadcast sender address */
407 if (is_broadcast_ether_addr(ethhdr->h_source))
Martin Hundebøllf86ce0a2013-01-14 00:20:32 +0100408 return -EBADR;
Martin Hundebøllff51fd72012-07-05 11:34:27 +0200409
410 /* not for me */
Antonio Quartullife8a93b2013-04-03 19:10:26 +0200411 if (!batadv_is_my_mac(bat_priv, ethhdr->h_dest))
Martin Hundebøllf86ce0a2013-01-14 00:20:32 +0100412 return -EREMOTE;
Martin Hundebøllff51fd72012-07-05 11:34:27 +0200413
414 return 0;
415}
416
Simon Wunderlichf6c8b712013-11-13 19:14:45 +0100417/**
418 * batadv_find_router - find a suitable router for this originator
419 * @bat_priv: the bat priv with all the soft interface information
420 * @orig_node: the destination node
421 * @recv_if: pointer to interface this packet was received on
422 *
423 * Returns the router which should be used for this orig_node on
424 * this interface, or NULL if not available.
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +0200425 */
Sven Eckelmann56303d32012-06-05 22:31:31 +0200426struct batadv_neigh_node *
427batadv_find_router(struct batadv_priv *bat_priv,
428 struct batadv_orig_node *orig_node,
Simon Wunderlichf3b3d902013-11-13 19:14:50 +0100429 struct batadv_hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000430{
Simon Wunderlichf3b3d902013-11-13 19:14:50 +0100431 struct batadv_algo_ops *bao = bat_priv->bat_algo_ops;
432 struct batadv_neigh_node *first_candidate_router = NULL;
433 struct batadv_neigh_node *next_candidate_router = NULL;
434 struct batadv_neigh_node *router, *cand_router = NULL;
435 struct batadv_neigh_node *last_cand_router = NULL;
436 struct batadv_orig_ifinfo *cand, *first_candidate = NULL;
437 struct batadv_orig_ifinfo *next_candidate = NULL;
438 struct batadv_orig_ifinfo *last_candidate;
439 bool last_candidate_found = false;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000440
441 if (!orig_node)
442 return NULL;
443
Simon Wunderlich7351a4822013-11-13 19:14:47 +0100444 router = batadv_orig_router_get(orig_node, recv_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000445
Simon Wunderlichf3b3d902013-11-13 19:14:50 +0100446 /* only consider bonding for recv_if == BATADV_IF_DEFAULT (first hop)
447 * and if activated.
448 */
449 if (recv_if == BATADV_IF_DEFAULT || !atomic_read(&bat_priv->bonding) ||
450 !router)
451 return router;
452
453 /* bonding: loop through the list of possible routers found
454 * for the various outgoing interfaces and find a candidate after
455 * the last chosen bonding candidate (next_candidate). If no such
456 * router is found, use the first candidate found (the previously
457 * chosen bonding candidate might have been the last one in the list).
458 * If this can't be found either, return the previously choosen
459 * router - obviously there are no other candidates.
460 */
461 rcu_read_lock();
462 last_candidate = orig_node->last_bonding_candidate;
463 if (last_candidate)
464 last_cand_router = rcu_dereference(last_candidate->router);
465
466 hlist_for_each_entry_rcu(cand, &orig_node->ifinfo_list, list) {
467 /* acquire some structures and references ... */
468 if (!atomic_inc_not_zero(&cand->refcount))
469 continue;
470
471 cand_router = rcu_dereference(cand->router);
472 if (!cand_router)
473 goto next;
474
475 if (!atomic_inc_not_zero(&cand_router->refcount)) {
476 cand_router = NULL;
477 goto next;
478 }
479
480 /* alternative candidate should be good enough to be
481 * considered
482 */
483 if (!bao->bat_neigh_is_equiv_or_better(cand_router,
484 cand->if_outgoing,
485 router, recv_if))
486 goto next;
487
488 /* don't use the same router twice */
489 if (last_cand_router == cand_router)
490 goto next;
491
492 /* mark the first possible candidate */
493 if (!first_candidate) {
494 atomic_inc(&cand_router->refcount);
495 atomic_inc(&cand->refcount);
496 first_candidate = cand;
497 first_candidate_router = cand_router;
498 }
499
500 /* check if the loop has already passed the previously selected
501 * candidate ... this function should select the next candidate
502 * AFTER the previously used bonding candidate.
503 */
504 if (!last_candidate || last_candidate_found) {
505 next_candidate = cand;
506 next_candidate_router = cand_router;
507 break;
508 }
509
510 if (last_candidate == cand)
511 last_candidate_found = true;
512next:
513 /* free references */
514 if (cand_router) {
515 batadv_neigh_node_free_ref(cand_router);
516 cand_router = NULL;
517 }
518 batadv_orig_ifinfo_free_ref(cand);
519 }
520 rcu_read_unlock();
521
522 /* last_bonding_candidate is reset below, remove the old reference. */
523 if (orig_node->last_bonding_candidate)
524 batadv_orig_ifinfo_free_ref(orig_node->last_bonding_candidate);
525
526 /* After finding candidates, handle the three cases:
527 * 1) there is a next candidate, use that
528 * 2) there is no next candidate, use the first of the list
529 * 3) there is no candidate at all, return the default router
530 */
531 if (next_candidate) {
532 batadv_neigh_node_free_ref(router);
533
534 /* remove references to first candidate, we don't need it. */
535 if (first_candidate) {
536 batadv_neigh_node_free_ref(first_candidate_router);
537 batadv_orig_ifinfo_free_ref(first_candidate);
538 }
539 router = next_candidate_router;
540 orig_node->last_bonding_candidate = next_candidate;
541 } else if (first_candidate) {
542 batadv_neigh_node_free_ref(router);
543
544 /* refcounting has already been done in the loop above. */
545 router = first_candidate_router;
546 orig_node->last_bonding_candidate = first_candidate;
547 } else {
548 orig_node->last_bonding_candidate = NULL;
549 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000550
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000551 return router;
552}
553
Sven Eckelmann63b01032012-05-16 20:23:13 +0200554static int batadv_route_unicast_packet(struct sk_buff *skb,
Sven Eckelmann56303d32012-06-05 22:31:31 +0200555 struct batadv_hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000556{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200557 struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
558 struct batadv_orig_node *orig_node = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +0200559 struct batadv_unicast_packet *unicast_packet;
Antonio Quartulli7ed4be92013-04-08 15:08:18 +0200560 struct ethhdr *ethhdr = eth_hdr(skb);
Simon Wunderlichc54f38c2013-07-29 17:56:44 +0200561 int res, hdr_len, ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000562
Sven Eckelmann96412692012-06-05 22:31:30 +0200563 unicast_packet = (struct batadv_unicast_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000564
565 /* TTL exceeded */
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100566 if (unicast_packet->ttl < 2) {
Sven Eckelmann86ceb362012-03-07 09:07:45 +0100567 pr_debug("Warning - can't forward unicast packet from %pM to %pM: ttl exceeded\n",
568 ethhdr->h_source, unicast_packet->dest);
Marek Lindner44524fc2011-02-10 14:33:53 +0000569 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000570 }
571
572 /* get routing information */
Sven Eckelmannda641192012-05-12 13:48:56 +0200573 orig_node = batadv_orig_hash_find(bat_priv, unicast_packet->dest);
Marek Lindner7aadf882011-02-18 12:28:09 +0000574
Marek Lindner44524fc2011-02-10 14:33:53 +0000575 if (!orig_node)
Antonio Quartullib5a6f692011-04-16 11:30:57 +0200576 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000577
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000578 /* create a copy of the skb, if needed, to modify it. */
Antonio Quartulli0d125072012-02-18 11:27:34 +0100579 if (skb_cow(skb, ETH_HLEN) < 0)
Marek Lindner44524fc2011-02-10 14:33:53 +0000580 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000581
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000582 /* decrement ttl */
Martin Hundebøllf097e252013-05-23 16:53:01 +0200583 unicast_packet = (struct batadv_unicast_packet *)skb->data;
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100584 unicast_packet->ttl--;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000585
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100586 switch (unicast_packet->packet_type) {
Simon Wunderlichc54f38c2013-07-29 17:56:44 +0200587 case BATADV_UNICAST_4ADDR:
588 hdr_len = sizeof(struct batadv_unicast_4addr_packet);
589 break;
590 case BATADV_UNICAST:
591 hdr_len = sizeof(struct batadv_unicast_packet);
592 break;
593 default:
594 /* other packet types not supported - yet */
595 hdr_len = -1;
596 break;
597 }
598
599 if (hdr_len > 0)
600 batadv_skb_set_priority(skb, hdr_len);
601
Martin Hundebølle91ecfc2013-04-20 13:54:39 +0200602 res = batadv_send_skb_to_orig(skb, orig_node, recv_if);
Martin Hundebøll95332472013-01-25 11:12:40 +0100603
Martin Hundebølle91ecfc2013-04-20 13:54:39 +0200604 /* translate transmit result into receive result */
605 if (res == NET_XMIT_SUCCESS) {
606 /* skb was transmitted and consumed */
Martin Hundebøll95332472013-01-25 11:12:40 +0100607 batadv_inc_counter(bat_priv, BATADV_CNT_FORWARD);
608 batadv_add_counter(bat_priv, BATADV_CNT_FORWARD_BYTES,
609 skb->len + ETH_HLEN);
Martin Hundebølle91ecfc2013-04-20 13:54:39 +0200610
611 ret = NET_RX_SUCCESS;
612 } else if (res == NET_XMIT_POLICED) {
613 /* skb was buffered and consumed */
614 ret = NET_RX_SUCCESS;
Martin Hundebøll95332472013-01-25 11:12:40 +0100615 }
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000616
Marek Lindner44524fc2011-02-10 14:33:53 +0000617out:
Marek Lindner44524fc2011-02-10 14:33:53 +0000618 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200619 batadv_orig_node_free_ref(orig_node);
Marek Lindner44524fc2011-02-10 14:33:53 +0000620 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000621}
622
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200623/**
624 * batadv_reroute_unicast_packet - update the unicast header for re-routing
625 * @bat_priv: the bat priv with all the soft interface information
626 * @unicast_packet: the unicast header to be updated
627 * @dst_addr: the payload destination
Antonio Quartullic018ad32013-06-04 12:11:39 +0200628 * @vid: VLAN identifier
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200629 *
630 * Search the translation table for dst_addr and update the unicast header with
631 * the new corresponding information (originator address where the destination
632 * client currently is and its known TTVN)
633 *
634 * Returns true if the packet header has been updated, false otherwise
635 */
636static bool
637batadv_reroute_unicast_packet(struct batadv_priv *bat_priv,
638 struct batadv_unicast_packet *unicast_packet,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200639 uint8_t *dst_addr, unsigned short vid)
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200640{
641 struct batadv_orig_node *orig_node = NULL;
642 struct batadv_hard_iface *primary_if = NULL;
643 bool ret = false;
644 uint8_t *orig_addr, orig_ttvn;
645
Antonio Quartullic018ad32013-06-04 12:11:39 +0200646 if (batadv_is_my_client(bat_priv, dst_addr, vid)) {
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200647 primary_if = batadv_primary_if_get_selected(bat_priv);
648 if (!primary_if)
649 goto out;
650 orig_addr = primary_if->net_dev->dev_addr;
651 orig_ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn);
652 } else {
Antonio Quartullic018ad32013-06-04 12:11:39 +0200653 orig_node = batadv_transtable_search(bat_priv, NULL, dst_addr,
654 vid);
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200655 if (!orig_node)
656 goto out;
657
658 if (batadv_compare_eth(orig_node->orig, unicast_packet->dest))
659 goto out;
660
661 orig_addr = orig_node->orig;
662 orig_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn);
663 }
664
665 /* update the packet header */
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100666 ether_addr_copy(unicast_packet->dest, orig_addr);
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200667 unicast_packet->ttvn = orig_ttvn;
668
669 ret = true;
670out:
671 if (primary_if)
672 batadv_hardif_free_ref(primary_if);
673 if (orig_node)
674 batadv_orig_node_free_ref(orig_node);
675
676 return ret;
677}
678
Sven Eckelmann56303d32012-06-05 22:31:31 +0200679static int batadv_check_unicast_ttvn(struct batadv_priv *bat_priv,
Antonio Quartullidd981ab2013-04-03 10:14:20 +0200680 struct sk_buff *skb, int hdr_len) {
Sven Eckelmann96412692012-06-05 22:31:30 +0200681 struct batadv_unicast_packet *unicast_packet;
Antonio Quartullic018ad32013-06-04 12:11:39 +0200682 struct batadv_hard_iface *primary_if;
683 struct batadv_orig_node *orig_node;
684 uint8_t curr_ttvn, old_ttvn;
685 struct ethhdr *ethhdr;
686 unsigned short vid;
Sven Eckelmann3e348192012-05-16 20:23:22 +0200687 int is_old_ttvn;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200688
Antonio Quartullib8fcfa42012-08-26 23:25:59 +0200689 /* check if there is enough data before accessing it */
Antonio Quartullif1791422014-01-30 00:12:24 +0100690 if (!pskb_may_pull(skb, hdr_len + ETH_HLEN))
Antonio Quartullib8fcfa42012-08-26 23:25:59 +0200691 return 0;
692
693 /* create a copy of the skb (in case of for re-routing) to modify it. */
694 if (skb_cow(skb, sizeof(*unicast_packet)) < 0)
Antonio Quartullia73105b2011-04-27 14:27:44 +0200695 return 0;
696
Sven Eckelmann96412692012-06-05 22:31:30 +0200697 unicast_packet = (struct batadv_unicast_packet *)skb->data;
Antonio Quartullic018ad32013-06-04 12:11:39 +0200698 vid = batadv_get_vid(skb, hdr_len);
Antonio Quartullidd981ab2013-04-03 10:14:20 +0200699 ethhdr = (struct ethhdr *)(skb->data + hdr_len);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200700
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200701 /* check if the destination client was served by this node and it is now
702 * roaming. In this case, it means that the node has got a ROAM_ADV
703 * message and that it knows the new destination in the mesh to re-route
704 * the packet to
705 */
Antonio Quartullic018ad32013-06-04 12:11:39 +0200706 if (batadv_tt_local_client_is_roaming(bat_priv, ethhdr->h_dest, vid)) {
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200707 if (batadv_reroute_unicast_packet(bat_priv, unicast_packet,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200708 ethhdr->h_dest, vid))
André Gaul23c4ec12014-06-10 17:50:31 +0200709 batadv_dbg_ratelimited(BATADV_DBG_TT,
710 bat_priv,
711 "Rerouting unicast packet to %pM (dst=%pM): Local Roaming\n",
712 unicast_packet->dest,
713 ethhdr->h_dest);
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200714 /* at this point the mesh destination should have been
715 * substituted with the originator address found in the global
716 * table. If not, let the packet go untouched anyway because
717 * there is nothing the node can do
718 */
719 return 1;
720 }
721
722 /* retrieve the TTVN known by this node for the packet destination. This
723 * value is used later to check if the node which sent (or re-routed
724 * last time) the packet had an updated information or not
725 */
726 curr_ttvn = (uint8_t)atomic_read(&bat_priv->tt.vn);
Antonio Quartullife8a93b2013-04-03 19:10:26 +0200727 if (!batadv_is_my_mac(bat_priv, unicast_packet->dest)) {
Sven Eckelmannda641192012-05-12 13:48:56 +0200728 orig_node = batadv_orig_hash_find(bat_priv,
729 unicast_packet->dest);
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200730 /* if it is not possible to find the orig_node representing the
731 * destination, the packet can immediately be dropped as it will
732 * not be possible to deliver it
733 */
Antonio Quartullia73105b2011-04-27 14:27:44 +0200734 if (!orig_node)
735 return 0;
736
737 curr_ttvn = (uint8_t)atomic_read(&orig_node->last_ttvn);
Sven Eckelmann7d211ef2012-05-12 02:09:34 +0200738 batadv_orig_node_free_ref(orig_node);
Antonio Quartullia73105b2011-04-27 14:27:44 +0200739 }
740
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200741 /* check if the TTVN contained in the packet is fresher than what the
742 * node knows
743 */
Sven Eckelmann3e348192012-05-16 20:23:22 +0200744 is_old_ttvn = batadv_seq_before(unicast_packet->ttvn, curr_ttvn);
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200745 if (!is_old_ttvn)
746 return 1;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200747
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200748 old_ttvn = unicast_packet->ttvn;
749 /* the packet was forged based on outdated network information. Its
750 * destination can possibly be updated and forwarded towards the new
751 * target host
752 */
753 if (batadv_reroute_unicast_packet(bat_priv, unicast_packet,
Antonio Quartullic018ad32013-06-04 12:11:39 +0200754 ethhdr->h_dest, vid)) {
André Gaul23c4ec12014-06-10 17:50:31 +0200755 batadv_dbg_ratelimited(BATADV_DBG_TT, bat_priv,
756 "Rerouting unicast packet to %pM (dst=%pM): TTVN mismatch old_ttvn=%u new_ttvn=%u\n",
757 unicast_packet->dest, ethhdr->h_dest,
758 old_ttvn, curr_ttvn);
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200759 return 1;
Antonio Quartullia73105b2011-04-27 14:27:44 +0200760 }
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200761
762 /* the packet has not been re-routed: either the destination is
763 * currently served by this node or there is no destination at all and
764 * it is possible to drop the packet
765 */
Antonio Quartullic018ad32013-06-04 12:11:39 +0200766 if (!batadv_is_my_client(bat_priv, ethhdr->h_dest, vid))
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200767 return 0;
768
769 /* update the header in order to let the packet be delivered to this
770 * node's soft interface
771 */
772 primary_if = batadv_primary_if_get_selected(bat_priv);
773 if (!primary_if)
774 return 0;
775
Antonio Quartulli8fdd0152014-01-22 00:42:11 +0100776 ether_addr_copy(unicast_packet->dest, primary_if->net_dev->dev_addr);
Antonio Quartulli7c1fd912012-09-23 22:38:34 +0200777
778 batadv_hardif_free_ref(primary_if);
779
780 unicast_packet->ttvn = curr_ttvn;
781
Antonio Quartullia73105b2011-04-27 14:27:44 +0200782 return 1;
783}
784
Simon Wunderlicha1f1ac52013-04-25 10:37:23 +0200785/**
786 * batadv_recv_unhandled_unicast_packet - receive and process packets which
787 * are in the unicast number space but not yet known to the implementation
788 * @skb: unicast tvlv packet to process
789 * @recv_if: pointer to interface this packet was received on
790 *
791 * Returns NET_RX_SUCCESS if the packet has been consumed or NET_RX_DROP
792 * otherwise.
793 */
794int batadv_recv_unhandled_unicast_packet(struct sk_buff *skb,
795 struct batadv_hard_iface *recv_if)
796{
797 struct batadv_unicast_packet *unicast_packet;
798 struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
799 int check, hdr_size = sizeof(*unicast_packet);
800
801 check = batadv_check_unicast_packet(bat_priv, skb, hdr_size);
802 if (check < 0)
803 return NET_RX_DROP;
804
805 /* we don't know about this type, drop it. */
806 unicast_packet = (struct batadv_unicast_packet *)skb->data;
807 if (batadv_is_my_mac(bat_priv, unicast_packet->dest))
808 return NET_RX_DROP;
809
810 return batadv_route_unicast_packet(skb, recv_if);
811}
812
Sven Eckelmann56303d32012-06-05 22:31:31 +0200813int batadv_recv_unicast_packet(struct sk_buff *skb,
814 struct batadv_hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000815{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200816 struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
Sven Eckelmann96412692012-06-05 22:31:30 +0200817 struct batadv_unicast_packet *unicast_packet;
Martin Hundebøll4046b242012-04-20 17:02:45 +0200818 struct batadv_unicast_4addr_packet *unicast_4addr_packet;
Antonio Quartulli9affec62012-10-14 17:19:19 +0200819 uint8_t *orig_addr;
820 struct batadv_orig_node *orig_node = NULL;
Martin Hundebøll612d2b42013-01-25 11:12:42 +0100821 int check, hdr_size = sizeof(*unicast_packet);
Antonio Quartullic384ea32011-06-26 03:37:18 +0200822 bool is4addr;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000823
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200824 unicast_packet = (struct batadv_unicast_packet *)skb->data;
Martin Hundebøll4046b242012-04-20 17:02:45 +0200825 unicast_4addr_packet = (struct batadv_unicast_4addr_packet *)skb->data;
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200826
Simon Wunderlicha40d9b02013-12-02 20:38:31 +0100827 is4addr = unicast_packet->packet_type == BATADV_UNICAST_4ADDR;
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200828 /* the caller function should have already pulled 2 bytes */
Antonio Quartullic384ea32011-06-26 03:37:18 +0200829 if (is4addr)
Martin Hundebøll4046b242012-04-20 17:02:45 +0200830 hdr_size = sizeof(*unicast_4addr_packet);
Antonio Quartulli7cdcf6d2012-10-01 09:57:35 +0200831
Martin Hundebøll612d2b42013-01-25 11:12:42 +0100832 /* function returns -EREMOTE for promiscuous packets */
David S. Miller6e0895c2013-04-22 20:32:51 -0400833 check = batadv_check_unicast_packet(bat_priv, skb, hdr_size);
Martin Hundebøll612d2b42013-01-25 11:12:42 +0100834
835 /* Even though the packet is not for us, we might save it to use for
836 * decoding a later received coded packet
837 */
838 if (check == -EREMOTE)
839 batadv_nc_skb_store_sniffed_unicast(bat_priv, skb);
840
841 if (check < 0)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000842 return NET_RX_DROP;
Antonio Quartullidd981ab2013-04-03 10:14:20 +0200843 if (!batadv_check_unicast_ttvn(bat_priv, skb, hdr_size))
Antonio Quartullia73105b2011-04-27 14:27:44 +0200844 return NET_RX_DROP;
845
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000846 /* packet for me */
Antonio Quartullife8a93b2013-04-03 19:10:26 +0200847 if (batadv_is_my_mac(bat_priv, unicast_packet->dest)) {
Antonio Quartulli9affec62012-10-14 17:19:19 +0200848 if (is4addr) {
Martin Hundebøll4046b242012-04-20 17:02:45 +0200849 batadv_dat_inc_counter(bat_priv,
850 unicast_4addr_packet->subtype);
Antonio Quartulli9affec62012-10-14 17:19:19 +0200851 orig_addr = unicast_4addr_packet->src;
852 orig_node = batadv_orig_hash_find(bat_priv, orig_addr);
853 }
Martin Hundebøll4046b242012-04-20 17:02:45 +0200854
Antonio Quartullic384ea32011-06-26 03:37:18 +0200855 if (batadv_dat_snoop_incoming_arp_request(bat_priv, skb,
856 hdr_size))
857 goto rx_success;
858 if (batadv_dat_snoop_incoming_arp_reply(bat_priv, skb,
859 hdr_size))
860 goto rx_success;
861
Antonio Quartulli37135172012-07-05 23:38:30 +0200862 batadv_interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size,
Antonio Quartulli9affec62012-10-14 17:19:19 +0200863 orig_node);
Antonio Quartulli37135172012-07-05 23:38:30 +0200864
Antonio Quartullic384ea32011-06-26 03:37:18 +0200865rx_success:
Antonio Quartulli9affec62012-10-14 17:19:19 +0200866 if (orig_node)
867 batadv_orig_node_free_ref(orig_node);
868
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000869 return NET_RX_SUCCESS;
870 }
871
Sven Eckelmann63b01032012-05-16 20:23:13 +0200872 return batadv_route_unicast_packet(skb, recv_if);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000873}
874
Marek Lindneref261572013-04-23 21:39:57 +0800875/**
876 * batadv_recv_unicast_tvlv - receive and process unicast tvlv packets
877 * @skb: unicast tvlv packet to process
878 * @recv_if: pointer to interface this packet was received on
879 * @dst_addr: the payload destination
880 *
881 * Returns NET_RX_SUCCESS if the packet has been consumed or NET_RX_DROP
882 * otherwise.
883 */
884int batadv_recv_unicast_tvlv(struct sk_buff *skb,
885 struct batadv_hard_iface *recv_if)
886{
887 struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
888 struct batadv_unicast_tvlv_packet *unicast_tvlv_packet;
889 unsigned char *tvlv_buff;
890 uint16_t tvlv_buff_len;
891 int hdr_size = sizeof(*unicast_tvlv_packet);
892 int ret = NET_RX_DROP;
893
894 if (batadv_check_unicast_packet(bat_priv, skb, hdr_size) < 0)
895 return NET_RX_DROP;
896
897 /* the header is likely to be modified while forwarding */
898 if (skb_cow(skb, hdr_size) < 0)
899 return NET_RX_DROP;
900
901 /* packet needs to be linearized to access the tvlv content */
902 if (skb_linearize(skb) < 0)
903 return NET_RX_DROP;
904
905 unicast_tvlv_packet = (struct batadv_unicast_tvlv_packet *)skb->data;
906
907 tvlv_buff = (unsigned char *)(skb->data + hdr_size);
908 tvlv_buff_len = ntohs(unicast_tvlv_packet->tvlv_len);
909
910 if (tvlv_buff_len > skb->len - hdr_size)
911 return NET_RX_DROP;
912
913 ret = batadv_tvlv_containers_process(bat_priv, false, NULL,
914 unicast_tvlv_packet->src,
915 unicast_tvlv_packet->dst,
916 tvlv_buff, tvlv_buff_len);
917
918 if (ret != NET_RX_SUCCESS)
919 ret = batadv_route_unicast_packet(skb, recv_if);
Antonio Quartulli05c3c8a2014-02-11 17:05:07 +0100920 else
921 consume_skb(skb);
Marek Lindneref261572013-04-23 21:39:57 +0800922
923 return ret;
924}
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000925
Martin Hundebøll610bfc6bc2013-05-23 16:53:02 +0200926/**
927 * batadv_recv_frag_packet - process received fragment
928 * @skb: the received fragment
929 * @recv_if: interface that the skb is received on
930 *
931 * This function does one of the three following things: 1) Forward fragment, if
932 * the assembled packet will exceed our MTU; 2) Buffer fragment, if we till
933 * lack further fragments; 3) Merge fragments, if we have all needed parts.
934 *
935 * Return NET_RX_DROP if the skb is not consumed, NET_RX_SUCCESS otherwise.
936 */
937int batadv_recv_frag_packet(struct sk_buff *skb,
938 struct batadv_hard_iface *recv_if)
939{
940 struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
941 struct batadv_orig_node *orig_node_src = NULL;
942 struct batadv_frag_packet *frag_packet;
943 int ret = NET_RX_DROP;
944
945 if (batadv_check_unicast_packet(bat_priv, skb,
946 sizeof(*frag_packet)) < 0)
947 goto out;
948
949 frag_packet = (struct batadv_frag_packet *)skb->data;
950 orig_node_src = batadv_orig_hash_find(bat_priv, frag_packet->orig);
951 if (!orig_node_src)
952 goto out;
953
954 /* Route the fragment if it is not for us and too big to be merged. */
955 if (!batadv_is_my_mac(bat_priv, frag_packet->dest) &&
956 batadv_frag_skb_fwd(skb, recv_if, orig_node_src)) {
957 ret = NET_RX_SUCCESS;
958 goto out;
959 }
960
961 batadv_inc_counter(bat_priv, BATADV_CNT_FRAG_RX);
962 batadv_add_counter(bat_priv, BATADV_CNT_FRAG_RX_BYTES, skb->len);
963
964 /* Add fragment to buffer and merge if possible. */
965 if (!batadv_frag_skb_buffer(&skb, orig_node_src))
966 goto out;
967
968 /* Deliver merged packet to the appropriate handler, if it was
969 * merged
970 */
971 if (skb)
972 batadv_batman_skb_recv(skb, recv_if->net_dev,
973 &recv_if->batman_adv_ptype, NULL);
974
975 ret = NET_RX_SUCCESS;
976
977out:
978 if (orig_node_src)
979 batadv_orig_node_free_ref(orig_node_src);
980
981 return ret;
982}
983
Sven Eckelmann56303d32012-06-05 22:31:31 +0200984int batadv_recv_bcast_packet(struct sk_buff *skb,
985 struct batadv_hard_iface *recv_if)
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000986{
Sven Eckelmann56303d32012-06-05 22:31:31 +0200987 struct batadv_priv *bat_priv = netdev_priv(recv_if->soft_iface);
988 struct batadv_orig_node *orig_node = NULL;
Sven Eckelmann96412692012-06-05 22:31:30 +0200989 struct batadv_bcast_packet *bcast_packet;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000990 struct ethhdr *ethhdr;
Sven Eckelmann704509b2011-05-14 23:14:54 +0200991 int hdr_size = sizeof(*bcast_packet);
Marek Lindnerf3e00082011-01-25 21:52:11 +0000992 int ret = NET_RX_DROP;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000993 int32_t seq_diff;
Antonio Quartulli3fba7322013-10-13 02:50:17 +0200994 uint32_t seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000995
996 /* drop packet if it has not necessary minimum size */
997 if (unlikely(!pskb_may_pull(skb, hdr_size)))
Marek Lindnerf3e00082011-01-25 21:52:11 +0000998 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +0000999
Antonio Quartulli7ed4be92013-04-08 15:08:18 +02001000 ethhdr = eth_hdr(skb);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001001
1002 /* packet with broadcast indication but unicast recipient */
1003 if (!is_broadcast_ether_addr(ethhdr->h_dest))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001004 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001005
1006 /* packet with broadcast sender address */
1007 if (is_broadcast_ether_addr(ethhdr->h_source))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001008 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001009
1010 /* ignore broadcasts sent by myself */
Antonio Quartullife8a93b2013-04-03 19:10:26 +02001011 if (batadv_is_my_mac(bat_priv, ethhdr->h_source))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001012 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001013
Sven Eckelmann96412692012-06-05 22:31:30 +02001014 bcast_packet = (struct batadv_bcast_packet *)skb->data;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001015
1016 /* ignore broadcasts originated by myself */
Antonio Quartullife8a93b2013-04-03 19:10:26 +02001017 if (batadv_is_my_mac(bat_priv, bcast_packet->orig))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001018 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001019
Simon Wunderlicha40d9b02013-12-02 20:38:31 +01001020 if (bcast_packet->ttl < 2)
Marek Lindnerf3e00082011-01-25 21:52:11 +00001021 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001022
Sven Eckelmannda641192012-05-12 13:48:56 +02001023 orig_node = batadv_orig_hash_find(bat_priv, bcast_packet->orig);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001024
1025 if (!orig_node)
Antonio Quartullib5a6f692011-04-16 11:30:57 +02001026 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001027
Marek Lindnerf3e00082011-01-25 21:52:11 +00001028 spin_lock_bh(&orig_node->bcast_seqno_lock);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001029
Antonio Quartulli3fba7322013-10-13 02:50:17 +02001030 seqno = ntohl(bcast_packet->seqno);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001031 /* check whether the packet is a duplicate */
Sven Eckelmann9b4a1152012-05-12 13:48:53 +02001032 if (batadv_test_bit(orig_node->bcast_bits, orig_node->last_bcast_seqno,
Antonio Quartulli3fba7322013-10-13 02:50:17 +02001033 seqno))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001034 goto spin_unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001035
Antonio Quartulli3fba7322013-10-13 02:50:17 +02001036 seq_diff = seqno - orig_node->last_bcast_seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001037
1038 /* check whether the packet is old and the host just restarted. */
Sven Eckelmann30d3c512012-05-12 02:09:36 +02001039 if (batadv_window_protected(bat_priv, seq_diff,
1040 &orig_node->bcast_seqno_reset))
Marek Lindnerf3e00082011-01-25 21:52:11 +00001041 goto spin_unlock;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001042
1043 /* mark broadcast in flood history, update window position
Sven Eckelmann9cfc7bd2012-05-12 02:09:43 +02001044 * if required.
1045 */
Sven Eckelmann0f5f9322012-05-12 02:09:25 +02001046 if (batadv_bit_get_packet(bat_priv, orig_node->bcast_bits, seq_diff, 1))
Antonio Quartulli3fba7322013-10-13 02:50:17 +02001047 orig_node->last_bcast_seqno = seqno;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001048
Marek Lindnerf3e00082011-01-25 21:52:11 +00001049 spin_unlock_bh(&orig_node->bcast_seqno_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001050
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001051 /* check whether this has been sent by another originator before */
Simon Wunderlich004e86f2012-10-18 13:47:42 +02001052 if (batadv_bla_check_bcast_duplist(bat_priv, skb))
Simon Wunderlichfe2da6f2012-01-22 20:00:24 +01001053 goto out;
1054
Simon Wunderlichc54f38c2013-07-29 17:56:44 +02001055 batadv_skb_set_priority(skb, sizeof(struct batadv_bcast_packet));
1056
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001057 /* rebroadcast packet */
Sven Eckelmann9455e342012-05-12 02:09:37 +02001058 batadv_add_bcast_packet_to_list(bat_priv, skb, 1);
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001059
Simon Wunderlich23721382012-01-22 20:00:19 +01001060 /* don't hand the broadcast up if it is from an originator
1061 * from the same backbone.
1062 */
Sven Eckelmann08adf152012-05-12 13:38:47 +02001063 if (batadv_bla_is_backbone_gw(skb, orig_node, hdr_size))
Simon Wunderlich23721382012-01-22 20:00:19 +01001064 goto out;
1065
Antonio Quartullic384ea32011-06-26 03:37:18 +02001066 if (batadv_dat_snoop_incoming_arp_request(bat_priv, skb, hdr_size))
1067 goto rx_success;
1068 if (batadv_dat_snoop_incoming_arp_reply(bat_priv, skb, hdr_size))
1069 goto rx_success;
1070
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001071 /* broadcast for me */
Antonio Quartulli37135172012-07-05 23:38:30 +02001072 batadv_interface_rx(recv_if->soft_iface, skb, recv_if, hdr_size,
1073 orig_node);
Antonio Quartullic384ea32011-06-26 03:37:18 +02001074
1075rx_success:
Marek Lindnerf3e00082011-01-25 21:52:11 +00001076 ret = NET_RX_SUCCESS;
1077 goto out;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001078
Marek Lindnerf3e00082011-01-25 21:52:11 +00001079spin_unlock:
1080 spin_unlock_bh(&orig_node->bcast_seqno_lock);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001081out:
1082 if (orig_node)
Sven Eckelmann7d211ef2012-05-12 02:09:34 +02001083 batadv_orig_node_free_ref(orig_node);
Marek Lindnerf3e00082011-01-25 21:52:11 +00001084 return ret;
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001085}