Re: [PATCH v3 11/19] unwind: Add deferred user space unwinding API
From: Josh Poimboeuf
Date: Wed Oct 30 2024 - 02:10:52 EST
On Tue, Oct 29, 2024 at 04:32:46PM -0700, Andrii Nakryiko wrote:
> > struct audit_context;
> > @@ -1592,6 +1593,10 @@ struct task_struct {
> > struct user_event_mm *user_event_mm;
> > #endif
> >
> > +#ifdef CONFIG_UNWIND_USER
> > + struct unwind_task_info unwind_task_info;
>
> this is quite a lot of memory to pay on each task, a lot of which a)
> might not have sframe
Frame pointers are also supported.
> and b) might not need stack unwinding during their lifetime.
Right, I'm not super happy about that.
> It can be a pointer and allocated in copy_process(), no?
> Though ideally this should be initialized lazily, if possible.
Problem is, the unwinder doesn't know in advance which tasks will be
unwound.
Its first clue is unwind_user_register(), would it make sense for the
caller to clarify whether all tasks need to be unwound or only a
specific subset?
Its second clue is unwind_user_deferred(), which is called for the task
itself. But by then it's too late because it needs to access the
per-task data from (potentially) irq context so it can't do a lazy
allocation.
I'm definitely open to ideas...
> > + if (!info->entries) {
> > + info->entries = kmalloc(UNWIND_MAX_ENTRIES * sizeof(long),
> > + GFP_KERNEL);
> > + if (!info->entries)
> > + return;
>
> uhm... can we notify callbacks that stack capture failed? otherwise
> we'd need some extra timeouts and other complications if we are
> *waiting* for this callback to be called
Hm, do you actually plan to wait for the callback?
I assume this is BPF, can you give some high-level detail about how it
will use these interfaces?
--
Josh