2 * devtmpfs - kernel-maintained tmpfs-based /dev
6 * During bootup, before any driver core device is registered,
7 * devtmpfs, a tmpfs-based filesystem is created. Every driver-core
8 * device which requests a device node, will add a node in this
10 * By default, all devices are named after the the name of the
11 * device, owned by root and have a default mode of 0600. Subsystems
12 * can overwrite the default setting if needed.
15 #include <linux/kernel.h>
16 #include <linux/syscalls.h>
17 #include <linux/mount.h>
18 #include <linux/device.h>
19 #include <linux/genhd.h>
20 #include <linux/namei.h>
22 #include <linux/shmem_fs.h>
23 #include <linux/ramfs.h>
24 #include <linux/sched.h>
25 #include <linux/slab.h>
26 #include <linux/kthread.h>
28 static struct task_struct *thread;
30 #if defined CONFIG_DEVTMPFS_MOUNT
31 static int mount_dev = 1;
36 static DEFINE_SPINLOCK(req_lock);
40 struct completion done;
43 mode_t mode; /* 0 => delete */
47 static int __init mount_param(char *str)
49 mount_dev = simple_strtoul(str, NULL, 0);
52 __setup("devtmpfs.mount=", mount_param);
54 static struct dentry *dev_mount(struct file_system_type *fs_type, int flags,
55 const char *dev_name, void *data)
58 return mount_single(fs_type, flags, data, shmem_fill_super);
60 return mount_single(fs_type, flags, data, ramfs_fill_super);
64 static struct file_system_type dev_fs_type = {
67 .kill_sb = kill_litter_super,
71 static inline int is_blockdev(struct device *dev)
73 return dev->class == &block_class;
76 static inline int is_blockdev(struct device *dev) { return 0; }
79 int devtmpfs_create_node(struct device *dev)
81 const char *tmp = NULL;
88 req.name = device_get_devnode(dev, &req.mode, &tmp);
101 init_completion(&req.done);
103 spin_lock(&req_lock);
106 spin_unlock(&req_lock);
108 wake_up_process(thread);
109 wait_for_completion(&req.done);
116 int devtmpfs_delete_node(struct device *dev)
118 const char *tmp = NULL;
124 req.name = device_get_devnode(dev, NULL, &tmp);
131 init_completion(&req.done);
133 spin_lock(&req_lock);
136 spin_unlock(&req_lock);
138 wake_up_process(thread);
139 wait_for_completion(&req.done);
145 static int dev_mkdir(const char *name, mode_t mode)
147 struct dentry *dentry;
151 dentry = kern_path_create(AT_FDCWD, name, &path, 1);
153 return PTR_ERR(dentry);
155 err = vfs_mkdir(path.dentry->d_inode, dentry, mode);
157 /* mark as kernel-created inode */
158 dentry->d_inode->i_private = &thread;
160 mutex_unlock(&path.dentry->d_inode->i_mutex);
165 static int create_path(const char *nodepath)
171 /* parent directories do not exist, create them */
172 path = kstrdup(nodepath, GFP_KERNEL);
182 err = dev_mkdir(path, 0755);
183 if (err && err != -EEXIST)
192 static int handle_create(const char *nodename, mode_t mode, struct device *dev)
194 struct dentry *dentry;
198 dentry = kern_path_create(AT_FDCWD, nodename, &path, 0);
199 if (dentry == ERR_PTR(-ENOENT)) {
200 create_path(nodename);
201 dentry = kern_path_create(AT_FDCWD, nodename, &path, 0);
204 return PTR_ERR(dentry);
206 err = vfs_mknod(path.dentry->d_inode,
207 dentry, mode, dev->devt);
209 struct iattr newattrs;
211 /* fixup possibly umasked mode */
212 newattrs.ia_mode = mode;
213 newattrs.ia_valid = ATTR_MODE;
214 mutex_lock(&dentry->d_inode->i_mutex);
215 notify_change(dentry, &newattrs);
216 mutex_unlock(&dentry->d_inode->i_mutex);
218 /* mark as kernel-created inode */
219 dentry->d_inode->i_private = &thread;
223 mutex_unlock(&path.dentry->d_inode->i_mutex);
228 static int dev_rmdir(const char *name)
231 struct dentry *dentry;
234 err = kern_path_parent(name, &nd);
238 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
239 dentry = lookup_one_len(nd.last.name, nd.path.dentry, nd.last.len);
240 if (!IS_ERR(dentry)) {
241 if (dentry->d_inode) {
242 if (dentry->d_inode->i_private == &thread)
243 err = vfs_rmdir(nd.path.dentry->d_inode,
252 err = PTR_ERR(dentry);
255 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
260 static int delete_path(const char *nodepath)
265 path = kstrdup(nodepath, GFP_KERNEL);
272 base = strrchr(path, '/');
276 err = dev_rmdir(path);
285 static int dev_mynode(struct device *dev, struct inode *inode, struct kstat *stat)
287 /* did we create it */
288 if (inode->i_private != &thread)
291 /* does the dev_t match */
292 if (is_blockdev(dev)) {
293 if (!S_ISBLK(stat->mode))
296 if (!S_ISCHR(stat->mode))
299 if (stat->rdev != dev->devt)
306 static int handle_remove(const char *nodename, struct device *dev)
309 struct dentry *dentry;
314 err = kern_path_parent(nodename, &nd);
318 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
319 dentry = lookup_one_len(nd.last.name, nd.path.dentry, nd.last.len);
320 if (!IS_ERR(dentry)) {
321 if (dentry->d_inode) {
322 err = vfs_getattr(nd.path.mnt, dentry, &stat);
323 if (!err && dev_mynode(dev, dentry->d_inode, &stat)) {
324 struct iattr newattrs;
326 * before unlinking this node, reset permissions
327 * of possible references like hardlinks
331 newattrs.ia_mode = stat.mode & ~0777;
333 ATTR_UID|ATTR_GID|ATTR_MODE;
334 mutex_lock(&dentry->d_inode->i_mutex);
335 notify_change(dentry, &newattrs);
336 mutex_unlock(&dentry->d_inode->i_mutex);
337 err = vfs_unlink(nd.path.dentry->d_inode,
339 if (!err || err == -ENOENT)
347 err = PTR_ERR(dentry);
349 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
352 if (deleted && strchr(nodename, '/'))
353 delete_path(nodename);
358 * If configured, or requested by the commandline, devtmpfs will be
359 * auto-mounted after the kernel mounted the root filesystem.
361 int devtmpfs_mount(const char *mntdir)
371 err = sys_mount("devtmpfs", (char *)mntdir, "devtmpfs", MS_SILENT, NULL);
373 printk(KERN_INFO "devtmpfs: error mounting %i\n", err);
375 printk(KERN_INFO "devtmpfs: mounted\n");
379 static __initdata DECLARE_COMPLETION(setup_done);
381 static int handle(const char *name, mode_t mode, struct device *dev)
384 return handle_create(name, mode, dev);
386 return handle_remove(name, dev);
389 static int devtmpfsd(void *p)
391 char options[] = "mode=0755";
393 *err = sys_unshare(CLONE_NEWNS);
396 *err = sys_mount("devtmpfs", "/", "devtmpfs", MS_SILENT, options);
399 sys_chdir("/.."); /* will traverse into overmounted root */
401 complete(&setup_done);
403 spin_lock(&req_lock);
405 struct req *req = requests;
407 spin_unlock(&req_lock);
409 req->err = handle(req->name, req->mode, req->dev);
410 complete(&req->done);
413 spin_lock(&req_lock);
415 set_current_state(TASK_INTERRUPTIBLE);
416 spin_unlock(&req_lock);
418 __set_current_state(TASK_RUNNING);
422 complete(&setup_done);
427 * Create devtmpfs instance, driver-core devices will add their device
430 int __init devtmpfs_init(void)
432 int err = register_filesystem(&dev_fs_type);
434 printk(KERN_ERR "devtmpfs: unable to register devtmpfs "
439 thread = kthread_run(devtmpfsd, &err, "kdevtmpfs");
440 if (!IS_ERR(thread)) {
441 wait_for_completion(&setup_done);
443 err = PTR_ERR(thread);
448 printk(KERN_ERR "devtmpfs: unable to create devtmpfs %i\n", err);
449 unregister_filesystem(&dev_fs_type);
453 printk(KERN_INFO "devtmpfs: initialized\n");