chiark / gitweb /
4136b17be5a233faeef8dc24388270dfdf92acb3
[elogind.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 = calloc(sizeof(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 = calloc(sizeof(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                         return child_off;
308                 children[i].c = node->children[i].c;
309                 children[i].child_off = htole64(child_off);
310         }
311
312         /* write node */
313         node_off = ftello(trie->f);
314         fwrite(&n, sizeof(struct trie_node_f), 1, trie->f);
315         trie->nodes_count++;
316
317         /* append children array */
318         if (node->children_count) {
319                 fwrite(children, sizeof(struct trie_child_entry_f), node->children_count, trie->f);
320                 trie->children_count += node->children_count;
321                 free(children);
322         }
323
324         /* append values array */
325         for (i = 0; i < node->values_count; i++) {
326                 struct trie_value_entry_f v = {
327                         .key_off = htole64(trie->strings_off + node->values[i].key_off),
328                         .value_off = htole64(trie->strings_off + node->values[i].value_off),
329                 };
330
331                 fwrite(&v, sizeof(struct trie_value_entry_f), 1, trie->f);
332                 trie->values_count++;
333         }
334
335         return node_off;
336 }
337
338 static int trie_store(struct trie *trie, const char *filename) {
339         struct trie_f t = {
340                 .trie = trie,
341         };
342         char *filename_tmp;
343         int64_t pos;
344         int64_t root_off;
345         int64_t size;
346         struct trie_header_f h = {
347                 .signature = HWDB_SIG,
348                 .tool_version = htole64(atoi(VERSION)),
349                 .header_size = htole64(sizeof(struct trie_header_f)),
350                 .node_size = htole64(sizeof(struct trie_node_f)),
351                 .child_entry_size = htole64(sizeof(struct trie_child_entry_f)),
352                 .value_entry_size = htole64(sizeof(struct trie_value_entry_f)),
353         };
354         int err;
355
356         /* calculate size of header, nodes, children entries, value entries */
357         t.strings_off = sizeof(struct trie_header_f);
358         trie_store_nodes_size(&t, trie->root);
359
360         err = fopen_temporary(filename , &t.f, &filename_tmp);
361         if (err < 0)
362                 return err;
363         fchmod(fileno(t.f), 0444);
364
365         /* write nodes */
366         fseeko(t.f, sizeof(struct trie_header_f), SEEK_SET);
367         root_off = trie_store_nodes(&t, trie->root);
368         h.nodes_root_off = htole64(root_off);
369         pos = ftello(t.f);
370         h.nodes_len = htole64(pos - sizeof(struct trie_header_f));
371
372         /* write string buffer */
373         fwrite(trie->strings->buf, trie->strings->len, 1, t.f);
374         h.strings_len = htole64(trie->strings->len);
375
376         /* write header */
377         size = ftello(t.f);
378         h.file_size = htole64(size);
379         fseeko(t.f, 0, SEEK_SET);
380         fwrite(&h, sizeof(struct trie_header_f), 1, t.f);
381         err = ferror(t.f);
382         if (err)
383                 err = -errno;
384         fclose(t.f);
385         if (err < 0 || rename(filename_tmp, filename) < 0) {
386                 unlink(filename_tmp);
387                 goto out;
388         }
389
390         log_debug("=== trie on-disk ===\n");
391         log_debug("size:             %8llu bytes\n", (unsigned long long)size);
392         log_debug("header:           %8zu bytes\n", sizeof(struct trie_header_f));
393         log_debug("nodes:            %8llu bytes (%8llu)\n",
394                   (unsigned long long)t.nodes_count * sizeof(struct trie_node_f), (unsigned long long)t.nodes_count);
395         log_debug("child pointers:   %8llu bytes (%8llu)\n",
396                   (unsigned long long)t.children_count * sizeof(struct trie_child_entry_f), (unsigned long long)t.children_count);
397         log_debug("value pointers:   %8llu bytes (%8llu)\n",
398                   (unsigned long long)t.values_count * sizeof(struct trie_value_entry_f), (unsigned long long)t.values_count);
399         log_debug("string store:     %8llu bytes\n", (unsigned long long)trie->strings->len);
400         log_debug("strings start:    %8llu\n", (unsigned long long) t.strings_off);
401 out:
402         free(filename_tmp);
403         return err;
404 }
405
406 static int insert_data(struct trie *trie, struct udev_list *match_list,
407                        char *line, const char *filename) {
408         char *value;
409         struct udev_list_entry *entry;
410
411         value = strchr(line, '=');
412         if (!value) {
413                 log_error("Error, key/value pair expected but got '%s' in '%s':\n", line, filename);
414                 return -EINVAL;
415         }
416
417         value[0] = '\0';
418         value++;
419
420         if (line[0] == '\0' || value[0] == '\0') {
421                 log_error("Error, empty key or value '%s' in '%s':\n", line, filename);
422                 return -EINVAL;
423         }
424
425         udev_list_entry_foreach(entry, udev_list_get_entry(match_list))
426                 trie_insert(trie, trie->root, udev_list_entry_get_name(entry), line, value);
427
428         return 0;
429 }
430
431 static int import_file(struct udev *udev, struct trie *trie, const char *filename) {
432         enum {
433                 HW_MATCH,
434                 HW_DATA,
435                 HW_NONE,
436         } state = HW_NONE;
437         FILE *f;
438         char line[LINE_MAX];
439         struct udev_list match_list;
440
441         udev_list_init(udev, &match_list, false);
442
443         f = fopen(filename, "re");
444         if (f == NULL)
445                 return -errno;
446
447         while (fgets(line, sizeof(line), f)) {
448                 size_t len;
449                 char *pos;
450
451                 /* comment line */
452                 if (line[0] == '#')
453                         continue;
454
455                 /* strip trailing comment */
456                 pos = strchr(line, '#');
457                 if (pos)
458                         pos[0] = '\0';
459
460                 /* strip trailing whitespace */
461                 len = strlen(line);
462                 while (len > 0 && isspace(line[len-1]))
463                         len--;
464                 line[len] = '\0';
465
466                 switch (state) {
467                 case HW_NONE:
468                         if (len == 0)
469                                 break;
470
471                         if (line[0] == ' ') {
472                                 log_error("Error, MATCH expected but got '%s' in '%s':\n", line, filename);
473                                 break;
474                         }
475
476                         /* start of record, first match */
477                         state = HW_MATCH;
478                         udev_list_entry_add(&match_list, line, NULL);
479                         break;
480
481                 case HW_MATCH:
482                         if (len == 0) {
483                                 log_error("Error, DATA expected but got empty line in '%s':\n", filename);
484                                 state = HW_NONE;
485                                 udev_list_cleanup(&match_list);
486                                 break;
487                         }
488
489                         /* another match */
490                         if (line[0] != ' ') {
491                                 udev_list_entry_add(&match_list, line, NULL);
492                                 break;
493                         }
494
495                         /* first data */
496                         state = HW_DATA;
497                         insert_data(trie, &match_list, line, filename);
498                         break;
499
500                 case HW_DATA:
501                         /* end of record */
502                         if (len == 0) {
503                                 state = HW_NONE;
504                                 udev_list_cleanup(&match_list);
505                                 break;
506                         }
507
508                         if (line[0] != ' ') {
509                                 log_error("Error, DATA expected but got '%s' in '%s':\n", line, filename);
510                                 state = HW_NONE;
511                                 udev_list_cleanup(&match_list);
512                                 break;
513                         }
514
515                         insert_data(trie, &match_list, line, filename);
516                         break;
517                 };
518         }
519
520         fclose(f);
521         udev_list_cleanup(&match_list);
522         return 0;
523 }
524
525 static void help(void) {
526         printf("Usage: udevadm hwdb OPTIONS\n"
527                "  --update            update the hardware database\n"
528                "  --test=<modalias>   query database and print result\n"
529                "  --root=<path>       alternative root path in the filesystem\n"
530                "  --help\n\n");
531 }
532
533 static int adm_hwdb(struct udev *udev, int argc, char *argv[]) {
534         static const struct option options[] = {
535                 { "update", no_argument, NULL, 'u' },
536                 { "root", required_argument, NULL, 'r' },
537                 { "test", required_argument, NULL, 't' },
538                 { "help", no_argument, NULL, 'h' },
539                 {}
540         };
541         const char *test = NULL;
542         const char *root = "";
543         bool update = false;
544         struct trie *trie = NULL;
545         int err;
546         int rc = EXIT_SUCCESS;
547
548         for (;;) {
549                 int option;
550
551                 option = getopt_long(argc, argv, "ut:r:h", options, NULL);
552                 if (option == -1)
553                         break;
554
555                 switch (option) {
556                 case 'u':
557                         update = true;
558                         break;
559                 case 't':
560                         test = optarg;
561                         break;
562                 case 'r':
563                         root = optarg;
564                         break;
565                 case 'h':
566                         help();
567                         return EXIT_SUCCESS;
568                 }
569         }
570
571         if (!update && !test) {
572                 help();
573                 return EXIT_SUCCESS;
574         }
575
576         if (update) {
577                 char **files, **f;
578                 _cleanup_free_ char *hwdb_bin = NULL;
579
580                 trie = calloc(sizeof(struct trie), 1);
581                 if (!trie) {
582                         rc = EXIT_FAILURE;
583                         goto out;
584                 }
585
586                 /* string store */
587                 trie->strings = strbuf_new();
588                 if (!trie->strings) {
589                         rc = EXIT_FAILURE;
590                         goto out;
591                 }
592
593                 /* index */
594                 trie->root = calloc(sizeof(struct trie_node), 1);
595                 if (!trie->root) {
596                         rc = EXIT_FAILURE;
597                         goto out;
598                 }
599                 trie->nodes_count++;
600
601                 err = conf_files_list_strv(&files, ".hwdb", root, conf_file_dirs);
602                 if (err < 0) {
603                         log_error("failed to enumerate hwdb files: %s\n", strerror(-err));
604                         rc = EXIT_FAILURE;
605                         goto out;
606                 }
607                 STRV_FOREACH(f, files) {
608                         log_debug("reading file '%s'", *f);
609                         import_file(udev, trie, *f);
610                 }
611                 strv_free(files);
612
613                 strbuf_complete(trie->strings);
614
615                 log_debug("=== trie in-memory ===\n");
616                 log_debug("nodes:            %8zu bytes (%8zu)\n",
617                           trie->nodes_count * sizeof(struct trie_node), trie->nodes_count);
618                 log_debug("children arrays:  %8zu bytes (%8zu)\n",
619                           trie->children_count * sizeof(struct trie_child_entry), trie->children_count);
620                 log_debug("values arrays:    %8zu bytes (%8zu)\n",
621                           trie->values_count * sizeof(struct trie_value_entry), trie->values_count);
622                 log_debug("strings:          %8zu bytes\n",
623                           trie->strings->len);
624                 log_debug("strings incoming: %8zu bytes (%8zu)\n",
625                           trie->strings->in_len, trie->strings->in_count);
626                 log_debug("strings dedup'ed: %8zu bytes (%8zu)\n",
627                           trie->strings->dedup_len, trie->strings->dedup_count);
628
629                 if (asprintf(&hwdb_bin, "%s/etc/udev/hwdb.bin", root) < 0) {
630                         rc = EXIT_FAILURE;
631                         goto out;
632                 }
633                 mkdir_parents(hwdb_bin, 0755);
634                 err = trie_store(trie, hwdb_bin);
635                 if (err < 0) {
636                         log_error("Failure writing database %s: %s", hwdb_bin, strerror(-err));
637                         rc = EXIT_FAILURE;
638                 }
639         }
640
641         if (test) {
642                 struct udev_hwdb *hwdb = udev_hwdb_new(udev);
643
644                 if (hwdb) {
645                         struct udev_list_entry *entry;
646
647                         udev_list_entry_foreach(entry, udev_hwdb_get_properties_list_entry(hwdb, test, 0))
648                                 printf("%s=%s\n", udev_list_entry_get_name(entry), udev_list_entry_get_value(entry));
649                         hwdb = udev_hwdb_unref(hwdb);
650                 }
651         }
652 out:
653         if (trie) {
654                 if (trie->root)
655                         trie_node_cleanup(trie->root);
656                 strbuf_cleanup(trie->strings);
657                 free(trie);
658         }
659         return rc;
660 }
661
662 const struct udevadm_cmd udevadm_hwdb = {
663         .name = "hwdb",
664         .cmd = adm_hwdb,
665         .help = "maintain the hardware database index",
666 };