b0b09c2358df4d36d8596488c4e2caf757b5de2f
[oweals/busybox.git] / modutils / depmod.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * depmod - generate modules.dep
4  * Copyright (c) 2008 Bernhard Fischer
5  *
6  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
7  */
8
9 #undef _GNU_SOURCE
10 #define _GNU_SOURCE
11 #include <libbb.h>
12 #include <sys/utsname.h> /* uname() */
13 #if ENABLE_DEBUG
14 #include <assert.h>
15 #define dbg_assert assert
16 #else
17 #define dbg_assert(stuff) do {} while (0)
18 #endif
19 /*
20  * Theory of operation:
21  * - iterate over all modules and record their full path
22  * - iterate over all modules looking for "depends=" entries
23  *   for each depends, look through our list of full paths and emit if found
24  */
25
26 typedef struct dep_lst_t {
27         char *name;
28         llist_t *dependencies;
29         struct dep_lst_t *next;
30 } dep_lst_t;
31
32 struct globals {
33         dep_lst_t *lst; /* modules without their corresponding extension */
34         size_t moddir_base_len; /* length of the "-b basedir" */
35 };
36 #define G (*(struct globals*)&bb_common_bufsiz1)
37 /* We have to zero it out because of NOEXEC */
38 #define INIT_G() memset(&G, 0, sizeof(G))
39
40 static int fill_lst(const char *modulename, struct stat ATTRIBUTE_UNUSED *sb,
41                                         void ATTRIBUTE_UNUSED *data, int ATTRIBUTE_UNUSED depth)
42 {
43
44         /* We get a file here. If the file does not have ".ko" but an
45          * intermittent dentry has, it's just their fault.
46          */
47         if (strrstr(modulename, ".ko") != NULL) {
48                 dep_lst_t *new = xzalloc(sizeof(dep_lst_t));
49                 new->name = xstrdup(modulename + G.moddir_base_len);
50                 new->next = G.lst;
51                 G.lst = new;
52         }
53         return TRUE;
54 }
55
56 static int fileAction(const char *fname, struct stat *sb,
57                                         void ATTRIBUTE_UNUSED *data, int ATTRIBUTE_UNUSED depth)
58 {
59         size_t len = sb->st_size;
60         void *the_module;
61         char *ptr;
62         int fd;
63         char *depends, *deps;
64         dep_lst_t *this;
65
66         if (strrstr(fname, ".ko") == NULL) /* not a module */
67                 goto skip;
68
69 /*XXX: FIXME: does not handle compressed modules!
70  * There should be a function that looks at the extension and sets up
71  * open_transformer for us.
72  */
73         fd = xopen(fname, O_RDONLY);
74         the_module = mmap(NULL, len, PROT_READ, MAP_SHARED
75 #if defined MAP_POPULATE
76                                                 |MAP_POPULATE
77 #endif
78                                                 , fd, 0);
79         close(fd);
80         if (the_module == MAP_FAILED)
81                 bb_perror_msg_and_die("mmap");
82         ptr = the_module;
83         this = G.lst;
84         do {
85                 if (!strcmp(fname + G.moddir_base_len, this->name))
86                         break;
87                 this = this->next;
88         } while (this);
89         dbg_assert (this);
90 //bb_info_msg("fname='%s'", fname + G.moddir_base_len);
91         do {
92                 /* search for a 'd' */
93                 ptr = memchr(ptr, 'd', len - (ptr - (char*)the_module));
94                 if (ptr == NULL) /* no d left, done */
95                         goto none;
96                 if (!strncmp(ptr, "depends=", sizeof("depends=")-1))
97                         break;
98                 ++ptr;
99         } while (1);
100         deps = depends = xstrdup (ptr + sizeof("depends=")-1);
101 //bb_info_msg(" depends='%s'", depends);
102         while (deps) {
103                 dep_lst_t *all = G.lst;
104
105                 ptr = strsep(&deps, ",");
106                 while (all) {
107                         /* Compare the recorded filenames ignoring ".ko*" at the end.  */
108                         char *tmp = bb_get_last_path_component_nostrip(all->name);
109                         if (!strncmp(ptr, tmp, MAX(strlen(ptr),strrstr(tmp, ".ko") - tmp)))
110                                 break; /* found it */
111                         all = all->next;
112                 }
113                 if (all) {
114                         dbg_assert(all->name); /* this cannot be empty */
115 //bb_info_msg("[%s] -> '%s'", (char*)ptr, all->name);
116                         llist_add_to_end(&this->dependencies, all->name);
117                 }
118         }
119         free(depends);
120  none:
121         munmap(the_module, sb->st_size);
122  skip:
123         return TRUE;
124 }
125
126 int depmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
127 int depmod_main(int ATTRIBUTE_UNUSED argc, char **argv)
128 {
129         int ret;
130         char *moddir_base = NULL, *moddir, *system_map, *chp;
131         FILE *filedes = stdout;
132         enum {
133                 ARG_a = (1<<0), /* All modules, ignore mods in argv */
134                 ARG_A = (1<<1), /* Only emit .ko that are newer than modules.dep file */
135                 ARG_b = (1<<2), /* not /lib/modules/$(uname -r)/ but this base-dir */
136                 ARG_e = (1<<3), /* with -F, print unresolved symbols */
137                 ARG_F = (1<<4), /* System.map that contains the symbols */
138                 ARG_n = (1<<5)  /* dry-run, print to stdout only */
139         };
140         INIT_G();
141
142         getopt32(argv, "aAb:eF:n", &moddir_base, &system_map);
143         argv += optind;
144
145         /* If a version is provided, then that kernel version’s module directory
146          * is used, rather than the current kernel version (as returned by
147          * "uname -r").  */
148         if (*argv && (sscanf(*argv, "%d.%d.%d", &ret, &ret, &ret) == 3)) {
149                 moddir = concat_path_file(CONFIG_DEFAULT_MODULES_DIR, *argv++);
150         } else {
151                 struct utsname uts;
152                 if (uname(&uts) < 0)
153                         bb_simple_perror_msg_and_die("uname");
154                 moddir = concat_path_file(CONFIG_DEFAULT_MODULES_DIR, uts.release);
155         }
156         /* If no modules are given on the command-line, -a is on per default.  */
157         option_mask32 |= *argv == NULL;
158
159         if (option_mask32 & ARG_b) {
160                 G.moddir_base_len = strlen(moddir_base);
161                 if (ENABLE_FEATURE_CLEAN_UP) {
162                         chp = moddir;
163                         moddir = concat_path_file(moddir_base, moddir);
164                         free (chp);
165                 } else
166                         moddir = concat_path_file(moddir_base, moddir);
167         }
168
169         if (!(option_mask32 & ARG_n)) { /* --dry-run */
170                 chp = concat_path_file(moddir, CONFIG_DEFAULT_DEPMOD_FILE);
171                 filedes = xfopen(chp, "w");
172                 if (ENABLE_FEATURE_CLEAN_UP)
173                         free(chp);
174         }
175         ret = EXIT_SUCCESS;
176         /* We have to do a full walk to collect all needed data.  */
177         if (!recursive_action(moddir,
178                         ACTION_RECURSE, /* flags */
179                         fill_lst, /* file action */
180                         NULL, /* dir action */
181                         NULL, /* user data */
182                         0)) { /* depth */
183                 if (ENABLE_FEATURE_CLEAN_UP)
184                         ret = EXIT_FAILURE;
185                 else
186                         return EXIT_FAILURE;
187         }
188 #if ENABLE_FEATURE_CLEAN_UP
189         else
190 #endif
191         do {
192                 chp = option_mask32 & ARG_a ? moddir : *argv++;
193
194                 if (!recursive_action(chp,
195                                 ACTION_RECURSE, /* flags */
196                                 fileAction, /* file action */
197                                 NULL, /* dir action */
198                                 NULL, /* user data */
199                                 0)) { /* depth */
200                         ret = EXIT_FAILURE;
201                 }
202         } while (!(option_mask32 & ARG_a) && *argv);
203
204         /* modprobe allegedly wants dependencies without duplicates, i.e.
205          * mod1: mod2 mod3
206          * mod2: mod3
207          * mod3:
208          * implies that mod1 directly depends on mod2 and _not_ mod3 as mod3 is
209          * already implicitely pulled in via mod2. This leaves us with:
210          * mod1: mod2
211          * mod2: mod3
212          * mod3:
213          */
214         {
215         dep_lst_t *mods = G.lst;
216 #if ENABLE_FEATURE_DEPMOD_PRUNE_FANCY
217         while (mods) {
218                 llist_t *deps = mods->dependencies;
219                 while (deps) {
220                         dep_lst_t *all = G.lst;
221                         while (all) {
222                                 if (!strcmp(all->name, deps->data)) {
223                                         llist_t *implied = all->dependencies;
224                                         while (implied) {
225                                                 /* erm, nicer would be to just
226                                                  * llist_unlink(&mods->dependencies, implied)  */
227                                                 llist_t *prune = mods->dependencies;
228                                                 while (prune) {
229                                                         if (!strcmp(implied->data, prune->data))
230                                                                 break;
231                                                         prune = prune->link;
232                                                 }
233 //if (prune) bb_info_msg("[%s] '%s' implies '%s', removing", mods->name, all->name, implied->data);
234                                                 llist_unlink(&mods->dependencies, prune);
235                                                 implied = implied->link;
236                                         }
237                                 }
238                                 all = all->next;
239                         }
240                         deps = deps->link;
241                 }
242                 mods = mods->next;
243         }
244
245         mods = G.lst;
246 #endif
247         /* Finally print them.  */
248         while (mods) {
249                 fprintf(filedes, "%s:", mods->name);
250                 while (mods->dependencies)
251                         fprintf(filedes, " %s", (char*)llist_pop(&mods->dependencies));
252                 fprintf(filedes, "\n");
253                 mods = mods->next;
254         }
255         }
256
257         if (ENABLE_FEATURE_CLEAN_UP) {
258                 fclose_if_not_stdin(filedes);
259                 free(moddir);
260                 while (G.lst) {
261                         dep_lst_t *old = G.lst;
262                         G.lst = G.lst->next;
263                         free(old->name);
264                         free(old);
265                 }
266         }
267         return ret;
268 }