overlay.c 25.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/*
 * Functions for working with device tree overlays
 *
 * Copyright (C) 2012 Pantelis Antoniou <panto@antoniou-consulting.com>
 * Copyright (C) 2012 Texas Instruments Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 */
11 12 13

#define pr_fmt(fmt)	"OF: overlay: " fmt

14 15 16 17 18 19 20 21 22
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/of_device.h>
#include <linux/string.h>
#include <linux/ctype.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/err.h>
M
Mark Brown 已提交
23
#include <linux/idr.h>
24 25 26 27

#include "of_private.h"

/**
28
 * struct fragment - info about fragment nodes in overlay expanded device tree
29
 * @target:	target of the overlay operation
30
 * @overlay:	pointer to the __overlay__ node
31
 */
32
struct fragment {
33 34 35 36 37
	struct device_node *target;
	struct device_node *overlay;
};

/**
38
 * struct overlay_changeset
39
 * @ovcs_list:		list on which we are located
40
 * @overlay_tree:	expanded device tree that contains the fragment nodes
41 42 43 44
 * @count:		count of fragment structures
 * @fragments:		fragment nodes in the overlay expanded device tree
 * @symbols_fragment:	last element of @fragments[] is the  __symbols__ node
 * @cset:		changeset to apply fragments to live device tree
45
 */
46
struct overlay_changeset {
47
	int id;
48
	struct list_head ovcs_list;
49
	struct device_node *overlay_tree;
50
	int count;
51
	struct fragment *fragments;
52
	bool symbols_fragment;
53 54 55
	struct of_changeset cset;
};

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
/* flags are sticky - once set, do not reset */
static int devicetree_state_flags;
#define DTSF_APPLY_FAIL		0x01
#define DTSF_REVERT_FAIL	0x02

/*
 * If a changeset apply or revert encounters an error, an attempt will
 * be made to undo partial changes, but may fail.  If the undo fails
 * we do not know the state of the devicetree.
 */
static int devicetree_corrupt(void)
{
	return devicetree_state_flags &
		(DTSF_APPLY_FAIL | DTSF_REVERT_FAIL);
}

72 73
static int build_changeset_next_level(struct overlay_changeset *ovcs,
		struct device_node *target_node,
74
		const struct device_node *overlay_node);
75

76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
/*
 * of_resolve_phandles() finds the largest phandle in the live tree.
 * of_overlay_apply() may add a larger phandle to the live tree.
 * Do not allow race between two overlays being applied simultaneously:
 *    mutex_lock(&of_overlay_phandle_mutex)
 *    of_resolve_phandles()
 *    of_overlay_apply()
 *    mutex_unlock(&of_overlay_phandle_mutex)
 */
static DEFINE_MUTEX(of_overlay_phandle_mutex);

void of_overlay_mutex_lock(void)
{
	mutex_lock(&of_overlay_phandle_mutex);
}

void of_overlay_mutex_unlock(void)
{
	mutex_unlock(&of_overlay_phandle_mutex);
}


F
Frank Rowand 已提交
98 99 100
static LIST_HEAD(ovcs_list);
static DEFINE_IDR(ovcs_idr);

101
static BLOCKING_NOTIFIER_HEAD(overlay_notify_chain);
102 103 104

int of_overlay_notifier_register(struct notifier_block *nb)
{
105
	return blocking_notifier_chain_register(&overlay_notify_chain, nb);
106 107 108 109 110
}
EXPORT_SYMBOL_GPL(of_overlay_notifier_register);

int of_overlay_notifier_unregister(struct notifier_block *nb)
{
111
	return blocking_notifier_chain_unregister(&overlay_notify_chain, nb);
112 113 114
}
EXPORT_SYMBOL_GPL(of_overlay_notifier_unregister);

115 116 117 118 119 120 121
static char *of_overlay_action_name[] = {
	"pre-apply",
	"post-apply",
	"pre-remove",
	"post-remove",
};

122 123
static int overlay_notify(struct overlay_changeset *ovcs,
		enum of_overlay_notify_action action)
