chiark / gitweb /
libudev: monitor- add netlink uevent support
[elogind.git] / udev / lib / libudev-utils.c
1 /*
2  * libudev - interface to udev device information
3  *
4  * Copyright (C) 2008 Kay Sievers <kay.sievers@vrfy.org>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include "config.h"
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <stddef.h>
25 #include <unistd.h>
26 #include <errno.h>
27 #include <string.h>
28 #include <dirent.h>
29 #include <sys/stat.h>
30
31 #include "libudev.h"
32 #include "libudev-private.h"
33 #include "../udev.h"
34
35 ssize_t util_get_sys_subsystem(struct udev *udev, const char *devpath, char *subsystem, size_t size)
36 {
37         char path[PATH_SIZE];
38         ssize_t len;
39         const char *pos;
40
41         strlcpy(path, udev_get_sys_path(udev), sizeof(path));
42         strlcat(path, devpath, sizeof(path));
43         strlcat(path, "/subsystem", sizeof(path));
44         len = readlink(path, path, sizeof(path));
45         if (len < 0 || len >= (ssize_t) sizeof(path))
46                 return -1;
47         path[len] = '\0';
48         pos = strrchr(path, '/');
49         if (pos == NULL)
50                 return -1;
51         pos = &pos[1];
52         return strlcpy(subsystem, pos, size);
53 }