aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv
diff options
context:
space:
mode:
authorAntonio Quartulli <ordex@autistici.org>2011-10-16 14:32:03 -0400
committerSven Eckelmann <sven@narfation.org>2011-11-20 07:08:34 -0500
commit8b7342d673d31e7aa60baae35321c11532275cdb (patch)
tree5e6790ae621aad9fda859fcb39aa626dcfb8bb4d /net/batman-adv
parentdc58fe32e6a4fbd270e8f045225ce475073d0772 (diff)
batman-adv: check for tt_reponse packet real length
Before accessing the TT_RESPONSE packet payload, the node has to ensure that the packet is long enough as it would expect to be. Reported-by: Simon Wunderlich <siwu@hrz.tu-chemnitz.de> Signed-off-by: Antonio Quartulli <ordex@autistici.org> Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net/batman-adv')
-rw-r--r--net/batman-adv/routing.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/net/batman-adv/routing.c b/net/batman-adv/routing.c
index e0e7b7b79ca9..ef24a7205f65 100644
--- a/net/batman-adv/routing.c
+++ b/net/batman-adv/routing.c
@@ -578,6 +578,7 @@ int recv_tt_query(struct sk_buff *skb, struct hard_iface *recv_if)
578{ 578{
579 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface); 579 struct bat_priv *bat_priv = netdev_priv(recv_if->soft_iface);
580 struct tt_query_packet *tt_query; 580 struct tt_query_packet *tt_query;
581 uint16_t tt_len;
581 struct ethhdr *ethhdr; 582 struct ethhdr *ethhdr;
582 583
583 /* drop packet if it has not necessary minimum size */ 584 /* drop packet if it has not necessary minimum size */
@@ -622,6 +623,14 @@ int recv_tt_query(struct sk_buff *skb, struct hard_iface *recv_if)
622 if (skb_linearize(skb) < 0) 623 if (skb_linearize(skb) < 0)
623 goto out; 624 goto out;
624 625
626 tt_len = tt_query->tt_data * sizeof(struct tt_change);
627
628 /* Ensure we have all the claimed data */
629 if (unlikely(skb_headlen(skb) <
630 sizeof(struct tt_query_packet) +
631 tt_len))
632 goto out;
633
625 handle_tt_response(bat_priv, tt_query); 634 handle_tt_response(bat_priv, tt_query);
626 } else { 635 } else {
627 bat_dbg(DBG_TT, bat_priv, 636 bat_dbg(DBG_TT, bat_priv,