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