chiark / gitweb /
[PATCH] trivial namedev cleanup
[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         uid_t uid = 0;
117         gid_t gid = 0;
118         int tail;
119         char *pos;
120         int len;
121                 int i;
122
123         snprintf(filename, NAME_SIZE, "%s/%s", udev_root, udev->name);
124         filename[NAME_SIZE-1] = '\0';
125
126         /* create parent directories if needed */
127         if (strchr(udev->name, '/'))
128                 create_path(filename);
129
130         if (udev->owner[0] != '\0') {
131                 char *endptr;
132                 unsigned long id = strtoul(udev->owner, &endptr, 10);
133
134                 if (endptr[0] == '\0')
135                         uid = (uid_t) id;
136                 else {
137                         struct passwd *pw;
138
139                         pw = getpwnam(udev->owner);
140                         if (pw == NULL)
141                                 dbg("specified user unknown '%s'", udev->owner);
142                         else
143                                 uid = pw->pw_uid;
144                 }
145         }
146
147         if (udev->group[0] != '\0') {
148                 char *endptr;
149                 unsigned long id = strtoul(udev->group, &endptr, 10);
150
151                 if (endptr[0] == '\0')
152                         gid = (gid_t) id;
153                 else {
154                         struct group *gr = getgrnam(udev->group);
155                         if (gr == NULL)
156                                 dbg("specified group unknown '%s'", udev->group);
157                         else
158                                 gid = gr->gr_gid;
159                 }
160         }
161
162         if (!udev->test_run) {
163                 info("creating device node '%s'", filename);
164                 if (udev_make_node(udev, filename, udev->devt, udev->mode, uid, gid) != 0)
165                         goto error;
166         } else {
167                 info("creating device node '%s', major = '%d', minor = '%d', "
168                      "mode = '%#o', uid = '%d', gid = '%d'", filename,
169                      major(udev->devt), minor(udev->devt), udev->mode, uid, gid);
170         }
171
172         /* create all_partitions if requested */
173         if (udev->partitions) {
174                 struct sysfs_attribute *attr;
175                 int range;
176
177                 /* take the maximum registered minor range */
178                 attr = sysfs_get_classdev_attr(class_dev, "range");
179                 if (attr) {
180                         range = atoi(attr->value);
181                         if (range > 1)
182                                 udev->partitions = range-1;
183                 }
184                 info("creating device partition nodes '%s[1-%i]'", filename, udev->partitions);
185                 if (!udev->test_run) {
186                         for (i = 1; i <= udev->partitions; i++) {
187                                 dev_t part_devt;
188
189                                 strfieldcpy(partitionname, filename);
190                                 strintcat(partitionname, i);
191                                 part_devt = makedev(major(udev->devt), minor(udev->devt)+1);
192                                 udev_make_node(udev, partitionname, part_devt, udev->mode, uid, gid);
193                         }
194                 }
195         }
196
197         /* create symlink(s) if requested */
198         foreach_strpart(udev->symlink, " ", pos, len) {
199                 char linkname[NAME_SIZE];
200                 char linktarget[NAME_SIZE];
201
202                 strfieldcpymax(linkname, pos, len+1);
203                 snprintf(filename, NAME_SIZE, "%s/%s", udev_root, linkname);
204                 filename[NAME_SIZE-1] = '\0';
205
206                 dbg("symlink '%s' to node '%s' requested", filename, udev->name);
207                 if (!udev->test_run)
208                         if (strrchr(linkname, '/'))
209                                 create_path(filename);
210
211                 /* optimize relative link */
212                 linktarget[0] = '\0';
213                 i = 0;
214                 tail = 0;
215                 while ((udev->name[i] == linkname[i]) && udev->name[i]) {
216                         if (udev->name[i] == '/')
217                                 tail = i+1;
218                         i++;
219                 }
220                 while (linkname[i] != '\0') {
221                         if (linkname[i] == '/')
222                                 strfieldcat(linktarget, "../");
223                         i++;
224                 }
225
226                 strfieldcat(linktarget, &udev->name[tail]);
227
228                 dbg("symlink(%s, %s)", linktarget, filename);
229                 if (!udev->test_run) {
230                         selinux_setfscreatecon(filename, udev->kernel_name, S_IFLNK);
231                         unlink(filename);
232                         if (symlink(linktarget, filename) != 0)
233                                 dbg("symlink(%s, %s) failed with error '%s'",
234                                     linktarget, filename, strerror(errno));
235                 }
236         }
237
238         return 0;
239 error:
240         return -1;
241 }
242
243 static int rename_net_if(struct udevice *udev)
244 {
245         int sk;
246         struct ifreq ifr;
247         int retval;
248
249         dbg("changing net interface name from '%s' to '%s'", udev->kernel_name, udev->name);
250         if (udev->test_run)
251                 return 0;
252
253         sk = socket(PF_INET, SOCK_DGRAM, 0);
254         if (sk < 0) {
255                 dbg("error opening socket");
256                 return -1;
257         }
258
259         memset(&ifr, 0x00, sizeof(struct ifreq));
260         strfieldcpy(ifr.ifr_name, udev->kernel_name);
261         strfieldcpy(ifr.ifr_newname, udev->name);
262
263         retval = ioctl(sk, SIOCSIFNAME, &ifr);
264         if (retval != 0)
265                 dbg("error changing net interface name");
266         close(sk);
267
268         return retval;
269 }
270
271 int udev_add_device(struct udevice *udev, struct sysfs_class_device *class_dev)
272 {
273         char *pos;
274         int retval = 0;
275
276         if (udev->type == BLOCK || udev->type == CLASS) {
277                 udev->devt = get_devt(class_dev);
278                 if (!udev->devt) {
279                         dbg("no dev-file found, do nothing");
280                         return 0;
281                 }
282         }
283
284         if (namedev_name_device(udev, class_dev) != 0)
285                 return 0;
286
287         dbg("adding name='%s'", udev->name);
288
289         selinux_init();
290
291         if (udev->type == BLOCK || udev->type == CLASS) {
292                 retval = create_node(udev, class_dev);
293                 if (retval != 0)
294                         goto exit;
295
296                 if (udev_db_add_device(udev) != 0)
297                         dbg("udev_db_add_dev failed, but we create the node anyway, "
298                             "remove might not work for custom names");
299
300                 /* use full path to the environment */
301                 snprintf(udev->devname, NAME_SIZE, "%s/%s", udev_root, udev->name);
302                 udev->devname[NAME_SIZE-1] = '\0';
303
304         } else if (udev->type == NET) {
305                 /* look if we want to change the name of the netif */
306                 if (strcmp(udev->name, udev->kernel_name) != 0) {
307                         retval = rename_net_if(udev);
308                         if (retval != 0)
309                                 goto exit;
310
311                         /* we've changed the name, now fake the devpath, cause the
312                          * original kernel name sleeps with the fishes and we don't
313                          * get an event from the kernel with the new name
314                          */
315                         pos = strrchr(udev->devpath, '/');
316                         if (pos != NULL) {
317                                 pos[1] = '\0';
318                                 strfieldcat(udev->devpath, udev->name);
319                                 setenv("DEVPATH", udev->devpath, 1);
320                                 setenv("INTERFACE", udev->name, 1);
321                         }
322
323                         /* use netif name for the environment */
324                         strfieldcpy(udev->devname, udev->name);
325                 }
326         }
327
328 exit:
329         selinux_restore();
330
331         return retval;
332 }