124 125 126 127
{
	struct of_overlay_notify_data nd;
	int i, ret;

128 129
	for (i = 0; i < ovcs->count; i++) {
		struct fragment *fragment = &ovcs->fragments[i];
130

131 132
		nd.target = fragment->target;
		nd.overlay = fragment->overlay;
133

134
		ret = blocking_notifier_call_chain(&overlay_notify_chain,
135
						   action, &nd);
136
		if (ret == NOTIFY_OK || ret == NOTIFY_STOP)
137 138 139 140 141 142 143
			return 0;
		if (ret) {
			ret = notifier_to_errno(ret);
			pr_err("overlay changeset %s notifier error %d, target: %pOF\n",
			       of_overlay_action_name[action], ret, nd.target);
			return ret;
		}
144 145 146 147 148
	}

	return 0;
}

149
/*
150 151 152
 * The values of properties in the "/__symbols__" node are paths in
 * the ovcs->overlay_tree.  When duplicating the properties, the paths
 * need to be adjusted to be the correct path for the live device tree.
153
 *
154 155 156
 * The paths refer to a node in the subtree of a fragment node's "__overlay__"
 * node, for example "/fragment@0/__overlay__/symbol_path_tail",
 * where symbol_path_tail can be a single node or it may be a multi-node path.
157 158 159 160 161
 *
 * The duplicated property value will be modified by replacing the
 * "/fragment_name/__overlay/" portion of the value  with the target
 * path from the fragment node.
 */
162 163
static struct property *dup_and_fixup_symbol_prop(
		struct overlay_changeset *ovcs, const struct property *prop)
164
{
165
	struct fragment *fragment;
166 167 168 169 170
	struct property *new_prop;
	struct device_node *fragment_node;
	struct device_node *overlay_node;
	const char *path;
	const char *path_tail;
171 172 173
	const char *target_path;
	int k;
	int overlay_name_len;
174 175
	int path_len;
	int path_tail_len;
176 177 178 179
	int target_path_len;

	if (!prop->value)
		return NULL;
180 181 182 183
	if (strnlen(prop->value, prop->length) >= prop->length)
		return NULL;
	path = prop->value;
	path_len = strlen(path);
184

185
	if (path_len < 1)
186
		return NULL;
187 188 189 190
	fragment_node = __of_find_node_by_path(ovcs->overlay_tree, path + 1);
	overlay_node = __of_find_node_by_path(fragment_node, "__overlay__/");
	of_node_put(fragment_node);
	of_node_put(overlay_node);
191

192 193
	for (k = 0; k < ovcs->count; k++) {
		fragment = &ovcs->fragments[k];
194
		if (fragment->overlay == overlay_node)
195 196
			break;
	}
197
	if (k >= ovcs->count)
198 199 200
		return NULL;

	overlay_name_len = snprintf(NULL, 0, "%pOF", fragment->overlay);
201

202 203 204 205 206 207 208 209
	if (overlay_name_len > path_len)
		return NULL;
	path_tail = path + overlay_name_len;
	path_tail_len = strlen(path_tail);

	target_path = kasprintf(GFP_KERNEL, "%pOF", fragment->target);
	if (!target_path)
		return NULL;
210 211
	target_path_len = strlen(target_path);

212 213 214
	new_prop = kzalloc(sizeof(*new_prop), GFP_KERNEL);
	if (!new_prop)
		goto err_free_target_path;
215

216 217 218 219 220
	new_prop->name = kstrdup(prop->name, GFP_KERNEL);
	new_prop->length = target_path_len + path_tail_len + 1;
	new_prop->value = kzalloc(new_prop->length, GFP_KERNEL);
	if (!new_prop->name || !new_prop->value)
		goto err_free_new_prop;
221

222 223
	strcpy(new_prop->value, target_path);
	strcpy(new_prop->value + target_path_len, path_tail);
224

225
	of_property_set_flag(new_prop, OF_DYNAMIC);
226

227
	return new_prop;
228

229 230 231 232 233 234
err_free_new_prop:
	kfree(new_prop->name);
	kfree(new_prop->value);
	kfree(new_prop);
err_free_target_path:
	kfree(target_path);
235 236 237 238

	return NULL;
}

239 240 241 242 243
/**
 * add_changeset_property() - add @overlay_prop to overlay changeset
 * @ovcs:		overlay changeset
 * @target_node:	where to place @overlay_prop in live tree
 * @overlay_prop:	property to add or update, from overlay tree
244
 * @is_symbols_prop:	1 if @overlay_prop is from node "/__symbols__"
245 246 247 248 249
 *
 * If @overlay_prop does not already exist in @target_node, add changeset entry
 * to add @overlay_prop in @target_node, else add changeset entry to update
 * value of @overlay_prop.
 *
250
 * Some special properties are not updated (no error returned).
251
 *
252
 * Update of property in symbols node is not allowed.
253 254 255
 *
 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
 * invalid @overlay.
256
 */
