lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CANn89iKjemgfRL-Yy2AS8kQj4iEa3DGT+uq1GabFTTw6Mr5o4w@mail.gmail.com>
Date: Mon, 26 Feb 2024 14:04:51 +0100
From: Eric Dumazet <edumazet@...gle.com>
To: Pablo Neira Ayuso <pablo@...filter.org>
Cc: netdev@...r.kernel.org, netfilter-devel@...r.kernel.org, 
	davem@...emloft.net, kuba@...nel.org, pabeni@...hat.com, fw@...len.de
Subject: Re: [PATCH net] netlink: validate length of NLA_{BE16,BE32} types

On Sun, Feb 25, 2024 at 11:58 PM Pablo Neira Ayuso <pablo@...filter.org> wrote:
>
> syzbot reports:
>
> =====================================================
>
...

> After this update, kernel displays:
>
>   netlink: 'x': attribute type 2 has an invalid length.
>
> in case that the attribute payload is too small and it reports -ERANGE
> to userspace.
>
> Fixes: ecaf75ffd5f5 ("netlink: introduce bigendian integer types")
> Reported-by: syzbot+3f497b07aa3baf2fb4d0@...kaller.appspotmail.com
> Reported-by: xingwei lee <xrivendell7@...il.com>
> Signed-off-by: Pablo Neira Ayuso <pablo@...filter.org>
> ---
>  lib/nlattr.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/lib/nlattr.c b/lib/nlattr.c
> index ed2ab43e1b22..be9c576b6e2d 100644
> --- a/lib/nlattr.c
> +++ b/lib/nlattr.c
> @@ -30,6 +30,8 @@ static const u8 nla_attr_len[NLA_TYPE_MAX+1] = {
>         [NLA_S16]       = sizeof(s16),
>         [NLA_S32]       = sizeof(s32),
>         [NLA_S64]       = sizeof(s64),
> +       [NLA_BE16]      = sizeof(__be16),
> +       [NLA_BE32]      = sizeof(__be32),
>  };
>
>  static const u8 nla_attr_minlen[NLA_TYPE_MAX+1] = {
> @@ -43,6 +45,8 @@ static const u8 nla_attr_minlen[NLA_TYPE_MAX+1] = {
>         [NLA_S16]       = sizeof(s16),
>         [NLA_S32]       = sizeof(s32),
>         [NLA_S64]       = sizeof(s64),
> +       [NLA_BE16]      = sizeof(__be16),
> +       [NLA_BE32]      = sizeof(__be32),
>  };
>

Reviewed-by: Eric Dumazet <edumazet@...gle.com>

Thanks.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