chiark / gitweb /
[PATCH] don't sleep if 'dev' file is already present on device add.
[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
31 #include "udev.h"
32 #include "udev_version.h"
33 #include "namedev.h"
34 #include "udevdb.h"
35 #include "libsysfs/libsysfs.h"
36
37 static char sysfs_path[SYSFS_PATH_MAX];
38
39 /* 
40  * Right now the major/minor of a device is stored in a file called
41  * "dev" in sysfs.
42  * The number is stored as:
43  *      MM:mm
44  *              MM is the major
45  *              mm is the minor
46  *              The value is in decimal.
47  */
48 static int get_major_minor(struct sysfs_class_device *class_dev, int *major, int *minor)
49 {
50         int retval = -ENODEV;
51
52         char *dev;
53
54         dev = sysfs_get_value_from_attributes(class_dev->directory->attributes, "dev");
55         if (dev == NULL)
56                 goto exit;
57
58         dbg("dev = %s", dev);
59
60         if (sscanf(dev, "%u:%u", major, minor) != 2)
61                 goto exit;
62
63         dbg("found major = %d, minor = %d", *major, *minor);
64
65         retval = 0;
66 exit:
67         return retval;
68 }
69
70 /*
71  * We also want to add some permissions here, and possibly some symlinks
72  */
73 static int create_node(char *name, char type, int major, int minor, mode_t mode)
74 {
75         char filename[255];
76         int retval = 0;
77         strncpy(filename, UDEV_ROOT, sizeof(filename));
78         strncat(filename, name, sizeof(filename));
79         switch (type) {
80         case 'b':
81                 mode |= S_IFBLK;
82                 break;
83         case 'c':
84         case 'u':
85                 mode |= S_IFCHR;
86                 break;
87         case 'p':
88                 mode |= S_IFIFO;
89                 break;
90         default:
91                 dbg("unknown node type %c\n", type);
92                 return -EINVAL;
93         }
94
95         dbg("mknod(%s, %#o, %u, %u)", filename, mode, major, minor);
96         retval = mknod(filename, mode, makedev(major, minor));
97         if (retval)
98                 dbg("mknod(%s, %#o, %u, %u) failed with error '%s'",
99                     filename, mode, major, minor, strerror(errno));
100         return retval;
101 }
102
103 static struct sysfs_class_device *get_class_dev(char *device_name)
104 {
105         char dev_path[SYSFS_PATH_MAX];
106         struct sysfs_class_device *class_dev = NULL;
107
108         strcpy(dev_path, sysfs_path);
109         strcat(dev_path, device_name);
110
111         dbg("looking at %s", dev_path);
112
113         /* open up the sysfs class device for this thing... */
114         class_dev = sysfs_open_class_device(dev_path);
115         if (class_dev == NULL) {
116                 dbg ("sysfs_open_class_device failed");
117                 goto exit;
118         }
119         dbg("class_dev->name = %s", class_dev->name);
120
121 exit:
122         return class_dev;
123 }
124
125 /* wait for the "dev" file to show up in the directory in sysfs.
126  * If it doesn't happen in about 10 seconds, give up.
127  */
128 #define SECONDS_TO_WAIT_FOR_DEV         10
129 int sleep_for_dev(char *device)
130 {
131         char filename[SYSFS_PATH_MAX + 6];
132         struct stat buf;
133         int loop = 0;
134         int retval = -ENODEV;
135
136         strcpy(filename, sysfs_path);
137         strcat(filename, device);
138         strcat(filename, "/dev");
139
140         while (loop < SECONDS_TO_WAIT_FOR_DEV) {
141                 dbg("looking for %s", filename);
142                 retval = stat(filename, &buf);
143                 if (retval == 0) {
144                         retval = 0;
145                         goto exit;
146                 }
147
148                 /* sleep for a second or two to give the kernel a chance to
149                  * create the dev file */
150                 sleep(1);
151         }
152         retval = -ENODEV;
153 exit:
154         return retval;
155 }
156
157 int udev_add_device(char *device, char *subsystem)
158 {
159         struct sysfs_class_device *class_dev;
160         struct device_attr attr;
161         int major;
162         int minor;
163         char type;
164         int retval = -EINVAL;
165
166         /* for now, the block layer is the only place where block devices are */
167         if (strcmp(subsystem, "block") == 0)
168                 type = 'b';
169         else
170                 type = 'c';
171
172         retval = sysfs_get_mnt_path(sysfs_path, SYSFS_PATH_MAX);
173         dbg("sysfs_path = %s", sysfs_path);
174         if (retval) {
175                 dbg("sysfs_get_mnt_path failed");
176                 goto exit;
177         }
178
179         retval = sleep_for_dev(device);
180         if (retval)
181                 goto exit;
182
183         class_dev = get_class_dev(device);
184         if (class_dev == NULL)
185                 goto exit;
186
187         retval = namedev_name_device(class_dev, &attr);
188         if (retval)
189                 return retval;
190
191         retval = get_major_minor(class_dev, &major, &minor);
192         if (retval) {
193                 dbg("get_major_minor failed");
194                 goto exit;
195         }
196
197         retval = udevdb_add_device(device, class_dev, attr.name, type, major, minor, attr.mode);
198
199         if (retval != 0)
200                 dbg("udevdb_add_device failed, but we are going to try to create the node anyway. "
201                     "But remove might not work properly for this device.");
202
203         sysfs_close_class_device(class_dev);
204
205         return create_node(attr.name, type, major, minor, attr.mode);
206
207 exit:
208         return retval;
209 }
210