Re: [GIT PULL] selinux/selinux-pr-20250926

From: Linus Torvalds

Date: Tue Sep 30 2025 - 11:48:27 EST


On Fri, 26 Sept 2025 at 20:07, Paul Moore <paul@xxxxxxxxxxxxxx> wrote:
>
> - Remove our use of get_zeroed_page() in sel_read_bool()
>
> Update sel_read_bool() to use a four byte stack buffer instead of a
> memory page fetched via get_zeroed_page(), and fix a memory in the
> process.
>
> Needless to say we should have done this a long time ago, but it was
> in a very old chunk of code that "just worked" and I don't think
> anyone had taken a real look at it in many years.

Lol.

... and when I looked at this, I went "scnprintf for a 4-byte buffer?"

It uses

len = scnprintf(buffer, sizeof(buffer), "%d %d", ..

and I went "printing two numbers and just four bytes" before I noticed
that they are just booleans and so 'len' always is just 3.

It literally could have done

char buffer[] = { '0' + !a, ' ', '0' + !!b, 0 };

instead, and I guess a compiler could do that transformation in a perfect world.

But this isn't exactly performance-crticial, so nobody cares.

Linus