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