257 258 259
static int add_changeset_property(struct overlay_changeset *ovcs,
		struct device_node *target_node,
		struct property *overlay_prop,
260
		bool is_symbols_prop)
261
{
262
	struct property *new_prop = NULL, *prop;
263
	int ret = 0;
264

265
	prop = of_find_property(target_node, overlay_prop->name, NULL);
266

267 268 269
	if (!of_prop_cmp(overlay_prop->name, "name") ||
	    !of_prop_cmp(overlay_prop->name, "phandle") ||
	    !of_prop_cmp(overlay_prop->name, "linux,phandle"))
270 271
		return 0;

272
	if (is_symbols_prop) {
273
		if (prop)
274
			return -EINVAL;
275
		new_prop = dup_and_fixup_symbol_prop(ovcs, overlay_prop);
276
	} else {
277
		new_prop = __of_prop_dup(overlay_prop, GFP_KERNEL);
278 279
	}

280
	if (!new_prop)
281 282
		return -ENOMEM;

283 284 285
	if (!prop)
		ret = of_changeset_add_property(&ovcs->cset, target_node,
						new_prop);
286
	else
287 288
		ret = of_changeset_update_property(&ovcs->cset, target_node,
						   new_prop);
289 290

	if (ret) {
291 292 293
		kfree(new_prop->name);
		kfree(new_prop->value);
		kfree(new_prop);
294 295
	}
	return ret;
296 297
}

298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
/**
 * add_changeset_node() - add @node (and children) to overlay changeset
 * @ovcs:		overlay changeset
 * @target_node:	where to place @node in live tree
 * @node:		node from within overlay device tree fragment
 *
 * If @node does not already exist in @target_node, add changeset entry
 * to add @node in @target_node.
 *
 * If @node already exists in @target_node, and the existing node has
 * a phandle, the overlay node is not allowed to have a phandle.
 *
 * If @node has child nodes, add the children recursively via
 * build_changeset_next_level().
 *
 * NOTE: Multiple mods of created nodes not supported.
314 315 316 317 318 319 320 321
 *       If more than one fragment contains a node that does not already exist
 *       in the live tree, then for each fragment of_changeset_attach_node()
 *       will add a changeset entry to add the node.  When the changeset is
 *       applied, __of_attach_node() will attach the node twice (once for
 *       each fragment).  At this point the device tree will be corrupted.
 *
 *       TODO: add integrity check to ensure that multiple fragments do not
 *             create the same node.
322 323 324 325 326 327
 *
 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
 * invalid @overlay.
 */
static int add_changeset_node(struct overlay_changeset *ovcs,
		struct device_node *target_node, struct device_node *node)
328
{
329
	const char *node_kbasename;
330
	struct device_node *tchild;
331 332
	int ret = 0;

333
	node_kbasename = kbasename(node->full_name);
334

335 336
	for_each_child_of_node(target_node, tchild)
		if (!of_node_cmp(node_kbasename, kbasename(tchild->full_name)))
337 338
			break;

F
Frank Rowand 已提交
339
	if (!tchild) {
340 341
		tchild = __of_node_dup(node, "%pOF/%s",
				       target_node, node_kbasename);
342 343 344
		if (!tchild)
			return -ENOMEM;

345
		tchild->parent = target_node;
346

347
		ret = of_changeset_attach_node(&ovcs->cset, tchild);
348 349 350
		if (ret)
			return ret;

351
		return build_changeset_next_level(ovcs, tchild, node);
352 353
	}

354 355 356
	if (node->phandle && tchild->phandle)
		ret = -EINVAL;
	else
357
		ret = build_changeset_next_level(ovcs, tchild, node);
F
Frank Rowand 已提交
358 359
	of_node_put(tchild);

360 361 362
	return ret;
}

363 364 365 366 367
/**
 * build_changeset_next_level() - add level of overlay changeset
 * @ovcs:		overlay changeset
 * @target_node:	where to place @overlay_node in live tree
 * @overlay_node:	node from within an overlay device tree fragment
368
 *
369 370 371
 * Add the properties (if any) and nodes (if any) from @overlay_node to the
 * @ovcs->cset changeset.  If an added node has child nodes, they will
 * be added recursively.
372 373
 *
 * Do not allow symbols node to have any children.
374 375 376
 *
 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
 * invalid @overlay_node.
377
 */
