kmodloader: modprobe: skip possible command line arguments
authorYousong Zhou <yszhou4tech@gmail.com>
Fri, 13 Jan 2017 17:00:32 +0000 (01:00 +0800)
committerFelix Fietkau <nbd@nbd.name>
Sun, 15 Jan 2017 17:52:19 +0000 (18:52 +0100)
The kernel may invocate user mode modprobe with the following scheme

    modprobe -q -- <module_name>

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
kmodloader.c

index b20de6e..065ac82 100644 (file)
@@ -719,8 +719,15 @@ static int main_modprobe(int argc, char **argv)
 {
        struct module *m;
        char *name;
+       char *mod = NULL;
+       int i;
 
-       if (argc != 2)
+       for (i = 1; i < argc; i++)
+               if (argv[i][0] != '-') {
+                       mod = argv[i];
+                       break;
+               }
+       if (!mod)
                return print_usage("modprobe");
 
        if (scan_loaded_modules())
@@ -729,7 +736,7 @@ static int main_modprobe(int argc, char **argv)
        if (scan_module_folders())
                return -1;
 
-       name = get_module_name(argv[1]);
+       name = get_module_name(mod);
        m = find_module(name);
        if (m && m->state == LOADED) {
                ULOG_ERR("%s is already loaded\n", name);