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