]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/udev/udev-builtin-hwdb.c
Revert "systemctl: fix broken list-unit-files with --root"
[thirdparty/systemd.git] / src / udev / udev-builtin-hwdb.c
CommitLineData
796b06c2
KS
1/***
2 This file is part of systemd.
3
c3cfed0d 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***/
ccba91c7
LP
19
20#include <stdio.h>
21#include <errno.h>
22#include <string.h>
23#include <inttypes.h>
24#include <ctype.h>
25#include <stdlib.h>
67410e9f 26#include <fnmatch.h>
796b06c2 27#include <getopt.h>
ccba91c7 28
3cf5266b 29#include "udev.h"
ccba91c7 30
2001208c 31static struct udev_hwdb *hwdb;
ccba91c7 32
67410e9f 33int udev_builtin_hwdb_lookup(struct udev_device *dev,
a4bbef09
KS
34 const char *prefix, const char *modalias,
35 const char *filter, bool test) {
36 struct udev_list_entry *list;
59803c38
KS
37 struct udev_list_entry *entry;
38 int n = 0;
39
33c770b1
KS
40 if (!hwdb)
41 return -ENOENT;
42
a4bbef09
KS
43 if (prefix) {
44 _cleanup_free_ const char *lookup;
45
46 lookup = strjoin(prefix, modalias, NULL);
47 if (!lookup)
48 return -ENOMEM;
49 list = udev_hwdb_get_properties_list_entry(hwdb, lookup, 0);
50 } else
51 list = udev_hwdb_get_properties_list_entry(hwdb, modalias, 0);
52
53 udev_list_entry_foreach(entry, list) {
67410e9f
KS
54 if (filter && fnmatch(filter, udev_list_entry_get_name(entry), FNM_NOESCAPE) != 0)
55 continue;
56
59803c38
KS
57 if (udev_builtin_add_property(dev, test,
58 udev_list_entry_get_name(entry),
59 udev_list_entry_get_value(entry)) < 0)
60 return -ENOMEM;
61 n++;
62 }
63 return n;
64}
65
66static const char *modalias_usb(struct udev_device *dev, char *s, size_t size) {
67 const char *v, *p;
68 int vn, pn;
69
70 v = udev_device_get_sysattr_value(dev, "idVendor");
71 if (!v)
72 return NULL;
73 p = udev_device_get_sysattr_value(dev, "idProduct");
74 if (!p)
75 return NULL;
76 vn = strtol(v, NULL, 16);
77 if (vn <= 0)
78 return NULL;
79 pn = strtol(p, NULL, 16);
80 if (pn <= 0)
81 return NULL;
82 snprintf(s, size, "usb:v%04Xp%04X*", vn, pn);
83 return s;
84}
85
67410e9f 86static int udev_builtin_hwdb_search(struct udev_device *dev, struct udev_device *srcdev,
a4bbef09
KS
87 const char *subsystem, const char *prefix,
88 const char *filter, bool test) {
59803c38
KS
89 struct udev_device *d;
90 char s[16];
91 int n = 0;
92
67410e9f 93 for (d = srcdev; d; d = udev_device_get_parent(d)) {
59803c38
KS
94 const char *dsubsys;
95 const char *modalias = NULL;
96
97 dsubsys = udev_device_get_subsystem(d);
98 if (!dsubsys)
99 continue;
100
101 /* look only at devices of a specific subsystem */
102 if (subsystem && !streq(dsubsys, subsystem))
103 continue;
104
0238cf7c
KS
105 modalias = udev_device_get_property_value(d, "MODALIAS");
106
59803c38 107 /* the usb_device does not have a modalias, compose one */
0238cf7c 108 if (!modalias && streq(dsubsys, "usb"))
67410e9f 109 modalias = modalias_usb(d, s, sizeof(s));
59803c38 110
59803c38
KS
111 if (!modalias)
112 continue;
67410e9f 113
a4bbef09 114 n = udev_builtin_hwdb_lookup(dev, prefix, modalias, filter, test);
59803c38
KS
115 if (n > 0)
116 break;
117 }
118
119 return n;
120}
121
2001208c
KS
122static int builtin_hwdb(struct udev_device *dev, int argc, char *argv[], bool test) {
123 static const struct option options[] = {
67410e9f
KS
124 { "filter", required_argument, NULL, 'f' },
125 { "device", required_argument, NULL, 'd' },
2001208c 126 { "subsystem", required_argument, NULL, 's' },
a4bbef09 127 { "lookup-prefix", required_argument, NULL, 'p' },
2001208c 128 {}
796b06c2 129 };
67410e9f
KS
130 const char *filter = NULL;
131 const char *device = NULL;
59803c38 132 const char *subsystem = NULL;
a4bbef09 133 const char *prefix = NULL;
67410e9f 134 struct udev_device *srcdev;
ccba91c7 135
2001208c
KS
136 if (!hwdb)
137 return EXIT_FAILURE;
ccba91c7 138
2001208c
KS
139 for (;;) {
140 int option;
ccba91c7 141
a4bbef09 142 option = getopt_long(argc, argv, "f:d:s:p:", options, NULL);
2001208c
KS
143 if (option == -1)
144 break;
ccba91c7 145
2001208c 146 switch (option) {
67410e9f
KS
147 case 'f':
148 filter = optarg;
149 break;
150
151 case 'd':
152 device = optarg;
153 break;
154
2001208c 155 case 's':
59803c38 156 subsystem = optarg;
2001208c 157 break;
a4bbef09
KS
158
159 case 'p':
160 prefix = optarg;
161 break;
912541b0
KS
162 }
163 }
ccba91c7 164
6824690f
KS
165 /* query a specific key given as argument */
166 if (argv[optind]) {
a4bbef09 167 if (udev_builtin_hwdb_lookup(dev, prefix, argv[optind], filter, test) > 0)
6824690f
KS
168 return EXIT_SUCCESS;
169 return EXIT_FAILURE;
170 }
171
67410e9f
KS
172 /* read data from another device than the device we will store the data */
173 if (device) {
174 srcdev = udev_device_new_from_device_id(udev_device_get_udev(dev), device);
175 if (!srcdev)
176 return EXIT_FAILURE;
177 } else
178 srcdev = dev;
179
beef8df8
KS
180 if (udev_builtin_hwdb_search(dev, srcdev, subsystem, prefix, filter, test) > 0)
181 return EXIT_SUCCESS;
182 return EXIT_FAILURE;
796b06c2 183}
ccba91c7 184
796b06c2 185/* called at udev startup and reload */
9ec6e95b 186static int builtin_hwdb_init(struct udev *udev) {
2001208c 187 if (hwdb)
5b4d50ef 188 return 0;
2001208c
KS
189 hwdb = udev_hwdb_new(udev);
190 if (!hwdb)
191 return -ENOMEM;
912541b0 192 return 0;
3cf5266b 193}
ccba91c7 194
796b06c2 195/* called on udev shutdown and reload request */
9ec6e95b 196static void builtin_hwdb_exit(struct udev *udev) {
2001208c 197 hwdb = udev_hwdb_unref(hwdb);
ccba91c7 198}
3cf5266b 199
796b06c2 200/* called every couple of seconds during event activity; 'true' if config has changed */
9ec6e95b 201static bool builtin_hwdb_validate(struct udev *udev) {
2001208c 202 return udev_hwdb_validate(hwdb);
796b06c2 203}
3cf5266b 204
796b06c2
KS
205const struct udev_builtin udev_builtin_hwdb = {
206 .name = "hwdb",
207 .cmd = builtin_hwdb,
208 .init = builtin_hwdb_init,
209 .exit = builtin_hwdb_exit,
210 .validate = builtin_hwdb_validate,
211 .help = "hardware database",
3cf5266b 212};