]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libudev/libudev-hwdb.c
Merge pull request #2049 from evverx/journal-test-dont-run-on-incomplete-setup
[thirdparty/systemd.git] / src / libudev / libudev-hwdb.c
CommitLineData
2001208c
KS
1/***
2 This file is part of systemd.
3
8b516fde 4 Copyright Tom Gundersen <teg@jklm.no>
2001208c
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***/
19
8b516fde 20#include "sd-hwdb.h"
07630cea 21
b5efdb8a 22#include "alloc-util.h"
8b516fde 23#include "hwdb-util.h"
07630cea 24#include "libudev-private.h"
2001208c
KS
25
26/**
27 * SECTION:libudev-hwdb
28 * @short_description: retrieve properties from the hardware database
29 *
f2d433e1 30 * Libudev hardware database interface.
2001208c
KS
31 */
32
33/**
34 * udev_hwdb:
35 *
36 * Opaque object representing the hardware database.
37 */
38struct udev_hwdb {
39 struct udev *udev;
40 int refcount;
41
8b516fde 42 sd_hwdb *hwdb;
2001208c
KS
43
44 struct udev_list properties_list;
45};
46
2001208c
KS
47/**
48 * udev_hwdb_new:
49 * @udev: udev library context
50 *
51 * Create a hardware database context to query properties for devices.
52 *
53 * Returns: a hwdb context.
54 **/
55_public_ struct udev_hwdb *udev_hwdb_new(struct udev *udev) {
8b516fde 56 _cleanup_hwdb_unref_ sd_hwdb *hwdb_internal = NULL;
2001208c 57 struct udev_hwdb *hwdb;
8b516fde 58 int r;
2001208c 59
8b516fde 60 assert_return(udev, NULL);
33488f19 61
8b516fde
TG
62 r = sd_hwdb_new(&hwdb_internal);
63 if (r < 0)
2001208c 64 return NULL;
2001208c 65
8b516fde
TG
66 hwdb = new0(struct udev_hwdb, 1);
67 if (!hwdb)
2001208c 68 return NULL;
2001208c 69
8b516fde
TG
70 hwdb->refcount = 1;
71 hwdb->hwdb = hwdb_internal;
72 hwdb_internal = NULL;
2001208c 73
8b516fde 74 udev_list_init(udev, &hwdb->properties_list, true);
2001208c 75
2001208c
KS
76 return hwdb;
77}
78
79/**
80 * udev_hwdb_ref:
81 * @hwdb: context
82 *
83 * Take a reference of a hwdb context.
84 *
85 * Returns: the passed enumeration context
86 **/
87_public_ struct udev_hwdb *udev_hwdb_ref(struct udev_hwdb *hwdb) {
88 if (!hwdb)
89 return NULL;
90 hwdb->refcount++;
91 return hwdb;
92}
93
94/**
95 * udev_hwdb_unref:
96 * @hwdb: context
97 *
98 * Drop a reference of a hwdb context. If the refcount reaches zero,
99 * all resources of the hwdb context will be released.
100 *
725d7e6c 101 * Returns: #NULL
2001208c
KS
102 **/
103_public_ struct udev_hwdb *udev_hwdb_unref(struct udev_hwdb *hwdb) {
104 if (!hwdb)
105 return NULL;
106 hwdb->refcount--;
107 if (hwdb->refcount > 0)
725d7e6c 108 return NULL;
8b516fde 109 sd_hwdb_unref(hwdb->hwdb);
2001208c
KS
110 udev_list_cleanup(&hwdb->properties_list);
111 free(hwdb);
112 return NULL;
113}
114
2001208c
KS
115/**
116 * udev_hwdb_get_properties_list_entry:
117 * @hwdb: context
118 * @modalias: modalias string
119 * @flags: (unused)
120 *
121 * Lookup a matching device in the hardware database. The lookup key is a
122 * modalias string, whose formats are defined for the Linux kernel modules.
123 * Examples are: pci:v00008086d00001C2D*, usb:v04F2pB221*. The first entry
124 * of a list of retrieved properties is returned.
125 *
126 * Returns: a udev_list_entry.
127 */
128_public_ struct udev_list_entry *udev_hwdb_get_properties_list_entry(struct udev_hwdb *hwdb, const char *modalias, unsigned int flags) {
8b516fde 129 const char *key, *value;
2001208c 130
8b516fde 131 if (!hwdb || !modalias) {
2001208c
KS
132 errno = EINVAL;
133 return NULL;
134 }
135
9485d98d 136 udev_list_cleanup(&hwdb->properties_list);
8b516fde 137
0b931571 138 SD_HWDB_FOREACH_PROPERTY(hwdb->hwdb, modalias, key, value) {
8b516fde
TG
139 if (udev_list_entry_add(&hwdb->properties_list, key, value) == NULL) {
140 errno = ENOMEM;
141 return NULL;
142 }
2001208c 143 }
8b516fde 144
2001208c
KS
145 return udev_list_get_entry(&hwdb->properties_list);
146}