Re: [PATCH net-next] modules: allow modprobe load regular elf binaries
From: Alexei Starovoitov <hidden>
Date: 2018-03-09 17:32:36
Also in:
linux-api, lkml
On 3/9/18 8:24 AM, Andy Lutomirski wrote:
On Fri, Mar 9, 2018 at 3:39 PM, Alexei Starovoitov [off-list ref] wrote:quoted
On 3/9/18 7:16 AM, Andy Lutomirski wrote:quoted
quoted
quoted
On Mar 8, 2018, at 9:08 PM, Alexei Starovoitov [off-list ref] wrote: On 3/8/18 7:54 PM, Andy Lutomirski wrote:quoted
On Mar 8, 2018, at 7:06 PM, Linus Torvalds [off-list ref] wrote: Honestly, that "read twice" thing may be what scuttles this. Initially, I thought it was a non-issue, because anybody who controls the module subdirectory enough to rewrite files would be in a position to just execute the file itself directly instead.On further consideration, I think there’s another showstopper. This patch is a potentially severe ABI break. Right now, loading a module *copies* it into memory and does not hold a reference to the underlying fs. With the patch applied, all kinds of use cases can break in gnarly ways. Initramfs is maybe okay, but initrd may be screwed. If you load an ET_EXEC module from initrd, then umount it, then clear the ramdisk, something will go horribly wrong. Exactly what goes wrong depends on whether userspace notices that umount() failed. Similarly, if you load one of these modules over a network and then lose your connection, you have a problem.there is not abi breakage and file cannot disappear from running task. One cannot umount fs while file is still being used.Sure it is. Without your patch, init_module doesn’t keep using the file, so it’s common practice to load a module and then delete or unmount it. With your patch, the unmount case breaks. This is likely to break existing userspace, so, in Linux speak it’s an ABI break.please read the patch again. file is only used in case of umh modules. There is zero difference in default case.Say I'm running some distro or other working Linux setup. I upgrade my kernel to a kernel that uses umh modules. The user tooling generates some kind of boot entry that references the new kernel image, and it also generates a list of modules to be loaded at various times in the boot process. This list might, and probably should, include one or more umh modules. (You are being very careful to make sure that depmod keeps working, so umh modules are clearly intended to work with existing tooling.) So now I have a kernel image and some modules to be loaded from various places. And I have an init script (initramfs's '/init' or similar) that will call init_module() on that .ko file. That script was certainly written under the assumption that, once init_module() returns, the kernel is done with the .ko file. With your patch applied, that assumption is no longer true.
There is no intent to use umh modules during boot process. This is not a replacement for drivers and kernel modules. From your earlier comments regarding usb driver as umh module I suspect you're assuming that everything will sooner or later will convert to umh model. There is no such intent. umh approach is targeting one specific use case of converting one stable uapi into another stable uapi. It's all control plane that can be a slow as it needs to be. Critical kernel datapath is not going to be affected (especially the one needed to boot) because umh is a user mode app running async with the rest of kernel. With patch applied there are still zero users of it. bpfilter and nft2bpf are the only two that are going to use this interface. Every other potential user will be code reviewed just like everything else in the kernel land. So your statement that with patch applied there is an ABI breakage is just false. At the same time I agree that keeping fs pinned while umh module started from that fs is not great, so I intend to solve it somehow in v2 while keeping the approach being elf based for debuggability reasons explained earlier.
Heck, on my laptop, all my .ko files are labeled system_u:object_r:modules_object_t:s0. I wonder how many SELinux setups (and AppArmor, etc) will actually disallow execve() on modules?
I don't think it's a good idea to move lsm into umh.
Can you please try to have a constructive discussion here?
I'd like to ask the same favor. Claiming ABI breakage when there is none is not constructive. Saying that "ohh there must be a security issue here, because it looks complex" is not constructive either.