chiark / gitweb /
[PATCH] udev - fix debug info for multiple rule file config
[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 #include <sys/types.h>
32 #include <grp.h>
33 #ifndef __KLIBC__
34 #include <pwd.h>
35 #endif
36
37 #include "libsysfs/sysfs/libsysfs.h"
38 #include "udev.h"
39 #include "udev_version.h"
40 #include "udev_dbus.h"
41 #include "udev_selinux.h"
42 #include "logging.h"
43 #include "namedev.h"
44 #include "udevdb.h"
45 #include "klibc_fixups.h"
46
47 /* 
48  * Right now the major/minor of a device is stored in a file called
49  * "dev" in sysfs.
50  * The number is stored as:
51  *      MM:mm
52  *              MM is the major
53  *              mm is the minor
54  *              The value is in decimal.
55  */
56 static int get_major_minor(struct sysfs_class_device *class_dev, struct udevice *udev)
57 {
58         int retval = -ENODEV;
59         struct sysfs_attribute *attr = NULL;
60
61         attr = sysfs_get_classdev_attr(class_dev, "dev");
62         if (attr == NULL)
63                 goto exit;
64         dbg("dev='%s'", attr->value);
65
66         if (sscanf(attr->value, "%u:%u", &udev->major, &udev->minor) != 2)
67                 goto exit;
68         dbg("found major=%d, minor=%d", udev->major, udev->minor);
69
70         retval = 0;
71 exit:
72         return retval;
73 }
74
75 static int create_path(char *file)
76 {
77         char p[NAME_SIZE];
78         char *pos;
79         int retval;
80         struct stat stats;
81         
82         strfieldcpy(p, file);
83         pos = strchr(p+1, '/');
84         while (1) {
85                 pos = strchr(pos+1, '/');
86                 if (pos == NULL)
87                         break;
88                 *pos = 0x00;
89                 if (stat(p, &stats)) {
90                         retval = mkdir(p, 0755);
91                         if (retval != 0) {
92                                 dbg("mkdir(%s) failed with error '%s'",
93                                     p, strerror(errno));
94                                 return retval;
95                         }
96                         dbg("created '%s'", p);
97                 }
98                 *pos = '/';
99         }
100         return 0;
101 }
102
103 static int make_node(char *filename, int major, int minor, unsigned int mode, uid_t uid, gid_t gid)
104 {
105         int retval;
106
107         retval = mknod(filename, mode, makedev(major, minor));
108         if (retval != 0) {
109                 dbg("mknod(%s, %#o, %u, %u) failed with error '%s'",
110                     filename, mode, major, minor, strerror(errno));
111                 return retval;
112         }
113
114         dbg("chmod(%s, %#o)", filename, mode);
115         retval = chmod(filename, mode);
116         if (retval != 0) {
117                 dbg("chmod(%s, %#o) failed with error '%s'",
118                     filename, mode, strerror(errno));
119                 return retval;
120         }
121
122         if (uid != 0 || gid != 0) {
123                 dbg("chown(%s, %u, %u)", filename, uid, gid);
124                 retval = chown(filename, uid, gid);
125                 if (retval != 0) {
126                         dbg("chown(%s, %u, %u) failed with error '%s'",
127                             filename, uid, gid, strerror(errno));
128                         return retval;
129                 }
130         }
131
132         return 0;
133 }
134
135 static int create_node(struct udevice *dev, int fake)
136 {
137         struct stat stats;
138         char filename[255];
139         char linktarget[255];
140         char partitionname[255];
141         char *linkname;
142         char *symlinks;
143         int retval = 0;
144         uid_t uid = 0;
145         gid_t gid = 0;
146         int i;
147         int tail;
148
149         strfieldcpy(filename, udev_root);
150         strfieldcat(filename, dev->name);
151
152         switch (dev->type) {
153         case 'b':
154                 dev->mode |= S_IFBLK;
155                 break;
156         case 'c':
157         case 'u':
158                 dev->mode |= S_IFCHR;
159                 break;
160         case 'p':
161                 dev->mode |= S_IFIFO;
162                 break;
163         default:
164                 dbg("unknown node type %c\n", dev->type);
165                 return -EINVAL;
166         }
167
168         /* create parent directories if needed */
169         if (strrchr(dev->name, '/'))
170                 create_path(filename);
171
172         if (dev->owner[0] != '\0') {
173                 char *endptr;
174                 unsigned long id = strtoul(dev->owner, &endptr, 10);
175                 if (endptr[0] == '\0')
176                         uid = (uid_t) id;
177                 else {
178                         struct passwd *pw = getpwnam(dev->owner);
179                         if (pw == NULL)
180                                 dbg("specified user unknown '%s'", dev->owner);
181                         else
182                                 uid = pw->pw_uid;
183                 }
184         }
185
186         if (dev->group[0] != '\0') {
187                 char *endptr;
188                 unsigned long id = strtoul(dev->group, &endptr, 10);
189                 if (endptr[0] == '\0')
190                         gid = (gid_t) id;
191                 else {
192                         struct group *gr = getgrnam(dev->group);
193                         if (gr == NULL)
194                                 dbg("specified group unknown '%s'", dev->group);
195                         else
196                                 gid = gr->gr_gid;
197                 }
198         }
199
200         if (!fake) {
201                 info("creating device node '%s'", filename);
202                 make_node(filename, dev->major, dev->minor, dev->mode, uid, gid);
203         } else {
204                 info("creating device node '%s', major = '%d', minor = '%d', "
205                      "mode = '%#o', uid = '%d', gid = '%d'", filename,
206                      dev->major, dev->minor, (mode_t)dev->mode, uid, gid);
207         }
208
209         /* create partitions if requested */
210         if (dev->partitions > 0) {
211                 info("creating device partition nodes '%s[1-%i]'", filename, dev->partitions);
212                 if (!fake) {
213                         for (i = 1; i <= dev->partitions; i++) {
214                                 strfieldcpy(partitionname, filename);
215                                 strintcat(partitionname, i);
216                                 make_node(partitionname, dev->major,
217                                           dev->minor + i, dev->mode, uid, gid);
218                         }
219                 }
220         }
221
222         if (!fake)
223                 selinux_add_node(filename);
224
225         /* create symlink if requested */
226         if (dev->symlink[0] != '\0') {
227                 symlinks = dev->symlink;
228                 while (1) {
229                         linkname = strsep(&symlinks, " ");
230                         if (linkname == NULL || linkname[0] == '\0')
231                                 break;
232
233                         strfieldcpy(filename, udev_root);
234                         strfieldcat(filename, linkname);
235                         dbg("symlink '%s' to node '%s' requested", filename, dev->name);
236                         if (!fake)
237                                 if (strrchr(linkname, '/'))
238                                         create_path(filename);
239
240                         /* optimize relative link */
241                         linktarget[0] = '\0';
242                         i = 0;
243                         tail = 0;
244                         while ((dev->name[i] == linkname[i]) && dev->name[i]) {
245                                 if (dev->name[i] == '/')
246                                         tail = i+1;
247                                 i++;
248                         }
249                         while (linkname[i] != '\0') {
250                                 if (linkname[i] == '/')
251                                         strfieldcat(linktarget, "../");
252                                 i++;
253                         }
254
255                         strfieldcat(linktarget, &dev->name[tail]);
256
257                         /* unlink existing files to ensure that our symlink is created */
258                         if (!fake && (lstat(filename, &stats) == 0)) {
259                                 if ((stats.st_mode & S_IFMT) != S_IFDIR) {
260                                         if (unlink(filename))
261                                                 dbg("unlink(%s) failed with error '%s'",
262                                                     filename, strerror(errno));
263                                 }
264                         }
265
266                         dbg("symlink(%s, %s)", linktarget, filename);
267                         if (!fake) {
268                                 retval = symlink(linktarget, filename);
269                                 if (retval != 0)
270                                         dbg("symlink(%s, %s) failed with error '%s'",
271                                             linktarget, filename, strerror(errno));
272                         }
273                 }
274         }
275
276         return retval;
277 }
278
279 static struct sysfs_class_device *get_class_dev(char *device_name)
280 {
281         char dev_path[SYSFS_PATH_MAX];
282         struct sysfs_class_device *class_dev = NULL;
283
284         strfieldcpy(dev_path, sysfs_path);
285         strfieldcat(dev_path, device_name);
286         dbg("looking at '%s'", dev_path);
287
288         /* open up the sysfs class device for this thing... */
289         class_dev = sysfs_open_class_device_path(dev_path);
290         if (class_dev == NULL) {
291                 dbg ("sysfs_open_class_device_path failed");
292                 goto exit;
293         }
294         dbg("class_dev->name='%s'", class_dev->name);
295
296 exit:
297         return class_dev;
298 }
299
300 /* wait for the "dev" file to show up in the directory in sysfs.
301  * If it doesn't happen in about 10 seconds, give up.
302  */
303 #define SECONDS_TO_WAIT_FOR_DEV         10
304 static int sleep_for_dev(char *path)
305 {
306         char filename[SYSFS_PATH_MAX + 6];
307         int loop = SECONDS_TO_WAIT_FOR_DEV;
308         int retval;
309
310         strfieldcpy(filename, sysfs_path);
311         strfieldcat(filename, path);
312         strfieldcat(filename, "/dev");
313
314         while (loop--) {
315                 struct stat buf;
316
317                 dbg("looking for '%s'", filename);
318                 retval = stat(filename, &buf);
319                 if (retval == 0)
320                         goto exit;
321
322                 /* sleep to give the kernel a chance to create the dev file */
323                 sleep(1);
324         }
325         retval = -ENODEV;
326 exit:
327         return retval;
328 }
329
330 int udev_add_device(char *path, char *subsystem, int fake)
331 {
332         struct sysfs_class_device *class_dev = NULL;
333         struct udevice dev;
334         int retval = -EINVAL;
335
336         memset(&dev, 0x00, sizeof(dev));
337
338         /* for now, the block layer is the only place where block devices are */
339         if (strcmp(subsystem, "block") == 0)
340                 dev.type = 'b';
341         else
342                 dev.type = 'c';
343
344         retval = sleep_for_dev(path);
345         if (retval != 0)
346                 goto exit;
347
348         class_dev = get_class_dev(path);
349         if (class_dev == NULL)
350                 goto exit;
351
352         retval = get_major_minor(class_dev, &dev);
353         if (retval != 0) {
354                 dbg("get_major_minor failed");
355                 goto exit;
356         }
357
358         retval = namedev_name_device(class_dev, &dev);
359         if (retval != 0)
360                 goto exit;
361
362         if (!fake) {
363                 retval = udevdb_add_dev(path, &dev);
364                 if (retval != 0)
365                         dbg("udevdb_add_dev failed, but we are going to try "
366                             "to create the node anyway. But remove might not "
367                             "work properly for this device.");
368
369         }
370         dbg("name='%s'", dev.name);
371         retval = create_node(&dev, fake);
372
373         if ((retval == 0) && (!fake))
374                 sysbus_send_create(&dev, path);
375
376 exit:
377         if (class_dev)
378                 sysfs_close_class_device(class_dev);
379
380         return retval;
381 }