1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
|
/*
* Embedded Linux library
* Copyright (C) 2011-2014 Intel Corporation
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define _GNU_SOURCE
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <alloca.h>
#include <fnmatch.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include "util.h"
#include "hwdb.h"
#include "private.h"
static const char trie_sig[8] = { 'K', 'S', 'L', 'P', 'H', 'H', 'R', 'H' };
struct trie_header {
uint8_t signature[8]; /* Signature */
uint64_t tool_version; /* Version of creator tool */
uint64_t file_size; /* Size of complete file */
uint64_t header_size; /* Size of header structure */
uint64_t node_size; /* Size of node structure */
uint64_t child_size; /* Size of child structure */
uint64_t entry_size; /* Size of entry structure */
uint64_t root_offset; /* Location of root node structure */
uint64_t nodes_size; /* Size of the nodes section */
uint64_t strings_size; /* Size of the strings section */
/* followed by nodes_size nodes data */
/* followed by strings_size strings data */
} __attribute__ ((packed));
struct trie_node {
uint64_t prefix_offset; /* Location of prefix string */
uint8_t child_count; /* Number of child structures */
uint8_t padding[7];
uint64_t entry_count; /* Number of entry structures */
/* followed by child_count child structures */
/* followed by entry_count entry structures */
} __attribute__ ((packed));
struct trie_child {
uint8_t c; /* Prefix character of child node */
uint8_t padding[7];
uint64_t child_offset; /* Location of child node structure */
} __attribute__ ((packed));
struct trie_entry {
uint64_t key_offset; /* Location of key string */
uint64_t value_offset; /* Location of value string */
} __attribute__ ((packed));
struct trie_entry_v2 {
uint64_t key_offset; /* Location of key string */
uint64_t value_offset; /* Location of value string */
uint64_t filename_offset;
uint64_t line_number;
} __attribute__ ((packed));
struct trie_entry_v3 {
uint64_t key_offset; /* Location of key string */
uint64_t value_offset; /* Location of value string */
uint64_t filename_offset;
uint32_t line_number;
uint16_t file_priority;
uint16_t padding;
} __attribute__ ((packed));
struct l_hwdb {
int ref_count;
int fd;
time_t mtime;
size_t size;
void *addr;
uint64_t node_size;
uint64_t child_size;
uint64_t entry_size;
uint64_t root_offset;
};
LIB_EXPORT struct l_hwdb *l_hwdb_new(const char *pathname)
{
struct trie_header *hdr;
struct l_hwdb *hwdb;
struct stat st;
void *addr;
size_t size;
int fd;
if (!pathname)
return NULL;
fd = open(pathname, O_RDONLY | O_CLOEXEC);
if (fd < 0)
return NULL;
if (fstat(fd, &st) < 0) {
close(fd);
return NULL;
}
size = st.st_size;
if (size < sizeof(struct trie_header)) {
close(fd);
return NULL;
}
addr = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
if (addr == MAP_FAILED) {
close(fd);
return NULL;
}
hdr = addr;
if (memcmp(hdr->signature, trie_sig, sizeof(trie_sig)))
goto failed;
if (L_LE64_TO_CPU(hdr->file_size) != size)
goto failed;
if (L_LE64_TO_CPU(hdr->header_size) != sizeof(struct trie_header))
goto failed;
if (L_LE64_TO_CPU(hdr->node_size) != sizeof(struct trie_node))
goto failed;
if (L_LE64_TO_CPU(hdr->child_size) != sizeof(struct trie_child))
goto failed;
if (L_LE64_TO_CPU(hdr->entry_size) < sizeof(struct trie_entry))
goto failed;
if (L_LE64_TO_CPU(hdr->header_size) + L_LE64_TO_CPU(hdr->nodes_size) +
L_LE64_TO_CPU(hdr->strings_size) != size)
goto failed;
hwdb = l_new(struct l_hwdb, 1);
hwdb->fd = fd;
hwdb->mtime = st.st_mtime;
hwdb->size = size;
hwdb->addr = addr;
hwdb->node_size = L_LE64_TO_CPU(hdr->node_size);
hwdb->child_size = L_LE64_TO_CPU(hdr->child_size);
hwdb->entry_size = L_LE64_TO_CPU(hdr->entry_size);
hwdb->root_offset = L_LE64_TO_CPU(hdr->root_offset);
return l_hwdb_ref(hwdb);
failed:
munmap(addr, st.st_size);
close(fd);
return NULL;
}
LIB_EXPORT struct l_hwdb *l_hwdb_new_default(void)
{
struct l_hwdb *db = NULL;
size_t i;
static const char * const paths[] = {
"/etc/systemd/hwdb/hwdb.bin",
"/etc/udev/hwdb.bin",
"/usr/lib/systemd/hwdb/hwdb.bin",
"/usr/lib/udev/hwdb.bin",
"/lib/udev/hwdb.bin",
};
for (i = 0; !db && i < L_ARRAY_SIZE(paths); i++)
db = l_hwdb_new(paths[i]);
return db;
}
LIB_EXPORT struct l_hwdb *l_hwdb_ref(struct l_hwdb *hwdb)
{
if (!hwdb)
return NULL;
__atomic_fetch_add(&hwdb->ref_count, 1, __ATOMIC_SEQ_CST);
return hwdb;
}
LIB_EXPORT void l_hwdb_unref(struct l_hwdb *hwdb)
{
if (!hwdb)
return;
if (__atomic_sub_fetch(&hwdb->ref_count, 1, __ATOMIC_SEQ_CST))
return;
munmap(hwdb->addr, hwdb->size);
close(hwdb->fd);
l_free(hwdb);
}
static void trie_fnmatch(struct l_hwdb *hwdb, uint64_t offset,
const char *prefix, const char *string,
struct l_hwdb_entry **entries)
{
const void *addr = hwdb->addr;
const struct trie_node *node = addr + offset;
const void *addr_ptr = addr + offset + hwdb->node_size;
const char *prefix_str = addr + L_LE64_TO_CPU(node->prefix_offset);
uint8_t child_count = node->child_count;
uint64_t entry_count = L_LE64_TO_CPU(node->entry_count);
uint64_t i;
size_t scratch_len;
char *scratch_buf;
scratch_len = strlen(prefix) + strlen(prefix_str);
scratch_buf = alloca(scratch_len + 2);
sprintf(scratch_buf, "%s%s", prefix, prefix_str);
scratch_buf[scratch_len + 1] = '\0';
/*
* Only incur the cost of this fnmatch() if there are children
* to visit. In practice, nodes have either entries or children
* so fnmatch() will only be called once per node.
*/
if (child_count) {
scratch_buf[scratch_len] = '*';
if (fnmatch(scratch_buf, string, 0) == FNM_NOMATCH)
child_count = 0;
}
for (i = 0; i < child_count; i++) {
const struct trie_child *child = addr_ptr;
scratch_buf[scratch_len] = child->c;
trie_fnmatch(hwdb, L_LE64_TO_CPU(child->child_offset),
scratch_buf, string, entries);
addr_ptr += hwdb->child_size;
}
if (!entry_count)
return;
scratch_buf[scratch_len] = '\0';
if (fnmatch(scratch_buf, string, 0))
return;
for (i = 0; i < entry_count; i++) {
const struct trie_entry *entry = addr_ptr;
const char *key_str = addr + L_LE64_TO_CPU(entry->key_offset);
const char *val_str = addr + L_LE64_TO_CPU(entry->value_offset);
struct l_hwdb_entry *result;
if (key_str[0] == ' ') {
result = l_new(struct l_hwdb_entry, 1);
result->key = key_str + 1;
result->value = val_str;
result->next = (*entries);
*entries = result;
}
addr_ptr += hwdb->entry_size;
}
}
LIB_EXPORT struct l_hwdb_entry *l_hwdb_lookup(struct l_hwdb *hwdb,
const char *format, ...)
{
struct l_hwdb_entry *entries = NULL;
va_list args;
va_start(args, format);
entries = l_hwdb_lookup_valist(hwdb, format, args);
va_end(args);
return entries;
}
LIB_EXPORT struct l_hwdb_entry *l_hwdb_lookup_valist(struct l_hwdb *hwdb,
const char *format, va_list args)
{
struct l_hwdb_entry *entries = NULL;
char *modalias;
int len;
if (!hwdb || !format)
return NULL;
len = vasprintf(&modalias, format, args);
if (len < 0)
return NULL;
trie_fnmatch(hwdb, hwdb->root_offset, "", modalias, &entries);
free(modalias);
return entries;
}
LIB_EXPORT void l_hwdb_lookup_free(struct l_hwdb_entry *entries)
{
while (entries) {
struct l_hwdb_entry *entry = entries;
entries = entries->next;
l_free(entry);
}
}
static void foreach_node(struct l_hwdb *hwdb,
uint64_t offset, const char *prefix,
l_hwdb_foreach_func_t func, void *user_data)
{
const void *addr = hwdb->addr;
const struct trie_node *node = addr + offset;
const void *addr_ptr = addr + offset + hwdb->node_size;
const char *prefix_str = addr + L_LE64_TO_CPU(node->prefix_offset);
uint8_t child_count = node->child_count;
uint64_t entry_count = L_LE64_TO_CPU(node->entry_count);
uint64_t i;
size_t scratch_len;
char *scratch_buf;
struct l_hwdb_entry *entries = NULL;
scratch_len = strlen(prefix) + strlen(prefix_str);
scratch_buf = alloca(scratch_len + 2);
sprintf(scratch_buf, "%s%s", prefix, prefix_str);
scratch_buf[scratch_len + 1] = '\0';
for (i = 0; i < child_count; i++) {
const struct trie_child *child = addr_ptr;
scratch_buf[scratch_len] = child->c;
foreach_node(hwdb, L_LE64_TO_CPU(child->child_offset),
scratch_buf, func, user_data);
addr_ptr += hwdb->child_size;
}
if (!entry_count)
return;
scratch_buf[scratch_len] = '\0';
for (i = 0; i < entry_count; i++) {
const struct trie_entry *entry = addr_ptr;
const char *key_str = addr + L_LE64_TO_CPU(entry->key_offset);
const char *val_str = addr + L_LE64_TO_CPU(entry->value_offset);
struct l_hwdb_entry *result;
if (key_str[0] == ' ') {
result = l_new(struct l_hwdb_entry, 1);
result->key = key_str + 1;
result->value = val_str;
result->next = entries;
entries = result;
}
addr_ptr += hwdb->entry_size;
}
func(scratch_buf, entries, user_data);
l_hwdb_lookup_free(entries);
}
LIB_EXPORT bool l_hwdb_foreach(struct l_hwdb *hwdb, l_hwdb_foreach_func_t func,
void *user_data)
{
if (!hwdb || !func)
return false;
foreach_node(hwdb, hwdb->root_offset, "", func, user_data);
return true;
}
|