chiark / gitweb /
remove outdated HOWTO
[elogind.git] / udev_add.c
1 /*
2  * udev-add.c
3  *
4  * Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
5  * Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
6  *
7  *      This program is free software; you can redistribute it and/or modify it
8  *      under the terms of the GNU General Public License as published by the
9  *      Free Software Foundation version 2 of the License.
10  * 
11  *      This program is distributed in the hope that it will be useful, but
12  *      WITHOUT ANY WARRANTY; without even the implied warranty of
13  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  *      General Public License for more details.
15  * 
16  *      You should have received a copy of the GNU General Public License along
17  *      with this program; if not, write to the Free Software Foundation, Inc.,
18  *      675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  */
21
22 #include <stdlib.h>
23 #include <string.h>
24 #include <stdio.h>
25 #include <fcntl.h>
26 #include <unistd.h>
27 #include <errno.h>
28 #include <sys/stat.h>
29 #include <sys/types.h>
30 #include <grp.h>
31 #include <net/if.h>
32 #include <sys/socket.h>
33 #include <sys/ioctl.h>
34 #include <linux/sockios.h>
35
36 #include "libsysfs/sysfs/libsysfs.h"
37 #include "udev_libc_wrapper.h"
38 #include "udev.h"
39 #include "udev_utils.h"
40 #include "udev_sysfs.h"
41 #include "udev_version.h"
42 #include "logging.h"
43 #include "udev_rules.h"
44 #include "udev_db.h"
45 #include "udev_selinux.h"
46
47
48 int udev_make_node(struct udevice *udev, const char *file, dev_t devt, mode_t mode, uid_t uid, gid_t gid)
49 {
50         struct stat stats;
51         int retval = 0;
52
53         switch (udev->type) {
54         case DEV_BLOCK:
55                 mode |= S_IFBLK;
56                 break;
57         case DEV_CLASS:
58                 mode |= S_IFCHR;
59                 break;
60         default:
61                 dbg("unknown node type %c\n", udev->type);
62                 return -EINVAL;
63         }
64
65         if (stat(file, &stats) != 0)
66                 goto create;
67
68         /* preserve node with already correct numbers, to not change the inode number */
69         if ((stats.st_mode & S_IFMT) == (mode & S_IFMT) && (stats.st_rdev == devt)) {
70                 info("preserve file '%s', cause it has correct dev_t", file);
71                 selinux_setfilecon(file, udev->kernel_name, stats.st_mode);
72                 goto perms;
73         }
74
75         if (unlink(file) != 0)
76                 err("unlink(%s) failed: %s", file, strerror(errno));
77         else
78                 dbg("already present file '%s' unlinked", file);
79
80 create:
81         selinux_setfscreatecon(file, udev->kernel_name, mode);
82         retval = mknod(file, mode, devt);
83         selinux_resetfscreatecon();
84         if (retval != 0) {
85                 err("mknod(%s, %#o, %u, %u) failed: %s",
86                     file, mode, major(devt), minor(devt), strerror(errno));
87                 goto exit;
88         }
89
90 perms:
91         dbg("chmod(%s, %#o)", file, mode);
92         if (chmod(file, mode) != 0) {
93                 err("chmod(%s, %#o) failed: %s", file, mode, strerror(errno));
94                 goto exit;
95         }
96
97         if (uid != 0 || gid != 0) {
98                 dbg("chown(%s, %u, %u)", file, uid, gid);
99                 if (chown(file, uid, gid) != 0) {
100                         err("chown(%s, %u, %u) failed: %s",
101                             file, uid, gid, strerror(errno));
102                         goto exit;
103                 }
104         }
105
106 exit:
107         return retval;
108 }
109
110 static int create_node(struct udevice *udev, struct sysfs_class_device *class_dev)
111 {
112         char filename[PATH_SIZE];
113         char partitionname[PATH_SIZE];
114         struct name_entry *name_loop;
115         uid_t uid;
116         gid_t gid;
117         int tail;
118         int i;
119
120         snprintf(filename, sizeof(filename), "%s/%s", udev_root, udev->name);
121         filename[sizeof(filename)-1] = '\0';
122
123         /* create parent directories if needed */
124         if (strchr(udev->name, '/'))
125                 create_path(filename);
126
127         if (strcmp(udev->owner, "root") == 0)
128                 uid = 0;
129         else {
130                 char *endptr;
131                 unsigned long id;
132
133                 id = strtoul(udev->owner, &endptr, 10);
134                 if (endptr[0] == '\0')
135                         uid = (uid_t) id;
136                 else
137                         uid = lookup_user(udev->owner);
138         }
139
140         if (strcmp(udev->group, "root") == 0)
141                 gid = 0;
142         else {
143                 char *endptr;
144                 unsigned long id;
145
146                 id = strtoul(udev->group, &endptr, 10);
147                 if (endptr[0] == '\0')
148                         gid = (gid_t) id;
149                 else
150                         gid = lookup_group(udev->group);
151         }
152
153         if (!udev->test_run) {
154                 info("creating device node '%s'", filename);
155                 if (udev_make_node(udev, filename, udev->devt, udev->mode, uid, gid) != 0)
156                         goto error;
157         } else {
158                 info("creating device node '%s', major = '%d', minor = '%d', "
159                      "mode = '%#o', uid = '%d', gid = '%d'", filename,
160                      major(udev->devt), minor(udev->devt), udev->mode, uid, gid);
161         }
162
163         /* create all_partitions if requested */
164         if (udev->partitions) {
165                 struct sysfs_attribute *attr;
166                 int range;
167
168                 /* take the maximum registered minor range */
169                 attr = sysfs_get_classdev_attr(class_dev, "range");
170                 if (attr) {
171                         range = atoi(attr->value);
172                         if (range > 1)
173                                 udev->partitions = range-1;
174                 }
175                 info("creating device partition nodes '%s[1-%i]'", filename, udev->partitions);
176                 if (!udev->test_run) {
177                         for (i = 1; i <= udev->partitions; i++) {
178                                 dev_t part_devt;
179
180                                 snprintf(partitionname, sizeof(partitionname), "%s%d", filename, i);
181                                 partitionname[sizeof(partitionname)-1] = '\0';
182                                 part_devt = makedev(major(udev->devt), minor(udev->devt) + i);
183                                 udev_make_node(udev, partitionname, part_devt, udev->mode, uid, gid);
184                         }
185                 }
186         }
187
188         /* create symlink(s) if requested */
189         list_for_each_entry(name_loop, &udev->symlink_list, node) {
190                 int retval;
191                 char linktarget[PATH_SIZE];
192
193                 snprintf(filename, sizeof(filename), "%s/%s", udev_root, name_loop->name);
194                 filename[sizeof(filename)-1] = '\0';
195
196                 dbg("symlink '%s' to node '%s' requested", filename, udev->name);
197                 if (!udev->test_run)
198                         if (strchr(filename, '/'))
199                                 create_path(filename);
200
201                 /* optimize relative link */
202                 linktarget[0] = '\0';
203                 i = 0;
204                 tail = 0;
205                 while (udev->name[i] && (udev->name[i] == name_loop->name[i])) {
206                         if (udev->name[i] == '/')
207                                 tail = i+1;
208                         i++;
209                 }
210                 while (name_loop->name[i] != '\0') {
211                         if (name_loop->name[i] == '/')
212                                 strlcat(linktarget, "../", sizeof(linktarget));
213                         i++;
214                 }
215
216                 strlcat(linktarget, &udev->name[tail], sizeof(linktarget));
217
218                 info("creating symlink '%s' to '%s'", filename, linktarget);
219                 if (!udev->test_run) {
220                         unlink(filename);
221                         selinux_setfscreatecon(filename, NULL, S_IFLNK);
222                         retval = symlink(linktarget, filename);
223                         selinux_resetfscreatecon();
224                         if (retval != 0)
225                                 err("symlink(%s, %s) failed: %s",
226                                     linktarget, filename, strerror(errno));
227                 }
228         }
229
230         return 0;
231 error:
232         return -1;
233 }
234
235 static int rename_net_if(struct udevice *udev)
236 {
237         int sk;
238         struct ifreq ifr;
239         int retval;
240
241         info("changing net interface name from '%s' to '%s'", udev->kernel_name, udev->name);
242         if (udev->test_run)
243                 return 0;
244
245         sk = socket(PF_INET, SOCK_DGRAM, 0);
246         if (sk < 0) {
247                 err("error opening socket: %s", strerror(errno));
248                 return -1;
249         }
250
251         memset(&ifr, 0x00, sizeof(struct ifreq));
252         strlcpy(ifr.ifr_name, udev->kernel_name, IFNAMSIZ);
253         strlcpy(ifr.ifr_newname, udev->name, IFNAMSIZ);
254
255         retval = ioctl(sk, SIOCSIFNAME, &ifr);
256         if (retval != 0)
257                 err("error changing net interface name: %s", strerror(errno));
258         close(sk);
259
260         return retval;
261 }
262
263 int udev_add_device(struct udevice *udev, struct sysfs_class_device *class_dev)
264 {
265         char *pos;
266         int retval = 0;
267
268         dbg("adding name='%s'", udev->name);
269         selinux_init();
270
271         if (udev->type == DEV_BLOCK || udev->type == DEV_CLASS) {
272                 retval = create_node(udev, class_dev);
273                 if (retval != 0)
274                         goto exit;
275
276                 if (udev_db_add_device(udev) != 0)
277                         dbg("udev_db_add_dev failed, but we create the node anyway, "
278                             "remove might not work for custom names");
279
280                 /* use full path to the environment */
281                 snprintf(udev->devname, sizeof(udev->devname), "%s/%s", udev_root, udev->name);
282                 udev->devname[sizeof(udev->devname)-1] = '\0';
283
284         } else if (udev->type == DEV_NET) {
285                 /* look if we want to change the name of the netif */
286                 if (strcmp(udev->name, udev->kernel_name) != 0) {
287                         retval = rename_net_if(udev);
288                         if (retval != 0)
289                                 goto exit;
290
291                         info("renamed netif to '%s'", udev->name);
292                         /* we've changed the name, now fake the devpath, cause the
293                          * original kernel name sleeps with the fishes and we don't
294                          * get an event from the kernel with the new name
295                          */
296                         pos = strrchr(udev->devpath, '/');
297                         if (pos != NULL) {
298                                 pos[1] = '\0';
299                                 strlcat(udev->devpath, udev->name, sizeof(udev->devpath));
300                                 strlcpy(udev->kernel_name, udev->name, sizeof(udev->kernel_name));
301                                 setenv("DEVPATH", udev->devpath, 1);
302                                 setenv("INTERFACE", udev->name, 1);
303                         }
304
305                         /* use netif name for the environment */
306                         strlcpy(udev->devname, udev->name, sizeof(udev->devname));
307                 }
308         }
309
310 exit:
311         selinux_exit();
312         return retval;
313 }