378 379
static int build_changeset_next_level(struct overlay_changeset *ovcs,
		struct device_node *target_node,
380
		const struct device_node *overlay_node)
381 382 383 384 385
{
	struct device_node *child;
	struct property *prop;
	int ret;

386
	for_each_property_of_node(overlay_node, prop) {
387
		ret = add_changeset_property(ovcs, target_node, prop, 0);
388
		if (ret) {
389 390
			pr_debug("Failed to apply prop @%pOF/%s, err=%d\n",
				 target_node, prop->name, ret);
391 392 393 394
			return ret;
		}
	}

395 396
	for_each_child_of_node(overlay_node, child) {
		ret = add_changeset_node(ovcs, target_node, child);
397
		if (ret) {
398 399
			pr_debug("Failed to apply node @%pOF/%s, err=%d\n",
				 target_node, child->name, ret);
J
Julia Lawall 已提交
400
			of_node_put(child);
401 402 403 404 405 406 407
			return ret;
		}
	}

	return 0;
}

408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
/*
 * Add the properties from __overlay__ node to the @ovcs->cset changeset.
 */
static int build_changeset_symbols_node(struct overlay_changeset *ovcs,
		struct device_node *target_node,
		const struct device_node *overlay_symbols_node)
{
	struct property *prop;
	int ret;

	for_each_property_of_node(overlay_symbols_node, prop) {
		ret = add_changeset_property(ovcs, target_node, prop, 1);
		if (ret) {
			pr_debug("Failed to apply prop @%pOF/%s, err=%d\n",
				 target_node, prop->name, ret);
			return ret;
		}
	}

	return 0;
}

430
/**
431 432
 * build_changeset() - populate overlay changeset in @ovcs from @ovcs->fragments
 * @ovcs:	Overlay changeset
433
 *
434 435 436 437 438 439 440
 * Create changeset @ovcs->cset to contain the nodes and properties of the
 * overlay device tree fragments in @ovcs->fragments[].  If an error occurs,
 * any portions of the changeset that were successfully created will remain
 * in @ovcs->cset.
 *
 * Returns 0 on success, -ENOMEM if memory allocation failure, or -EINVAL if
 * invalid overlay in @ovcs->fragments[].
441
 */
442
static int build_changeset(struct overlay_changeset *ovcs)
443
{
444 445
	struct fragment *fragment;
	int fragments_count, i, ret;
446

447 448 449 450 451 452 453 454 455 456 457
	/*
	 * if there is a symbols fragment in ovcs->fragments[i] it is
	 * the final element in the array
	 */
	if (ovcs->symbols_fragment)
		fragments_count = ovcs->count - 1;
	else
		fragments_count = ovcs->count;

	for (i = 0; i < fragments_count; i++) {
		fragment = &ovcs->fragments[i];
458

459
		ret = build_changeset_next_level(ovcs, fragment->target,
460 461 462 463 464 465 466 467 468 469 470
						 fragment->overlay);
		if (ret) {
			pr_debug("apply failed '%pOF'\n", fragment->target);
			return ret;
		}
	}

	if (ovcs->symbols_fragment) {
		fragment = &ovcs->fragments[ovcs->count - 1];
		ret = build_changeset_symbols_node(ovcs, fragment->target,
						   fragment->overlay);
471
		if (ret) {
472
			pr_debug("apply failed '%pOF'\n", fragment->target);
473
			return ret;
474 475 476 477 478 479 480 481
		}
	}

	return 0;
}

/*
 * Find the target node using a number of different strategies
482
 * in order of preference:
483
 *
484 485
 * 1) "target" property containing the phandle of the target
 * 2) "target-path" property containing the path of the target
486 487 488 489 490 491 492 493
 */
static struct device_node *find_target_node(struct device_node *info_node)
{
	const char *path;
	u32 val;
	int ret;

	ret = of_property_read_u32(info_node, "target", &val);
494
	if (!ret)
495 496 497
		return of_find_node_by_phandle(val);

	ret = of_property_read_string(info_node, "target-path", &path);
498
	if (!ret)
499 500
		return of_find_node_by_path(path);

501
	pr_err("Failed to find target for node %p (%s)\n",
502 503 504 505 506 507
		info_node, info_node->name);

	return NULL;
}

