mac802154: properly free incoming skbs on decryption failure
authorPhoebe Buckheister <phoebe.buckheister@itwm.fraunhofer.de>
Wed, 11 Jun 2014 10:03:06 +0000 (12:03 +0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 11 Jun 2014 19:10:18 +0000 (12:10 -0700)
mac802154 RX did not free skbs on decryption failure, assuming that the
caller would when the local rx handler returned _DROP. This was false.

Signed-off-by: Phoebe Buckheister <phoebe.buckheister@itwm.fraunhofer.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/mac802154/wpan.c

index 23bc91c..c8cfd54 100644 (file)
@@ -472,6 +472,7 @@ mac802154_subif_frame(struct mac802154_sub_if_data *sdata, struct sk_buff *skb,
        rc = mac802154_llsec_decrypt(&sdata->sec, skb);
        if (rc) {
                pr_debug("decryption failed: %i\n", rc);
+               kfree_skb(skb);
                return NET_RX_DROP;
        }