chiark / gitweb /
[PATCH] udev_dbus can now compile properly, but linnking is another story...
[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 #ifndef __KLIBC__
34 #include <pwd.h>
35 #include <utmp.h>
36 #endif
37
38 #include "libsysfs/sysfs/libsysfs.h"
39 #include "udev.h"
40 #include "udev_lib.h"
41 #include "udev_version.h"
42 #include "logging.h"
43 #include "namedev.h"
44 #include "udevdb.h"
45 #include "klibc_fixups.h"
46
47 #define LOCAL_USER "$local"
48
49 /* 
50  * Right now the major/minor of a device is stored in a file called
51  * "dev" in sysfs.
52  * The number is stored as:
53  *      MM:mm
54  *              MM is the major
55  *              mm is the minor
56  *              The value is in decimal.
57  */
58 static int get_major_minor(struct sysfs_class_device *class_dev, struct udevice *udev)
59 {
60         int retval = -ENODEV;
61         struct sysfs_attribute *attr = NULL;
62
63         attr = sysfs_get_classdev_attr(class_dev, "dev");
64         if (attr == NULL)
65                 goto exit;
66         dbg("dev='%s'", attr->value);
67
68         if (sscanf(attr->value, "%u:%u", &udev->major, &udev->minor) != 2)
69                 goto exit;
70         dbg("found major=%d, minor=%d", udev->major, udev->minor);
71
72         retval = 0;
73 exit:
74         return retval;
75 }
76
77 static int create_path(char *file)
78 {
79         char p[NAME_SIZE];
80         char *pos;
81         int retval;
82         struct stat stats;
83         
84         strfieldcpy(p, file);
85         pos = strchr(p+1, '/');
86         while (1) {
87                 pos = strchr(pos+1, '/');
88                 if (pos == NULL)
89                         break;
90                 *pos = 0x00;
91                 if (stat(p, &stats)) {
92                         retval = mkdir(p, 0755);
93                         if (retval != 0) {
94                                 dbg("mkdir(%s) failed with error '%s'",
95                                     p, strerror(errno));
96                                 return retval;
97                         }
98                         dbg("created '%s'", p);
99                 }
100                 *pos = '/';
101         }
102         return 0;
103 }
104
105 static int make_node(char *filename, int major, int minor, unsigned int mode, uid_t uid, gid_t gid)
106 {
107         int retval;
108
109         retval = mknod(filename, mode, makedev(major, minor));
110         if (retval != 0) {
111                 dbg("mknod(%s, %#o, %u, %u) failed with error '%s'",
112                     filename, mode, major, minor, strerror(errno));
113                 return retval;
114         }
115
116         dbg("chmod(%s, %#o)", filename, mode);
117         retval = chmod(filename, mode);
118         if (retval != 0) {
119                 dbg("chmod(%s, %#o) failed with error '%s'",
120                     filename, mode, strerror(errno));
121                 return retval;
122         }
123
124         if (uid != 0 || gid != 0) {
125                 dbg("chown(%s, %u, %u)", filename, uid, gid);
126                 retval = chown(filename, uid, gid);
127                 if (retval != 0) {
128                         dbg("chown(%s, %u, %u) failed with error '%s'",
129                             filename, uid, gid, strerror(errno));
130                         return retval;
131                 }
132         }
133
134         return 0;
135 }
136
137 /* get the local logged in user */
138 static void set_to_local_user(char *user)
139 {
140         struct utmp *u;
141         time_t recent = 0;
142
143         strfieldcpymax(user, default_owner_str, OWNER_SIZE);
144         setutent();
145         while (1) {
146                 u = getutent();
147                 if (u == NULL)
148                         break;
149
150                 /* is this a user login ? */
151                 if (u->ut_type != USER_PROCESS)
152                         continue;
153
154                 /* is this a local login ? */
155                 if (strcmp(u->ut_host, ""))
156                         continue;
157
158                 if (u->ut_time > recent) {
159                         recent = u->ut_time;
160                         strfieldcpymax(user, u->ut_user, OWNER_SIZE);
161                         dbg("local user is '%s'", user);
162                         break;
163                 }
164         }
165         endutent();
166 }
167
168 /* Used to unlink existing files to ensure that our new file/symlink is created */
169 static int unlink_entry(char *filename)
170 {
171         struct stat stats;
172         int retval = 0;
173         
174         if (lstat(filename, &stats) == 0) {
175                 if ((stats.st_mode & S_IFMT) != S_IFDIR) {
176                         retval = unlink(filename);
177                         if (retval) {
178                                 dbg("unlink(%s) failed with error '%s'",
179                                     filename, strerror(errno));
180                         }
181                 }
182         }
183         return retval;
184 }
185
186 static int create_node(struct udevice *dev, int fake)
187 {
188         char filename[NAME_SIZE];
189         char linkname[NAME_SIZE];
190         char linktarget[NAME_SIZE];
191         char partitionname[NAME_SIZE];
192         int retval = 0;
193         uid_t uid = 0;
194         gid_t gid = 0;
195         int i;
196         int tail;
197         char *pos;
198         int len;
199
200         strfieldcpy(filename, udev_root);
201         strfieldcat(filename, dev->name);
202
203         switch (dev->type) {
204         case 'b':
205                 dev->mode |= S_IFBLK;
206                 break;
207         case 'c':
208         case 'u':
209                 dev->mode |= S_IFCHR;
210                 break;
211         case 'p':
212                 dev->mode |= S_IFIFO;
213                 break;
214         default:
215                 dbg("unknown node type %c\n", dev->type);
216                 return -EINVAL;
217         }
218
219         /* create parent directories if needed */
220         if (strrchr(dev->name, '/'))
221                 create_path(filename);
222
223         if (dev->owner[0] != '\0') {
224                 char *endptr;
225                 unsigned long id = strtoul(dev->owner, &endptr, 10);
226                 if (endptr[0] == '\0')
227                         uid = (uid_t) id;
228                 else {
229                         struct passwd *pw;
230                         if (strncmp(dev->owner, LOCAL_USER, sizeof(LOCAL_USER)) == 0)
231                                 set_to_local_user(dev->owner);
232
233                         pw = getpwnam(dev->owner);
234                         if (pw == NULL)
235                                 dbg("specified user unknown '%s'", dev->owner);
236                         else
237                                 uid = pw->pw_uid;
238                 }
239         }
240
241         if (dev->group[0] != '\0') {
242                 char *endptr;
243                 unsigned long id = strtoul(dev->group, &endptr, 10);
244                 if (endptr[0] == '\0')
245                         gid = (gid_t) id;
246                 else {
247                         struct group *gr = getgrnam(dev->group);
248                         if (gr == NULL)
249                                 dbg("specified group unknown '%s'", dev->group);
250                         else
251                                 gid = gr->gr_gid;
252                 }
253         }
254
255         if (!fake) {
256                 unlink_entry(filename);
257                 info("creating device node '%s'", filename);
258                 make_node(filename, dev->major, dev->minor, dev->mode, uid, gid);
259         } else {
260                 info("creating device node '%s', major = '%d', minor = '%d', "
261                      "mode = '%#o', uid = '%d', gid = '%d'", filename,
262                      dev->major, dev->minor, (mode_t)dev->mode, uid, gid);
263         }
264
265         /* create partitions if requested */
266         if (dev->partitions > 0) {
267                 info("creating device partition nodes '%s[1-%i]'", filename, dev->partitions);
268                 if (!fake) {
269                         for (i = 1; i <= dev->partitions; i++) {
270                                 strfieldcpy(partitionname, filename);
271                                 strintcat(partitionname, i);
272                                 unlink_entry(partitionname);
273                                 make_node(partitionname, dev->major,
274                                           dev->minor + i, dev->mode, uid, gid);
275                         }
276                 }
277         }
278
279         /* create symlink if requested */
280         foreach_strpart(dev->symlink, " ", pos, len) {
281                 strfieldcpymax(linkname, pos, len+1);
282                 strfieldcpy(filename, udev_root);
283                 strfieldcat(filename, linkname);
284                 dbg("symlink '%s' to node '%s' requested", filename, dev->name);
285                 if (!fake)
286                         if (strrchr(linkname, '/'))
287                                 create_path(filename);
288
289                 /* optimize relative link */
290                 linktarget[0] = '\0';
291                 i = 0;
292                 tail = 0;
293                 while ((dev->name[i] == linkname[i]) && dev->name[i]) {
294                         if (dev->name[i] == '/')
295                                 tail = i+1;
296                         i++;
297                 }
298                 while (linkname[i] != '\0') {
299                         if (linkname[i] == '/')
300                                 strfieldcat(linktarget, "../");
301                         i++;
302                 }
303
304                 strfieldcat(linktarget, &dev->name[tail]);
305
306                 if (!fake)
307                         unlink_entry(filename);
308
309                 dbg("symlink(%s, %s)", linktarget, filename);
310                 if (!fake) {
311                         retval = symlink(linktarget, filename);
312                         if (retval != 0)
313                                 dbg("symlink(%s, %s) failed with error '%s'",
314                                     linktarget, filename, strerror(errno));
315                 }
316         }
317
318         return retval;
319 }
320
321 static struct sysfs_class_device *get_class_dev(char *device_name)
322 {
323         char dev_path[SYSFS_PATH_MAX];
324         struct sysfs_class_device *class_dev = NULL;
325
326         strfieldcpy(dev_path, sysfs_path);
327         strfieldcat(dev_path, device_name);
328         dbg("looking at '%s'", dev_path);
329
330         /* open up the sysfs class device for this thing... */
331         class_dev = sysfs_open_class_device_path(dev_path);
332         if (class_dev == NULL) {
333                 dbg ("sysfs_open_class_device_path failed");
334                 goto exit;
335         }
336         dbg("class_dev->name='%s'", class_dev->name);
337
338 exit:
339         return class_dev;
340 }
341
342 /* wait for the "dev" file to show up in the directory in sysfs.
343  * If it doesn't happen in about 10 seconds, give up.
344  */
345 #define SECONDS_TO_WAIT_FOR_DEV         10
346 static int sleep_for_dev(char *path)
347 {
348         char filename[SYSFS_PATH_MAX + 6];
349         int loop = SECONDS_TO_WAIT_FOR_DEV;
350         int retval;
351
352         strfieldcpy(filename, sysfs_path);
353         strfieldcat(filename, path);
354         strfieldcat(filename, "/dev");
355
356         while (loop--) {
357                 struct stat buf;
358
359                 dbg("looking for '%s'", filename);
360                 retval = stat(filename, &buf);
361                 if (retval == 0)
362                         goto exit;
363
364                 /* sleep to give the kernel a chance to create the dev file */
365                 sleep(1);
366         }
367         retval = -ENODEV;
368 exit:
369         return retval;
370 }
371
372 int udev_add_device(char *path, char *subsystem, int fake)
373 {
374         struct sysfs_class_device *class_dev = NULL;
375         struct udevice dev;
376         int retval = -EINVAL;
377
378         memset(&dev, 0x00, sizeof(dev));
379
380         /* for now, the block layer is the only place where block devices are */
381         if (strcmp(subsystem, "block") == 0)
382                 dev.type = 'b';
383         else
384                 dev.type = 'c';
385
386         retval = sleep_for_dev(path);
387         if (retval != 0)
388                 goto exit;
389
390         class_dev = get_class_dev(path);
391         if (class_dev == NULL)
392                 goto exit;
393
394         retval = get_major_minor(class_dev, &dev);
395         if (retval != 0) {
396                 dbg("get_major_minor failed");
397                 goto exit;
398         }
399
400         retval = namedev_name_device(class_dev, &dev);
401         if (retval != 0)
402                 goto exit;
403
404         if (!fake) {
405                 retval = udevdb_add_dev(path, &dev);
406                 if (retval != 0)
407                         dbg("udevdb_add_dev failed, but we are going to try "
408                             "to create the node anyway. But remove might not "
409                             "work properly for this device.");
410
411         }
412         dbg("name='%s'", dev.name);
413         retval = create_node(&dev, fake);
414
415         if ((retval == 0) && (!fake))
416                 dev_d_send(&dev, subsystem);
417
418 exit:
419         if (class_dev)
420                 sysfs_close_class_device(class_dev);
421
422         return retval;
423 }