chiark / gitweb /
[PATCH] wait_for_sysfs: clean up the logic for the list of devices that we do not...
[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 #include <net/if.h>
34 #include <sys/socket.h>
35 #include <sys/ioctl.h>
36 #include <linux/sockios.h>
37 #ifndef __KLIBC__
38 #include <pwd.h>
39 #include <utmp.h>
40 #endif
41
42 #include "libsysfs/sysfs/libsysfs.h"
43 #include "udev.h"
44 #include "udev_lib.h"
45 #include "udev_version.h"
46 #include "logging.h"
47 #include "namedev.h"
48 #include "udevdb.h"
49 #include "klibc_fixups.h"
50
51 #define LOCAL_USER "$local"
52
53 #include "selinux.h"
54
55 /* 
56  * Right now the major/minor of a device is stored in a file called
57  * "dev" in sysfs.
58  * The number is stored as:
59  *      MM:mm
60  *              MM is the major
61  *              mm is the minor
62  *              The value is in decimal.
63  */
64 static int get_major_minor(struct sysfs_class_device *class_dev, struct udevice *udev)
65 {
66         struct sysfs_attribute *attr = NULL;
67
68         attr = sysfs_get_classdev_attr(class_dev, "dev");
69         if (attr == NULL)
70                 goto error;
71         dbg("dev='%s'", attr->value);
72
73         if (sscanf(attr->value, "%u:%u", &udev->major, &udev->minor) != 2)
74                 goto error;
75         dbg("found major=%d, minor=%d", udev->major, udev->minor);
76
77         return 0;
78 error:
79         return -1;
80 }
81
82 static int create_path(char *file)
83 {
84         char p[NAME_SIZE];
85         char *pos;
86         int retval;
87         struct stat stats;
88         
89         strfieldcpy(p, file);
90         pos = strchr(p+1, '/');
91         while (1) {
92                 pos = strchr(pos+1, '/');
93                 if (pos == NULL)
94                         break;
95                 *pos = 0x00;
96                 if (stat(p, &stats)) {
97                         selinux_setfscreatecon(p, S_IFDIR);
98                         retval = mkdir(p, 0755);
99                         if (retval != 0) {
100                                 dbg("mkdir(%s) failed with error '%s'",
101                                     p, strerror(errno));
102                                 return retval;
103                         }
104                         dbg("created '%s'", p);
105                 } else {
106                         selinux_setfilecon(p, S_IFDIR);
107                 }
108                 *pos = '/';
109         }
110         return 0;
111 }
112
113 static int make_node(char *file, int major, int minor, unsigned int mode, uid_t uid, gid_t gid)
114 {
115         struct stat stats;
116         int retval = 0;
117
118         if (stat(file, &stats) != 0)
119                 goto create;
120
121         /* preserve node with already correct numbers, to not change the inode number */
122         if (((stats.st_mode & S_IFMT) == S_IFBLK || (stats.st_mode & S_IFMT) == S_IFCHR) &&
123             (stats.st_rdev == makedev(major, minor))) {
124                 dbg("preserve file '%s', cause it has correct dev_t", file);
125                 selinux_setfilecon(file,stats.st_mode);
126                 goto perms;
127         }
128
129         if (unlink(file) != 0)
130                 dbg("unlink(%s) failed with error '%s'", file, strerror(errno));
131         else
132                 dbg("already present file '%s' unlinked", file);
133
134 create:
135         selinux_setfscreatecon(file, mode);
136         retval = mknod(file, mode, makedev(major, minor));
137         if (retval != 0) {
138                 dbg("mknod(%s, %#o, %u, %u) failed with error '%s'",
139                     file, mode, major, minor, strerror(errno));
140                 goto exit;
141         }
142
143 perms:
144         dbg("chmod(%s, %#o)", file, mode);
145         if (chmod(file, mode) != 0) {
146                 dbg("chmod(%s, %#o) failed with error '%s'", file, mode, strerror(errno));
147                 goto exit;
148         }
149
150         if (uid != 0 || gid != 0) {
151                 dbg("chown(%s, %u, %u)", file, uid, gid);
152                 if (chown(file, uid, gid) != 0) {
153                         dbg("chown(%s, %u, %u) failed with error '%s'",
154                             file, uid, gid, strerror(errno));
155                         goto exit;
156                 }
157         }
158
159 exit:
160         return retval;
161 }
162
163 /* get the local logged in user */
164 static void set_to_local_user(char *user)
165 {
166         struct utmp *u;
167         time_t recent = 0;
168
169         strfieldcpymax(user, default_owner_str, OWNER_SIZE);
170         setutent();
171         while (1) {
172                 u = getutent();
173                 if (u == NULL)
174                         break;
175
176                 /* is this a user login ? */
177                 if (u->ut_type != USER_PROCESS)
178                         continue;
179
180                 /* is this a local login ? */
181                 if (strcmp(u->ut_host, ""))
182                         continue;
183
184                 if (u->ut_time > recent) {
185                         recent = u->ut_time;
186                         strfieldcpymax(user, u->ut_user, OWNER_SIZE);
187                         dbg("local user is '%s'", user);
188                         break;
189                 }
190         }
191         endutent();
192 }
193
194 static int create_node(struct udevice *dev, int fake)
195 {
196         char filename[NAME_SIZE];
197         char linkname[NAME_SIZE];
198         char linktarget[NAME_SIZE];
199         char partitionname[NAME_SIZE];
200         uid_t uid = 0;
201         gid_t gid = 0;
202         int i;
203         int tail;
204         char *pos;
205         int len;
206
207         strfieldcpy(filename, udev_root);
208         strfieldcat(filename, dev->name);
209
210         switch (dev->type) {
211         case 'b':
212                 dev->mode |= S_IFBLK;
213                 break;
214         case 'c':
215         case 'u':
216                 dev->mode |= S_IFCHR;
217                 break;
218         case 'p':
219                 dev->mode |= S_IFIFO;
220                 break;
221         default:
222                 dbg("unknown node type %c\n", dev->type);
223                 return -EINVAL;
224         }
225
226         /* create parent directories if needed */
227         if (strrchr(dev->name, '/'))
228                 create_path(filename);
229
230         if (dev->owner[0] != '\0') {
231                 char *endptr;
232                 unsigned long id = strtoul(dev->owner, &endptr, 10);
233                 if (endptr[0] == '\0')
234                         uid = (uid_t) id;
235                 else {
236                         struct passwd *pw;
237                         if (strncmp(dev->owner, LOCAL_USER, sizeof(LOCAL_USER)) == 0)
238                                 set_to_local_user(dev->owner);
239
240                         pw = getpwnam(dev->owner);
241                         if (pw == NULL)
242                                 dbg("specified user unknown '%s'", dev->owner);
243                         else
244                                 uid = pw->pw_uid;
245                 }
246         }
247
248         if (dev->group[0] != '\0') {
249                 char *endptr;
250                 unsigned long id = strtoul(dev->group, &endptr, 10);
251                 if (endptr[0] == '\0')
252                         gid = (gid_t) id;
253                 else {
254                         struct group *gr = getgrnam(dev->group);
255                         if (gr == NULL)
256                                 dbg("specified group unknown '%s'", dev->group);
257                         else
258                                 gid = gr->gr_gid;
259                 }
260         }
261
262         if (!fake) {
263                 info("creating device node '%s'", filename);
264                 if (make_node(filename, dev->major, dev->minor, dev->mode, uid, gid) != 0)
265                         goto error;
266         } else {
267                 info("creating device node '%s', major = '%d', minor = '%d', "
268                      "mode = '%#o', uid = '%d', gid = '%d'", filename,
269                      dev->major, dev->minor, (mode_t)dev->mode, uid, gid);
270         }
271
272         /* create all_partitions if requested */
273         if (dev->partitions > 0) {
274                 info("creating device partition nodes '%s[1-%i]'", filename, dev->partitions);
275                 if (!fake) {
276                         for (i = 1; i <= dev->partitions; i++) {
277                                 strfieldcpy(partitionname, filename);
278                                 strintcat(partitionname, i);
279                                 make_node(partitionname, dev->major,
280                                           dev->minor + i, dev->mode, uid, gid);
281                         }
282                 }
283         }
284
285         /* create symlink(s) if requested */
286         foreach_strpart(dev->symlink, " ", pos, len) {
287                 strfieldcpymax(linkname, pos, len+1);
288                 strfieldcpy(filename, udev_root);
289                 strfieldcat(filename, linkname);
290                 dbg("symlink '%s' to node '%s' requested", filename, dev->name);
291                 if (!fake)
292                         if (strrchr(linkname, '/'))
293                                 create_path(filename);
294
295                 /* optimize relative link */
296                 linktarget[0] = '\0';
297                 i = 0;
298                 tail = 0;
299                 while ((dev->name[i] == linkname[i]) && dev->name[i]) {
300                         if (dev->name[i] == '/')
301                                 tail = i+1;
302                         i++;
303                 }
304                 while (linkname[i] != '\0') {
305                         if (linkname[i] == '/')
306                                 strfieldcat(linktarget, "../");
307                         i++;
308                 }
309
310                 strfieldcat(linktarget, &dev->name[tail]);
311
312                 dbg("symlink(%s, %s)", linktarget, filename);
313                 if (!fake) {
314                         selinux_setfscreatecon(filename, S_IFLNK);
315                         unlink(filename);
316                         if (symlink(linktarget, filename) != 0)
317                                 dbg("symlink(%s, %s) failed with error '%s'",
318                                     linktarget, filename, strerror(errno));
319                 }
320         }
321
322         return 0;
323 error:
324         return -1;
325 }
326
327 static struct sysfs_class_device *get_class_dev(const char *device_name)
328 {
329         char dev_path[SYSFS_PATH_MAX];
330         struct sysfs_class_device *class_dev = NULL;
331
332         strfieldcpy(dev_path, sysfs_path);
333         strfieldcat(dev_path, device_name);
334         dbg("looking at '%s'", dev_path);
335
336         /* open up the sysfs class device for this thing... */
337         class_dev = sysfs_open_class_device_path(dev_path);
338         if (class_dev == NULL) {
339                 dbg ("sysfs_open_class_device_path failed");
340                 goto exit;
341         }
342         dbg("class_dev->name='%s'", class_dev->name);
343
344 exit:
345         return class_dev;
346 }
347
348 /* wait for the "dev" file to show up in the directory in sysfs.
349  * If it doesn't happen in about 10 seconds, give up.
350  */
351 #define SECONDS_TO_WAIT_FOR_FILE        10
352 static int sleep_for_file(const char *path, char* file)
353 {
354         char filename[SYSFS_PATH_MAX + 6];
355         int loop = SECONDS_TO_WAIT_FOR_FILE;
356         int retval;
357
358         strfieldcpy(filename, sysfs_path);
359         strfieldcat(filename, path);
360         strfieldcat(filename, file);
361
362         while (loop--) {
363                 struct stat buf;
364
365                 dbg("looking for '%s'", filename);
366                 retval = stat(filename, &buf);
367                 if (retval == 0)
368                         goto exit;
369
370                 /* sleep to give the kernel a chance to create the dev file */
371                 sleep(1);
372         }
373         retval = -ENODEV;
374 exit:
375         return retval;
376 }
377
378 static int rename_net_if(struct udevice *dev, int fake)
379 {
380         int sk;
381         struct ifreq ifr;
382         int retval;
383
384         dbg("changing net interface name from '%s' to '%s'", dev->kernel_name, dev->name);
385         if (fake)
386                 return 0;
387
388         sk = socket(PF_INET, SOCK_DGRAM, 0);
389         if (sk < 0) {
390                 dbg("error opening socket");
391                 return -1;
392         }
393
394         memset(&ifr, 0x00, sizeof(struct ifreq));
395         strfieldcpy(ifr.ifr_name, dev->kernel_name);
396         strfieldcpy(ifr.ifr_newname, dev->name);
397
398         retval = ioctl(sk, SIOCSIFNAME, &ifr);
399         if (retval != 0)
400                 dbg("error changing net interface name");
401         close(sk);
402
403         return retval;
404 }
405
406 int udev_add_device(const char *path, const char *subsystem, int fake)
407 {
408         struct sysfs_class_device *class_dev;
409         struct udevice dev;
410         char devpath[DEVPATH_SIZE];
411         char *pos;
412         int retval;
413
414         memset(&dev, 0x00, sizeof(dev));
415
416         dev.type = get_device_type(path, subsystem);
417         switch (dev.type) {
418         case 'b':
419         case 'c':
420                 retval = sleep_for_file(path, "/dev");
421                 break;
422
423         case 'n':
424                 retval = sleep_for_file(path, "/address");
425                 break;
426
427         default:
428                 dbg("unknown device type '%c'", dev.type);
429                 return -1;
430         }
431
432         class_dev = get_class_dev(path);
433         if (class_dev == NULL)
434                 return -1;
435
436         if (dev.type == 'b' || dev.type == 'c') {
437                 retval = get_major_minor(class_dev, &dev);
438                 if (retval != 0) {
439                         dbg("get_major_minor failed");
440                         goto exit;
441                 }
442         }
443
444         if (namedev_name_device(class_dev, &dev) != 0)
445                 goto exit;
446
447         dbg("name='%s'", dev.name);
448
449         selinux_init();
450         switch (dev.type) {
451         case 'b':
452         case 'c':
453                 retval = create_node(&dev, fake);
454                 if (retval != 0)
455                         goto exit;
456                 if ((!fake) && (udevdb_add_dev(path, &dev) != 0))
457                         dbg("udevdb_add_dev failed, but we are going to try "
458                             "to create the node anyway. But remove might not "
459                             "work properly for this device.");
460
461                 dev_d_send(&dev, subsystem, path);
462                 break;
463
464         case 'n':
465                 strfieldcpy(devpath, path);
466                 if (strcmp(dev.name, dev.kernel_name) != 0) {
467                         retval = rename_net_if(&dev, fake);
468                         if (retval != 0)
469                                 goto exit;
470                         /* netif's are keyed with the configured name, cause
471                          * the original kernel name sleeps with the fishes
472                          */
473                         pos = strrchr(devpath, '/');
474                         if (pos != NULL) {
475                                 pos[1] = '\0';
476                                 strfieldcat(devpath, dev.name);
477                         }
478                 }
479                 if ((!fake) && (udevdb_add_dev(devpath, &dev) != 0))
480                         dbg("udevdb_add_dev failed");
481
482                 dev_d_send(&dev, subsystem, devpath);
483                 break;
484         }
485
486 exit:
487         selinux_restore();
488         sysfs_close_class_device(class_dev);
489
490         return retval;
491 }