Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-2.0
2 : : /*
3 : : * devtmpfs - kernel-maintained tmpfs-based /dev
4 : : *
5 : : * Copyright (C) 2009, Kay Sievers <kay.sievers@vrfy.org>
6 : : *
7 : : * During bootup, before any driver core device is registered,
8 : : * devtmpfs, a tmpfs-based filesystem is created. Every driver-core
9 : : * device which requests a device node, will add a node in this
10 : : * filesystem.
11 : : * By default, all devices are named after the name of the device,
12 : : * owned by root and have a default mode of 0600. Subsystems can
13 : : * overwrite the default setting if needed.
14 : : */
15 : :
16 : : #include <linux/kernel.h>
17 : : #include <linux/syscalls.h>
18 : : #include <linux/mount.h>
19 : : #include <linux/device.h>
20 : : #include <linux/genhd.h>
21 : : #include <linux/namei.h>
22 : : #include <linux/fs.h>
23 : : #include <linux/shmem_fs.h>
24 : : #include <linux/ramfs.h>
25 : : #include <linux/sched.h>
26 : : #include <linux/slab.h>
27 : : #include <linux/kthread.h>
28 : : #include <uapi/linux/mount.h>
29 : : #include "base.h"
30 : :
31 : : static struct task_struct *thread;
32 : :
33 : : static int __initdata mount_dev = IS_ENABLED(CONFIG_DEVTMPFS_MOUNT);
34 : :
35 : : static DEFINE_SPINLOCK(req_lock);
36 : :
37 : : static struct req {
38 : : struct req *next;
39 : : struct completion done;
40 : : int err;
41 : : const char *name;
42 : : umode_t mode; /* 0 => delete */
43 : : kuid_t uid;
44 : : kgid_t gid;
45 : : struct device *dev;
46 : : } *requests;
47 : :
48 : 0 : static int __init mount_param(char *str)
49 : : {
50 : 0 : mount_dev = simple_strtoul(str, NULL, 0);
51 : 0 : return 1;
52 : : }
53 : : __setup("devtmpfs.mount=", mount_param);
54 : :
55 : : static struct vfsmount *mnt;
56 : :
57 : 42 : static struct dentry *public_dev_mount(struct file_system_type *fs_type, int flags,
58 : : const char *dev_name, void *data)
59 : : {
60 : 42 : struct super_block *s = mnt->mnt_sb;
61 : 42 : atomic_inc(&s->s_active);
62 : 42 : down_write(&s->s_umount);
63 [ + - ]: 42 : return dget(s->s_root);
64 : : }
65 : :
66 : : static struct file_system_type internal_fs_type = {
67 : : .name = "devtmpfs",
68 : : #ifdef CONFIG_TMPFS
69 : : .init_fs_context = shmem_init_fs_context,
70 : : .parameters = shmem_fs_parameters,
71 : : #else
72 : : .init_fs_context = ramfs_init_fs_context,
73 : : .parameters = ramfs_fs_parameters,
74 : : #endif
75 : : .kill_sb = kill_litter_super,
76 : : };
77 : :
78 : : static struct file_system_type dev_fs_type = {
79 : : .name = "devtmpfs",
80 : : .mount = public_dev_mount,
81 : : };
82 : :
83 : : #ifdef CONFIG_BLOCK
84 : 2592 : static inline int is_blockdev(struct device *dev)
85 : : {
86 : 2592 : return dev->class == &block_class;
87 : : }
88 : : #else
89 : : static inline int is_blockdev(struct device *dev) { return 0; }
90 : : #endif
91 : :
92 : 2592 : static int devtmpfs_submit_req(struct req *req, const char *tmp)
93 : : {
94 : 2592 : init_completion(&req->done);
95 : :
96 : 2592 : spin_lock(&req_lock);
97 : 2592 : req->next = requests;
98 : 2592 : requests = req;
99 : 2592 : spin_unlock(&req_lock);
100 : :
101 : 2592 : wake_up_process(thread);
102 : 2592 : wait_for_completion(&req->done);
103 : :
104 : 2592 : kfree(tmp);
105 : :
106 : 2592 : return req->err;
107 : : }
108 : :
109 : 2592 : int devtmpfs_create_node(struct device *dev)
110 : : {
111 : 2592 : const char *tmp = NULL;
112 : 2592 : struct req req;
113 : :
114 [ + - ]: 2592 : if (!thread)
115 : : return 0;
116 : :
117 : 2592 : req.mode = 0;
118 : 2592 : req.uid = GLOBAL_ROOT_UID;
119 : 2592 : req.gid = GLOBAL_ROOT_GID;
120 : 2592 : req.name = device_get_devnode(dev, &req.mode, &req.uid, &req.gid, &tmp);
121 [ + - ]: 2592 : if (!req.name)
122 : : return -ENOMEM;
123 : :
124 [ + + ]: 2592 : if (req.mode == 0)
125 : 2403 : req.mode = 0600;
126 [ + + ]: 2592 : if (is_blockdev(dev))
127 : 252 : req.mode |= S_IFBLK;
128 : : else
129 : 2340 : req.mode |= S_IFCHR;
130 : :
131 : 2592 : req.dev = dev;
132 : :
133 : 2592 : return devtmpfs_submit_req(&req, tmp);
134 : : }
135 : :
136 : 0 : int devtmpfs_delete_node(struct device *dev)
137 : : {
138 : 0 : const char *tmp = NULL;
139 : 0 : struct req req;
140 : :
141 [ # # ]: 0 : if (!thread)
142 : : return 0;
143 : :
144 : 0 : req.name = device_get_devnode(dev, NULL, NULL, NULL, &tmp);
145 [ # # ]: 0 : if (!req.name)
146 : : return -ENOMEM;
147 : :
148 : 0 : req.mode = 0;
149 : 0 : req.dev = dev;
150 : :
151 : 0 : return devtmpfs_submit_req(&req, tmp);
152 : : }
153 : :
154 : 126 : static int dev_mkdir(const char *name, umode_t mode)
155 : : {
156 : 126 : struct dentry *dentry;
157 : 126 : struct path path;
158 : 126 : int err;
159 : :
160 : 126 : dentry = kern_path_create(AT_FDCWD, name, &path, LOOKUP_DIRECTORY);
161 [ - + ]: 126 : if (IS_ERR(dentry))
162 : 0 : return PTR_ERR(dentry);
163 : :
164 : 126 : err = vfs_mkdir(d_inode(path.dentry), dentry, mode);
165 [ + - ]: 126 : if (!err)
166 : : /* mark as kernel-created inode */
167 : 126 : d_inode(dentry)->i_private = &thread;
168 : 126 : done_path_create(&path, dentry);
169 : 126 : return err;
170 : : }
171 : :
172 : 105 : static int create_path(const char *nodepath)
173 : : {
174 : 105 : char *path;
175 : 105 : char *s;
176 : 105 : int err = 0;
177 : :
178 : : /* parent directories do not exist, create them */
179 : 105 : path = kstrdup(nodepath, GFP_KERNEL);
180 [ + - ]: 105 : if (!path)
181 : : return -ENOMEM;
182 : :
183 : : s = path;
184 : 357 : for (;;) {
185 : 357 : s = strchr(s, '/');
186 [ + + ]: 231 : if (!s)
187 : : break;
188 : 126 : s[0] = '\0';
189 : 126 : err = dev_mkdir(path, 0755);
190 [ + - ]: 126 : if (err && err != -EEXIST)
191 : : break;
192 : 126 : s[0] = '/';
193 : 126 : s++;
194 : : }
195 : 105 : kfree(path);
196 : 105 : return err;
197 : : }
198 : :
199 : 2592 : static int handle_create(const char *nodename, umode_t mode, kuid_t uid,
200 : : kgid_t gid, struct device *dev)
201 : : {
202 : 2592 : struct dentry *dentry;
203 : 2592 : struct path path;
204 : 2592 : int err;
205 : :
206 : 2592 : dentry = kern_path_create(AT_FDCWD, nodename, &path, 0);
207 [ + + ]: 2592 : if (dentry == ERR_PTR(-ENOENT)) {
208 : 105 : create_path(nodename);
209 : 105 : dentry = kern_path_create(AT_FDCWD, nodename, &path, 0);
210 : : }
211 [ - + ]: 2592 : if (IS_ERR(dentry))
212 : 0 : return PTR_ERR(dentry);
213 : :
214 : 2592 : err = vfs_mknod(d_inode(path.dentry), dentry, mode, dev->devt);
215 [ + - ]: 2592 : if (!err) {
216 : 2592 : struct iattr newattrs;
217 : :
218 : 2592 : newattrs.ia_mode = mode;
219 : 2592 : newattrs.ia_uid = uid;
220 : 2592 : newattrs.ia_gid = gid;
221 : 2592 : newattrs.ia_valid = ATTR_MODE|ATTR_UID|ATTR_GID;
222 : 2592 : inode_lock(d_inode(dentry));
223 : 2592 : notify_change(dentry, &newattrs, NULL);
224 : 2592 : inode_unlock(d_inode(dentry));
225 : :
226 : : /* mark as kernel-created inode */
227 : 2592 : d_inode(dentry)->i_private = &thread;
228 : : }
229 : 2592 : done_path_create(&path, dentry);
230 : 2592 : return err;
231 : : }
232 : :
233 : 0 : static int dev_rmdir(const char *name)
234 : : {
235 : 0 : struct path parent;
236 : 0 : struct dentry *dentry;
237 : 0 : int err;
238 : :
239 : 0 : dentry = kern_path_locked(name, &parent);
240 [ # # ]: 0 : if (IS_ERR(dentry))
241 : 0 : return PTR_ERR(dentry);
242 [ # # ]: 0 : if (d_really_is_positive(dentry)) {
243 [ # # ]: 0 : if (d_inode(dentry)->i_private == &thread)
244 : 0 : err = vfs_rmdir(d_inode(parent.dentry), dentry);
245 : : else
246 : : err = -EPERM;
247 : : } else {
248 : : err = -ENOENT;
249 : : }
250 : 0 : dput(dentry);
251 : 0 : inode_unlock(d_inode(parent.dentry));
252 : 0 : path_put(&parent);
253 : 0 : return err;
254 : : }
255 : :
256 : 0 : static int delete_path(const char *nodepath)
257 : : {
258 : 0 : char *path;
259 : 0 : int err = 0;
260 : :
261 : 0 : path = kstrdup(nodepath, GFP_KERNEL);
262 [ # # ]: 0 : if (!path)
263 : : return -ENOMEM;
264 : :
265 : 0 : for (;;) {
266 : 0 : char *base;
267 : :
268 : 0 : base = strrchr(path, '/');
269 [ # # ]: 0 : if (!base)
270 : : break;
271 : 0 : base[0] = '\0';
272 : 0 : err = dev_rmdir(path);
273 [ # # ]: 0 : if (err)
274 : : break;
275 : : }
276 : :
277 : 0 : kfree(path);
278 : 0 : return err;
279 : : }
280 : :
281 : 0 : static int dev_mynode(struct device *dev, struct inode *inode, struct kstat *stat)
282 : : {
283 : : /* did we create it */
284 [ # # ]: 0 : if (inode->i_private != &thread)
285 : : return 0;
286 : :
287 : : /* does the dev_t match */
288 [ # # ]: 0 : if (is_blockdev(dev)) {
289 [ # # ]: 0 : if (!S_ISBLK(stat->mode))
290 : : return 0;
291 : : } else {
292 [ # # ]: 0 : if (!S_ISCHR(stat->mode))
293 : : return 0;
294 : : }
295 [ # # ]: 0 : if (stat->rdev != dev->devt)
296 : : return 0;
297 : :
298 : : /* ours */
299 : : return 1;
300 : : }
301 : :
302 : 0 : static int handle_remove(const char *nodename, struct device *dev)
303 : : {
304 : 0 : struct path parent;
305 : 0 : struct dentry *dentry;
306 : 0 : int deleted = 0;
307 : 0 : int err;
308 : :
309 : 0 : dentry = kern_path_locked(nodename, &parent);
310 [ # # ]: 0 : if (IS_ERR(dentry))
311 : 0 : return PTR_ERR(dentry);
312 : :
313 [ # # ]: 0 : if (d_really_is_positive(dentry)) {
314 : 0 : struct kstat stat;
315 : 0 : struct path p = {.mnt = parent.mnt, .dentry = dentry};
316 : 0 : err = vfs_getattr(&p, &stat, STATX_TYPE | STATX_MODE,
317 : : AT_STATX_SYNC_AS_STAT);
318 [ # # # # ]: 0 : if (!err && dev_mynode(dev, d_inode(dentry), &stat)) {
319 : 0 : struct iattr newattrs;
320 : : /*
321 : : * before unlinking this node, reset permissions
322 : : * of possible references like hardlinks
323 : : */
324 : 0 : newattrs.ia_uid = GLOBAL_ROOT_UID;
325 : 0 : newattrs.ia_gid = GLOBAL_ROOT_GID;
326 : 0 : newattrs.ia_mode = stat.mode & ~0777;
327 : 0 : newattrs.ia_valid =
328 : : ATTR_UID|ATTR_GID|ATTR_MODE;
329 : 0 : inode_lock(d_inode(dentry));
330 : 0 : notify_change(dentry, &newattrs, NULL);
331 : 0 : inode_unlock(d_inode(dentry));
332 : 0 : err = vfs_unlink(d_inode(parent.dentry), dentry, NULL);
333 [ # # ]: 0 : if (!err || err == -ENOENT)
334 : 0 : deleted = 1;
335 : : }
336 : : } else {
337 : : err = -ENOENT;
338 : : }
339 : 0 : dput(dentry);
340 : 0 : inode_unlock(d_inode(parent.dentry));
341 : :
342 : 0 : path_put(&parent);
343 [ # # # # ]: 0 : if (deleted && strchr(nodename, '/'))
344 : 0 : delete_path(nodename);
345 : : return err;
346 : : }
347 : :
348 : : /*
349 : : * If configured, or requested by the commandline, devtmpfs will be
350 : : * auto-mounted after the kernel mounted the root filesystem.
351 : : */
352 : 21 : int __init devtmpfs_mount(void)
353 : : {
354 : 21 : int err;
355 : :
356 [ + - ]: 21 : if (!mount_dev)
357 : : return 0;
358 : :
359 [ + - ]: 21 : if (!thread)
360 : : return 0;
361 : :
362 : 21 : err = do_mount("devtmpfs", "dev", "devtmpfs", MS_SILENT, NULL);
363 [ - + ]: 21 : if (err)
364 : 0 : printk(KERN_INFO "devtmpfs: error mounting %i\n", err);
365 : : else
366 : 21 : printk(KERN_INFO "devtmpfs: mounted\n");
367 : : return err;
368 : : }
369 : :
370 : : static DECLARE_COMPLETION(setup_done);
371 : :
372 : 2592 : static int handle(const char *name, umode_t mode, kuid_t uid, kgid_t gid,
373 : : struct device *dev)
374 : : {
375 [ + - ]: 2592 : if (mode)
376 : 2592 : return handle_create(name, mode, uid, gid, dev);
377 : : else
378 : 0 : return handle_remove(name, dev);
379 : : }
380 : :
381 : 21 : static int devtmpfs_setup(void *p)
382 : : {
383 : 21 : int err;
384 : :
385 : 21 : err = ksys_unshare(CLONE_NEWNS);
386 [ - + ]: 21 : if (err)
387 : 0 : goto out;
388 : 21 : err = do_mount("devtmpfs", "/", "devtmpfs", MS_SILENT, NULL);
389 [ - + ]: 21 : if (err)
390 : 0 : goto out;
391 : 21 : ksys_chdir("/.."); /* will traverse into overmounted root */
392 : 21 : ksys_chroot(".");
393 : 21 : out:
394 : 21 : *(int *)p = err;
395 : 21 : complete(&setup_done);
396 : 21 : return err;
397 : : }
398 : :
399 : 21 : static int devtmpfsd(void *p)
400 : : {
401 : 21 : int err = devtmpfs_setup(p);
402 : :
403 [ - + ]: 21 : if (err)
404 : 0 : return err;
405 : 5226 : while (1) {
406 : 2613 : spin_lock(&req_lock);
407 [ + + ]: 5205 : while (requests) {
408 : 2592 : struct req *req = requests;
409 : 2592 : requests = NULL;
410 : 2592 : spin_unlock(&req_lock);
411 [ + + ]: 5184 : while (req) {
412 : 2592 : struct req *next = req->next;
413 : 2592 : req->err = handle(req->name, req->mode,
414 : : req->uid, req->gid, req->dev);
415 : 2592 : complete(&req->done);
416 : 2592 : req = next;
417 : : }
418 : 2592 : spin_lock(&req_lock);
419 : : }
420 : 2613 : __set_current_state(TASK_INTERRUPTIBLE);
421 : 2613 : spin_unlock(&req_lock);
422 : 2613 : schedule();
423 : : }
424 : : return 0;
425 : : }
426 : :
427 : : /*
428 : : * Create devtmpfs instance, driver-core devices will add their device
429 : : * nodes here.
430 : : */
431 : 21 : int __init devtmpfs_init(void)
432 : : {
433 : 21 : char opts[] = "mode=0755";
434 : 21 : int err;
435 : :
436 : 21 : mnt = vfs_kern_mount(&internal_fs_type, 0, "devtmpfs", opts);
437 [ - + ]: 21 : if (IS_ERR(mnt)) {
438 : 0 : printk(KERN_ERR "devtmpfs: unable to create devtmpfs %ld\n",
439 : : PTR_ERR(mnt));
440 : 0 : return PTR_ERR(mnt);
441 : : }
442 : 21 : err = register_filesystem(&dev_fs_type);
443 [ - + ]: 21 : if (err) {
444 : 0 : printk(KERN_ERR "devtmpfs: unable to register devtmpfs "
445 : : "type %i\n", err);
446 : 0 : return err;
447 : : }
448 : :
449 [ + - ]: 21 : thread = kthread_run(devtmpfsd, &err, "kdevtmpfs");
450 [ + - ]: 21 : if (!IS_ERR(thread)) {
451 : 21 : wait_for_completion(&setup_done);
452 : : } else {
453 : 0 : err = PTR_ERR(thread);
454 : 0 : thread = NULL;
455 : : }
456 : :
457 [ - + ]: 21 : if (err) {
458 : 0 : printk(KERN_ERR "devtmpfs: unable to create devtmpfs %i\n", err);
459 : 0 : unregister_filesystem(&dev_fs_type);
460 : 0 : return err;
461 : : }
462 : :
463 : 21 : printk(KERN_INFO "devtmpfs: initialized\n");
464 : 21 : return 0;
465 : : }
|