kmodloader: add module alias awareness
[project/ubox.git] / kmodloader.c
1 /*
2  * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
3  * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU Lesser General Public License version 2.1
7  * as published by the Free Software Foundation
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #define _GNU_SOURCE
16 #include <sys/syscall.h>
17 #include <sys/mman.h>
18 #include <sys/utsname.h>
19
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <sys/syscall.h>
23 #include <sys/types.h>
24 #include <values.h>
25 #include <errno.h>
26 #include <stdio.h>
27 #include <string.h>
28 #include <sys/stat.h>
29 #include <fcntl.h>
30 #include <libgen.h>
31 #include <glob.h>
32 #include <elf.h>
33
34 #include <libubox/avl.h>
35 #include <libubox/avl-cmp.h>
36 #include <libubox/utils.h>
37 #include <libubox/ulog.h>
38
39 #define DEF_MOD_PATH "/modules/%s/"
40
41 enum {
42         SCANNED,
43         PROBE,
44         LOADED,
45 };
46
47 struct module {
48         char *name;
49         char *depends;
50         char *opts;
51         char **aliases;
52         int naliases;
53
54         int size;
55         int usage;
56         int state;
57         int error;
58         int refcnt;                     /* number of references from module_node.m */
59 };
60
61 struct module_node {
62         struct avl_node avl;
63         struct module *m;
64         bool is_alias;
65 };
66
67 static struct avl_tree modules;
68
69 static char **module_folders = NULL;
70
71 static void free_module(struct module *m);
72
73 static int init_module_folders(void)
74 {
75         int n = 0;
76         struct stat st;
77         struct utsname ver;
78         char *s, *e, *p, path[256], ldpath[256];
79
80         e = ldpath;
81         s = getenv("LD_LIBRARY_PATH");
82
83         if (s)
84                 e += snprintf(ldpath, sizeof(ldpath), "%s:", s);
85
86         e += snprintf(e, sizeof(ldpath) - (e - ldpath), "/lib");
87
88         uname(&ver);
89
90         for (s = p = ldpath; p <= e; p++) {
91                 if (*p != ':' && *p != '\0')
92                         continue;
93
94                 *p = 0;
95                 snprintf(path, sizeof(path), "%s" DEF_MOD_PATH, s, ver.release);
96
97                 if (!stat(path, &st) && S_ISDIR(st.st_mode)) {
98                         module_folders = realloc(module_folders, sizeof(p) * (n + 2));
99
100                         if (!module_folders)
101                                 return -1;
102
103                         module_folders[n++] = strdup(path);
104                 }
105
106                 s = p + 1;
107         }
108
109         if (!module_folders)
110                 return -1;
111
112         module_folders[n] = NULL;
113         return 0;
114 }
115
116 static struct module *find_module(const char *name)
117 {
118         struct module_node *mn;
119         mn = avl_find_element(&modules, name, mn, avl);
120         if (mn)
121                 return mn->m;
122         else
123                 return NULL;
124 }
125
126 static void free_modules(void)
127 {
128         struct module_node *mn, *tmp;
129
130         avl_remove_all_elements(&modules, mn, avl, tmp) {
131                 struct module *m = mn->m;
132
133                 m->refcnt -= 1;
134                 if (m->refcnt == 0)
135                         free_module(m);
136                 free(mn);
137         }
138 }
139
140 static char* get_module_path(char *name)
141 {
142         char **p;
143         static char path[256];
144         struct stat s;
145
146         if (!stat(name, &s) && S_ISREG(s.st_mode))
147                 return name;
148
149         for (p = module_folders; *p; p++) {
150                 snprintf(path, sizeof(path), "%s%s.ko", *p, name);
151                 if (!stat(path, &s) && S_ISREG(s.st_mode))
152                         return path;
153         }
154
155         return NULL;
156 }
157
158 static char* get_module_name(char *path)
159 {
160         static char name[32];
161         char *t;
162
163         strncpy(name, basename(path), sizeof(name));
164
165         t = strstr(name, ".ko");
166         if (t)
167                 *t = '\0';
168
169         return name;
170 }
171
172 static int elf64_find_section(char *map, const char *section, unsigned int *offset, unsigned int *size)
173 {
174         const char *secnames;
175         Elf64_Ehdr *e;
176         Elf64_Shdr *sh;
177         int i;
178
179         e = (Elf64_Ehdr *) map;
180         sh = (Elf64_Shdr *) (map + e->e_shoff);
181
182         secnames = map + sh[e->e_shstrndx].sh_offset;
183         for (i = 0; i < e->e_shnum; i++) {
184                 if (!strcmp(section, secnames + sh[i].sh_name)) {
185                         *size = sh[i].sh_size;
186                         *offset = sh[i].sh_offset;
187                         return 0;
188                 }
189         }
190
191         return -1;
192 }
193
194 static int elf32_find_section(char *map, const char *section, unsigned int *offset, unsigned int *size)
195 {
196         const char *secnames;
197         Elf32_Ehdr *e;
198         Elf32_Shdr *sh;
199         int i;
200
201         e = (Elf32_Ehdr *) map;
202         sh = (Elf32_Shdr *) (map + e->e_shoff);
203
204         secnames = map + sh[e->e_shstrndx].sh_offset;
205         for (i = 0; i < e->e_shnum; i++) {
206                 if (!strcmp(section, secnames + sh[i].sh_name)) {
207                         *size = sh[i].sh_size;
208                         *offset = sh[i].sh_offset;
209                         return 0;
210                 }
211         }
212
213         return -1;
214 }
215
216 static int elf_find_section(char *map, const char *section, unsigned int *offset, unsigned int *size)
217 {
218         int clazz = map[EI_CLASS];
219
220         if (clazz == ELFCLASS32)
221                 return elf32_find_section(map, section, offset, size);
222         else if (clazz == ELFCLASS64)
223                 return elf64_find_section(map, section, offset, size);
224
225         ULOG_ERR("unknown elf format %d\n", clazz);
226
227         return -1;
228 }
229
230 static struct module_node *
231 alloc_module_node(const char *name, struct module *m, bool is_alias)
232 {
233         struct module_node *mn;
234         char *_name;
235
236         mn = calloc_a(sizeof(*mn),
237                 &_name, strlen(name) + 1);
238         if (mn) {
239                 mn->avl.key = strcpy(_name, name);
240                 mn->m = m;
241                 mn->is_alias = is_alias;
242                 avl_insert(&modules, &mn->avl);
243                 m->refcnt += 1;
244         }
245         return mn;
246 }
247
248 static struct module *
249 alloc_module(const char *name, const char * const *aliases, int naliases, const char *depends, int size)
250 {
251         struct module *m;
252         char *_name, *_dep;
253         char **_aliases;
254         int i, len_aliases;
255
256         len_aliases = naliases * sizeof(aliases[0]);
257         for (i = 0; i < naliases; i++)
258                 len_aliases += strlen(aliases[i]) + 1;
259         m = calloc_a(sizeof(*m),
260                 &_name, strlen(name) + 1,
261                 &_dep, depends ? strlen(depends) + 2 : 0,
262                 &_aliases, len_aliases);
263         if (!m)
264                 return NULL;
265
266         m->name = strcpy(_name, name);
267         m->opts = 0;
268
269         if (depends) {
270                 m->depends = strcpy(_dep, depends);
271                 while (*_dep) {
272                         if (*_dep == ',')
273                                 *_dep = '\0';
274                         _dep++;
275                 }
276         }
277         m->size = size;
278         m->naliases = naliases;
279         if (naliases == 0)
280                 m->aliases = NULL;
281         else {
282                 char *ptr = (char *)_aliases + naliases * sizeof(_aliases[0]);
283                 int len;
284
285                 i = 0;
286                 do {
287                         len = strlen(aliases[i]) + 1;
288                         memcpy(ptr, aliases[i], len);
289                         _aliases[i] = ptr;
290                         ptr += len;
291                         i++;
292                 } while (i < naliases);
293                 m->aliases = _aliases;
294         }
295
296         m->refcnt = 0;
297         alloc_module_node(m->name, m, false);
298         for (i = 0; i < m->naliases; i++)
299                 alloc_module_node(m->aliases[i], m, true);
300
301         return m;
302 }
303
304 static void free_module(struct module *m)
305 {
306         if (m->opts)
307                 free(m->opts);
308         free(m);
309 }
310
311 static int scan_loaded_modules(void)
312 {
313         size_t buf_len = 0;
314         char *buf = NULL;
315         FILE *fp;
316
317         fp = fopen("/proc/modules", "r");
318         if (!fp) {
319                 ULOG_ERR("failed to open /proc/modules\n");
320                 return -1;
321         }
322
323         while (getline(&buf, &buf_len, fp) > 0) {
324                 struct module m;
325                 struct module *n;
326
327                 m.name = strtok(buf, " ");
328                 m.size = atoi(strtok(NULL, " "));
329                 m.usage = atoi(strtok(NULL, " "));
330                 m.depends = strtok(NULL, " ");
331
332                 if (!m.name || !m.depends)
333                         continue;
334
335                 n = find_module(m.name);
336                 if (!n) {
337                         /* possibly a module outside /lib/modules/<ver>/ */
338                         n = alloc_module(m.name, NULL, 0, m.depends, m.size);
339                 }
340                 n->usage = m.usage;
341                 n->state = LOADED;
342         }
343         free(buf);
344         fclose(fp);
345
346         return 0;
347 }
348
349 static struct module* get_module_info(const char *module, const char *name)
350 {
351         int fd = open(module, O_RDONLY);
352         unsigned int offset, size;
353         char *map = MAP_FAILED, *strings, *dep = NULL;
354         const char *aliases[32];
355         int naliases = 0;
356         struct module *m = NULL;
357         struct stat s;
358
359         if (fd < 0) {
360                 ULOG_ERR("failed to open %s\n", module);
361                 goto out;
362         }
363
364         if (fstat(fd, &s) == -1) {
365                 ULOG_ERR("failed to stat %s\n", module);
366                 goto out;
367         }
368
369         map = mmap(NULL, s.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
370         if (map == MAP_FAILED) {
371                 ULOG_ERR("failed to mmap %s\n", module);
372                 goto out;
373         }
374
375         if (elf_find_section(map, ".modinfo", &offset, &size)) {
376                 ULOG_ERR("failed to load the .modinfo section from %s\n", module);
377                 goto out;
378         }
379
380         strings = map + offset;
381         while (true) {
382                 char *sep;
383                 int len;
384
385                 while (!strings[0])
386                         strings++;
387                 if (strings >= map + offset + size)
388                         break;
389                 sep = strstr(strings, "=");
390                 if (!sep)
391                         break;
392                 len = sep - strings;
393                 sep++;
394                 if (!strncmp(strings, "depends=", len + 1))
395                         dep = sep;
396                 else if (!strncmp(strings, "alias=", len + 1)) {
397                         if (naliases < ARRAY_SIZE(aliases))
398                                 aliases[naliases++] = sep;
399                         else
400                                 ULOG_WARN("module %s has more than %d aliases: truncated",
401                                                 name, ARRAY_SIZE(aliases));
402                 }
403                 strings = &sep[strlen(sep)];
404         }
405
406         m = alloc_module(name, aliases, naliases, dep, s.st_size);
407
408         if (m)
409                 m->state = SCANNED;
410
411 out:
412         if (map != MAP_FAILED)
413                 munmap(map, s.st_size);
414
415         if (fd >= 0)
416                 close(fd);
417
418         return m;
419 }
420
421 static int scan_module_folder(const char *dir)
422 {
423         int gl_flags = GLOB_NOESCAPE | GLOB_MARK;
424         struct utsname ver;
425         char *path;
426         glob_t gl;
427         int j;
428
429         uname(&ver);
430         path = alloca(strlen(dir) + sizeof("*.ko") + 1);
431         sprintf(path, "%s*.ko", dir);
432
433         if (glob(path, gl_flags, NULL, &gl) < 0)
434                 return -1;
435
436         for (j = 0; j < gl.gl_pathc; j++) {
437                 char *name = get_module_name(gl.gl_pathv[j]);
438                 struct module *m;
439
440                 if (!name)
441                         continue;
442
443                 m = find_module(name);
444                 if (!m)
445                         get_module_info(gl.gl_pathv[j], name);
446         }
447
448         globfree(&gl);
449
450         return 0;
451 }
452
453 static int scan_module_folders(void)
454 {
455         int rv = 0;
456         char **p;
457
458         if (init_module_folders())
459                 return -1;
460
461         for (p = module_folders; *p; p++)
462                 rv |= scan_module_folder(*p);
463
464         return rv;
465 }
466
467 static int print_modinfo(char *module)
468 {
469         int fd = open(module, O_RDONLY);
470         unsigned int offset, size;
471         struct stat s;
472         char *map = MAP_FAILED, *strings;
473         int rv = -1;
474
475         if (fd < 0) {
476                 ULOG_ERR("failed to open %s\n", module);
477                 goto out;
478         }
479
480         if (fstat(fd, &s) == -1) {
481                 ULOG_ERR("failed to stat %s\n", module);
482                 goto out;
483         }
484
485         map = mmap(NULL, s.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
486         if (map == MAP_FAILED) {
487                 ULOG_ERR("failed to mmap %s\n", module);
488                 goto out;
489         }
490
491         if (elf_find_section(map, ".modinfo", &offset, &size)) {
492                 ULOG_ERR("failed to load the .modinfo section from %s\n", module);
493                 goto out;
494         }
495
496         strings = map + offset;
497         printf("module:\t\t%s\n", module);
498         while (true) {
499                 char *dup = NULL;
500                 char *sep;
501
502                 while (!strings[0])
503                         strings++;
504                 if (strings >= map + offset + size)
505                         break;
506                 sep = strstr(strings, "=");
507                 if (!sep)
508                         break;
509                 dup = strndup(strings, sep - strings);
510                 sep++;
511                 if (strncmp(strings, "parm", 4)) {
512                         if (strlen(dup) < 7)
513                                 printf("%s:\t\t%s\n",  dup, sep);
514                         else
515                                 printf("%s:\t%s\n",  dup, sep);
516                 }
517                 strings = &sep[strlen(sep)];
518                 if (dup)
519                         free(dup);
520         }
521
522         rv = 0;
523
524 out:
525         if (map != MAP_FAILED)
526                 munmap(map, s.st_size);
527
528         if (fd >= 0)
529                 close(fd);
530
531         return rv;
532 }
533
534 static int deps_available(struct module *m, int verbose)
535 {
536         char *dep;
537         int err = 0;
538
539         if (!m->depends || !strcmp(m->depends, "-") || !strcmp(m->depends, ""))
540                 return 0;
541
542         dep = m->depends;
543
544         while (*dep) {
545                 m = find_module(dep);
546
547                 if (verbose && !m)
548                         ULOG_ERR("missing dependency %s\n", dep);
549                 if (verbose && m && (m->state != LOADED))
550                         ULOG_ERR("dependency not loaded %s\n", dep);
551                 if (!m || (m->state != LOADED))
552                         err++;
553                 dep += strlen(dep) + 1;
554         }
555
556         return err;
557 }
558
559 static int insert_module(char *path, const char *options)
560 {
561         void *data = 0;
562         struct stat s;
563         int fd, ret = -1;
564
565         if (stat(path, &s)) {
566                 ULOG_ERR("missing module %s\n", path);
567                 return ret;
568         }
569
570         fd = open(path, O_RDONLY);
571         if (fd < 0) {
572                 ULOG_ERR("cannot open %s\n", path);
573                 return ret;
574         }
575
576         data = malloc(s.st_size);
577         if (read(fd, data, s.st_size) == s.st_size)
578                 ret = syscall(__NR_init_module, data, (unsigned long) s.st_size, options);
579         else
580                 ULOG_ERR("failed to read full module %s\n", path);
581
582         close(fd);
583         free(data);
584
585         return ret;
586 }
587
588 static void load_moddeps(struct module *_m)
589 {
590         char *dep;
591         struct module *m;
592
593         if (!strcmp(_m->depends, "-") || !strcmp(_m->depends, ""))
594                 return;
595
596         dep = _m->depends;
597
598         while (*dep) {
599                 m = find_module(dep);
600
601                 if (!m)
602                         ULOG_ERR("failed to find dependency %s\n", dep);
603                 if (m && (m->state != LOADED)) {
604                         m->state = PROBE;
605                         load_moddeps(m);
606                 }
607
608                 dep = dep + strlen(dep) + 1;
609         }
610 }
611
612 static int iterations = 0;
613 static int load_modprobe(void)
614 {
615         int loaded, todo;
616         struct module_node *mn;
617         struct module *m;
618
619         avl_for_each_element(&modules, mn, avl) {
620                 if (mn->is_alias)
621                         continue;
622                 m = mn->m;
623                 if (m->state == PROBE)
624                         load_moddeps(m);
625         }
626
627         do {
628                 loaded = 0;
629                 todo = 0;
630                 avl_for_each_element(&modules, mn, avl) {
631                         if (mn->is_alias)
632                                 continue;
633                         m = mn->m;
634                         if ((m->state == PROBE) && (!deps_available(m, 0))) {
635                                 if (!insert_module(get_module_path(m->name), (m->opts) ? (m->opts) : (""))) {
636                                         m->state = LOADED;
637                                         m->error = 0;
638                                         loaded++;
639                                         continue;
640                                 }
641                                 m->error = 1;
642                         }
643
644                         if ((m->state == PROBE) || m->error)
645                                 todo++;
646                 }
647                 iterations++;
648         } while (loaded);
649
650         return todo;
651 }
652
653 static int print_insmod_usage(void)
654 {
655         ULOG_INFO("Usage:\n\tinsmod filename [args]\n");
656
657         return -1;
658 }
659
660 static int print_usage(char *arg)
661 {
662         ULOG_INFO("Usage:\n\t%s module\n", arg);
663
664         return -1;
665 }
666
667 static int main_insmod(int argc, char **argv)
668 {
669         char *name, *cur, *options;
670         int i, ret, len;
671
672         if (argc < 2)
673                 return print_insmod_usage();
674
675         name = get_module_name(argv[1]);
676         if (!name) {
677                 ULOG_ERR("cannot find module - %s\n", argv[1]);
678                 return -1;
679         }
680
681         if (scan_loaded_modules())
682                 return -1;
683
684         if (find_module(name)) {
685                 ULOG_ERR("module is already loaded - %s\n", name);
686                 return -1;
687
688         }
689
690         free_modules();
691
692         for (len = 0, i = 2; i < argc; i++)
693                 len += strlen(argv[i]) + 1;
694
695         options = malloc(len);
696         options[0] = 0;
697         cur = options;
698         for (i = 2; i < argc; i++) {
699                 if (options[0]) {
700                         *cur = ' ';
701                         cur++;
702                 }
703                 cur += sprintf(cur, "%s", argv[i]);
704         }
705
706         if (init_module_folders()) {
707                 fprintf(stderr, "Failed to find the folder holding the modules\n");
708                 return -1;
709         }
710
711         if (get_module_path(argv[1])) {
712                 name = argv[1];
713         } else if (!get_module_path(name)) {
714                 fprintf(stderr, "Failed to find %s. Maybe it is a built in module ?\n", name);
715                 return -1;
716         }
717
718         ret = insert_module(get_module_path(name), options);
719         free(options);
720
721         if (ret)
722                 ULOG_ERR("failed to insert %s\n", get_module_path(name));
723
724         return ret;
725 }
726
727 static int main_rmmod(int argc, char **argv)
728 {
729         struct module *m;
730         char *name;
731         int ret;
732
733         if (argc != 2)
734                 return print_usage("rmmod");
735
736         if (scan_loaded_modules())
737                 return -1;
738
739         name = get_module_name(argv[1]);
740         m = find_module(name);
741         if (!m) {
742                 ULOG_ERR("module is not loaded\n");
743                 return -1;
744         }
745         ret = syscall(__NR_delete_module, m->name, 0);
746
747         if (ret)
748                 ULOG_ERR("unloading the module failed\n");
749
750         free_modules();
751
752         return ret;
753 }
754
755 static int main_lsmod(int argc, char **argv)
756 {
757         struct module_node *mn;
758         struct module *m;
759         char *dep;
760
761         if (scan_loaded_modules())
762                 return -1;
763
764         avl_for_each_element(&modules, mn, avl) {
765                 if (mn->is_alias)
766                         continue;
767                 m = mn->m;
768                 if (m->state == LOADED) {
769                         printf("%-20s%8d%3d ",
770                                 m->name, m->size, m->usage);
771                         if (m->depends && strcmp(m->depends, "-") && strcmp(m->depends, "")) {
772                                 dep = m->depends;
773                                 while (*dep) {
774                                         printf("%s", dep);
775                                         dep = dep + strlen(dep) + 1;
776                                         if (*dep)
777                                                 printf(",");
778                                 }
779                         }
780                         printf("\n");
781                 }
782         }
783
784         free_modules();
785
786         return 0;
787 }
788
789 static int main_modinfo(int argc, char **argv)
790 {
791         struct module *m;
792         char *name;
793
794         if (argc != 2)
795                 return print_usage("modinfo");
796
797         if (scan_module_folders())
798                 return -1;
799
800         name = get_module_name(argv[1]);
801         m = find_module(name);
802         if (!m) {
803                 ULOG_ERR("cannot find module - %s\n", argv[1]);
804                 return -1;
805         }
806
807         name = get_module_path(m->name);
808         if (!name) {
809                 ULOG_ERR("cannot find path of module - %s\n", m->name);
810                 return -1;
811         }
812
813         print_modinfo(name);
814
815         return 0;
816 }
817
818 static int main_modprobe(int argc, char **argv)
819 {
820         struct module_node *mn;
821         struct module *m;
822         char *name;
823         char *mod = NULL;
824         int i;
825
826         for (i = 1; i < argc; i++)
827                 if (argv[i][0] != '-') {
828                         mod = argv[i];
829                         break;
830                 }
831         if (!mod)
832                 return print_usage("modprobe");
833
834         if (scan_module_folders())
835                 return -1;
836
837         if (scan_loaded_modules())
838                 return -1;
839
840         name = get_module_name(mod);
841         m = find_module(name);
842         if (m && m->state == LOADED) {
843                 ULOG_ERR("%s is already loaded\n", name);
844                 return -1;
845         } else if (!m) {
846                 ULOG_ERR("failed to find a module named %s\n", name);
847         } else {
848                 int fail;
849
850                 m->state = PROBE;
851
852                 fail = load_modprobe();
853
854                 if (fail) {
855                         ULOG_ERR("%d module%s could not be probed\n",
856                                  fail, (fail == 1) ? ("") : ("s"));
857
858                         avl_for_each_element(&modules, mn, avl) {
859                                 if (mn->is_alias)
860                                         continue;
861                                 m = mn->m;
862                                 if ((m->state == PROBE) || m->error)
863                                         ULOG_ERR("- %s\n", m->name);
864                         }
865                 }
866         }
867
868         free_modules();
869
870         return 0;
871 }
872
873 static int main_loader(int argc, char **argv)
874 {
875         int gl_flags = GLOB_NOESCAPE | GLOB_MARK;
876         char *dir = "/etc/modules.d/";
877         struct module_node *mn;
878         struct module *m;
879         glob_t gl;
880         char *path;
881         int fail, j;
882
883         if (argc > 1)
884                 dir = argv[1];
885
886         path = malloc(strlen(dir) + 2);
887         strcpy(path, dir);
888         strcat(path, "*");
889
890         if (scan_module_folders()) {
891                 free (path);
892                 return -1;
893         }
894
895         if (scan_loaded_modules()) {
896                 free (path);
897                 return -1;
898         }
899
900         ULOG_INFO("loading kernel modules from %s\n", path);
901
902         if (glob(path, gl_flags, NULL, &gl) < 0)
903                 goto out;
904
905         for (j = 0; j < gl.gl_pathc; j++) {
906                 FILE *fp = fopen(gl.gl_pathv[j], "r");
907                 size_t mod_len = 0;
908                 char *mod = NULL;
909
910                 if (!fp) {
911                         ULOG_ERR("failed to open %s\n", gl.gl_pathv[j]);
912                         continue;
913                 }
914
915                 while (getline(&mod, &mod_len, fp) > 0) {
916                         char *nl = strchr(mod, '\n');
917                         struct module *m;
918                         char *opts;
919
920                         if (nl)
921                                 *nl = '\0';
922
923                         opts = strchr(mod, ' ');
924                         if (opts)
925                                 *opts++ = '\0';
926
927                         m = find_module(get_module_name(mod));
928                         if (!m || (m->state == LOADED))
929                                 continue;
930
931                         if (opts)
932                                 m->opts = strdup(opts);
933                         m->state = PROBE;
934                         if (basename(gl.gl_pathv[j])[0] - '0' <= 9)
935                                 load_modprobe();
936
937                 }
938                 free(mod);
939                 fclose(fp);
940         }
941
942         fail = load_modprobe();
943
944         if (fail) {
945                 ULOG_ERR("%d module%s could not be probed\n",
946                          fail, (fail == 1) ? ("") : ("s"));
947
948                 avl_for_each_element(&modules, mn, avl) {
949                         if (mn->is_alias)
950                                 continue;
951                         m = mn->m;
952                         if ((m->state == PROBE) || (m->error))
953                                 ULOG_ERR("- %s - %d\n", m->name, deps_available(m, 1));
954                 }
955         } else {
956                 ULOG_INFO("done loading kernel modules from %s\n", path);
957         }
958
959 out:
960         globfree(&gl);
961         free(path);
962
963         return 0;
964 }
965
966 static int avl_modcmp(const void *k1, const void *k2, void *ptr)
967 {
968         const char *s1 = k1;
969         const char *s2 = k2;
970
971         while (*s1 && ((*s1 == *s2) ||
972                        ((*s1 == '_') && (*s2 == '-')) ||
973                        ((*s1 == '-') && (*s2 == '_'))))
974         {
975                 s1++;
976                 s2++;
977         }
978
979         return *(const unsigned char *)s1 - *(const unsigned char *)s2;
980 }
981
982 int main(int argc, char **argv)
983 {
984         char *exec = basename(*argv);
985
986         avl_init(&modules, avl_modcmp, false, NULL);
987         if (!strcmp(exec, "insmod"))
988                 return main_insmod(argc, argv);
989
990         if (!strcmp(exec, "rmmod"))
991                 return main_rmmod(argc, argv);
992
993         if (!strcmp(exec, "lsmod"))
994                 return main_lsmod(argc, argv);
995
996         if (!strcmp(exec, "modinfo"))
997                 return main_modinfo(argc, argv);
998
999         if (!strcmp(exec, "modprobe"))
1000                 return main_modprobe(argc, argv);
1001
1002         ulog_open(ULOG_KMSG, LOG_USER, "kmodloader");
1003         return main_loader(argc, argv);
1004 }