2 * devtmpfs - kernel-maintained tmpfs-based /dev
4 * Copyright (C) 2009, Kay Sievers <kay.sievers@vrfy.org>
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 name of the device,
11 * owned by root and have a default mode of 0600. Subsystems can
12 * 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 umode_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
, umode_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
;
159 done_path_create(&path
, dentry
);
163 static int create_path(const char *nodepath
)
169 /* parent directories do not exist, create them */
170 path
= kstrdup(nodepath
, GFP_KERNEL
);
180 err
= dev_mkdir(path
, 0755);
181 if (err
&& err
!= -EEXIST
)
190 static int handle_create(const char *nodename
, umode_t mode
, struct device
*dev
)
192 struct dentry
*dentry
;
196 dentry
= kern_path_create(AT_FDCWD
, nodename
, &path
, 0);
197 if (dentry
== ERR_PTR(-ENOENT
)) {
198 create_path(nodename
);
199 dentry
= kern_path_create(AT_FDCWD
, nodename
, &path
, 0);
202 return PTR_ERR(dentry
);
204 err
= vfs_mknod(path
.dentry
->d_inode
,
205 dentry
, mode
, dev
->devt
);
207 struct iattr newattrs
;
209 /* fixup possibly umasked mode */
210 newattrs
.ia_mode
= mode
;
211 newattrs
.ia_valid
= ATTR_MODE
;
212 mutex_lock(&dentry
->d_inode
->i_mutex
);
213 notify_change(dentry
, &newattrs
);
214 mutex_unlock(&dentry
->d_inode
->i_mutex
);
216 /* mark as kernel-created inode */
217 dentry
->d_inode
->i_private
= &thread
;
219 done_path_create(&path
, dentry
);
223 static int dev_rmdir(const char *name
)
226 struct dentry
*dentry
;
229 dentry
= kern_path_locked(name
, &parent
);
231 return PTR_ERR(dentry
);
232 if (dentry
->d_inode
) {
233 if (dentry
->d_inode
->i_private
== &thread
)
234 err
= vfs_rmdir(parent
.dentry
->d_inode
, dentry
);
241 mutex_unlock(&parent
.dentry
->d_inode
->i_mutex
);
246 static int delete_path(const char *nodepath
)
251 path
= kstrdup(nodepath
, GFP_KERNEL
);
258 base
= strrchr(path
, '/');
262 err
= dev_rmdir(path
);
271 static int dev_mynode(struct device
*dev
, struct inode
*inode
, struct kstat
*stat
)
273 /* did we create it */
274 if (inode
->i_private
!= &thread
)
277 /* does the dev_t match */
278 if (is_blockdev(dev
)) {
279 if (!S_ISBLK(stat
->mode
))
282 if (!S_ISCHR(stat
->mode
))
285 if (stat
->rdev
!= dev
->devt
)
292 static int handle_remove(const char *nodename
, struct device
*dev
)
295 struct dentry
*dentry
;
299 dentry
= kern_path_locked(nodename
, &parent
);
301 return PTR_ERR(dentry
);
303 if (dentry
->d_inode
) {
305 err
= vfs_getattr(parent
.mnt
, dentry
, &stat
);
306 if (!err
&& dev_mynode(dev
, dentry
->d_inode
, &stat
)) {
307 struct iattr newattrs
;
309 * before unlinking this node, reset permissions
310 * of possible references like hardlinks
312 newattrs
.ia_uid
= GLOBAL_ROOT_UID
;
313 newattrs
.ia_gid
= GLOBAL_ROOT_GID
;
314 newattrs
.ia_mode
= stat
.mode
& ~0777;
316 ATTR_UID
|ATTR_GID
|ATTR_MODE
;
317 mutex_lock(&dentry
->d_inode
->i_mutex
);
318 notify_change(dentry
, &newattrs
);
319 mutex_unlock(&dentry
->d_inode
->i_mutex
);
320 err
= vfs_unlink(parent
.dentry
->d_inode
, dentry
);
321 if (!err
|| err
== -ENOENT
)
328 mutex_unlock(&parent
.dentry
->d_inode
->i_mutex
);
331 if (deleted
&& strchr(nodename
, '/'))
332 delete_path(nodename
);
337 * If configured, or requested by the commandline, devtmpfs will be
338 * auto-mounted after the kernel mounted the root filesystem.
340 int devtmpfs_mount(const char *mntdir
)
350 err
= sys_mount("devtmpfs", (char *)mntdir
, "devtmpfs", MS_SILENT
, NULL
);
352 printk(KERN_INFO
"devtmpfs: error mounting %i\n", err
);
354 printk(KERN_INFO
"devtmpfs: mounted\n");
358 static DECLARE_COMPLETION(setup_done
);
360 static int handle(const char *name
, umode_t mode
, struct device
*dev
)
363 return handle_create(name
, mode
, dev
);
365 return handle_remove(name
, dev
);
368 static int devtmpfsd(void *p
)
370 char options
[] = "mode=0755";
372 *err
= sys_unshare(CLONE_NEWNS
);
375 *err
= sys_mount("devtmpfs", "/", "devtmpfs", MS_SILENT
, options
);
378 sys_chdir("/.."); /* will traverse into overmounted root */
380 complete(&setup_done
);
382 spin_lock(&req_lock
);
384 struct req
*req
= requests
;
386 spin_unlock(&req_lock
);
388 struct req
*next
= req
->next
;
389 req
->err
= handle(req
->name
, req
->mode
, req
->dev
);
390 complete(&req
->done
);
393 spin_lock(&req_lock
);
395 __set_current_state(TASK_INTERRUPTIBLE
);
396 spin_unlock(&req_lock
);
401 complete(&setup_done
);
406 * Create devtmpfs instance, driver-core devices will add their device
409 int __init
devtmpfs_init(void)
411 int err
= register_filesystem(&dev_fs_type
);
413 printk(KERN_ERR
"devtmpfs: unable to register devtmpfs "
418 thread
= kthread_run(devtmpfsd
, &err
, "kdevtmpfs");
419 if (!IS_ERR(thread
)) {
420 wait_for_completion(&setup_done
);
422 err
= PTR_ERR(thread
);
427 printk(KERN_ERR
"devtmpfs: unable to create devtmpfs %i\n", err
);
428 unregister_filesystem(&dev_fs_type
);
432 printk(KERN_INFO
"devtmpfs: initialized\n");