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