1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92#include <sys/types.h>
93#include <sys/stat.h>
94#include <unistd.h>
95#include <fcntl.h>
96#include <string.h>
97#include <stdarg.h>
98#include <stdlib.h>
99#include <stdio.h>
100#include <ctype.h>
101
102char tmp_buf[256];
103
104static void usage(void)
105{
106 fprintf(stderr, "Usage: fixdep <depfile> <target> <cmdline>\n");
107 exit(1);
108}
109
110
111
112
113
114
115static void xprintf(const char *format, ...)
116{
117 va_list ap;
118 int ret;
119
120 va_start(ap, format);
121 ret = vprintf(format, ap);
122 if (ret < 0) {
123 perror("fixdep");
124 exit(1);
125 }
126 va_end(ap);
127}
128
129static void xputchar(int c)
130{
131 int ret;
132
133 ret = putchar(c);
134 if (ret == EOF) {
135 perror("fixdep");
136 exit(1);
137 }
138}
139
140
141
142
143static void print_dep(const char *m, int slen, const char *dir)
144{
145 int c, prev_c = '/', i;
146
147 xprintf(" $(wildcard %s/", dir);
148 for (i = 0; i < slen; i++) {
149 c = m[i];
150 if (c == '_')
151 c = '/';
152 else
153 c = tolower(c);
154 if (c != '/' || prev_c != '/')
155 xputchar(c);
156 prev_c = c;
157 }
158 xprintf(".h) \\\n");
159}
160
161struct item {
162 struct item *next;
163 unsigned int len;
164 unsigned int hash;
165 char name[0];
166};
167
168#define HASHSZ 256
169static struct item *hashtab[HASHSZ];
170
171static unsigned int strhash(const char *str, unsigned int sz)
172{
173
174 unsigned int i, hash = 2166136261U;
175
176 for (i = 0; i < sz; i++)
177 hash = (hash ^ str[i]) * 0x01000193;
178 return hash;
179}
180
181
182
183
184static int is_defined_config(const char *name, int len, unsigned int hash)
185{
186 struct item *aux;
187
188 for (aux = hashtab[hash % HASHSZ]; aux; aux = aux->next) {
189 if (aux->hash == hash && aux->len == len &&
190 memcmp(aux->name, name, len) == 0)
191 return 1;
192 }
193 return 0;
194}
195
196
197
198
199static void define_config(const char *name, int len, unsigned int hash)
200{
201 struct item *aux = malloc(sizeof(*aux) + len);
202
203 if (!aux) {
204 perror("fixdep:malloc");
205 exit(1);
206 }
207 memcpy(aux->name, name, len);
208 aux->len = len;
209 aux->hash = hash;
210 aux->next = hashtab[hash % HASHSZ];
211 hashtab[hash % HASHSZ] = aux;
212}
213
214
215
216
217static void use_config(const char *m, int slen)
218{
219 unsigned int hash = strhash(m, slen);
220
221 if (is_defined_config(m, slen, hash))
222 return;
223
224 define_config(m, slen, hash);
225 print_dep(m, slen, "include/config");
226}
227
228
229static int str_ends_with(const char *s, int slen, const char *sub)
230{
231 int sublen = strlen(sub);
232
233 if (sublen > slen)
234 return 0;
235
236 return !memcmp(s + slen - sublen, sub, sublen);
237}
238
239static void parse_config_file(const char *p)
240{
241 const char *q, *r;
242 const char *start = p;
243
244 while ((p = strstr(p, "CONFIG_"))) {
245 if (p > start && (isalnum(p[-1]) || p[-1] == '_')) {
246 p += 7;
247 continue;
248 }
249 p += 7;
250 q = p;
251 while (isalnum(*q) || *q == '_')
252 q++;
253 if (str_ends_with(p, q - p, "_MODULE"))
254 r = q - 7;
255 else
256 r = q;
257
258
259
260
261
262
263
264 if ((q - p == 10 && !memcmp(p, "IS_ENABLED(", 11)) ||
265 (q - p == 10 && !memcmp(p, "IS_BUILTIN(", 11)) ||
266 (q - p == 9 && !memcmp(p, "IS_MODULE(", 10)) ||
267 (q - p == 3 && !memcmp(p, "VAL(", 4))) {
268 p = q + 1;
269 q = p;
270 while (isalnum(*q) || *q == '_')
271 q++;
272 r = q;
273 if (r > p && tmp_buf[0]) {
274 memcpy(tmp_buf + 4, p, r - p);
275 r = tmp_buf + 4 + (r - p);
276 p = tmp_buf;
277 }
278 }
279
280
281 if (r > p)
282 use_config(p, r - p);
283 p = q;
284 }
285}
286
287static void *read_file(const char *filename)
288{
289 struct stat st;
290 int fd;
291 char *buf;
292
293 fd = open(filename, O_RDONLY);
294 if (fd < 0) {
295 fprintf(stderr, "fixdep: error opening file: ");
296 perror(filename);
297 exit(2);
298 }
299 if (fstat(fd, &st) < 0) {
300 fprintf(stderr, "fixdep: error fstat'ing file: ");
301 perror(filename);
302 exit(2);
303 }
304 buf = malloc(st.st_size + 1);
305 if (!buf) {
306 perror("fixdep: malloc");
307 exit(2);
308 }
309 if (read(fd, buf, st.st_size) != st.st_size) {
310 perror("fixdep: read");
311 exit(2);
312 }
313 buf[st.st_size] = '\0';
314 close(fd);
315
316 return buf;
317}
318
319
320static int is_ignored_file(const char *s, int len)
321{
322 return str_ends_with(s, len, "include/generated/autoconf.h") ||
323 str_ends_with(s, len, "include/generated/autoksyms.h");
324}
325
326
327
328
329
330
331static void parse_dep_file(char *m, const char *target)
332{
333 char *p;
334 int is_last, is_target;
335 int saw_any_target = 0;
336 int is_first_dep = 0;
337 void *buf;
338
339 while (1) {
340
341 while (*m == ' ' || *m == '\\' || *m == '\n')
342 m++;
343
344 if (!*m)
345 break;
346
347
348 p = m;
349 while (*p && *p != ' ' && *p != '\\' && *p != '\n')
350 p++;
351 is_last = (*p == '\0');
352
353 is_target = (*(p-1) == ':');
354
355 if (is_target) {
356
357 is_first_dep = 1;
358 } else if (!is_ignored_file(m, p - m)) {
359 *p = '\0';
360
361
362
363
364
365
366
367 if (is_first_dep) {
368
369
370
371
372
373
374
375
376 if (!saw_any_target) {
377 saw_any_target = 1;
378 xprintf("source_%s := %s\n\n",
379 target, m);
380 xprintf("deps_%s := \\\n", target);
381 }
382 is_first_dep = 0;
383 } else {
384 xprintf(" %s \\\n", m);
385 }
386
387 buf = read_file(m);
388 parse_config_file(buf);
389 free(buf);
390 }
391
392 if (is_last)
393 break;
394
395
396
397
398
399 m = p + 1;
400 }
401
402 if (!saw_any_target) {
403 fprintf(stderr, "fixdep: parse error; no targets found\n");
404 exit(1);
405 }
406
407 xprintf("\n%s: $(deps_%s)\n\n", target, target);
408 xprintf("$(deps_%s):\n", target);
409}
410
411int main(int argc, char *argv[])
412{
413 const char *depfile, *target, *cmdline;
414 void *buf;
415
416 if (argc != 4)
417 usage();
418
419 depfile = argv[1];
420 target = argv[2];
421 cmdline = argv[3];
422
423
424 if (!strncmp(target, "spl/", 4))
425 strcpy(tmp_buf, "SPL_");
426 else if (!strncmp(target, "tpl/", 4))
427 strcpy(tmp_buf, "TPL_");
428
429
430 xprintf("cmd_%s := %s\n\n", target, cmdline);
431
432 buf = read_file(depfile);
433 parse_dep_file(buf, target);
434 free(buf);
435
436 return 0;
437}
438