On Mon, Mar 29, 2021 at 10:47:52PM -0700, Eric Biggers wrote: > > Isn't this a user problem? If the modules required to boot are on the > > filesystem itself, you are in trouble. But, if that is the case, your > > rootfs is case-insensitive and you gotta have utf8 as built-in or have > > it in an early userspace. > > We could make it the user's problem, but that seems rather unfriendly. > Especially because the utf8 module would be needed if the filesystem has the > casefold feature at all, regardless of whether any casefolded directories are > needed at boot time or not. (Unless there is a plan to change that?) I guess I'm not that worried, since the vast majority of desktop distribution are using initial ramdisks these days. And if someone did build a monolithic kernel that couldn't mount the root file system, they would figure that out pretty quickly. The biggest problem they would have with trying to enable encryption or casefolding on the root file system is that if they are using Grub, older versions of Grub would see an unknown incompat feature, and immediately have heartburn, and refuse to touch whatever file system /boot is located on. If the distribution has /boot as a stand-alone partition, that won't be a problem, but if you have a single file system which includes the location of kernels and initrds' are located, the moment you try set the encryption or casefold on the file system, you're immediately hosed --- and if you do this on a laptop while you are on an airplane, without thinking things through, and without access to a rescue USB thumb drive, life can get... interesting. (Why, yes, I'm speaking from direct experience; why do you ask? :-) So in comparison to making such a mistake, building a kernel that was missing casefold, and needing to fall back to an older kernel is not really that bad of a user experience. You just have to fall back the distro kernel, which most kernel developers who are dogfooding bleeding kernels are probably smart enough keep one around. We *could* teach ext4 to support mounting file systems that have casefold, without having the unicode module loaded, which would make things a bit better, but I'm not sure it's worth the effort. We could even make the argument that letting the system boot, and then having access to some directories return ENOTSUPP would actually be a more confusing user experience than a simple hard failure when we try mounting the file system. Cheers, - Ted