chiark / gitweb /
libudev: udev_device - add more properties
[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 static ssize_t get_sys_link(struct udev *udev, const char *slink, 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, "/", sizeof(path));
44         strlcat(path, slink, sizeof(path));
45         len = readlink(path, path, sizeof(path));
46         if (len < 0 || len >= (ssize_t) sizeof(path))
47                 return -1;
48         path[len] = '\0';
49         pos = strrchr(path, '/');
50         if (pos == NULL)
51                 return -1;
52         pos = &pos[1];
53         return strlcpy(subsystem, pos, size);
54 }
55
56 ssize_t util_get_sys_subsystem(struct udev *udev, const char *devpath, char *subsystem, size_t size)
57 {
58         return get_sys_link(udev, "subsystem", devpath, subsystem, size);
59 }
60
61 ssize_t util_get_sys_driver(struct udev *udev, const char *devpath, char *driver, size_t size)
62 {
63         return get_sys_link(udev, "driver", devpath, driver, size);
64 }
65