/**
508 509 510
 * init_overlay_changeset() - initialize overlay changeset from overlay tree
 * @ovcs	Overlay changeset to build
 * @tree:	Contains all the overlay fragments and overlay fixup nodes
511
 *
512 513 514
 * Initialize @ovcs.  Populate @ovcs->fragments with node information from
 * the top level of @tree.  The relevant top level nodes are the fragment
 * nodes and the __symbols__ node.  Any other top level node will be ignored.
515
 *
516
 * Returns 0 on success, -ENOMEM if memory allocation failure, -EINVAL if error
F
Frank Rowand 已提交
517
 * detected in @tree, or -ENOSPC if idr_alloc() error.
518
 */
519
static int init_overlay_changeset(struct overlay_changeset *ovcs,
520 521
		struct device_node *tree)
{
F
Frank Rowand 已提交
522
	struct device_node *node, *overlay_node;
523 524 525
	struct fragment *fragment;
	struct fragment *fragments;
	int cnt, ret;
526

527 528 529 530 531 532 533 534 535 536 537 538 539
	/*
	 * Warn for some issues.  Can not return -EINVAL for these until
	 * of_unittest_apply_overlay() is fixed to pass these checks.
	 */
	if (!of_node_check_flag(tree, OF_DYNAMIC))
		pr_debug("%s() tree is not dynamic\n", __func__);

	if (!of_node_check_flag(tree, OF_DETACHED))
		pr_debug("%s() tree is not detached\n", __func__);

	if (!of_node_is_root(tree))
		pr_debug("%s() tree is not root\n", __func__);

540 541
	ovcs->overlay_tree = tree;

F
Frank Rowand 已提交
542 543 544 545 546 547 548 549
	INIT_LIST_HEAD(&ovcs->ovcs_list);

	of_changeset_init(&ovcs->cset);

	ovcs->id = idr_alloc(&ovcs_idr, ovcs, 1, 0, GFP_KERNEL);
	if (ovcs->id <= 0)
		return ovcs->id;

550 551
	cnt = 0;

F
Frank Rowand 已提交
552 553 554 555 556 557 558 559 560 561 562
	/* fragment nodes */
	for_each_child_of_node(tree, node) {
		overlay_node = of_get_child_by_name(node, "__overlay__");
		if (overlay_node) {
			cnt++;
			of_node_put(overlay_node);
		}
	}

	node = of_get_child_by_name(tree, "__symbols__");
	if (node) {
563
		cnt++;
F
Frank Rowand 已提交
564 565
		of_node_put(node);
	}
566

567
	fragments = kcalloc(cnt, sizeof(*fragments), GFP_KERNEL);
F
Frank Rowand 已提交
568 569 570 571
	if (!fragments) {
		ret = -ENOMEM;
		goto err_free_idr;
	}
572 573 574

	cnt = 0;
	for_each_child_of_node(tree, node) {
F
Frank Rowand 已提交
575 576 577 578 579 580 581 582 583 584 585 586
		fragment = &fragments[cnt];
		fragment->overlay = of_get_child_by_name(node, "__overlay__");
		if (fragment->overlay) {
			fragment->target = find_target_node(node);
			if (!fragment->target) {
				of_node_put(fragment->overlay);
				ret = -EINVAL;
				goto err_free_fragments;
			} else {
				cnt++;
			}
		}
587 588
	}

589 590 591 592
	/*
	 * if there is a symbols fragment in ovcs->fragments[i] it is
	 * the final element in the array
	 */
593 594
	node = of_get_child_by_name(tree, "__symbols__");
	if (node) {
595
		ovcs->symbols_fragment = 1;
596 597 598
		fragment = &fragments[cnt];
		fragment->overlay = node;
		fragment->target = of_find_node_by_path("/__symbols__");
599

600
		if (!fragment->target) {
601
			pr_err("symbols in overlay, but not in live tree\n");
F
Frank Rowand 已提交
602 603
			ret = -EINVAL;
			goto err_free_fragments;
604 605 606 607 608
		}

		cnt++;
	}

609
	if (!cnt) {
F
Frank Rowand 已提交
610 611
		ret = -EINVAL;
		goto err_free_fragments;
612 613
	}

614 615
	ovcs->count = cnt;
	ovcs->fragments = fragments;
616 617

	return 0;
F
Frank Rowand 已提交
618 619 620 621 622 623

err_free_fragments:
	kfree(fragments);
err_free_idr:
	idr_remove(&ovcs_idr, ovcs->id);

624 625
	pr_err("%s() failed, ret = %d\n", __func__, ret);

F
Frank Rowand 已提交
626
	return ret;
627 628
}

