Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / init / do_mounts_devfs.c
blobcc526474690a68a155282e75154d25d0dff8f423
2 #include <linux/kernel.h>
3 #include <linux/dirent.h>
4 #include <linux/string.h>
6 #include "do_mounts.h"
8 void __init mount_devfs(void)
10 sys_mount("devfs", "/dev", "devfs", 0, NULL);
13 void __init umount_devfs(char *path)
15 sys_umount(path, 0);
19 * If the dir will fit in *buf, return its length. If it won't fit, return
20 * zero. Return -ve on error.
22 static int __init do_read_dir(int fd, void *buf, int len)
24 long bytes, n;
25 char *p = buf;
26 sys_lseek(fd, 0, 0);
28 for (bytes = 0; bytes < len; bytes += n) {
29 n = sys_getdents64(fd, (struct linux_dirent64 *)(p + bytes),
30 len - bytes);
31 if (n < 0)
32 return n;
33 if (n == 0)
34 return bytes;
36 return 0;
40 * Try to read all of a directory. Returns the contents at *p, which
41 * is kmalloced memory. Returns the number of bytes read at *len. Returns
42 * NULL on error.
44 static void * __init read_dir(char *path, int *len)
46 int size;
47 int fd = sys_open(path, 0, 0);
49 *len = 0;
50 if (fd < 0)
51 return NULL;
53 for (size = 1 << 9; size <= (PAGE_SIZE << MAX_ORDER); size <<= 1) {
54 void *p = kmalloc(size, GFP_KERNEL);
55 int n;
56 if (!p)
57 break;
58 n = do_read_dir(fd, p, size);
59 if (n > 0) {
60 sys_close(fd);
61 *len = n;
62 return p;
64 kfree(p);
65 if (n == -EINVAL)
66 continue; /* Try a larger buffer */
67 if (n < 0)
68 break;
70 sys_close(fd);
71 return NULL;
75 * recursively scan <path>, looking for a device node of type <dev>
77 static int __init find_in_devfs(char *path, unsigned dev)
79 char *end = path + strlen(path);
80 int rest = path + 64 - end;
81 int size;
82 char *p = read_dir(path, &size);
83 char *s;
85 if (!p)
86 return -1;
87 for (s = p; s < p + size; s += ((struct linux_dirent64 *)s)->d_reclen) {
88 struct linux_dirent64 *d = (struct linux_dirent64 *)s;
89 if (strlen(d->d_name) + 2 > rest)
90 continue;
91 switch (d->d_type) {
92 case DT_BLK:
93 sprintf(end, "/%s", d->d_name);
94 if (bstat(path) != dev)
95 break;
96 kfree(p);
97 return 0;
98 case DT_DIR:
99 if (strcmp(d->d_name, ".") == 0)
100 break;
101 if (strcmp(d->d_name, "..") == 0)
102 break;
103 sprintf(end, "/%s", d->d_name);
104 if (find_in_devfs(path, dev) < 0)
105 break;
106 kfree(p);
107 return 0;
110 kfree(p);
111 return -1;
115 * create a device node called <name> which points to
116 * <devfs_name> if possible, otherwise find a device node
117 * which matches <dev> and make <name> a symlink pointing to it.
119 int __init create_dev(char *name, dev_t dev, char *devfs_name)
121 char path[64];
123 sys_unlink(name);
124 if (devfs_name && devfs_name[0]) {
125 if (strncmp(devfs_name, "/dev/", 5) == 0)
126 devfs_name += 5;
127 sprintf(path, "/dev/%s", devfs_name);
128 if (sys_access(path, 0) == 0)
129 return sys_symlink(devfs_name, name);
131 if (!dev)
132 return -1;
133 strcpy(path, "/dev");
134 if (find_in_devfs(path, new_encode_dev(dev)) < 0)
135 return -1;
136 return sys_symlink(path + 5, name);