1 // SPDX-License-Identifier: GPL-2.0-only
2 /* inode.c: /proc/openprom handling routines
4 * Copyright (C) 1996-1999 Jakub Jelinek (jakub@redhat.com)
5 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
8 #include <linux/module.h>
9 #include <linux/types.h>
10 #include <linux/string.h>
12 #include <linux/fs_context.h>
13 #include <linux/init.h>
14 #include <linux/slab.h>
15 #include <linux/seq_file.h>
16 #include <linux/magic.h>
18 #include <asm/openprom.h>
19 #include <asm/oplib.h>
21 #include <linux/uaccess.h>
23 static DEFINE_MUTEX(op_mutex);
25 #define OPENPROM_ROOT_INO 0
33 struct device_node *node;
34 struct property *prop;
37 struct op_inode_info {
38 struct inode vfs_inode;
39 enum op_inode_type type;
40 union op_inode_data u;
43 static struct inode *openprom_iget(struct super_block *sb, ino_t ino);
45 static inline struct op_inode_info *OP_I(struct inode *inode)
47 return container_of(inode, struct op_inode_info, vfs_inode);
50 static int is_string(unsigned char *p, int len)
54 for (i = 0; i < len; i++) {
55 unsigned char val = p[i];
58 (val >= ' ' && val <= '~'))
67 static int property_show(struct seq_file *f, void *v)
69 struct property *prop = f->private;
76 if (is_string(pval, len)) {
80 seq_printf(f, "%s", (char *) pval);
82 /* Skip over the NULL byte too. */
94 seq_printf(f, "%02x.",
95 *(unsigned char *) pval);
98 *(unsigned char *) pval);
106 seq_printf(f, "%08x.",
107 *(unsigned int *) pval);
109 seq_printf(f, "%08x",
110 *(unsigned int *) pval);
120 static void *property_start(struct seq_file *f, loff_t *pos)
127 static void *property_next(struct seq_file *f, void *v, loff_t *pos)
133 static void property_stop(struct seq_file *f, void *v)
138 static const struct seq_operations property_op = {
139 .start = property_start,
140 .next = property_next,
141 .stop = property_stop,
142 .show = property_show
145 static int property_open(struct inode *inode, struct file *file)
147 struct op_inode_info *oi = OP_I(inode);
150 BUG_ON(oi->type != op_inode_prop);
152 ret = seq_open(file, &property_op);
154 struct seq_file *m = file->private_data;
155 m->private = oi->u.prop;
160 static const struct file_operations openpromfs_prop_ops = {
161 .open = property_open,
164 .release = seq_release,
167 static int openpromfs_readdir(struct file *, struct dir_context *);
169 static const struct file_operations openprom_operations = {
170 .read = generic_read_dir,
171 .iterate_shared = openpromfs_readdir,
172 .llseek = generic_file_llseek,
175 static struct dentry *openpromfs_lookup(struct inode *, struct dentry *, unsigned int);
177 static const struct inode_operations openprom_inode_operations = {
178 .lookup = openpromfs_lookup,
181 static struct dentry *openpromfs_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
183 struct op_inode_info *ent_oi, *oi = OP_I(dir);
184 struct device_node *dp, *child;
185 struct property *prop;
186 enum op_inode_type ent_type;
187 union op_inode_data ent_data;
193 BUG_ON(oi->type != op_inode_node);
197 name = dentry->d_name.name;
198 len = dentry->d_name.len;
200 mutex_lock(&op_mutex);
204 const char *node_name = kbasename(child->full_name);
205 int n = strlen(node_name);
208 !strncmp(node_name, name, len)) {
209 ent_type = op_inode_node;
210 ent_data.node = child;
211 ino = child->unique_id;
214 child = child->sibling;
217 prop = dp->properties;
219 int n = strlen(prop->name);
221 if (len == n && !strncmp(prop->name, name, len)) {
222 ent_type = op_inode_prop;
223 ent_data.prop = prop;
224 ino = prop->unique_id;
231 mutex_unlock(&op_mutex);
232 return ERR_PTR(-ENOENT);
235 inode = openprom_iget(dir->i_sb, ino);
236 mutex_unlock(&op_mutex);
238 return ERR_CAST(inode);
239 if (inode->i_state & I_NEW) {
240 inode->i_mtime = inode->i_atime = inode_set_ctime_current(inode);
241 ent_oi = OP_I(inode);
242 ent_oi->type = ent_type;
243 ent_oi->u = ent_data;
247 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO;
248 inode->i_op = &openprom_inode_operations;
249 inode->i_fop = &openprom_operations;
253 if (of_node_name_eq(dp, "options") && (len == 17) &&
254 !strncmp (name, "security-password", 17))
255 inode->i_mode = S_IFREG | S_IRUSR | S_IWUSR;
257 inode->i_mode = S_IFREG | S_IRUGO;
258 inode->i_fop = &openpromfs_prop_ops;
260 inode->i_size = ent_oi->u.prop->length;
263 unlock_new_inode(inode);
266 return d_splice_alias(inode, dentry);
269 static int openpromfs_readdir(struct file *file, struct dir_context *ctx)
271 struct inode *inode = file_inode(file);
272 struct op_inode_info *oi = OP_I(inode);
273 struct device_node *dp = oi->u.node;
274 struct device_node *child;
275 struct property *prop;
278 mutex_lock(&op_mutex);
281 if (!dir_emit(ctx, ".", 1, inode->i_ino, DT_DIR))
286 if (!dir_emit(ctx, "..", 2,
287 (dp->parent == NULL ?
289 dp->parent->unique_id), DT_DIR))
295 /* First, the children nodes as directories. */
298 child = child->sibling;
303 kbasename(child->full_name),
304 strlen(kbasename(child->full_name)),
305 child->unique_id, DT_DIR))
309 child = child->sibling;
312 /* Next, the properties as files. */
313 prop = dp->properties;
319 if (!dir_emit(ctx, prop->name, strlen(prop->name),
320 prop->unique_id, DT_REG))
328 mutex_unlock(&op_mutex);
332 static struct kmem_cache *op_inode_cachep;
334 static struct inode *openprom_alloc_inode(struct super_block *sb)
336 struct op_inode_info *oi;
338 oi = alloc_inode_sb(sb, op_inode_cachep, GFP_KERNEL);
342 return &oi->vfs_inode;
345 static void openprom_free_inode(struct inode *inode)
347 kmem_cache_free(op_inode_cachep, OP_I(inode));
350 static struct inode *openprom_iget(struct super_block *sb, ino_t ino)
352 struct inode *inode = iget_locked(sb, ino);
354 inode = ERR_PTR(-ENOMEM);
358 static int openprom_remount(struct super_block *sb, int *flags, char *data)
361 *flags |= SB_NOATIME;
365 static const struct super_operations openprom_sops = {
366 .alloc_inode = openprom_alloc_inode,
367 .free_inode = openprom_free_inode,
368 .statfs = simple_statfs,
369 .remount_fs = openprom_remount,
372 static int openprom_fill_super(struct super_block *s, struct fs_context *fc)
374 struct inode *root_inode;
375 struct op_inode_info *oi;
378 s->s_flags |= SB_NOATIME;
379 s->s_blocksize = 1024;
380 s->s_blocksize_bits = 10;
381 s->s_magic = OPENPROM_SUPER_MAGIC;
382 s->s_op = &openprom_sops;
384 root_inode = openprom_iget(s, OPENPROM_ROOT_INO);
385 if (IS_ERR(root_inode)) {
386 ret = PTR_ERR(root_inode);
390 root_inode->i_mtime = root_inode->i_atime = inode_set_ctime_current(root_inode);
391 root_inode->i_op = &openprom_inode_operations;
392 root_inode->i_fop = &openprom_operations;
393 root_inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO;
394 oi = OP_I(root_inode);
395 oi->type = op_inode_node;
396 oi->u.node = of_find_node_by_path("/");
397 unlock_new_inode(root_inode);
399 s->s_root = d_make_root(root_inode);
401 goto out_no_root_dentry;
407 printk("openprom_fill_super: get root inode failed\n");
411 static int openpromfs_get_tree(struct fs_context *fc)
413 return get_tree_single(fc, openprom_fill_super);
416 static const struct fs_context_operations openpromfs_context_ops = {
417 .get_tree = openpromfs_get_tree,
420 static int openpromfs_init_fs_context(struct fs_context *fc)
422 fc->ops = &openpromfs_context_ops;
426 static struct file_system_type openprom_fs_type = {
427 .owner = THIS_MODULE,
428 .name = "openpromfs",
429 .init_fs_context = openpromfs_init_fs_context,
430 .kill_sb = kill_anon_super,
432 MODULE_ALIAS_FS("openpromfs");
434 static void op_inode_init_once(void *data)
436 struct op_inode_info *oi = (struct op_inode_info *) data;
438 inode_init_once(&oi->vfs_inode);
441 static int __init init_openprom_fs(void)
445 op_inode_cachep = kmem_cache_create("op_inode_cache",
446 sizeof(struct op_inode_info),
448 (SLAB_RECLAIM_ACCOUNT |
449 SLAB_MEM_SPREAD | SLAB_ACCOUNT),
451 if (!op_inode_cachep)
454 err = register_filesystem(&openprom_fs_type);
456 kmem_cache_destroy(op_inode_cachep);
461 static void __exit exit_openprom_fs(void)
463 unregister_filesystem(&openprom_fs_type);
465 * Make sure all delayed rcu free inodes are flushed before we
469 kmem_cache_destroy(op_inode_cachep);
472 module_init(init_openprom_fs)
473 module_exit(exit_openprom_fs)
474 MODULE_LICENSE("GPL");