F
Frank Rowand 已提交
629
static void free_overlay_changeset(struct overlay_changeset *ovcs)
630 631 632
{
	int i;

F
Frank Rowand 已提交
633 634 635 636 637 638 639 640
	if (!ovcs->cset.entries.next)
		return;
	of_changeset_destroy(&ovcs->cset);

	if (ovcs->id)
		idr_remove(&ovcs_idr, ovcs->id);

	for (i = 0; i < ovcs->count; i++) {
641 642
		of_node_put(ovcs->fragments[i].target);
		of_node_put(ovcs->fragments[i].overlay);
643
	}
644
	kfree(ovcs->fragments);
645

F
Frank Rowand 已提交
646 647
	kfree(ovcs);
}
648 649

/**
650 651
 * of_overlay_apply() - Create and apply an overlay changeset
 * @tree:	Expanded overlay device tree
652 653 654
 * @ovcs_id:	Pointer to overlay changeset id
 *
 * Creates and applies an overlay changeset.
655
 *
656 657
 * If an error occurs in a pre-apply notifier, then no changes are made
 * to the device tree.
658
 *
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686

 * A non-zero return value will not have created the changeset if error is from:
 *   - parameter checks
 *   - building the changeset
 *   - overlay changset pre-apply notifier
 *
 * If an error is returned by an overlay changeset pre-apply notifier
 * then no further overlay changeset pre-apply notifier will be called.
 *
 * A non-zero return value will have created the changeset if error is from:
 *   - overlay changeset entry notifier
 *   - overlay changset post-apply notifier
 *
 * If an error is returned by an overlay changeset post-apply notifier
 * then no further overlay changeset post-apply notifier will be called.
 *
 * If more than one notifier returns an error, then the last notifier
 * error to occur is returned.
 *
 * If an error occurred while applying the overlay changeset, then an
 * attempt is made to revert any changes that were made to the
 * device tree.  If there were any errors during the revert attempt
 * then the state of the device tree can not be determined, and any
 * following attempt to apply or remove an overlay changeset will be
 * refused.
 *
 * Returns 0 on success, or a negative error number.  Overlay changeset
 * id is returned to *ovcs_id.
687
 */
688 689

int of_overlay_apply(struct device_node *tree, int *ovcs_id)
690
{
691
	struct overlay_changeset *ovcs;
692 693 694 695 696 697 698 699 700
	int ret = 0, ret_revert, ret_tmp;

	*ovcs_id = 0;

	if (devicetree_corrupt()) {
		pr_err("devicetree state suspect, refuse to apply overlay\n");
		ret = -EBUSY;
		goto out;
	}
701

702
	ovcs = kzalloc(sizeof(*ovcs), GFP_KERNEL);
703 704 705 706
	if (!ovcs) {
		ret = -ENOMEM;
		goto out;
	}
707

708 709 710 711 712 713
	of_overlay_mutex_lock();

	ret = of_resolve_phandles(tree);
	if (ret)
		goto err_overlay_unlock;

714 715
	mutex_lock(&of_mutex);

716
	ret = init_overlay_changeset(ovcs, tree);
717
	if (ret)
F
Frank Rowand 已提交
718
		goto err_free_overlay_changeset;
719

720
	ret = overlay_notify(ovcs, OF_OVERLAY_PRE_APPLY);
721 722
	if (ret) {
		pr_err("overlay changeset pre-apply notify error %d\n", ret);
F
Frank Rowand 已提交
723
		goto err_free_overlay_changeset;
724 725
	}

726 727
	ret = build_changeset(ovcs);
	if (ret)
F
Frank Rowand 已提交
728
		goto err_free_overlay_changeset;
729

730 731 732 733 734 735 736 737
	ret_revert = 0;
	ret = __of_changeset_apply_entries(&ovcs->cset, &ret_revert);
	if (ret) {
		if (ret_revert) {
			pr_debug("overlay changeset revert error %d\n",
				 ret_revert);
			devicetree_state_flags |= DTSF_APPLY_FAIL;
		}
F
Frank Rowand 已提交
738
		goto err_free_overlay_changeset;
739 740 741 742 743 744 745
	} else {
		ret = __of_changeset_apply_notify(&ovcs->cset);
		if (ret)
			pr_err("overlay changeset entry notify error %d\n",
			       ret);
		/* fall through */
	}
746

747
	list_add_tail(&ovcs->ovcs_list, &ovcs_list);
748 749 750 751 752 753 754 755 756
	*ovcs_id = ovcs->id;

	ret_tmp = overlay_notify(ovcs, OF_OVERLAY_POST_APPLY);
	if (ret_tmp) {
		pr_err("overlay changeset post-apply notify error %d\n",
		       ret_tmp);
		if (!ret)
			ret = ret_tmp;
	}
757

758
	mutex_unlock(&of_mutex);
759
	of_overlay_mutex_unlock();
760

761
	goto out;
F
Frank Rowand 已提交
762

763 764 765
err_overlay_unlock:
	of_overlay_mutex_unlock();

F
Frank Rowand 已提交
766 767
err_free_overlay_changeset:
	free_overlay_changeset(ovcs);
768 769 770

	mutex_unlock(&of_mutex);

771 772 773
out:
	pr_debug("%s() err=%d\n", __func__, ret);

774
	return ret;
775
}
776
EXPORT_SYMBOL_GPL(of_overlay_apply);
777

