]>
Commit | Line | Data |
---|---|---|
af6074fc | 1 | // SPDX-License-Identifier: GPL-2.0 |
7518b589 PA |
2 | /* |
3 | * Functions for working with device tree overlays | |
4 | * | |
5 | * Copyright (C) 2012 Pantelis Antoniou <[email protected]> | |
6 | * Copyright (C) 2012 Texas Instruments Inc. | |
7518b589 | 7 | */ |
606ad42a RH |
8 | |
9 | #define pr_fmt(fmt) "OF: overlay: " fmt | |
10 | ||
7518b589 PA |
11 | #include <linux/kernel.h> |
12 | #include <linux/module.h> | |
13 | #include <linux/of.h> | |
14 | #include <linux/of_device.h> | |
39a751a4 | 15 | #include <linux/of_fdt.h> |
7518b589 PA |
16 | #include <linux/string.h> |
17 | #include <linux/ctype.h> | |
18 | #include <linux/errno.h> | |
7518b589 | 19 | #include <linux/slab.h> |
39a751a4 | 20 | #include <linux/libfdt.h> |
7518b589 | 21 | #include <linux/err.h> |
0d1886df | 22 | #include <linux/idr.h> |
7518b589 PA |
23 | |
24 | #include "of_private.h" | |
25 | ||
6b4955ba FR |
26 | /** |
27 | * struct target - info about current target node as recursing through overlay | |
28 | * @np: node where current level of overlay will be applied | |
29 | * @in_livetree: @np is a node in the live devicetree | |
30 | * | |
31 | * Used in the algorithm to create the portion of a changeset that describes | |
32 | * an overlay fragment, which is a devicetree subtree. Initially @np is a node | |
33 | * in the live devicetree where the overlay subtree is targeted to be grafted | |
34 | * into. When recursing to the next level of the overlay subtree, the target | |
35 | * also recurses to the next level of the live devicetree, as long as overlay | |
36 | * subtree node also exists in the live devicetree. When a node in the overlay | |
37 | * subtree does not exist at the same level in the live devicetree, target->np | |
38 | * points to a newly allocated node, and all subsequent targets in the subtree | |
39 | * will be newly allocated nodes. | |
40 | */ | |
41 | struct target { | |
42 | struct device_node *np; | |
43 | bool in_livetree; | |
44 | }; | |
45 | ||
7518b589 | 46 | /** |
0290c4ca | 47 | * struct fragment - info about fragment nodes in overlay expanded device tree |
7518b589 | 48 | * @target: target of the overlay operation |
0290c4ca | 49 | * @overlay: pointer to the __overlay__ node |
7518b589 | 50 | */ |
0290c4ca | 51 | struct fragment { |
7518b589 | 52 | struct device_node *overlay; |
81225ea6 | 53 | struct device_node *target; |
7518b589 PA |
54 | }; |
55 | ||
56 | /** | |
0290c4ca | 57 | * struct overlay_changeset |
39a751a4 | 58 | * @id: changeset identifier |
3912b791 | 59 | * @ovcs_list: list on which we are located |
39a751a4 | 60 | * @fdt: FDT that was unflattened to create @overlay_tree |
e0a58f3e | 61 | * @overlay_tree: expanded device tree that contains the fragment nodes |
3912b791 FR |
62 | * @count: count of fragment structures |
63 | * @fragments: fragment nodes in the overlay expanded device tree | |
64 | * @symbols_fragment: last element of @fragments[] is the __symbols__ node | |
65 | * @cset: changeset to apply fragments to live device tree | |
7518b589 | 66 | */ |
0290c4ca | 67 | struct overlay_changeset { |
7518b589 | 68 | int id; |
0290c4ca | 69 | struct list_head ovcs_list; |
39a751a4 | 70 | const void *fdt; |
e0a58f3e | 71 | struct device_node *overlay_tree; |
7518b589 | 72 | int count; |
0290c4ca | 73 | struct fragment *fragments; |
3912b791 | 74 | bool symbols_fragment; |
7518b589 PA |
75 | struct of_changeset cset; |
76 | }; | |
77 | ||
24789c5c FR |
78 | /* flags are sticky - once set, do not reset */ |
79 | static int devicetree_state_flags; | |
80 | #define DTSF_APPLY_FAIL 0x01 | |
81 | #define DTSF_REVERT_FAIL 0x02 | |
82 | ||
83 | /* | |
84 | * If a changeset apply or revert encounters an error, an attempt will | |
85 | * be made to undo partial changes, but may fail. If the undo fails | |
86 | * we do not know the state of the devicetree. | |
87 | */ | |
88 | static int devicetree_corrupt(void) | |
89 | { | |
90 | return devicetree_state_flags & | |
91 | (DTSF_APPLY_FAIL | DTSF_REVERT_FAIL); | |
92 | } | |
93 | ||
0290c4ca | 94 | static int build_changeset_next_level(struct overlay_changeset *ovcs, |
6b4955ba | 95 | struct target *target, const struct device_node *overlay_node); |
7518b589 | 96 | |
f948d6d8 FR |
97 | /* |
98 | * of_resolve_phandles() finds the largest phandle in the live tree. | |
99 | * of_overlay_apply() may add a larger phandle to the live tree. | |
100 | * Do not allow race between two overlays being applied simultaneously: | |
101 | * mutex_lock(&of_overlay_phandle_mutex) | |
102 | * of_resolve_phandles() | |
103 | * of_overlay_apply() | |
104 | * mutex_unlock(&of_overlay_phandle_mutex) | |
105 | */ | |
106 | static DEFINE_MUTEX(of_overlay_phandle_mutex); | |
107 | ||
108 | void of_overlay_mutex_lock(void) | |
109 | { | |
110 | mutex_lock(&of_overlay_phandle_mutex); | |
111 | } | |
112 | ||
113 | void of_overlay_mutex_unlock(void) | |
114 | { | |
115 | mutex_unlock(&of_overlay_phandle_mutex); | |
116 | } | |
117 | ||
118 | ||
61b4de4e FR |
119 | static LIST_HEAD(ovcs_list); |
120 | static DEFINE_IDR(ovcs_idr); | |
121 | ||
0290c4ca | 122 | static BLOCKING_NOTIFIER_HEAD(overlay_notify_chain); |
39a842e2 | 123 | |
83ef4777 JK |
124 | /** |
125 | * of_overlay_notifier_register() - Register notifier for overlay operations | |
126 | * @nb: Notifier block to register | |
127 | * | |
128 | * Register for notification on overlay operations on device tree nodes. The | |
129 | * reported actions definied by @of_reconfig_change. The notifier callback | |
130 | * furthermore receives a pointer to the affected device tree node. | |
131 | * | |
132 | * Note that a notifier callback is not supposed to store pointers to a device | |
133 | * tree node or its content beyond @OF_OVERLAY_POST_REMOVE corresponding to the | |
134 | * respective node it received. | |
135 | */ | |
39a842e2 AT |
136 | int of_overlay_notifier_register(struct notifier_block *nb) |
137 | { | |
0290c4ca | 138 | return blocking_notifier_chain_register(&overlay_notify_chain, nb); |
39a842e2 AT |
139 | } |
140 | EXPORT_SYMBOL_GPL(of_overlay_notifier_register); | |
141 | ||
83ef4777 JK |
142 | /** |
143 | * of_overlay_notifier_register() - Unregister notifier for overlay operations | |
144 | * @nb: Notifier block to unregister | |
145 | */ | |
39a842e2 AT |
146 | int of_overlay_notifier_unregister(struct notifier_block *nb) |
147 | { | |
0290c4ca | 148 | return blocking_notifier_chain_unregister(&overlay_notify_chain, nb); |
39a842e2 AT |
149 | } |
150 | EXPORT_SYMBOL_GPL(of_overlay_notifier_unregister); | |
151 | ||
24789c5c FR |
152 | static char *of_overlay_action_name[] = { |
153 | "pre-apply", | |
154 | "post-apply", | |
155 | "pre-remove", | |
156 | "post-remove", | |
157 | }; | |
158 | ||
0290c4ca FR |
159 | static int overlay_notify(struct overlay_changeset *ovcs, |
160 | enum of_overlay_notify_action action) | |
39a842e2 AT |
161 | { |
162 | struct of_overlay_notify_data nd; | |
163 | int i, ret; | |
164 | ||
0290c4ca FR |
165 | for (i = 0; i < ovcs->count; i++) { |
166 | struct fragment *fragment = &ovcs->fragments[i]; | |
39a842e2 | 167 | |
0290c4ca FR |
168 | nd.target = fragment->target; |
169 | nd.overlay = fragment->overlay; | |
39a842e2 | 170 | |
0290c4ca | 171 | ret = blocking_notifier_call_chain(&overlay_notify_chain, |
39a842e2 | 172 | action, &nd); |
a1d19bd4 | 173 | if (ret == NOTIFY_OK || ret == NOTIFY_STOP) |
24789c5c FR |
174 | return 0; |
175 | if (ret) { | |
176 | ret = notifier_to_errno(ret); | |
177 | pr_err("overlay changeset %s notifier error %d, target: %pOF\n", | |
178 | of_overlay_action_name[action], ret, nd.target); | |
179 | return ret; | |
180 | } | |
39a842e2 AT |
181 | } |
182 | ||
183 | return 0; | |
184 | } | |
185 | ||
42b2e94f | 186 | /* |
e0a58f3e FR |
187 | * The values of properties in the "/__symbols__" node are paths in |
188 | * the ovcs->overlay_tree. When duplicating the properties, the paths | |
189 | * need to be adjusted to be the correct path for the live device tree. | |
42b2e94f | 190 | * |
e0a58f3e FR |
191 | * The paths refer to a node in the subtree of a fragment node's "__overlay__" |
192 | * node, for example "/fragment@0/__overlay__/symbol_path_tail", | |
193 | * where symbol_path_tail can be a single node or it may be a multi-node path. | |
42b2e94f FR |
194 | * |
195 | * The duplicated property value will be modified by replacing the | |
196 | * "/fragment_name/__overlay/" portion of the value with the target | |
197 | * path from the fragment node. | |
198 | */ | |
0290c4ca FR |
199 | static struct property *dup_and_fixup_symbol_prop( |
200 | struct overlay_changeset *ovcs, const struct property *prop) | |
d1651b03 | 201 | { |
0290c4ca | 202 | struct fragment *fragment; |
e0a58f3e FR |
203 | struct property *new_prop; |
204 | struct device_node *fragment_node; | |
205 | struct device_node *overlay_node; | |
206 | const char *path; | |
207 | const char *path_tail; | |
d1651b03 FR |
208 | const char *target_path; |
209 | int k; | |
d1651b03 | 210 | int overlay_name_len; |
e0a58f3e FR |
211 | int path_len; |
212 | int path_tail_len; | |
d1651b03 FR |
213 | int target_path_len; |
214 | ||
215 | if (!prop->value) | |
216 | return NULL; | |
e0a58f3e FR |
217 | if (strnlen(prop->value, prop->length) >= prop->length) |
218 | return NULL; | |
219 | path = prop->value; | |
220 | path_len = strlen(path); | |
d1651b03 | 221 | |
e0a58f3e | 222 | if (path_len < 1) |
d1651b03 | 223 | return NULL; |
e0a58f3e FR |
224 | fragment_node = __of_find_node_by_path(ovcs->overlay_tree, path + 1); |
225 | overlay_node = __of_find_node_by_path(fragment_node, "__overlay__/"); | |
226 | of_node_put(fragment_node); | |
227 | of_node_put(overlay_node); | |
d1651b03 | 228 | |
0290c4ca FR |
229 | for (k = 0; k < ovcs->count; k++) { |
230 | fragment = &ovcs->fragments[k]; | |
e0a58f3e | 231 | if (fragment->overlay == overlay_node) |
d1651b03 FR |
232 | break; |
233 | } | |
0290c4ca | 234 | if (k >= ovcs->count) |
e0a58f3e FR |
235 | return NULL; |
236 | ||
237 | overlay_name_len = snprintf(NULL, 0, "%pOF", fragment->overlay); | |
d1651b03 | 238 | |
e0a58f3e FR |
239 | if (overlay_name_len > path_len) |
240 | return NULL; | |
241 | path_tail = path + overlay_name_len; | |
242 | path_tail_len = strlen(path_tail); | |
243 | ||
244 | target_path = kasprintf(GFP_KERNEL, "%pOF", fragment->target); | |
245 | if (!target_path) | |
246 | return NULL; | |
d1651b03 FR |
247 | target_path_len = strlen(target_path); |
248 | ||
e0a58f3e FR |
249 | new_prop = kzalloc(sizeof(*new_prop), GFP_KERNEL); |
250 | if (!new_prop) | |
251 | goto err_free_target_path; | |
d1651b03 | 252 | |
e0a58f3e FR |
253 | new_prop->name = kstrdup(prop->name, GFP_KERNEL); |
254 | new_prop->length = target_path_len + path_tail_len + 1; | |
255 | new_prop->value = kzalloc(new_prop->length, GFP_KERNEL); | |
256 | if (!new_prop->name || !new_prop->value) | |
257 | goto err_free_new_prop; | |
d1651b03 | 258 | |
e0a58f3e FR |
259 | strcpy(new_prop->value, target_path); |
260 | strcpy(new_prop->value + target_path_len, path_tail); | |
d1651b03 | 261 | |
e0a58f3e | 262 | of_property_set_flag(new_prop, OF_DYNAMIC); |
d1651b03 | 263 | |
e0a58f3e | 264 | return new_prop; |
d1651b03 | 265 | |
e0a58f3e FR |
266 | err_free_new_prop: |
267 | kfree(new_prop->name); | |
268 | kfree(new_prop->value); | |
269 | kfree(new_prop); | |
270 | err_free_target_path: | |
271 | kfree(target_path); | |
d1651b03 | 272 | |
d1651b03 | 273 | return NULL; |
d1651b03 FR |
274 | } |
275 | ||
0290c4ca FR |
276 | /** |
277 | * add_changeset_property() - add @overlay_prop to overlay changeset | |
278 | * @ovcs: overlay changeset | |
6b4955ba | 279 | * @target: where @overlay_prop will be placed |
0290c4ca | 280 | * @overlay_prop: property to add or update, from overlay tree |
3912b791 | 281 | * @is_symbols_prop: 1 if @overlay_prop is from node "/__symbols__" |
0290c4ca | 282 | * |
6b4955ba FR |
283 | * If @overlay_prop does not already exist in live devicetree, add changeset |
284 | * entry to add @overlay_prop in @target, else add changeset entry to update | |
0290c4ca FR |
285 | * value of @overlay_prop. |
286 | * | |
6b4955ba FR |
287 | * @target may be either in the live devicetree or in a new subtree that |
288 | * is contained in the changeset. | |
289 | * | |
6f751188 FR |
290 | * Some special properties are not added or updated (no error returned): |
291 | * "name", "phandle", "linux,phandle". | |
292 | * | |
293 | * Properties "#address-cells" and "#size-cells" are not updated if they | |
294 | * are already in the live tree, but if present in the live tree, the values | |
295 | * in the overlay must match the values in the live tree. | |
0290c4ca | 296 | * |
646afc4a | 297 | * Update of property in symbols node is not allowed. |
0290c4ca FR |
298 | * |
299 | * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if | |
300 | * invalid @overlay. | |
646afc4a | 301 | */ |
0290c4ca | 302 | static int add_changeset_property(struct overlay_changeset *ovcs, |
6b4955ba | 303 | struct target *target, struct property *overlay_prop, |
3912b791 | 304 | bool is_symbols_prop) |
7518b589 | 305 | { |
0290c4ca | 306 | struct property *new_prop = NULL, *prop; |
ac0f3e30 | 307 | int ret = 0; |
6f751188 | 308 | bool check_for_non_overlay_node = false; |
7518b589 | 309 | |
f9627881 FR |
310 | if (target->in_livetree) |
311 | if (!of_prop_cmp(overlay_prop->name, "name") || | |
312 | !of_prop_cmp(overlay_prop->name, "phandle") || | |
313 | !of_prop_cmp(overlay_prop->name, "linux,phandle")) | |
314 | return 0; | |
7518b589 | 315 | |
6b4955ba FR |
316 | if (target->in_livetree) |
317 | prop = of_find_property(target->np, overlay_prop->name, NULL); | |
318 | else | |
319 | prop = NULL; | |
320 | ||
3912b791 | 321 | if (is_symbols_prop) { |
0290c4ca | 322 | if (prop) |
d1651b03 | 323 | return -EINVAL; |
0290c4ca | 324 | new_prop = dup_and_fixup_symbol_prop(ovcs, overlay_prop); |
d1651b03 | 325 | } else { |
0290c4ca | 326 | new_prop = __of_prop_dup(overlay_prop, GFP_KERNEL); |
d1651b03 FR |
327 | } |
328 | ||
0290c4ca | 329 | if (!new_prop) |
7518b589 PA |
330 | return -ENOMEM; |
331 | ||
6f751188 FR |
332 | if (!prop) { |
333 | check_for_non_overlay_node = true; | |
f9627881 FR |
334 | if (!target->in_livetree) { |
335 | new_prop->next = target->np->deadprops; | |
336 | target->np->deadprops = new_prop; | |
337 | } | |
6b4955ba | 338 | ret = of_changeset_add_property(&ovcs->cset, target->np, |
0290c4ca | 339 | new_prop); |
6f751188 FR |
340 | } else if (!of_prop_cmp(prop->name, "#address-cells")) { |
341 | if (!of_prop_val_eq(prop, new_prop)) { | |
342 | pr_err("ERROR: changing value of #address-cells is not allowed in %pOF\n", | |
343 | target->np); | |
344 | ret = -EINVAL; | |
345 | } | |
346 | } else if (!of_prop_cmp(prop->name, "#size-cells")) { | |
347 | if (!of_prop_val_eq(prop, new_prop)) { | |
348 | pr_err("ERROR: changing value of #size-cells is not allowed in %pOF\n", | |
349 | target->np); | |
350 | ret = -EINVAL; | |
351 | } | |
352 | } else { | |
353 | check_for_non_overlay_node = true; | |
6b4955ba | 354 | ret = of_changeset_update_property(&ovcs->cset, target->np, |
0290c4ca | 355 | new_prop); |
6f751188 FR |
356 | } |
357 | ||
358 | if (check_for_non_overlay_node && | |
359 | !of_node_check_flag(target->np, OF_OVERLAY)) | |
360 | pr_err("WARNING: memory leak will occur if overlay removed, property: %pOF/%s\n", | |
361 | target->np, new_prop->name); | |
ac0f3e30 LW |
362 | |
363 | if (ret) { | |
0290c4ca FR |
364 | kfree(new_prop->name); |
365 | kfree(new_prop->value); | |
366 | kfree(new_prop); | |
ac0f3e30 LW |
367 | } |
368 | return ret; | |
7518b589 PA |
369 | } |
370 | ||
0290c4ca FR |
371 | /** |
372 | * add_changeset_node() - add @node (and children) to overlay changeset | |
6b4955ba FR |
373 | * @ovcs: overlay changeset |
374 | * @target: where @node will be placed in live tree or changeset | |
375 | * @node: node from within overlay device tree fragment | |
0290c4ca | 376 | * |
6b4955ba FR |
377 | * If @node does not already exist in @target, add changeset entry |
378 | * to add @node in @target. | |
0290c4ca | 379 | * |
6b4955ba | 380 | * If @node already exists in @target, and the existing node has |
0290c4ca FR |
381 | * a phandle, the overlay node is not allowed to have a phandle. |
382 | * | |
383 | * If @node has child nodes, add the children recursively via | |
384 | * build_changeset_next_level(). | |
385 | * | |
b89dae18 FR |
386 | * NOTE_1: A live devicetree created from a flattened device tree (FDT) will |
387 | * not contain the full path in node->full_name. Thus an overlay | |
388 | * created from an FDT also will not contain the full path in | |
389 | * node->full_name. However, a live devicetree created from Open | |
390 | * Firmware may have the full path in node->full_name. | |
391 | * | |
392 | * add_changeset_node() follows the FDT convention and does not include | |
393 | * the full path in node->full_name. Even though it expects the overlay | |
394 | * to not contain the full path, it uses kbasename() to remove the | |
395 | * full path should it exist. It also uses kbasename() in comparisons | |
396 | * to nodes in the live devicetree so that it can apply an overlay to | |
397 | * a live devicetree created from Open Firmware. | |
398 | * | |
399 | * NOTE_2: Multiple mods of created nodes not supported. | |
0290c4ca FR |
400 | * |
401 | * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if | |
402 | * invalid @overlay. | |
403 | */ | |
404 | static int add_changeset_node(struct overlay_changeset *ovcs, | |
6b4955ba | 405 | struct target *target, struct device_node *node) |
7518b589 | 406 | { |
0290c4ca | 407 | const char *node_kbasename; |
f9627881 | 408 | const __be32 *phandle; |
d3a89165 | 409 | struct device_node *tchild; |
6b4955ba | 410 | struct target target_child; |
f9627881 | 411 | int ret = 0, size; |
7518b589 | 412 | |
0290c4ca | 413 | node_kbasename = kbasename(node->full_name); |
7518b589 | 414 | |
6b4955ba | 415 | for_each_child_of_node(target->np, tchild) |
0290c4ca | 416 | if (!of_node_cmp(node_kbasename, kbasename(tchild->full_name))) |
c1cd1e01 FR |
417 | break; |
418 | ||
61b4de4e | 419 | if (!tchild) { |
8814dc46 | 420 | tchild = __of_node_dup(NULL, node_kbasename); |
7518b589 PA |
421 | if (!tchild) |
422 | return -ENOMEM; | |
423 | ||
6b4955ba | 424 | tchild->parent = target->np; |
f9627881 | 425 | tchild->name = __of_get_property(node, "name", NULL); |
f9627881 FR |
426 | |
427 | if (!tchild->name) | |
428 | tchild->name = "<NULL>"; | |
f9627881 FR |
429 | |
430 | /* ignore obsolete "linux,phandle" */ | |
431 | phandle = __of_get_property(node, "phandle", &size); | |
432 | if (phandle && (size == 4)) | |
433 | tchild->phandle = be32_to_cpup(phandle); | |
434 | ||
144552c7 | 435 | of_node_set_flag(tchild, OF_OVERLAY); |
7518b589 | 436 | |
0290c4ca | 437 | ret = of_changeset_attach_node(&ovcs->cset, tchild); |
7518b589 PA |
438 | if (ret) |
439 | return ret; | |
440 | ||
6b4955ba FR |
441 | target_child.np = tchild; |
442 | target_child.in_livetree = false; | |
443 | ||
444 | ret = build_changeset_next_level(ovcs, &target_child, node); | |
7c528e45 FR |
445 | of_node_put(tchild); |
446 | return ret; | |
7518b589 PA |
447 | } |
448 | ||
6b4955ba | 449 | if (node->phandle && tchild->phandle) { |
6d0f5470 | 450 | ret = -EINVAL; |
6b4955ba FR |
451 | } else { |
452 | target_child.np = tchild; | |
453 | target_child.in_livetree = target->in_livetree; | |
454 | ret = build_changeset_next_level(ovcs, &target_child, node); | |
455 | } | |
61b4de4e FR |
456 | of_node_put(tchild); |
457 | ||
7518b589 PA |
458 | return ret; |
459 | } | |
460 | ||
0290c4ca FR |
461 | /** |
462 | * build_changeset_next_level() - add level of overlay changeset | |
463 | * @ovcs: overlay changeset | |
6b4955ba | 464 | * @target: where to place @overlay_node in live tree |
0290c4ca | 465 | * @overlay_node: node from within an overlay device tree fragment |
7518b589 | 466 | * |
0290c4ca FR |
467 | * Add the properties (if any) and nodes (if any) from @overlay_node to the |
468 | * @ovcs->cset changeset. If an added node has child nodes, they will | |
469 | * be added recursively. | |
646afc4a FR |
470 | * |
471 | * Do not allow symbols node to have any children. | |
0290c4ca FR |
472 | * |
473 | * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if | |
474 | * invalid @overlay_node. | |
7518b589 | 475 | */ |
0290c4ca | 476 | static int build_changeset_next_level(struct overlay_changeset *ovcs, |
6b4955ba | 477 | struct target *target, const struct device_node *overlay_node) |
7518b589 PA |
478 | { |
479 | struct device_node *child; | |
480 | struct property *prop; | |
481 | int ret; | |
482 | ||
0290c4ca | 483 | for_each_property_of_node(overlay_node, prop) { |
6b4955ba | 484 | ret = add_changeset_property(ovcs, target, prop, 0); |
7518b589 | 485 | if (ret) { |
24789c5c | 486 | pr_debug("Failed to apply prop @%pOF/%s, err=%d\n", |
6b4955ba | 487 | target->np, prop->name, ret); |
7518b589 PA |
488 | return ret; |
489 | } | |
490 | } | |
491 | ||
0290c4ca | 492 | for_each_child_of_node(overlay_node, child) { |
6b4955ba | 493 | ret = add_changeset_node(ovcs, target, child); |
bbed8794 | 494 | if (ret) { |
a613b26a | 495 | pr_debug("Failed to apply node @%pOF/%pOFn, err=%d\n", |
6b4955ba | 496 | target->np, child, ret); |
001cf504 | 497 | of_node_put(child); |
7518b589 PA |
498 | return ret; |
499 | } | |
500 | } | |
501 | ||
502 | return 0; | |
503 | } | |
504 | ||
3912b791 FR |
505 | /* |
506 | * Add the properties from __overlay__ node to the @ovcs->cset changeset. | |
507 | */ | |
508 | static int build_changeset_symbols_node(struct overlay_changeset *ovcs, | |
6b4955ba | 509 | struct target *target, |
3912b791 FR |
510 | const struct device_node *overlay_symbols_node) |
511 | { | |
512 | struct property *prop; | |
513 | int ret; | |
514 | ||
515 | for_each_property_of_node(overlay_symbols_node, prop) { | |
6b4955ba | 516 | ret = add_changeset_property(ovcs, target, prop, 1); |
3912b791 | 517 | if (ret) { |
a15e824f | 518 | pr_debug("Failed to apply symbols prop @%pOF/%s, err=%d\n", |
6b4955ba | 519 | target->np, prop->name, ret); |
3912b791 FR |
520 | return ret; |
521 | } | |
522 | } | |
523 | ||
524 | return 0; | |
525 | } | |
526 | ||
2fe0e876 FR |
527 | static int find_dup_cset_node_entry(struct overlay_changeset *ovcs, |
528 | struct of_changeset_entry *ce_1) | |
529 | { | |
530 | struct of_changeset_entry *ce_2; | |
531 | char *fn_1, *fn_2; | |
532 | int node_path_match; | |
533 | ||
534 | if (ce_1->action != OF_RECONFIG_ATTACH_NODE && | |
535 | ce_1->action != OF_RECONFIG_DETACH_NODE) | |
536 | return 0; | |
537 | ||
538 | ce_2 = ce_1; | |
539 | list_for_each_entry_continue(ce_2, &ovcs->cset.entries, node) { | |
540 | if ((ce_2->action != OF_RECONFIG_ATTACH_NODE && | |
541 | ce_2->action != OF_RECONFIG_DETACH_NODE) || | |
542 | of_node_cmp(ce_1->np->full_name, ce_2->np->full_name)) | |
543 | continue; | |
544 | ||
545 | fn_1 = kasprintf(GFP_KERNEL, "%pOF", ce_1->np); | |
546 | fn_2 = kasprintf(GFP_KERNEL, "%pOF", ce_2->np); | |
547 | node_path_match = !strcmp(fn_1, fn_2); | |
548 | kfree(fn_1); | |
549 | kfree(fn_2); | |
550 | if (node_path_match) { | |
551 | pr_err("ERROR: multiple fragments add and/or delete node %pOF\n", | |
552 | ce_1->np); | |
553 | return -EINVAL; | |
554 | } | |
555 | } | |
556 | ||
557 | return 0; | |
558 | } | |
559 | ||
560 | static int find_dup_cset_prop(struct overlay_changeset *ovcs, | |
561 | struct of_changeset_entry *ce_1) | |
562 | { | |
563 | struct of_changeset_entry *ce_2; | |
564 | char *fn_1, *fn_2; | |
565 | int node_path_match; | |
566 | ||
567 | if (ce_1->action != OF_RECONFIG_ADD_PROPERTY && | |
568 | ce_1->action != OF_RECONFIG_REMOVE_PROPERTY && | |
569 | ce_1->action != OF_RECONFIG_UPDATE_PROPERTY) | |
570 | return 0; | |
571 | ||
572 | ce_2 = ce_1; | |
573 | list_for_each_entry_continue(ce_2, &ovcs->cset.entries, node) { | |
574 | if ((ce_2->action != OF_RECONFIG_ADD_PROPERTY && | |
575 | ce_2->action != OF_RECONFIG_REMOVE_PROPERTY && | |
576 | ce_2->action != OF_RECONFIG_UPDATE_PROPERTY) || | |
577 | of_node_cmp(ce_1->np->full_name, ce_2->np->full_name)) | |
578 | continue; | |
579 | ||
580 | fn_1 = kasprintf(GFP_KERNEL, "%pOF", ce_1->np); | |
581 | fn_2 = kasprintf(GFP_KERNEL, "%pOF", ce_2->np); | |
582 | node_path_match = !strcmp(fn_1, fn_2); | |
583 | kfree(fn_1); | |
584 | kfree(fn_2); | |
585 | if (node_path_match && | |
586 | !of_prop_cmp(ce_1->prop->name, ce_2->prop->name)) { | |
587 | pr_err("ERROR: multiple fragments add, update, and/or delete property %pOF/%s\n", | |
588 | ce_1->np, ce_1->prop->name); | |
589 | return -EINVAL; | |
590 | } | |
591 | } | |
592 | ||
593 | return 0; | |
594 | } | |
595 | ||
c168263b | 596 | /** |
2fe0e876 | 597 | * changeset_dup_entry_check() - check for duplicate entries |
c168263b FR |
598 | * @ovcs: Overlay changeset |
599 | * | |
2fe0e876 FR |
600 | * Check changeset @ovcs->cset for multiple {add or delete} node entries for |
601 | * the same node or duplicate {add, delete, or update} properties entries | |
602 | * for the same property. | |
c168263b | 603 | * |
2fe0e876 | 604 | * Returns 0 on success, or -EINVAL if duplicate changeset entry found. |
c168263b | 605 | */ |
2fe0e876 | 606 | static int changeset_dup_entry_check(struct overlay_changeset *ovcs) |
c168263b | 607 | { |
2fe0e876 FR |
608 | struct of_changeset_entry *ce_1; |
609 | int dup_entry = 0; | |
c168263b FR |
610 | |
611 | list_for_each_entry(ce_1, &ovcs->cset.entries, node) { | |
2fe0e876 FR |
612 | dup_entry |= find_dup_cset_node_entry(ovcs, ce_1); |
613 | dup_entry |= find_dup_cset_prop(ovcs, ce_1); | |
c168263b FR |
614 | } |
615 | ||
2fe0e876 | 616 | return dup_entry ? -EINVAL : 0; |
c168263b FR |
617 | } |
618 | ||
7518b589 | 619 | /** |
0290c4ca FR |
620 | * build_changeset() - populate overlay changeset in @ovcs from @ovcs->fragments |
621 | * @ovcs: Overlay changeset | |
7518b589 | 622 | * |
0290c4ca FR |
623 | * Create changeset @ovcs->cset to contain the nodes and properties of the |
624 | * overlay device tree fragments in @ovcs->fragments[]. If an error occurs, | |
625 | * any portions of the changeset that were successfully created will remain | |
626 | * in @ovcs->cset. | |
627 | * | |
628 | * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if | |
629 | * invalid overlay in @ovcs->fragments[]. | |
7518b589 | 630 | */ |
0290c4ca | 631 | static int build_changeset(struct overlay_changeset *ovcs) |
7518b589 | 632 | { |
3912b791 | 633 | struct fragment *fragment; |
6b4955ba | 634 | struct target target; |
3912b791 | 635 | int fragments_count, i, ret; |
7518b589 | 636 | |
3912b791 FR |
637 | /* |
638 | * if there is a symbols fragment in ovcs->fragments[i] it is | |
639 | * the final element in the array | |
640 | */ | |
641 | if (ovcs->symbols_fragment) | |
642 | fragments_count = ovcs->count - 1; | |
643 | else | |
644 | fragments_count = ovcs->count; | |
645 | ||
646 | for (i = 0; i < fragments_count; i++) { | |
647 | fragment = &ovcs->fragments[i]; | |
7518b589 | 648 | |
6b4955ba FR |
649 | target.np = fragment->target; |
650 | target.in_livetree = true; | |
651 | ret = build_changeset_next_level(ovcs, &target, | |
3912b791 FR |
652 | fragment->overlay); |
653 | if (ret) { | |
a15e824f FR |
654 | pr_debug("fragment apply failed '%pOF'\n", |
655 | fragment->target); | |
3912b791 FR |
656 | return ret; |
657 | } | |
658 | } | |
659 | ||
660 | if (ovcs->symbols_fragment) { | |
661 | fragment = &ovcs->fragments[ovcs->count - 1]; | |
6b4955ba FR |
662 | |
663 | target.np = fragment->target; | |
664 | target.in_livetree = true; | |
665 | ret = build_changeset_symbols_node(ovcs, &target, | |
3912b791 | 666 | fragment->overlay); |
0290c4ca | 667 | if (ret) { |
a15e824f FR |
668 | pr_debug("symbols fragment apply failed '%pOF'\n", |
669 | fragment->target); | |
0290c4ca | 670 | return ret; |
7518b589 PA |
671 | } |
672 | } | |
673 | ||
2fe0e876 | 674 | return changeset_dup_entry_check(ovcs); |
7518b589 PA |
675 | } |
676 | ||
677 | /* | |
678 | * Find the target node using a number of different strategies | |
646afc4a | 679 | * in order of preference: |
7518b589 | 680 | * |
646afc4a FR |
681 | * 1) "target" property containing the phandle of the target |
682 | * 2) "target-path" property containing the path of the target | |
7518b589 | 683 | */ |
6b4955ba | 684 | static struct device_node *find_target(struct device_node *info_node) |
7518b589 | 685 | { |
e547c003 | 686 | struct device_node *node; |
7518b589 PA |
687 | const char *path; |
688 | u32 val; | |
689 | int ret; | |
690 | ||
7518b589 | 691 | ret = of_property_read_u32(info_node, "target", &val); |
e547c003 FR |
692 | if (!ret) { |
693 | node = of_find_node_by_phandle(val); | |
694 | if (!node) | |
695 | pr_err("find target, node: %pOF, phandle 0x%x not found\n", | |
696 | info_node, val); | |
697 | return node; | |
698 | } | |
7518b589 | 699 | |
7518b589 | 700 | ret = of_property_read_string(info_node, "target-path", &path); |
e547c003 FR |
701 | if (!ret) { |
702 | node = of_find_node_by_path(path); | |
703 | if (!node) | |
704 | pr_err("find target, node: %pOF, path '%s' not found\n", | |
705 | info_node, path); | |
706 | return node; | |
707 | } | |
7518b589 | 708 | |
e547c003 | 709 | pr_err("find target, node: %pOF, no target property\n", info_node); |
7518b589 PA |
710 | |
711 | return NULL; | |
712 | } | |
713 | ||
7518b589 | 714 | /** |
0290c4ca | 715 | * init_overlay_changeset() - initialize overlay changeset from overlay tree |
39a751a4 FR |
716 | * @ovcs: Overlay changeset to build |
717 | * @fdt: the FDT that was unflattened to create @tree | |
0290c4ca | 718 | * @tree: Contains all the overlay fragments and overlay fixup nodes |
7518b589 | 719 | * |
0290c4ca FR |
720 | * Initialize @ovcs. Populate @ovcs->fragments with node information from |
721 | * the top level of @tree. The relevant top level nodes are the fragment | |
722 | * nodes and the __symbols__ node. Any other top level node will be ignored. | |
7518b589 | 723 | * |
0290c4ca | 724 | * Returns 0 on success, -ENOMEM if memory allocation failure, -EINVAL if error |
61b4de4e | 725 | * detected in @tree, or -ENOSPC if idr_alloc() error. |
7518b589 | 726 | */ |
0290c4ca | 727 | static int init_overlay_changeset(struct overlay_changeset *ovcs, |
39a751a4 | 728 | const void *fdt, struct device_node *tree) |
7518b589 | 729 | { |
61b4de4e | 730 | struct device_node *node, *overlay_node; |
0290c4ca FR |
731 | struct fragment *fragment; |
732 | struct fragment *fragments; | |
1352f09b | 733 | int cnt, id, ret; |
7518b589 | 734 | |
24789c5c FR |
735 | /* |
736 | * Warn for some issues. Can not return -EINVAL for these until | |
737 | * of_unittest_apply_overlay() is fixed to pass these checks. | |
738 | */ | |
739 | if (!of_node_check_flag(tree, OF_DYNAMIC)) | |
740 | pr_debug("%s() tree is not dynamic\n", __func__); | |
741 | ||
742 | if (!of_node_check_flag(tree, OF_DETACHED)) | |
743 | pr_debug("%s() tree is not detached\n", __func__); | |
744 | ||
745 | if (!of_node_is_root(tree)) | |
746 | pr_debug("%s() tree is not root\n", __func__); | |
747 | ||
e0a58f3e | 748 | ovcs->overlay_tree = tree; |
39a751a4 | 749 | ovcs->fdt = fdt; |
e0a58f3e | 750 | |
61b4de4e FR |
751 | INIT_LIST_HEAD(&ovcs->ovcs_list); |
752 | ||
753 | of_changeset_init(&ovcs->cset); | |
754 | ||
1352f09b GU |
755 | id = idr_alloc(&ovcs_idr, ovcs, 1, 0, GFP_KERNEL); |
756 | if (id <= 0) | |
757 | return id; | |
61b4de4e | 758 | |
7518b589 | 759 | cnt = 0; |
7518b589 | 760 | |
61b4de4e FR |
761 | /* fragment nodes */ |
762 | for_each_child_of_node(tree, node) { | |
763 | overlay_node = of_get_child_by_name(node, "__overlay__"); | |
764 | if (overlay_node) { | |
765 | cnt++; | |
766 | of_node_put(overlay_node); | |
767 | } | |
768 | } | |
769 | ||
770 | node = of_get_child_by_name(tree, "__symbols__"); | |
771 | if (node) { | |
d1651b03 | 772 | cnt++; |
61b4de4e FR |
773 | of_node_put(node); |
774 | } | |
d1651b03 | 775 | |
0290c4ca | 776 | fragments = kcalloc(cnt, sizeof(*fragments), GFP_KERNEL); |
61b4de4e FR |
777 | if (!fragments) { |
778 | ret = -ENOMEM; | |
779 | goto err_free_idr; | |
780 | } | |
7518b589 PA |
781 | |
782 | cnt = 0; | |
783 | for_each_child_of_node(tree, node) { | |
35e691ed | 784 | overlay_node = of_get_child_by_name(node, "__overlay__"); |
589b754d GU |
785 | if (!overlay_node) |
786 | continue; | |
6de67de3 | 787 | |
589b754d GU |
788 | fragment = &fragments[cnt]; |
789 | fragment->overlay = overlay_node; | |
6b4955ba | 790 | fragment->target = find_target(node); |
589b754d GU |
791 | if (!fragment->target) { |
792 | of_node_put(fragment->overlay); | |
793 | ret = -EINVAL; | |
794 | goto err_free_fragments; | |
61b4de4e | 795 | } |
589b754d GU |
796 | |
797 | cnt++; | |
7518b589 PA |
798 | } |
799 | ||
3912b791 FR |
800 | /* |
801 | * if there is a symbols fragment in ovcs->fragments[i] it is | |
802 | * the final element in the array | |
803 | */ | |
d1651b03 FR |
804 | node = of_get_child_by_name(tree, "__symbols__"); |
805 | if (node) { | |
3912b791 | 806 | ovcs->symbols_fragment = 1; |
0290c4ca FR |
807 | fragment = &fragments[cnt]; |
808 | fragment->overlay = node; | |
809 | fragment->target = of_find_node_by_path("/__symbols__"); | |
d1651b03 | 810 | |
0290c4ca | 811 | if (!fragment->target) { |
4ee7c0d9 | 812 | pr_err("symbols in overlay, but not in live tree\n"); |
61b4de4e FR |
813 | ret = -EINVAL; |
814 | goto err_free_fragments; | |
d1651b03 FR |
815 | } |
816 | ||
817 | cnt++; | |
818 | } | |
819 | ||
bbed8794 | 820 | if (!cnt) { |
39a751a4 | 821 | pr_err("no fragments or symbols in overlay\n"); |
61b4de4e FR |
822 | ret = -EINVAL; |
823 | goto err_free_fragments; | |
7518b589 PA |
824 | } |
825 | ||
1352f09b | 826 | ovcs->id = id; |
0290c4ca FR |
827 | ovcs->count = cnt; |
828 | ovcs->fragments = fragments; | |
7518b589 PA |
829 | |
830 | return 0; | |
61b4de4e | 831 | |
61b4de4e FR |
832 | err_free_fragments: |
833 | kfree(fragments); | |
834 | err_free_idr: | |
1352f09b | 835 | idr_remove(&ovcs_idr, id); |
61b4de4e | 836 | |
24789c5c FR |
837 | pr_err("%s() failed, ret = %d\n", __func__, ret); |
838 | ||
61b4de4e | 839 | return ret; |
7518b589 PA |
840 | } |
841 | ||
61b4de4e | 842 | static void free_overlay_changeset(struct overlay_changeset *ovcs) |
7518b589 | 843 | { |
7518b589 PA |
844 | int i; |
845 | ||
1352f09b GU |
846 | if (ovcs->cset.entries.next) |
847 | of_changeset_destroy(&ovcs->cset); | |
61b4de4e FR |
848 | |
849 | if (ovcs->id) | |
850 | idr_remove(&ovcs_idr, ovcs->id); | |
851 | ||
852 | for (i = 0; i < ovcs->count; i++) { | |
0290c4ca FR |
853 | of_node_put(ovcs->fragments[i].target); |
854 | of_node_put(ovcs->fragments[i].overlay); | |
7518b589 | 855 | } |
0290c4ca | 856 | kfree(ovcs->fragments); |
39a751a4 | 857 | /* |
83ef4777 JK |
858 | * There should be no live pointers into ovcs->overlay_tree and |
859 | * ovcs->fdt due to the policy that overlay notifiers are not allowed | |
860 | * to retain pointers into the overlay devicetree. | |
39a751a4 | 861 | */ |
83ef4777 JK |
862 | kfree(ovcs->overlay_tree); |
863 | kfree(ovcs->fdt); | |
61b4de4e FR |
864 | kfree(ovcs); |
865 | } | |
7518b589 | 866 | |
39a751a4 FR |
867 | /* |
868 | * internal documentation | |
869 | * | |
0290c4ca | 870 | * of_overlay_apply() - Create and apply an overlay changeset |
39a751a4 | 871 | * @fdt: the FDT that was unflattened to create @tree |
0290c4ca | 872 | * @tree: Expanded overlay device tree |
24789c5c FR |
873 | * @ovcs_id: Pointer to overlay changeset id |
874 | * | |
875 | * Creates and applies an overlay changeset. | |
7518b589 | 876 | * |
24789c5c FR |
877 | * If an error occurs in a pre-apply notifier, then no changes are made |
878 | * to the device tree. | |
7518b589 | 879 | * |
24789c5c FR |
880 | |
881 | * A non-zero return value will not have created the changeset if error is from: | |
882 | * - parameter checks | |
883 | * - building the changeset | |
e9d92e40 | 884 | * - overlay changeset pre-apply notifier |
24789c5c FR |
885 | * |
886 | * If an error is returned by an overlay changeset pre-apply notifier | |
887 | * then no further overlay changeset pre-apply notifier will be called. | |
888 | * | |
889 | * A non-zero return value will have created the changeset if error is from: | |
890 | * - overlay changeset entry notifier | |
e9d92e40 | 891 | * - overlay changeset post-apply notifier |
24789c5c FR |
892 | * |
893 | * If an error is returned by an overlay changeset post-apply notifier | |
894 | * then no further overlay changeset post-apply notifier will be called. | |
895 | * | |
896 | * If more than one notifier returns an error, then the last notifier | |
897 | * error to occur is returned. | |
898 | * | |
899 | * If an error occurred while applying the overlay changeset, then an | |
900 | * attempt is made to revert any changes that were made to the | |
901 | * device tree. If there were any errors during the revert attempt | |
902 | * then the state of the device tree can not be determined, and any | |
903 | * following attempt to apply or remove an overlay changeset will be | |
904 | * refused. | |
905 | * | |
906 | * Returns 0 on success, or a negative error number. Overlay changeset | |
907 | * id is returned to *ovcs_id. | |
7518b589 | 908 | */ |
24789c5c | 909 | |
39a751a4 FR |
910 | static int of_overlay_apply(const void *fdt, struct device_node *tree, |
911 | int *ovcs_id) | |
7518b589 | 912 | { |
0290c4ca | 913 | struct overlay_changeset *ovcs; |
24789c5c FR |
914 | int ret = 0, ret_revert, ret_tmp; |
915 | ||
39a751a4 FR |
916 | /* |
917 | * As of this point, fdt and tree belong to the overlay changeset. | |
918 | * overlay changeset code is responsible for freeing them. | |
919 | */ | |
24789c5c FR |
920 | |
921 | if (devicetree_corrupt()) { | |
922 | pr_err("devicetree state suspect, refuse to apply overlay\n"); | |
39a751a4 FR |
923 | kfree(fdt); |
924 | kfree(tree); | |
24789c5c FR |
925 | ret = -EBUSY; |
926 | goto out; | |
927 | } | |
7518b589 | 928 | |
0290c4ca | 929 | ovcs = kzalloc(sizeof(*ovcs), GFP_KERNEL); |
24789c5c | 930 | if (!ovcs) { |
39a751a4 FR |
931 | kfree(fdt); |
932 | kfree(tree); | |
24789c5c FR |
933 | ret = -ENOMEM; |
934 | goto out; | |
935 | } | |
7518b589 | 936 | |
f948d6d8 | 937 | of_overlay_mutex_lock(); |
5e474817 | 938 | mutex_lock(&of_mutex); |
f948d6d8 FR |
939 | |
940 | ret = of_resolve_phandles(tree); | |
941 | if (ret) | |
39a751a4 | 942 | goto err_free_tree; |
7518b589 | 943 | |
39a751a4 | 944 | ret = init_overlay_changeset(ovcs, fdt, tree); |
24789c5c | 945 | if (ret) |
39a751a4 | 946 | goto err_free_tree; |
7518b589 | 947 | |
39a751a4 FR |
948 | /* |
949 | * after overlay_notify(), ovcs->overlay_tree related pointers may have | |
950 | * leaked to drivers, so can not kfree() tree, aka ovcs->overlay_tree; | |
951 | * and can not free fdt, aka ovcs->fdt | |
952 | */ | |
0290c4ca | 953 | ret = overlay_notify(ovcs, OF_OVERLAY_PRE_APPLY); |
24789c5c FR |
954 | if (ret) { |
955 | pr_err("overlay changeset pre-apply notify error %d\n", ret); | |
61b4de4e | 956 | goto err_free_overlay_changeset; |
39a842e2 AT |
957 | } |
958 | ||
0290c4ca FR |
959 | ret = build_changeset(ovcs); |
960 | if (ret) | |
61b4de4e | 961 | goto err_free_overlay_changeset; |
606ad42a | 962 | |
24789c5c FR |
963 | ret_revert = 0; |
964 | ret = __of_changeset_apply_entries(&ovcs->cset, &ret_revert); | |
965 | if (ret) { | |
966 | if (ret_revert) { | |
967 | pr_debug("overlay changeset revert error %d\n", | |
968 | ret_revert); | |
969 | devicetree_state_flags |= DTSF_APPLY_FAIL; | |
970 | } | |
61b4de4e | 971 | goto err_free_overlay_changeset; |
24789c5c | 972 | } |
7518b589 | 973 | |
b9952b52 FR |
974 | of_populate_phandle_cache(); |
975 | ||
6de67de3 GU |
976 | ret = __of_changeset_apply_notify(&ovcs->cset); |
977 | if (ret) | |
a15e824f | 978 | pr_err("overlay apply changeset entry notify error %d\n", ret); |
6de67de3 GU |
979 | /* notify failure is not fatal, continue */ |
980 | ||
0290c4ca | 981 | list_add_tail(&ovcs->ovcs_list, &ovcs_list); |
24789c5c FR |
982 | *ovcs_id = ovcs->id; |
983 | ||
984 | ret_tmp = overlay_notify(ovcs, OF_OVERLAY_POST_APPLY); | |
985 | if (ret_tmp) { | |
986 | pr_err("overlay changeset post-apply notify error %d\n", | |
987 | ret_tmp); | |
988 | if (!ret) | |
989 | ret = ret_tmp; | |
990 | } | |
39a842e2 | 991 | |
5e474817 | 992 | goto out_unlock; |
f948d6d8 | 993 | |
39a751a4 FR |
994 | err_free_tree: |
995 | kfree(fdt); | |
996 | kfree(tree); | |
997 | ||
61b4de4e FR |
998 | err_free_overlay_changeset: |
999 | free_overlay_changeset(ovcs); | |
7518b589 | 1000 | |
5e474817 | 1001 | out_unlock: |
7518b589 | 1002 | mutex_unlock(&of_mutex); |
5e474817 | 1003 | of_overlay_mutex_unlock(); |
7518b589 | 1004 | |
24789c5c FR |
1005 | out: |
1006 | pr_debug("%s() err=%d\n", __func__, ret); | |
1007 | ||
0290c4ca | 1008 | return ret; |
7518b589 | 1009 | } |
39a751a4 FR |
1010 | |
1011 | int of_overlay_fdt_apply(const void *overlay_fdt, u32 overlay_fdt_size, | |
1012 | int *ovcs_id) | |
1013 | { | |
1014 | const void *new_fdt; | |
1015 | int ret; | |
1016 | u32 size; | |
1017 | struct device_node *overlay_root; | |
1018 | ||
1019 | *ovcs_id = 0; | |
1020 | ret = 0; | |
1021 | ||
1022 | if (overlay_fdt_size < sizeof(struct fdt_header) || | |
1023 | fdt_check_header(overlay_fdt)) { | |
1024 | pr_err("Invalid overlay_fdt header\n"); | |
1025 | return -EINVAL; | |
1026 | } | |
1027 | ||
1028 | size = fdt_totalsize(overlay_fdt); | |
1029 | if (overlay_fdt_size < size) | |
1030 | return -EINVAL; | |
1031 | ||
1032 | /* | |
1033 | * Must create permanent copy of FDT because of_fdt_unflatten_tree() | |
1034 | * will create pointers to the passed in FDT in the unflattened tree. | |
1035 | */ | |
1036 | new_fdt = kmemdup(overlay_fdt, size, GFP_KERNEL); | |
1037 | if (!new_fdt) | |
1038 | return -ENOMEM; | |
1039 | ||
1040 | of_fdt_unflatten_tree(new_fdt, NULL, &overlay_root); | |
1041 | if (!overlay_root) { | |
1042 | pr_err("unable to unflatten overlay_fdt\n"); | |
1043 | ret = -EINVAL; | |
1044 | goto out_free_new_fdt; | |
1045 | } | |
1046 | ||
1047 | ret = of_overlay_apply(new_fdt, overlay_root, ovcs_id); | |
1048 | if (ret < 0) { | |
1049 | /* | |
1050 | * new_fdt and overlay_root now belong to the overlay | |
1051 | * changeset. | |
1052 | * overlay changeset code is responsible for freeing them. | |
1053 | */ | |
1054 | goto out; | |
1055 | } | |
1056 | ||
1057 | return 0; | |
1058 | ||
1059 | ||
1060 | out_free_new_fdt: | |
1061 | kfree(new_fdt); | |
1062 | ||
1063 | out: | |
1064 | return ret; | |
1065 | } | |
1066 | EXPORT_SYMBOL_GPL(of_overlay_fdt_apply); | |
7518b589 | 1067 | |
646afc4a | 1068 | /* |
0290c4ca FR |
1069 | * Find @np in @tree. |
1070 | * | |
1071 | * Returns 1 if @np is @tree or is contained in @tree, else 0 | |
646afc4a | 1072 | */ |
0290c4ca | 1073 | static int find_node(struct device_node *tree, struct device_node *np) |
7518b589 PA |
1074 | { |
1075 | struct device_node *child; | |
1076 | ||
0290c4ca | 1077 | if (tree == np) |
7518b589 PA |
1078 | return 1; |
1079 | ||
1080 | for_each_child_of_node(tree, child) { | |
0290c4ca | 1081 | if (find_node(child, np)) { |
001cf504 | 1082 | of_node_put(child); |
7518b589 | 1083 | return 1; |
001cf504 | 1084 | } |
7518b589 PA |
1085 | } |
1086 | ||
1087 | return 0; | |
1088 | } | |
1089 | ||
646afc4a | 1090 | /* |
87f242c1 | 1091 | * Is @remove_ce_node a child of, a parent of, or the same as any |
0290c4ca FR |
1092 | * node in an overlay changeset more topmost than @remove_ovcs? |
1093 | * | |
1094 | * Returns 1 if found, else 0 | |
646afc4a | 1095 | */ |
87f242c1 FR |
1096 | static int node_overlaps_later_cs(struct overlay_changeset *remove_ovcs, |
1097 | struct device_node *remove_ce_node) | |
7518b589 | 1098 | { |
0290c4ca | 1099 | struct overlay_changeset *ovcs; |
7518b589 PA |
1100 | struct of_changeset_entry *ce; |
1101 | ||
0290c4ca FR |
1102 | list_for_each_entry_reverse(ovcs, &ovcs_list, ovcs_list) { |
1103 | if (ovcs == remove_ovcs) | |
7518b589 PA |
1104 | break; |
1105 | ||
0290c4ca | 1106 | list_for_each_entry(ce, &ovcs->cset.entries, node) { |
87f242c1 FR |
1107 | if (find_node(ce->np, remove_ce_node)) { |
1108 | pr_err("%s: #%d overlaps with #%d @%pOF\n", | |
0290c4ca | 1109 | __func__, remove_ovcs->id, ovcs->id, |
87f242c1 FR |
1110 | remove_ce_node); |
1111 | return 1; | |
1112 | } | |
1113 | if (find_node(remove_ce_node, ce->np)) { | |
1114 | pr_err("%s: #%d overlaps with #%d @%pOF\n", | |
1115 | __func__, remove_ovcs->id, ovcs->id, | |
1116 | remove_ce_node); | |
0290c4ca | 1117 | return 1; |
7518b589 PA |
1118 | } |
1119 | } | |
1120 | } | |
1121 | ||
0290c4ca | 1122 | return 0; |
7518b589 PA |
1123 | } |
1124 | ||
1125 | /* | |
1126 | * We can safely remove the overlay only if it's the top-most one. | |
1127 | * Newly applied overlays are inserted at the tail of the overlay list, | |
1128 | * so a top most overlay is the one that is closest to the tail. | |
1129 | * | |
1130 | * The topmost check is done by exploiting this property. For each | |
1131 | * affected device node in the log list we check if this overlay is | |
1132 | * the one closest to the tail. If another overlay has affected this | |
1133 | * device node and is closest to the tail, then removal is not permited. | |
1134 | */ | |
0290c4ca | 1135 | static int overlay_removal_is_ok(struct overlay_changeset *remove_ovcs) |
7518b589 | 1136 | { |
0290c4ca | 1137 | struct of_changeset_entry *remove_ce; |
7518b589 | 1138 | |
0290c4ca | 1139 | list_for_each_entry(remove_ce, &remove_ovcs->cset.entries, node) { |
87f242c1 | 1140 | if (node_overlaps_later_cs(remove_ovcs, remove_ce->np)) { |
0290c4ca | 1141 | pr_err("overlay #%d is not topmost\n", remove_ovcs->id); |
7518b589 PA |
1142 | return 0; |
1143 | } | |
1144 | } | |
1145 | ||
1146 | return 1; | |
1147 | } | |
1148 | ||
1149 | /** | |
0290c4ca | 1150 | * of_overlay_remove() - Revert and free an overlay changeset |
24789c5c | 1151 | * @ovcs_id: Pointer to overlay changeset id |
7518b589 | 1152 | * |
24789c5c | 1153 | * Removes an overlay if it is permissible. @ovcs_id was previously returned |
a514266b | 1154 | * by of_overlay_fdt_apply(). |
7518b589 | 1155 | * |
24789c5c FR |
1156 | * If an error occurred while attempting to revert the overlay changeset, |
1157 | * then an attempt is made to re-apply any changeset entry that was | |
1158 | * reverted. If an error occurs on re-apply then the state of the device | |
1159 | * tree can not be determined, and any following attempt to apply or remove | |
1160 | * an overlay changeset will be refused. | |
1161 | * | |
1162 | * A non-zero return value will not revert the changeset if error is from: | |
1163 | * - parameter checks | |
e9d92e40 | 1164 | * - overlay changeset pre-remove notifier |
24789c5c FR |
1165 | * - overlay changeset entry revert |
1166 | * | |
1167 | * If an error is returned by an overlay changeset pre-remove notifier | |
1168 | * then no further overlay changeset pre-remove notifier will be called. | |
1169 | * | |
1170 | * If more than one notifier returns an error, then the last notifier | |
1171 | * error to occur is returned. | |
1172 | * | |
1173 | * A non-zero return value will revert the changeset if error is from: | |
1174 | * - overlay changeset entry notifier | |
e9d92e40 | 1175 | * - overlay changeset post-remove notifier |
24789c5c FR |
1176 | * |
1177 | * If an error is returned by an overlay changeset post-remove notifier | |
1178 | * then no further overlay changeset post-remove notifier will be called. | |
1179 | * | |
1180 | * Returns 0 on success, or a negative error number. *ovcs_id is set to | |
1181 | * zero after reverting the changeset, even if a subsequent error occurs. | |
7518b589 | 1182 | */ |
24789c5c | 1183 | int of_overlay_remove(int *ovcs_id) |
7518b589 | 1184 | { |
0290c4ca | 1185 | struct overlay_changeset *ovcs; |
24789c5c FR |
1186 | int ret, ret_apply, ret_tmp; |
1187 | ||
1188 | ret = 0; | |
1189 | ||
1190 | if (devicetree_corrupt()) { | |
1191 | pr_err("suspect devicetree state, refuse to remove overlay\n"); | |
1192 | ret = -EBUSY; | |
1193 | goto out; | |
1194 | } | |
7518b589 PA |
1195 | |
1196 | mutex_lock(&of_mutex); | |
1197 | ||
24789c5c | 1198 | ovcs = idr_find(&ovcs_idr, *ovcs_id); |
0290c4ca FR |
1199 | if (!ovcs) { |
1200 | ret = -ENODEV; | |
24789c5c FR |
1201 | pr_err("remove: Could not find overlay #%d\n", *ovcs_id); |
1202 | goto out_unlock; | |
7518b589 PA |
1203 | } |
1204 | ||
0290c4ca FR |
1205 | if (!overlay_removal_is_ok(ovcs)) { |
1206 | ret = -EBUSY; | |
24789c5c | 1207 | goto out_unlock; |
7518b589 PA |
1208 | } |
1209 | ||
24789c5c FR |
1210 | ret = overlay_notify(ovcs, OF_OVERLAY_PRE_REMOVE); |
1211 | if (ret) { | |
1212 | pr_err("overlay changeset pre-remove notify error %d\n", ret); | |
1213 | goto out_unlock; | |
1214 | } | |
61b4de4e | 1215 | |
0290c4ca | 1216 | list_del(&ovcs->ovcs_list); |
61b4de4e | 1217 | |
b9952b52 FR |
1218 | /* |
1219 | * Disable phandle cache. Avoids race condition that would arise | |
1220 | * from removing cache entry when the associated node is deleted. | |
1221 | */ | |
1222 | of_free_phandle_cache(); | |
1223 | ||
24789c5c FR |
1224 | ret_apply = 0; |
1225 | ret = __of_changeset_revert_entries(&ovcs->cset, &ret_apply); | |
b9952b52 FR |
1226 | |
1227 | of_populate_phandle_cache(); | |
1228 | ||
24789c5c FR |
1229 | if (ret) { |
1230 | if (ret_apply) | |
1231 | devicetree_state_flags |= DTSF_REVERT_FAIL; | |
1232 | goto out_unlock; | |
24789c5c | 1233 | } |
61b4de4e | 1234 | |
6de67de3 GU |
1235 | ret = __of_changeset_revert_notify(&ovcs->cset); |
1236 | if (ret) | |
a15e824f | 1237 | pr_err("overlay remove changeset entry notify error %d\n", ret); |
6de67de3 GU |
1238 | /* notify failure is not fatal, continue */ |
1239 | ||
24789c5c FR |
1240 | *ovcs_id = 0; |
1241 | ||
1242 | ret_tmp = overlay_notify(ovcs, OF_OVERLAY_POST_REMOVE); | |
1243 | if (ret_tmp) { | |
1244 | pr_err("overlay changeset post-remove notify error %d\n", | |
1245 | ret_tmp); | |
1246 | if (!ret) | |
1247 | ret = ret_tmp; | |
1248 | } | |
61b4de4e FR |
1249 | |
1250 | free_overlay_changeset(ovcs); | |
7518b589 | 1251 | |
24789c5c | 1252 | out_unlock: |
7518b589 PA |
1253 | mutex_unlock(&of_mutex); |
1254 | ||
24789c5c FR |
1255 | out: |
1256 | pr_debug("%s() err=%d\n", __func__, ret); | |
1257 | ||
0290c4ca | 1258 | return ret; |
7518b589 | 1259 | } |
0290c4ca | 1260 | EXPORT_SYMBOL_GPL(of_overlay_remove); |
7518b589 PA |
1261 | |
1262 | /** | |
0290c4ca | 1263 | * of_overlay_remove_all() - Reverts and frees all overlay changesets |
7518b589 PA |
1264 | * |
1265 | * Removes all overlays from the system in the correct order. | |
1266 | * | |
94a8bf97 | 1267 | * Returns 0 on success, or a negative error number |
7518b589 | 1268 | */ |
0290c4ca | 1269 | int of_overlay_remove_all(void) |
7518b589 | 1270 | { |
0290c4ca | 1271 | struct overlay_changeset *ovcs, *ovcs_n; |
61b4de4e | 1272 | int ret; |
7518b589 PA |
1273 | |
1274 | /* the tail of list is guaranteed to be safe to remove */ | |
0290c4ca | 1275 | list_for_each_entry_safe_reverse(ovcs, ovcs_n, &ovcs_list, ovcs_list) { |
24789c5c | 1276 | ret = of_overlay_remove(&ovcs->id); |
61b4de4e FR |
1277 | if (ret) |
1278 | return ret; | |
7518b589 PA |
1279 | } |
1280 | ||
7518b589 PA |
1281 | return 0; |
1282 | } | |
0290c4ca | 1283 | EXPORT_SYMBOL_GPL(of_overlay_remove_all); |