blob: e3d7f69a8333a7c84ac4931ab0781db65b9da23c [file] [log] [blame]
Rob Herringaf6074f2017-12-27 12:55:14 -06001// SPDX-License-Identifier: GPL-2.0
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02002/*
3 * Functions for working with device tree overlays
4 *
5 * Copyright (C) 2012 Pantelis Antoniou <panto@antoniou-consulting.com>
6 * Copyright (C) 2012 Texas Instruments Inc.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02007 */
Rob Herring606ad422016-06-15 08:32:18 -05008
9#define pr_fmt(fmt) "OF: overlay: " fmt
10
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020011#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/of.h>
14#include <linux/of_device.h>
Frank Rowand39a751a2018-02-12 00:19:42 -080015#include <linux/of_fdt.h>
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020016#include <linux/string.h>
17#include <linux/ctype.h>
18#include <linux/errno.h>
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020019#include <linux/slab.h>
Frank Rowand39a751a2018-02-12 00:19:42 -080020#include <linux/libfdt.h>
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020021#include <linux/err.h>
Mark Brown0d1886d2015-02-17 11:36:58 +090022#include <linux/idr.h>
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020023
24#include "of_private.h"
25
26/**
Frank Rowand0290c4c2017-10-17 16:36:23 -070027 * struct fragment - info about fragment nodes in overlay expanded device tree
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020028 * @target: target of the overlay operation
Frank Rowand0290c4c2017-10-17 16:36:23 -070029 * @overlay: pointer to the __overlay__ node
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020030 */
Frank Rowand0290c4c2017-10-17 16:36:23 -070031struct fragment {
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020032 struct device_node *target;
33 struct device_node *overlay;
34};
35
36/**
Frank Rowand0290c4c2017-10-17 16:36:23 -070037 * struct overlay_changeset
Frank Rowand39a751a2018-02-12 00:19:42 -080038 * @id: changeset identifier
Frank Rowand3912b792017-10-17 16:36:30 -070039 * @ovcs_list: list on which we are located
Frank Rowand39a751a2018-02-12 00:19:42 -080040 * @fdt: FDT that was unflattened to create @overlay_tree
Frank Rowande0a58f32017-10-17 16:36:31 -070041 * @overlay_tree: expanded device tree that contains the fragment nodes
Frank Rowand3912b792017-10-17 16:36:30 -070042 * @count: count of fragment structures
43 * @fragments: fragment nodes in the overlay expanded device tree
44 * @symbols_fragment: last element of @fragments[] is the __symbols__ node
45 * @cset: changeset to apply fragments to live device tree
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020046 */
Frank Rowand0290c4c2017-10-17 16:36:23 -070047struct overlay_changeset {
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020048 int id;
Frank Rowand0290c4c2017-10-17 16:36:23 -070049 struct list_head ovcs_list;
Frank Rowand39a751a2018-02-12 00:19:42 -080050 const void *fdt;
Frank Rowande0a58f32017-10-17 16:36:31 -070051 struct device_node *overlay_tree;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020052 int count;
Frank Rowand0290c4c2017-10-17 16:36:23 -070053 struct fragment *fragments;
Frank Rowand3912b792017-10-17 16:36:30 -070054 bool symbols_fragment;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020055 struct of_changeset cset;
56};
57
Frank Rowand24789c52017-10-17 16:36:26 -070058/* flags are sticky - once set, do not reset */
59static int devicetree_state_flags;
60#define DTSF_APPLY_FAIL 0x01
61#define DTSF_REVERT_FAIL 0x02
62
63/*
64 * If a changeset apply or revert encounters an error, an attempt will
65 * be made to undo partial changes, but may fail. If the undo fails
66 * we do not know the state of the devicetree.
67 */
68static int devicetree_corrupt(void)
69{
70 return devicetree_state_flags &
71 (DTSF_APPLY_FAIL | DTSF_REVERT_FAIL);
72}
73
Frank Rowand0290c4c2017-10-17 16:36:23 -070074static int build_changeset_next_level(struct overlay_changeset *ovcs,
75 struct device_node *target_node,
Frank Rowand3912b792017-10-17 16:36:30 -070076 const struct device_node *overlay_node);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +020077
Frank Rowandf948d6d2017-10-17 16:36:29 -070078/*
79 * of_resolve_phandles() finds the largest phandle in the live tree.
80 * of_overlay_apply() may add a larger phandle to the live tree.
81 * Do not allow race between two overlays being applied simultaneously:
82 * mutex_lock(&of_overlay_phandle_mutex)
83 * of_resolve_phandles()
84 * of_overlay_apply()
85 * mutex_unlock(&of_overlay_phandle_mutex)
86 */
87static DEFINE_MUTEX(of_overlay_phandle_mutex);
88
89void of_overlay_mutex_lock(void)
90{
91 mutex_lock(&of_overlay_phandle_mutex);
92}
93
94void of_overlay_mutex_unlock(void)
95{
96 mutex_unlock(&of_overlay_phandle_mutex);
97}
98
99
Frank Rowand61b4de42017-10-17 16:36:25 -0700100static LIST_HEAD(ovcs_list);
101static DEFINE_IDR(ovcs_idr);
102
Frank Rowand0290c4c2017-10-17 16:36:23 -0700103static BLOCKING_NOTIFIER_HEAD(overlay_notify_chain);
Alan Tull39a842e2016-11-01 14:14:22 -0500104
105int of_overlay_notifier_register(struct notifier_block *nb)
106{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700107 return blocking_notifier_chain_register(&overlay_notify_chain, nb);
Alan Tull39a842e2016-11-01 14:14:22 -0500108}
109EXPORT_SYMBOL_GPL(of_overlay_notifier_register);
110
111int of_overlay_notifier_unregister(struct notifier_block *nb)
112{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700113 return blocking_notifier_chain_unregister(&overlay_notify_chain, nb);
Alan Tull39a842e2016-11-01 14:14:22 -0500114}
115EXPORT_SYMBOL_GPL(of_overlay_notifier_unregister);
116
Frank Rowand24789c52017-10-17 16:36:26 -0700117static char *of_overlay_action_name[] = {
118 "pre-apply",
119 "post-apply",
120 "pre-remove",
121 "post-remove",
122};
123
Frank Rowand0290c4c2017-10-17 16:36:23 -0700124static int overlay_notify(struct overlay_changeset *ovcs,
125 enum of_overlay_notify_action action)
Alan Tull39a842e2016-11-01 14:14:22 -0500126{
127 struct of_overlay_notify_data nd;
128 int i, ret;
129
Frank Rowand0290c4c2017-10-17 16:36:23 -0700130 for (i = 0; i < ovcs->count; i++) {
131 struct fragment *fragment = &ovcs->fragments[i];
Alan Tull39a842e2016-11-01 14:14:22 -0500132
Frank Rowand0290c4c2017-10-17 16:36:23 -0700133 nd.target = fragment->target;
134 nd.overlay = fragment->overlay;
Alan Tull39a842e2016-11-01 14:14:22 -0500135
Frank Rowand0290c4c2017-10-17 16:36:23 -0700136 ret = blocking_notifier_call_chain(&overlay_notify_chain,
Alan Tull39a842e2016-11-01 14:14:22 -0500137 action, &nd);
Frank Rowanda1d19bd2017-10-19 14:18:27 -0700138 if (ret == NOTIFY_OK || ret == NOTIFY_STOP)
Frank Rowand24789c52017-10-17 16:36:26 -0700139 return 0;
140 if (ret) {
141 ret = notifier_to_errno(ret);
142 pr_err("overlay changeset %s notifier error %d, target: %pOF\n",
143 of_overlay_action_name[action], ret, nd.target);
144 return ret;
145 }
Alan Tull39a842e2016-11-01 14:14:22 -0500146 }
147
148 return 0;
149}
150
Frank Rowand42b2e942017-10-17 16:36:24 -0700151/*
Frank Rowande0a58f32017-10-17 16:36:31 -0700152 * The values of properties in the "/__symbols__" node are paths in
153 * the ovcs->overlay_tree. When duplicating the properties, the paths
154 * need to be adjusted to be the correct path for the live device tree.
Frank Rowand42b2e942017-10-17 16:36:24 -0700155 *
Frank Rowande0a58f32017-10-17 16:36:31 -0700156 * The paths refer to a node in the subtree of a fragment node's "__overlay__"
157 * node, for example "/fragment@0/__overlay__/symbol_path_tail",
158 * where symbol_path_tail can be a single node or it may be a multi-node path.
Frank Rowand42b2e942017-10-17 16:36:24 -0700159 *
160 * The duplicated property value will be modified by replacing the
161 * "/fragment_name/__overlay/" portion of the value with the target
162 * path from the fragment node.
163 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700164static struct property *dup_and_fixup_symbol_prop(
165 struct overlay_changeset *ovcs, const struct property *prop)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200166{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700167 struct fragment *fragment;
Frank Rowande0a58f32017-10-17 16:36:31 -0700168 struct property *new_prop;
169 struct device_node *fragment_node;
170 struct device_node *overlay_node;
171 const char *path;
172 const char *path_tail;
Frank Rowandd1651b02017-07-19 09:25:22 -0700173 const char *target_path;
174 int k;
Frank Rowandd1651b02017-07-19 09:25:22 -0700175 int overlay_name_len;
Frank Rowande0a58f32017-10-17 16:36:31 -0700176 int path_len;
177 int path_tail_len;
Frank Rowandd1651b02017-07-19 09:25:22 -0700178 int target_path_len;
179
180 if (!prop->value)
181 return NULL;
Frank Rowande0a58f32017-10-17 16:36:31 -0700182 if (strnlen(prop->value, prop->length) >= prop->length)
Frank Rowandd1651b02017-07-19 09:25:22 -0700183 return NULL;
Frank Rowande0a58f32017-10-17 16:36:31 -0700184 path = prop->value;
185 path_len = strlen(path);
186
187 if (path_len < 1)
188 return NULL;
189 fragment_node = __of_find_node_by_path(ovcs->overlay_tree, path + 1);
190 overlay_node = __of_find_node_by_path(fragment_node, "__overlay__/");
191 of_node_put(fragment_node);
192 of_node_put(overlay_node);
Frank Rowandd1651b02017-07-19 09:25:22 -0700193
Frank Rowand0290c4c2017-10-17 16:36:23 -0700194 for (k = 0; k < ovcs->count; k++) {
195 fragment = &ovcs->fragments[k];
Frank Rowande0a58f32017-10-17 16:36:31 -0700196 if (fragment->overlay == overlay_node)
Frank Rowandd1651b02017-07-19 09:25:22 -0700197 break;
198 }
Frank Rowand0290c4c2017-10-17 16:36:23 -0700199 if (k >= ovcs->count)
Frank Rowande0a58f32017-10-17 16:36:31 -0700200 return NULL;
Frank Rowandd1651b02017-07-19 09:25:22 -0700201
Frank Rowande0a58f32017-10-17 16:36:31 -0700202 overlay_name_len = snprintf(NULL, 0, "%pOF", fragment->overlay);
203
204 if (overlay_name_len > path_len)
205 return NULL;
206 path_tail = path + overlay_name_len;
207 path_tail_len = strlen(path_tail);
208
209 target_path = kasprintf(GFP_KERNEL, "%pOF", fragment->target);
210 if (!target_path)
211 return NULL;
Frank Rowandd1651b02017-07-19 09:25:22 -0700212 target_path_len = strlen(target_path);
213
Frank Rowande0a58f32017-10-17 16:36:31 -0700214 new_prop = kzalloc(sizeof(*new_prop), GFP_KERNEL);
215 if (!new_prop)
216 goto err_free_target_path;
Frank Rowandd1651b02017-07-19 09:25:22 -0700217
Frank Rowande0a58f32017-10-17 16:36:31 -0700218 new_prop->name = kstrdup(prop->name, GFP_KERNEL);
219 new_prop->length = target_path_len + path_tail_len + 1;
220 new_prop->value = kzalloc(new_prop->length, GFP_KERNEL);
221 if (!new_prop->name || !new_prop->value)
222 goto err_free_new_prop;
Frank Rowandd1651b02017-07-19 09:25:22 -0700223
Frank Rowande0a58f32017-10-17 16:36:31 -0700224 strcpy(new_prop->value, target_path);
225 strcpy(new_prop->value + target_path_len, path_tail);
Frank Rowandd1651b02017-07-19 09:25:22 -0700226
Frank Rowande0a58f32017-10-17 16:36:31 -0700227 of_property_set_flag(new_prop, OF_DYNAMIC);
Frank Rowandd1651b02017-07-19 09:25:22 -0700228
Frank Rowande0a58f32017-10-17 16:36:31 -0700229 return new_prop;
Frank Rowandd1651b02017-07-19 09:25:22 -0700230
Frank Rowande0a58f32017-10-17 16:36:31 -0700231err_free_new_prop:
232 kfree(new_prop->name);
233 kfree(new_prop->value);
234 kfree(new_prop);
235err_free_target_path:
236 kfree(target_path);
Frank Rowandd1651b02017-07-19 09:25:22 -0700237
Frank Rowandd1651b02017-07-19 09:25:22 -0700238 return NULL;
Frank Rowandd1651b02017-07-19 09:25:22 -0700239}
240
Frank Rowand0290c4c2017-10-17 16:36:23 -0700241/**
242 * add_changeset_property() - add @overlay_prop to overlay changeset
243 * @ovcs: overlay changeset
244 * @target_node: where to place @overlay_prop in live tree
245 * @overlay_prop: property to add or update, from overlay tree
Frank Rowand3912b792017-10-17 16:36:30 -0700246 * @is_symbols_prop: 1 if @overlay_prop is from node "/__symbols__"
Frank Rowand0290c4c2017-10-17 16:36:23 -0700247 *
248 * If @overlay_prop does not already exist in @target_node, add changeset entry
249 * to add @overlay_prop in @target_node, else add changeset entry to update
250 * value of @overlay_prop.
251 *
Frank Rowand646afc42017-10-17 16:36:21 -0700252 * Some special properties are not updated (no error returned).
Frank Rowand0290c4c2017-10-17 16:36:23 -0700253 *
Frank Rowand646afc42017-10-17 16:36:21 -0700254 * Update of property in symbols node is not allowed.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700255 *
256 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
257 * invalid @overlay.
Frank Rowand646afc42017-10-17 16:36:21 -0700258 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700259static int add_changeset_property(struct overlay_changeset *ovcs,
260 struct device_node *target_node,
261 struct property *overlay_prop,
Frank Rowand3912b792017-10-17 16:36:30 -0700262 bool is_symbols_prop)
Frank Rowandd1651b02017-07-19 09:25:22 -0700263{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700264 struct property *new_prop = NULL, *prop;
Lixin Wangac0f3e32017-10-16 17:54:32 +0800265 int ret = 0;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200266
Frank Rowand0290c4c2017-10-17 16:36:23 -0700267 prop = of_find_property(target_node, overlay_prop->name, NULL);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200268
Frank Rowand0290c4c2017-10-17 16:36:23 -0700269 if (!of_prop_cmp(overlay_prop->name, "name") ||
270 !of_prop_cmp(overlay_prop->name, "phandle") ||
271 !of_prop_cmp(overlay_prop->name, "linux,phandle"))
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200272 return 0;
273
Frank Rowand3912b792017-10-17 16:36:30 -0700274 if (is_symbols_prop) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700275 if (prop)
Frank Rowandd1651b02017-07-19 09:25:22 -0700276 return -EINVAL;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700277 new_prop = dup_and_fixup_symbol_prop(ovcs, overlay_prop);
Frank Rowandd1651b02017-07-19 09:25:22 -0700278 } else {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700279 new_prop = __of_prop_dup(overlay_prop, GFP_KERNEL);
Frank Rowandd1651b02017-07-19 09:25:22 -0700280 }
281
Frank Rowand0290c4c2017-10-17 16:36:23 -0700282 if (!new_prop)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200283 return -ENOMEM;
284
Frank Rowand0290c4c2017-10-17 16:36:23 -0700285 if (!prop)
286 ret = of_changeset_add_property(&ovcs->cset, target_node,
287 new_prop);
Frank Rowand646afc42017-10-17 16:36:21 -0700288 else
Frank Rowand0290c4c2017-10-17 16:36:23 -0700289 ret = of_changeset_update_property(&ovcs->cset, target_node,
290 new_prop);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200291
Lixin Wangac0f3e32017-10-16 17:54:32 +0800292 if (ret) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700293 kfree(new_prop->name);
294 kfree(new_prop->value);
295 kfree(new_prop);
Lixin Wangac0f3e32017-10-16 17:54:32 +0800296 }
297 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200298}
299
Frank Rowand0290c4c2017-10-17 16:36:23 -0700300/**
301 * add_changeset_node() - add @node (and children) to overlay changeset
302 * @ovcs: overlay changeset
303 * @target_node: where to place @node in live tree
304 * @node: node from within overlay device tree fragment
305 *
306 * If @node does not already exist in @target_node, add changeset entry
307 * to add @node in @target_node.
308 *
309 * If @node already exists in @target_node, and the existing node has
310 * a phandle, the overlay node is not allowed to have a phandle.
311 *
312 * If @node has child nodes, add the children recursively via
313 * build_changeset_next_level().
314 *
315 * NOTE: Multiple mods of created nodes not supported.
Frank Rowand24789c52017-10-17 16:36:26 -0700316 * If more than one fragment contains a node that does not already exist
317 * in the live tree, then for each fragment of_changeset_attach_node()
318 * will add a changeset entry to add the node. When the changeset is
319 * applied, __of_attach_node() will attach the node twice (once for
320 * each fragment). At this point the device tree will be corrupted.
321 *
322 * TODO: add integrity check to ensure that multiple fragments do not
323 * create the same node.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700324 *
325 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
326 * invalid @overlay.
327 */
328static int add_changeset_node(struct overlay_changeset *ovcs,
329 struct device_node *target_node, struct device_node *node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200330{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700331 const char *node_kbasename;
Fabio Estevamd3a89162015-03-03 10:04:45 -0300332 struct device_node *tchild;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200333 int ret = 0;
334
Frank Rowand0290c4c2017-10-17 16:36:23 -0700335 node_kbasename = kbasename(node->full_name);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200336
Frank Rowand0290c4c2017-10-17 16:36:23 -0700337 for_each_child_of_node(target_node, tchild)
338 if (!of_node_cmp(node_kbasename, kbasename(tchild->full_name)))
Frank Rowandc1cd1e02017-07-19 09:25:21 -0700339 break;
340
Frank Rowand61b4de42017-10-17 16:36:25 -0700341 if (!tchild) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700342 tchild = __of_node_dup(node, "%pOF/%s",
343 target_node, node_kbasename);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200344 if (!tchild)
345 return -ENOMEM;
346
Frank Rowand0290c4c2017-10-17 16:36:23 -0700347 tchild->parent = target_node;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200348
Frank Rowand0290c4c2017-10-17 16:36:23 -0700349 ret = of_changeset_attach_node(&ovcs->cset, tchild);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200350 if (ret)
351 return ret;
352
Frank Rowand3912b792017-10-17 16:36:30 -0700353 return build_changeset_next_level(ovcs, tchild, node);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200354 }
355
Frank Rowand6d0f5472017-10-17 16:36:28 -0700356 if (node->phandle && tchild->phandle)
357 ret = -EINVAL;
358 else
Frank Rowand3912b792017-10-17 16:36:30 -0700359 ret = build_changeset_next_level(ovcs, tchild, node);
Frank Rowand61b4de42017-10-17 16:36:25 -0700360 of_node_put(tchild);
361
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200362 return ret;
363}
364
Frank Rowand0290c4c2017-10-17 16:36:23 -0700365/**
366 * build_changeset_next_level() - add level of overlay changeset
367 * @ovcs: overlay changeset
368 * @target_node: where to place @overlay_node in live tree
369 * @overlay_node: node from within an overlay device tree fragment
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200370 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700371 * Add the properties (if any) and nodes (if any) from @overlay_node to the
372 * @ovcs->cset changeset. If an added node has child nodes, they will
373 * be added recursively.
Frank Rowand646afc42017-10-17 16:36:21 -0700374 *
375 * Do not allow symbols node to have any children.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700376 *
377 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
378 * invalid @overlay_node.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200379 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700380static int build_changeset_next_level(struct overlay_changeset *ovcs,
381 struct device_node *target_node,
Frank Rowand3912b792017-10-17 16:36:30 -0700382 const struct device_node *overlay_node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200383{
384 struct device_node *child;
385 struct property *prop;
386 int ret;
387
Frank Rowand0290c4c2017-10-17 16:36:23 -0700388 for_each_property_of_node(overlay_node, prop) {
Frank Rowand3912b792017-10-17 16:36:30 -0700389 ret = add_changeset_property(ovcs, target_node, prop, 0);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200390 if (ret) {
Frank Rowand24789c52017-10-17 16:36:26 -0700391 pr_debug("Failed to apply prop @%pOF/%s, err=%d\n",
392 target_node, prop->name, ret);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200393 return ret;
394 }
395 }
396
Frank Rowand0290c4c2017-10-17 16:36:23 -0700397 for_each_child_of_node(overlay_node, child) {
398 ret = add_changeset_node(ovcs, target_node, child);
Frank Rowandbbed8792017-10-17 16:36:22 -0700399 if (ret) {
Frank Rowand24789c52017-10-17 16:36:26 -0700400 pr_debug("Failed to apply node @%pOF/%s, err=%d\n",
401 target_node, child->name, ret);
Julia Lawall001cf502015-10-22 11:02:48 +0200402 of_node_put(child);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200403 return ret;
404 }
405 }
406
407 return 0;
408}
409
Frank Rowand3912b792017-10-17 16:36:30 -0700410/*
411 * Add the properties from __overlay__ node to the @ovcs->cset changeset.
412 */
413static int build_changeset_symbols_node(struct overlay_changeset *ovcs,
414 struct device_node *target_node,
415 const struct device_node *overlay_symbols_node)
416{
417 struct property *prop;
418 int ret;
419
420 for_each_property_of_node(overlay_symbols_node, prop) {
421 ret = add_changeset_property(ovcs, target_node, prop, 1);
422 if (ret) {
423 pr_debug("Failed to apply prop @%pOF/%s, err=%d\n",
424 target_node, prop->name, ret);
425 return ret;
426 }
427 }
428
429 return 0;
430}
431
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200432/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700433 * build_changeset() - populate overlay changeset in @ovcs from @ovcs->fragments
434 * @ovcs: Overlay changeset
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200435 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700436 * Create changeset @ovcs->cset to contain the nodes and properties of the
437 * overlay device tree fragments in @ovcs->fragments[]. If an error occurs,
438 * any portions of the changeset that were successfully created will remain
439 * in @ovcs->cset.
440 *
441 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
442 * invalid overlay in @ovcs->fragments[].
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200443 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700444static int build_changeset(struct overlay_changeset *ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200445{
Frank Rowand3912b792017-10-17 16:36:30 -0700446 struct fragment *fragment;
447 int fragments_count, i, ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200448
Frank Rowand3912b792017-10-17 16:36:30 -0700449 /*
450 * if there is a symbols fragment in ovcs->fragments[i] it is
451 * the final element in the array
452 */
453 if (ovcs->symbols_fragment)
454 fragments_count = ovcs->count - 1;
455 else
456 fragments_count = ovcs->count;
457
458 for (i = 0; i < fragments_count; i++) {
459 fragment = &ovcs->fragments[i];
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200460
Frank Rowand0290c4c2017-10-17 16:36:23 -0700461 ret = build_changeset_next_level(ovcs, fragment->target,
Frank Rowand3912b792017-10-17 16:36:30 -0700462 fragment->overlay);
463 if (ret) {
464 pr_debug("apply failed '%pOF'\n", fragment->target);
465 return ret;
466 }
467 }
468
469 if (ovcs->symbols_fragment) {
470 fragment = &ovcs->fragments[ovcs->count - 1];
471 ret = build_changeset_symbols_node(ovcs, fragment->target,
472 fragment->overlay);
Frank Rowand0290c4c2017-10-17 16:36:23 -0700473 if (ret) {
Frank Rowand24789c52017-10-17 16:36:26 -0700474 pr_debug("apply failed '%pOF'\n", fragment->target);
Frank Rowand0290c4c2017-10-17 16:36:23 -0700475 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200476 }
477 }
478
479 return 0;
480}
481
482/*
483 * Find the target node using a number of different strategies
Frank Rowand646afc42017-10-17 16:36:21 -0700484 * in order of preference:
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200485 *
Frank Rowand646afc42017-10-17 16:36:21 -0700486 * 1) "target" property containing the phandle of the target
487 * 2) "target-path" property containing the path of the target
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200488 */
489static struct device_node *find_target_node(struct device_node *info_node)
490{
491 const char *path;
492 u32 val;
493 int ret;
494
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200495 ret = of_property_read_u32(info_node, "target", &val);
Frank Rowandbbed8792017-10-17 16:36:22 -0700496 if (!ret)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200497 return of_find_node_by_phandle(val);
498
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200499 ret = of_property_read_string(info_node, "target-path", &path);
Frank Rowandbbed8792017-10-17 16:36:22 -0700500 if (!ret)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200501 return of_find_node_by_path(path);
502
Rob Herring606ad422016-06-15 08:32:18 -0500503 pr_err("Failed to find target for node %p (%s)\n",
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200504 info_node, info_node->name);
505
506 return NULL;
507}
508
509/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700510 * init_overlay_changeset() - initialize overlay changeset from overlay tree
Frank Rowand39a751a2018-02-12 00:19:42 -0800511 * @ovcs: Overlay changeset to build
512 * @fdt: the FDT that was unflattened to create @tree
Frank Rowand0290c4c2017-10-17 16:36:23 -0700513 * @tree: Contains all the overlay fragments and overlay fixup nodes
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200514 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700515 * Initialize @ovcs. Populate @ovcs->fragments with node information from
516 * the top level of @tree. The relevant top level nodes are the fragment
517 * nodes and the __symbols__ node. Any other top level node will be ignored.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200518 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700519 * Returns 0 on success, -ENOMEM if memory allocation failure, -EINVAL if error
Frank Rowand61b4de42017-10-17 16:36:25 -0700520 * detected in @tree, or -ENOSPC if idr_alloc() error.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200521 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700522static int init_overlay_changeset(struct overlay_changeset *ovcs,
Frank Rowand39a751a2018-02-12 00:19:42 -0800523 const void *fdt, struct device_node *tree)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200524{
Frank Rowand61b4de42017-10-17 16:36:25 -0700525 struct device_node *node, *overlay_node;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700526 struct fragment *fragment;
527 struct fragment *fragments;
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100528 int cnt, id, ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200529
Frank Rowand24789c52017-10-17 16:36:26 -0700530 /*
531 * Warn for some issues. Can not return -EINVAL for these until
532 * of_unittest_apply_overlay() is fixed to pass these checks.
533 */
534 if (!of_node_check_flag(tree, OF_DYNAMIC))
535 pr_debug("%s() tree is not dynamic\n", __func__);
536
537 if (!of_node_check_flag(tree, OF_DETACHED))
538 pr_debug("%s() tree is not detached\n", __func__);
539
540 if (!of_node_is_root(tree))
541 pr_debug("%s() tree is not root\n", __func__);
542
Frank Rowande0a58f32017-10-17 16:36:31 -0700543 ovcs->overlay_tree = tree;
Frank Rowand39a751a2018-02-12 00:19:42 -0800544 ovcs->fdt = fdt;
Frank Rowande0a58f32017-10-17 16:36:31 -0700545
Frank Rowand61b4de42017-10-17 16:36:25 -0700546 INIT_LIST_HEAD(&ovcs->ovcs_list);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200547
Frank Rowand61b4de42017-10-17 16:36:25 -0700548 of_changeset_init(&ovcs->cset);
549
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100550 id = idr_alloc(&ovcs_idr, ovcs, 1, 0, GFP_KERNEL);
551 if (id <= 0)
552 return id;
Frank Rowand61b4de42017-10-17 16:36:25 -0700553
554 cnt = 0;
555
556 /* fragment nodes */
557 for_each_child_of_node(tree, node) {
558 overlay_node = of_get_child_by_name(node, "__overlay__");
559 if (overlay_node) {
560 cnt++;
561 of_node_put(overlay_node);
562 }
563 }
564
565 node = of_get_child_by_name(tree, "__symbols__");
566 if (node) {
Frank Rowandd1651b02017-07-19 09:25:22 -0700567 cnt++;
Frank Rowand61b4de42017-10-17 16:36:25 -0700568 of_node_put(node);
569 }
Frank Rowandd1651b02017-07-19 09:25:22 -0700570
Frank Rowand0290c4c2017-10-17 16:36:23 -0700571 fragments = kcalloc(cnt, sizeof(*fragments), GFP_KERNEL);
Frank Rowand61b4de42017-10-17 16:36:25 -0700572 if (!fragments) {
573 ret = -ENOMEM;
574 goto err_free_idr;
575 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200576
577 cnt = 0;
578 for_each_child_of_node(tree, node) {
Geert Uytterhoeven35e691e2017-12-08 14:13:02 +0100579 overlay_node = of_get_child_by_name(node, "__overlay__");
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100580 if (!overlay_node)
581 continue;
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +0100582
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100583 fragment = &fragments[cnt];
584 fragment->overlay = overlay_node;
585 fragment->target = find_target_node(node);
586 if (!fragment->target) {
587 of_node_put(fragment->overlay);
588 ret = -EINVAL;
589 goto err_free_fragments;
Frank Rowand61b4de42017-10-17 16:36:25 -0700590 }
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100591
592 cnt++;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200593 }
594
Frank Rowand3912b792017-10-17 16:36:30 -0700595 /*
596 * if there is a symbols fragment in ovcs->fragments[i] it is
597 * the final element in the array
598 */
Frank Rowandd1651b02017-07-19 09:25:22 -0700599 node = of_get_child_by_name(tree, "__symbols__");
600 if (node) {
Frank Rowand3912b792017-10-17 16:36:30 -0700601 ovcs->symbols_fragment = 1;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700602 fragment = &fragments[cnt];
603 fragment->overlay = node;
604 fragment->target = of_find_node_by_path("/__symbols__");
Frank Rowandd1651b02017-07-19 09:25:22 -0700605
Frank Rowand0290c4c2017-10-17 16:36:23 -0700606 if (!fragment->target) {
Frank Rowand4ee7c0d2017-10-19 14:38:11 -0700607 pr_err("symbols in overlay, but not in live tree\n");
Frank Rowand61b4de42017-10-17 16:36:25 -0700608 ret = -EINVAL;
609 goto err_free_fragments;
Frank Rowandd1651b02017-07-19 09:25:22 -0700610 }
611
612 cnt++;
613 }
614
Frank Rowandbbed8792017-10-17 16:36:22 -0700615 if (!cnt) {
Frank Rowand39a751a2018-02-12 00:19:42 -0800616 pr_err("no fragments or symbols in overlay\n");
Frank Rowand61b4de42017-10-17 16:36:25 -0700617 ret = -EINVAL;
618 goto err_free_fragments;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200619 }
620
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100621 ovcs->id = id;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700622 ovcs->count = cnt;
623 ovcs->fragments = fragments;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200624
625 return 0;
Frank Rowand61b4de42017-10-17 16:36:25 -0700626
Frank Rowand61b4de42017-10-17 16:36:25 -0700627err_free_fragments:
628 kfree(fragments);
629err_free_idr:
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100630 idr_remove(&ovcs_idr, id);
Frank Rowand61b4de42017-10-17 16:36:25 -0700631
Frank Rowand24789c52017-10-17 16:36:26 -0700632 pr_err("%s() failed, ret = %d\n", __func__, ret);
633
Frank Rowand61b4de42017-10-17 16:36:25 -0700634 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200635}
636
Frank Rowand61b4de42017-10-17 16:36:25 -0700637static void free_overlay_changeset(struct overlay_changeset *ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200638{
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200639 int i;
640
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100641 if (ovcs->cset.entries.next)
642 of_changeset_destroy(&ovcs->cset);
Frank Rowand61b4de42017-10-17 16:36:25 -0700643
644 if (ovcs->id)
645 idr_remove(&ovcs_idr, ovcs->id);
646
647 for (i = 0; i < ovcs->count; i++) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700648 of_node_put(ovcs->fragments[i].target);
649 of_node_put(ovcs->fragments[i].overlay);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200650 }
Frank Rowand0290c4c2017-10-17 16:36:23 -0700651 kfree(ovcs->fragments);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200652
Frank Rowand39a751a2018-02-12 00:19:42 -0800653 /*
654 * TODO
655 *
656 * would like to: kfree(ovcs->overlay_tree);
657 * but can not since drivers may have pointers into this data
658 *
659 * would like to: kfree(ovcs->fdt);
660 * but can not since drivers may have pointers into this data
661 */
662
Frank Rowand61b4de42017-10-17 16:36:25 -0700663 kfree(ovcs);
664}
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200665
Frank Rowand39a751a2018-02-12 00:19:42 -0800666/*
667 * internal documentation
668 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700669 * of_overlay_apply() - Create and apply an overlay changeset
Frank Rowand39a751a2018-02-12 00:19:42 -0800670 * @fdt: the FDT that was unflattened to create @tree
Frank Rowand0290c4c2017-10-17 16:36:23 -0700671 * @tree: Expanded overlay device tree
Frank Rowand24789c52017-10-17 16:36:26 -0700672 * @ovcs_id: Pointer to overlay changeset id
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200673 *
Frank Rowand24789c52017-10-17 16:36:26 -0700674 * Creates and applies an overlay changeset.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200675 *
Frank Rowand24789c52017-10-17 16:36:26 -0700676 * If an error occurs in a pre-apply notifier, then no changes are made
677 * to the device tree.
678 *
679
680 * A non-zero return value will not have created the changeset if error is from:
681 * - parameter checks
682 * - building the changeset
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +0100683 * - overlay changeset pre-apply notifier
Frank Rowand24789c52017-10-17 16:36:26 -0700684 *
685 * If an error is returned by an overlay changeset pre-apply notifier
686 * then no further overlay changeset pre-apply notifier will be called.
687 *
688 * A non-zero return value will have created the changeset if error is from:
689 * - overlay changeset entry notifier
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +0100690 * - overlay changeset post-apply notifier
Frank Rowand24789c52017-10-17 16:36:26 -0700691 *
692 * If an error is returned by an overlay changeset post-apply notifier
693 * then no further overlay changeset post-apply notifier will be called.
694 *
695 * If more than one notifier returns an error, then the last notifier
696 * error to occur is returned.
697 *
698 * If an error occurred while applying the overlay changeset, then an
699 * attempt is made to revert any changes that were made to the
700 * device tree. If there were any errors during the revert attempt
701 * then the state of the device tree can not be determined, and any
702 * following attempt to apply or remove an overlay changeset will be
703 * refused.
704 *
705 * Returns 0 on success, or a negative error number. Overlay changeset
706 * id is returned to *ovcs_id.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200707 */
Frank Rowand24789c52017-10-17 16:36:26 -0700708
Frank Rowand39a751a2018-02-12 00:19:42 -0800709static int of_overlay_apply(const void *fdt, struct device_node *tree,
710 int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200711{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700712 struct overlay_changeset *ovcs;
Frank Rowand24789c52017-10-17 16:36:26 -0700713 int ret = 0, ret_revert, ret_tmp;
714
Frank Rowand39a751a2018-02-12 00:19:42 -0800715 /*
716 * As of this point, fdt and tree belong to the overlay changeset.
717 * overlay changeset code is responsible for freeing them.
718 */
Frank Rowand24789c52017-10-17 16:36:26 -0700719
720 if (devicetree_corrupt()) {
721 pr_err("devicetree state suspect, refuse to apply overlay\n");
Frank Rowand39a751a2018-02-12 00:19:42 -0800722 kfree(fdt);
723 kfree(tree);
Frank Rowand24789c52017-10-17 16:36:26 -0700724 ret = -EBUSY;
725 goto out;
726 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200727
Frank Rowand0290c4c2017-10-17 16:36:23 -0700728 ovcs = kzalloc(sizeof(*ovcs), GFP_KERNEL);
Frank Rowand24789c52017-10-17 16:36:26 -0700729 if (!ovcs) {
Frank Rowand39a751a2018-02-12 00:19:42 -0800730 kfree(fdt);
731 kfree(tree);
Frank Rowand24789c52017-10-17 16:36:26 -0700732 ret = -ENOMEM;
733 goto out;
734 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200735
Frank Rowandf948d6d2017-10-17 16:36:29 -0700736 of_overlay_mutex_lock();
Geert Uytterhoeven5e474812017-12-05 16:27:03 +0100737 mutex_lock(&of_mutex);
Frank Rowandf948d6d2017-10-17 16:36:29 -0700738
739 ret = of_resolve_phandles(tree);
740 if (ret)
Frank Rowand39a751a2018-02-12 00:19:42 -0800741 goto err_free_tree;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200742
Frank Rowand39a751a2018-02-12 00:19:42 -0800743 ret = init_overlay_changeset(ovcs, fdt, tree);
Frank Rowand24789c52017-10-17 16:36:26 -0700744 if (ret)
Frank Rowand39a751a2018-02-12 00:19:42 -0800745 goto err_free_tree;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200746
Frank Rowand39a751a2018-02-12 00:19:42 -0800747 /*
748 * after overlay_notify(), ovcs->overlay_tree related pointers may have
749 * leaked to drivers, so can not kfree() tree, aka ovcs->overlay_tree;
750 * and can not free fdt, aka ovcs->fdt
751 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700752 ret = overlay_notify(ovcs, OF_OVERLAY_PRE_APPLY);
Frank Rowand24789c52017-10-17 16:36:26 -0700753 if (ret) {
754 pr_err("overlay changeset pre-apply notify error %d\n", ret);
Frank Rowand61b4de42017-10-17 16:36:25 -0700755 goto err_free_overlay_changeset;
Alan Tull39a842e2016-11-01 14:14:22 -0500756 }
757
Frank Rowand0290c4c2017-10-17 16:36:23 -0700758 ret = build_changeset(ovcs);
759 if (ret)
Frank Rowand61b4de42017-10-17 16:36:25 -0700760 goto err_free_overlay_changeset;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200761
Frank Rowand24789c52017-10-17 16:36:26 -0700762 ret_revert = 0;
763 ret = __of_changeset_apply_entries(&ovcs->cset, &ret_revert);
764 if (ret) {
765 if (ret_revert) {
766 pr_debug("overlay changeset revert error %d\n",
767 ret_revert);
768 devicetree_state_flags |= DTSF_APPLY_FAIL;
769 }
Frank Rowand61b4de42017-10-17 16:36:25 -0700770 goto err_free_overlay_changeset;
Frank Rowand24789c52017-10-17 16:36:26 -0700771 }
Rob Herring606ad422016-06-15 08:32:18 -0500772
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +0100773 ret = __of_changeset_apply_notify(&ovcs->cset);
774 if (ret)
775 pr_err("overlay changeset entry notify error %d\n", ret);
776 /* notify failure is not fatal, continue */
777
Frank Rowand0290c4c2017-10-17 16:36:23 -0700778 list_add_tail(&ovcs->ovcs_list, &ovcs_list);
Frank Rowand24789c52017-10-17 16:36:26 -0700779 *ovcs_id = ovcs->id;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200780
Frank Rowand24789c52017-10-17 16:36:26 -0700781 ret_tmp = overlay_notify(ovcs, OF_OVERLAY_POST_APPLY);
782 if (ret_tmp) {
783 pr_err("overlay changeset post-apply notify error %d\n",
784 ret_tmp);
785 if (!ret)
786 ret = ret_tmp;
787 }
Alan Tull39a842e2016-11-01 14:14:22 -0500788
Geert Uytterhoeven5e474812017-12-05 16:27:03 +0100789 goto out_unlock;
Frank Rowandf948d6d2017-10-17 16:36:29 -0700790
Frank Rowand39a751a2018-02-12 00:19:42 -0800791err_free_tree:
792 kfree(fdt);
793 kfree(tree);
794
Frank Rowand61b4de42017-10-17 16:36:25 -0700795err_free_overlay_changeset:
796 free_overlay_changeset(ovcs);
797
Geert Uytterhoeven5e474812017-12-05 16:27:03 +0100798out_unlock:
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200799 mutex_unlock(&of_mutex);
Geert Uytterhoeven5e474812017-12-05 16:27:03 +0100800 of_overlay_mutex_unlock();
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200801
Frank Rowand24789c52017-10-17 16:36:26 -0700802out:
803 pr_debug("%s() err=%d\n", __func__, ret);
804
Frank Rowand0290c4c2017-10-17 16:36:23 -0700805 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200806}
Frank Rowand39a751a2018-02-12 00:19:42 -0800807
808int of_overlay_fdt_apply(const void *overlay_fdt, u32 overlay_fdt_size,
809 int *ovcs_id)
810{
811 const void *new_fdt;
812 int ret;
813 u32 size;
814 struct device_node *overlay_root;
815
816 *ovcs_id = 0;
817 ret = 0;
818
819 if (overlay_fdt_size < sizeof(struct fdt_header) ||
820 fdt_check_header(overlay_fdt)) {
821 pr_err("Invalid overlay_fdt header\n");
822 return -EINVAL;
823 }
824
825 size = fdt_totalsize(overlay_fdt);
826 if (overlay_fdt_size < size)
827 return -EINVAL;
828
829 /*
830 * Must create permanent copy of FDT because of_fdt_unflatten_tree()
831 * will create pointers to the passed in FDT in the unflattened tree.
832 */
833 new_fdt = kmemdup(overlay_fdt, size, GFP_KERNEL);
834 if (!new_fdt)
835 return -ENOMEM;
836
837 of_fdt_unflatten_tree(new_fdt, NULL, &overlay_root);
838 if (!overlay_root) {
839 pr_err("unable to unflatten overlay_fdt\n");
840 ret = -EINVAL;
841 goto out_free_new_fdt;
842 }
843
844 ret = of_overlay_apply(new_fdt, overlay_root, ovcs_id);
845 if (ret < 0) {
846 /*
847 * new_fdt and overlay_root now belong to the overlay
848 * changeset.
849 * overlay changeset code is responsible for freeing them.
850 */
851 goto out;
852 }
853
854 return 0;
855
856
857out_free_new_fdt:
858 kfree(new_fdt);
859
860out:
861 return ret;
862}
863EXPORT_SYMBOL_GPL(of_overlay_fdt_apply);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200864
Frank Rowand646afc42017-10-17 16:36:21 -0700865/*
Frank Rowand0290c4c2017-10-17 16:36:23 -0700866 * Find @np in @tree.
867 *
868 * Returns 1 if @np is @tree or is contained in @tree, else 0
Frank Rowand646afc42017-10-17 16:36:21 -0700869 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700870static int find_node(struct device_node *tree, struct device_node *np)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200871{
872 struct device_node *child;
873
Frank Rowand0290c4c2017-10-17 16:36:23 -0700874 if (tree == np)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200875 return 1;
876
877 for_each_child_of_node(tree, child) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700878 if (find_node(child, np)) {
Julia Lawall001cf502015-10-22 11:02:48 +0200879 of_node_put(child);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200880 return 1;
Julia Lawall001cf502015-10-22 11:02:48 +0200881 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200882 }
883
884 return 0;
885}
886
Frank Rowand646afc42017-10-17 16:36:21 -0700887/*
Frank Rowand87f242c2017-10-17 16:36:27 -0700888 * Is @remove_ce_node a child of, a parent of, or the same as any
Frank Rowand0290c4c2017-10-17 16:36:23 -0700889 * node in an overlay changeset more topmost than @remove_ovcs?
890 *
891 * Returns 1 if found, else 0
Frank Rowand646afc42017-10-17 16:36:21 -0700892 */
Frank Rowand87f242c2017-10-17 16:36:27 -0700893static int node_overlaps_later_cs(struct overlay_changeset *remove_ovcs,
894 struct device_node *remove_ce_node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200895{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700896 struct overlay_changeset *ovcs;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200897 struct of_changeset_entry *ce;
898
Frank Rowand0290c4c2017-10-17 16:36:23 -0700899 list_for_each_entry_reverse(ovcs, &ovcs_list, ovcs_list) {
900 if (ovcs == remove_ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200901 break;
902
Frank Rowand0290c4c2017-10-17 16:36:23 -0700903 list_for_each_entry(ce, &ovcs->cset.entries, node) {
Frank Rowand87f242c2017-10-17 16:36:27 -0700904 if (find_node(ce->np, remove_ce_node)) {
905 pr_err("%s: #%d overlaps with #%d @%pOF\n",
Frank Rowand0290c4c2017-10-17 16:36:23 -0700906 __func__, remove_ovcs->id, ovcs->id,
Frank Rowand87f242c2017-10-17 16:36:27 -0700907 remove_ce_node);
908 return 1;
909 }
910 if (find_node(remove_ce_node, ce->np)) {
911 pr_err("%s: #%d overlaps with #%d @%pOF\n",
912 __func__, remove_ovcs->id, ovcs->id,
913 remove_ce_node);
Frank Rowand0290c4c2017-10-17 16:36:23 -0700914 return 1;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200915 }
916 }
917 }
918
Frank Rowand0290c4c2017-10-17 16:36:23 -0700919 return 0;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200920}
921
922/*
923 * We can safely remove the overlay only if it's the top-most one.
924 * Newly applied overlays are inserted at the tail of the overlay list,
925 * so a top most overlay is the one that is closest to the tail.
926 *
927 * The topmost check is done by exploiting this property. For each
928 * affected device node in the log list we check if this overlay is
929 * the one closest to the tail. If another overlay has affected this
930 * device node and is closest to the tail, then removal is not permited.
931 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700932static int overlay_removal_is_ok(struct overlay_changeset *remove_ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200933{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700934 struct of_changeset_entry *remove_ce;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200935
Frank Rowand0290c4c2017-10-17 16:36:23 -0700936 list_for_each_entry(remove_ce, &remove_ovcs->cset.entries, node) {
Frank Rowand87f242c2017-10-17 16:36:27 -0700937 if (node_overlaps_later_cs(remove_ovcs, remove_ce->np)) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700938 pr_err("overlay #%d is not topmost\n", remove_ovcs->id);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200939 return 0;
940 }
941 }
942
943 return 1;
944}
945
946/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700947 * of_overlay_remove() - Revert and free an overlay changeset
Frank Rowand24789c52017-10-17 16:36:26 -0700948 * @ovcs_id: Pointer to overlay changeset id
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200949 *
Frank Rowand24789c52017-10-17 16:36:26 -0700950 * Removes an overlay if it is permissible. @ovcs_id was previously returned
Frank Rowand0290c4c2017-10-17 16:36:23 -0700951 * by of_overlay_apply().
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200952 *
Frank Rowand24789c52017-10-17 16:36:26 -0700953 * If an error occurred while attempting to revert the overlay changeset,
954 * then an attempt is made to re-apply any changeset entry that was
955 * reverted. If an error occurs on re-apply then the state of the device
956 * tree can not be determined, and any following attempt to apply or remove
957 * an overlay changeset will be refused.
958 *
959 * A non-zero return value will not revert the changeset if error is from:
960 * - parameter checks
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +0100961 * - overlay changeset pre-remove notifier
Frank Rowand24789c52017-10-17 16:36:26 -0700962 * - overlay changeset entry revert
963 *
964 * If an error is returned by an overlay changeset pre-remove notifier
965 * then no further overlay changeset pre-remove notifier will be called.
966 *
967 * If more than one notifier returns an error, then the last notifier
968 * error to occur is returned.
969 *
970 * A non-zero return value will revert the changeset if error is from:
971 * - overlay changeset entry notifier
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +0100972 * - overlay changeset post-remove notifier
Frank Rowand24789c52017-10-17 16:36:26 -0700973 *
974 * If an error is returned by an overlay changeset post-remove notifier
975 * then no further overlay changeset post-remove notifier will be called.
976 *
977 * Returns 0 on success, or a negative error number. *ovcs_id is set to
978 * zero after reverting the changeset, even if a subsequent error occurs.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200979 */
Frank Rowand24789c52017-10-17 16:36:26 -0700980int of_overlay_remove(int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200981{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700982 struct overlay_changeset *ovcs;
Frank Rowand24789c52017-10-17 16:36:26 -0700983 int ret, ret_apply, ret_tmp;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200984
Frank Rowand24789c52017-10-17 16:36:26 -0700985 ret = 0;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200986
Frank Rowand24789c52017-10-17 16:36:26 -0700987 if (devicetree_corrupt()) {
988 pr_err("suspect devicetree state, refuse to remove overlay\n");
Frank Rowand0290c4c2017-10-17 16:36:23 -0700989 ret = -EBUSY;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200990 goto out;
991 }
992
Frank Rowand24789c52017-10-17 16:36:26 -0700993 mutex_lock(&of_mutex);
994
995 ovcs = idr_find(&ovcs_idr, *ovcs_id);
996 if (!ovcs) {
997 ret = -ENODEV;
998 pr_err("remove: Could not find overlay #%d\n", *ovcs_id);
999 goto out_unlock;
1000 }
1001
1002 if (!overlay_removal_is_ok(ovcs)) {
1003 ret = -EBUSY;
1004 goto out_unlock;
1005 }
1006
1007 ret = overlay_notify(ovcs, OF_OVERLAY_PRE_REMOVE);
1008 if (ret) {
1009 pr_err("overlay changeset pre-remove notify error %d\n", ret);
1010 goto out_unlock;
1011 }
Frank Rowand61b4de42017-10-17 16:36:25 -07001012
Frank Rowand0290c4c2017-10-17 16:36:23 -07001013 list_del(&ovcs->ovcs_list);
Frank Rowand61b4de42017-10-17 16:36:25 -07001014
Frank Rowand24789c52017-10-17 16:36:26 -07001015 ret_apply = 0;
1016 ret = __of_changeset_revert_entries(&ovcs->cset, &ret_apply);
1017 if (ret) {
1018 if (ret_apply)
1019 devicetree_state_flags |= DTSF_REVERT_FAIL;
1020 goto out_unlock;
Frank Rowand24789c52017-10-17 16:36:26 -07001021 }
Frank Rowand61b4de42017-10-17 16:36:25 -07001022
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +01001023 ret = __of_changeset_revert_notify(&ovcs->cset);
1024 if (ret)
1025 pr_err("overlay changeset entry notify error %d\n", ret);
1026 /* notify failure is not fatal, continue */
1027
Frank Rowand24789c52017-10-17 16:36:26 -07001028 *ovcs_id = 0;
1029
1030 ret_tmp = overlay_notify(ovcs, OF_OVERLAY_POST_REMOVE);
1031 if (ret_tmp) {
1032 pr_err("overlay changeset post-remove notify error %d\n",
1033 ret_tmp);
1034 if (!ret)
1035 ret = ret_tmp;
1036 }
Frank Rowand61b4de42017-10-17 16:36:25 -07001037
1038 free_overlay_changeset(ovcs);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001039
Frank Rowand24789c52017-10-17 16:36:26 -07001040out_unlock:
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001041 mutex_unlock(&of_mutex);
1042
Frank Rowand24789c52017-10-17 16:36:26 -07001043out:
1044 pr_debug("%s() err=%d\n", __func__, ret);
1045
Frank Rowand0290c4c2017-10-17 16:36:23 -07001046 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001047}
Frank Rowand0290c4c2017-10-17 16:36:23 -07001048EXPORT_SYMBOL_GPL(of_overlay_remove);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001049
1050/**
Frank Rowand0290c4c2017-10-17 16:36:23 -07001051 * of_overlay_remove_all() - Reverts and frees all overlay changesets
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001052 *
1053 * Removes all overlays from the system in the correct order.
1054 *
Geert Uytterhoeven94a8bf92015-05-21 14:10:26 +02001055 * Returns 0 on success, or a negative error number
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001056 */
Frank Rowand0290c4c2017-10-17 16:36:23 -07001057int of_overlay_remove_all(void)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001058{
Frank Rowand0290c4c2017-10-17 16:36:23 -07001059 struct overlay_changeset *ovcs, *ovcs_n;
Frank Rowand61b4de42017-10-17 16:36:25 -07001060 int ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001061
1062 /* the tail of list is guaranteed to be safe to remove */
Frank Rowand0290c4c2017-10-17 16:36:23 -07001063 list_for_each_entry_safe_reverse(ovcs, ovcs_n, &ovcs_list, ovcs_list) {
Frank Rowand24789c52017-10-17 16:36:26 -07001064 ret = of_overlay_remove(&ovcs->id);
Frank Rowand61b4de42017-10-17 16:36:25 -07001065 if (ret)
1066 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001067 }
1068
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001069 return 0;
1070}
Frank Rowand0290c4c2017-10-17 16:36:23 -07001071EXPORT_SYMBOL_GPL(of_overlay_remove_all);