778
/*
779 780 781
 * Find @np in @tree.
 *
 * Returns 1 if @np is @tree or is contained in @tree, else 0
782
 */
783
static int find_node(struct device_node *tree, struct device_node *np)
784 785 786
{
	struct device_node *child;

787
	if (tree == np)
788 789 790
		return 1;

	for_each_child_of_node(tree, child) {
791
		if (find_node(child, np)) {
J
Julia Lawall 已提交
792
			of_node_put(child);
793
			return 1;
J
Julia Lawall 已提交
794
		}
795 796 797 798 799
	}

	return 0;
}

800
/*
801
 * Is @remove_ce_node a child of, a parent of, or the same as any
802 803 804
 * node in an overlay changeset more topmost than @remove_ovcs?
 *
 * Returns 1 if found, else 0
805
 */
806 807
static int node_overlaps_later_cs(struct overlay_changeset *remove_ovcs,
		struct device_node *remove_ce_node)
808
{
809
	struct overlay_changeset *ovcs;
810 811
	struct of_changeset_entry *ce;

812 813
	list_for_each_entry_reverse(ovcs, &ovcs_list, ovcs_list) {
		if (ovcs == remove_ovcs)
814 815
			break;

816
		list_for_each_entry(ce, &ovcs->cset.entries, node) {
817 818
			if (find_node(ce->np, remove_ce_node)) {
				pr_err("%s: #%d overlaps with #%d @%pOF\n",
819
					__func__, remove_ovcs->id, ovcs->id,
820 821 822 823 824 825 826
					remove_ce_node);
				return 1;
			}
			if (find_node(remove_ce_node, ce->np)) {
				pr_err("%s: #%d overlaps with #%d @%pOF\n",
					__func__, remove_ovcs->id, ovcs->id,
					remove_ce_node);
827
				return 1;
828 829 830 831
			}
		}
	}

832
	return 0;
833 834 835 836 837 838 839 840 841 842 843 844
}

/*
 * We can safely remove the overlay only if it's the top-most one.
 * Newly applied overlays are inserted at the tail of the overlay list,
 * so a top most overlay is the one that is closest to the tail.
 *
 * The topmost check is done by exploiting this property. For each
 * affected device node in the log list we check if this overlay is
 * the one closest to the tail. If another overlay has affected this
 * device node and is closest to the tail, then removal is not permited.
 */
845
static int overlay_removal_is_ok(struct overlay_changeset *remove_ovcs)
846
{
847
	struct of_changeset_entry *remove_ce;
848

849
	list_for_each_entry(remove_ce, &remove_ovcs->cset.entries, node) {
850
		if (node_overlaps_later_cs(remove_ovcs, remove_ce->np)) {
851
			pr_err("overlay #%d is not topmost\n", remove_ovcs->id);
852 853 854 855 856 857 858 859
			return 0;
		}
	}

	return 1;
}

