blob: eda57ef12fd057b3d92c750dec983703e85f38e3 [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
Jan Kiszka83ef4772018-04-26 13:00:30 +0200105/**
106 * of_overlay_notifier_register() - Register notifier for overlay operations
107 * @nb: Notifier block to register
108 *
109 * Register for notification on overlay operations on device tree nodes. The
110 * reported actions definied by @of_reconfig_change. The notifier callback
111 * furthermore receives a pointer to the affected device tree node.
112 *
113 * Note that a notifier callback is not supposed to store pointers to a device
114 * tree node or its content beyond @OF_OVERLAY_POST_REMOVE corresponding to the
115 * respective node it received.
116 */
Alan Tull39a842e2016-11-01 14:14:22 -0500117int of_overlay_notifier_register(struct notifier_block *nb)
118{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700119 return blocking_notifier_chain_register(&overlay_notify_chain, nb);
Alan Tull39a842e2016-11-01 14:14:22 -0500120}
121EXPORT_SYMBOL_GPL(of_overlay_notifier_register);
122
Jan Kiszka83ef4772018-04-26 13:00:30 +0200123/**
124 * of_overlay_notifier_register() - Unregister notifier for overlay operations
125 * @nb: Notifier block to unregister
126 */
Alan Tull39a842e2016-11-01 14:14:22 -0500127int of_overlay_notifier_unregister(struct notifier_block *nb)
128{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700129 return blocking_notifier_chain_unregister(&overlay_notify_chain, nb);
Alan Tull39a842e2016-11-01 14:14:22 -0500130}
131EXPORT_SYMBOL_GPL(of_overlay_notifier_unregister);
132
Frank Rowand24789c52017-10-17 16:36:26 -0700133static char *of_overlay_action_name[] = {
134 "pre-apply",
135 "post-apply",
136 "pre-remove",
137 "post-remove",
138};
139
Frank Rowand0290c4c2017-10-17 16:36:23 -0700140static int overlay_notify(struct overlay_changeset *ovcs,
141 enum of_overlay_notify_action action)
Alan Tull39a842e2016-11-01 14:14:22 -0500142{
143 struct of_overlay_notify_data nd;
144 int i, ret;
145
Frank Rowand0290c4c2017-10-17 16:36:23 -0700146 for (i = 0; i < ovcs->count; i++) {
147 struct fragment *fragment = &ovcs->fragments[i];
Alan Tull39a842e2016-11-01 14:14:22 -0500148
Frank Rowand0290c4c2017-10-17 16:36:23 -0700149 nd.target = fragment->target;
150 nd.overlay = fragment->overlay;
Alan Tull39a842e2016-11-01 14:14:22 -0500151
Frank Rowand0290c4c2017-10-17 16:36:23 -0700152 ret = blocking_notifier_call_chain(&overlay_notify_chain,
Alan Tull39a842e2016-11-01 14:14:22 -0500153 action, &nd);
Frank Rowanda1d19bd2017-10-19 14:18:27 -0700154 if (ret == NOTIFY_OK || ret == NOTIFY_STOP)
Frank Rowand24789c52017-10-17 16:36:26 -0700155 return 0;
156 if (ret) {
157 ret = notifier_to_errno(ret);
158 pr_err("overlay changeset %s notifier error %d, target: %pOF\n",
159 of_overlay_action_name[action], ret, nd.target);
160 return ret;
161 }
Alan Tull39a842e2016-11-01 14:14:22 -0500162 }
163
164 return 0;
165}
166
Frank Rowand42b2e942017-10-17 16:36:24 -0700167/*
Frank Rowande0a58f32017-10-17 16:36:31 -0700168 * The values of properties in the "/__symbols__" node are paths in
169 * the ovcs->overlay_tree. When duplicating the properties, the paths
170 * need to be adjusted to be the correct path for the live device tree.
Frank Rowand42b2e942017-10-17 16:36:24 -0700171 *
Frank Rowande0a58f32017-10-17 16:36:31 -0700172 * The paths refer to a node in the subtree of a fragment node's "__overlay__"
173 * node, for example "/fragment@0/__overlay__/symbol_path_tail",
174 * where symbol_path_tail can be a single node or it may be a multi-node path.
Frank Rowand42b2e942017-10-17 16:36:24 -0700175 *
176 * The duplicated property value will be modified by replacing the
177 * "/fragment_name/__overlay/" portion of the value with the target
178 * path from the fragment node.
179 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700180static struct property *dup_and_fixup_symbol_prop(
181 struct overlay_changeset *ovcs, const struct property *prop)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200182{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700183 struct fragment *fragment;
Frank Rowande0a58f32017-10-17 16:36:31 -0700184 struct property *new_prop;
185 struct device_node *fragment_node;
186 struct device_node *overlay_node;
187 const char *path;
188 const char *path_tail;
Frank Rowandd1651b02017-07-19 09:25:22 -0700189 const char *target_path;
190 int k;
Frank Rowandd1651b02017-07-19 09:25:22 -0700191 int overlay_name_len;
Frank Rowande0a58f32017-10-17 16:36:31 -0700192 int path_len;
193 int path_tail_len;
Frank Rowandd1651b02017-07-19 09:25:22 -0700194 int target_path_len;
195
196 if (!prop->value)
197 return NULL;
Frank Rowande0a58f32017-10-17 16:36:31 -0700198 if (strnlen(prop->value, prop->length) >= prop->length)
Frank Rowandd1651b02017-07-19 09:25:22 -0700199 return NULL;
Frank Rowande0a58f32017-10-17 16:36:31 -0700200 path = prop->value;
201 path_len = strlen(path);
202
203 if (path_len < 1)
204 return NULL;
205 fragment_node = __of_find_node_by_path(ovcs->overlay_tree, path + 1);
206 overlay_node = __of_find_node_by_path(fragment_node, "__overlay__/");
207 of_node_put(fragment_node);
208 of_node_put(overlay_node);
Frank Rowandd1651b02017-07-19 09:25:22 -0700209
Frank Rowand0290c4c2017-10-17 16:36:23 -0700210 for (k = 0; k < ovcs->count; k++) {
211 fragment = &ovcs->fragments[k];
Frank Rowande0a58f32017-10-17 16:36:31 -0700212 if (fragment->overlay == overlay_node)
Frank Rowandd1651b02017-07-19 09:25:22 -0700213 break;
214 }
Frank Rowand0290c4c2017-10-17 16:36:23 -0700215 if (k >= ovcs->count)
Frank Rowande0a58f32017-10-17 16:36:31 -0700216 return NULL;
Frank Rowandd1651b02017-07-19 09:25:22 -0700217
Frank Rowande0a58f32017-10-17 16:36:31 -0700218 overlay_name_len = snprintf(NULL, 0, "%pOF", fragment->overlay);
219
220 if (overlay_name_len > path_len)
221 return NULL;
222 path_tail = path + overlay_name_len;
223 path_tail_len = strlen(path_tail);
224
225 target_path = kasprintf(GFP_KERNEL, "%pOF", fragment->target);
226 if (!target_path)
227 return NULL;
Frank Rowandd1651b02017-07-19 09:25:22 -0700228 target_path_len = strlen(target_path);
229
Frank Rowande0a58f32017-10-17 16:36:31 -0700230 new_prop = kzalloc(sizeof(*new_prop), GFP_KERNEL);
231 if (!new_prop)
232 goto err_free_target_path;
Frank Rowandd1651b02017-07-19 09:25:22 -0700233
Frank Rowande0a58f32017-10-17 16:36:31 -0700234 new_prop->name = kstrdup(prop->name, GFP_KERNEL);
235 new_prop->length = target_path_len + path_tail_len + 1;
236 new_prop->value = kzalloc(new_prop->length, GFP_KERNEL);
237 if (!new_prop->name || !new_prop->value)
238 goto err_free_new_prop;
Frank Rowandd1651b02017-07-19 09:25:22 -0700239
Frank Rowande0a58f32017-10-17 16:36:31 -0700240 strcpy(new_prop->value, target_path);
241 strcpy(new_prop->value + target_path_len, path_tail);
Frank Rowandd1651b02017-07-19 09:25:22 -0700242
Frank Rowande0a58f32017-10-17 16:36:31 -0700243 of_property_set_flag(new_prop, OF_DYNAMIC);
Frank Rowandd1651b02017-07-19 09:25:22 -0700244
Frank Rowande0a58f32017-10-17 16:36:31 -0700245 return new_prop;
Frank Rowandd1651b02017-07-19 09:25:22 -0700246
Frank Rowande0a58f32017-10-17 16:36:31 -0700247err_free_new_prop:
248 kfree(new_prop->name);
249 kfree(new_prop->value);
250 kfree(new_prop);
251err_free_target_path:
252 kfree(target_path);
Frank Rowandd1651b02017-07-19 09:25:22 -0700253
Frank Rowandd1651b02017-07-19 09:25:22 -0700254 return NULL;
Frank Rowandd1651b02017-07-19 09:25:22 -0700255}
256
Frank Rowand0290c4c2017-10-17 16:36:23 -0700257/**
258 * add_changeset_property() - add @overlay_prop to overlay changeset
259 * @ovcs: overlay changeset
260 * @target_node: where to place @overlay_prop in live tree
261 * @overlay_prop: property to add or update, from overlay tree
Frank Rowand3912b792017-10-17 16:36:30 -0700262 * @is_symbols_prop: 1 if @overlay_prop is from node "/__symbols__"
Frank Rowand0290c4c2017-10-17 16:36:23 -0700263 *
264 * If @overlay_prop does not already exist in @target_node, add changeset entry
265 * to add @overlay_prop in @target_node, else add changeset entry to update
266 * value of @overlay_prop.
267 *
Frank Rowand646afc42017-10-17 16:36:21 -0700268 * Some special properties are not updated (no error returned).
Frank Rowand0290c4c2017-10-17 16:36:23 -0700269 *
Frank Rowand646afc42017-10-17 16:36:21 -0700270 * Update of property in symbols node is not allowed.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700271 *
272 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
273 * invalid @overlay.
Frank Rowand646afc42017-10-17 16:36:21 -0700274 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700275static int add_changeset_property(struct overlay_changeset *ovcs,
276 struct device_node *target_node,
277 struct property *overlay_prop,
Frank Rowand3912b792017-10-17 16:36:30 -0700278 bool is_symbols_prop)
Frank Rowandd1651b02017-07-19 09:25:22 -0700279{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700280 struct property *new_prop = NULL, *prop;
Lixin Wangac0f3e32017-10-16 17:54:32 +0800281 int ret = 0;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200282
Frank Rowand0290c4c2017-10-17 16:36:23 -0700283 prop = of_find_property(target_node, overlay_prop->name, NULL);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200284
Frank Rowand0290c4c2017-10-17 16:36:23 -0700285 if (!of_prop_cmp(overlay_prop->name, "name") ||
286 !of_prop_cmp(overlay_prop->name, "phandle") ||
287 !of_prop_cmp(overlay_prop->name, "linux,phandle"))
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200288 return 0;
289
Frank Rowand3912b792017-10-17 16:36:30 -0700290 if (is_symbols_prop) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700291 if (prop)
Frank Rowandd1651b02017-07-19 09:25:22 -0700292 return -EINVAL;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700293 new_prop = dup_and_fixup_symbol_prop(ovcs, overlay_prop);
Frank Rowandd1651b02017-07-19 09:25:22 -0700294 } else {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700295 new_prop = __of_prop_dup(overlay_prop, GFP_KERNEL);
Frank Rowandd1651b02017-07-19 09:25:22 -0700296 }
297
Frank Rowand0290c4c2017-10-17 16:36:23 -0700298 if (!new_prop)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200299 return -ENOMEM;
300
Frank Rowand0290c4c2017-10-17 16:36:23 -0700301 if (!prop)
302 ret = of_changeset_add_property(&ovcs->cset, target_node,
303 new_prop);
Frank Rowand646afc42017-10-17 16:36:21 -0700304 else
Frank Rowand0290c4c2017-10-17 16:36:23 -0700305 ret = of_changeset_update_property(&ovcs->cset, target_node,
306 new_prop);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200307
Lixin Wangac0f3e32017-10-16 17:54:32 +0800308 if (ret) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700309 kfree(new_prop->name);
310 kfree(new_prop->value);
311 kfree(new_prop);
Lixin Wangac0f3e32017-10-16 17:54:32 +0800312 }
313 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200314}
315
Frank Rowand0290c4c2017-10-17 16:36:23 -0700316/**
317 * add_changeset_node() - add @node (and children) to overlay changeset
318 * @ovcs: overlay changeset
319 * @target_node: where to place @node in live tree
320 * @node: node from within overlay device tree fragment
321 *
322 * If @node does not already exist in @target_node, add changeset entry
323 * to add @node in @target_node.
324 *
325 * If @node already exists in @target_node, and the existing node has
326 * a phandle, the overlay node is not allowed to have a phandle.
327 *
328 * If @node has child nodes, add the children recursively via
329 * build_changeset_next_level().
330 *
Frank Rowandb89dae12018-02-26 14:01:23 -0800331 * NOTE_1: A live devicetree created from a flattened device tree (FDT) will
332 * not contain the full path in node->full_name. Thus an overlay
333 * created from an FDT also will not contain the full path in
334 * node->full_name. However, a live devicetree created from Open
335 * Firmware may have the full path in node->full_name.
336 *
337 * add_changeset_node() follows the FDT convention and does not include
338 * the full path in node->full_name. Even though it expects the overlay
339 * to not contain the full path, it uses kbasename() to remove the
340 * full path should it exist. It also uses kbasename() in comparisons
341 * to nodes in the live devicetree so that it can apply an overlay to
342 * a live devicetree created from Open Firmware.
343 *
344 * NOTE_2: Multiple mods of created nodes not supported.
Frank Rowand24789c52017-10-17 16:36:26 -0700345 * If more than one fragment contains a node that does not already exist
346 * in the live tree, then for each fragment of_changeset_attach_node()
347 * will add a changeset entry to add the node. When the changeset is
348 * applied, __of_attach_node() will attach the node twice (once for
349 * each fragment). At this point the device tree will be corrupted.
350 *
351 * TODO: add integrity check to ensure that multiple fragments do not
352 * create the same node.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700353 *
354 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
355 * invalid @overlay.
356 */
357static int add_changeset_node(struct overlay_changeset *ovcs,
358 struct device_node *target_node, struct device_node *node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200359{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700360 const char *node_kbasename;
Fabio Estevamd3a89162015-03-03 10:04:45 -0300361 struct device_node *tchild;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200362 int ret = 0;
363
Frank Rowand0290c4c2017-10-17 16:36:23 -0700364 node_kbasename = kbasename(node->full_name);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200365
Frank Rowand0290c4c2017-10-17 16:36:23 -0700366 for_each_child_of_node(target_node, tchild)
367 if (!of_node_cmp(node_kbasename, kbasename(tchild->full_name)))
Frank Rowandc1cd1e02017-07-19 09:25:21 -0700368 break;
369
Frank Rowand61b4de42017-10-17 16:36:25 -0700370 if (!tchild) {
Frank Rowandb89dae12018-02-26 14:01:23 -0800371 tchild = __of_node_dup(node, node_kbasename);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200372 if (!tchild)
373 return -ENOMEM;
374
Frank Rowand0290c4c2017-10-17 16:36:23 -0700375 tchild->parent = target_node;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200376
Frank Rowand0290c4c2017-10-17 16:36:23 -0700377 ret = of_changeset_attach_node(&ovcs->cset, tchild);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200378 if (ret)
379 return ret;
380
Frank Rowand3912b792017-10-17 16:36:30 -0700381 return build_changeset_next_level(ovcs, tchild, node);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200382 }
383
Frank Rowand6d0f5472017-10-17 16:36:28 -0700384 if (node->phandle && tchild->phandle)
385 ret = -EINVAL;
386 else
Frank Rowand3912b792017-10-17 16:36:30 -0700387 ret = build_changeset_next_level(ovcs, tchild, node);
Frank Rowand61b4de42017-10-17 16:36:25 -0700388 of_node_put(tchild);
389
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200390 return ret;
391}
392
Frank Rowand0290c4c2017-10-17 16:36:23 -0700393/**
394 * build_changeset_next_level() - add level of overlay changeset
395 * @ovcs: overlay changeset
396 * @target_node: where to place @overlay_node in live tree
397 * @overlay_node: node from within an overlay device tree fragment
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200398 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700399 * Add the properties (if any) and nodes (if any) from @overlay_node to the
400 * @ovcs->cset changeset. If an added node has child nodes, they will
401 * be added recursively.
Frank Rowand646afc42017-10-17 16:36:21 -0700402 *
403 * Do not allow symbols node to have any children.
Frank Rowand0290c4c2017-10-17 16:36:23 -0700404 *
405 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
406 * invalid @overlay_node.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200407 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700408static int build_changeset_next_level(struct overlay_changeset *ovcs,
409 struct device_node *target_node,
Frank Rowand3912b792017-10-17 16:36:30 -0700410 const struct device_node *overlay_node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200411{
412 struct device_node *child;
413 struct property *prop;
414 int ret;
415
Frank Rowand0290c4c2017-10-17 16:36:23 -0700416 for_each_property_of_node(overlay_node, prop) {
Frank Rowand3912b792017-10-17 16:36:30 -0700417 ret = add_changeset_property(ovcs, target_node, prop, 0);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200418 if (ret) {
Frank Rowand24789c52017-10-17 16:36:26 -0700419 pr_debug("Failed to apply prop @%pOF/%s, err=%d\n",
420 target_node, prop->name, ret);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200421 return ret;
422 }
423 }
424
Frank Rowand0290c4c2017-10-17 16:36:23 -0700425 for_each_child_of_node(overlay_node, child) {
426 ret = add_changeset_node(ovcs, target_node, child);
Frank Rowandbbed8792017-10-17 16:36:22 -0700427 if (ret) {
Frank Rowand24789c52017-10-17 16:36:26 -0700428 pr_debug("Failed to apply node @%pOF/%s, err=%d\n",
429 target_node, child->name, ret);
Julia Lawall001cf502015-10-22 11:02:48 +0200430 of_node_put(child);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200431 return ret;
432 }
433 }
434
435 return 0;
436}
437
Frank Rowand3912b792017-10-17 16:36:30 -0700438/*
439 * Add the properties from __overlay__ node to the @ovcs->cset changeset.
440 */
441static int build_changeset_symbols_node(struct overlay_changeset *ovcs,
442 struct device_node *target_node,
443 const struct device_node *overlay_symbols_node)
444{
445 struct property *prop;
446 int ret;
447
448 for_each_property_of_node(overlay_symbols_node, prop) {
449 ret = add_changeset_property(ovcs, target_node, prop, 1);
450 if (ret) {
451 pr_debug("Failed to apply prop @%pOF/%s, err=%d\n",
452 target_node, prop->name, ret);
453 return ret;
454 }
455 }
456
457 return 0;
458}
459
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200460/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700461 * build_changeset() - populate overlay changeset in @ovcs from @ovcs->fragments
462 * @ovcs: Overlay changeset
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200463 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700464 * Create changeset @ovcs->cset to contain the nodes and properties of the
465 * overlay device tree fragments in @ovcs->fragments[]. If an error occurs,
466 * any portions of the changeset that were successfully created will remain
467 * in @ovcs->cset.
468 *
469 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
470 * invalid overlay in @ovcs->fragments[].
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200471 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700472static int build_changeset(struct overlay_changeset *ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200473{
Frank Rowand3912b792017-10-17 16:36:30 -0700474 struct fragment *fragment;
475 int fragments_count, i, ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200476
Frank Rowand3912b792017-10-17 16:36:30 -0700477 /*
478 * if there is a symbols fragment in ovcs->fragments[i] it is
479 * the final element in the array
480 */
481 if (ovcs->symbols_fragment)
482 fragments_count = ovcs->count - 1;
483 else
484 fragments_count = ovcs->count;
485
486 for (i = 0; i < fragments_count; i++) {
487 fragment = &ovcs->fragments[i];
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200488
Frank Rowand0290c4c2017-10-17 16:36:23 -0700489 ret = build_changeset_next_level(ovcs, fragment->target,
Frank Rowand3912b792017-10-17 16:36:30 -0700490 fragment->overlay);
491 if (ret) {
492 pr_debug("apply failed '%pOF'\n", fragment->target);
493 return ret;
494 }
495 }
496
497 if (ovcs->symbols_fragment) {
498 fragment = &ovcs->fragments[ovcs->count - 1];
499 ret = build_changeset_symbols_node(ovcs, fragment->target,
500 fragment->overlay);
Frank Rowand0290c4c2017-10-17 16:36:23 -0700501 if (ret) {
Frank Rowand24789c52017-10-17 16:36:26 -0700502 pr_debug("apply failed '%pOF'\n", fragment->target);
Frank Rowand0290c4c2017-10-17 16:36:23 -0700503 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200504 }
505 }
506
507 return 0;
508}
509
510/*
511 * Find the target node using a number of different strategies
Frank Rowand646afc42017-10-17 16:36:21 -0700512 * in order of preference:
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200513 *
Frank Rowand646afc42017-10-17 16:36:21 -0700514 * 1) "target" property containing the phandle of the target
515 * 2) "target-path" property containing the path of the target
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200516 */
517static struct device_node *find_target_node(struct device_node *info_node)
518{
Frank Rowande547c002018-02-12 00:25:04 -0800519 struct device_node *node;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200520 const char *path;
521 u32 val;
522 int ret;
523
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200524 ret = of_property_read_u32(info_node, "target", &val);
Frank Rowande547c002018-02-12 00:25:04 -0800525 if (!ret) {
526 node = of_find_node_by_phandle(val);
527 if (!node)
528 pr_err("find target, node: %pOF, phandle 0x%x not found\n",
529 info_node, val);
530 return node;
531 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200532
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200533 ret = of_property_read_string(info_node, "target-path", &path);
Frank Rowande547c002018-02-12 00:25:04 -0800534 if (!ret) {
535 node = of_find_node_by_path(path);
536 if (!node)
537 pr_err("find target, node: %pOF, path '%s' not found\n",
538 info_node, path);
539 return node;
540 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200541
Frank Rowande547c002018-02-12 00:25:04 -0800542 pr_err("find target, node: %pOF, no target property\n", info_node);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200543
544 return NULL;
545}
546
547/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700548 * init_overlay_changeset() - initialize overlay changeset from overlay tree
Frank Rowand39a751a2018-02-12 00:19:42 -0800549 * @ovcs: Overlay changeset to build
550 * @fdt: the FDT that was unflattened to create @tree
Frank Rowand0290c4c2017-10-17 16:36:23 -0700551 * @tree: Contains all the overlay fragments and overlay fixup nodes
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200552 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700553 * Initialize @ovcs. Populate @ovcs->fragments with node information from
554 * the top level of @tree. The relevant top level nodes are the fragment
555 * nodes and the __symbols__ node. Any other top level node will be ignored.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200556 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700557 * Returns 0 on success, -ENOMEM if memory allocation failure, -EINVAL if error
Frank Rowand61b4de42017-10-17 16:36:25 -0700558 * detected in @tree, or -ENOSPC if idr_alloc() error.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200559 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700560static int init_overlay_changeset(struct overlay_changeset *ovcs,
Frank Rowand39a751a2018-02-12 00:19:42 -0800561 const void *fdt, struct device_node *tree)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200562{
Frank Rowand61b4de42017-10-17 16:36:25 -0700563 struct device_node *node, *overlay_node;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700564 struct fragment *fragment;
565 struct fragment *fragments;
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100566 int cnt, id, ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200567
Frank Rowand24789c52017-10-17 16:36:26 -0700568 /*
569 * Warn for some issues. Can not return -EINVAL for these until
570 * of_unittest_apply_overlay() is fixed to pass these checks.
571 */
572 if (!of_node_check_flag(tree, OF_DYNAMIC))
573 pr_debug("%s() tree is not dynamic\n", __func__);
574
575 if (!of_node_check_flag(tree, OF_DETACHED))
576 pr_debug("%s() tree is not detached\n", __func__);
577
578 if (!of_node_is_root(tree))
579 pr_debug("%s() tree is not root\n", __func__);
580
Frank Rowande0a58f32017-10-17 16:36:31 -0700581 ovcs->overlay_tree = tree;
Frank Rowand39a751a2018-02-12 00:19:42 -0800582 ovcs->fdt = fdt;
Frank Rowande0a58f32017-10-17 16:36:31 -0700583
Frank Rowand61b4de42017-10-17 16:36:25 -0700584 INIT_LIST_HEAD(&ovcs->ovcs_list);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200585
Frank Rowand61b4de42017-10-17 16:36:25 -0700586 of_changeset_init(&ovcs->cset);
587
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100588 id = idr_alloc(&ovcs_idr, ovcs, 1, 0, GFP_KERNEL);
589 if (id <= 0)
590 return id;
Frank Rowand61b4de42017-10-17 16:36:25 -0700591
592 cnt = 0;
593
594 /* fragment nodes */
595 for_each_child_of_node(tree, node) {
596 overlay_node = of_get_child_by_name(node, "__overlay__");
597 if (overlay_node) {
598 cnt++;
599 of_node_put(overlay_node);
600 }
601 }
602
603 node = of_get_child_by_name(tree, "__symbols__");
604 if (node) {
Frank Rowandd1651b02017-07-19 09:25:22 -0700605 cnt++;
Frank Rowand61b4de42017-10-17 16:36:25 -0700606 of_node_put(node);
607 }
Frank Rowandd1651b02017-07-19 09:25:22 -0700608
Frank Rowand0290c4c2017-10-17 16:36:23 -0700609 fragments = kcalloc(cnt, sizeof(*fragments), GFP_KERNEL);
Frank Rowand61b4de42017-10-17 16:36:25 -0700610 if (!fragments) {
611 ret = -ENOMEM;
612 goto err_free_idr;
613 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200614
615 cnt = 0;
616 for_each_child_of_node(tree, node) {
Geert Uytterhoeven35e691e2017-12-08 14:13:02 +0100617 overlay_node = of_get_child_by_name(node, "__overlay__");
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100618 if (!overlay_node)
619 continue;
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +0100620
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100621 fragment = &fragments[cnt];
622 fragment->overlay = overlay_node;
623 fragment->target = find_target_node(node);
624 if (!fragment->target) {
625 of_node_put(fragment->overlay);
626 ret = -EINVAL;
627 goto err_free_fragments;
Frank Rowand61b4de42017-10-17 16:36:25 -0700628 }
Geert Uytterhoeven589b7542017-12-08 14:13:03 +0100629
630 cnt++;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200631 }
632
Frank Rowand3912b792017-10-17 16:36:30 -0700633 /*
634 * if there is a symbols fragment in ovcs->fragments[i] it is
635 * the final element in the array
636 */
Frank Rowandd1651b02017-07-19 09:25:22 -0700637 node = of_get_child_by_name(tree, "__symbols__");
638 if (node) {
Frank Rowand3912b792017-10-17 16:36:30 -0700639 ovcs->symbols_fragment = 1;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700640 fragment = &fragments[cnt];
641 fragment->overlay = node;
642 fragment->target = of_find_node_by_path("/__symbols__");
Frank Rowandd1651b02017-07-19 09:25:22 -0700643
Frank Rowand0290c4c2017-10-17 16:36:23 -0700644 if (!fragment->target) {
Frank Rowand4ee7c0d2017-10-19 14:38:11 -0700645 pr_err("symbols in overlay, but not in live tree\n");
Frank Rowand61b4de42017-10-17 16:36:25 -0700646 ret = -EINVAL;
647 goto err_free_fragments;
Frank Rowandd1651b02017-07-19 09:25:22 -0700648 }
649
650 cnt++;
651 }
652
Frank Rowandbbed8792017-10-17 16:36:22 -0700653 if (!cnt) {
Frank Rowand39a751a2018-02-12 00:19:42 -0800654 pr_err("no fragments or symbols in overlay\n");
Frank Rowand61b4de42017-10-17 16:36:25 -0700655 ret = -EINVAL;
656 goto err_free_fragments;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200657 }
658
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100659 ovcs->id = id;
Frank Rowand0290c4c2017-10-17 16:36:23 -0700660 ovcs->count = cnt;
661 ovcs->fragments = fragments;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200662
663 return 0;
Frank Rowand61b4de42017-10-17 16:36:25 -0700664
Frank Rowand61b4de42017-10-17 16:36:25 -0700665err_free_fragments:
666 kfree(fragments);
667err_free_idr:
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100668 idr_remove(&ovcs_idr, id);
Frank Rowand61b4de42017-10-17 16:36:25 -0700669
Frank Rowand24789c52017-10-17 16:36:26 -0700670 pr_err("%s() failed, ret = %d\n", __func__, ret);
671
Frank Rowand61b4de42017-10-17 16:36:25 -0700672 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200673}
674
Frank Rowand61b4de42017-10-17 16:36:25 -0700675static void free_overlay_changeset(struct overlay_changeset *ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200676{
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200677 int i;
678
Geert Uytterhoeven1352f092017-12-05 16:27:02 +0100679 if (ovcs->cset.entries.next)
680 of_changeset_destroy(&ovcs->cset);
Frank Rowand61b4de42017-10-17 16:36:25 -0700681
682 if (ovcs->id)
683 idr_remove(&ovcs_idr, ovcs->id);
684
685 for (i = 0; i < ovcs->count; i++) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700686 of_node_put(ovcs->fragments[i].target);
687 of_node_put(ovcs->fragments[i].overlay);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200688 }
Frank Rowand0290c4c2017-10-17 16:36:23 -0700689 kfree(ovcs->fragments);
Frank Rowand39a751a2018-02-12 00:19:42 -0800690 /*
Jan Kiszka83ef4772018-04-26 13:00:30 +0200691 * There should be no live pointers into ovcs->overlay_tree and
692 * ovcs->fdt due to the policy that overlay notifiers are not allowed
693 * to retain pointers into the overlay devicetree.
Frank Rowand39a751a2018-02-12 00:19:42 -0800694 */
Jan Kiszka83ef4772018-04-26 13:00:30 +0200695 kfree(ovcs->overlay_tree);
696 kfree(ovcs->fdt);
Frank Rowand61b4de42017-10-17 16:36:25 -0700697 kfree(ovcs);
698}
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200699
Frank Rowand39a751a2018-02-12 00:19:42 -0800700/*
701 * internal documentation
702 *
Frank Rowand0290c4c2017-10-17 16:36:23 -0700703 * of_overlay_apply() - Create and apply an overlay changeset
Frank Rowand39a751a2018-02-12 00:19:42 -0800704 * @fdt: the FDT that was unflattened to create @tree
Frank Rowand0290c4c2017-10-17 16:36:23 -0700705 * @tree: Expanded overlay device tree
Frank Rowand24789c52017-10-17 16:36:26 -0700706 * @ovcs_id: Pointer to overlay changeset id
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200707 *
Frank Rowand24789c52017-10-17 16:36:26 -0700708 * Creates and applies an overlay changeset.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200709 *
Frank Rowand24789c52017-10-17 16:36:26 -0700710 * If an error occurs in a pre-apply notifier, then no changes are made
711 * to the device tree.
712 *
713
714 * A non-zero return value will not have created the changeset if error is from:
715 * - parameter checks
716 * - building the changeset
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +0100717 * - overlay changeset pre-apply notifier
Frank Rowand24789c52017-10-17 16:36:26 -0700718 *
719 * If an error is returned by an overlay changeset pre-apply notifier
720 * then no further overlay changeset pre-apply notifier will be called.
721 *
722 * A non-zero return value will have created the changeset if error is from:
723 * - overlay changeset entry notifier
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +0100724 * - overlay changeset post-apply notifier
Frank Rowand24789c52017-10-17 16:36:26 -0700725 *
726 * If an error is returned by an overlay changeset post-apply notifier
727 * then no further overlay changeset post-apply notifier will be called.
728 *
729 * If more than one notifier returns an error, then the last notifier
730 * error to occur is returned.
731 *
732 * If an error occurred while applying the overlay changeset, then an
733 * attempt is made to revert any changes that were made to the
734 * device tree. If there were any errors during the revert attempt
735 * then the state of the device tree can not be determined, and any
736 * following attempt to apply or remove an overlay changeset will be
737 * refused.
738 *
739 * Returns 0 on success, or a negative error number. Overlay changeset
740 * id is returned to *ovcs_id.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200741 */
Frank Rowand24789c52017-10-17 16:36:26 -0700742
Frank Rowand39a751a2018-02-12 00:19:42 -0800743static int of_overlay_apply(const void *fdt, struct device_node *tree,
744 int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200745{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700746 struct overlay_changeset *ovcs;
Frank Rowand24789c52017-10-17 16:36:26 -0700747 int ret = 0, ret_revert, ret_tmp;
748
Frank Rowand39a751a2018-02-12 00:19:42 -0800749 /*
750 * As of this point, fdt and tree belong to the overlay changeset.
751 * overlay changeset code is responsible for freeing them.
752 */
Frank Rowand24789c52017-10-17 16:36:26 -0700753
754 if (devicetree_corrupt()) {
755 pr_err("devicetree state suspect, refuse to apply overlay\n");
Frank Rowand39a751a2018-02-12 00:19:42 -0800756 kfree(fdt);
757 kfree(tree);
Frank Rowand24789c52017-10-17 16:36:26 -0700758 ret = -EBUSY;
759 goto out;
760 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200761
Frank Rowand0290c4c2017-10-17 16:36:23 -0700762 ovcs = kzalloc(sizeof(*ovcs), GFP_KERNEL);
Frank Rowand24789c52017-10-17 16:36:26 -0700763 if (!ovcs) {
Frank Rowand39a751a2018-02-12 00:19:42 -0800764 kfree(fdt);
765 kfree(tree);
Frank Rowand24789c52017-10-17 16:36:26 -0700766 ret = -ENOMEM;
767 goto out;
768 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200769
Frank Rowandf948d6d2017-10-17 16:36:29 -0700770 of_overlay_mutex_lock();
Geert Uytterhoeven5e474812017-12-05 16:27:03 +0100771 mutex_lock(&of_mutex);
Frank Rowandf948d6d2017-10-17 16:36:29 -0700772
773 ret = of_resolve_phandles(tree);
774 if (ret)
Frank Rowand39a751a2018-02-12 00:19:42 -0800775 goto err_free_tree;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200776
Frank Rowand39a751a2018-02-12 00:19:42 -0800777 ret = init_overlay_changeset(ovcs, fdt, tree);
Frank Rowand24789c52017-10-17 16:36:26 -0700778 if (ret)
Frank Rowand39a751a2018-02-12 00:19:42 -0800779 goto err_free_tree;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200780
Frank Rowand39a751a2018-02-12 00:19:42 -0800781 /*
782 * after overlay_notify(), ovcs->overlay_tree related pointers may have
783 * leaked to drivers, so can not kfree() tree, aka ovcs->overlay_tree;
784 * and can not free fdt, aka ovcs->fdt
785 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700786 ret = overlay_notify(ovcs, OF_OVERLAY_PRE_APPLY);
Frank Rowand24789c52017-10-17 16:36:26 -0700787 if (ret) {
788 pr_err("overlay changeset pre-apply notify error %d\n", ret);
Frank Rowand61b4de42017-10-17 16:36:25 -0700789 goto err_free_overlay_changeset;
Alan Tull39a842e2016-11-01 14:14:22 -0500790 }
791
Frank Rowand0290c4c2017-10-17 16:36:23 -0700792 ret = build_changeset(ovcs);
793 if (ret)
Frank Rowand61b4de42017-10-17 16:36:25 -0700794 goto err_free_overlay_changeset;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200795
Frank Rowand24789c52017-10-17 16:36:26 -0700796 ret_revert = 0;
797 ret = __of_changeset_apply_entries(&ovcs->cset, &ret_revert);
798 if (ret) {
799 if (ret_revert) {
800 pr_debug("overlay changeset revert error %d\n",
801 ret_revert);
802 devicetree_state_flags |= DTSF_APPLY_FAIL;
803 }
Frank Rowand61b4de42017-10-17 16:36:25 -0700804 goto err_free_overlay_changeset;
Frank Rowand24789c52017-10-17 16:36:26 -0700805 }
Rob Herring606ad422016-06-15 08:32:18 -0500806
Frank Rowandb9952b52018-07-12 14:00:07 -0700807 of_populate_phandle_cache();
808
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +0100809 ret = __of_changeset_apply_notify(&ovcs->cset);
810 if (ret)
811 pr_err("overlay changeset entry notify error %d\n", ret);
812 /* notify failure is not fatal, continue */
813
Frank Rowand0290c4c2017-10-17 16:36:23 -0700814 list_add_tail(&ovcs->ovcs_list, &ovcs_list);
Frank Rowand24789c52017-10-17 16:36:26 -0700815 *ovcs_id = ovcs->id;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200816
Frank Rowand24789c52017-10-17 16:36:26 -0700817 ret_tmp = overlay_notify(ovcs, OF_OVERLAY_POST_APPLY);
818 if (ret_tmp) {
819 pr_err("overlay changeset post-apply notify error %d\n",
820 ret_tmp);
821 if (!ret)
822 ret = ret_tmp;
823 }
Alan Tull39a842e2016-11-01 14:14:22 -0500824
Geert Uytterhoeven5e474812017-12-05 16:27:03 +0100825 goto out_unlock;
Frank Rowandf948d6d2017-10-17 16:36:29 -0700826
Frank Rowand39a751a2018-02-12 00:19:42 -0800827err_free_tree:
828 kfree(fdt);
829 kfree(tree);
830
Frank Rowand61b4de42017-10-17 16:36:25 -0700831err_free_overlay_changeset:
832 free_overlay_changeset(ovcs);
833
Geert Uytterhoeven5e474812017-12-05 16:27:03 +0100834out_unlock:
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200835 mutex_unlock(&of_mutex);
Geert Uytterhoeven5e474812017-12-05 16:27:03 +0100836 of_overlay_mutex_unlock();
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200837
Frank Rowand24789c52017-10-17 16:36:26 -0700838out:
839 pr_debug("%s() err=%d\n", __func__, ret);
840
Frank Rowand0290c4c2017-10-17 16:36:23 -0700841 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200842}
Frank Rowand39a751a2018-02-12 00:19:42 -0800843
844int of_overlay_fdt_apply(const void *overlay_fdt, u32 overlay_fdt_size,
845 int *ovcs_id)
846{
847 const void *new_fdt;
848 int ret;
849 u32 size;
850 struct device_node *overlay_root;
851
852 *ovcs_id = 0;
853 ret = 0;
854
855 if (overlay_fdt_size < sizeof(struct fdt_header) ||
856 fdt_check_header(overlay_fdt)) {
857 pr_err("Invalid overlay_fdt header\n");
858 return -EINVAL;
859 }
860
861 size = fdt_totalsize(overlay_fdt);
862 if (overlay_fdt_size < size)
863 return -EINVAL;
864
865 /*
866 * Must create permanent copy of FDT because of_fdt_unflatten_tree()
867 * will create pointers to the passed in FDT in the unflattened tree.
868 */
869 new_fdt = kmemdup(overlay_fdt, size, GFP_KERNEL);
870 if (!new_fdt)
871 return -ENOMEM;
872
873 of_fdt_unflatten_tree(new_fdt, NULL, &overlay_root);
874 if (!overlay_root) {
875 pr_err("unable to unflatten overlay_fdt\n");
876 ret = -EINVAL;
877 goto out_free_new_fdt;
878 }
879
880 ret = of_overlay_apply(new_fdt, overlay_root, ovcs_id);
881 if (ret < 0) {
882 /*
883 * new_fdt and overlay_root now belong to the overlay
884 * changeset.
885 * overlay changeset code is responsible for freeing them.
886 */
887 goto out;
888 }
889
890 return 0;
891
892
893out_free_new_fdt:
894 kfree(new_fdt);
895
896out:
897 return ret;
898}
899EXPORT_SYMBOL_GPL(of_overlay_fdt_apply);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200900
Frank Rowand646afc42017-10-17 16:36:21 -0700901/*
Frank Rowand0290c4c2017-10-17 16:36:23 -0700902 * Find @np in @tree.
903 *
904 * Returns 1 if @np is @tree or is contained in @tree, else 0
Frank Rowand646afc42017-10-17 16:36:21 -0700905 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700906static int find_node(struct device_node *tree, struct device_node *np)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200907{
908 struct device_node *child;
909
Frank Rowand0290c4c2017-10-17 16:36:23 -0700910 if (tree == np)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200911 return 1;
912
913 for_each_child_of_node(tree, child) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700914 if (find_node(child, np)) {
Julia Lawall001cf502015-10-22 11:02:48 +0200915 of_node_put(child);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200916 return 1;
Julia Lawall001cf502015-10-22 11:02:48 +0200917 }
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200918 }
919
920 return 0;
921}
922
Frank Rowand646afc42017-10-17 16:36:21 -0700923/*
Frank Rowand87f242c2017-10-17 16:36:27 -0700924 * Is @remove_ce_node a child of, a parent of, or the same as any
Frank Rowand0290c4c2017-10-17 16:36:23 -0700925 * node in an overlay changeset more topmost than @remove_ovcs?
926 *
927 * Returns 1 if found, else 0
Frank Rowand646afc42017-10-17 16:36:21 -0700928 */
Frank Rowand87f242c2017-10-17 16:36:27 -0700929static int node_overlaps_later_cs(struct overlay_changeset *remove_ovcs,
930 struct device_node *remove_ce_node)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200931{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700932 struct overlay_changeset *ovcs;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200933 struct of_changeset_entry *ce;
934
Frank Rowand0290c4c2017-10-17 16:36:23 -0700935 list_for_each_entry_reverse(ovcs, &ovcs_list, ovcs_list) {
936 if (ovcs == remove_ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200937 break;
938
Frank Rowand0290c4c2017-10-17 16:36:23 -0700939 list_for_each_entry(ce, &ovcs->cset.entries, node) {
Frank Rowand87f242c2017-10-17 16:36:27 -0700940 if (find_node(ce->np, remove_ce_node)) {
941 pr_err("%s: #%d overlaps with #%d @%pOF\n",
Frank Rowand0290c4c2017-10-17 16:36:23 -0700942 __func__, remove_ovcs->id, ovcs->id,
Frank Rowand87f242c2017-10-17 16:36:27 -0700943 remove_ce_node);
944 return 1;
945 }
946 if (find_node(remove_ce_node, ce->np)) {
947 pr_err("%s: #%d overlaps with #%d @%pOF\n",
948 __func__, remove_ovcs->id, ovcs->id,
949 remove_ce_node);
Frank Rowand0290c4c2017-10-17 16:36:23 -0700950 return 1;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200951 }
952 }
953 }
954
Frank Rowand0290c4c2017-10-17 16:36:23 -0700955 return 0;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200956}
957
958/*
959 * We can safely remove the overlay only if it's the top-most one.
960 * Newly applied overlays are inserted at the tail of the overlay list,
961 * so a top most overlay is the one that is closest to the tail.
962 *
963 * The topmost check is done by exploiting this property. For each
964 * affected device node in the log list we check if this overlay is
965 * the one closest to the tail. If another overlay has affected this
966 * device node and is closest to the tail, then removal is not permited.
967 */
Frank Rowand0290c4c2017-10-17 16:36:23 -0700968static int overlay_removal_is_ok(struct overlay_changeset *remove_ovcs)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200969{
Frank Rowand0290c4c2017-10-17 16:36:23 -0700970 struct of_changeset_entry *remove_ce;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200971
Frank Rowand0290c4c2017-10-17 16:36:23 -0700972 list_for_each_entry(remove_ce, &remove_ovcs->cset.entries, node) {
Frank Rowand87f242c2017-10-17 16:36:27 -0700973 if (node_overlaps_later_cs(remove_ovcs, remove_ce->np)) {
Frank Rowand0290c4c2017-10-17 16:36:23 -0700974 pr_err("overlay #%d is not topmost\n", remove_ovcs->id);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200975 return 0;
976 }
977 }
978
979 return 1;
980}
981
982/**
Frank Rowand0290c4c2017-10-17 16:36:23 -0700983 * of_overlay_remove() - Revert and free an overlay changeset
Frank Rowand24789c52017-10-17 16:36:26 -0700984 * @ovcs_id: Pointer to overlay changeset id
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200985 *
Frank Rowand24789c52017-10-17 16:36:26 -0700986 * Removes an overlay if it is permissible. @ovcs_id was previously returned
Geert Uytterhoevena5142662018-03-09 11:44:47 +0100987 * by of_overlay_fdt_apply().
Pantelis Antoniou7518b5892014-10-28 22:35:58 +0200988 *
Frank Rowand24789c52017-10-17 16:36:26 -0700989 * If an error occurred while attempting to revert the overlay changeset,
990 * then an attempt is made to re-apply any changeset entry that was
991 * reverted. If an error occurs on re-apply then the state of the device
992 * tree can not be determined, and any following attempt to apply or remove
993 * an overlay changeset will be refused.
994 *
995 * A non-zero return value will not revert the changeset if error is from:
996 * - parameter checks
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +0100997 * - overlay changeset pre-remove notifier
Frank Rowand24789c52017-10-17 16:36:26 -0700998 * - overlay changeset entry revert
999 *
1000 * If an error is returned by an overlay changeset pre-remove notifier
1001 * then no further overlay changeset pre-remove notifier will be called.
1002 *
1003 * If more than one notifier returns an error, then the last notifier
1004 * error to occur is returned.
1005 *
1006 * A non-zero return value will revert the changeset if error is from:
1007 * - overlay changeset entry notifier
Geert Uytterhoevene9d92e42017-11-28 09:25:23 +01001008 * - overlay changeset post-remove notifier
Frank Rowand24789c52017-10-17 16:36:26 -07001009 *
1010 * If an error is returned by an overlay changeset post-remove notifier
1011 * then no further overlay changeset post-remove notifier will be called.
1012 *
1013 * Returns 0 on success, or a negative error number. *ovcs_id is set to
1014 * zero after reverting the changeset, even if a subsequent error occurs.
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001015 */
Frank Rowand24789c52017-10-17 16:36:26 -07001016int of_overlay_remove(int *ovcs_id)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001017{
Frank Rowand0290c4c2017-10-17 16:36:23 -07001018 struct overlay_changeset *ovcs;
Frank Rowand24789c52017-10-17 16:36:26 -07001019 int ret, ret_apply, ret_tmp;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001020
Frank Rowand24789c52017-10-17 16:36:26 -07001021 ret = 0;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001022
Frank Rowand24789c52017-10-17 16:36:26 -07001023 if (devicetree_corrupt()) {
1024 pr_err("suspect devicetree state, refuse to remove overlay\n");
Frank Rowand0290c4c2017-10-17 16:36:23 -07001025 ret = -EBUSY;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001026 goto out;
1027 }
1028
Frank Rowand24789c52017-10-17 16:36:26 -07001029 mutex_lock(&of_mutex);
1030
1031 ovcs = idr_find(&ovcs_idr, *ovcs_id);
1032 if (!ovcs) {
1033 ret = -ENODEV;
1034 pr_err("remove: Could not find overlay #%d\n", *ovcs_id);
1035 goto out_unlock;
1036 }
1037
1038 if (!overlay_removal_is_ok(ovcs)) {
1039 ret = -EBUSY;
1040 goto out_unlock;
1041 }
1042
1043 ret = overlay_notify(ovcs, OF_OVERLAY_PRE_REMOVE);
1044 if (ret) {
1045 pr_err("overlay changeset pre-remove notify error %d\n", ret);
1046 goto out_unlock;
1047 }
Frank Rowand61b4de42017-10-17 16:36:25 -07001048
Frank Rowand0290c4c2017-10-17 16:36:23 -07001049 list_del(&ovcs->ovcs_list);
Frank Rowand61b4de42017-10-17 16:36:25 -07001050
Frank Rowandb9952b52018-07-12 14:00:07 -07001051 /*
1052 * Disable phandle cache. Avoids race condition that would arise
1053 * from removing cache entry when the associated node is deleted.
1054 */
1055 of_free_phandle_cache();
1056
Frank Rowand24789c52017-10-17 16:36:26 -07001057 ret_apply = 0;
1058 ret = __of_changeset_revert_entries(&ovcs->cset, &ret_apply);
Frank Rowandb9952b52018-07-12 14:00:07 -07001059
1060 of_populate_phandle_cache();
1061
Frank Rowand24789c52017-10-17 16:36:26 -07001062 if (ret) {
1063 if (ret_apply)
1064 devicetree_state_flags |= DTSF_REVERT_FAIL;
1065 goto out_unlock;
Frank Rowand24789c52017-10-17 16:36:26 -07001066 }
Frank Rowand61b4de42017-10-17 16:36:25 -07001067
Geert Uytterhoeven6de67de2017-11-28 09:26:33 +01001068 ret = __of_changeset_revert_notify(&ovcs->cset);
1069 if (ret)
1070 pr_err("overlay changeset entry notify error %d\n", ret);
1071 /* notify failure is not fatal, continue */
1072
Frank Rowand24789c52017-10-17 16:36:26 -07001073 *ovcs_id = 0;
1074
1075 ret_tmp = overlay_notify(ovcs, OF_OVERLAY_POST_REMOVE);
1076 if (ret_tmp) {
1077 pr_err("overlay changeset post-remove notify error %d\n",
1078 ret_tmp);
1079 if (!ret)
1080 ret = ret_tmp;
1081 }
Frank Rowand61b4de42017-10-17 16:36:25 -07001082
1083 free_overlay_changeset(ovcs);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001084
Frank Rowand24789c52017-10-17 16:36:26 -07001085out_unlock:
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001086 mutex_unlock(&of_mutex);
1087
Frank Rowand24789c52017-10-17 16:36:26 -07001088out:
1089 pr_debug("%s() err=%d\n", __func__, ret);
1090
Frank Rowand0290c4c2017-10-17 16:36:23 -07001091 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001092}
Frank Rowand0290c4c2017-10-17 16:36:23 -07001093EXPORT_SYMBOL_GPL(of_overlay_remove);
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001094
1095/**
Frank Rowand0290c4c2017-10-17 16:36:23 -07001096 * of_overlay_remove_all() - Reverts and frees all overlay changesets
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001097 *
1098 * Removes all overlays from the system in the correct order.
1099 *
Geert Uytterhoeven94a8bf92015-05-21 14:10:26 +02001100 * Returns 0 on success, or a negative error number
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001101 */
Frank Rowand0290c4c2017-10-17 16:36:23 -07001102int of_overlay_remove_all(void)
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001103{
Frank Rowand0290c4c2017-10-17 16:36:23 -07001104 struct overlay_changeset *ovcs, *ovcs_n;
Frank Rowand61b4de42017-10-17 16:36:25 -07001105 int ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001106
1107 /* the tail of list is guaranteed to be safe to remove */
Frank Rowand0290c4c2017-10-17 16:36:23 -07001108 list_for_each_entry_safe_reverse(ovcs, ovcs_n, &ovcs_list, ovcs_list) {
Frank Rowand24789c52017-10-17 16:36:26 -07001109 ret = of_overlay_remove(&ovcs->id);
Frank Rowand61b4de42017-10-17 16:36:25 -07001110 if (ret)
1111 return ret;
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001112 }
1113
Pantelis Antoniou7518b5892014-10-28 22:35:58 +02001114 return 0;
1115}
Frank Rowand0290c4c2017-10-17 16:36:23 -07001116EXPORT_SYMBOL_GPL(of_overlay_remove_all);