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]
Date:   Fri, 3 Dec 2021 15:48:55 -0500
From:   Steven Rostedt <rostedt@...dmis.org>
To:     Yury Norov <yury.norov@...il.com>
Cc:     Andy Shevchenko <andriy.shevchenko@...ux.intel.com>,
        Kees Cook <keescook@...omium.org>,
        Rasmus Villemoes <linux@...musvillemoes.dk>,
        Wolfram Sang <wsa+renesas@...g-engineering.com>,
        linux-kernel@...r.kernel.org, linux-hardening@...r.kernel.org
Subject: Re: [PATCH] find: Do not read beyond variable boundaries on small
 sizes

On Fri, 3 Dec 2021 10:26:38 -0800
Yury Norov <yury.norov@...il.com> wrote:

> On Fri, Dec 03, 2021 at 02:30:35PM +0200, Andy Shevchenko wrote:
> > On Fri, Dec 03, 2021 at 02:08:46AM -0800, Kees Cook wrote:  
> > > It's common practice to cast small variable arguments to the find_*_bit()  
> 
> Not that common - I found 19 examples of this cast, and most of them
> are in drivers. The only non-driver case is kernel/trace/pid_list.c:
> 
>         static inline bool upper_empty(union upper_chunk *chunk)
>         {
>                 /*
>                  * If chunk->data has no lower chunks, it will be the same
>                  * as a zeroed bitmask. Use find_first_bit() to test it
>                  * and if it doesn't find any bits set, then the array
>                  * is empty.
>                  */
>                 int bit = find_first_bit((unsigned long *)chunk->data,
>                                          sizeof(chunk->data) * 8);
>                 return bit >= sizeof(chunk->data) * 8;
>         }
> 
> And it's OK wrt type conversion because chunk->data is:
> 
>         union lower_chunk {
>                 union lower_chunk               *next;
>                 unsigned long                   data[LOWER_SIZE]; // 2K in size
>         };
> 
> Although, this function should use bitmap_empty(), probably like this:
> 
>         static inline bool upper_empty(union upper_chunk *chunk)
>         {
>                 return bitmap_empty(chunk->data->data[0], BITS_PER_LONG);
>         }
> 
> Steven, can you comment on this?
> 
> > It's a bad practice and should be fixed accordingly, no?  
> 
> Yes.

You are probably right and that should be bitmap_empty(), but the above is
incorrect.

This is emulating a sparse bitmask in a tree.

trace_pid_list {
	union upper_chunk	upper[256];
};

union upper_chunk {
	union upper_chunk	*next; // when freed used as free list pointer
	union lower_chunk	data[256];
};

union lower_chunk {
	union lower_chunk	*next; // for free list
	unsigned long		data[512]; // for 64 bit
//				data[1024]; for 32 bit
};

The code is initialized where we allocate some structures to fill the above
tree, but when the sparse bitmask is empty, the upper pointers are null.
That is, the pointers are only assigned *if and only if* there's a bit set
in the lower structure. That way, we can quickly skip over large sections
without having to look deeper into the tree if there's nothing set.

Because the upper_chunk has an array of pointers, and the pointers are
only allocated if the lower chunk they point to has a bit set, and are NULL
otherwise. In order to find the first chunk to look at, or know if a chunk
is empty, we scan the pointers as if they were long words, and if nothing
is set, we know it is empty.

The above is an abuse of find_first_bit() to scan the pointers.

The equivalence of:

                 int bit = find_first_bit((unsigned long *)chunk->data,
                                          sizeof(chunk->data) * 8);
                 return bit >= sizeof(chunk->data) * 8;

would then actually be:

		return bitmap_empty((unsigned long *)chunk->data,
			sizeof(chunk->data) * 8);

Not what you wrote.

-- Steve


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