1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * kexec_handover.c - kexec handover metadata processing 4 * Copyright (C) 2023 Alexander Graf <graf@amazon.com> 5 * Copyright (C) 2025 Microsoft Corporation, Mike Rapoport <rppt@kernel.org> 6 * Copyright (C) 2025 Google LLC, Changyuan Lyu <changyuanl@google.com> 7 * Copyright (C) 2025 Pasha Tatashin <pasha.tatashin@soleen.com> 8 */ 9 10 #define pr_fmt(fmt) "KHO: " fmt 11 12 #include <linux/cleanup.h> 13 #include <linux/cma.h> 14 #include <linux/kmemleak.h> 15 #include <linux/count_zeros.h> 16 #include <linux/kexec.h> 17 #include <linux/kexec_handover.h> 18 #include <linux/libfdt.h> 19 #include <linux/list.h> 20 #include <linux/memblock.h> 21 #include <linux/page-isolation.h> 22 #include <linux/unaligned.h> 23 #include <linux/vmalloc.h> 24 25 #include <asm/early_ioremap.h> 26 27 #include "kexec_handover_internal.h" 28 /* 29 * KHO is tightly coupled with mm init and needs access to some of mm 30 * internal APIs. 31 */ 32 #include "../../mm/internal.h" 33 #include "../kexec_internal.h" 34 #include "kexec_handover_internal.h" 35 36 #define KHO_FDT_COMPATIBLE "kho-v1" 37 #define PROP_PRESERVED_MEMORY_MAP "preserved-memory-map" 38 #define PROP_SUB_FDT "fdt" 39 40 #define KHO_PAGE_MAGIC 0x4b484f50U /* ASCII for 'KHOP' */ 41 42 /* 43 * KHO uses page->private, which is an unsigned long, to store page metadata. 44 * Use it to store both the magic and the order. 45 */ 46 union kho_page_info { 47 unsigned long page_private; 48 struct { 49 unsigned int order; 50 unsigned int magic; 51 }; 52 }; 53 54 static_assert(sizeof(union kho_page_info) == sizeof(((struct page *)0)->private)); 55 56 static bool kho_enable __ro_after_init = IS_ENABLED(CONFIG_KEXEC_HANDOVER_ENABLE_DEFAULT); 57 58 bool kho_is_enabled(void) 59 { 60 return kho_enable; 61 } 62 EXPORT_SYMBOL_GPL(kho_is_enabled); 63 64 static int __init kho_parse_enable(char *p) 65 { 66 return kstrtobool(p, &kho_enable); 67 } 68 early_param("kho", kho_parse_enable); 69 70 /* 71 * Keep track of memory that is to be preserved across KHO. 72 * 73 * The serializing side uses two levels of xarrays to manage chunks of per-order 74 * PAGE_SIZE byte bitmaps. For instance if PAGE_SIZE = 4096, the entire 1G order 75 * of a 8TB system would fit inside a single 4096 byte bitmap. For order 0 76 * allocations each bitmap will cover 128M of address space. Thus, for 16G of 77 * memory at most 512K of bitmap memory will be needed for order 0. 78 * 79 * This approach is fully incremental, as the serialization progresses folios 80 * can continue be aggregated to the tracker. The final step, immediately prior 81 * to kexec would serialize the xarray information into a linked list for the 82 * successor kernel to parse. 83 */ 84 85 #define PRESERVE_BITS (PAGE_SIZE * 8) 86 87 struct kho_mem_phys_bits { 88 DECLARE_BITMAP(preserve, PRESERVE_BITS); 89 }; 90 91 static_assert(sizeof(struct kho_mem_phys_bits) == PAGE_SIZE); 92 93 struct kho_mem_phys { 94 /* 95 * Points to kho_mem_phys_bits, a sparse bitmap array. Each bit is sized 96 * to order. 97 */ 98 struct xarray phys_bits; 99 }; 100 101 struct kho_mem_track { 102 /* Points to kho_mem_phys, each order gets its own bitmap tree */ 103 struct xarray orders; 104 }; 105 106 struct khoser_mem_chunk; 107 108 struct kho_out { 109 void *fdt; 110 bool finalized; 111 struct mutex lock; /* protects KHO FDT finalization */ 112 113 struct kho_mem_track track; 114 struct kho_debugfs dbg; 115 }; 116 117 static struct kho_out kho_out = { 118 .lock = __MUTEX_INITIALIZER(kho_out.lock), 119 .track = { 120 .orders = XARRAY_INIT(kho_out.track.orders, 0), 121 }, 122 .finalized = false, 123 }; 124 125 static void *xa_load_or_alloc(struct xarray *xa, unsigned long index) 126 { 127 void *res = xa_load(xa, index); 128 129 if (res) 130 return res; 131 132 void *elm __free(free_page) = (void *)get_zeroed_page(GFP_KERNEL); 133 134 if (!elm) 135 return ERR_PTR(-ENOMEM); 136 137 if (WARN_ON(kho_scratch_overlap(virt_to_phys(elm), PAGE_SIZE))) 138 return ERR_PTR(-EINVAL); 139 140 res = xa_cmpxchg(xa, index, NULL, elm, GFP_KERNEL); 141 if (xa_is_err(res)) 142 return ERR_PTR(xa_err(res)); 143 else if (res) 144 return res; 145 146 return no_free_ptr(elm); 147 } 148 149 static void __kho_unpreserve_order(struct kho_mem_track *track, unsigned long pfn, 150 unsigned int order) 151 { 152 struct kho_mem_phys_bits *bits; 153 struct kho_mem_phys *physxa; 154 const unsigned long pfn_high = pfn >> order; 155 156 physxa = xa_load(&track->orders, order); 157 if (WARN_ON_ONCE(!physxa)) 158 return; 159 160 bits = xa_load(&physxa->phys_bits, pfn_high / PRESERVE_BITS); 161 if (WARN_ON_ONCE(!bits)) 162 return; 163 164 clear_bit(pfn_high % PRESERVE_BITS, bits->preserve); 165 } 166 167 static void __kho_unpreserve(struct kho_mem_track *track, unsigned long pfn, 168 unsigned long end_pfn) 169 { 170 unsigned int order; 171 172 while (pfn < end_pfn) { 173 order = min(count_trailing_zeros(pfn), ilog2(end_pfn - pfn)); 174 175 __kho_unpreserve_order(track, pfn, order); 176 177 pfn += 1 << order; 178 } 179 } 180 181 static int __kho_preserve_order(struct kho_mem_track *track, unsigned long pfn, 182 unsigned int order) 183 { 184 struct kho_mem_phys_bits *bits; 185 struct kho_mem_phys *physxa, *new_physxa; 186 const unsigned long pfn_high = pfn >> order; 187 188 might_sleep(); 189 physxa = xa_load(&track->orders, order); 190 if (!physxa) { 191 int err; 192 193 new_physxa = kzalloc(sizeof(*physxa), GFP_KERNEL); 194 if (!new_physxa) 195 return -ENOMEM; 196 197 xa_init(&new_physxa->phys_bits); 198 physxa = xa_cmpxchg(&track->orders, order, NULL, new_physxa, 199 GFP_KERNEL); 200 201 err = xa_err(physxa); 202 if (err || physxa) { 203 xa_destroy(&new_physxa->phys_bits); 204 kfree(new_physxa); 205 206 if (err) 207 return err; 208 } else { 209 physxa = new_physxa; 210 } 211 } 212 213 bits = xa_load_or_alloc(&physxa->phys_bits, pfn_high / PRESERVE_BITS); 214 if (IS_ERR(bits)) 215 return PTR_ERR(bits); 216 217 set_bit(pfn_high % PRESERVE_BITS, bits->preserve); 218 219 return 0; 220 } 221 222 static struct page *kho_restore_page(phys_addr_t phys, bool is_folio) 223 { 224 struct page *page = pfn_to_online_page(PHYS_PFN(phys)); 225 unsigned int nr_pages, ref_cnt; 226 union kho_page_info info; 227 228 if (!page) 229 return NULL; 230 231 info.page_private = page->private; 232 /* 233 * deserialize_bitmap() only sets the magic on the head page. This magic 234 * check also implicitly makes sure phys is order-aligned since for 235 * non-order-aligned phys addresses, magic will never be set. 236 */ 237 if (WARN_ON_ONCE(info.magic != KHO_PAGE_MAGIC || info.order > MAX_PAGE_ORDER)) 238 return NULL; 239 nr_pages = (1 << info.order); 240 241 /* Clear private to make sure later restores on this page error out. */ 242 page->private = 0; 243 /* Head page gets refcount of 1. */ 244 set_page_count(page, 1); 245 246 /* 247 * For higher order folios, tail pages get a page count of zero. 248 * For physically contiguous order-0 pages every pages gets a page 249 * count of 1 250 */ 251 ref_cnt = is_folio ? 0 : 1; 252 for (unsigned int i = 1; i < nr_pages; i++) 253 set_page_count(page + i, ref_cnt); 254 255 if (is_folio && info.order) 256 prep_compound_page(page, info.order); 257 258 /* Always mark headpage's codetag as empty to avoid accounting mismatch */ 259 clear_page_tag_ref(page); 260 if (!is_folio) { 261 /* Also do that for the non-compound tail pages */ 262 for (unsigned int i = 1; i < nr_pages; i++) 263 clear_page_tag_ref(page + i); 264 } 265 266 adjust_managed_page_count(page, nr_pages); 267 return page; 268 } 269 270 /** 271 * kho_restore_folio - recreates the folio from the preserved memory. 272 * @phys: physical address of the folio. 273 * 274 * Return: pointer to the struct folio on success, NULL on failure. 275 */ 276 struct folio *kho_restore_folio(phys_addr_t phys) 277 { 278 struct page *page = kho_restore_page(phys, true); 279 280 return page ? page_folio(page) : NULL; 281 } 282 EXPORT_SYMBOL_GPL(kho_restore_folio); 283 284 /** 285 * kho_restore_pages - restore list of contiguous order 0 pages. 286 * @phys: physical address of the first page. 287 * @nr_pages: number of pages. 288 * 289 * Restore a contiguous list of order 0 pages that was preserved with 290 * kho_preserve_pages(). 291 * 292 * Return: 0 on success, error code on failure 293 */ 294 struct page *kho_restore_pages(phys_addr_t phys, unsigned int nr_pages) 295 { 296 const unsigned long start_pfn = PHYS_PFN(phys); 297 const unsigned long end_pfn = start_pfn + nr_pages; 298 unsigned long pfn = start_pfn; 299 300 while (pfn < end_pfn) { 301 const unsigned int order = 302 min(count_trailing_zeros(pfn), ilog2(end_pfn - pfn)); 303 struct page *page = kho_restore_page(PFN_PHYS(pfn), false); 304 305 if (!page) 306 return NULL; 307 pfn += 1 << order; 308 } 309 310 return pfn_to_page(start_pfn); 311 } 312 EXPORT_SYMBOL_GPL(kho_restore_pages); 313 314 /* Serialize and deserialize struct kho_mem_phys across kexec 315 * 316 * Record all the bitmaps in a linked list of pages for the next kernel to 317 * process. Each chunk holds bitmaps of the same order and each block of bitmaps 318 * starts at a given physical address. This allows the bitmaps to be sparse. The 319 * xarray is used to store them in a tree while building up the data structure, 320 * but the KHO successor kernel only needs to process them once in order. 321 * 322 * All of this memory is normal kmalloc() memory and is not marked for 323 * preservation. The successor kernel will remain isolated to the scratch space 324 * until it completes processing this list. Once processed all the memory 325 * storing these ranges will be marked as free. 326 */ 327 328 struct khoser_mem_bitmap_ptr { 329 phys_addr_t phys_start; 330 DECLARE_KHOSER_PTR(bitmap, struct kho_mem_phys_bits *); 331 }; 332 333 struct khoser_mem_chunk_hdr { 334 DECLARE_KHOSER_PTR(next, struct khoser_mem_chunk *); 335 unsigned int order; 336 unsigned int num_elms; 337 }; 338 339 #define KHOSER_BITMAP_SIZE \ 340 ((PAGE_SIZE - sizeof(struct khoser_mem_chunk_hdr)) / \ 341 sizeof(struct khoser_mem_bitmap_ptr)) 342 343 struct khoser_mem_chunk { 344 struct khoser_mem_chunk_hdr hdr; 345 struct khoser_mem_bitmap_ptr bitmaps[KHOSER_BITMAP_SIZE]; 346 }; 347 348 static_assert(sizeof(struct khoser_mem_chunk) == PAGE_SIZE); 349 350 static struct khoser_mem_chunk *new_chunk(struct khoser_mem_chunk *cur_chunk, 351 unsigned long order) 352 { 353 struct khoser_mem_chunk *chunk __free(free_page) = NULL; 354 355 chunk = (void *)get_zeroed_page(GFP_KERNEL); 356 if (!chunk) 357 return ERR_PTR(-ENOMEM); 358 359 if (WARN_ON(kho_scratch_overlap(virt_to_phys(chunk), PAGE_SIZE))) 360 return ERR_PTR(-EINVAL); 361 362 chunk->hdr.order = order; 363 if (cur_chunk) 364 KHOSER_STORE_PTR(cur_chunk->hdr.next, chunk); 365 return no_free_ptr(chunk); 366 } 367 368 static void kho_mem_ser_free(struct khoser_mem_chunk *first_chunk) 369 { 370 struct khoser_mem_chunk *chunk = first_chunk; 371 372 while (chunk) { 373 struct khoser_mem_chunk *tmp = chunk; 374 375 chunk = KHOSER_LOAD_PTR(chunk->hdr.next); 376 free_page((unsigned long)tmp); 377 } 378 } 379 380 /* 381 * Update memory map property, if old one is found discard it via 382 * kho_mem_ser_free(). 383 */ 384 static void kho_update_memory_map(struct khoser_mem_chunk *first_chunk) 385 { 386 void *ptr; 387 u64 phys; 388 389 ptr = fdt_getprop_w(kho_out.fdt, 0, PROP_PRESERVED_MEMORY_MAP, NULL); 390 391 /* Check and discard previous memory map */ 392 phys = get_unaligned((u64 *)ptr); 393 if (phys) 394 kho_mem_ser_free((struct khoser_mem_chunk *)phys_to_virt(phys)); 395 396 /* Update with the new value */ 397 phys = first_chunk ? (u64)virt_to_phys(first_chunk) : 0; 398 put_unaligned(phys, (u64 *)ptr); 399 } 400 401 static int kho_mem_serialize(struct kho_out *kho_out) 402 { 403 struct khoser_mem_chunk *first_chunk = NULL; 404 struct khoser_mem_chunk *chunk = NULL; 405 struct kho_mem_phys *physxa; 406 unsigned long order; 407 int err = -ENOMEM; 408 409 xa_for_each(&kho_out->track.orders, order, physxa) { 410 struct kho_mem_phys_bits *bits; 411 unsigned long phys; 412 413 chunk = new_chunk(chunk, order); 414 if (IS_ERR(chunk)) { 415 err = PTR_ERR(chunk); 416 goto err_free; 417 } 418 419 if (!first_chunk) 420 first_chunk = chunk; 421 422 xa_for_each(&physxa->phys_bits, phys, bits) { 423 struct khoser_mem_bitmap_ptr *elm; 424 425 if (chunk->hdr.num_elms == ARRAY_SIZE(chunk->bitmaps)) { 426 chunk = new_chunk(chunk, order); 427 if (IS_ERR(chunk)) { 428 err = PTR_ERR(chunk); 429 goto err_free; 430 } 431 } 432 433 elm = &chunk->bitmaps[chunk->hdr.num_elms]; 434 chunk->hdr.num_elms++; 435 elm->phys_start = (phys * PRESERVE_BITS) 436 << (order + PAGE_SHIFT); 437 KHOSER_STORE_PTR(elm->bitmap, bits); 438 } 439 } 440 441 kho_update_memory_map(first_chunk); 442 443 return 0; 444 445 err_free: 446 kho_mem_ser_free(first_chunk); 447 return err; 448 } 449 450 static void __init deserialize_bitmap(unsigned int order, 451 struct khoser_mem_bitmap_ptr *elm) 452 { 453 struct kho_mem_phys_bits *bitmap = KHOSER_LOAD_PTR(elm->bitmap); 454 unsigned long bit; 455 456 for_each_set_bit(bit, bitmap->preserve, PRESERVE_BITS) { 457 int sz = 1 << (order + PAGE_SHIFT); 458 phys_addr_t phys = 459 elm->phys_start + (bit << (order + PAGE_SHIFT)); 460 struct page *page = phys_to_page(phys); 461 union kho_page_info info; 462 463 memblock_reserve(phys, sz); 464 memblock_reserved_mark_noinit(phys, sz); 465 info.magic = KHO_PAGE_MAGIC; 466 info.order = order; 467 page->private = info.page_private; 468 } 469 } 470 471 /* Returns physical address of the preserved memory map from FDT */ 472 static phys_addr_t __init kho_get_mem_map_phys(const void *fdt) 473 { 474 const void *mem_ptr; 475 int len; 476 477 mem_ptr = fdt_getprop(fdt, 0, PROP_PRESERVED_MEMORY_MAP, &len); 478 if (!mem_ptr || len != sizeof(u64)) { 479 pr_err("failed to get preserved memory bitmaps\n"); 480 return 0; 481 } 482 483 return get_unaligned((const u64 *)mem_ptr); 484 } 485 486 static void __init kho_mem_deserialize(struct khoser_mem_chunk *chunk) 487 { 488 while (chunk) { 489 unsigned int i; 490 491 for (i = 0; i != chunk->hdr.num_elms; i++) 492 deserialize_bitmap(chunk->hdr.order, 493 &chunk->bitmaps[i]); 494 chunk = KHOSER_LOAD_PTR(chunk->hdr.next); 495 } 496 } 497 498 /* 499 * With KHO enabled, memory can become fragmented because KHO regions may 500 * be anywhere in physical address space. The scratch regions give us a 501 * safe zones that we will never see KHO allocations from. This is where we 502 * can later safely load our new kexec images into and then use the scratch 503 * area for early allocations that happen before page allocator is 504 * initialized. 505 */ 506 struct kho_scratch *kho_scratch; 507 unsigned int kho_scratch_cnt; 508 509 /* 510 * The scratch areas are scaled by default as percent of memory allocated from 511 * memblock. A user can override the scale with command line parameter: 512 * 513 * kho_scratch=N% 514 * 515 * It is also possible to explicitly define size for a lowmem, a global and 516 * per-node scratch areas: 517 * 518 * kho_scratch=l[KMG],n[KMG],m[KMG] 519 * 520 * The explicit size definition takes precedence over scale definition. 521 */ 522 static unsigned int scratch_scale __initdata = 200; 523 static phys_addr_t scratch_size_global __initdata; 524 static phys_addr_t scratch_size_pernode __initdata; 525 static phys_addr_t scratch_size_lowmem __initdata; 526 527 static int __init kho_parse_scratch_size(char *p) 528 { 529 size_t len; 530 unsigned long sizes[3]; 531 size_t total_size = 0; 532 int i; 533 534 if (!p) 535 return -EINVAL; 536 537 len = strlen(p); 538 if (!len) 539 return -EINVAL; 540 541 /* parse nn% */ 542 if (p[len - 1] == '%') { 543 /* unsigned int max is 4,294,967,295, 10 chars */ 544 char s_scale[11] = {}; 545 int ret = 0; 546 547 if (len > ARRAY_SIZE(s_scale)) 548 return -EINVAL; 549 550 memcpy(s_scale, p, len - 1); 551 ret = kstrtouint(s_scale, 10, &scratch_scale); 552 if (!ret) 553 pr_notice("scratch scale is %d%%\n", scratch_scale); 554 return ret; 555 } 556 557 /* parse ll[KMG],mm[KMG],nn[KMG] */ 558 for (i = 0; i < ARRAY_SIZE(sizes); i++) { 559 char *endp = p; 560 561 if (i > 0) { 562 if (*p != ',') 563 return -EINVAL; 564 p += 1; 565 } 566 567 sizes[i] = memparse(p, &endp); 568 if (endp == p) 569 return -EINVAL; 570 p = endp; 571 total_size += sizes[i]; 572 } 573 574 if (!total_size) 575 return -EINVAL; 576 577 /* The string should be fully consumed by now. */ 578 if (*p) 579 return -EINVAL; 580 581 scratch_size_lowmem = sizes[0]; 582 scratch_size_global = sizes[1]; 583 scratch_size_pernode = sizes[2]; 584 scratch_scale = 0; 585 586 pr_notice("scratch areas: lowmem: %lluMiB global: %lluMiB pernode: %lldMiB\n", 587 (u64)(scratch_size_lowmem >> 20), 588 (u64)(scratch_size_global >> 20), 589 (u64)(scratch_size_pernode >> 20)); 590 591 return 0; 592 } 593 early_param("kho_scratch", kho_parse_scratch_size); 594 595 static void __init scratch_size_update(void) 596 { 597 phys_addr_t size; 598 599 if (!scratch_scale) 600 return; 601 602 size = memblock_reserved_kern_size(ARCH_LOW_ADDRESS_LIMIT, 603 NUMA_NO_NODE); 604 size = size * scratch_scale / 100; 605 scratch_size_lowmem = round_up(size, CMA_MIN_ALIGNMENT_BYTES); 606 607 size = memblock_reserved_kern_size(MEMBLOCK_ALLOC_ANYWHERE, 608 NUMA_NO_NODE); 609 size = size * scratch_scale / 100 - scratch_size_lowmem; 610 scratch_size_global = round_up(size, CMA_MIN_ALIGNMENT_BYTES); 611 } 612 613 static phys_addr_t __init scratch_size_node(int nid) 614 { 615 phys_addr_t size; 616 617 if (scratch_scale) { 618 size = memblock_reserved_kern_size(MEMBLOCK_ALLOC_ANYWHERE, 619 nid); 620 size = size * scratch_scale / 100; 621 } else { 622 size = scratch_size_pernode; 623 } 624 625 return round_up(size, CMA_MIN_ALIGNMENT_BYTES); 626 } 627 628 /** 629 * kho_reserve_scratch - Reserve a contiguous chunk of memory for kexec 630 * 631 * With KHO we can preserve arbitrary pages in the system. To ensure we still 632 * have a large contiguous region of memory when we search the physical address 633 * space for target memory, let's make sure we always have a large CMA region 634 * active. This CMA region will only be used for movable pages which are not a 635 * problem for us during KHO because we can just move them somewhere else. 636 */ 637 static void __init kho_reserve_scratch(void) 638 { 639 phys_addr_t addr, size; 640 int nid, i = 0; 641 642 if (!kho_enable) 643 return; 644 645 scratch_size_update(); 646 647 /* FIXME: deal with node hot-plug/remove */ 648 kho_scratch_cnt = num_online_nodes() + 2; 649 size = kho_scratch_cnt * sizeof(*kho_scratch); 650 kho_scratch = memblock_alloc(size, PAGE_SIZE); 651 if (!kho_scratch) 652 goto err_disable_kho; 653 654 /* 655 * reserve scratch area in low memory for lowmem allocations in the 656 * next kernel 657 */ 658 size = scratch_size_lowmem; 659 addr = memblock_phys_alloc_range(size, CMA_MIN_ALIGNMENT_BYTES, 0, 660 ARCH_LOW_ADDRESS_LIMIT); 661 if (!addr) 662 goto err_free_scratch_desc; 663 664 kho_scratch[i].addr = addr; 665 kho_scratch[i].size = size; 666 i++; 667 668 /* reserve large contiguous area for allocations without nid */ 669 size = scratch_size_global; 670 addr = memblock_phys_alloc(size, CMA_MIN_ALIGNMENT_BYTES); 671 if (!addr) 672 goto err_free_scratch_areas; 673 674 kho_scratch[i].addr = addr; 675 kho_scratch[i].size = size; 676 i++; 677 678 for_each_online_node(nid) { 679 size = scratch_size_node(nid); 680 addr = memblock_alloc_range_nid(size, CMA_MIN_ALIGNMENT_BYTES, 681 0, MEMBLOCK_ALLOC_ACCESSIBLE, 682 nid, true); 683 if (!addr) 684 goto err_free_scratch_areas; 685 686 kho_scratch[i].addr = addr; 687 kho_scratch[i].size = size; 688 i++; 689 } 690 691 return; 692 693 err_free_scratch_areas: 694 for (i--; i >= 0; i--) 695 memblock_phys_free(kho_scratch[i].addr, kho_scratch[i].size); 696 err_free_scratch_desc: 697 memblock_free(kho_scratch, kho_scratch_cnt * sizeof(*kho_scratch)); 698 err_disable_kho: 699 pr_warn("Failed to reserve scratch area, disabling kexec handover\n"); 700 kho_enable = false; 701 } 702 703 /** 704 * kho_add_subtree - record the physical address of a sub FDT in KHO root tree. 705 * @name: name of the sub tree. 706 * @fdt: the sub tree blob. 707 * 708 * Creates a new child node named @name in KHO root FDT and records 709 * the physical address of @fdt. The pages of @fdt must also be preserved 710 * by KHO for the new kernel to retrieve it after kexec. 711 * 712 * A debugfs blob entry is also created at 713 * ``/sys/kernel/debug/kho/out/sub_fdts/@name`` when kernel is configured with 714 * CONFIG_KEXEC_HANDOVER_DEBUGFS 715 * 716 * Return: 0 on success, error code on failure 717 */ 718 int kho_add_subtree(const char *name, void *fdt) 719 { 720 phys_addr_t phys = virt_to_phys(fdt); 721 void *root_fdt = kho_out.fdt; 722 int err = -ENOMEM; 723 int off, fdt_err; 724 725 guard(mutex)(&kho_out.lock); 726 727 fdt_err = fdt_open_into(root_fdt, root_fdt, PAGE_SIZE); 728 if (fdt_err < 0) 729 return err; 730 731 off = fdt_add_subnode(root_fdt, 0, name); 732 if (off < 0) { 733 if (off == -FDT_ERR_EXISTS) 734 err = -EEXIST; 735 goto out_pack; 736 } 737 738 err = fdt_setprop(root_fdt, off, PROP_SUB_FDT, &phys, sizeof(phys)); 739 if (err < 0) 740 goto out_pack; 741 742 WARN_ON_ONCE(kho_debugfs_fdt_add(&kho_out.dbg, name, fdt, false)); 743 744 out_pack: 745 fdt_pack(root_fdt); 746 747 return err; 748 } 749 EXPORT_SYMBOL_GPL(kho_add_subtree); 750 751 void kho_remove_subtree(void *fdt) 752 { 753 phys_addr_t target_phys = virt_to_phys(fdt); 754 void *root_fdt = kho_out.fdt; 755 int off; 756 int err; 757 758 guard(mutex)(&kho_out.lock); 759 760 err = fdt_open_into(root_fdt, root_fdt, PAGE_SIZE); 761 if (err < 0) 762 return; 763 764 for (off = fdt_first_subnode(root_fdt, 0); off >= 0; 765 off = fdt_next_subnode(root_fdt, off)) { 766 const u64 *val; 767 int len; 768 769 val = fdt_getprop(root_fdt, off, PROP_SUB_FDT, &len); 770 if (!val || len != sizeof(phys_addr_t)) 771 continue; 772 773 if ((phys_addr_t)*val == target_phys) { 774 fdt_del_node(root_fdt, off); 775 kho_debugfs_fdt_remove(&kho_out.dbg, fdt); 776 break; 777 } 778 } 779 780 fdt_pack(root_fdt); 781 } 782 EXPORT_SYMBOL_GPL(kho_remove_subtree); 783 784 /** 785 * kho_preserve_folio - preserve a folio across kexec. 786 * @folio: folio to preserve. 787 * 788 * Instructs KHO to preserve the whole folio across kexec. The order 789 * will be preserved as well. 790 * 791 * Return: 0 on success, error code on failure 792 */ 793 int kho_preserve_folio(struct folio *folio) 794 { 795 const unsigned long pfn = folio_pfn(folio); 796 const unsigned int order = folio_order(folio); 797 struct kho_mem_track *track = &kho_out.track; 798 799 if (WARN_ON(kho_scratch_overlap(pfn << PAGE_SHIFT, PAGE_SIZE << order))) 800 return -EINVAL; 801 802 return __kho_preserve_order(track, pfn, order); 803 } 804 EXPORT_SYMBOL_GPL(kho_preserve_folio); 805 806 /** 807 * kho_unpreserve_folio - unpreserve a folio. 808 * @folio: folio to unpreserve. 809 * 810 * Instructs KHO to unpreserve a folio that was preserved by 811 * kho_preserve_folio() before. The provided @folio (pfn and order) 812 * must exactly match a previously preserved folio. 813 */ 814 void kho_unpreserve_folio(struct folio *folio) 815 { 816 const unsigned long pfn = folio_pfn(folio); 817 const unsigned int order = folio_order(folio); 818 struct kho_mem_track *track = &kho_out.track; 819 820 __kho_unpreserve_order(track, pfn, order); 821 } 822 EXPORT_SYMBOL_GPL(kho_unpreserve_folio); 823 824 /** 825 * kho_preserve_pages - preserve contiguous pages across kexec 826 * @page: first page in the list. 827 * @nr_pages: number of pages. 828 * 829 * Preserve a contiguous list of order 0 pages. Must be restored using 830 * kho_restore_pages() to ensure the pages are restored properly as order 0. 831 * 832 * Return: 0 on success, error code on failure 833 */ 834 int kho_preserve_pages(struct page *page, unsigned int nr_pages) 835 { 836 struct kho_mem_track *track = &kho_out.track; 837 const unsigned long start_pfn = page_to_pfn(page); 838 const unsigned long end_pfn = start_pfn + nr_pages; 839 unsigned long pfn = start_pfn; 840 unsigned long failed_pfn = 0; 841 int err = 0; 842 843 if (WARN_ON(kho_scratch_overlap(start_pfn << PAGE_SHIFT, 844 nr_pages << PAGE_SHIFT))) { 845 return -EINVAL; 846 } 847 848 while (pfn < end_pfn) { 849 const unsigned int order = 850 min(count_trailing_zeros(pfn), ilog2(end_pfn - pfn)); 851 852 err = __kho_preserve_order(track, pfn, order); 853 if (err) { 854 failed_pfn = pfn; 855 break; 856 } 857 858 pfn += 1 << order; 859 } 860 861 if (err) 862 __kho_unpreserve(track, start_pfn, failed_pfn); 863 864 return err; 865 } 866 EXPORT_SYMBOL_GPL(kho_preserve_pages); 867 868 /** 869 * kho_unpreserve_pages - unpreserve contiguous pages. 870 * @page: first page in the list. 871 * @nr_pages: number of pages. 872 * 873 * Instructs KHO to unpreserve @nr_pages contiguous pages starting from @page. 874 * This must be called with the same @page and @nr_pages as the corresponding 875 * kho_preserve_pages() call. Unpreserving arbitrary sub-ranges of larger 876 * preserved blocks is not supported. 877 */ 878 void kho_unpreserve_pages(struct page *page, unsigned int nr_pages) 879 { 880 struct kho_mem_track *track = &kho_out.track; 881 const unsigned long start_pfn = page_to_pfn(page); 882 const unsigned long end_pfn = start_pfn + nr_pages; 883 884 __kho_unpreserve(track, start_pfn, end_pfn); 885 } 886 EXPORT_SYMBOL_GPL(kho_unpreserve_pages); 887 888 struct kho_vmalloc_hdr { 889 DECLARE_KHOSER_PTR(next, struct kho_vmalloc_chunk *); 890 }; 891 892 #define KHO_VMALLOC_SIZE \ 893 ((PAGE_SIZE - sizeof(struct kho_vmalloc_hdr)) / \ 894 sizeof(phys_addr_t)) 895 896 struct kho_vmalloc_chunk { 897 struct kho_vmalloc_hdr hdr; 898 phys_addr_t phys[KHO_VMALLOC_SIZE]; 899 }; 900 901 static_assert(sizeof(struct kho_vmalloc_chunk) == PAGE_SIZE); 902 903 /* vmalloc flags KHO supports */ 904 #define KHO_VMALLOC_SUPPORTED_FLAGS (VM_ALLOC | VM_ALLOW_HUGE_VMAP) 905 906 /* KHO internal flags for vmalloc preservations */ 907 #define KHO_VMALLOC_ALLOC 0x0001 908 #define KHO_VMALLOC_HUGE_VMAP 0x0002 909 910 static unsigned short vmalloc_flags_to_kho(unsigned int vm_flags) 911 { 912 unsigned short kho_flags = 0; 913 914 if (vm_flags & VM_ALLOC) 915 kho_flags |= KHO_VMALLOC_ALLOC; 916 if (vm_flags & VM_ALLOW_HUGE_VMAP) 917 kho_flags |= KHO_VMALLOC_HUGE_VMAP; 918 919 return kho_flags; 920 } 921 922 static unsigned int kho_flags_to_vmalloc(unsigned short kho_flags) 923 { 924 unsigned int vm_flags = 0; 925 926 if (kho_flags & KHO_VMALLOC_ALLOC) 927 vm_flags |= VM_ALLOC; 928 if (kho_flags & KHO_VMALLOC_HUGE_VMAP) 929 vm_flags |= VM_ALLOW_HUGE_VMAP; 930 931 return vm_flags; 932 } 933 934 static struct kho_vmalloc_chunk *new_vmalloc_chunk(struct kho_vmalloc_chunk *cur) 935 { 936 struct kho_vmalloc_chunk *chunk; 937 int err; 938 939 chunk = (struct kho_vmalloc_chunk *)get_zeroed_page(GFP_KERNEL); 940 if (!chunk) 941 return NULL; 942 943 err = kho_preserve_pages(virt_to_page(chunk), 1); 944 if (err) 945 goto err_free; 946 if (cur) 947 KHOSER_STORE_PTR(cur->hdr.next, chunk); 948 return chunk; 949 950 err_free: 951 free_page((unsigned long)chunk); 952 return NULL; 953 } 954 955 static void kho_vmalloc_unpreserve_chunk(struct kho_vmalloc_chunk *chunk, 956 unsigned short order) 957 { 958 struct kho_mem_track *track = &kho_out.track; 959 unsigned long pfn = PHYS_PFN(virt_to_phys(chunk)); 960 961 __kho_unpreserve(track, pfn, pfn + 1); 962 963 for (int i = 0; i < ARRAY_SIZE(chunk->phys) && chunk->phys[i]; i++) { 964 pfn = PHYS_PFN(chunk->phys[i]); 965 __kho_unpreserve(track, pfn, pfn + (1 << order)); 966 } 967 } 968 969 /** 970 * kho_preserve_vmalloc - preserve memory allocated with vmalloc() across kexec 971 * @ptr: pointer to the area in vmalloc address space 972 * @preservation: placeholder for preservation metadata 973 * 974 * Instructs KHO to preserve the area in vmalloc address space at @ptr. The 975 * physical pages mapped at @ptr will be preserved and on successful return 976 * @preservation will hold the physical address of a structure that describes 977 * the preservation. 978 * 979 * NOTE: The memory allocated with vmalloc_node() variants cannot be reliably 980 * restored on the same node 981 * 982 * Return: 0 on success, error code on failure 983 */ 984 int kho_preserve_vmalloc(void *ptr, struct kho_vmalloc *preservation) 985 { 986 struct kho_vmalloc_chunk *chunk; 987 struct vm_struct *vm = find_vm_area(ptr); 988 unsigned int order, flags, nr_contig_pages; 989 unsigned int idx = 0; 990 int err; 991 992 if (!vm) 993 return -EINVAL; 994 995 if (vm->flags & ~KHO_VMALLOC_SUPPORTED_FLAGS) 996 return -EOPNOTSUPP; 997 998 flags = vmalloc_flags_to_kho(vm->flags); 999 order = get_vm_area_page_order(vm); 1000 1001 chunk = new_vmalloc_chunk(NULL); 1002 if (!chunk) 1003 return -ENOMEM; 1004 KHOSER_STORE_PTR(preservation->first, chunk); 1005 1006 nr_contig_pages = (1 << order); 1007 for (int i = 0; i < vm->nr_pages; i += nr_contig_pages) { 1008 phys_addr_t phys = page_to_phys(vm->pages[i]); 1009 1010 err = kho_preserve_pages(vm->pages[i], nr_contig_pages); 1011 if (err) 1012 goto err_free; 1013 1014 chunk->phys[idx++] = phys; 1015 if (idx == ARRAY_SIZE(chunk->phys)) { 1016 chunk = new_vmalloc_chunk(chunk); 1017 if (!chunk) 1018 goto err_free; 1019 idx = 0; 1020 } 1021 } 1022 1023 preservation->total_pages = vm->nr_pages; 1024 preservation->flags = flags; 1025 preservation->order = order; 1026 1027 return 0; 1028 1029 err_free: 1030 kho_unpreserve_vmalloc(preservation); 1031 return err; 1032 } 1033 EXPORT_SYMBOL_GPL(kho_preserve_vmalloc); 1034 1035 /** 1036 * kho_unpreserve_vmalloc - unpreserve memory allocated with vmalloc() 1037 * @preservation: preservation metadata returned by kho_preserve_vmalloc() 1038 * 1039 * Instructs KHO to unpreserve the area in vmalloc address space that was 1040 * previously preserved with kho_preserve_vmalloc(). 1041 */ 1042 void kho_unpreserve_vmalloc(struct kho_vmalloc *preservation) 1043 { 1044 struct kho_vmalloc_chunk *chunk = KHOSER_LOAD_PTR(preservation->first); 1045 1046 while (chunk) { 1047 struct kho_vmalloc_chunk *tmp = chunk; 1048 1049 kho_vmalloc_unpreserve_chunk(chunk, preservation->order); 1050 1051 chunk = KHOSER_LOAD_PTR(chunk->hdr.next); 1052 free_page((unsigned long)tmp); 1053 } 1054 } 1055 EXPORT_SYMBOL_GPL(kho_unpreserve_vmalloc); 1056 1057 /** 1058 * kho_restore_vmalloc - recreates and populates an area in vmalloc address 1059 * space from the preserved memory. 1060 * @preservation: preservation metadata. 1061 * 1062 * Recreates an area in vmalloc address space and populates it with memory that 1063 * was preserved using kho_preserve_vmalloc(). 1064 * 1065 * Return: pointer to the area in the vmalloc address space, NULL on failure. 1066 */ 1067 void *kho_restore_vmalloc(const struct kho_vmalloc *preservation) 1068 { 1069 struct kho_vmalloc_chunk *chunk = KHOSER_LOAD_PTR(preservation->first); 1070 unsigned int align, order, shift, vm_flags; 1071 unsigned long total_pages, contig_pages; 1072 unsigned long addr, size; 1073 struct vm_struct *area; 1074 struct page **pages; 1075 unsigned int idx = 0; 1076 int err; 1077 1078 vm_flags = kho_flags_to_vmalloc(preservation->flags); 1079 if (vm_flags & ~KHO_VMALLOC_SUPPORTED_FLAGS) 1080 return NULL; 1081 1082 total_pages = preservation->total_pages; 1083 pages = kvmalloc_array(total_pages, sizeof(*pages), GFP_KERNEL); 1084 if (!pages) 1085 return NULL; 1086 order = preservation->order; 1087 contig_pages = (1 << order); 1088 shift = PAGE_SHIFT + order; 1089 align = 1 << shift; 1090 1091 while (chunk) { 1092 struct page *page; 1093 1094 for (int i = 0; i < ARRAY_SIZE(chunk->phys) && chunk->phys[i]; i++) { 1095 phys_addr_t phys = chunk->phys[i]; 1096 1097 if (idx + contig_pages > total_pages) 1098 goto err_free_pages_array; 1099 1100 page = kho_restore_pages(phys, contig_pages); 1101 if (!page) 1102 goto err_free_pages_array; 1103 1104 for (int j = 0; j < contig_pages; j++) 1105 pages[idx++] = page + j; 1106 1107 phys += contig_pages * PAGE_SIZE; 1108 } 1109 1110 page = kho_restore_pages(virt_to_phys(chunk), 1); 1111 if (!page) 1112 goto err_free_pages_array; 1113 chunk = KHOSER_LOAD_PTR(chunk->hdr.next); 1114 __free_page(page); 1115 } 1116 1117 if (idx != total_pages) 1118 goto err_free_pages_array; 1119 1120 area = __get_vm_area_node(total_pages * PAGE_SIZE, align, shift, 1121 vm_flags, VMALLOC_START, VMALLOC_END, 1122 NUMA_NO_NODE, GFP_KERNEL, 1123 __builtin_return_address(0)); 1124 if (!area) 1125 goto err_free_pages_array; 1126 1127 addr = (unsigned long)area->addr; 1128 size = get_vm_area_size(area); 1129 err = vmap_pages_range(addr, addr + size, PAGE_KERNEL, pages, shift); 1130 if (err) 1131 goto err_free_vm_area; 1132 1133 area->nr_pages = total_pages; 1134 area->pages = pages; 1135 1136 return area->addr; 1137 1138 err_free_vm_area: 1139 free_vm_area(area); 1140 err_free_pages_array: 1141 kvfree(pages); 1142 return NULL; 1143 } 1144 EXPORT_SYMBOL_GPL(kho_restore_vmalloc); 1145 1146 /** 1147 * kho_alloc_preserve - Allocate, zero, and preserve memory. 1148 * @size: The number of bytes to allocate. 1149 * 1150 * Allocates a physically contiguous block of zeroed pages that is large 1151 * enough to hold @size bytes. The allocated memory is then registered with 1152 * KHO for preservation across a kexec. 1153 * 1154 * Note: The actual allocated size will be rounded up to the nearest 1155 * power-of-two page boundary. 1156 * 1157 * @return A virtual pointer to the allocated and preserved memory on success, 1158 * or an ERR_PTR() encoded error on failure. 1159 */ 1160 void *kho_alloc_preserve(size_t size) 1161 { 1162 struct folio *folio; 1163 int order, ret; 1164 1165 if (!size) 1166 return ERR_PTR(-EINVAL); 1167 1168 order = get_order(size); 1169 if (order > MAX_PAGE_ORDER) 1170 return ERR_PTR(-E2BIG); 1171 1172 folio = folio_alloc(GFP_KERNEL | __GFP_ZERO, order); 1173 if (!folio) 1174 return ERR_PTR(-ENOMEM); 1175 1176 ret = kho_preserve_folio(folio); 1177 if (ret) { 1178 folio_put(folio); 1179 return ERR_PTR(ret); 1180 } 1181 1182 return folio_address(folio); 1183 } 1184 EXPORT_SYMBOL_GPL(kho_alloc_preserve); 1185 1186 /** 1187 * kho_unpreserve_free - Unpreserve and free memory. 1188 * @mem: Pointer to the memory allocated by kho_alloc_preserve(). 1189 * 1190 * Unregisters the memory from KHO preservation and frees the underlying 1191 * pages back to the system. This function should be called to clean up 1192 * memory allocated with kho_alloc_preserve(). 1193 */ 1194 void kho_unpreserve_free(void *mem) 1195 { 1196 struct folio *folio; 1197 1198 if (!mem) 1199 return; 1200 1201 folio = virt_to_folio(mem); 1202 kho_unpreserve_folio(folio); 1203 folio_put(folio); 1204 } 1205 EXPORT_SYMBOL_GPL(kho_unpreserve_free); 1206 1207 /** 1208 * kho_restore_free - Restore and free memory after kexec. 1209 * @mem: Pointer to the memory (in the new kernel's address space) 1210 * that was allocated by the old kernel. 1211 * 1212 * This function is intended to be called in the new kernel (post-kexec) 1213 * to take ownership of and free a memory region that was preserved by the 1214 * old kernel using kho_alloc_preserve(). 1215 * 1216 * It first restores the pages from KHO (using their physical address) 1217 * and then frees the pages back to the new kernel's page allocator. 1218 */ 1219 void kho_restore_free(void *mem) 1220 { 1221 struct folio *folio; 1222 1223 if (!mem) 1224 return; 1225 1226 folio = kho_restore_folio(__pa(mem)); 1227 if (!WARN_ON(!folio)) 1228 folio_put(folio); 1229 } 1230 EXPORT_SYMBOL_GPL(kho_restore_free); 1231 1232 int kho_finalize(void) 1233 { 1234 int ret; 1235 1236 if (!kho_enable) 1237 return -EOPNOTSUPP; 1238 1239 guard(mutex)(&kho_out.lock); 1240 ret = kho_mem_serialize(&kho_out); 1241 if (ret) 1242 return ret; 1243 1244 kho_out.finalized = true; 1245 1246 return 0; 1247 } 1248 1249 bool kho_finalized(void) 1250 { 1251 guard(mutex)(&kho_out.lock); 1252 return kho_out.finalized; 1253 } 1254 1255 struct kho_in { 1256 phys_addr_t fdt_phys; 1257 phys_addr_t scratch_phys; 1258 phys_addr_t mem_map_phys; 1259 struct kho_debugfs dbg; 1260 }; 1261 1262 static struct kho_in kho_in = { 1263 }; 1264 1265 static const void *kho_get_fdt(void) 1266 { 1267 return kho_in.fdt_phys ? phys_to_virt(kho_in.fdt_phys) : NULL; 1268 } 1269 1270 /** 1271 * is_kho_boot - check if current kernel was booted via KHO-enabled 1272 * kexec 1273 * 1274 * This function checks if the current kernel was loaded through a kexec 1275 * operation with KHO enabled, by verifying that a valid KHO FDT 1276 * was passed. 1277 * 1278 * Note: This function returns reliable results only after 1279 * kho_populate() has been called during early boot. Before that, 1280 * it may return false even if KHO data is present. 1281 * 1282 * Return: true if booted via KHO-enabled kexec, false otherwise 1283 */ 1284 bool is_kho_boot(void) 1285 { 1286 return !!kho_get_fdt(); 1287 } 1288 EXPORT_SYMBOL_GPL(is_kho_boot); 1289 1290 /** 1291 * kho_retrieve_subtree - retrieve a preserved sub FDT by its name. 1292 * @name: the name of the sub FDT passed to kho_add_subtree(). 1293 * @phys: if found, the physical address of the sub FDT is stored in @phys. 1294 * 1295 * Retrieve a preserved sub FDT named @name and store its physical 1296 * address in @phys. 1297 * 1298 * Return: 0 on success, error code on failure 1299 */ 1300 int kho_retrieve_subtree(const char *name, phys_addr_t *phys) 1301 { 1302 const void *fdt = kho_get_fdt(); 1303 const u64 *val; 1304 int offset, len; 1305 1306 if (!fdt) 1307 return -ENOENT; 1308 1309 if (!phys) 1310 return -EINVAL; 1311 1312 offset = fdt_subnode_offset(fdt, 0, name); 1313 if (offset < 0) 1314 return -ENOENT; 1315 1316 val = fdt_getprop(fdt, offset, PROP_SUB_FDT, &len); 1317 if (!val || len != sizeof(*val)) 1318 return -EINVAL; 1319 1320 *phys = (phys_addr_t)*val; 1321 1322 return 0; 1323 } 1324 EXPORT_SYMBOL_GPL(kho_retrieve_subtree); 1325 1326 static __init int kho_out_fdt_setup(void) 1327 { 1328 void *root = kho_out.fdt; 1329 u64 empty_mem_map = 0; 1330 int err; 1331 1332 err = fdt_create(root, PAGE_SIZE); 1333 err |= fdt_finish_reservemap(root); 1334 err |= fdt_begin_node(root, ""); 1335 err |= fdt_property_string(root, "compatible", KHO_FDT_COMPATIBLE); 1336 err |= fdt_property(root, PROP_PRESERVED_MEMORY_MAP, &empty_mem_map, 1337 sizeof(empty_mem_map)); 1338 err |= fdt_end_node(root); 1339 err |= fdt_finish(root); 1340 1341 return err; 1342 } 1343 1344 static __init int kho_init(void) 1345 { 1346 const void *fdt = kho_get_fdt(); 1347 int err = 0; 1348 1349 if (!kho_enable) 1350 return 0; 1351 1352 kho_out.fdt = kho_alloc_preserve(PAGE_SIZE); 1353 if (IS_ERR(kho_out.fdt)) { 1354 err = PTR_ERR(kho_out.fdt); 1355 goto err_free_scratch; 1356 } 1357 1358 err = kho_debugfs_init(); 1359 if (err) 1360 goto err_free_fdt; 1361 1362 err = kho_out_debugfs_init(&kho_out.dbg); 1363 if (err) 1364 goto err_free_fdt; 1365 1366 err = kho_out_fdt_setup(); 1367 if (err) 1368 goto err_free_fdt; 1369 1370 if (fdt) { 1371 kho_in_debugfs_init(&kho_in.dbg, fdt); 1372 return 0; 1373 } 1374 1375 for (int i = 0; i < kho_scratch_cnt; i++) { 1376 unsigned long base_pfn = PHYS_PFN(kho_scratch[i].addr); 1377 unsigned long count = kho_scratch[i].size >> PAGE_SHIFT; 1378 unsigned long pfn; 1379 1380 /* 1381 * When debug_pagealloc is enabled, __free_pages() clears the 1382 * corresponding PRESENT bit in the kernel page table. 1383 * Subsequent kmemleak scans of these pages cause the 1384 * non-PRESENT page faults. 1385 * Mark scratch areas with kmemleak_ignore_phys() to exclude 1386 * them from kmemleak scanning. 1387 */ 1388 kmemleak_ignore_phys(kho_scratch[i].addr); 1389 for (pfn = base_pfn; pfn < base_pfn + count; 1390 pfn += pageblock_nr_pages) 1391 init_cma_reserved_pageblock(pfn_to_page(pfn)); 1392 } 1393 1394 WARN_ON_ONCE(kho_debugfs_fdt_add(&kho_out.dbg, "fdt", 1395 kho_out.fdt, true)); 1396 1397 return 0; 1398 1399 err_free_fdt: 1400 kho_unpreserve_free(kho_out.fdt); 1401 err_free_scratch: 1402 kho_out.fdt = NULL; 1403 for (int i = 0; i < kho_scratch_cnt; i++) { 1404 void *start = __va(kho_scratch[i].addr); 1405 void *end = start + kho_scratch[i].size; 1406 1407 free_reserved_area(start, end, -1, ""); 1408 } 1409 kho_enable = false; 1410 return err; 1411 } 1412 fs_initcall(kho_init); 1413 1414 static void __init kho_release_scratch(void) 1415 { 1416 phys_addr_t start, end; 1417 u64 i; 1418 1419 memmap_init_kho_scratch_pages(); 1420 1421 /* 1422 * Mark scratch mem as CMA before we return it. That way we 1423 * ensure that no kernel allocations happen on it. That means 1424 * we can reuse it as scratch memory again later. 1425 */ 1426 __for_each_mem_range(i, &memblock.memory, NULL, NUMA_NO_NODE, 1427 MEMBLOCK_KHO_SCRATCH, &start, &end, NULL) { 1428 ulong start_pfn = pageblock_start_pfn(PFN_DOWN(start)); 1429 ulong end_pfn = pageblock_align(PFN_UP(end)); 1430 ulong pfn; 1431 1432 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) 1433 init_pageblock_migratetype(pfn_to_page(pfn), 1434 MIGRATE_CMA, false); 1435 } 1436 } 1437 1438 void __init kho_memory_init(void) 1439 { 1440 if (kho_in.mem_map_phys) { 1441 kho_scratch = phys_to_virt(kho_in.scratch_phys); 1442 kho_release_scratch(); 1443 kho_mem_deserialize(phys_to_virt(kho_in.mem_map_phys)); 1444 } else { 1445 kho_reserve_scratch(); 1446 } 1447 } 1448 1449 void __init kho_populate(phys_addr_t fdt_phys, u64 fdt_len, 1450 phys_addr_t scratch_phys, u64 scratch_len) 1451 { 1452 struct kho_scratch *scratch = NULL; 1453 phys_addr_t mem_map_phys; 1454 void *fdt = NULL; 1455 int err = 0; 1456 unsigned int scratch_cnt = scratch_len / sizeof(*kho_scratch); 1457 1458 /* Validate the input FDT */ 1459 fdt = early_memremap(fdt_phys, fdt_len); 1460 if (!fdt) { 1461 pr_warn("setup: failed to memremap FDT (0x%llx)\n", fdt_phys); 1462 err = -EFAULT; 1463 goto out; 1464 } 1465 err = fdt_check_header(fdt); 1466 if (err) { 1467 pr_warn("setup: handover FDT (0x%llx) is invalid: %d\n", 1468 fdt_phys, err); 1469 err = -EINVAL; 1470 goto out; 1471 } 1472 err = fdt_node_check_compatible(fdt, 0, KHO_FDT_COMPATIBLE); 1473 if (err) { 1474 pr_warn("setup: handover FDT (0x%llx) is incompatible with '%s': %d\n", 1475 fdt_phys, KHO_FDT_COMPATIBLE, err); 1476 err = -EINVAL; 1477 goto out; 1478 } 1479 1480 mem_map_phys = kho_get_mem_map_phys(fdt); 1481 if (!mem_map_phys) { 1482 err = -ENOENT; 1483 goto out; 1484 } 1485 1486 scratch = early_memremap(scratch_phys, scratch_len); 1487 if (!scratch) { 1488 pr_warn("setup: failed to memremap scratch (phys=0x%llx, len=%lld)\n", 1489 scratch_phys, scratch_len); 1490 err = -EFAULT; 1491 goto out; 1492 } 1493 1494 /* 1495 * We pass a safe contiguous blocks of memory to use for early boot 1496 * purporses from the previous kernel so that we can resize the 1497 * memblock array as needed. 1498 */ 1499 for (int i = 0; i < scratch_cnt; i++) { 1500 struct kho_scratch *area = &scratch[i]; 1501 u64 size = area->size; 1502 1503 memblock_add(area->addr, size); 1504 err = memblock_mark_kho_scratch(area->addr, size); 1505 if (WARN_ON(err)) { 1506 pr_warn("failed to mark the scratch region 0x%pa+0x%pa: %pe", 1507 &area->addr, &size, ERR_PTR(err)); 1508 goto out; 1509 } 1510 pr_debug("Marked 0x%pa+0x%pa as scratch", &area->addr, &size); 1511 } 1512 1513 memblock_reserve(scratch_phys, scratch_len); 1514 1515 /* 1516 * Now that we have a viable region of scratch memory, let's tell 1517 * the memblocks allocator to only use that for any allocations. 1518 * That way we ensure that nothing scribbles over in use data while 1519 * we initialize the page tables which we will need to ingest all 1520 * memory reservations from the previous kernel. 1521 */ 1522 memblock_set_kho_scratch_only(); 1523 1524 kho_in.fdt_phys = fdt_phys; 1525 kho_in.scratch_phys = scratch_phys; 1526 kho_in.mem_map_phys = mem_map_phys; 1527 kho_scratch_cnt = scratch_cnt; 1528 pr_info("found kexec handover data.\n"); 1529 1530 out: 1531 if (fdt) 1532 early_memunmap(fdt, fdt_len); 1533 if (scratch) 1534 early_memunmap(scratch, scratch_len); 1535 if (err) 1536 pr_warn("disabling KHO revival: %d\n", err); 1537 } 1538 1539 /* Helper functions for kexec_file_load */ 1540 1541 int kho_fill_kimage(struct kimage *image) 1542 { 1543 ssize_t scratch_size; 1544 int err = 0; 1545 struct kexec_buf scratch; 1546 1547 if (!kho_enable) 1548 return 0; 1549 1550 image->kho.fdt = virt_to_phys(kho_out.fdt); 1551 1552 scratch_size = sizeof(*kho_scratch) * kho_scratch_cnt; 1553 scratch = (struct kexec_buf){ 1554 .image = image, 1555 .buffer = kho_scratch, 1556 .bufsz = scratch_size, 1557 .mem = KEXEC_BUF_MEM_UNKNOWN, 1558 .memsz = scratch_size, 1559 .buf_align = SZ_64K, /* Makes it easier to map */ 1560 .buf_max = ULONG_MAX, 1561 .top_down = true, 1562 }; 1563 err = kexec_add_buffer(&scratch); 1564 if (err) 1565 return err; 1566 image->kho.scratch = &image->segment[image->nr_segments - 1]; 1567 1568 return 0; 1569 } 1570 1571 static int kho_walk_scratch(struct kexec_buf *kbuf, 1572 int (*func)(struct resource *, void *)) 1573 { 1574 int ret = 0; 1575 int i; 1576 1577 for (i = 0; i < kho_scratch_cnt; i++) { 1578 struct resource res = { 1579 .start = kho_scratch[i].addr, 1580 .end = kho_scratch[i].addr + kho_scratch[i].size - 1, 1581 }; 1582 1583 /* Try to fit the kimage into our KHO scratch region */ 1584 ret = func(&res, kbuf); 1585 if (ret) 1586 break; 1587 } 1588 1589 return ret; 1590 } 1591 1592 int kho_locate_mem_hole(struct kexec_buf *kbuf, 1593 int (*func)(struct resource *, void *)) 1594 { 1595 int ret; 1596 1597 if (!kho_enable || kbuf->image->type == KEXEC_TYPE_CRASH) 1598 return 1; 1599 1600 ret = kho_walk_scratch(kbuf, func); 1601 1602 return ret == 1 ? 0 : -EADDRNOTAVAIL; 1603 } 1604