]> git.ipfire.org Git - thirdparty/systemd.git/blame - udev_add.c
[PATCH] avoid building klibc test programs and pass SUBDIRS= to klibc clean
[thirdparty/systemd.git] / udev_add.c
CommitLineData
ea733a2f
GKH
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>
32ff5bca 30#include <sys/stat.h>
10950dfe
GKH
31#include <sys/types.h>
32#include <grp.h>
f61d732a
KS
33#include <net/if.h>
34#include <sys/socket.h>
35#include <sys/ioctl.h>
36#include <linux/sockios.h>
10950dfe 37#include <pwd.h>
ea733a2f 38
c80da508 39#include "libsysfs/sysfs/libsysfs.h"
ea733a2f 40#include "udev.h"
9af5bb2f 41#include "udev_utils.h"
ea733a2f 42#include "udev_version.h"
54988802 43#include "logging.h"
ea733a2f 44#include "namedev.h"
02fa9ae5 45#include "udev_db.h"
ea733a2f 46
9825617b
HH
47#include "selinux.h"
48
707680b1
KS
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
ea733a2f 52 */
30defadd 53static int get_major_minor(struct sysfs_class_device *class_dev, struct udevice *udev)
ea733a2f 54{
5d4754f1 55 struct sysfs_attribute *attr = NULL;
ea733a2f 56
5d4754f1
DS
57 attr = sysfs_get_classdev_attr(class_dev, "dev");
58 if (attr == NULL)
bbbe503e 59 goto error;
5d4754f1 60 dbg("dev='%s'", attr->value);
ea733a2f 61
5d4754f1 62 if (sscanf(attr->value, "%u:%u", &udev->major, &udev->minor) != 2)
bbbe503e 63 goto error;
f7b4eca4 64 dbg("found major=%d, minor=%d", udev->major, udev->minor);
ea733a2f 65
bbbe503e
KS
66 return 0;
67error:
68 return -1;
ea733a2f
GKH
69}
70
49747bdc 71static int make_node(char *file, int major, int minor, unsigned int mode, uid_t uid, gid_t gid)
50e5de03 72{
49747bdc
KS
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);
9825617b 83 selinux_setfilecon(file,stats.st_mode);
49747bdc
KS
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);
50e5de03 91
49747bdc 92create:
9825617b 93 selinux_setfscreatecon(file, mode);
49747bdc 94 retval = mknod(file, mode, makedev(major, minor));
50e5de03
KS
95 if (retval != 0) {
96 dbg("mknod(%s, %#o, %u, %u) failed with error '%s'",
49747bdc 97 file, mode, major, minor, strerror(errno));
bbbe503e 98 goto exit;
50e5de03
KS
99 }
100
49747bdc
KS
101perms:
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));
bbbe503e 105 goto exit;
50e5de03
KS
106 }
107
108 if (uid != 0 || gid != 0) {
49747bdc
KS
109 dbg("chown(%s, %u, %u)", file, uid, gid);
110 if (chown(file, uid, gid) != 0) {
50e5de03 111 dbg("chown(%s, %u, %u) failed with error '%s'",
49747bdc 112 file, uid, gid, strerror(errno));
bbbe503e 113 goto exit;
50e5de03
KS
114 }
115 }
116
bbbe503e
KS
117exit:
118 return retval;
50e5de03
KS
119}
120
7a947ce5 121static int create_node(struct udevice *udev)
97853b4f 122{
9fe3f9a9 123 char filename[NAME_SIZE];
9fe3f9a9 124 char partitionname[NAME_SIZE];
e308ebb7
GKH
125 uid_t uid = 0;
126 gid_t gid = 0;
3d150dfb
KS
127 int i;
128 int tail;
ef672b3d
KS
129 char *pos;
130 int len;
3d150dfb 131
8673dcb8 132 snprintf(filename, NAME_SIZE, "%s/%s", udev_root, udev->name);
2b41e68a 133 filename[NAME_SIZE-1] = '\0';
5840bc63 134
7a947ce5 135 switch (udev->type) {
1331c889 136 case 'b':
7a947ce5 137 udev->mode |= S_IFBLK;
1331c889
GKH
138 break;
139 case 'c':
140 case 'u':
7a947ce5 141 udev->mode |= S_IFCHR;
1331c889
GKH
142 break;
143 case 'p':
7a947ce5 144 udev->mode |= S_IFIFO;
1331c889
GKH
145 break;
146 default:
7a947ce5 147 dbg("unknown node type %c\n", udev->type);
1331c889
GKH
148 return -EINVAL;
149 }
0abf54fc 150
3d150dfb 151 /* create parent directories if needed */
7a947ce5 152 if (strrchr(udev->name, '/'))
3d150dfb 153 create_path(filename);
218eae87 154
7a947ce5 155 if (udev->owner[0] != '\0') {
c19a6b30 156 char *endptr;
7a947ce5 157 unsigned long id = strtoul(udev->owner, &endptr, 10);
765cbd97 158 if (endptr[0] == '\0')
c19a6b30 159 uid = (uid_t) id;
10950dfe 160 else {
5895eb31 161 struct passwd *pw;
534c853d 162
7a947ce5 163 pw = getpwnam(udev->owner);
765cbd97 164 if (pw == NULL)
7a947ce5 165 dbg("specified user unknown '%s'", udev->owner);
10950dfe
GKH
166 else
167 uid = pw->pw_uid;
168 }
c19a6b30
KS
169 }
170
7a947ce5 171 if (udev->group[0] != '\0') {
c19a6b30 172 char *endptr;
7a947ce5 173 unsigned long id = strtoul(udev->group, &endptr, 10);
765cbd97 174 if (endptr[0] == '\0')
c19a6b30 175 gid = (gid_t) id;
10950dfe 176 else {
7a947ce5 177 struct group *gr = getgrnam(udev->group);
765cbd97 178 if (gr == NULL)
7a947ce5 179 dbg("specified group unknown '%s'", udev->group);
10950dfe
GKH
180 else
181 gid = gr->gr_gid;
182 }
c19a6b30
KS
183 }
184
7a947ce5 185 if (!udev->test_run) {
50e5de03 186 info("creating device node '%s'", filename);
7a947ce5 187 if (make_node(filename, udev->major, udev->minor, udev->mode, uid, gid) != 0)
bbbe503e 188 goto error;
ab2e5bd9
GKH
189 } else {
190 info("creating device node '%s', major = '%d', minor = '%d', "
191 "mode = '%#o', uid = '%d', gid = '%d'", filename,
7a947ce5 192 udev->major, udev->minor, (mode_t)udev->mode, uid, gid);
ab2e5bd9 193 }
50e5de03 194
bbbe503e 195 /* create all_partitions if requested */
7a947ce5
KS
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++) {
c58e36c0
KS
200 strfieldcpy(partitionname, filename);
201 strintcat(partitionname, i);
7a947ce5 202 make_node(partitionname, udev->major, udev->minor + i, udev->mode, uid, gid);
ab2e5bd9 203 }
50e5de03 204 }
3d150dfb
KS
205 }
206
bbbe503e 207 /* create symlink(s) if requested */
7a947ce5 208 foreach_strpart(udev->symlink, " ", pos, len) {
2b41e68a
KS
209 char linkname[NAME_SIZE];
210 char linktarget[NAME_SIZE];
211
17794d77 212 strfieldcpymax(linkname, pos, len+1);
8673dcb8 213 snprintf(filename, NAME_SIZE, "%s/%s", udev_root, linkname);
2b41e68a
KS
214 filename[NAME_SIZE-1] = '\0';
215
7a947ce5
KS
216 dbg("symlink '%s' to node '%s' requested", filename, udev->name);
217 if (!udev->test_run)
9fe3f9a9
KS
218 if (strrchr(linkname, '/'))
219 create_path(filename);
220
221 /* optimize relative link */
222 linktarget[0] = '\0';
223 i = 0;
224 tail = 0;
7a947ce5
KS
225 while ((udev->name[i] == linkname[i]) && udev->name[i]) {
226 if (udev->name[i] == '/')
9fe3f9a9
KS
227 tail = i+1;
228 i++;
229 }
230 while (linkname[i] != '\0') {
231 if (linkname[i] == '/')
232 strfieldcat(linktarget, "../");
233 i++;
234 }
3d150dfb 235
7a947ce5 236 strfieldcat(linktarget, &udev->name[tail]);
3d150dfb 237
9fe3f9a9 238 dbg("symlink(%s, %s)", linktarget, filename);
7a947ce5 239 if (!udev->test_run) {
9825617b 240 selinux_setfscreatecon(filename, S_IFLNK);
49747bdc 241 unlink(filename);
bbbe503e 242 if (symlink(linktarget, filename) != 0)
9fe3f9a9
KS
243 dbg("symlink(%s, %s) failed with error '%s'",
244 linktarget, filename, strerror(errno));
4763256c 245 }
c19a6b30
KS
246 }
247
bbbe503e
KS
248 return 0;
249error:
250 return -1;
ea733a2f
GKH
251}
252
7a947ce5 253static int rename_net_if(struct udevice *udev)
f61d732a
KS
254{
255 int sk;
256 struct ifreq ifr;
257 int retval;
258
7a947ce5
KS
259 dbg("changing net interface name from '%s' to '%s'", udev->kernel_name, udev->name);
260 if (udev->test_run)
bbbe503e
KS
261 return 0;
262
f61d732a
KS
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));
7a947ce5
KS
270 strfieldcpy(ifr.ifr_name, udev->kernel_name);
271 strfieldcpy(ifr.ifr_newname, udev->name);
f61d732a 272
f61d732a
KS
273 retval = ioctl(sk, SIOCSIFNAME, &ifr);
274 if (retval != 0)
275 dbg("error changing net interface name");
4a539daf 276 close(sk);
f61d732a
KS
277
278 return retval;
279}
280
7a947ce5 281int udev_add_device(struct udevice *udev, struct sysfs_class_device *class_dev)
ea733a2f 282{
bbbe503e 283 char *pos;
707680b1 284 int retval = 0;
ea733a2f 285
7a947ce5
KS
286 if (udev->type == 'b' || udev->type == 'c') {
287 retval = get_major_minor(class_dev, udev);
f61d732a 288 if (retval != 0) {
707680b1 289 dbg("no dev-file found, do nothing");
5d24c6ca 290 return 0;
f61d732a 291 }
ea733a2f
GKH
292 }
293
7a947ce5 294 if (namedev_name_device(udev, class_dev) != 0)
30defadd
GKH
295 goto exit;
296
7a947ce5 297 dbg("adding name='%s'", udev->name);
bbbe503e 298
9825617b 299 selinux_init();
5d24c6ca
KS
300
301 if (udev->type == 'b' || udev->type == 'c') {
7a947ce5 302 retval = create_node(udev);
c4603a07 303 if (retval != 0)
bbbe503e 304 goto exit;
9b28a52a 305
02fa9ae5
KS
306 if (udev_db_add_device(udev) != 0)
307 dbg("udev_db_add_dev failed, but we create the node anyway, "
5d24c6ca 308 "remove might not work for custom names");
f61d732a 309
5d24c6ca 310 /* use full path to the environment */
8673dcb8 311 snprintf(udev->devname, NAME_SIZE, "%s/%s", udev_root, udev->name);
2b41e68a 312 udev->devname[NAME_SIZE-1] = '\0';
5d24c6ca
KS
313
314 } else if (udev->type == 'n') {
315 /* look if we want to change the name of the netif */
7a947ce5
KS
316 if (strcmp(udev->name, udev->kernel_name) != 0) {
317 retval = rename_net_if(udev);
c4603a07 318 if (retval != 0)
bbbe503e 319 goto exit;
5d24c6ca
KS
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
bbbe503e 324 */
7a947ce5 325 pos = strrchr(udev->devpath, '/');
bbbe503e
KS
326 if (pos != NULL) {
327 pos[1] = '\0';
7a947ce5 328 strfieldcat(udev->devpath, udev->name);
5d24c6ca 329 setenv("DEVPATH", udev->devpath, 1);
bbbe503e 330 }
9b28a52a 331
5d24c6ca
KS
332 /* use netif name for the environment */
333 strfieldcpy(udev->devname, udev->name);
334 }
f61d732a 335 }
ea733a2f
GKH
336
337exit:
9825617b 338 selinux_restore();
30defadd 339
ea733a2f
GKH
340 return retval;
341}