chiark / gitweb /
fixups to get back to proper patch order
[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 #include <pwd.h>
38
39 #include "libsysfs/sysfs/libsysfs.h"
40 #include "udev.h"
41 #include "udev_utils.h"
42 #include "udev_version.h"
43 #include "logging.h"
44 #include "namedev.h"
45 #include "udev_db.h"
46
47 #include "selinux.h"
48
49 /*
50  * the major/minor of a device is stored in a file called "dev"
51  * The number is stored in decimal values in the format: M:m
52  */
53 static int get_major_minor(struct sysfs_class_device *class_dev, struct udevice *udev)
54 {
55         struct sysfs_attribute *attr = NULL;
56
57         attr = sysfs_get_classdev_attr(class_dev, "dev");
58         if (attr == NULL)
59                 goto error;
60         dbg("dev='%s'", attr->value);
61
62         if (sscanf(attr->value, "%u:%u", &udev->major, &udev->minor) != 2)
63                 goto error;
64         dbg("found major=%d, minor=%d", udev->major, udev->minor);
65
66         return 0;
67 error:
68         return -1;
69 }
70
71 static int make_node(char *file, int major, int minor, unsigned int mode, uid_t uid, gid_t gid)
72 {
73         struct stat stats;
74         int retval = 0;
75
76         if (stat(file, &stats) != 0)
77                 goto create;
78
79         /* preserve node with already correct numbers, to not change the inode number */
80         if (((stats.st_mode & S_IFMT) == S_IFBLK || (stats.st_mode & S_IFMT) == S_IFCHR) &&
81             (stats.st_rdev == makedev(major, minor))) {
82                 dbg("preserve file '%s', cause it has correct dev_t", file);
83                 selinux_setfilecon(file,stats.st_mode);
84                 goto perms;
85         }
86
87         if (unlink(file) != 0)
88                 dbg("unlink(%s) failed with error '%s'", file, strerror(errno));
89         else
90                 dbg("already present file '%s' unlinked", file);
91
92 create:
93         selinux_setfscreatecon(file, mode);
94         retval = mknod(file, mode, makedev(major, minor));
95         if (retval != 0) {
96                 dbg("mknod(%s, %#o, %u, %u) failed with error '%s'",
97                     file, mode, major, minor, strerror(errno));
98                 goto exit;
99         }
100
101 perms:
102         dbg("chmod(%s, %#o)", file, mode);
103         if (chmod(file, mode) != 0) {
104                 dbg("chmod(%s, %#o) failed with error '%s'", file, mode, strerror(errno));
105                 goto exit;
106         }
107
108         if (uid != 0 || gid != 0) {
109                 dbg("chown(%s, %u, %u)", file, uid, gid);
110                 if (chown(file, uid, gid) != 0) {
111                         dbg("chown(%s, %u, %u) failed with error '%s'",
112                             file, uid, gid, strerror(errno));
113                         goto exit;
114                 }
115         }
116
117 exit:
118         return retval;
119 }
120
121 static int create_node(struct udevice *udev)
122 {
123         char filename[NAME_SIZE];
124         char partitionname[NAME_SIZE];
125         uid_t uid = 0;
126         gid_t gid = 0;
127         int i;
128         int tail;
129         char *pos;
130         int len;
131
132         snprintf(filename, NAME_SIZE, "%s/%s", udev_root, udev->name);
133         filename[NAME_SIZE-1] = '\0';
134
135         switch (udev->type) {
136         case 'b':
137                 udev->mode |= S_IFBLK;
138                 break;
139         case 'c':
140         case 'u':
141                 udev->mode |= S_IFCHR;
142                 break;
143         case 'p':
144                 udev->mode |= S_IFIFO;
145                 break;
146         default:
147                 dbg("unknown node type %c\n", udev->type);
148                 return -EINVAL;
149         }
150
151         /* create parent directories if needed */
152         if (strrchr(udev->name, '/'))
153                 create_path(filename);
154
155         if (udev->owner[0] != '\0') {
156                 char *endptr;
157                 unsigned long id = strtoul(udev->owner, &endptr, 10);
158                 if (endptr[0] == '\0')
159                         uid = (uid_t) id;
160                 else {
161                         struct passwd *pw;
162
163                         pw = getpwnam(udev->owner);
164                         if (pw == NULL)
165                                 dbg("specified user unknown '%s'", udev->owner);
166                         else
167                                 uid = pw->pw_uid;
168                 }
169         }
170
171         if (udev->group[0] != '\0') {
172                 char *endptr;
173                 unsigned long id = strtoul(udev->group, &endptr, 10);
174                 if (endptr[0] == '\0')
175                         gid = (gid_t) id;
176                 else {
177                         struct group *gr = getgrnam(udev->group);
178                         if (gr == NULL)
179                                 dbg("specified group unknown '%s'", udev->group);
180                         else
181                                 gid = gr->gr_gid;
182                 }
183         }
184
185         if (!udev->test_run) {
186                 info("creating device node '%s'", filename);
187                 if (make_node(filename, udev->major, udev->minor, udev->mode, uid, gid) != 0)
188                         goto error;
189         } else {
190                 info("creating device node '%s', major = '%d', minor = '%d', "
191                      "mode = '%#o', uid = '%d', gid = '%d'", filename,
192                      udev->major, udev->minor, (mode_t)udev->mode, uid, gid);
193         }
194
195         /* create all_partitions if requested */
196         if (udev->partitions > 0) {
197                 info("creating device partition nodes '%s[1-%i]'", filename, udev->partitions);
198                 if (!udev->test_run) {
199                         for (i = 1; i <= udev->partitions; i++) {
200                                 strfieldcpy(partitionname, filename);
201                                 strintcat(partitionname, i);
202                                 make_node(partitionname, udev->major, udev->minor + i, udev->mode, uid, gid);
203                         }
204                 }
205         }
206
207         /* create symlink(s) if requested */
208         foreach_strpart(udev->symlink, " ", pos, len) {
209                 char linkname[NAME_SIZE];
210                 char linktarget[NAME_SIZE];
211
212                 strfieldcpymax(linkname, pos, len+1);
213                 snprintf(filename, NAME_SIZE, "%s/%s", udev_root, linkname);
214                 filename[NAME_SIZE-1] = '\0';
215
216                 dbg("symlink '%s' to node '%s' requested", filename, udev->name);
217                 if (!udev->test_run)
218                         if (strrchr(linkname, '/'))
219                                 create_path(filename);
220
221                 /* optimize relative link */
222                 linktarget[0] = '\0';
223                 i = 0;
224                 tail = 0;
225                 while ((udev->name[i] == linkname[i]) && udev->name[i]) {
226                         if (udev->name[i] == '/')
227                                 tail = i+1;
228                         i++;
229                 }
230                 while (linkname[i] != '\0') {
231                         if (linkname[i] == '/')
232                                 strfieldcat(linktarget, "../");
233                         i++;
234                 }
235
236                 strfieldcat(linktarget, &udev->name[tail]);
237
238                 dbg("symlink(%s, %s)", linktarget, filename);
239                 if (!udev->test_run) {
240                         selinux_setfscreatecon(filename, S_IFLNK);
241                         unlink(filename);
242                         if (symlink(linktarget, filename) != 0)
243                                 dbg("symlink(%s, %s) failed with error '%s'",
244                                     linktarget, filename, strerror(errno));
245                 }
246         }
247
248         return 0;
249 error:
250         return -1;
251 }
252
253 static int rename_net_if(struct udevice *udev)
254 {
255         int sk;
256         struct ifreq ifr;
257         int retval;
258
259         dbg("changing net interface name from '%s' to '%s'", udev->kernel_name, udev->name);
260         if (udev->test_run)
261                 return 0;
262
263         sk = socket(PF_INET, SOCK_DGRAM, 0);
264         if (sk < 0) {
265                 dbg("error opening socket");
266                 return -1;
267         }
268
269         memset(&ifr, 0x00, sizeof(struct ifreq));
270         strfieldcpy(ifr.ifr_name, udev->kernel_name);
271         strfieldcpy(ifr.ifr_newname, udev->name);
272
273         retval = ioctl(sk, SIOCSIFNAME, &ifr);
274         if (retval != 0)
275                 dbg("error changing net interface name");
276         close(sk);
277
278         return retval;
279 }
280
281 int udev_add_device(struct udevice *udev, struct sysfs_class_device *class_dev)
282 {
283         char *pos;
284         int retval = 0;
285
286         if (udev->type == 'b' || udev->type == 'c') {
287                 retval = get_major_minor(class_dev, udev);
288                 if (retval != 0) {
289                         dbg("no dev-file found, do nothing");
290                         return 0;
291                 }
292         }
293
294         if (namedev_name_device(udev, class_dev) != 0)
295                 goto exit;
296
297         dbg("adding name='%s'", udev->name);
298
299         selinux_init();
300
301         if (udev->type == 'b' || udev->type == 'c') {
302                 retval = create_node(udev);
303                 if (retval != 0)
304                         goto exit;
305
306                 if (udev_db_add_device(udev) != 0)
307                         dbg("udev_db_add_dev failed, but we create the node anyway, "
308                             "remove might not work for custom names");
309
310                 /* use full path to the environment */
311                 snprintf(udev->devname, NAME_SIZE, "%s/%s", udev_root, udev->name);
312                 udev->devname[NAME_SIZE-1] = '\0';
313
314         } else if (udev->type == 'n') {
315                 /* look if we want to change the name of the netif */
316                 if (strcmp(udev->name, udev->kernel_name) != 0) {
317                         retval = rename_net_if(udev);
318                         if (retval != 0)
319                                 goto exit;
320
321                         /* we've changed the name, now fake the devpath,
322                          * cause original kernel name sleeps with the fishes
323                          * and we don't get any event from the kernel now
324                          */
325                         pos = strrchr(udev->devpath, '/');
326                         if (pos != NULL) {
327                                 pos[1] = '\0';
328                                 strfieldcat(udev->devpath, udev->name);
329                                 setenv("DEVPATH", udev->devpath, 1);
330                         }
331
332                         /* use netif name for the environment */
333                         strfieldcpy(udev->devname, udev->name);
334                 }
335         }
336
337 exit:
338         selinux_restore();
339
340         return retval;
341 }