/**
860
 * of_overlay_remove() - Revert and free an overlay changeset
861
 * @ovcs_id:	Pointer to overlay changeset id
862
 *
863
 * Removes an overlay if it is permissible.  @ovcs_id was previously returned
864
 * by of_overlay_apply().
865
 *
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891
 * If an error occurred while attempting to revert the overlay changeset,
 * then an attempt is made to re-apply any changeset entry that was
 * reverted.  If an error occurs on re-apply then the state of the device
 * tree can not be determined, and any following attempt to apply or remove
 * an overlay changeset will be refused.
 *
 * A non-zero return value will not revert the changeset if error is from:
 *   - parameter checks
 *   - overlay changset pre-remove notifier
 *   - overlay changeset entry revert
 *
 * If an error is returned by an overlay changeset pre-remove notifier
 * then no further overlay changeset pre-remove notifier will be called.
 *
 * If more than one notifier returns an error, then the last notifier
 * error to occur is returned.
 *
 * A non-zero return value will revert the changeset if error is from:
 *   - overlay changeset entry notifier
 *   - overlay changset post-remove notifier
 *
 * If an error is returned by an overlay changeset post-remove notifier
 * then no further overlay changeset post-remove notifier will be called.
 *
 * Returns 0 on success, or a negative error number.  *ovcs_id is set to
 * zero after reverting the changeset, even if a subsequent error occurs.
892
 */
893
int of_overlay_remove(int *ovcs_id)
894
{
895
	struct overlay_changeset *ovcs;
896 897 898 899 900 901 902 903 904
	int ret, ret_apply, ret_tmp;

	ret = 0;

	if (devicetree_corrupt()) {
		pr_err("suspect devicetree state, refuse to remove overlay\n");
		ret = -EBUSY;
		goto out;
	}
905 906 907

	mutex_lock(&of_mutex);

908
	ovcs = idr_find(&ovcs_idr, *ovcs_id);
909 910
	if (!ovcs) {
		ret = -ENODEV;
911 912
		pr_err("remove: Could not find overlay #%d\n", *ovcs_id);
		goto out_unlock;
913 914
	}

915 916
	if (!overlay_removal_is_ok(ovcs)) {
		ret = -EBUSY;
917
		goto out_unlock;
918 919
	}

920 921 922 923 924
	ret = overlay_notify(ovcs, OF_OVERLAY_PRE_REMOVE);
	if (ret) {
		pr_err("overlay changeset pre-remove notify error %d\n", ret);
		goto out_unlock;
	}
F
Frank Rowand 已提交
925

926
	list_del(&ovcs->ovcs_list);
F
Frank Rowand 已提交
927

928 929 930 931 932 933 934 935 936 937 938 939 940 941
	ret_apply = 0;
	ret = __of_changeset_revert_entries(&ovcs->cset, &ret_apply);
	if (ret) {
		if (ret_apply)
			devicetree_state_flags |= DTSF_REVERT_FAIL;
		goto out_unlock;
	} else {
		ret = __of_changeset_revert_notify(&ovcs->cset);
		if (ret) {
			pr_err("overlay changeset entry notify error %d\n",
			       ret);
			/* fall through - changeset was reverted */
		}
	}
F
Frank Rowand 已提交
942

943 944 945 946 947 948 949 950 951
	*ovcs_id = 0;

	ret_tmp = overlay_notify(ovcs, OF_OVERLAY_POST_REMOVE);
	if (ret_tmp) {
		pr_err("overlay changeset post-remove notify error %d\n",
		       ret_tmp);
		if (!ret)
			ret = ret_tmp;
	}
F
Frank Rowand 已提交
952 953

	free_overlay_changeset(ovcs);
954

955
out_unlock:
956 957
	mutex_unlock(&of_mutex);

958 959 960
out:
	pr_debug("%s() err=%d\n", __func__, ret);

961
	return ret;
962
}
963
EXPORT_SYMBOL_GPL(of_overlay_remove);
964 965

/**
966
 * of_overlay_remove_all() - Reverts and frees all overlay changesets
967 968 969
 *
 * Removes all overlays from the system in the correct order.
 *
970
 * Returns 0 on success, or a negative error number
971
 */
972
int of_overlay_remove_all(void)
973
{
974
	struct overlay_changeset *ovcs, *ovcs_n;
F
Frank Rowand 已提交
975
	int ret;
976 977

	/* the tail of list is guaranteed to be safe to remove */
978
	list_for_each_entry_safe_reverse(ovcs, ovcs_n, &ovcs_list, ovcs_list) {
979
		ret = of_overlay_remove(&ovcs->id);
F
Frank Rowand 已提交
980 981
		if (ret)
			return ret;
982 983 984 985
	}

	return 0;
}
986
EXPORT_SYMBOL_GPL(of_overlay_remove_all);