On Mon, Jul 22, 2024 at 12:06:59AM -0700, Kees Cook wrote: > >Is strscpy_pad appropriate if the @src parameter itself is a fixed > >length char[16] which isn't null terminated when the label itself is 16 > >chars long? > > Nope; it needed memtostr_pad(). I sent the fix back at the end of May, but it only just recently landed: > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=be27cd64461c45a6088a91a04eba5cd44e1767ef Yeah, sorry, I was on vacation for 3.5 weeks starting just before Memorial day, and it took me a while to get caught up. Unfortunately, I missed the bug in the strncpy extirpation patch, and it was't something that our regression tests caught. (Sometimes, the old/deprecated ways are just more reliable; all of ext4's strncpy() calls were working and had been correct for decades. :-P ) Anyway, Kees's bugfix is in Linus's tree, and it should be shortly be making its way to -stable. - Ted