blob: efd2c094af7e2eda3a16be3a6dfe57dde805236c [file] [log] [blame]
Dave Younga43cac02015-09-09 15:38:51 -07001/*
2 * kexec: kexec_file_load system call
3 *
4 * Copyright (C) 2014 Red Hat Inc.
5 * Authors:
6 * Vivek Goyal <vgoyal@redhat.com>
7 *
8 * This source code is licensed under the GNU General Public License,
9 * Version 2. See the file COPYING for more details.
10 */
11
Minfei Huangde90a6b2015-11-06 16:32:45 -080012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
Dave Younga43cac02015-09-09 15:38:51 -070014#include <linux/capability.h>
15#include <linux/mm.h>
16#include <linux/file.h>
17#include <linux/slab.h>
18#include <linux/kexec.h>
19#include <linux/mutex.h>
20#include <linux/list.h>
Mimi Zoharb804def2016-01-14 20:59:14 -050021#include <linux/fs.h>
Dave Younga43cac02015-09-09 15:38:51 -070022#include <crypto/hash.h>
23#include <crypto/sha.h>
24#include <linux/syscalls.h>
25#include <linux/vmalloc.h>
26#include "kexec_internal.h"
27
28/*
29 * Declare these symbols weak so that if architecture provides a purgatory,
30 * these will be overridden.
31 */
32char __weak kexec_purgatory[0];
33size_t __weak kexec_purgatory_size = 0;
34
35static int kexec_calculate_store_digests(struct kimage *image);
36
Dave Younga43cac02015-09-09 15:38:51 -070037/* Architectures can provide this probe function */
38int __weak arch_kexec_kernel_image_probe(struct kimage *image, void *buf,
39 unsigned long buf_len)
40{
41 return -ENOEXEC;
42}
43
44void * __weak arch_kexec_kernel_image_load(struct kimage *image)
45{
46 return ERR_PTR(-ENOEXEC);
47}
48
49int __weak arch_kimage_file_post_load_cleanup(struct kimage *image)
50{
51 return -EINVAL;
52}
53
Xunlei Pang978e30c2016-01-20 15:00:36 -080054#ifdef CONFIG_KEXEC_VERIFY_SIG
Dave Younga43cac02015-09-09 15:38:51 -070055int __weak arch_kexec_kernel_verify_sig(struct kimage *image, void *buf,
56 unsigned long buf_len)
57{
58 return -EKEYREJECTED;
59}
Xunlei Pang978e30c2016-01-20 15:00:36 -080060#endif
Dave Younga43cac02015-09-09 15:38:51 -070061
62/* Apply relocations of type RELA */
63int __weak
64arch_kexec_apply_relocations_add(const Elf_Ehdr *ehdr, Elf_Shdr *sechdrs,
65 unsigned int relsec)
66{
67 pr_err("RELA relocation unsupported.\n");
68 return -ENOEXEC;
69}
70
71/* Apply relocations of type REL */
72int __weak
73arch_kexec_apply_relocations(const Elf_Ehdr *ehdr, Elf_Shdr *sechdrs,
74 unsigned int relsec)
75{
76 pr_err("REL relocation unsupported.\n");
77 return -ENOEXEC;
78}
79
80/*
81 * Free up memory used by kernel, initrd, and command line. This is temporary
82 * memory allocation which is not needed any more after these buffers have
83 * been loaded into separate segments and have been copied elsewhere.
84 */
85void kimage_file_post_load_cleanup(struct kimage *image)
86{
87 struct purgatory_info *pi = &image->purgatory_info;
88
89 vfree(image->kernel_buf);
90 image->kernel_buf = NULL;
91
92 vfree(image->initrd_buf);
93 image->initrd_buf = NULL;
94
95 kfree(image->cmdline_buf);
96 image->cmdline_buf = NULL;
97
98 vfree(pi->purgatory_buf);
99 pi->purgatory_buf = NULL;
100
101 vfree(pi->sechdrs);
102 pi->sechdrs = NULL;
103
104 /* See if architecture has anything to cleanup post load */
105 arch_kimage_file_post_load_cleanup(image);
106
107 /*
108 * Above call should have called into bootloader to free up
109 * any data stored in kimage->image_loader_data. It should
110 * be ok now to free it up.
111 */
112 kfree(image->image_loader_data);
113 image->image_loader_data = NULL;
114}
115
116/*
117 * In file mode list of segments is prepared by kernel. Copy relevant
118 * data from user space, do error checking, prepare segment list
119 */
120static int
121kimage_file_prepare_segments(struct kimage *image, int kernel_fd, int initrd_fd,
122 const char __user *cmdline_ptr,
123 unsigned long cmdline_len, unsigned flags)
124{
125 int ret = 0;
126 void *ldata;
Mimi Zoharb804def2016-01-14 20:59:14 -0500127 loff_t size;
Dave Younga43cac02015-09-09 15:38:51 -0700128
Mimi Zoharb804def2016-01-14 20:59:14 -0500129 ret = kernel_read_file_from_fd(kernel_fd, &image->kernel_buf,
130 &size, INT_MAX, READING_KEXEC_IMAGE);
Dave Younga43cac02015-09-09 15:38:51 -0700131 if (ret)
132 return ret;
Mimi Zoharb804def2016-01-14 20:59:14 -0500133 image->kernel_buf_len = size;
Dave Younga43cac02015-09-09 15:38:51 -0700134
135 /* Call arch image probe handlers */
136 ret = arch_kexec_kernel_image_probe(image, image->kernel_buf,
137 image->kernel_buf_len);
Dave Younga43cac02015-09-09 15:38:51 -0700138 if (ret)
139 goto out;
140
141#ifdef CONFIG_KEXEC_VERIFY_SIG
142 ret = arch_kexec_kernel_verify_sig(image, image->kernel_buf,
143 image->kernel_buf_len);
144 if (ret) {
145 pr_debug("kernel signature verification failed.\n");
146 goto out;
147 }
148 pr_debug("kernel signature verification successful.\n");
149#endif
150 /* It is possible that there no initramfs is being loaded */
151 if (!(flags & KEXEC_FILE_NO_INITRAMFS)) {
Mimi Zoharb804def2016-01-14 20:59:14 -0500152 ret = kernel_read_file_from_fd(initrd_fd, &image->initrd_buf,
153 &size, INT_MAX,
154 READING_KEXEC_INITRAMFS);
Dave Younga43cac02015-09-09 15:38:51 -0700155 if (ret)
156 goto out;
Mimi Zoharb804def2016-01-14 20:59:14 -0500157 image->initrd_buf_len = size;
Dave Younga43cac02015-09-09 15:38:51 -0700158 }
159
160 if (cmdline_len) {
161 image->cmdline_buf = kzalloc(cmdline_len, GFP_KERNEL);
162 if (!image->cmdline_buf) {
163 ret = -ENOMEM;
164 goto out;
165 }
166
167 ret = copy_from_user(image->cmdline_buf, cmdline_ptr,
168 cmdline_len);
169 if (ret) {
170 ret = -EFAULT;
171 goto out;
172 }
173
174 image->cmdline_buf_len = cmdline_len;
175
176 /* command line should be a string with last byte null */
177 if (image->cmdline_buf[cmdline_len - 1] != '\0') {
178 ret = -EINVAL;
179 goto out;
180 }
181 }
182
183 /* Call arch image load handlers */
184 ldata = arch_kexec_kernel_image_load(image);
185
186 if (IS_ERR(ldata)) {
187 ret = PTR_ERR(ldata);
188 goto out;
189 }
190
191 image->image_loader_data = ldata;
192out:
193 /* In case of error, free up all allocated memory in this function */
194 if (ret)
195 kimage_file_post_load_cleanup(image);
196 return ret;
197}
198
199static int
200kimage_file_alloc_init(struct kimage **rimage, int kernel_fd,
201 int initrd_fd, const char __user *cmdline_ptr,
202 unsigned long cmdline_len, unsigned long flags)
203{
204 int ret;
205 struct kimage *image;
206 bool kexec_on_panic = flags & KEXEC_FILE_ON_CRASH;
207
208 image = do_kimage_alloc_init();
209 if (!image)
210 return -ENOMEM;
211
212 image->file_mode = 1;
213
214 if (kexec_on_panic) {
215 /* Enable special crash kernel control page alloc policy. */
216 image->control_page = crashk_res.start;
217 image->type = KEXEC_TYPE_CRASH;
218 }
219
220 ret = kimage_file_prepare_segments(image, kernel_fd, initrd_fd,
221 cmdline_ptr, cmdline_len, flags);
222 if (ret)
223 goto out_free_image;
224
225 ret = sanity_check_segment_list(image);
226 if (ret)
227 goto out_free_post_load_bufs;
228
229 ret = -ENOMEM;
230 image->control_code_page = kimage_alloc_control_pages(image,
231 get_order(KEXEC_CONTROL_PAGE_SIZE));
232 if (!image->control_code_page) {
233 pr_err("Could not allocate control_code_buffer\n");
234 goto out_free_post_load_bufs;
235 }
236
237 if (!kexec_on_panic) {
238 image->swap_page = kimage_alloc_control_pages(image, 0);
239 if (!image->swap_page) {
240 pr_err("Could not allocate swap buffer\n");
241 goto out_free_control_pages;
242 }
243 }
244
245 *rimage = image;
246 return 0;
247out_free_control_pages:
248 kimage_free_page_list(&image->control_pages);
249out_free_post_load_bufs:
250 kimage_file_post_load_cleanup(image);
251out_free_image:
252 kfree(image);
253 return ret;
254}
255
256SYSCALL_DEFINE5(kexec_file_load, int, kernel_fd, int, initrd_fd,
257 unsigned long, cmdline_len, const char __user *, cmdline_ptr,
258 unsigned long, flags)
259{
260 int ret = 0, i;
261 struct kimage **dest_image, *image;
262
263 /* We only trust the superuser with rebooting the system. */
264 if (!capable(CAP_SYS_BOOT) || kexec_load_disabled)
265 return -EPERM;
266
267 /* Make sure we have a legal set of flags */
268 if (flags != (flags & KEXEC_FILE_FLAGS))
269 return -EINVAL;
270
271 image = NULL;
272
273 if (!mutex_trylock(&kexec_mutex))
274 return -EBUSY;
275
276 dest_image = &kexec_image;
Xunlei Pang9b492cf2016-05-23 16:24:10 -0700277 if (flags & KEXEC_FILE_ON_CRASH) {
Dave Younga43cac02015-09-09 15:38:51 -0700278 dest_image = &kexec_crash_image;
Xunlei Pang9b492cf2016-05-23 16:24:10 -0700279 if (kexec_crash_image)
280 arch_kexec_unprotect_crashkres();
281 }
Dave Younga43cac02015-09-09 15:38:51 -0700282
283 if (flags & KEXEC_FILE_UNLOAD)
284 goto exchange;
285
286 /*
287 * In case of crash, new kernel gets loaded in reserved region. It is
288 * same memory where old crash kernel might be loaded. Free any
289 * current crash dump kernel before we corrupt it.
290 */
291 if (flags & KEXEC_FILE_ON_CRASH)
292 kimage_free(xchg(&kexec_crash_image, NULL));
293
294 ret = kimage_file_alloc_init(&image, kernel_fd, initrd_fd, cmdline_ptr,
295 cmdline_len, flags);
296 if (ret)
297 goto out;
298
299 ret = machine_kexec_prepare(image);
300 if (ret)
301 goto out;
302
303 ret = kexec_calculate_store_digests(image);
304 if (ret)
305 goto out;
306
307 for (i = 0; i < image->nr_segments; i++) {
308 struct kexec_segment *ksegment;
309
310 ksegment = &image->segment[i];
311 pr_debug("Loading segment %d: buf=0x%p bufsz=0x%zx mem=0x%lx memsz=0x%zx\n",
312 i, ksegment->buf, ksegment->bufsz, ksegment->mem,
313 ksegment->memsz);
314
315 ret = kimage_load_segment(image, &image->segment[i]);
316 if (ret)
317 goto out;
318 }
319
320 kimage_terminate(image);
321
322 /*
323 * Free up any temporary buffers allocated which are not needed
324 * after image has been loaded
325 */
326 kimage_file_post_load_cleanup(image);
327exchange:
328 image = xchg(dest_image, image);
329out:
Xunlei Pang9b492cf2016-05-23 16:24:10 -0700330 if ((flags & KEXEC_FILE_ON_CRASH) && kexec_crash_image)
331 arch_kexec_protect_crashkres();
332
Dave Younga43cac02015-09-09 15:38:51 -0700333 mutex_unlock(&kexec_mutex);
334 kimage_free(image);
335 return ret;
336}
337
338static int locate_mem_hole_top_down(unsigned long start, unsigned long end,
339 struct kexec_buf *kbuf)
340{
341 struct kimage *image = kbuf->image;
342 unsigned long temp_start, temp_end;
343
344 temp_end = min(end, kbuf->buf_max);
345 temp_start = temp_end - kbuf->memsz;
346
347 do {
348 /* align down start */
349 temp_start = temp_start & (~(kbuf->buf_align - 1));
350
351 if (temp_start < start || temp_start < kbuf->buf_min)
352 return 0;
353
354 temp_end = temp_start + kbuf->memsz - 1;
355
356 /*
357 * Make sure this does not conflict with any of existing
358 * segments
359 */
360 if (kimage_is_destination_range(image, temp_start, temp_end)) {
361 temp_start = temp_start - PAGE_SIZE;
362 continue;
363 }
364
365 /* We found a suitable memory range */
366 break;
367 } while (1);
368
369 /* If we are here, we found a suitable memory range */
370 kbuf->mem = temp_start;
371
372 /* Success, stop navigating through remaining System RAM ranges */
373 return 1;
374}
375
376static int locate_mem_hole_bottom_up(unsigned long start, unsigned long end,
377 struct kexec_buf *kbuf)
378{
379 struct kimage *image = kbuf->image;
380 unsigned long temp_start, temp_end;
381
382 temp_start = max(start, kbuf->buf_min);
383
384 do {
385 temp_start = ALIGN(temp_start, kbuf->buf_align);
386 temp_end = temp_start + kbuf->memsz - 1;
387
388 if (temp_end > end || temp_end > kbuf->buf_max)
389 return 0;
390 /*
391 * Make sure this does not conflict with any of existing
392 * segments
393 */
394 if (kimage_is_destination_range(image, temp_start, temp_end)) {
395 temp_start = temp_start + PAGE_SIZE;
396 continue;
397 }
398
399 /* We found a suitable memory range */
400 break;
401 } while (1);
402
403 /* If we are here, we found a suitable memory range */
404 kbuf->mem = temp_start;
405
406 /* Success, stop navigating through remaining System RAM ranges */
407 return 1;
408}
409
410static int locate_mem_hole_callback(u64 start, u64 end, void *arg)
411{
412 struct kexec_buf *kbuf = (struct kexec_buf *)arg;
413 unsigned long sz = end - start + 1;
414
415 /* Returning 0 will take to next memory range */
416 if (sz < kbuf->memsz)
417 return 0;
418
419 if (end < kbuf->buf_min || start > kbuf->buf_max)
420 return 0;
421
422 /*
423 * Allocate memory top down with-in ram range. Otherwise bottom up
424 * allocation.
425 */
426 if (kbuf->top_down)
427 return locate_mem_hole_top_down(start, end, kbuf);
428 return locate_mem_hole_bottom_up(start, end, kbuf);
429}
430
Thiago Jung Bauermann60fe3912016-11-29 23:45:47 +1100431/**
432 * arch_kexec_walk_mem - call func(data) on free memory regions
433 * @kbuf: Context info for the search. Also passed to @func.
434 * @func: Function to call for each memory region.
435 *
436 * Return: The memory walk will stop when func returns a non-zero value
437 * and that value will be returned. If all free regions are visited without
438 * func returning non-zero, then zero will be returned.
439 */
440int __weak arch_kexec_walk_mem(struct kexec_buf *kbuf,
441 int (*func)(u64, u64, void *))
442{
443 if (kbuf->image->type == KEXEC_TYPE_CRASH)
444 return walk_iomem_res_desc(crashk_res.desc,
445 IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY,
446 crashk_res.start, crashk_res.end,
447 kbuf, func);
448 else
449 return walk_system_ram_res(0, ULONG_MAX, kbuf, func);
450}
451
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100452/**
453 * kexec_add_buffer - place a buffer in a kexec segment
454 * @kbuf: Buffer contents and memory parameters.
455 *
456 * This function assumes that kexec_mutex is held.
457 * On successful return, @kbuf->mem will have the physical address of
458 * the buffer in memory.
459 *
460 * Return: 0 on success, negative errno on error.
Dave Younga43cac02015-09-09 15:38:51 -0700461 */
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100462int kexec_add_buffer(struct kexec_buf *kbuf)
Dave Younga43cac02015-09-09 15:38:51 -0700463{
464
465 struct kexec_segment *ksegment;
Dave Younga43cac02015-09-09 15:38:51 -0700466 int ret;
467
468 /* Currently adding segment this way is allowed only in file mode */
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100469 if (!kbuf->image->file_mode)
Dave Younga43cac02015-09-09 15:38:51 -0700470 return -EINVAL;
471
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100472 if (kbuf->image->nr_segments >= KEXEC_SEGMENT_MAX)
Dave Younga43cac02015-09-09 15:38:51 -0700473 return -EINVAL;
474
475 /*
476 * Make sure we are not trying to add buffer after allocating
477 * control pages. All segments need to be placed first before
478 * any control pages are allocated. As control page allocation
479 * logic goes through list of segments to make sure there are
480 * no destination overlaps.
481 */
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100482 if (!list_empty(&kbuf->image->control_pages)) {
Dave Younga43cac02015-09-09 15:38:51 -0700483 WARN_ON(1);
484 return -EINVAL;
485 }
486
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100487 /* Ensure minimum alignment needed for segments. */
488 kbuf->memsz = ALIGN(kbuf->memsz, PAGE_SIZE);
489 kbuf->buf_align = max(kbuf->buf_align, PAGE_SIZE);
Dave Younga43cac02015-09-09 15:38:51 -0700490
491 /* Walk the RAM ranges and allocate a suitable range for the buffer */
Thiago Jung Bauermann60fe3912016-11-29 23:45:47 +1100492 ret = arch_kexec_walk_mem(kbuf, locate_mem_hole_callback);
Dave Younga43cac02015-09-09 15:38:51 -0700493 if (ret != 1) {
494 /* A suitable memory range could not be found for buffer */
495 return -EADDRNOTAVAIL;
496 }
497
498 /* Found a suitable memory range */
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100499 ksegment = &kbuf->image->segment[kbuf->image->nr_segments];
Dave Younga43cac02015-09-09 15:38:51 -0700500 ksegment->kbuf = kbuf->buffer;
501 ksegment->bufsz = kbuf->bufsz;
502 ksegment->mem = kbuf->mem;
503 ksegment->memsz = kbuf->memsz;
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100504 kbuf->image->nr_segments++;
Dave Younga43cac02015-09-09 15:38:51 -0700505 return 0;
506}
507
508/* Calculate and store the digest of segments */
509static int kexec_calculate_store_digests(struct kimage *image)
510{
511 struct crypto_shash *tfm;
512 struct shash_desc *desc;
513 int ret = 0, i, j, zero_buf_sz, sha_region_sz;
514 size_t desc_size, nullsz;
515 char *digest;
516 void *zero_buf;
517 struct kexec_sha_region *sha_regions;
518 struct purgatory_info *pi = &image->purgatory_info;
519
520 zero_buf = __va(page_to_pfn(ZERO_PAGE(0)) << PAGE_SHIFT);
521 zero_buf_sz = PAGE_SIZE;
522
523 tfm = crypto_alloc_shash("sha256", 0, 0);
524 if (IS_ERR(tfm)) {
525 ret = PTR_ERR(tfm);
526 goto out;
527 }
528
529 desc_size = crypto_shash_descsize(tfm) + sizeof(*desc);
530 desc = kzalloc(desc_size, GFP_KERNEL);
531 if (!desc) {
532 ret = -ENOMEM;
533 goto out_free_tfm;
534 }
535
536 sha_region_sz = KEXEC_SEGMENT_MAX * sizeof(struct kexec_sha_region);
537 sha_regions = vzalloc(sha_region_sz);
538 if (!sha_regions)
539 goto out_free_desc;
540
541 desc->tfm = tfm;
542 desc->flags = 0;
543
544 ret = crypto_shash_init(desc);
545 if (ret < 0)
546 goto out_free_sha_regions;
547
548 digest = kzalloc(SHA256_DIGEST_SIZE, GFP_KERNEL);
549 if (!digest) {
550 ret = -ENOMEM;
551 goto out_free_sha_regions;
552 }
553
554 for (j = i = 0; i < image->nr_segments; i++) {
555 struct kexec_segment *ksegment;
556
557 ksegment = &image->segment[i];
558 /*
559 * Skip purgatory as it will be modified once we put digest
560 * info in purgatory.
561 */
562 if (ksegment->kbuf == pi->purgatory_buf)
563 continue;
564
565 ret = crypto_shash_update(desc, ksegment->kbuf,
566 ksegment->bufsz);
567 if (ret)
568 break;
569
570 /*
571 * Assume rest of the buffer is filled with zero and
572 * update digest accordingly.
573 */
574 nullsz = ksegment->memsz - ksegment->bufsz;
575 while (nullsz) {
576 unsigned long bytes = nullsz;
577
578 if (bytes > zero_buf_sz)
579 bytes = zero_buf_sz;
580 ret = crypto_shash_update(desc, zero_buf, bytes);
581 if (ret)
582 break;
583 nullsz -= bytes;
584 }
585
586 if (ret)
587 break;
588
589 sha_regions[j].start = ksegment->mem;
590 sha_regions[j].len = ksegment->memsz;
591 j++;
592 }
593
594 if (!ret) {
595 ret = crypto_shash_final(desc, digest);
596 if (ret)
597 goto out_free_digest;
598 ret = kexec_purgatory_get_set_symbol(image, "sha_regions",
599 sha_regions, sha_region_sz, 0);
600 if (ret)
601 goto out_free_digest;
602
603 ret = kexec_purgatory_get_set_symbol(image, "sha256_digest",
604 digest, SHA256_DIGEST_SIZE, 0);
605 if (ret)
606 goto out_free_digest;
607 }
608
609out_free_digest:
610 kfree(digest);
611out_free_sha_regions:
612 vfree(sha_regions);
613out_free_desc:
614 kfree(desc);
615out_free_tfm:
616 kfree(tfm);
617out:
618 return ret;
619}
620
621/* Actually load purgatory. Lot of code taken from kexec-tools */
622static int __kexec_load_purgatory(struct kimage *image, unsigned long min,
623 unsigned long max, int top_down)
624{
625 struct purgatory_info *pi = &image->purgatory_info;
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100626 unsigned long align, bss_align, bss_sz, bss_pad;
627 unsigned long entry, load_addr, curr_load_addr, bss_addr, offset;
Dave Younga43cac02015-09-09 15:38:51 -0700628 unsigned char *buf_addr, *src;
629 int i, ret = 0, entry_sidx = -1;
630 const Elf_Shdr *sechdrs_c;
631 Elf_Shdr *sechdrs = NULL;
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100632 struct kexec_buf kbuf = { .image = image, .bufsz = 0, .buf_align = 1,
633 .buf_min = min, .buf_max = max,
634 .top_down = top_down };
Dave Younga43cac02015-09-09 15:38:51 -0700635
636 /*
637 * sechdrs_c points to section headers in purgatory and are read
638 * only. No modifications allowed.
639 */
640 sechdrs_c = (void *)pi->ehdr + pi->ehdr->e_shoff;
641
642 /*
643 * We can not modify sechdrs_c[] and its fields. It is read only.
644 * Copy it over to a local copy where one can store some temporary
645 * data and free it at the end. We need to modify ->sh_addr and
646 * ->sh_offset fields to keep track of permanent and temporary
647 * locations of sections.
648 */
649 sechdrs = vzalloc(pi->ehdr->e_shnum * sizeof(Elf_Shdr));
650 if (!sechdrs)
651 return -ENOMEM;
652
653 memcpy(sechdrs, sechdrs_c, pi->ehdr->e_shnum * sizeof(Elf_Shdr));
654
655 /*
656 * We seem to have multiple copies of sections. First copy is which
657 * is embedded in kernel in read only section. Some of these sections
658 * will be copied to a temporary buffer and relocated. And these
659 * sections will finally be copied to their final destination at
660 * segment load time.
661 *
662 * Use ->sh_offset to reflect section address in memory. It will
663 * point to original read only copy if section is not allocatable.
664 * Otherwise it will point to temporary copy which will be relocated.
665 *
666 * Use ->sh_addr to contain final address of the section where it
667 * will go during execution time.
668 */
669 for (i = 0; i < pi->ehdr->e_shnum; i++) {
670 if (sechdrs[i].sh_type == SHT_NOBITS)
671 continue;
672
673 sechdrs[i].sh_offset = (unsigned long)pi->ehdr +
674 sechdrs[i].sh_offset;
675 }
676
677 /*
678 * Identify entry point section and make entry relative to section
679 * start.
680 */
681 entry = pi->ehdr->e_entry;
682 for (i = 0; i < pi->ehdr->e_shnum; i++) {
683 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
684 continue;
685
686 if (!(sechdrs[i].sh_flags & SHF_EXECINSTR))
687 continue;
688
689 /* Make entry section relative */
690 if (sechdrs[i].sh_addr <= pi->ehdr->e_entry &&
691 ((sechdrs[i].sh_addr + sechdrs[i].sh_size) >
692 pi->ehdr->e_entry)) {
693 entry_sidx = i;
694 entry -= sechdrs[i].sh_addr;
695 break;
696 }
697 }
698
699 /* Determine how much memory is needed to load relocatable object. */
Dave Younga43cac02015-09-09 15:38:51 -0700700 bss_align = 1;
Dave Younga43cac02015-09-09 15:38:51 -0700701 bss_sz = 0;
702
703 for (i = 0; i < pi->ehdr->e_shnum; i++) {
704 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
705 continue;
706
707 align = sechdrs[i].sh_addralign;
708 if (sechdrs[i].sh_type != SHT_NOBITS) {
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100709 if (kbuf.buf_align < align)
710 kbuf.buf_align = align;
711 kbuf.bufsz = ALIGN(kbuf.bufsz, align);
712 kbuf.bufsz += sechdrs[i].sh_size;
Dave Younga43cac02015-09-09 15:38:51 -0700713 } else {
714 /* bss section */
715 if (bss_align < align)
716 bss_align = align;
717 bss_sz = ALIGN(bss_sz, align);
718 bss_sz += sechdrs[i].sh_size;
719 }
720 }
721
722 /* Determine the bss padding required to align bss properly */
723 bss_pad = 0;
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100724 if (kbuf.bufsz & (bss_align - 1))
725 bss_pad = bss_align - (kbuf.bufsz & (bss_align - 1));
Dave Younga43cac02015-09-09 15:38:51 -0700726
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100727 kbuf.memsz = kbuf.bufsz + bss_pad + bss_sz;
Dave Younga43cac02015-09-09 15:38:51 -0700728
729 /* Allocate buffer for purgatory */
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100730 kbuf.buffer = vzalloc(kbuf.bufsz);
731 if (!kbuf.buffer) {
Dave Younga43cac02015-09-09 15:38:51 -0700732 ret = -ENOMEM;
733 goto out;
734 }
735
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100736 if (kbuf.buf_align < bss_align)
737 kbuf.buf_align = bss_align;
Dave Younga43cac02015-09-09 15:38:51 -0700738
739 /* Add buffer to segment list */
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100740 ret = kexec_add_buffer(&kbuf);
Dave Younga43cac02015-09-09 15:38:51 -0700741 if (ret)
742 goto out;
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100743 pi->purgatory_load_addr = kbuf.mem;
Dave Younga43cac02015-09-09 15:38:51 -0700744
745 /* Load SHF_ALLOC sections */
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100746 buf_addr = kbuf.buffer;
Dave Younga43cac02015-09-09 15:38:51 -0700747 load_addr = curr_load_addr = pi->purgatory_load_addr;
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100748 bss_addr = load_addr + kbuf.bufsz + bss_pad;
Dave Younga43cac02015-09-09 15:38:51 -0700749
750 for (i = 0; i < pi->ehdr->e_shnum; i++) {
751 if (!(sechdrs[i].sh_flags & SHF_ALLOC))
752 continue;
753
754 align = sechdrs[i].sh_addralign;
755 if (sechdrs[i].sh_type != SHT_NOBITS) {
756 curr_load_addr = ALIGN(curr_load_addr, align);
757 offset = curr_load_addr - load_addr;
758 /* We already modifed ->sh_offset to keep src addr */
759 src = (char *) sechdrs[i].sh_offset;
760 memcpy(buf_addr + offset, src, sechdrs[i].sh_size);
761
762 /* Store load address and source address of section */
763 sechdrs[i].sh_addr = curr_load_addr;
764
765 /*
766 * This section got copied to temporary buffer. Update
767 * ->sh_offset accordingly.
768 */
769 sechdrs[i].sh_offset = (unsigned long)(buf_addr + offset);
770
771 /* Advance to the next address */
772 curr_load_addr += sechdrs[i].sh_size;
773 } else {
774 bss_addr = ALIGN(bss_addr, align);
775 sechdrs[i].sh_addr = bss_addr;
776 bss_addr += sechdrs[i].sh_size;
777 }
778 }
779
780 /* Update entry point based on load address of text section */
781 if (entry_sidx >= 0)
782 entry += sechdrs[entry_sidx].sh_addr;
783
784 /* Make kernel jump to purgatory after shutdown */
785 image->start = entry;
786
787 /* Used later to get/set symbol values */
788 pi->sechdrs = sechdrs;
789
790 /*
791 * Used later to identify which section is purgatory and skip it
792 * from checksumming.
793 */
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100794 pi->purgatory_buf = kbuf.buffer;
Dave Younga43cac02015-09-09 15:38:51 -0700795 return ret;
796out:
797 vfree(sechdrs);
Thiago Jung Bauermannec2b9bf2016-11-29 23:45:48 +1100798 vfree(kbuf.buffer);
Dave Younga43cac02015-09-09 15:38:51 -0700799 return ret;
800}
801
802static int kexec_apply_relocations(struct kimage *image)
803{
804 int i, ret;
805 struct purgatory_info *pi = &image->purgatory_info;
806 Elf_Shdr *sechdrs = pi->sechdrs;
807
808 /* Apply relocations */
809 for (i = 0; i < pi->ehdr->e_shnum; i++) {
810 Elf_Shdr *section, *symtab;
811
812 if (sechdrs[i].sh_type != SHT_RELA &&
813 sechdrs[i].sh_type != SHT_REL)
814 continue;
815
816 /*
817 * For section of type SHT_RELA/SHT_REL,
818 * ->sh_link contains section header index of associated
819 * symbol table. And ->sh_info contains section header
820 * index of section to which relocations apply.
821 */
822 if (sechdrs[i].sh_info >= pi->ehdr->e_shnum ||
823 sechdrs[i].sh_link >= pi->ehdr->e_shnum)
824 return -ENOEXEC;
825
826 section = &sechdrs[sechdrs[i].sh_info];
827 symtab = &sechdrs[sechdrs[i].sh_link];
828
829 if (!(section->sh_flags & SHF_ALLOC))
830 continue;
831
832 /*
833 * symtab->sh_link contain section header index of associated
834 * string table.
835 */
836 if (symtab->sh_link >= pi->ehdr->e_shnum)
837 /* Invalid section number? */
838 continue;
839
840 /*
841 * Respective architecture needs to provide support for applying
842 * relocations of type SHT_RELA/SHT_REL.
843 */
844 if (sechdrs[i].sh_type == SHT_RELA)
845 ret = arch_kexec_apply_relocations_add(pi->ehdr,
846 sechdrs, i);
847 else if (sechdrs[i].sh_type == SHT_REL)
848 ret = arch_kexec_apply_relocations(pi->ehdr,
849 sechdrs, i);
850 if (ret)
851 return ret;
852 }
853
854 return 0;
855}
856
857/* Load relocatable purgatory object and relocate it appropriately */
858int kexec_load_purgatory(struct kimage *image, unsigned long min,
859 unsigned long max, int top_down,
860 unsigned long *load_addr)
861{
862 struct purgatory_info *pi = &image->purgatory_info;
863 int ret;
864
865 if (kexec_purgatory_size <= 0)
866 return -EINVAL;
867
868 if (kexec_purgatory_size < sizeof(Elf_Ehdr))
869 return -ENOEXEC;
870
871 pi->ehdr = (Elf_Ehdr *)kexec_purgatory;
872
873 if (memcmp(pi->ehdr->e_ident, ELFMAG, SELFMAG) != 0
874 || pi->ehdr->e_type != ET_REL
875 || !elf_check_arch(pi->ehdr)
876 || pi->ehdr->e_shentsize != sizeof(Elf_Shdr))
877 return -ENOEXEC;
878
879 if (pi->ehdr->e_shoff >= kexec_purgatory_size
880 || (pi->ehdr->e_shnum * sizeof(Elf_Shdr) >
881 kexec_purgatory_size - pi->ehdr->e_shoff))
882 return -ENOEXEC;
883
884 ret = __kexec_load_purgatory(image, min, max, top_down);
885 if (ret)
886 return ret;
887
888 ret = kexec_apply_relocations(image);
889 if (ret)
890 goto out;
891
892 *load_addr = pi->purgatory_load_addr;
893 return 0;
894out:
895 vfree(pi->sechdrs);
Thiago Jung Bauermann070c43e2016-09-01 16:14:44 -0700896 pi->sechdrs = NULL;
897
Dave Younga43cac02015-09-09 15:38:51 -0700898 vfree(pi->purgatory_buf);
Thiago Jung Bauermann070c43e2016-09-01 16:14:44 -0700899 pi->purgatory_buf = NULL;
Dave Younga43cac02015-09-09 15:38:51 -0700900 return ret;
901}
902
903static Elf_Sym *kexec_purgatory_find_symbol(struct purgatory_info *pi,
904 const char *name)
905{
906 Elf_Sym *syms;
907 Elf_Shdr *sechdrs;
908 Elf_Ehdr *ehdr;
909 int i, k;
910 const char *strtab;
911
912 if (!pi->sechdrs || !pi->ehdr)
913 return NULL;
914
915 sechdrs = pi->sechdrs;
916 ehdr = pi->ehdr;
917
918 for (i = 0; i < ehdr->e_shnum; i++) {
919 if (sechdrs[i].sh_type != SHT_SYMTAB)
920 continue;
921
922 if (sechdrs[i].sh_link >= ehdr->e_shnum)
923 /* Invalid strtab section number */
924 continue;
925 strtab = (char *)sechdrs[sechdrs[i].sh_link].sh_offset;
926 syms = (Elf_Sym *)sechdrs[i].sh_offset;
927
928 /* Go through symbols for a match */
929 for (k = 0; k < sechdrs[i].sh_size/sizeof(Elf_Sym); k++) {
930 if (ELF_ST_BIND(syms[k].st_info) != STB_GLOBAL)
931 continue;
932
933 if (strcmp(strtab + syms[k].st_name, name) != 0)
934 continue;
935
936 if (syms[k].st_shndx == SHN_UNDEF ||
937 syms[k].st_shndx >= ehdr->e_shnum) {
938 pr_debug("Symbol: %s has bad section index %d.\n",
939 name, syms[k].st_shndx);
940 return NULL;
941 }
942
943 /* Found the symbol we are looking for */
944 return &syms[k];
945 }
946 }
947
948 return NULL;
949}
950
951void *kexec_purgatory_get_symbol_addr(struct kimage *image, const char *name)
952{
953 struct purgatory_info *pi = &image->purgatory_info;
954 Elf_Sym *sym;
955 Elf_Shdr *sechdr;
956
957 sym = kexec_purgatory_find_symbol(pi, name);
958 if (!sym)
959 return ERR_PTR(-EINVAL);
960
961 sechdr = &pi->sechdrs[sym->st_shndx];
962
963 /*
964 * Returns the address where symbol will finally be loaded after
965 * kexec_load_segment()
966 */
967 return (void *)(sechdr->sh_addr + sym->st_value);
968}
969
970/*
971 * Get or set value of a symbol. If "get_value" is true, symbol value is
972 * returned in buf otherwise symbol value is set based on value in buf.
973 */
974int kexec_purgatory_get_set_symbol(struct kimage *image, const char *name,
975 void *buf, unsigned int size, bool get_value)
976{
977 Elf_Sym *sym;
978 Elf_Shdr *sechdrs;
979 struct purgatory_info *pi = &image->purgatory_info;
980 char *sym_buf;
981
982 sym = kexec_purgatory_find_symbol(pi, name);
983 if (!sym)
984 return -EINVAL;
985
986 if (sym->st_size != size) {
987 pr_err("symbol %s size mismatch: expected %lu actual %u\n",
988 name, (unsigned long)sym->st_size, size);
989 return -EINVAL;
990 }
991
992 sechdrs = pi->sechdrs;
993
994 if (sechdrs[sym->st_shndx].sh_type == SHT_NOBITS) {
995 pr_err("symbol %s is in a bss section. Cannot %s\n", name,
996 get_value ? "get" : "set");
997 return -EINVAL;
998 }
999
1000 sym_buf = (unsigned char *)sechdrs[sym->st_shndx].sh_offset +
1001 sym->st_value;
1002
1003 if (get_value)
1004 memcpy((void *)buf, sym_buf, size);
1005 else
1006 memcpy((void *)sym_buf, buf, size);
1007
1008 return 0;
1009}