Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * proc_devtree.c - handles /proc/device-tree |
| 3 | * |
| 4 | * Copyright 1997 Paul Mackerras |
| 5 | */ |
| 6 | #include <linux/errno.h> |
Alexey Dobriyan | 1e0edd3 | 2008-10-17 05:07:44 +0400 | [diff] [blame] | 7 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/time.h> |
| 9 | #include <linux/proc_fs.h> |
Alexey Dobriyan | e22f628 | 2009-09-06 23:31:25 +0000 | [diff] [blame] | 10 | #include <linux/seq_file.h> |
Andrew Morton | 87ebdc0 | 2013-02-27 17:03:16 -0800 | [diff] [blame] | 11 | #include <linux/printk.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/stat.h> |
| 13 | #include <linux/string.h> |
Jeremy Kerr | 50ab2fe | 2010-02-01 21:34:14 -0700 | [diff] [blame] | 14 | #include <linux/of.h> |
Syam Sidhardhan | 75fc0cf | 2013-02-15 02:24:32 +0530 | [diff] [blame] | 15 | #include <linux/export.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 16 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <asm/prom.h> |
| 18 | #include <asm/uaccess.h> |
Al Viro | 3174c21 | 2009-04-07 13:19:18 -0400 | [diff] [blame] | 19 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Benjamin Herrenschmidt | 5f64f73 | 2005-06-01 17:07:27 +1000 | [diff] [blame] | 21 | static inline void set_node_proc_entry(struct device_node *np, |
| 22 | struct proc_dir_entry *de) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | { |
Jeremy Kerr | 8cfb334 | 2010-02-01 21:34:14 -0700 | [diff] [blame] | 24 | #ifdef HAVE_ARCH_DEVTREE_FIXUPS |
| 25 | np->pde = de; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #endif |
Jeremy Kerr | 8cfb334 | 2010-02-01 21:34:14 -0700 | [diff] [blame] | 27 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | static struct proc_dir_entry *proc_device_tree; |
| 30 | |
| 31 | /* |
| 32 | * Supply data on a read from /proc/device-tree/node/property. |
| 33 | */ |
Alexey Dobriyan | e22f628 | 2009-09-06 23:31:25 +0000 | [diff] [blame] | 34 | static int property_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | { |
Alexey Dobriyan | e22f628 | 2009-09-06 23:31:25 +0000 | [diff] [blame] | 36 | struct property *pp = m->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Alexey Dobriyan | e22f628 | 2009-09-06 23:31:25 +0000 | [diff] [blame] | 38 | seq_write(m, pp->value, pp->length); |
| 39 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | } |
| 41 | |
Alexey Dobriyan | e22f628 | 2009-09-06 23:31:25 +0000 | [diff] [blame] | 42 | static int property_proc_open(struct inode *inode, struct file *file) |
| 43 | { |
David Howells | c30480b | 2013-04-12 18:03:36 +0100 | [diff] [blame] | 44 | return single_open(file, property_proc_show, __PDE_DATA(inode)); |
Alexey Dobriyan | e22f628 | 2009-09-06 23:31:25 +0000 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | static const struct file_operations property_proc_fops = { |
| 48 | .owner = THIS_MODULE, |
| 49 | .open = property_proc_open, |
| 50 | .read = seq_read, |
| 51 | .llseek = seq_lseek, |
| 52 | .release = single_release, |
| 53 | }; |
| 54 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | /* |
| 56 | * For a node with a name like "gc@10", we make symlinks called "gc" |
| 57 | * and "@10" to it. |
| 58 | */ |
| 59 | |
| 60 | /* |
Benjamin Herrenschmidt | 183d020 | 2005-11-07 14:29:02 +1100 | [diff] [blame] | 61 | * Add a property to a node |
| 62 | */ |
| 63 | static struct proc_dir_entry * |
Michael Ellerman | 5149fa4 | 2006-03-27 14:26:26 +1100 | [diff] [blame] | 64 | __proc_device_tree_add_prop(struct proc_dir_entry *de, struct property *pp, |
| 65 | const char *name) |
Benjamin Herrenschmidt | 183d020 | 2005-11-07 14:29:02 +1100 | [diff] [blame] | 66 | { |
| 67 | struct proc_dir_entry *ent; |
| 68 | |
| 69 | /* |
| 70 | * Unfortunately proc_register puts each new entry |
| 71 | * at the beginning of the list. So we rearrange them. |
| 72 | */ |
Alexey Dobriyan | e22f628 | 2009-09-06 23:31:25 +0000 | [diff] [blame] | 73 | ent = proc_create_data(name, |
| 74 | strncmp(name, "security-", 9) ? S_IRUGO : S_IRUSR, |
| 75 | de, &property_proc_fops, pp); |
Benjamin Herrenschmidt | 183d020 | 2005-11-07 14:29:02 +1100 | [diff] [blame] | 76 | if (ent == NULL) |
| 77 | return NULL; |
| 78 | |
Michael Ellerman | 5149fa4 | 2006-03-27 14:26:26 +1100 | [diff] [blame] | 79 | if (!strncmp(name, "security-", 9)) |
Benjamin Herrenschmidt | 183d020 | 2005-11-07 14:29:02 +1100 | [diff] [blame] | 80 | ent->size = 0; /* don't leak number of password chars */ |
| 81 | else |
| 82 | ent->size = pp->length; |
| 83 | |
| 84 | return ent; |
| 85 | } |
| 86 | |
| 87 | |
| 88 | void proc_device_tree_add_prop(struct proc_dir_entry *pde, struct property *prop) |
| 89 | { |
Michael Ellerman | 5149fa4 | 2006-03-27 14:26:26 +1100 | [diff] [blame] | 90 | __proc_device_tree_add_prop(pde, prop, prop->name); |
Benjamin Herrenschmidt | 183d020 | 2005-11-07 14:29:02 +1100 | [diff] [blame] | 91 | } |
| 92 | |
Dave C Boutcher | 898b539 | 2006-01-12 16:07:17 -0600 | [diff] [blame] | 93 | void proc_device_tree_remove_prop(struct proc_dir_entry *pde, |
| 94 | struct property *prop) |
| 95 | { |
| 96 | remove_proc_entry(prop->name, pde); |
| 97 | } |
| 98 | |
| 99 | void proc_device_tree_update_prop(struct proc_dir_entry *pde, |
| 100 | struct property *newprop, |
| 101 | struct property *oldprop) |
| 102 | { |
| 103 | struct proc_dir_entry *ent; |
| 104 | |
Dong Aisheng | 475d009 | 2012-07-11 15:16:37 +1000 | [diff] [blame] | 105 | if (!oldprop) { |
| 106 | proc_device_tree_add_prop(pde, newprop); |
| 107 | return; |
| 108 | } |
| 109 | |
Dave C Boutcher | 898b539 | 2006-01-12 16:07:17 -0600 | [diff] [blame] | 110 | for (ent = pde->subdir; ent != NULL; ent = ent->next) |
| 111 | if (ent->data == oldprop) |
| 112 | break; |
| 113 | if (ent == NULL) { |
Andrew Morton | 87ebdc0 | 2013-02-27 17:03:16 -0800 | [diff] [blame] | 114 | pr_warn("device-tree: property \"%s\" does not exist\n", |
| 115 | oldprop->name); |
Dave C Boutcher | 898b539 | 2006-01-12 16:07:17 -0600 | [diff] [blame] | 116 | } else { |
| 117 | ent->data = newprop; |
| 118 | ent->size = newprop->length; |
| 119 | } |
| 120 | } |
| 121 | |
Benjamin Herrenschmidt | 183d020 | 2005-11-07 14:29:02 +1100 | [diff] [blame] | 122 | /* |
Michael Ellerman | 5149fa4 | 2006-03-27 14:26:26 +1100 | [diff] [blame] | 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. |
| 126 | */ |
| 127 | |
| 128 | static int duplicate_name(struct proc_dir_entry *de, const char *name) |
| 129 | { |
| 130 | struct proc_dir_entry *ent; |
| 131 | int found = 0; |
| 132 | |
| 133 | spin_lock(&proc_subdir_lock); |
| 134 | |
| 135 | for (ent = de->subdir; ent != NULL; ent = ent->next) { |
| 136 | if (strcmp(ent->name, name) == 0) { |
| 137 | found = 1; |
| 138 | break; |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | spin_unlock(&proc_subdir_lock); |
| 143 | |
| 144 | return found; |
| 145 | } |
| 146 | |
| 147 | static const char *fixup_name(struct device_node *np, struct proc_dir_entry *de, |
| 148 | const char *name) |
| 149 | { |
| 150 | char *fixed_name; |
| 151 | int fixup_len = strlen(name) + 2 + 1; /* name + #x + \0 */ |
| 152 | int i = 1, size; |
| 153 | |
| 154 | realloc: |
| 155 | fixed_name = kmalloc(fixup_len, GFP_KERNEL); |
| 156 | if (fixed_name == NULL) { |
Andrew Morton | 87ebdc0 | 2013-02-27 17:03:16 -0800 | [diff] [blame] | 157 | pr_err("device-tree: Out of memory trying to fixup " |
| 158 | "name \"%s\"\n", name); |
Michael Ellerman | 5149fa4 | 2006-03-27 14:26:26 +1100 | [diff] [blame] | 159 | return name; |
| 160 | } |
| 161 | |
| 162 | retry: |
| 163 | size = snprintf(fixed_name, fixup_len, "%s#%d", name, i); |
| 164 | size++; /* account for NULL */ |
| 165 | |
| 166 | if (size > fixup_len) { |
| 167 | /* We ran out of space, free and reallocate. */ |
| 168 | kfree(fixed_name); |
| 169 | fixup_len = size; |
| 170 | goto realloc; |
| 171 | } |
| 172 | |
| 173 | if (duplicate_name(de, fixed_name)) { |
| 174 | /* Multiple duplicates. Retry with a different offset. */ |
| 175 | i++; |
| 176 | goto retry; |
| 177 | } |
| 178 | |
Andrew Morton | 87ebdc0 | 2013-02-27 17:03:16 -0800 | [diff] [blame] | 179 | pr_warn("device-tree: Duplicate name in %s, renamed to \"%s\"\n", |
| 180 | np->full_name, fixed_name); |
Michael Ellerman | 5149fa4 | 2006-03-27 14:26:26 +1100 | [diff] [blame] | 181 | |
| 182 | return fixed_name; |
| 183 | } |
| 184 | |
| 185 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | * Process a node, adding entries for its children and its properties. |
| 187 | */ |
Benjamin Herrenschmidt | 5f64f73 | 2005-06-01 17:07:27 +1000 | [diff] [blame] | 188 | void proc_device_tree_add_node(struct device_node *np, |
| 189 | struct proc_dir_entry *de) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | { |
| 191 | struct property *pp; |
| 192 | struct proc_dir_entry *ent; |
Benjamin Herrenschmidt | 5f64f73 | 2005-06-01 17:07:27 +1000 | [diff] [blame] | 193 | struct device_node *child; |
Benjamin Herrenschmidt | 5f64f73 | 2005-06-01 17:07:27 +1000 | [diff] [blame] | 194 | const char *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
| 196 | set_node_proc_entry(np, de); |
Benjamin Herrenschmidt | 5f64f73 | 2005-06-01 17:07:27 +1000 | [diff] [blame] | 197 | for (child = NULL; (child = of_get_next_child(np, child));) { |
Michael Ellerman | 5149fa4 | 2006-03-27 14:26:26 +1100 | [diff] [blame] | 198 | /* Use everything after the last slash, or the full name */ |
Andy Shevchenko | f9a00e8 | 2012-12-17 16:01:25 -0800 | [diff] [blame] | 199 | p = kbasename(child->full_name); |
Michael Ellerman | 5149fa4 | 2006-03-27 14:26:26 +1100 | [diff] [blame] | 200 | |
| 201 | if (duplicate_name(de, p)) |
| 202 | p = fixup_name(np, de, p); |
| 203 | |
Benjamin Herrenschmidt | 5f64f73 | 2005-06-01 17:07:27 +1000 | [diff] [blame] | 204 | ent = proc_mkdir(p, de); |
Michal Simek | bcac2b1 | 2009-06-17 16:25:59 -0700 | [diff] [blame] | 205 | if (ent == NULL) |
Benjamin Herrenschmidt | 5f64f73 | 2005-06-01 17:07:27 +1000 | [diff] [blame] | 206 | break; |
Benjamin Herrenschmidt | 5f64f73 | 2005-06-01 17:07:27 +1000 | [diff] [blame] | 207 | proc_device_tree_add_node(child, ent); |
| 208 | } |
| 209 | of_node_put(child); |
Benjamin Herrenschmidt | 5f64f73 | 2005-06-01 17:07:27 +1000 | [diff] [blame] | 210 | |
Michal Simek | bcac2b1 | 2009-06-17 16:25:59 -0700 | [diff] [blame] | 211 | for (pp = np->properties; pp != NULL; pp = pp->next) { |
Michael Ellerman | 5149fa4 | 2006-03-27 14:26:26 +1100 | [diff] [blame] | 212 | p = pp->name; |
| 213 | |
Michael Ellerman | 9f069af | 2010-05-19 02:32:29 +0000 | [diff] [blame] | 214 | if (strchr(p, '/')) |
| 215 | continue; |
| 216 | |
Michael Ellerman | 5149fa4 | 2006-03-27 14:26:26 +1100 | [diff] [blame] | 217 | if (duplicate_name(de, p)) |
| 218 | p = fixup_name(np, de, p); |
| 219 | |
| 220 | ent = __proc_device_tree_add_prop(de, pp, p); |
Michal Simek | bcac2b1 | 2009-06-17 16:25:59 -0700 | [diff] [blame] | 221 | if (ent == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | /* |
| 227 | * Called on initialization to set up the /proc/device-tree subtree |
| 228 | */ |
Alexey Dobriyan | 1e0edd3 | 2008-10-17 05:07:44 +0400 | [diff] [blame] | 229 | void __init proc_device_tree_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | { |
| 231 | struct device_node *root; |
Anton Vorontsov | 6b82b3e | 2008-12-09 09:47:29 +0000 | [diff] [blame] | 232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | proc_device_tree = proc_mkdir("device-tree", NULL); |
Michal Simek | bcac2b1 | 2009-06-17 16:25:59 -0700 | [diff] [blame] | 234 | if (proc_device_tree == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | return; |
| 236 | root = of_find_node_by_path("/"); |
Michal Simek | bcac2b1 | 2009-06-17 16:25:59 -0700 | [diff] [blame] | 237 | if (root == NULL) { |
Paul Bolle | 8aaccf7 | 2011-02-14 22:34:22 +0100 | [diff] [blame] | 238 | pr_debug("/proc/device-tree: can't find root\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | return; |
| 240 | } |
| 241 | proc_device_tree_add_node(root, proc_device_tree); |
| 242 | of_node_put(root); |
| 243 | } |