1 /*- 2 * Copyright (c) 2015 Oleksandr Tymoshenko <gonzo (at) FreeBSD.org> 3 * All rights reserved. 4 * 5 * This software was developed by Semihalf under sponsorship from 6 * the FreeBSD Foundation. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 */ 29 30 #include "ufdt_overlay.h" 31 32 #include "libufdt.h" 33 #include "ufdt_node_pool.h" 34 35 /* 36 * The original version of fdt_overlay.c is slow in searching for particular 37 * nodes and adding subnodes/properties due to the operations on flattened 38 * device tree (FDT). 39 * 40 * Here we introduce `libufdt` which builds a real tree structure (named 41 * ufdt -- unflattned device tree) from FDT. In the real tree, we can perform 42 * certain operations (e.g., merge 2 subtrees, search for a node by path) in 43 * almost optimal time complexity with acceptable additional memory usage. 44 * 45 * This file is the improved version of fdt_overlay.c by using the real tree 46 * structure defined in libufdt. 47 * 48 * How the device tree overlay works and some 49 * special terms (e.g., fixups, local fixups, fragment, etc) 50 * are described in the document 51 * external/dtc/Documentation/dt-object-internal.txt. 52 */ 53 54 /* BEGIN of operations about phandles in ufdt. */ 55 56 /* 57 * Increases u32 value at pos by offset. 58 */ 59 static void fdt_increase_u32(void *pos, uint32_t offset) { 60 uint32_t val; 61 62 dto_memcpy(&val, pos, sizeof(val)); 63 val = cpu_to_fdt32(fdt32_to_cpu(val) + offset); 64 dto_memcpy(pos, &val, sizeof(val)); 65 } 66 67 /* 68 * Gets the max phandle of a given ufdt. 69 */ 70 static uint32_t ufdt_get_max_phandle(struct ufdt *tree) { 71 struct ufdt_static_phandle_table sorted_table = tree->phandle_table; 72 if (sorted_table.len > 0) 73 return sorted_table.data[sorted_table.len - 1].phandle; 74 else 75 return 0; 76 } 77 78 /* 79 * Tries to increase the phandle value of a node 80 * if the phandle exists. 81 */ 82 static void ufdt_node_try_increase_phandle(struct ufdt_node *node, 83 uint32_t offset) { 84 int len = 0; 85 char *prop_data = ufdt_node_get_fdt_prop_data_by_name(node, "phandle", &len); 86 if (prop_data != NULL && len == sizeof(fdt32_t)) { 87 fdt_increase_u32(prop_data, offset); 88 } 89 prop_data = ufdt_node_get_fdt_prop_data_by_name(node, "linux,phandle", &len); 90 if (prop_data != NULL && len == sizeof(fdt32_t)) { 91 fdt_increase_u32(prop_data, offset); 92 } 93 } 94 95 /* 96 * Increases all phandles by offset in a ufdt 97 * in O(n) time. 98 */ 99 static void ufdt_try_increase_phandle(struct ufdt *tree, uint32_t offset) { 100 struct ufdt_static_phandle_table sorted_table = tree->phandle_table; 101 int i; 102 103 for (i = 0; i < sorted_table.len; i++) { 104 struct ufdt_node *target_node = sorted_table.data[i].node; 105 106 ufdt_node_try_increase_phandle(target_node, offset); 107 } 108 } 109 110 /* END of operations about phandles in ufdt. */ 111 112 /* 113 * In the overlay_tree, there are some references (phandle) 114 * pointing to somewhere in the main_tree. 115 * Fix-up operations is to resolve the right address 116 * in the overlay_tree. 117 */ 118 119 /* BEGIN of doing fixup in the overlay ufdt. */ 120 121 /* 122 * Returns exact memory location specified by fixup in format 123 * /path/to/node:property:offset. 124 * A property might contain multiple values and the offset is used to locate a 125 * reference inside the property. 126 * e.g., 127 * "property"=<1, 2, &ref, 4>, we can use /path/to/node:property:8 to get ref, 128 * where 8 is sizeof(uint32) + sizeof(unit32). 129 */ 130 static void *ufdt_get_fixup_location(struct ufdt *tree, const char *fixup) { 131 char *path, *prop_ptr, *offset_ptr, *end_ptr; 132 int prop_offset, prop_len; 133 const char *prop_data; 134 char path_buf[1024]; 135 char *path_mem = NULL; 136 137 size_t fixup_len = strlen(fixup) + 1; 138 if (fixup_len > sizeof(path_buf)) { 139 path_mem = dto_malloc(fixup_len); 140 path = path_mem; 141 } else { 142 path = path_buf; 143 } 144 dto_memcpy(path, fixup, fixup_len); 145 146 prop_ptr = dto_strchr(path, ':'); 147 if (prop_ptr == NULL) { 148 dto_error("Missing property part in '%s'\n", path); 149 goto fail; 150 } 151 152 *prop_ptr = '\0'; 153 prop_ptr++; 154 155 offset_ptr = dto_strchr(prop_ptr, ':'); 156 if (offset_ptr == NULL) { 157 dto_error("Missing offset part in '%s'\n", path); 158 goto fail; 159 } 160 161 *offset_ptr = '\0'; 162 offset_ptr++; 163 164 prop_offset = dto_strtoul(offset_ptr, &end_ptr, 10 /* base */); 165 if (*end_ptr != '\0') { 166 dto_error("'%s' is not valid number\n", offset_ptr); 167 goto fail; 168 } 169 170 struct ufdt_node *target_node; 171 target_node = ufdt_get_node_by_path(tree, path); 172 if (target_node == NULL) { 173 dto_error("Path '%s' not found\n", path); 174 goto fail; 175 } 176 177 prop_data = 178 ufdt_node_get_fdt_prop_data_by_name(target_node, prop_ptr, &prop_len); 179 if (prop_data == NULL) { 180 dto_error("Property '%s' not found in '%s' node\n", prop_ptr, path); 181 goto fail; 182 } 183 /* 184 * Note that prop_offset is the offset inside the property data. 185 */ 186 if (prop_len < prop_offset + (int)sizeof(uint32_t)) { 187 dto_error("%s: property length is too small for fixup\n", path); 188 goto fail; 189 } 190 191 if (path_mem) dto_free(path_mem); 192 return (char *)prop_data + prop_offset; 193 194 fail: 195 if (path_mem) dto_free(path_mem); 196 return NULL; 197 } 198 199 /* 200 * Process one entry in __fixups__ { } node. 201 * @fixups is property value, array of NUL-terminated strings 202 * with fixup locations. 203 * @fixups_len length of the fixups array in bytes. 204 * @phandle is value for these locations. 205 */ 206 static int ufdt_do_one_fixup(struct ufdt *tree, const char *fixups, 207 int fixups_len, int phandle) { 208 void *fixup_pos; 209 uint32_t val; 210 211 val = cpu_to_fdt32(phandle); 212 213 while (fixups_len > 0) { 214 fixup_pos = ufdt_get_fixup_location(tree, fixups); 215 if (fixup_pos != NULL) { 216 dto_memcpy(fixup_pos, &val, sizeof(val)); 217 } else { 218 return -1; 219 } 220 221 fixups_len -= dto_strlen(fixups) + 1; 222 fixups += dto_strlen(fixups) + 1; 223 } 224 225 return 0; 226 } 227 228 /* 229 * Handle __fixups__ node in overlay tree. 230 */ 231 232 static int ufdt_overlay_do_fixups(struct ufdt *main_tree, 233 struct ufdt *overlay_tree) { 234 int len = 0; 235 struct ufdt_node *overlay_fixups_node = 236 ufdt_get_node_by_path(overlay_tree, "/__fixups__"); 237 if (!overlay_fixups_node) { 238 /* There is no __fixups__. Do nothing. */ 239 return 0; 240 } 241 242 struct ufdt_node *main_symbols_node = 243 ufdt_get_node_by_path(main_tree, "/__symbols__"); 244 245 struct ufdt_node **it; 246 for_each_prop(it, overlay_fixups_node) { 247 /* Find the first property */ 248 249 /* Check __symbols__ is exist when we have any property in __fixups__ */ 250 if (!main_symbols_node) { 251 dto_error("No node __symbols__ in main dtb.\n"); 252 return -1; 253 } 254 break; 255 } 256 257 for_each_prop(it, overlay_fixups_node) { 258 /* 259 * A property in __fixups__ looks like: 260 * symbol_name = 261 * "/path/to/node:prop:offset0\x00/path/to/node:prop:offset1..." 262 * So we firstly find the node "symbol_name" and obtain its phandle in 263 * __symbols__ of the main_tree. 264 */ 265 266 struct ufdt_node *fixups = *it; 267 char *symbol_path = ufdt_node_get_fdt_prop_data_by_name( 268 main_symbols_node, ufdt_node_name(fixups), &len); 269 270 if (!symbol_path) { 271 dto_error("Couldn't find '%s' symbol in main dtb\n", 272 ufdt_node_name(fixups)); 273 return -1; 274 } 275 276 struct ufdt_node *symbol_node; 277 symbol_node = ufdt_get_node_by_path(main_tree, symbol_path); 278 279 if (!symbol_node) { 280 dto_error("Couldn't find '%s' path in main dtb\n", symbol_path); 281 return -1; 282 } 283 284 uint32_t phandle = ufdt_node_get_phandle(symbol_node); 285 286 const char *fixups_paths = ufdt_node_get_fdt_prop_data(fixups, &len); 287 288 if (ufdt_do_one_fixup(overlay_tree, fixups_paths, len, phandle) < 0) { 289 dto_error("Failed one fixup in ufdt_do_one_fixup\n"); 290 return -1; 291 } 292 } 293 294 return 0; 295 } 296 297 /* END of doing fixup in the overlay ufdt. */ 298 299 /* 300 * Here is to overlay all fragments in the overlay_tree to the main_tree. 301 * What is "overlay fragment"? The main purpose is to add some subtrees to the 302 * main_tree in order to complete the entire device tree. 303 * 304 * A fragment consists of two parts: 1. the subtree to be added 2. where it 305 * should be added. 306 * 307 * Overlaying a fragment requires: 1. find the node in the main_tree 2. merge 308 * the subtree into that node in the main_tree. 309 */ 310 311 /* BEGIN of applying fragments. */ 312 313 /* 314 * Overlay the overlay_node over target_node. 315 */ 316 static int ufdt_overlay_node(struct ufdt_node *target_node, 317 struct ufdt_node *overlay_node, 318 struct ufdt_node_pool *pool) { 319 return ufdt_node_merge_into(target_node, overlay_node, pool); 320 } 321 322 /* 323 * Return value of ufdt_apply_fragment(). 324 */ 325 326 enum overlay_result { 327 OVERLAY_RESULT_OK, 328 OVERLAY_RESULT_MISSING_TARGET, 329 OVERLAY_RESULT_MISSING_OVERLAY, 330 OVERLAY_RESULT_TARGET_PATH_INVALID, 331 OVERLAY_RESULT_TARGET_INVALID, 332 OVERLAY_RESULT_MERGE_FAIL, 333 }; 334 335 /* 336 * Apply one overlay fragment (subtree). 337 */ 338 static enum overlay_result ufdt_apply_fragment(struct ufdt *tree, 339 struct ufdt_node *frag_node, 340 struct ufdt_node_pool *pool) { 341 uint32_t target; 342 const char *target_path; 343 const void *val; 344 struct ufdt_node *target_node = NULL; 345 struct ufdt_node *overlay_node = NULL; 346 347 val = ufdt_node_get_fdt_prop_data_by_name(frag_node, "target", NULL); 348 if (val) { 349 dto_memcpy(&target, val, sizeof(target)); 350 target = fdt32_to_cpu(target); 351 target_node = ufdt_get_node_by_phandle(tree, target); 352 if (target_node == NULL) { 353 dto_error("failed to find target %04x\n", target); 354 return OVERLAY_RESULT_TARGET_INVALID; 355 } 356 } 357 358 if (target_node == NULL) { 359 target_path = 360 ufdt_node_get_fdt_prop_data_by_name(frag_node, "target-path", NULL); 361 if (target_path == NULL) { 362 return OVERLAY_RESULT_MISSING_TARGET; 363 } 364 365 target_node = ufdt_get_node_by_path(tree, target_path); 366 if (target_node == NULL) { 367 dto_error("failed to find target-path %s\n", target_path); 368 return OVERLAY_RESULT_TARGET_PATH_INVALID; 369 } 370 } 371 372 overlay_node = ufdt_node_get_node_by_path(frag_node, "__overlay__"); 373 if (overlay_node == NULL) { 374 dto_error("missing __overlay__ sub-node\n"); 375 return OVERLAY_RESULT_MISSING_OVERLAY; 376 } 377 378 int err = ufdt_overlay_node(target_node, overlay_node, pool); 379 380 if (err < 0) { 381 dto_error("failed to overlay node %s to target %s\n", 382 ufdt_node_name(overlay_node), ufdt_node_name(target_node)); 383 return OVERLAY_RESULT_MERGE_FAIL; 384 } 385 386 return OVERLAY_RESULT_OK; 387 } 388 389 /* 390 * Applies all fragments to the main_tree. 391 */ 392 static int ufdt_overlay_apply_fragments(struct ufdt *main_tree, 393 struct ufdt *overlay_tree, 394 struct ufdt_node_pool *pool) { 395 enum overlay_result err; 396 struct ufdt_node **it; 397 /* 398 * This loop may iterate to subnodes that's not a fragment node. 399 * In such case, ufdt_apply_fragment would fail with return value = -1. 400 */ 401 for_each_node(it, overlay_tree->root) { 402 err = ufdt_apply_fragment(main_tree, *it, pool); 403 if (err == OVERLAY_RESULT_MERGE_FAIL) { 404 return -1; 405 } 406 } 407 return 0; 408 } 409 410 /* END of applying fragments. */ 411 412 /* 413 * Since the overlay_tree will be "merged" into the main_tree, some 414 * references (e.g., phandle values that acts as an unique ID) need to be 415 * updated so it won't lead to collision that different nodes have the same 416 * phandle value. 417 * 418 * Two things need to be done: 419 * 420 * 1. ufdt_try_increase_phandle() 421 * Update phandle (an unique integer ID of a node in the device tree) of each 422 * node in the overlay_tree. To achieve this, we simply increase each phandle 423 * values in the overlay_tree by the max phandle value of the main_tree. 424 * 425 * 2. ufdt_overlay_do_local_fixups() 426 * If there are some reference in the overlay_tree that references nodes 427 * inside the overlay_tree, we have to modify the reference value (address of 428 * the referenced node: phandle) so that it corresponds to the right node inside 429 * the overlay_tree. Where the reference exists is kept in __local_fixups__ node 430 * in the overlay_tree. 431 */ 432 433 /* BEGIN of updating local references (phandle values) in the overlay ufdt. */ 434 435 /* 436 * local fixups 437 */ 438 static int ufdt_local_fixup_prop(struct ufdt_node *target_prop_node, 439 struct ufdt_node *local_fixup_prop_node, 440 uint32_t phandle_offset) { 441 /* 442 * prop_offsets_ptr should be a list of fdt32_t. 443 * <offset0 offset1 offset2 ...> 444 */ 445 char *prop_offsets_ptr; 446 int len = 0; 447 prop_offsets_ptr = ufdt_node_get_fdt_prop_data(local_fixup_prop_node, &len); 448 449 char *prop_data; 450 int target_length = 0; 451 452 prop_data = ufdt_node_get_fdt_prop_data(target_prop_node, &target_length); 453 454 if (prop_offsets_ptr == NULL || prop_data == NULL) return -1; 455 456 int i; 457 for (i = 0; i < len; i += sizeof(fdt32_t)) { 458 int offset = fdt32_to_cpu(*(fdt32_t *)(prop_offsets_ptr + i)); 459 if (offset + sizeof(fdt32_t) > (size_t)target_length) return -1; 460 fdt_increase_u32((prop_data + offset), phandle_offset); 461 } 462 return 0; 463 } 464 465 static int ufdt_local_fixup_node(struct ufdt_node *target_node, 466 struct ufdt_node *local_fixups_node, 467 uint32_t phandle_offset) { 468 if (local_fixups_node == NULL) return 0; 469 470 struct ufdt_node **it_local_fixups; 471 struct ufdt_node *sub_target_node; 472 473 for_each_prop(it_local_fixups, local_fixups_node) { 474 sub_target_node = ufdt_node_get_property_by_name( 475 target_node, ufdt_node_name(*it_local_fixups)); 476 477 if (sub_target_node != NULL) { 478 int err = ufdt_local_fixup_prop(sub_target_node, *it_local_fixups, 479 phandle_offset); 480 if (err < 0) return -1; 481 } else { 482 return -1; 483 } 484 } 485 486 for_each_node(it_local_fixups, local_fixups_node) { 487 sub_target_node = ufdt_node_get_node_by_path( 488 target_node, ufdt_node_name(*it_local_fixups)); 489 if (sub_target_node != NULL) { 490 int err = ufdt_local_fixup_node(sub_target_node, *it_local_fixups, 491 phandle_offset); 492 if (err < 0) return -1; 493 } else { 494 return -1; 495 } 496 } 497 498 return 0; 499 } 500 501 /* 502 * Handle __local_fixups__ node in overlay DTB 503 * The __local_fixups__ format we expect is 504 * __local_fixups__ { 505 * path { 506 * to { 507 * local_ref1 = <offset>; 508 * }; 509 * }; 510 * path2 { 511 * to2 { 512 * local_ref2 = <offset1 offset2 ...>; 513 * }; 514 * }; 515 * }; 516 * 517 * which follows the dtc patch from: 518 * https://marc.info/?l=devicetree&m=144061468601974&w=4 519 */ 520 static int ufdt_overlay_do_local_fixups(struct ufdt *tree, 521 uint32_t phandle_offset) { 522 struct ufdt_node *overlay_node = ufdt_get_node_by_path(tree, "/"); 523 struct ufdt_node *local_fixups_node = 524 ufdt_get_node_by_path(tree, "/__local_fixups__"); 525 526 int err = 527 ufdt_local_fixup_node(overlay_node, local_fixups_node, phandle_offset); 528 529 if (err < 0) return -1; 530 531 return 0; 532 } 533 534 static int ufdt_overlay_local_ref_update(struct ufdt *main_tree, 535 struct ufdt *overlay_tree) { 536 uint32_t phandle_offset = 0; 537 538 phandle_offset = ufdt_get_max_phandle(main_tree); 539 if (phandle_offset > 0) { 540 ufdt_try_increase_phandle(overlay_tree, phandle_offset); 541 } 542 543 int err = ufdt_overlay_do_local_fixups(overlay_tree, phandle_offset); 544 if (err < 0) { 545 dto_error("failed to perform local fixups in overlay\n"); 546 return -1; 547 } 548 return 0; 549 } 550 551 /* END of updating local references (phandle values) in the overlay ufdt. */ 552 553 static int _ufdt_overlay_fdtps(struct ufdt *main_tree, 554 const struct ufdt *overlay_tree) { 555 for (int i = 0; i < overlay_tree->num_used_fdtps; i++) { 556 void *fdt = overlay_tree->fdtps[i]; 557 if (ufdt_add_fdt(main_tree, fdt) < 0) { 558 return -1; 559 } 560 } 561 return 0; 562 } 563 564 static int ufdt_overlay_apply(struct ufdt *main_tree, struct ufdt *overlay_tree, 565 size_t overlay_length, 566 struct ufdt_node_pool *pool) { 567 if (_ufdt_overlay_fdtps(main_tree, overlay_tree) < 0) { 568 dto_error("failed to add more fdt into main ufdt tree.\n"); 569 return -1; 570 } 571 572 if (overlay_length < sizeof(struct fdt_header)) { 573 dto_error("Overlay_length %zu smaller than header size %zu\n", 574 overlay_length, sizeof(struct fdt_header)); 575 return -1; 576 } 577 578 if (ufdt_overlay_local_ref_update(main_tree, overlay_tree) < 0) { 579 dto_error("failed to perform local fixups in overlay\n"); 580 return -1; 581 } 582 583 if (ufdt_overlay_do_fixups(main_tree, overlay_tree) < 0) { 584 dto_error("failed to perform fixups in overlay\n"); 585 return -1; 586 } 587 if (ufdt_overlay_apply_fragments(main_tree, overlay_tree, pool) < 0) { 588 dto_error("failed to apply fragments\n"); 589 return -1; 590 } 591 592 return 0; 593 } 594 595 struct fdt_header *ufdt_install_blob(void *blob, size_t blob_size) { 596 struct fdt_header *pHeader; 597 int err; 598 599 dto_debug("ufdt_install_blob (0x%08jx)\n", (uintmax_t)blob); 600 601 if (blob_size < sizeof(struct fdt_header)) { 602 dto_error("Blob_size %zu smaller than the header size %zu\n", blob_size, 603 sizeof(struct fdt_header)); 604 return NULL; 605 } 606 607 pHeader = (struct fdt_header *)blob; 608 err = fdt_check_header(pHeader); 609 if (err < 0) { 610 if (err == -FDT_ERR_BADVERSION) { 611 dto_error("incompatible blob version: %d, should be: %d", 612 fdt_version(pHeader), FDT_LAST_SUPPORTED_VERSION); 613 614 } else { 615 dto_error("error validating blob: %s", fdt_strerror(err)); 616 } 617 return NULL; 618 } 619 620 return pHeader; 621 } 622 623 /* 624 * From Google, based on dt_overlay_apply() logic 625 * Will dto_malloc a new fdt blob and return it. Will not dto_free parameters. 626 */ 627 struct fdt_header *ufdt_apply_overlay(struct fdt_header *main_fdt_header, 628 size_t main_fdt_size, 629 void *overlay_fdtp, 630 size_t overlay_size) { 631 size_t out_fdt_size; 632 633 if (main_fdt_header == NULL) { 634 return NULL; 635 } 636 637 if (overlay_size < 8 || overlay_size != fdt_totalsize(overlay_fdtp)) { 638 dto_error("Bad overlay size!\n"); 639 return NULL; 640 } 641 if (main_fdt_size < 8 || main_fdt_size != fdt_totalsize(main_fdt_header)) { 642 dto_error("Bad fdt size!\n"); 643 return NULL; 644 } 645 646 out_fdt_size = fdt_totalsize(main_fdt_header) + overlay_size; 647 /* It's actually more than enough */ 648 struct fdt_header *out_fdt_header = dto_malloc(out_fdt_size); 649 650 if (out_fdt_header == NULL) { 651 dto_error("failed to allocate memory for DTB blob with overlays\n"); 652 return NULL; 653 } 654 655 struct ufdt_node_pool pool; 656 ufdt_node_pool_construct(&pool); 657 struct ufdt *main_tree = ufdt_from_fdt(main_fdt_header, main_fdt_size, &pool); 658 struct ufdt *overlay_tree = ufdt_from_fdt(overlay_fdtp, overlay_size, &pool); 659 int err = ufdt_overlay_apply(main_tree, overlay_tree, overlay_size, &pool); 660 if (err < 0) { 661 goto fail; 662 } 663 664 err = ufdt_to_fdt(main_tree, out_fdt_header, out_fdt_size); 665 if (err < 0) { 666 dto_error("Failed to dump the device tree to out_fdt_header\n"); 667 goto fail; 668 } 669 670 ufdt_destruct(overlay_tree, &pool); 671 ufdt_destruct(main_tree, &pool); 672 ufdt_node_pool_destruct(&pool); 673 674 return out_fdt_header; 675 676 fail: 677 ufdt_destruct(overlay_tree, &pool); 678 ufdt_destruct(main_tree, &pool); 679 ufdt_node_pool_destruct(&pool); 680 dto_free(out_fdt_header); 681 682 return NULL; 683 } 684