chiark / gitweb /
[PATCH] TODO update
[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                                 sprintf(partitionname, "%s%i", filename, i);
215                                 make_node(partitionname, dev->major,
216                                           dev->minor + i, dev->mode, uid, gid);
217                         }
218                 }
219         }
220
221         if (!fake)
222                 selinux_add_node(filename);
223
224         /* create symlink if requested */
225         if (dev->symlink[0] != '\0') {
226                 symlinks = dev->symlink;
227                 while (1) {
228                         linkname = strsep(&symlinks, " ");
229                         if (linkname == NULL || linkname[0] == '\0')
230                                 break;
231
232                         strfieldcpy(filename, udev_root);
233                         strfieldcat(filename, linkname);
234                         dbg("symlink '%s' to node '%s' requested", filename, dev->name);
235                         if (!fake)
236                                 if (strrchr(linkname, '/'))
237                                         create_path(filename);
238
239                         /* optimize relative link */
240                         linktarget[0] = '\0';
241                         i = 0;
242                         tail = 0;
243                         while ((dev->name[i] == linkname[i]) && dev->name[i]) {
244                                 if (dev->name[i] == '/')
245                                         tail = i+1;
246                                 i++;
247                         }
248                         while (linkname[i] != '\0') {
249                                 if (linkname[i] == '/')
250                                         strfieldcat(linktarget, "../");
251                                 i++;
252                         }
253
254                         strfieldcat(linktarget, &dev->name[tail]);
255
256                         /* unlink existing files to ensure that our symlink is created */
257                         if (!fake && (lstat(filename, &stats) == 0)) {
258                                 if ((stats.st_mode & S_IFMT) != S_IFDIR) {
259                                         if (unlink(filename))
260                                                 dbg("unlink(%s) failed with error '%s'",
261                                                     filename, strerror(errno));
262                                 }
263                         }
264
265                         dbg("symlink(%s, %s)", linktarget, filename);
266                         if (!fake) {
267                                 retval = symlink(linktarget, filename);
268                                 if (retval != 0)
269                                         dbg("symlink(%s, %s) failed with error '%s'",
270                                             linktarget, filename, strerror(errno));
271                         }
272                 }
273         }
274
275         return retval;
276 }
277
278 static struct sysfs_class_device *get_class_dev(char *device_name)
279 {
280         char dev_path[SYSFS_PATH_MAX];
281         struct sysfs_class_device *class_dev = NULL;
282
283         strfieldcpy(dev_path, sysfs_path);
284         strfieldcat(dev_path, device_name);
285         dbg("looking at '%s'", dev_path);
286
287         /* open up the sysfs class device for this thing... */
288         class_dev = sysfs_open_class_device_path(dev_path);
289         if (class_dev == NULL) {
290                 dbg ("sysfs_open_class_device_path failed");
291                 goto exit;
292         }
293         dbg("class_dev->name='%s'", class_dev->name);
294
295 exit:
296         return class_dev;
297 }
298
299 /* wait for the "dev" file to show up in the directory in sysfs.
300  * If it doesn't happen in about 10 seconds, give up.
301  */
302 #define SECONDS_TO_WAIT_FOR_DEV         10
303 static int sleep_for_dev(char *path)
304 {
305         char filename[SYSFS_PATH_MAX + 6];
306         int loop = SECONDS_TO_WAIT_FOR_DEV;
307         int retval;
308
309         strfieldcpy(filename, sysfs_path);
310         strfieldcat(filename, path);
311         strfieldcat(filename, "/dev");
312
313         while (loop--) {
314                 struct stat buf;
315
316                 dbg("looking for '%s'", filename);
317                 retval = stat(filename, &buf);
318                 if (retval == 0)
319                         goto exit;
320
321                 /* sleep to give the kernel a chance to create the dev file */
322                 sleep(1);
323         }
324         retval = -ENODEV;
325 exit:
326         return retval;
327 }
328
329 int udev_add_device(char *path, char *subsystem, int fake)
330 {
331         struct sysfs_class_device *class_dev = NULL;
332         struct udevice dev;
333         int retval = -EINVAL;
334
335         memset(&dev, 0x00, sizeof(dev));
336
337         /* for now, the block layer is the only place where block devices are */
338         if (strcmp(subsystem, "block") == 0)
339                 dev.type = 'b';
340         else
341                 dev.type = 'c';
342
343         retval = sleep_for_dev(path);
344         if (retval != 0)
345                 goto exit;
346
347         class_dev = get_class_dev(path);
348         if (class_dev == NULL)
349                 goto exit;
350
351         retval = get_major_minor(class_dev, &dev);
352         if (retval != 0) {
353                 dbg("get_major_minor failed");
354                 goto exit;
355         }
356
357         retval = namedev_name_device(class_dev, &dev);
358         if (retval != 0)
359                 goto exit;
360
361         if (!fake) {
362                 retval = udevdb_add_dev(path, &dev);
363                 if (retval != 0)
364                         dbg("udevdb_add_dev failed, but we are going to try "
365                             "to create the node anyway. But remove might not "
366                             "work properly for this device.");
367
368         }
369         dbg("name='%s'", dev.name);
370         retval = create_node(&dev, fake);
371
372         if ((retval == 0) && (!fake))
373                 sysbus_send_create(&dev, path);
374
375 exit:
376         if (class_dev)
377                 sysfs_close_class_device(class_dev);
378
379         return retval;
380 }