]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libudev/libudev-hwdb.c
fs-util: no need for fchmod_and_chown() to access /proc/self/fd directly
[thirdparty/systemd.git] / src / libudev / libudev-hwdb.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
2001208c 2
5ea78a39
YW
3#include <errno.h>
4
8b516fde 5#include "sd-hwdb.h"
07630cea 6
b5efdb8a 7#include "alloc-util.h"
8b516fde 8#include "hwdb-util.h"
5ea78a39 9#include "libudev-list-internal.h"
2001208c
KS
10
11/**
12 * SECTION:libudev-hwdb
13 * @short_description: retrieve properties from the hardware database
14 *
f2d433e1 15 * Libudev hardware database interface.
2001208c
KS
16 */
17
18/**
19 * udev_hwdb:
20 *
21 * Opaque object representing the hardware database.
22 */
23struct udev_hwdb {
3c6ac219 24 unsigned n_ref;
8b516fde 25 sd_hwdb *hwdb;
dcf557f7 26 struct udev_list *properties_list;
2001208c
KS
27};
28
2001208c
KS
29/**
30 * udev_hwdb_new:
b485aa58 31 * @udev: udev library context (unused)
2001208c
KS
32 *
33 * Create a hardware database context to query properties for devices.
34 *
35 * Returns: a hwdb context.
36 **/
37_public_ struct udev_hwdb *udev_hwdb_new(struct udev *udev) {
dcf557f7 38 _cleanup_(udev_list_freep) struct udev_list *list = NULL;
4afd3348 39 _cleanup_(sd_hwdb_unrefp) sd_hwdb *hwdb_internal = NULL;
2001208c 40 struct udev_hwdb *hwdb;
8b516fde 41 int r;
2001208c 42
8b516fde 43 r = sd_hwdb_new(&hwdb_internal);
fd05c424
YW
44 if (r < 0)
45 return_with_errno(NULL, r);
2001208c 46
dcf557f7
YW
47 list = udev_list_new(true);
48 if (!list)
49 return_with_errno(NULL, ENOMEM);
50
68b80b85 51 hwdb = new(struct udev_hwdb, 1);
fd05c424
YW
52 if (!hwdb)
53 return_with_errno(NULL, ENOMEM);
2001208c 54
68b80b85
YW
55 *hwdb = (struct udev_hwdb) {
56 .n_ref = 1,
57 .hwdb = TAKE_PTR(hwdb_internal),
dcf557f7 58 .properties_list = TAKE_PTR(list),
68b80b85 59 };
2001208c 60
2001208c
KS
61 return hwdb;
62}
63
3c6ac219
YW
64static struct udev_hwdb *udev_hwdb_free(struct udev_hwdb *hwdb) {
65 assert(hwdb);
66
67 sd_hwdb_unref(hwdb->hwdb);
dcf557f7 68 udev_list_free(hwdb->properties_list);
3c6ac219
YW
69 return mfree(hwdb);
70}
71
2001208c
KS
72/**
73 * udev_hwdb_ref:
74 * @hwdb: context
75 *
76 * Take a reference of a hwdb context.
77 *
78 * Returns: the passed enumeration context
79 **/
2001208c
KS
80
81/**
82 * udev_hwdb_unref:
83 * @hwdb: context
84 *
85 * Drop a reference of a hwdb context. If the refcount reaches zero,
86 * all resources of the hwdb context will be released.
87 *
725d7e6c 88 * Returns: #NULL
2001208c 89 **/
3c6ac219 90DEFINE_PUBLIC_TRIVIAL_REF_UNREF_FUNC(struct udev_hwdb, udev_hwdb, udev_hwdb_free);
2001208c 91
2001208c
KS
92/**
93 * udev_hwdb_get_properties_list_entry:
94 * @hwdb: context
95 * @modalias: modalias string
96 * @flags: (unused)
97 *
98 * Lookup a matching device in the hardware database. The lookup key is a
99 * modalias string, whose formats are defined for the Linux kernel modules.
100 * Examples are: pci:v00008086d00001C2D*, usb:v04F2pB221*. The first entry
101 * of a list of retrieved properties is returned.
102 *
103 * Returns: a udev_list_entry.
104 */
14cb109d 105_public_ struct udev_list_entry *udev_hwdb_get_properties_list_entry(struct udev_hwdb *hwdb, const char *modalias, unsigned flags) {
8b516fde 106 const char *key, *value;
309f631d 107 struct udev_list_entry *e;
2001208c 108
2b19953a
YW
109 assert_return_errno(hwdb, NULL, EINVAL);
110 assert_return_errno(modalias, NULL, EINVAL);
2001208c 111
dcf557f7 112 udev_list_cleanup(hwdb->properties_list);
8b516fde 113
fd05c424 114 SD_HWDB_FOREACH_PROPERTY(hwdb->hwdb, modalias, key, value)
dcf557f7 115 if (!udev_list_entry_add(hwdb->properties_list, key, value))
fd05c424 116 return_with_errno(NULL, ENOMEM);
8b516fde 117
dcf557f7 118 e = udev_list_get_entry(hwdb->properties_list);
309f631d 119 if (!e)
fd05c424 120 return_with_errno(NULL, ENODATA);
309f631d
LP
121
122 return e;
2001208c 123}