chiark / gitweb /
eb1c0fb6761b138f88149d5de5dc01a849473c85
[elogind.git] / udev-add.c
1 /*
2  * udev-add.c
3  *
4  * Userspace devfs
5  *
6  * Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
7  *
8  *
9  *      This program is free software; you can redistribute it and/or modify it
10  *      under the terms of the GNU General Public License as published by the
11  *      Free Software Foundation version 2 of the License.
12  * 
13  *      This program is distributed in the hope that it will be useful, but
14  *      WITHOUT ANY WARRANTY; without even the implied warranty of
15  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  *      General Public License for more details.
17  * 
18  *      You should have received a copy of the GNU General Public License along
19  *      with this program; if not, write to the Free Software Foundation, Inc.,
20  *      675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  */
23
24 #include <stdlib.h>
25 #include <string.h>
26 #include <stdio.h>
27 #include <fcntl.h>
28 #include <unistd.h>
29 #include <errno.h>
30 #include <sys/stat.h>
31
32 #include "udev.h"
33 #include "udev_version.h"
34 #include "namedev.h"
35 #include "udevdb.h"
36 #include "libsysfs/libsysfs.h"
37
38 /* 
39  * Right now the major/minor of a device is stored in a file called
40  * "dev" in sysfs.
41  * The number is stored as:
42  *      MM:mm
43  *              MM is the major
44  *              mm is the minor
45  *              The value is in decimal.
46  */
47 static int get_major_minor(struct sysfs_class_device *class_dev, int *major, int *minor)
48 {
49         int retval = -ENODEV;
50
51         char *dev;
52
53         dev = sysfs_get_value_from_attributes(class_dev->directory->attributes, "dev");
54         if (dev == NULL)
55                 goto exit;
56
57         dbg("dev = %s", dev);
58
59         if (sscanf(dev, "%u:%u", major, minor) != 2)
60                 goto exit;
61
62         dbg("found major = %d, minor = %d", *major, *minor);
63
64         retval = 0;
65 exit:
66         return retval;
67 }
68
69 /*
70  * we possibly want to add some symlinks here
71  * only numeric owner/group id's are supported
72  */
73 static int create_node(struct udevice *dev)
74 {
75         char filename[255];
76         int retval = 0;
77         dev_t res;
78
79         strncpy(filename, udev_root, sizeof(filename));
80         strncat(filename, dev->name, sizeof(filename));
81
82 #ifdef __KLIBC__
83         res = (dev->major << 8) | (dev->minor);
84 #else
85         res = makedev(dev->major, dev->minor);
86 #endif
87
88         switch (dev->type) {
89         case 'b':
90                 dev->mode |= S_IFBLK;
91                 break;
92         case 'c':
93         case 'u':
94                 dev->mode |= S_IFCHR;
95                 break;
96         case 'p':
97                 dev->mode |= S_IFIFO;
98                 break;
99         default:
100                 dbg("unknown node type %c\n", dev->type);
101                 return -EINVAL;
102         }
103
104         dbg("mknod(%s, %#o, %u, %u)", filename, dev->mode, dev->major, dev->minor);
105         retval = mknod(filename, dev->mode, res);
106         if (retval)
107                 dbg("mknod(%s, %#o, %u, %u) failed with error '%s'",
108                     filename, dev->mode, dev->major, dev->minor, strerror(errno));
109
110         uid_t uid = 0;
111         gid_t gid = 0;
112
113         if (*dev->owner) {
114                 char *endptr;
115                 unsigned long id = strtoul(dev->owner, &endptr, 10);
116                 if (*endptr == 0x00)
117                         uid = (uid_t) id;
118                 else
119                         dbg("only numeric owner id supported: %s", dev->owner);
120         }
121
122         if (*dev->group) {
123                 char *endptr;
124                 unsigned long id = strtoul(dev->group, &endptr, 10);
125                 if (*endptr == 0x00)
126                         gid = (gid_t) id;
127                 else
128                         dbg("only numeric group id supported: %s", dev->group);
129         }
130
131         if (uid || gid) {
132                 dbg("chown(%s, %u, %u)", filename, uid, gid);
133                 retval = chown(filename, uid, gid);
134                 if (retval)
135                         dbg("chown(%s, %u, %u) failed with error '%s'", filename,
136                             uid, gid, strerror(errno));
137         }
138
139         return retval;
140 }
141
142 static struct sysfs_class_device *get_class_dev(char *device_name)
143 {
144         char dev_path[SYSFS_PATH_MAX];
145         struct sysfs_class_device *class_dev = NULL;
146
147         strcpy(dev_path, sysfs_path);
148         strcat(dev_path, device_name);
149
150         dbg("looking at %s", dev_path);
151
152         /* open up the sysfs class device for this thing... */
153         class_dev = sysfs_open_class_device(dev_path);
154         if (class_dev == NULL) {
155                 dbg ("sysfs_open_class_device failed");
156                 goto exit;
157         }
158         dbg("class_dev->name = %s", class_dev->name);
159
160 exit:
161         return class_dev;
162 }
163
164 /* wait for the "dev" file to show up in the directory in sysfs.
165  * If it doesn't happen in about 10 seconds, give up.
166  */
167 #define SECONDS_TO_WAIT_FOR_DEV         10
168 static int sleep_for_dev(char *path)
169 {
170         char filename[SYSFS_PATH_MAX + 6];
171         int loop = SECONDS_TO_WAIT_FOR_DEV;
172         int retval;
173
174         strcpy(filename, sysfs_path);
175         strcat(filename, path);
176         strcat(filename, "/dev");
177
178         while (loop--) {
179                 struct stat buf;
180
181                 dbg("looking for %s", filename);
182                 retval = stat(filename, &buf);
183                 if (!retval)
184                         goto exit;
185
186                 /* sleep for a second or two to give the kernel a chance to
187                  * create the dev file */
188                 sleep(1);
189         }
190         retval = -ENODEV;
191 exit:
192         return retval;
193 }
194
195 int udev_add_device(char *path, char *subsystem)
196 {
197         struct sysfs_class_device *class_dev;
198         struct udevice dev;
199         int retval = -EINVAL;
200
201         /* for now, the block layer is the only place where block devices are */
202         if (strcmp(subsystem, "block") == 0)
203                 dev.type = 'b';
204         else
205                 dev.type = 'c';
206
207         retval = sleep_for_dev(path);
208         if (retval)
209                 goto exit;
210
211         class_dev = get_class_dev(path);
212         if (class_dev == NULL)
213                 goto exit;
214
215         retval = namedev_name_device(class_dev, &dev);
216         if (retval)
217                 return retval;
218
219         retval = get_major_minor(class_dev, &dev.major, &dev.minor);
220         if (retval) {
221                 dbg("get_major_minor failed");
222                 goto exit;
223         }
224
225 //      strcpy(dev.name, attr.name);
226 //      strcpy(dev.owner, attr.owner);
227 //      strcpy(dev.group, attr.group);
228 //      dev.mode = attr.mode;
229         
230         retval = udevdb_add_dev(path, &dev);
231         if (retval != 0)
232                 dbg("udevdb_add_dev failed, but we are going to try to create the node anyway. "
233                     "But remove might not work properly for this device.");
234
235         sysfs_close_class_device(class_dev);
236
237         dbg("name = %s", dev.name);
238         retval = create_node(&dev);
239
240 exit:
241         return retval;
242 }
243