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