]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/udev/udevadm-hwdb.c
3ca755e2ed17078a7650104634f90eda3fd81118
[thirdparty/systemd.git] / src / udev / udevadm-hwdb.c
1 /***
2 This file is part of systemd.
3
4 Copyright 2012 Kay Sievers <kay@vrfy.org>
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <getopt.h>
23 #include <string.h>
24 #include <ctype.h>
25
26 #include "util.h"
27 #include "strbuf.h"
28 #include "conf-files.h"
29
30 #include "udev.h"
31 #include "libudev-hwdb-def.h"
32
33 /*
34 * Generic udev properties, key/value database based on modalias strings.
35 * Uses a Patricia/radix trie to index all matches for efficient lookup.
36 */
37
38 static const char * const conf_file_dirs[] = {
39 "/etc/udev/hwdb.d",
40 UDEVLIBEXECDIR "/hwdb.d",
41 NULL
42 };
43
44 /* in-memory trie objects */
45 struct trie {
46 struct trie_node *root;
47 struct strbuf *strings;
48
49 size_t nodes_count;
50 size_t children_count;
51 size_t values_count;
52 };
53
54 struct trie_node {
55 /* prefix, common part for all children of this node */
56 size_t prefix_off;
57
58 /* sorted array of pointers to children nodes */
59 struct trie_child_entry *children;
60 uint8_t children_count;
61
62 /* sorted array of key/value pairs */
63 struct trie_value_entry *values;
64 size_t values_count;
65 };
66
67 /* children array item with char (0-255) index */
68 struct trie_child_entry {
69 uint8_t c;
70 struct trie_node *child;
71 };
72
73 /* value array item with key/value pairs */
74 struct trie_value_entry {
75 size_t key_off;
76 size_t value_off;
77 };
78
79 static int trie_children_cmp(const void *v1, const void *v2) {
80 const struct trie_child_entry *n1 = v1;
81 const struct trie_child_entry *n2 = v2;
82
83 return n1->c - n2->c;
84 }
85
86 static int node_add_child(struct trie *trie, struct trie_node *node, struct trie_node *node_child, uint8_t c) {
87 struct trie_child_entry *child;
88
89 /* extend array, add new entry, sort for bisection */
90 child = realloc(node->children, (node->children_count + 1) * sizeof(struct trie_child_entry));
91 if (!child)
92 return -ENOMEM;
93
94 node->children = child;
95 trie->children_count++;
96 node->children[node->children_count].c = c;
97 node->children[node->children_count].child = node_child;
98 node->children_count++;
99 qsort(node->children, node->children_count, sizeof(struct trie_child_entry), trie_children_cmp);
100 trie->nodes_count++;
101
102 return 0;
103 }
104
105 static struct trie_node *node_lookup(const struct trie_node *node, uint8_t c) {
106 struct trie_child_entry *child;
107 struct trie_child_entry search;
108
109 search.c = c;
110 child = bsearch(&search, node->children, node->children_count, sizeof(struct trie_child_entry), trie_children_cmp);
111 if (child)
112 return child->child;
113 return NULL;
114 }
115
116 static void trie_node_cleanup(struct trie_node *node) {
117 size_t i;
118
119 for (i = 0; i < node->children_count; i++)
120 trie_node_cleanup(node->children[i].child);
121 free(node->children);
122 free(node->values);
123 free(node);
124 }
125
126 static int trie_values_cmp(const void *v1, const void *v2, void *arg) {
127 const struct trie_value_entry *val1 = v1;
128 const struct trie_value_entry *val2 = v2;
129 struct trie *trie = arg;
130
131 return strcmp(trie->strings->buf + val1->key_off,
132 trie->strings->buf + val2->key_off);
133 }
134
135 static int trie_node_add_value(struct trie *trie, struct trie_node *node,
136 const char *key, const char *value) {
137 ssize_t k, v;
138 struct trie_value_entry *val;
139
140 k = strbuf_add_string(trie->strings, key, strlen(key));
141 if (k < 0)
142 return k;
143 v = strbuf_add_string(trie->strings, value, strlen(value));
144 if (v < 0)
145 return v;
146
147 if (node->values_count) {
148 struct trie_value_entry search = {
149 .key_off = k,
150 .value_off = v,
151 };
152
153 val = xbsearch_r(&search, node->values, node->values_count, sizeof(struct trie_value_entry), trie_values_cmp, trie);
154 if (val) {
155 /* replace existing earlier key with new value */
156 val->value_off = v;
157 return 0;
158 }
159 }
160
161 /* extend array, add new entry, sort for bisection */
162 val = realloc(node->values, (node->values_count + 1) * sizeof(struct trie_value_entry));
163 if (!val)
164 return -ENOMEM;
165 trie->values_count++;
166 node->values = val;
167 node->values[node->values_count].key_off = k;
168 node->values[node->values_count].value_off = v;
169 node->values_count++;
170 qsort_r(node->values, node->values_count, sizeof(struct trie_value_entry), trie_values_cmp, trie);
171 return 0;
172 }
173
174 static int trie_insert(struct trie *trie, struct trie_node *node, const char *search,
175 const char *key, const char *value) {
176 size_t i = 0;
177 int err = 0;
178
179 for (;;) {
180 size_t p;
181 uint8_t c;
182 struct trie_node *child;
183
184 for (p = 0; (c = trie->strings->buf[node->prefix_off + p]); p++) {
185 _cleanup_free_ char *s = NULL;
186 ssize_t off;
187 _cleanup_free_ struct trie_node *new_child = NULL;
188
189 if (c == search[i + p])
190 continue;
191
192 /* split node */
193 new_child = new0(struct trie_node, 1);
194 if (!new_child)
195 return -ENOMEM;
196
197 /* move values from parent to child */
198 new_child->prefix_off = node->prefix_off + p+1;
199 new_child->children = node->children;
200 new_child->children_count = node->children_count;
201 new_child->values = node->values;
202 new_child->values_count = node->values_count;
203
204 /* update parent; use strdup() because the source gets realloc()d */
205 s = strndup(trie->strings->buf + node->prefix_off, p);
206 if (!s)
207 return -ENOMEM;
208
209 off = strbuf_add_string(trie->strings, s, p);
210 if (off < 0)
211 return off;
212
213 node->prefix_off = off;
214 node->children = NULL;
215 node->children_count = 0;
216 node->values = NULL;
217 node->values_count = 0;
218 err = node_add_child(trie, node, new_child, c);
219 if (err)
220 return err;
221
222 new_child = NULL; /* avoid cleanup */
223 break;
224 }
225 i += p;
226
227 c = search[i];
228 if (c == '\0')
229 return trie_node_add_value(trie, node, key, value);
230
231 child = node_lookup(node, c);
232 if (!child) {
233 ssize_t off;
234
235 /* new child */
236 child = new0(struct trie_node, 1);
237 if (!child)
238 return -ENOMEM;
239
240 off = strbuf_add_string(trie->strings, search + i+1, strlen(search + i+1));
241 if (off < 0) {
242 free(child);
243 return off;
244 }
245
246 child->prefix_off = off;
247 err = node_add_child(trie, node, child, c);
248 if (err) {
249 free(child);
250 return err;
251 }
252
253 return trie_node_add_value(trie, child, key, value);
254 }
255
256 node = child;
257 i++;
258 }
259 }
260
261 struct trie_f {
262 FILE *f;
263 struct trie *trie;
264 uint64_t strings_off;
265
266 uint64_t nodes_count;
267 uint64_t children_count;
268 uint64_t values_count;
269 };
270
271 /* calculate the storage space for the nodes, children arrays, value arrays */
272 static void trie_store_nodes_size(struct trie_f *trie, struct trie_node *node) {
273 uint64_t i;
274
275 for (i = 0; i < node->children_count; i++)
276 trie_store_nodes_size(trie, node->children[i].child);
277
278 trie->strings_off += sizeof(struct trie_node_f);
279 for (i = 0; i < node->children_count; i++)
280 trie->strings_off += sizeof(struct trie_child_entry_f);
281 for (i = 0; i < node->values_count; i++)
282 trie->strings_off += sizeof(struct trie_value_entry_f);
283 }
284
285 static int64_t trie_store_nodes(struct trie_f *trie, struct trie_node *node) {
286 uint64_t i;
287 struct trie_node_f n = {
288 .prefix_off = htole64(trie->strings_off + node->prefix_off),
289 .children_count = node->children_count,
290 .values_count = htole64(node->values_count),
291 };
292 struct trie_child_entry_f *children = NULL;
293 int64_t node_off;
294
295 if (node->children_count) {
296 children = new0(struct trie_child_entry_f, node->children_count);
297 if (!children)
298 return -ENOMEM;
299 }
300
301 /* post-order recursion */
302 for (i = 0; i < node->children_count; i++) {
303 int64_t child_off;
304
305 child_off = trie_store_nodes(trie, node->children[i].child);
306 if (child_off < 0) {
307 free(children);
308 return child_off;
309 }
310 children[i].c = node->children[i].c;
311 children[i].child_off = htole64(child_off);
312 }
313
314 /* write node */
315 node_off = ftello(trie->f);
316 fwrite(&n, sizeof(struct trie_node_f), 1, trie->f);
317 trie->nodes_count++;
318
319 /* append children array */
320 if (node->children_count) {
321 fwrite(children, sizeof(struct trie_child_entry_f), node->children_count, trie->f);
322 trie->children_count += node->children_count;
323 free(children);
324 }
325
326 /* append values array */
327 for (i = 0; i < node->values_count; i++) {
328 struct trie_value_entry_f v = {
329 .key_off = htole64(trie->strings_off + node->values[i].key_off),
330 .value_off = htole64(trie->strings_off + node->values[i].value_off),
331 };
332
333 fwrite(&v, sizeof(struct trie_value_entry_f), 1, trie->f);
334 trie->values_count++;
335 }
336
337 return node_off;
338 }
339
340 static int trie_store(struct trie *trie, const char *filename) {
341 struct trie_f t = {
342 .trie = trie,
343 };
344 _cleanup_free_ char *filename_tmp = NULL;
345 int64_t pos;
346 int64_t root_off;
347 int64_t size;
348 struct trie_header_f h = {
349 .signature = HWDB_SIG,
350 .tool_version = htole64(atoi(VERSION)),
351 .header_size = htole64(sizeof(struct trie_header_f)),
352 .node_size = htole64(sizeof(struct trie_node_f)),
353 .child_entry_size = htole64(sizeof(struct trie_child_entry_f)),
354 .value_entry_size = htole64(sizeof(struct trie_value_entry_f)),
355 };
356 int err;
357
358 /* calculate size of header, nodes, children entries, value entries */
359 t.strings_off = sizeof(struct trie_header_f);
360 trie_store_nodes_size(&t, trie->root);
361
362 err = fopen_temporary(filename , &t.f, &filename_tmp);
363 if (err < 0)
364 return err;
365 fchmod(fileno(t.f), 0444);
366
367 /* write nodes */
368 err = fseeko(t.f, sizeof(struct trie_header_f), SEEK_SET);
369 if (err < 0) {
370 fclose(t.f);
371 unlink_noerrno(filename_tmp);
372 return -errno;
373 }
374 root_off = trie_store_nodes(&t, trie->root);
375 h.nodes_root_off = htole64(root_off);
376 pos = ftello(t.f);
377 h.nodes_len = htole64(pos - sizeof(struct trie_header_f));
378
379 /* write string buffer */
380 fwrite(trie->strings->buf, trie->strings->len, 1, t.f);
381 h.strings_len = htole64(trie->strings->len);
382
383 /* write header */
384 size = ftello(t.f);
385 h.file_size = htole64(size);
386 err = fseeko(t.f, 0, SEEK_SET);
387 if (err < 0) {
388 fclose(t.f);
389 unlink_noerrno(filename_tmp);
390 return -errno;
391 }
392 fwrite(&h, sizeof(struct trie_header_f), 1, t.f);
393 err = ferror(t.f);
394 if (err)
395 err = -errno;
396 fclose(t.f);
397 if (err < 0 || rename(filename_tmp, filename) < 0) {
398 unlink_noerrno(filename_tmp);
399 return err < 0 ? err : -errno;
400 }
401
402 log_debug("=== trie on-disk ===");
403 log_debug("size: %8"PRIu64" bytes", size);
404 log_debug("header: %8zu bytes", sizeof(struct trie_header_f));
405 log_debug("nodes: %8"PRIu64" bytes (%8"PRIu64")",
406 t.nodes_count * sizeof(struct trie_node_f), t.nodes_count);
407 log_debug("child pointers: %8"PRIu64" bytes (%8"PRIu64")",
408 t.children_count * sizeof(struct trie_child_entry_f), t.children_count);
409 log_debug("value pointers: %8"PRIu64" bytes (%8"PRIu64")",
410 t.values_count * sizeof(struct trie_value_entry_f), t.values_count);
411 log_debug("string store: %8zu bytes", trie->strings->len);
412 log_debug("strings start: %8"PRIu64, t.strings_off);
413
414 return 0;
415 }
416
417 static int insert_data(struct trie *trie, struct udev_list *match_list,
418 char *line, const char *filename) {
419 char *value;
420 struct udev_list_entry *entry;
421
422 value = strchr(line, '=');
423 if (!value) {
424 log_error("Error, key/value pair expected but got '%s' in '%s':", line, filename);
425 return -EINVAL;
426 }
427
428 value[0] = '\0';
429 value++;
430
431 if (line[0] == '\0' || value[0] == '\0') {
432 log_error("Error, empty key or value '%s' in '%s':", line, filename);
433 return -EINVAL;
434 }
435
436 udev_list_entry_foreach(entry, udev_list_get_entry(match_list))
437 trie_insert(trie, trie->root, udev_list_entry_get_name(entry), line, value);
438
439 return 0;
440 }
441
442 static int import_file(struct udev *udev, struct trie *trie, const char *filename) {
443 enum {
444 HW_MATCH,
445 HW_DATA,
446 HW_NONE,
447 } state = HW_NONE;
448 FILE *f;
449 char line[LINE_MAX];
450 struct udev_list match_list;
451
452 udev_list_init(udev, &match_list, false);
453
454 f = fopen(filename, "re");
455 if (f == NULL)
456 return -errno;
457
458 while (fgets(line, sizeof(line), f)) {
459 size_t len;
460 char *pos;
461
462 /* comment line */
463 if (line[0] == '#')
464 continue;
465
466 /* strip trailing comment */
467 pos = strchr(line, '#');
468 if (pos)
469 pos[0] = '\0';
470
471 /* strip trailing whitespace */
472 len = strlen(line);
473 while (len > 0 && isspace(line[len-1]))
474 len--;
475 line[len] = '\0';
476
477 switch (state) {
478 case HW_NONE:
479 if (len == 0)
480 break;
481
482 if (line[0] == ' ') {
483 log_error("Error, MATCH expected but got '%s' in '%s':", line, filename);
484 break;
485 }
486
487 /* start of record, first match */
488 state = HW_MATCH;
489 udev_list_entry_add(&match_list, line, NULL);
490 break;
491
492 case HW_MATCH:
493 if (len == 0) {
494 log_error("Error, DATA expected but got empty line in '%s':", filename);
495 state = HW_NONE;
496 udev_list_cleanup(&match_list);
497 break;
498 }
499
500 /* another match */
501 if (line[0] != ' ') {
502 udev_list_entry_add(&match_list, line, NULL);
503 break;
504 }
505
506 /* first data */
507 state = HW_DATA;
508 insert_data(trie, &match_list, line, filename);
509 break;
510
511 case HW_DATA:
512 /* end of record */
513 if (len == 0) {
514 state = HW_NONE;
515 udev_list_cleanup(&match_list);
516 break;
517 }
518
519 if (line[0] != ' ') {
520 log_error("Error, DATA expected but got '%s' in '%s':", line, filename);
521 state = HW_NONE;
522 udev_list_cleanup(&match_list);
523 break;
524 }
525
526 insert_data(trie, &match_list, line, filename);
527 break;
528 };
529 }
530
531 fclose(f);
532 udev_list_cleanup(&match_list);
533 return 0;
534 }
535
536 static void help(void) {
537 printf("Usage: udevadm hwdb OPTIONS\n"
538 " -u,--update update the hardware database\n"
539 " --usr generate in " UDEVLIBEXECDIR " instead of /etc/udev\n"
540 " -t,--test=MODALIAS query database and print result\n"
541 " -r,--root=PATH alternative root path in the filesystem\n"
542 " -h,--help\n\n");
543 }
544
545 static int adm_hwdb(struct udev *udev, int argc, char *argv[]) {
546 enum {
547 ARG_USR = 0x100,
548 };
549
550 static const struct option options[] = {
551 { "update", no_argument, NULL, 'u' },
552 { "usr", no_argument, NULL, ARG_USR },
553 { "test", required_argument, NULL, 't' },
554 { "root", required_argument, NULL, 'r' },
555 { "help", no_argument, NULL, 'h' },
556 {}
557 };
558 const char *test = NULL;
559 const char *root = "";
560 const char *hwdb_bin_dir = "/etc/udev";
561 bool update = false;
562 struct trie *trie = NULL;
563 int err, c;
564 int rc = EXIT_SUCCESS;
565
566 while ((c = getopt_long(argc, argv, "ut:r:h", options, NULL)) >= 0)
567 switch(c) {
568 case 'u':
569 update = true;
570 break;
571 case ARG_USR:
572 hwdb_bin_dir = UDEVLIBEXECDIR;
573 break;
574 case 't':
575 test = optarg;
576 break;
577 case 'r':
578 root = optarg;
579 break;
580 case 'h':
581 help();
582 return EXIT_SUCCESS;
583 case '?':
584 return EXIT_FAILURE;
585 default:
586 assert_not_reached("Unknown option");
587 }
588
589 if (!update && !test) {
590 log_error("Either --update or --test must be used");
591 return EXIT_FAILURE;
592 }
593
594 if (update) {
595 char **files, **f;
596 _cleanup_free_ char *hwdb_bin = NULL;
597
598 trie = new0(struct trie, 1);
599 if (!trie) {
600 rc = EXIT_FAILURE;
601 goto out;
602 }
603
604 /* string store */
605 trie->strings = strbuf_new();
606 if (!trie->strings) {
607 rc = EXIT_FAILURE;
608 goto out;
609 }
610
611 /* index */
612 trie->root = new0(struct trie_node, 1);
613 if (!trie->root) {
614 rc = EXIT_FAILURE;
615 goto out;
616 }
617 trie->nodes_count++;
618
619 err = conf_files_list_strv(&files, ".hwdb", root, conf_file_dirs);
620 if (err < 0) {
621 log_error("failed to enumerate hwdb files: %s", strerror(-err));
622 rc = EXIT_FAILURE;
623 goto out;
624 }
625 STRV_FOREACH(f, files) {
626 log_debug("reading file '%s'", *f);
627 import_file(udev, trie, *f);
628 }
629 strv_free(files);
630
631 strbuf_complete(trie->strings);
632
633 log_debug("=== trie in-memory ===");
634 log_debug("nodes: %8zu bytes (%8zu)",
635 trie->nodes_count * sizeof(struct trie_node), trie->nodes_count);
636 log_debug("children arrays: %8zu bytes (%8zu)",
637 trie->children_count * sizeof(struct trie_child_entry), trie->children_count);
638 log_debug("values arrays: %8zu bytes (%8zu)",
639 trie->values_count * sizeof(struct trie_value_entry), trie->values_count);
640 log_debug("strings: %8zu bytes",
641 trie->strings->len);
642 log_debug("strings incoming: %8zu bytes (%8zu)",
643 trie->strings->in_len, trie->strings->in_count);
644 log_debug("strings dedup'ed: %8zu bytes (%8zu)",
645 trie->strings->dedup_len, trie->strings->dedup_count);
646
647 hwdb_bin = strjoin(root, "/", hwdb_bin_dir, "/hwdb.bin", NULL);
648 if (!hwdb_bin) {
649 rc = EXIT_FAILURE;
650 goto out;
651 }
652 mkdir_parents(hwdb_bin, 0755);
653 err = trie_store(trie, hwdb_bin);
654 if (err < 0) {
655 log_error("Failure writing database %s: %s", hwdb_bin, strerror(-err));
656 rc = EXIT_FAILURE;
657 }
658 }
659
660 if (test) {
661 struct udev_hwdb *hwdb = udev_hwdb_new(udev);
662
663 if (hwdb) {
664 struct udev_list_entry *entry;
665
666 udev_list_entry_foreach(entry, udev_hwdb_get_properties_list_entry(hwdb, test, 0))
667 printf("%s=%s\n", udev_list_entry_get_name(entry), udev_list_entry_get_value(entry));
668 udev_hwdb_unref(hwdb);
669 }
670 }
671 out:
672 if (trie) {
673 if (trie->root)
674 trie_node_cleanup(trie->root);
675 strbuf_cleanup(trie->strings);
676 free(trie);
677 }
678 return rc;
679 }
680
681 const struct udevadm_cmd udevadm_hwdb = {
682 .name = "hwdb",
683 .cmd = adm_hwdb,
684 .help = "maintain the hardware database index",
685 };