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