Systemd/udev/lib/libudev-enumerate.c

180 lines
4.9 KiB
C
Raw Normal View History

2008-08-27 22:02:41 +02:00
/*
* libudev - interface to udev device information
*
* Copyright (C) 2008 Kay Sievers <kay.sievers@vrfy.org>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <dirent.h>
#include <sys/stat.h>
#include "libudev.h"
#include "libudev-private.h"
static int devices_scan_subsystem(struct udev *udev,
const char *basedir, const char *subsystem, const char *subdir,
struct list_head *device_list)
{
char path[UTIL_PATH_SIZE];
2008-08-27 22:02:41 +02:00
DIR *dir;
struct dirent *dent;
util_strlcpy(path, udev_get_sys_path(udev), sizeof(path));
util_strlcat(path, basedir, sizeof(path));
util_strlcat(path, "/", sizeof(path));
util_strlcat(path, subsystem, sizeof(path));
2008-08-27 22:02:41 +02:00
if (subdir != NULL)
util_strlcat(path, subdir, sizeof(path));
2008-08-27 22:02:41 +02:00
dir = opendir(path);
if (dir == NULL)
return -1;
for (dent = readdir(dir); dent != NULL; dent = readdir(dir)) {
char syspath[UTIL_PATH_SIZE];
2008-08-27 22:02:41 +02:00
if (dent->d_name[0] == '.')
continue;
util_strlcpy(syspath, path, sizeof(syspath));
util_strlcat(syspath, "/", sizeof(syspath));
util_strlcat(syspath, dent->d_name, sizeof(syspath));
util_resolve_sys_link(udev, syspath, sizeof(syspath));
util_name_list_add(udev, device_list, syspath, NULL, 1);
2008-08-27 22:02:41 +02:00
}
closedir(dir);
return 0;
}
static int devices_scan_subsystems(struct udev *udev,
const char *basedir, const char *subsystem, const char *subdir,
struct list_head *device_list)
{
char path[UTIL_PATH_SIZE];
2008-08-27 22:02:41 +02:00
DIR *dir;
struct dirent *dent;
if (subsystem != NULL)
return devices_scan_subsystem(udev, basedir, subsystem, subdir, device_list);
util_strlcpy(path, udev_get_sys_path(udev), sizeof(path));
util_strlcat(path, basedir, sizeof(path));
2008-08-27 22:02:41 +02:00
dir = opendir(path);
if (dir == NULL)
return -1;
for (dent = readdir(dir); dent != NULL; dent = readdir(dir)) {
if (dent->d_name[0] == '.')
continue;
devices_scan_subsystem(udev, basedir, dent->d_name, subdir, device_list);
}
closedir(dir);
return 0;
}
static int devices_delay(struct udev *udev, const char *syspath)
2008-08-27 22:02:41 +02:00
{
static const char *delay_device_list[] = {
"/block/md",
"/block/dm-",
NULL
};
size_t len;
2008-08-27 22:02:41 +02:00
int i;
len = strlen(udev_get_sys_path(udev));
2008-08-27 22:02:41 +02:00
for (i = 0; delay_device_list[i] != NULL; i++) {
if (strstr(&syspath[len], delay_device_list[i]) != NULL) {
info(udev, "delaying: %s\n", syspath);
2008-08-27 22:02:41 +02:00
return 1;
}
}
return 0;
}
/**
2008-09-09 22:10:33 +02:00
* udev_enumerate_devices:
2008-09-18 08:32:43 +02:00
* @udev: udev library context
* @subsystem: the subsystem to enumerate
* @cb: function to be called for every device found
2008-08-27 22:02:41 +02:00
* @data: data to be passed to the function
*
2008-09-18 08:32:43 +02:00
* Returns: the number of devices passed to the caller, or a negative value on error
2008-08-27 22:02:41 +02:00
**/
2008-09-09 22:10:33 +02:00
int udev_enumerate_devices(struct udev *udev, const char *subsystem,
2008-09-18 08:32:43 +02:00
int (*cb)(struct udev_device *udev_device, void *data),
2008-08-27 22:02:41 +02:00
void *data)
{
char base[UTIL_PATH_SIZE];
2008-08-27 22:02:41 +02:00
struct stat statbuf;
struct list_head device_list;
struct util_name_entry *loop_device;
struct util_name_entry *tmp_device;
2008-08-27 22:02:41 +02:00
int cb_rc = 0;
int count = 0;
INIT_LIST_HEAD(&device_list);
/* if we have /sys/subsystem/, forget all the old stuff */
util_strlcpy(base, udev_get_sys_path(udev), sizeof(base));
util_strlcat(base, "/subsystem", sizeof(base));
2008-08-27 22:02:41 +02:00
if (stat(base, &statbuf) == 0) {
devices_scan_subsystems(udev, "/subsystem", subsystem, "/devices", &device_list);
} else {
devices_scan_subsystems(udev, "/bus", subsystem, "/devices", &device_list);
devices_scan_subsystems(udev, "/class", subsystem, NULL, &device_list);
}
list_for_each_entry_safe(loop_device, tmp_device, &device_list, node) {
if (devices_delay(udev, loop_device->name))
continue;
2008-09-18 08:32:43 +02:00
if (cb_rc == 0) {
struct udev_device *device;
device = udev_device_new_from_syspath(udev, loop_device->name);
if (device != NULL) {
cb_rc = cb(device, data);
2008-08-27 22:02:41 +02:00
count++;
2008-09-18 08:32:43 +02:00
udev_device_unref(device);
}
}
2008-08-27 22:02:41 +02:00
list_del(&loop_device->node);
free(loop_device->name);
2008-08-27 22:02:41 +02:00
free(loop_device);
}
/* handle remaining delayed devices */
list_for_each_entry_safe(loop_device, tmp_device, &device_list, node) {
2008-09-18 08:32:43 +02:00
if (cb_rc == 0) {
struct udev_device *device;
device = udev_device_new_from_syspath(udev, loop_device->name);
if (device != NULL) {
cb_rc = cb(device, data);
2008-08-27 22:02:41 +02:00
count++;
2008-09-18 08:32:43 +02:00
udev_device_unref(device);
}
}
2008-08-27 22:02:41 +02:00
list_del(&loop_device->node);
free(loop_device->name);
2008-08-27 22:02:41 +02:00
free(loop_device);
}
return count;
}