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