Re: [SECURITY PATCH 114/117] kern/misc: Add function to check printf() format against expected format

2021-03-17 Thread Colin Watson
On Tue, Mar 02, 2021 at 07:02:01PM +0100, Daniel Kiper wrote: > @@ -1121,6 +1159,42 @@ grub_xasprintf (const char *fmt, ...) >return ret; > } > > +grub_err_t > +grub_printf_fmt_check (const char *fmt, const char *fmt_expected) > +{ > + struct printf_args args_expected, args_fmt; > +

Re: [SECURITY PATCH 001/117] verifiers: Move verifiers API to kernel image

2021-03-17 Thread Colin Watson
On Tue, Mar 02, 2021 at 07:00:08PM +0100, Daniel Kiper wrote: > From: Marco A Benatto > > Move verifiers API from a module to the kernel image, so it can be > used there as well. There are no functional changes in this patch. I've had reports in Debian that the i386-pc image no longer fits in

GRUB error: unknown filesystem on ia64

2021-03-17 Thread John Paul Adrian Glaubitz
Hello! It seems that one of the security patches has caused a regression on ia64 as GRUB is no longer able to load any basic commands: Loading.: grub Starting: grub Welcome

[PATCH v2] password: Fix backspace in username prompt

2021-03-17 Thread egori
From: Egor Ignatov Make backspace work in superuser login prompt. The problem was that bidi logical to visual ignored BN type, so you couldn't print control characters. Resolves: #60114 Signed-off-by: Egor Ignatov --- grub-core/normal/charset.c | 1 + grub-core/term/gfxterm.c | 9 -