Re: [RFC 00/14] Dynamic Kernel Stacks

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, Mar 18, 2024 at 5:02 PM Brian Gerst <brgerst@xxxxxxxxx> wrote:
>
> On Mon, Mar 18, 2024 at 11:00 AM Pasha Tatashin
> <pasha.tatashin@xxxxxxxxxx> wrote:
> >
> > On Sun, Mar 17, 2024 at 5:30 PM Brian Gerst <brgerst@xxxxxxxxx> wrote:
> > >
> > > On Sun, Mar 17, 2024 at 12:15 PM Pasha Tatashin
> > > <pasha.tatashin@xxxxxxxxxx> wrote:
> > > >
> > > > On Sun, Mar 17, 2024 at 10:43 AM Brian Gerst <brgerst@xxxxxxxxx> wrote:
> > > > >
> > > > > On Sat, Mar 16, 2024 at 3:18 PM Pasha Tatashin
> > > > > <pasha.tatashin@xxxxxxxxxx> wrote:
> > > > > >
> > > > > > On Thu, Mar 14, 2024 at 11:40 PM H. Peter Anvin <hpa@xxxxxxxxx> wrote:
> > > > > > >
> > > > > > > On March 14, 2024 8:13:56 PM PDT, Pasha Tatashin <pasha.tatashin@xxxxxxxxxx> wrote:
> > > > > > > >On Thu, Mar 14, 2024 at 3:57 PM Matthew Wilcox <willy@xxxxxxxxxxxxx> wrote:
> > > > > > > >>
> > > > > > > >> On Thu, Mar 14, 2024 at 03:53:39PM -0400, Kent Overstreet wrote:
> > > > > > > >> > On Thu, Mar 14, 2024 at 07:43:06PM +0000, Matthew Wilcox wrote:
> > > > > > > >> > > On Tue, Mar 12, 2024 at 10:18:10AM -0700, H. Peter Anvin wrote:
> > > > > > > >> > > > Second, non-dynamic kernel memory is one of the core design decisions in
> > > > > > > >> > > > Linux from early on. This means there are lot of deeply embedded assumptions
> > > > > > > >> > > > which would have to be untangled.
> > > > > > > >> > >
> > > > > > > >> > > I think there are other ways of getting the benefit that Pasha is seeking
> > > > > > > >> > > without moving to dynamically allocated kernel memory.  One icky thing
> > > > > > > >> > > that XFS does is punt work over to a kernel thread in order to use more
> > > > > > > >> > > stack!  That breaks a number of things including lockdep (because the
> > > > > > > >> > > kernel thread doesn't own the lock, the thread waiting for the kernel
> > > > > > > >> > > thread owns the lock).
> > > > > > > >> > >
> > > > > > > >> > > If we had segmented stacks, XFS could say "I need at least 6kB of stack",
> > > > > > > >> > > and if less than that was available, we could allocate a temporary
> > > > > > > >> > > stack and switch to it.  I suspect Google would also be able to use this
> > > > > > > >> > > API for their rare cases when they need more than 8kB of kernel stack.
> > > > > > > >> > > Who knows, we might all be able to use such a thing.
> > > > > > > >> > >
> > > > > > > >> > > I'd been thinking about this from the point of view of allocating more
> > > > > > > >> > > stack elsewhere in kernel space, but combining what Pasha has done here
> > > > > > > >> > > with this idea might lead to a hybrid approach that works better; allocate
> > > > > > > >> > > 32kB of vmap space per kernel thread, put 12kB of memory at the top of it,
> > > > > > > >> > > rely on people using this "I need more stack" API correctly, and free the
> > > > > > > >> > > excess pages on return to userspace.  No complicated "switch stacks" API
> > > > > > > >> > > needed, just an "ensure we have at least N bytes of stack remaining" API.
> > > > > > > >
> > > > > > > >I like this approach! I think we could also consider having permanent
> > > > > > > >big stacks for some kernel only threads like kvm-vcpu. A cooperative
> > > > > > > >stack increase framework could work well and wouldn't negatively
> > > > > > > >impact the performance of context switching. However, thorough
> > > > > > > >analysis would be necessary to proactively identify potential stack
> > > > > > > >overflow situations.
> > > > > > > >
> > > > > > > >> > Why would we need an "I need more stack" API? Pasha's approach seems
> > > > > > > >> > like everything we need for what you're talking about.
> > > > > > > >>
> > > > > > > >> Because double faults are hard, possibly impossible, and the FRED approach
> > > > > > > >> Peter described has extra overhead?  This was all described up-thread.
> > > > > > > >
> > > > > > > >Handling faults in #DF is possible. It requires code inspection to
> > > > > > > >handle race conditions such as what was shown by tglx. However, as
> > > > > > > >Andy pointed out, this is not supported by SDM as it is an abort
> > > > > > > >context (yet we return from it because of ESPFIX64, so return is
> > > > > > > >possible).
> > > > > > > >
> > > > > > > >My question, however, if we ignore memory savings and only consider
> > > > > > > >reliability aspect of this feature.  What is better unconditionally
> > > > > > > >crashing the machine because a guard page was reached, or printing a
> > > > > > > >huge warning with a backtracing information about the offending stack,
> > > > > > > >handling the fault, and survive? I know that historically Linus
> > > > > > > >preferred WARN() to BUG() [1]. But, this is a somewhat different
> > > > > > > >scenario compared to simple BUG vs WARN.
> > > > > > > >
> > > > > > > >Pasha
> > > > > > > >
> > > > > > > >[1] https://lore.kernel.org/all/Pine.LNX.4.44.0209091832160.1714-100000@xxxxxxxxxxxxxxxxxx
> > > > > > > >
> > > > > > >
> > > > > > > The real issue with using #DF is that if the event that caused it was asynchronous, you could lose the event.
> > > > > >
> > > > > > Got it. So, using a #DF handler for stack page faults isn't feasible.
> > > > > > I suppose the only way for this to work would be to use a dedicated
> > > > > > Interrupt Stack Table (IST) entry for page faults (#PF), but I suspect
> > > > > > that might introduce other complications.
> > > > > >
> > > > > > Expanding on Mathew's idea of an interface for dynamic kernel stack
> > > > > > sizes, here's what I'm thinking:
> > > > > >
> > > > > > - Kernel Threads: Create all kernel threads with a fully populated
> > > > > > THREAD_SIZE stack.  (i.e. 16K)
> > > > > > - User Threads: Create all user threads with THREAD_SIZE kernel stack
> > > > > > but only the top page mapped. (i.e. 4K)
> > > > > > - In enter_from_user_mode(): Expand the thread stack to 16K by mapping
> > > > > > three additional pages from the per-CPU stack cache. This function is
> > > > > > called early in kernel entry points.
> > > > > > - exit_to_user_mode(): Unmap the extra three pages and return them to
> > > > > > the per-CPU cache. This function is called late in the kernel exit
> > > > > > path.
> > > > > >
> > > > > > Both of the above hooks are called with IRQ disabled on all kernel
> > > > > > entries whether through interrupts and syscalls, and they are called
> > > > > > early/late enough that 4K is enough to handle the rest of entry/exit.
> > > >
> > > > Hi Brian,
> > > >
> > > > > This proposal will not have the memory savings that you are looking
> > > > > for, since sleeping tasks would still have a fully allocated stack.
> > > >
> > > > The tasks that were descheduled while running in user mode should not
> > > > increase their stack. The potential saving is greater than the
> > > > origianl proposal, because in the origianl proposal we never shrink
> > > > stacks after faults.
> > >
> > > A task has to enter kernel mode in order to be rescheduled.  If it
> > > doesn't make a syscall or hit an exception, then the timer interrupt
> > > will eventually kick it out of user mode.  At some point schedule() is
> > > called, the task is put to sleep and context is switched to the next
> > > task.  A sleeping task will always be using some amount of kernel
> > > stack.  How much depends a lot on what caused the task to sleep.  If
> > > the timeslice expired it could switch right before the return to user
> > > mode.  A page fault could go deep into filesystem and device code
> > > waiting on an I/O operation.
> > >
> > > > > This also would add extra overhead to each entry and exit (including
> > > > > syscalls) that can happen multiple times before a context switch.  It
> > > > > also doesn't make much sense because a task running in user mode will
> > > > > quickly need those stack pages back when it returns to kernel mode.
> > > > > Even if it doesn't make a syscall, the timer interrupt will kick it
> > > > > out of user mode.
> > > > >
> > > > > What should happen is that the unused stack is reclaimed when a task
> > > > > goes to sleep.  The kernel does not use a red zone, so any stack pages
> > > > > below the saved stack pointer of a sleeping task (task->thread.sp) can
> > > > > be safely discarded.  Before context switching to a task, fully
> > > >
> > > > Excellent observation, this makes Andy Lutomirski per-map proposal [1]
> > > > usable without tracking dirty/accessed bits. More reliable, and also
> > > > platform independent.
> > >
> > > This is x86-specific.  Other architectures will likely have differences.
> > >
> > > > > populate its task stack.  After context switching from a task, reclaim
> > > > > its unused stack.  This way, the task stack in use is always fully
> > > > > allocated and we don't have to deal with page faults.
> > > > >
> > > > > To make this happen, __switch_to() would have to be split into two
> > > > > parts, to cleanly separate what happens before and after the stack
> > > > > switch.  The first part saves processor context for the previous task,
> > > > > and prepares the next task.
> > > >
> > > > By knowing the stack requirements of __switch_to(), can't we actually
> > > > do all that in the common code in context_switch() right before
> > > > __switch_to()? We would do an arch specific call to get the
> > > > __switch_to() stack requirement, and use that to change the value of
> > > > task->thread.sp to know where the stack is going to be while sleeping.
> > > > At this time we can do the unmapping of the stack pages from the
> > > > previous task, and mapping the pages to the next task.
> > >
> > > task->thread.sp is set in __switch_to_asm(), and is pretty much the
> > > last thing done in the context of the previous task.  Trying to
> > > predict that value ahead of time is way too fragile.
> >
> > We don't require an exact value, but rather an approximate upper
> > limit. To illustrate, subtract 1K from the current .sp, then determine
> > the corresponding page to decide the number of pages needing
> > unmapping. The primary advantage is that we can avoid
> > platform-specific ifdefs for DYNAMIC_STACKS within the arch-specific
> > switch_to() function. Instead, each platform can provide an
> > appropriate upper bound for switch_to() operations. We know the amount
> > of information is going to be stored on the stack by the routines, and
> > also since interrupts are disabled stacks are not used for anything
> > else there, so I do not see a problem with determining a reasonable
> > upper bound.
>
> The stack usage will vary depending on compiler version and
> optimization settings.  Making an educated guess is possible, but may
> not be enough in the future.
>
> What would be nice is to get some actual data on stack usage under
> various workloads, both maximum depth and depth at context switch.
>
> > >  Also, the key
> > > point I was trying to make is that you cannot safely shrink the active
> > > stack.  It can only be done after the stack switch to the new task.
> >
> > Can you please elaborate why this is so? If the lowest pages are not
> > used, and interrupts are disabled what is not safe about removing them
> > from the page table?
> >
> > I am not against the idea of unmapping in __switch_to(), I just want
> > to understand the reasons why more generic but perhaps not as precise
> > approach would not  work.
>
> As long as a wide buffer is given, it would probably be safe.  But it
> would still be safer and more precise if done after the switch.

Makes sense. Looks like using task->thread.sp during context is not
possible because the pages might have been shared with another CPU. We
would need to do ipi tlb invalidation, which would be too expensive
for the context switch. Therefore, using pte->accessed is more
reliable to determine which pages can be unmapped. However, we could
still use task->thread.sp in a garbage collector.

Pasha





[Index of Archives]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Bugtraq]     [Linux OMAP]     [Linux MIPS]     [eCos]     [Asterisk Internet PBX]     [Linux API]

  Powered by Linux