chiark / gitweb /
Fix write-only use of a few variables
[elogind.git] / src / udev / udev-builtin-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 <stdio.h>
21 #include <errno.h>
22 #include <string.h>
23 #include <inttypes.h>
24 #include <ctype.h>
25 #include <stdlib.h>
26 #include <fnmatch.h>
27 #include <getopt.h>
28
29 #include "udev.h"
30
31 static struct udev_hwdb *hwdb;
32
33 int udev_builtin_hwdb_lookup(struct udev_device *dev,
34                              const char *prefix, const char *modalias,
35                              const char *filter, bool test) {
36         struct udev_list_entry *list;
37         struct udev_list_entry *entry;
38         int n = 0;
39
40         if (!hwdb)
41                 return -ENOENT;
42
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) {
54                 if (filter && fnmatch(filter, udev_list_entry_get_name(entry), FNM_NOESCAPE) != 0)
55                         continue;
56
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
66 static 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
86 static int udev_builtin_hwdb_search(struct udev_device *dev, struct udev_device *srcdev,
87                                     const char *subsystem, const char *prefix,
88                                     const char *filter, bool test) {
89         struct udev_device *d;
90         char s[16];
91         int n = 0;
92
93         for (d = srcdev; d; d = udev_device_get_parent(d)) {
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
105                 modalias = udev_device_get_property_value(d, "MODALIAS");
106
107                 /* the usb_device does not have a modalias, compose one */
108                 if (!modalias && streq(dsubsys, "usb"))
109                         modalias = modalias_usb(d, s, sizeof(s));
110
111                 if (!modalias)
112                         continue;
113
114                 n = udev_builtin_hwdb_lookup(dev, prefix, modalias, filter, test);
115                 if (n > 0)
116                         break;
117         }
118
119         return n;
120 }
121
122 static int builtin_hwdb(struct udev_device *dev, int argc, char *argv[], bool test) {
123         static const struct option options[] = {
124                 { "filter", required_argument, NULL, 'f' },
125                 { "device", required_argument, NULL, 'd' },
126                 { "subsystem", required_argument, NULL, 's' },
127                 { "lookup-prefix", required_argument, NULL, 'p' },
128                 {}
129         };
130         const char *filter = NULL;
131         const char *device = NULL;
132         const char *subsystem = NULL;
133         const char *prefix = NULL;
134         struct udev_device *srcdev;
135
136         if (!hwdb)
137                 return EXIT_FAILURE;
138
139         for (;;) {
140                 int option;
141
142                 option = getopt_long(argc, argv, "f:d:s:p:", options, NULL);
143                 if (option == -1)
144                         break;
145
146                 switch (option) {
147                 case 'f':
148                         filter = optarg;
149                         break;
150
151                 case 'd':
152                         device = optarg;
153                         break;
154
155                 case 's':
156                         subsystem = optarg;
157                         break;
158
159                 case 'p':
160                         prefix = optarg;
161                         break;
162                 }
163         }
164
165         /* query a specific key given as argument */
166         if (argv[optind]) {
167                 if (udev_builtin_hwdb_lookup(dev, prefix, argv[optind], filter, test) > 0)
168                         return EXIT_SUCCESS;
169                 return EXIT_FAILURE;
170         }
171
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
180         if (udev_builtin_hwdb_search(dev, srcdev, subsystem, prefix, filter, test) > 0)
181                 return EXIT_SUCCESS;
182         return EXIT_FAILURE;
183 }
184
185 /* called at udev startup and reload */
186 static int builtin_hwdb_init(struct udev *udev)
187 {
188         if (hwdb)
189                 return 0;
190         hwdb = udev_hwdb_new(udev);
191         if (!hwdb)
192                 return -ENOMEM;
193         return 0;
194 }
195
196 /* called on udev shutdown and reload request */
197 static void builtin_hwdb_exit(struct udev *udev)
198 {
199         hwdb = udev_hwdb_unref(hwdb);
200 }
201
202 /* called every couple of seconds during event activity; 'true' if config has changed */
203 static bool builtin_hwdb_validate(struct udev *udev)
204 {
205         return udev_hwdb_validate(hwdb);
206 }
207
208 const struct udev_builtin udev_builtin_hwdb = {
209         .name = "hwdb",
210         .cmd = builtin_hwdb,
211         .init = builtin_hwdb_init,
212         .exit = builtin_hwdb_exit,
213         .validate = builtin_hwdb_validate,
214         .help = "hardware database",
215 };