batman-adv: release vlan object after checking the CRC
authorAntonio Quartulli <[email protected]>
Tue, 28 Jan 2014 01:06:47 +0000 (02:06 +0100)
committerAntonio Quartulli <[email protected]>
Mon, 17 Feb 2014 16:17:00 +0000 (17:17 +0100)
There is a refcounter unbalance in the CRC checking routine
invoked on OGM reception. A vlan object is retrieved (thus
its refcounter is increased by one) but it is never properly
released. This leads to a memleak because the vlan object
will never be free'd.

Fix this by releasing the vlan object after having read the
CRC.

Reported-by: Russell Senior <[email protected]>
Reported-by: Daniel <[email protected]>
Reported-by: cmsv <[email protected]>
Signed-off-by: Antonio Quartulli <[email protected]>
Signed-off-by: Marek Lindner <[email protected]>
net/batman-adv/translation-table.c

index beba13fbd10a0543194ff1f614b32eace2d3765e..c21c5572c86001a480d48e3942669d796e82da07 100644 (file)
@@ -2262,6 +2262,7 @@ static bool batadv_tt_global_check_crc(struct batadv_orig_node *orig_node,
 {
        struct batadv_tvlv_tt_vlan_data *tt_vlan_tmp;
        struct batadv_orig_node_vlan *vlan;
+       uint32_t crc;
        int i;
 
        /* check if each received CRC matches the locally stored one */
@@ -2281,7 +2282,10 @@ static bool batadv_tt_global_check_crc(struct batadv_orig_node *orig_node,
                if (!vlan)
                        return false;
 
-               if (vlan->tt.crc != ntohl(tt_vlan_tmp->crc))
+               crc = vlan->tt.crc;
+               batadv_orig_node_vlan_free_ref(vlan);
+
+               if (crc != ntohl(tt_vlan_tmp->crc))
                        return false;
        }