udev-builtin-hwdb.c revision 2001208c2ab631a69896d1f670c26846b70d1fb7
/***
This file is part of systemd.
Copyright 2012 Kay Sievers <kay.sievers@vrfy.org>
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <inttypes.h>
#include <ctype.h>
#include <stdlib.h>
#include <getopt.h>
#include "udev.h"
{}
};
struct udev_device *d;
const char *modalias;
char str[UTIL_NAME_SIZE];
struct udev_list_entry *entry;
if (!hwdb)
return EXIT_FAILURE;
for (;;) {
int option;
if (option == -1)
break;
switch (option) {
case 's':
break;
}
}
/* search the first parent device with a modalias */
for (d = dev; d; d = udev_device_get_parent(d)) {
const char *dsubsys = udev_device_get_subsystem(d);
/* look only at devices of a specific subsystem */
continue;
if (modalias)
break;
/* the usb_device does not have modalias, compose one */
const char *v, *p;
v = udev_device_get_sysattr_value(d, "idVendor");
if (!v)
continue;
p = udev_device_get_sysattr_value(d, "idProduct");
if (!p)
continue;
if (vn <= 0)
continue;
if (pn <= 0)
continue;
break;
}
}
if (!modalias)
return EXIT_FAILURE;
udev_list_entry_get_value(entry)) < 0)
return EXIT_FAILURE;
return EXIT_SUCCESS;
}
/* called at udev startup and reload */
{
if (hwdb)
return 0;
if (!hwdb)
return -ENOMEM;
return 0;
}
/* called on udev shutdown and reload request */
{
}
/* called every couple of seconds during event activity; 'true' if config has changed */
{
return udev_hwdb_validate(hwdb);
}
const struct udev_builtin udev_builtin_hwdb = {
.name = "hwdb",
.cmd = builtin_hwdb,
.help = "hardware database",
};