chiark / gitweb /
udevadm: info - fix broken --device-id-of-file=
[elogind.git] / udev / udev_device.c
1 /*
2  * Copyright (C) 2004-2006 Kay Sievers <kay.sievers@vrfy.org>
3  *
4  *      This program is free software; you can redistribute it and/or modify it
5  *      under the terms of the GNU General Public License as published by the
6  *      Free Software Foundation version 2 of the License.
7  * 
8  *      This program is distributed in the hope that it will be useful, but
9  *      WITHOUT ANY WARRANTY; without even the implied warranty of
10  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  *      General Public License for more details.
12  * 
13  *      You should have received a copy of the GNU General Public License along
14  *      with this program; if not, write to the Free Software Foundation, Inc.,
15  *      51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16  *
17  */
18
19
20 #include <stdlib.h>
21 #include <stdio.h>
22 #include <stddef.h>
23 #include <unistd.h>
24 #include <fcntl.h>
25 #include <errno.h>
26 #include <ctype.h>
27 #include <string.h>
28 #include <sys/ioctl.h>
29 #include <sys/socket.h>
30 #include <net/if.h>
31 #include <linux/sockios.h>
32
33 #include "udev.h"
34 #include "udev_rules.h"
35
36
37 struct udevice *udev_device_init(void)
38 {
39         struct udevice *udev;
40
41         udev = malloc(sizeof(struct udevice));
42         if (udev == NULL)
43                 return NULL;
44         memset(udev, 0x00, sizeof(struct udevice));
45
46         INIT_LIST_HEAD(&udev->symlink_list);
47         INIT_LIST_HEAD(&udev->run_list);
48         INIT_LIST_HEAD(&udev->env_list);
49
50         /* set sysfs device to local storage, can be overridden if needed */
51         udev->dev = &udev->dev_local;
52
53         /* default node permissions */
54         udev->mode = 0660;
55         strcpy(udev->owner, "root");
56         strcpy(udev->group, "root");
57
58         udev->event_timeout = -1;
59         return udev;
60 }
61
62 void udev_device_cleanup(struct udevice *udev)
63 {
64         if (udev == NULL)
65                 return;
66         name_list_cleanup(&udev->symlink_list);
67         name_list_cleanup(&udev->run_list);
68         name_list_cleanup(&udev->env_list);
69         free(udev);
70 }
71
72 dev_t udev_device_get_devt(struct udevice *udev)
73 {
74         const char *attr;
75         unsigned int maj, min;
76
77         /* read it from sysfs  */
78         attr = sysfs_attr_get_value(udev->dev->devpath, "dev");
79         if (attr != NULL) {
80                 if (sscanf(attr, "%u:%u", &maj, &min) == 2)
81                         return makedev(maj, min);
82         }
83         return makedev(0, 0);
84 }