linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Antonio Quartulli <antonio@meshcoding.com>
To: mpirker@linux.com,
	"mareklindner@neomailbox.ch" <mareklindner@neomailbox.ch>,
	"sw@simonwunderlich.de" <sw@simonwunderlich.de>,
	"davem@davemloft.net" <davem@davemloft.net>
Cc: "netdev@vger.kernel.org" <netdev@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] batman-adv: fix potential NULL pointer dereferencing
Date: Mon, 22 Sep 2014 11:12:43 +0200	[thread overview]
Message-ID: <541FE80B.7090108@meshcoding.com> (raw)
In-Reply-To: <DUB123-W2663266CEA8296935E9450A0B30@phx.gbl>

[-- Attachment #1: Type: text/plain, Size: 1486 bytes --]



On 22/09/14 11:11, Mario Pirker wrote:
> From b451e7317148e18bf6c5c8fd747d79ab34260354 Mon Sep 17 00:00:00 2001
> From: Mario Pirker <mario.pirker@kellogg.ox.ac.uk>
> Date: Tue, 16 Sep 2014 17:55:13 +0200
> Subject: [PATCH] batman-adv: fix potential NULL pointer dereferencing
> 
> The call batadv_gw_node_get may return NULL. The return value has to
> be sanity checked before the pointer is dereferenced.
> 
> Signed-off-by: Mario Pirker <mariopirker@hotmail.com>
> ---

We already have a patch queued to fix this issue
(http://permalink.gmane.org/gmane.org.freifunk.batman/12357).

Actually it is not about a missing check but it is more about a typo in
the check right below the one you added.

Cheers,

>  net/batman-adv/gateway_client.c | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/net/batman-adv/gateway_client.c b/net/batman-adv/gateway_client.c
> index 90cff58..7ee0913 100644
> --- a/net/batman-adv/gateway_client.c
> +++ b/net/batman-adv/gateway_client.c
> @@ -810,6 +810,11 @@ bool batadv_gw_out_of_range(struct batadv_priv *bat_priv,
>                 goto out;
>  
>         gw_node = batadv_gw_node_get(bat_priv, orig_dst_node);
> +
> +       /* gw_node can be NULL. We need to check before dereferencing */
> +       if (gw_node == NULL)
> +               goto out;
> +
>         if (!gw_node->bandwidth_down == 0)
>                 goto out;
>  
> -- 
> 1.8.1.4 		 	   		  
> 

-- 
Antonio Quartulli


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

      reply	other threads:[~2014-09-22  9:14 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-22  9:11 [PATCH] batman-adv: fix potential NULL pointer dereferencing Mario Pirker
2014-09-22  9:12 ` Antonio Quartulli [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=541FE80B.7090108@meshcoding.com \
    --to=antonio@meshcoding.com \
    --cc=davem@davemloft.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mareklindner@neomailbox.ch \
    --cc=mpirker@linux.com \
    --cc=netdev@vger.kernel.org \
    --cc=sw@simonwunderlich.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).