[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <599699FD.5000002@gmail.com>
Date: Fri, 18 Aug 2017 00:40:45 -0700
From: John Fastabend <john.fastabend@...il.com>
To: Dan Carpenter <dan.carpenter@...cle.com>,
Alexei Starovoitov <ast@...nel.org>
CC: Daniel Borkmann <daniel@...earbox.net>, netdev@...r.kernel.org,
kernel-janitors@...r.kernel.org
Subject: Re: [PATCH net-next] bpf: fix a return in sockmap_get_from_fd()
On 08/18/2017 12:27 AM, Dan Carpenter wrote:
> "map" is a valid pointer. We wanted to return "err" instead. Also
> let's return a zero literal at the end.
>
> Fixes: 174a79ff9515 ("bpf: sockmap with sk redirect support")
> Signed-off-by: Dan Carpenter <dan.carpenter@...cle.com>
>
> diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c
> index d2f2bdf71ffa..b8cb1b3c9bfb 100644
> --- a/kernel/bpf/syscall.c
> +++ b/kernel/bpf/syscall.c
Thanks, just a note though the sockmap attach call can not fail so
this branch is effectively never used. We could just remove the
branch but having an unchecked 'err' code seems fragile if we ever
do find a reason to fail in the attach path.
Acked-by: John Fastabend <john.fastabend@...il.com>
> @@ -1125,11 +1125,11 @@ static int sockmap_get_from_fd(const union bpf_attr *attr, int ptype)
> fdput(f);
> bpf_prog_put(prog1);
> bpf_prog_put(prog2);
> - return PTR_ERR(map);
> + return err;
> }
>
> fdput(f);
> - return err;
> + return 0;
> }
>
> static int bpf_prog_attach(const union bpf_attr *attr)
>
Powered by blists - more mailing lists