On 2020/06/26 21:51, Eric W. Biederman wrote: > Please let me know if you see any bugs. Once the code review is > finished I plan to take this through my tree. This series needs some sanity checks. diff --git a/kernel/umd.c b/kernel/umd.c index de2f542191e5..f3e0227a3012 100644 --- a/kernel/umd.c +++ b/kernel/umd.c @@ -47,15 +47,18 @@ static struct vfsmount *blob_to_mnt(const void *data, size_t len, const char *na /** * umd_load_blob - Remember a blob of bytes for fork_usermode_driver - * @info: information about usermode driver - * @data: a blob of bytes that can be executed as a file - * @len: The lentgh of the blob + * @info: information about usermode driver (shouldn't be NULL) + * @data: a blob of bytes that can be executed as a file (shouldn't be NULL) + * @len: The lentgh of the blob (shouldn't be 0) * */ int umd_load_blob(struct umd_info *info, const void *data, size_t len) { struct vfsmount *mnt; + if (!info || !info->driver_name || !data || !len) + return -EINVAL; + if (WARN_ON_ONCE(info->wd.dentry || info->wd.mnt)) return -EBUSY; @@ -158,6 +161,9 @@ int fork_usermode_driver(struct umd_info *info) char **argv = NULL; int err; + if (!info || !info->driver_name) + return -EINVAL; + if (WARN_ON_ONCE(info->tgid)) return -EBUSY; But loading ----- test.c ----- #include <linux/slab.h> #include <linux/module.h> #include <linux/umd.h> static int __init test_init(void) { const char blob[464] = { "\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x02\x00\x3e\x00\x01\x00\x00\x00\x80\x00\x40\x00\x00\x00\x00\x00" "\x40\x00\x00\x00\x00\x00\x00\x00\xd0\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x40\x00\x38\x00\x01\x00\x40\x00\x04\x00\x03\x00" "\x01\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00" "\xb4\x00\x00\x00\x00\x00\x00\x00\xb4\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xb8\x01\x00\x00\x00\xbf\x01\x00\x00\x00\x48\xbe\xa8\x00\x40\x00" "\x00\x00\x00\x00\xba\x0c\x00\x00\x00\x0f\x05\xb8\xe7\x00\x00\x00" "\xbf\x00\x00\x00\x00\x0f\x05\x00\x48\x65\x6c\x6c\x6f\x20\x77\x6f" "\x72\x6c\x64\x0a\x00\x2e\x73\x68\x73\x74\x72\x74\x61\x62\x00\x2e" "\x74\x65\x78\x74\x00\x2e\x72\x6f\x64\x61\x74\x61\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x0b\x00\x00\x00\x01\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00" "\x80\x00\x40\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00" "\x27\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x11\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xa8\x00\x40\x00\x00\x00\x00\x00\xa8\x00\x00\x00\x00\x00\x00\x00" "\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xb4\x00\x00\x00\x00\x00\x00\x00" "\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" }; struct umd_info *info = kzalloc(sizeof(*info), GFP_KERNEL); if (!info) return -ENOMEM; info->driver_name = kstrdup("my test driver", GFP_KERNEL); printk("umd_load_blob()=%d\n", umd_load_blob(info, blob, 464)); //printk("fork_usermode_driver()=%d\n", fork_usermode_driver(info)); return -EINVAL; } module_init(test_init); MODULE_LICENSE("GPL"); ----- test.c ----- causes BUG_ON(!(task->flags & PF_KTHREAD)); in __fput_sync(). Do we want to forbid umd_load_blob() from process context (e.g. upon module initialization time) ? Also, since umd_load_blob() uses info->driver_name as filename, info->driver_name has to satisfy strchr(info->driver_name, '/') == NULL && strlen(info->driver_name) <= NAME_MAX in order to avoid -ENOENT failure. On the other hand, since fork_usermode_driver() uses info->driver_name as argv[], info->driver_name has to use ' ' within this constraint. This might be inconvenient...