2 * proc_devtree.c - handles /proc/device-tree
4 * Copyright 1997 Paul Mackerras
6 #include <linux/errno.h>
7 #include <linux/init.h>
8 #include <linux/time.h>
9 #include <linux/proc_fs.h>
10 #include <linux/seq_file.h>
11 #include <linux/printk.h>
12 #include <linux/stat.h>
13 #include <linux/string.h>
15 #include <linux/export.h>
16 #include <linux/slab.h>
18 #include <asm/uaccess.h>
21 static inline void set_node_proc_entry(struct device_node *np,
22 struct proc_dir_entry *de)
24 #ifdef HAVE_ARCH_DEVTREE_FIXUPS
29 static struct proc_dir_entry *proc_device_tree;
32 * Supply data on a read from /proc/device-tree/node/property.
34 static int property_proc_show(struct seq_file *m, void *v)
36 struct property *pp = m->private;
38 seq_write(m, pp->value, pp->length);
42 static int property_proc_open(struct inode *inode, struct file *file)
44 return single_open(file, property_proc_show, __PDE_DATA(inode));
47 static const struct file_operations property_proc_fops = {
49 .open = property_proc_open,
52 .release = single_release,
56 * For a node with a name like "gc@10", we make symlinks called "gc"
61 * Add a property to a node
63 static struct proc_dir_entry *
64 __proc_device_tree_add_prop(struct proc_dir_entry *de, struct property *pp,
67 struct proc_dir_entry *ent;
70 * Unfortunately proc_register puts each new entry
71 * at the beginning of the list. So we rearrange them.
73 ent = proc_create_data(name,
74 strncmp(name, "security-", 9) ? S_IRUGO : S_IRUSR,
75 de, &property_proc_fops, pp);
79 if (!strncmp(name, "security-", 9))
80 ent->size = 0; /* don't leak number of password chars */
82 ent->size = pp->length;
88 void proc_device_tree_add_prop(struct proc_dir_entry *pde, struct property *prop)
90 __proc_device_tree_add_prop(pde, prop, prop->name);
93 void proc_device_tree_remove_prop(struct proc_dir_entry *pde,
94 struct property *prop)
96 remove_proc_entry(prop->name, pde);
99 void proc_device_tree_update_prop(struct proc_dir_entry *pde,
100 struct property *newprop,
101 struct property *oldprop)
103 struct proc_dir_entry *ent;
106 proc_device_tree_add_prop(pde, newprop);
110 for (ent = pde->subdir; ent != NULL; ent = ent->next)
111 if (ent->data == oldprop)
114 pr_warn("device-tree: property \"%s\" does not exist\n",
118 ent->size = newprop->length;
123 * Various dodgy firmware might give us nodes and/or properties with
124 * conflicting names. That's generally ok, except for exporting via /proc,
125 * so munge names here to ensure they're unique.
128 static int duplicate_name(struct proc_dir_entry *de, const char *name)
130 struct proc_dir_entry *ent;
133 spin_lock(&proc_subdir_lock);
135 for (ent = de->subdir; ent != NULL; ent = ent->next) {
136 if (strcmp(ent->name, name) == 0) {
142 spin_unlock(&proc_subdir_lock);
147 static const char *fixup_name(struct device_node *np, struct proc_dir_entry *de,
151 int fixup_len = strlen(name) + 2 + 1; /* name + #x + \0 */
155 fixed_name = kmalloc(fixup_len, GFP_KERNEL);
156 if (fixed_name == NULL) {
157 pr_err("device-tree: Out of memory trying to fixup "
158 "name \"%s\"\n", name);
163 size = snprintf(fixed_name, fixup_len, "%s#%d", name, i);
164 size++; /* account for NULL */
166 if (size > fixup_len) {
167 /* We ran out of space, free and reallocate. */
173 if (duplicate_name(de, fixed_name)) {
174 /* Multiple duplicates. Retry with a different offset. */
179 pr_warn("device-tree: Duplicate name in %s, renamed to \"%s\"\n",
180 np->full_name, fixed_name);
186 * Process a node, adding entries for its children and its properties.
188 void proc_device_tree_add_node(struct device_node *np,
189 struct proc_dir_entry *de)
192 struct proc_dir_entry *ent;
193 struct device_node *child;
196 set_node_proc_entry(np, de);
197 for (child = NULL; (child = of_get_next_child(np, child));) {
198 /* Use everything after the last slash, or the full name */
199 p = kbasename(child->full_name);
201 if (duplicate_name(de, p))
202 p = fixup_name(np, de, p);
204 ent = proc_mkdir(p, de);
207 proc_device_tree_add_node(child, ent);
211 for (pp = np->properties; pp != NULL; pp = pp->next) {
217 if (duplicate_name(de, p))
218 p = fixup_name(np, de, p);
220 ent = __proc_device_tree_add_prop(de, pp, p);
227 * Called on initialization to set up the /proc/device-tree subtree
229 void __init proc_device_tree_init(void)
231 struct device_node *root;
233 proc_device_tree = proc_mkdir("device-tree", NULL);
234 if (proc_device_tree == NULL)
236 root = of_find_node_by_path("/");
238 pr_debug("/proc/device-tree: can't find root\n");
241 proc_device_tree_add_node(root, proc_device_tree);