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