* [B.A.T.M.A.N.] [PATCH] batman-adv: fix kernel crash due to missing NULL checks
@ 2015-06-17 10:42 Marek Lindner
2015-06-17 15:24 ` Antonio Quartulli
0 siblings, 1 reply; 2+ messages in thread
From: Marek Lindner @ 2015-06-17 10:42 UTC (permalink / raw)
To: b.a.t.m.a.n; +Cc: Marek Lindner
batadv_softif_vlan_get() may return NULL which has to be verified
by the caller.
Reported-by: Ryan Thompson <ryan@eero.com>
Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch>
---
soft-interface.c | 3 +++
translation-table.c | 17 +++++++++++++----
2 files changed, 16 insertions(+), 4 deletions(-)
diff --git a/soft-interface.c b/soft-interface.c
index da89336..7841a4b 100644
--- a/soft-interface.c
+++ b/soft-interface.c
@@ -455,6 +455,9 @@ out:
*/
void batadv_softif_vlan_free_ref(struct batadv_softif_vlan *vlan)
{
+ if (!vlan)
+ return;
+
if (atomic_dec_and_test(&vlan->refcount)) {
spin_lock_bh(&vlan->bat_priv->softif_vlan_list_lock);
hlist_del_rcu(&vlan->list);
diff --git a/translation-table.c b/translation-table.c
index e95a424..efbcb59 100644
--- a/translation-table.c
+++ b/translation-table.c
@@ -575,6 +575,8 @@ bool batadv_tt_local_add(struct net_device *soft_iface, const uint8_t *addr,
/* increase the refcounter of the related vlan */
vlan = batadv_softif_vlan_get(bat_priv, vid);
+ if (!vlan)
+ goto out;
batadv_dbg(BATADV_DBG_TT, bat_priv,
"Creating new local tt entry: %pM (vid: %d, ttvn: %d)\n",
@@ -1047,6 +1049,9 @@ uint16_t batadv_tt_local_remove(struct batadv_priv *bat_priv,
/* decrease the reference held for this vlan */
vlan = batadv_softif_vlan_get(bat_priv, vid);
+ if (!vlan)
+ goto out;
+
batadv_softif_vlan_free_ref(vlan);
batadv_softif_vlan_free_ref(vlan);
@@ -1147,8 +1152,10 @@ static void batadv_tt_local_table_free(struct batadv_priv *bat_priv)
/* decrease the reference held for this vlan */
vlan = batadv_softif_vlan_get(bat_priv,
tt_common_entry->vid);
- batadv_softif_vlan_free_ref(vlan);
- batadv_softif_vlan_free_ref(vlan);
+ if (vlan) {
+ batadv_softif_vlan_free_ref(vlan);
+ batadv_softif_vlan_free_ref(vlan);
+ }
batadv_tt_local_entry_free_ref(tt_local);
}
@@ -3188,8 +3195,10 @@ static void batadv_tt_local_purge_pending_clients(struct batadv_priv *bat_priv)
/* decrease the reference held for this vlan */
vlan = batadv_softif_vlan_get(bat_priv, tt_common->vid);
- batadv_softif_vlan_free_ref(vlan);
- batadv_softif_vlan_free_ref(vlan);
+ if (vlan) {
+ batadv_softif_vlan_free_ref(vlan);
+ batadv_softif_vlan_free_ref(vlan);
+ }
batadv_tt_local_entry_free_ref(tt_local);
}
--
2.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [B.A.T.M.A.N.] [PATCH] batman-adv: fix kernel crash due to missing NULL checks
2015-06-17 10:42 [B.A.T.M.A.N.] [PATCH] batman-adv: fix kernel crash due to missing NULL checks Marek Lindner
@ 2015-06-17 15:24 ` Antonio Quartulli
0 siblings, 0 replies; 2+ messages in thread
From: Antonio Quartulli @ 2015-06-17 15:24 UTC (permalink / raw)
To: The list for a Better Approach To Mobile Ad-hoc Networking; +Cc: Marek Lindner
[-- Attachment #1: Type: text/plain, Size: 1493 bytes --]
On 17/06/15 12:42, Marek Lindner wrote:
> batadv_softif_vlan_get() may return NULL which has to be verified
> by the caller.
>
> Reported-by: Ryan Thompson <ryan@eero.com>
> Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch>
one comment is inline:
> ---
> soft-interface.c | 3 +++
> translation-table.c | 17 +++++++++++++----
> 2 files changed, 16 insertions(+), 4 deletions(-)
>
> diff --git a/soft-interface.c b/soft-interface.c
> index da89336..7841a4b 100644
> --- a/soft-interface.c
> +++ b/soft-interface.c
> @@ -455,6 +455,9 @@ out:
> */
> void batadv_softif_vlan_free_ref(struct batadv_softif_vlan *vlan)
> {
> + if (!vlan)
> + return;
> +
> if (atomic_dec_and_test(&vlan->refcount)) {
> spin_lock_bh(&vlan->bat_priv->softif_vlan_list_lock);
> hlist_del_rcu(&vlan->list);
> diff --git a/translation-table.c b/translation-table.c
> index e95a424..efbcb59 100644
> --- a/translation-table.c
> +++ b/translation-table.c
> @@ -575,6 +575,8 @@ bool batadv_tt_local_add(struct net_device *soft_iface, const uint8_t *addr,
>
> /* increase the refcounter of the related vlan */
> vlan = batadv_softif_vlan_get(bat_priv, vid);
> + if (!vlan)
> + goto out;
In this case I'd use a WARN here because if we are adding a local client
to a specific VLAN the assumption is that batman-adv is already aware of
this VLAN, therefore this condition is not expected to be true.
Cheers,
--
Antonio Quartulli
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-06-17 15:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-17 10:42 [B.A.T.M.A.N.] [PATCH] batman-adv: fix kernel crash due to missing NULL checks Marek Lindner
2015-06-17 15:24 ` Antonio Quartulli
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox