chiark / gitweb /
add linux/types.h back, old glibc-kernel-headers want it
[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_version.h"
41 #include "logging.h"
42 #include "udev_rules.h"
43 #include "udev_db.h"
44 #include "udev_selinux.h"
45
46
47 int udev_make_node(struct udevice *udev, const char *file, dev_t devt, mode_t mode, uid_t uid, gid_t gid)
48 {
49         struct stat stats;
50         int retval = 0;
51
52         switch (udev->type) {
53         case DEV_BLOCK:
54                 mode |= S_IFBLK;
55                 break;
56         case DEV_CLASS:
57                 mode |= S_IFCHR;
58                 break;
59         default:
60                 dbg("unknown node type %c\n", udev->type);
61                 return -EINVAL;
62         }
63
64         if (stat(file, &stats) != 0)
65                 goto create;
66
67         /* preserve node with already correct numbers, to not change the inode number */
68         if ((stats.st_mode & S_IFMT) == (mode & S_IFMT) && (stats.st_rdev == devt)) {
69                 info("preserve file '%s', cause it has correct dev_t", file);
70                 selinux_setfilecon(file, udev->kernel_name, stats.st_mode);
71                 goto perms;
72         }
73
74         if (unlink(file) != 0)
75                 err("unlink(%s) failed: %s", file, strerror(errno));
76         else
77                 dbg("already present file '%s' unlinked", file);
78
79 create:
80         selinux_setfscreatecon(file, udev->kernel_name, mode);
81         retval = mknod(file, mode, devt);
82         selinux_resetfscreatecon();
83         if (retval != 0) {
84                 err("mknod(%s, %#o, %u, %u) failed: %s",
85                     file, mode, major(devt), minor(devt), strerror(errno));
86                 goto exit;
87         }
88
89 perms:
90         dbg("chmod(%s, %#o)", file, mode);
91         if (chmod(file, mode) != 0) {
92                 err("chmod(%s, %#o) failed: %s", file, mode, strerror(errno));
93                 goto exit;
94         }
95
96         if (uid != 0 || gid != 0) {
97                 dbg("chown(%s, %u, %u)", file, uid, gid);
98                 if (chown(file, uid, gid) != 0) {
99                         err("chown(%s, %u, %u) failed: %s",
100                             file, uid, gid, strerror(errno));
101                         goto exit;
102                 }
103         }
104
105 exit:
106         return retval;
107 }
108
109 static int create_node(struct udevice *udev, struct sysfs_class_device *class_dev)
110 {
111         char filename[PATH_SIZE];
112         char partitionname[PATH_SIZE];
113         struct name_entry *name_loop;
114         uid_t uid;
115         gid_t gid;
116         int tail;
117         int i;
118
119         snprintf(filename, sizeof(filename), "%s/%s", udev_root, udev->name);
120         filename[sizeof(filename)-1] = '\0';
121
122         /* create parent directories if needed */
123         if (strchr(udev->name, '/'))
124                 create_path(filename);
125
126         if (strcmp(udev->owner, "root") == 0)
127                 uid = 0;
128         else {
129                 char *endptr;
130                 unsigned long id;
131
132                 id = strtoul(udev->owner, &endptr, 10);
133                 if (endptr[0] == '\0')
134                         uid = (uid_t) id;
135                 else
136                         uid = lookup_user(udev->owner);
137         }
138
139         if (strcmp(udev->group, "root") == 0)
140                 gid = 0;
141         else {
142                 char *endptr;
143                 unsigned long id;
144
145                 id = strtoul(udev->group, &endptr, 10);
146                 if (endptr[0] == '\0')
147                         gid = (gid_t) id;
148                 else
149                         gid = lookup_group(udev->group);
150         }
151
152         if (!udev->test_run) {
153                 info("creating device node '%s'", filename);
154                 if (udev_make_node(udev, filename, udev->devt, udev->mode, uid, gid) != 0)
155                         goto error;
156         } else {
157                 info("creating device node '%s', major = '%d', minor = '%d', "
158                      "mode = '%#o', uid = '%d', gid = '%d'", filename,
159                      major(udev->devt), minor(udev->devt), udev->mode, uid, gid);
160         }
161
162         /* create all_partitions if requested */
163         if (udev->partitions) {
164                 struct sysfs_attribute *attr;
165                 int range;
166
167                 /* take the maximum registered minor range */
168                 attr = sysfs_get_classdev_attr(class_dev, "range");
169                 if (attr) {
170                         range = atoi(attr->value);
171                         if (range > 1)
172                                 udev->partitions = range-1;
173                 }
174                 info("creating device partition nodes '%s[1-%i]'", filename, udev->partitions);
175                 if (!udev->test_run) {
176                         for (i = 1; i <= udev->partitions; i++) {
177                                 dev_t part_devt;
178
179                                 snprintf(partitionname, sizeof(partitionname), "%s%d", filename, i);
180                                 partitionname[sizeof(partitionname)-1] = '\0';
181                                 part_devt = makedev(major(udev->devt), minor(udev->devt) + i);
182                                 udev_make_node(udev, partitionname, part_devt, udev->mode, uid, gid);
183                         }
184                 }
185         }
186
187         /* create symlink(s) if requested */
188         list_for_each_entry(name_loop, &udev->symlink_list, node) {
189                 int retval;
190                 char linktarget[PATH_SIZE];
191
192                 snprintf(filename, sizeof(filename), "%s/%s", udev_root, name_loop->name);
193                 filename[sizeof(filename)-1] = '\0';
194
195                 dbg("symlink '%s' to node '%s' requested", filename, udev->name);
196                 if (!udev->test_run)
197                         if (strchr(filename, '/'))
198                                 create_path(filename);
199
200                 /* optimize relative link */
201                 linktarget[0] = '\0';
202                 i = 0;
203                 tail = 0;
204                 while (udev->name[i] && (udev->name[i] == name_loop->name[i])) {
205                         if (udev->name[i] == '/')
206                                 tail = i+1;
207                         i++;
208                 }
209                 while (name_loop->name[i] != '\0') {
210                         if (name_loop->name[i] == '/')
211                                 strlcat(linktarget, "../", sizeof(linktarget));
212                         i++;
213                 }
214
215                 strlcat(linktarget, &udev->name[tail], sizeof(linktarget));
216
217                 info("creating symlink '%s' to '%s'", filename, linktarget);
218                 if (!udev->test_run) {
219                         unlink(filename);
220                         selinux_setfscreatecon(filename, NULL, S_IFLNK);
221                         retval = symlink(linktarget, filename);
222                         selinux_resetfscreatecon();
223                         if (retval != 0)
224                                 err("symlink(%s, %s) failed: %s",
225                                     linktarget, filename, strerror(errno));
226                 }
227         }
228
229         return 0;
230 error:
231         return -1;
232 }
233
234 static int rename_net_if(struct udevice *udev)
235 {
236         int sk;
237         struct ifreq ifr;
238         int retval;
239
240         info("changing net interface name from '%s' to '%s'", udev->kernel_name, udev->name);
241         if (udev->test_run)
242                 return 0;
243
244         sk = socket(PF_INET, SOCK_DGRAM, 0);
245         if (sk < 0) {
246                 err("error opening socket: %s", strerror(errno));
247                 return -1;
248         }
249
250         memset(&ifr, 0x00, sizeof(struct ifreq));
251         strlcpy(ifr.ifr_name, udev->kernel_name, IFNAMSIZ);
252         strlcpy(ifr.ifr_newname, udev->name, IFNAMSIZ);
253
254         retval = ioctl(sk, SIOCSIFNAME, &ifr);
255         if (retval != 0)
256                 err("error changing net interface name: %s", strerror(errno));
257         close(sk);
258
259         return retval;
260 }
261
262 int udev_add_device(struct udevice *udev, struct sysfs_class_device *class_dev)
263 {
264         char *pos;
265         int retval = 0;
266
267         dbg("adding name='%s'", udev->name);
268         selinux_init();
269
270         if (udev->type == DEV_BLOCK || udev->type == DEV_CLASS) {
271                 retval = create_node(udev, class_dev);
272                 if (retval != 0)
273                         goto exit;
274
275                 if (udev_db_add_device(udev) != 0)
276                         dbg("udev_db_add_dev failed, but we create the node anyway, "
277                             "remove might not work for custom names");
278
279                 /* use full path to the environment */
280                 snprintf(udev->devname, sizeof(udev->devname), "%s/%s", udev_root, udev->name);
281                 udev->devname[sizeof(udev->devname)-1] = '\0';
282
283         } else if (udev->type == DEV_NET) {
284                 /* look if we want to change the name of the netif */
285                 if (strcmp(udev->name, udev->kernel_name) != 0) {
286                         retval = rename_net_if(udev);
287                         if (retval != 0)
288                                 goto exit;
289
290                         info("renamed netif to '%s'", udev->name);
291                         /* we've changed the name, now fake the devpath, cause the
292                          * original kernel name sleeps with the fishes and we don't
293                          * get an event from the kernel with the new name
294                          */
295                         pos = strrchr(udev->devpath, '/');
296                         if (pos != NULL) {
297                                 pos[1] = '\0';
298                                 strlcat(udev->devpath, udev->name, sizeof(udev->devpath));
299                                 strlcpy(udev->kernel_name, udev->name, sizeof(udev->kernel_name));
300                                 setenv("DEVPATH", udev->devpath, 1);
301                                 setenv("INTERFACE", udev->name, 1);
302                         }
303
304                         /* use netif name for the environment */
305                         strlcpy(udev->devname, udev->name, sizeof(udev->devname));
306                 }
307         }
308
309 exit:
310         selinux_exit();
311         return retval;
312 }