Re: [RFC 4/5] sbm: fix up calls to dynamic memory allocators

From: Dave Hansen
Date: Thu Feb 22 2024 - 10:51:33 EST


On 2/22/24 05:12, Petr Tesarik wrote:
> static const struct sbm_fixup fixups[] =
> {
> + /* kmalloc() and friends */
> + { kmalloc_trace, proxy_alloc3 },
> + { __kmalloc, proxy_alloc1 },
> + { __kmalloc_node, proxy_alloc1 },
> + { __kmalloc_node_track_caller, proxy_alloc1 },
> + { kmalloc_large, proxy_alloc1 },
> + { kmalloc_large_node, proxy_alloc1 },
> + { krealloc, proxy_alloc2 },
> + { kfree, proxy_free },
> +
> + /* vmalloc() and friends */
> + { vmalloc, proxy_alloc1 },
> + { __vmalloc, proxy_alloc1 },
> + { __vmalloc_node, proxy_alloc1 },
> + { vzalloc, proxy_alloc1 },
> + { vfree, proxy_free },
> +
> { }
> };

Petr, thanks for sending this. This _is_ a pretty concise example of
what it means to convert kernel code to run in your sandbox mode. But,
from me, it's still "no thanks".

Establishing and maintaining this proxy list will be painful. Folks
will change the code to call something new and break this *constantly*.

That goes for infrastructure like the allocators and for individual
sandbox instances like apparmor.

It's also telling that sandboxing a bit of apparmor took four fixups.
That tells me we're probably still only looking at the tip of the icebeg
if we were to convert a bunch more sites.

That's on top of everything I was concerned about before.