Re: [PATCH 11/18] maccess: remove strncpy_from_unsafe

From: Linus Torvalds
Date: Wed May 13 2020 - 15:11:52 EST


On Wed, May 13, 2020 at 9:01 AM Christoph Hellwig <hch@xxxxxx> wrote:
>
> +static void bpf_strncpy(char *buf, long unsafe_addr)
> +{
> + buf[0] = 0;
> + if (strncpy_from_kernel_nofault(buf, (void *)unsafe_addr,
> + BPF_STRNCPY_LEN))
> + strncpy_from_user_nofault(buf, (void __user *)unsafe_addr,
> + BPF_STRNCPY_LEN);
> +}

This seems buggy when I look at it.

It seems to think that strncpy_from_kernel_nofault() returns an error code.

Not so, unless I missed where you changed the rules.

It returns the length of the string for a successful copy. 0 is
actually an error case (for count being <= 0).

So the test for success seems entirely wrong.

Also, I do wonder if we shouldn't gate this on TASK_SIZE, and do the
user trial first. On architectures where this thing is valid in the
first place (ie kernel and user addresses are separate), the test for
address size would allow us to avoid a pointless fault due to an
invalid kernel access to user space.

So I think this function should look something like

static void bpf_strncpy(char *buf, long unsafe_addr)
{
/* Try user address */
if (unsafe_addr < TASK_SIZE) {
void __user *ptr = (void __user *)unsafe_addr;
if (strncpy_from_user_nofault(buf, ptr, BPF_STRNCPY_LEN) >= 0)
return;
}

/* .. fall back on trying kernel access */
buf[0] = 0;
strncpy_from_kernel_nofault(buf, (void *)unsafe_addr,
BPF_STRNCPY_LEN);
}

or similar. No?

Linus