GNU Linux-libre 4.4.289-gnu1
[releases.git] / fs / proc / vmcore.c
1 /*
2  *      fs/proc/vmcore.c Interface for accessing the crash
3  *                               dump from the system's previous life.
4  *      Heavily borrowed from fs/proc/kcore.c
5  *      Created by: Hariprasad Nellitheertha (hari@in.ibm.com)
6  *      Copyright (C) IBM Corporation, 2004. All rights reserved
7  *
8  */
9
10 #include <linux/mm.h>
11 #include <linux/kcore.h>
12 #include <linux/user.h>
13 #include <linux/elf.h>
14 #include <linux/elfcore.h>
15 #include <linux/export.h>
16 #include <linux/slab.h>
17 #include <linux/highmem.h>
18 #include <linux/printk.h>
19 #include <linux/bootmem.h>
20 #include <linux/init.h>
21 #include <linux/crash_dump.h>
22 #include <linux/list.h>
23 #include <linux/vmalloc.h>
24 #include <linux/pagemap.h>
25 #include <asm/uaccess.h>
26 #include <asm/io.h>
27 #include "internal.h"
28
29 /* List representing chunks of contiguous memory areas and their offsets in
30  * vmcore file.
31  */
32 static LIST_HEAD(vmcore_list);
33
34 /* Stores the pointer to the buffer containing kernel elf core headers. */
35 static char *elfcorebuf;
36 static size_t elfcorebuf_sz;
37 static size_t elfcorebuf_sz_orig;
38
39 static char *elfnotes_buf;
40 static size_t elfnotes_sz;
41
42 /* Total size of vmcore file. */
43 static u64 vmcore_size;
44
45 static struct proc_dir_entry *proc_vmcore;
46
47 /*
48  * Returns > 0 for RAM pages, 0 for non-RAM pages, < 0 on error
49  * The called function has to take care of module refcounting.
50  */
51 static int (*oldmem_pfn_is_ram)(unsigned long pfn);
52
53 int register_oldmem_pfn_is_ram(int (*fn)(unsigned long pfn))
54 {
55         if (oldmem_pfn_is_ram)
56                 return -EBUSY;
57         oldmem_pfn_is_ram = fn;
58         return 0;
59 }
60 EXPORT_SYMBOL_GPL(register_oldmem_pfn_is_ram);
61
62 void unregister_oldmem_pfn_is_ram(void)
63 {
64         oldmem_pfn_is_ram = NULL;
65         wmb();
66 }
67 EXPORT_SYMBOL_GPL(unregister_oldmem_pfn_is_ram);
68
69 static int pfn_is_ram(unsigned long pfn)
70 {
71         int (*fn)(unsigned long pfn);
72         /* pfn is ram unless fn() checks pagetype */
73         int ret = 1;
74
75         /*
76          * Ask hypervisor if the pfn is really ram.
77          * A ballooned page contains no data and reading from such a page
78          * will cause high load in the hypervisor.
79          */
80         fn = oldmem_pfn_is_ram;
81         if (fn)
82                 ret = fn(pfn);
83
84         return ret;
85 }
86
87 /* Reads a page from the oldmem device from given offset. */
88 static ssize_t read_from_oldmem(char *buf, size_t count,
89                                 u64 *ppos, int userbuf)
90 {
91         unsigned long pfn, offset;
92         size_t nr_bytes;
93         ssize_t read = 0, tmp;
94
95         if (!count)
96                 return 0;
97
98         offset = (unsigned long)(*ppos % PAGE_SIZE);
99         pfn = (unsigned long)(*ppos / PAGE_SIZE);
100
101         do {
102                 if (count > (PAGE_SIZE - offset))
103                         nr_bytes = PAGE_SIZE - offset;
104                 else
105                         nr_bytes = count;
106
107                 /* If pfn is not ram, return zeros for sparse dump files */
108                 if (pfn_is_ram(pfn) == 0)
109                         memset(buf, 0, nr_bytes);
110                 else {
111                         tmp = copy_oldmem_page(pfn, buf, nr_bytes,
112                                                 offset, userbuf);
113                         if (tmp < 0)
114                                 return tmp;
115                 }
116                 *ppos += nr_bytes;
117                 count -= nr_bytes;
118                 buf += nr_bytes;
119                 read += nr_bytes;
120                 ++pfn;
121                 offset = 0;
122         } while (count);
123
124         return read;
125 }
126
127 /*
128  * Architectures may override this function to allocate ELF header in 2nd kernel
129  */
130 int __weak elfcorehdr_alloc(unsigned long long *addr, unsigned long long *size)
131 {
132         return 0;
133 }
134
135 /*
136  * Architectures may override this function to free header
137  */
138 void __weak elfcorehdr_free(unsigned long long addr)
139 {}
140
141 /*
142  * Architectures may override this function to read from ELF header
143  */
144 ssize_t __weak elfcorehdr_read(char *buf, size_t count, u64 *ppos)
145 {
146         return read_from_oldmem(buf, count, ppos, 0);
147 }
148
149 /*
150  * Architectures may override this function to read from notes sections
151  */
152 ssize_t __weak elfcorehdr_read_notes(char *buf, size_t count, u64 *ppos)
153 {
154         return read_from_oldmem(buf, count, ppos, 0);
155 }
156
157 /*
158  * Architectures may override this function to map oldmem
159  */
160 int __weak remap_oldmem_pfn_range(struct vm_area_struct *vma,
161                                   unsigned long from, unsigned long pfn,
162                                   unsigned long size, pgprot_t prot)
163 {
164         return remap_pfn_range(vma, from, pfn, size, prot);
165 }
166
167 /*
168  * Architectures which support memory encryption override this.
169  */
170 ssize_t __weak
171 copy_oldmem_page_encrypted(unsigned long pfn, char *buf, size_t csize,
172                            unsigned long offset, int userbuf)
173 {
174         return copy_oldmem_page(pfn, buf, csize, offset, userbuf);
175 }
176
177 /*
178  * Copy to either kernel or user space
179  */
180 static int copy_to(void *target, void *src, size_t size, int userbuf)
181 {
182         if (userbuf) {
183                 if (copy_to_user((char __user *) target, src, size))
184                         return -EFAULT;
185         } else {
186                 memcpy(target, src, size);
187         }
188         return 0;
189 }
190
191 /* Read from the ELF header and then the crash dump. On error, negative value is
192  * returned otherwise number of bytes read are returned.
193  */
194 static ssize_t __read_vmcore(char *buffer, size_t buflen, loff_t *fpos,
195                              int userbuf)
196 {
197         ssize_t acc = 0, tmp;
198         size_t tsz;
199         u64 start;
200         struct vmcore *m = NULL;
201
202         if (buflen == 0 || *fpos >= vmcore_size)
203                 return 0;
204
205         /* trim buflen to not go beyond EOF */
206         if (buflen > vmcore_size - *fpos)
207                 buflen = vmcore_size - *fpos;
208
209         /* Read ELF core header */
210         if (*fpos < elfcorebuf_sz) {
211                 tsz = min(elfcorebuf_sz - (size_t)*fpos, buflen);
212                 if (copy_to(buffer, elfcorebuf + *fpos, tsz, userbuf))
213                         return -EFAULT;
214                 buflen -= tsz;
215                 *fpos += tsz;
216                 buffer += tsz;
217                 acc += tsz;
218
219                 /* leave now if filled buffer already */
220                 if (buflen == 0)
221                         return acc;
222         }
223
224         /* Read Elf note segment */
225         if (*fpos < elfcorebuf_sz + elfnotes_sz) {
226                 void *kaddr;
227
228                 tsz = min(elfcorebuf_sz + elfnotes_sz - (size_t)*fpos, buflen);
229                 kaddr = elfnotes_buf + *fpos - elfcorebuf_sz;
230                 if (copy_to(buffer, kaddr, tsz, userbuf))
231                         return -EFAULT;
232                 buflen -= tsz;
233                 *fpos += tsz;
234                 buffer += tsz;
235                 acc += tsz;
236
237                 /* leave now if filled buffer already */
238                 if (buflen == 0)
239                         return acc;
240         }
241
242         list_for_each_entry(m, &vmcore_list, list) {
243                 if (*fpos < m->offset + m->size) {
244                         tsz = min_t(size_t, m->offset + m->size - *fpos, buflen);
245                         start = m->paddr + *fpos - m->offset;
246                         tmp = read_from_oldmem(buffer, tsz, &start, userbuf);
247                         if (tmp < 0)
248                                 return tmp;
249                         buflen -= tsz;
250                         *fpos += tsz;
251                         buffer += tsz;
252                         acc += tsz;
253
254                         /* leave now if filled buffer already */
255                         if (buflen == 0)
256                                 return acc;
257                 }
258         }
259
260         return acc;
261 }
262
263 static ssize_t read_vmcore(struct file *file, char __user *buffer,
264                            size_t buflen, loff_t *fpos)
265 {
266         return __read_vmcore((__force char *) buffer, buflen, fpos, 1);
267 }
268
269 /*
270  * The vmcore fault handler uses the page cache and fills data using the
271  * standard __vmcore_read() function.
272  *
273  * On s390 the fault handler is used for memory regions that can't be mapped
274  * directly with remap_pfn_range().
275  */
276 static int mmap_vmcore_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
277 {
278 #ifdef CONFIG_S390
279         struct address_space *mapping = vma->vm_file->f_mapping;
280         pgoff_t index = vmf->pgoff;
281         struct page *page;
282         loff_t offset;
283         char *buf;
284         int rc;
285
286         page = find_or_create_page(mapping, index, GFP_KERNEL);
287         if (!page)
288                 return VM_FAULT_OOM;
289         if (!PageUptodate(page)) {
290                 offset = (loff_t) index << PAGE_CACHE_SHIFT;
291                 buf = __va((page_to_pfn(page) << PAGE_SHIFT));
292                 rc = __read_vmcore(buf, PAGE_SIZE, &offset, 0);
293                 if (rc < 0) {
294                         unlock_page(page);
295                         page_cache_release(page);
296                         return (rc == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS;
297                 }
298                 SetPageUptodate(page);
299         }
300         unlock_page(page);
301         vmf->page = page;
302         return 0;
303 #else
304         return VM_FAULT_SIGBUS;
305 #endif
306 }
307
308 static const struct vm_operations_struct vmcore_mmap_ops = {
309         .fault = mmap_vmcore_fault,
310 };
311
312 /**
313  * alloc_elfnotes_buf - allocate buffer for ELF note segment in
314  *                      vmalloc memory
315  *
316  * @notes_sz: size of buffer
317  *
318  * If CONFIG_MMU is defined, use vmalloc_user() to allow users to mmap
319  * the buffer to user-space by means of remap_vmalloc_range().
320  *
321  * If CONFIG_MMU is not defined, use vzalloc() since mmap_vmcore() is
322  * disabled and there's no need to allow users to mmap the buffer.
323  */
324 static inline char *alloc_elfnotes_buf(size_t notes_sz)
325 {
326 #ifdef CONFIG_MMU
327         return vmalloc_user(notes_sz);
328 #else
329         return vzalloc(notes_sz);
330 #endif
331 }
332
333 /*
334  * Disable mmap_vmcore() if CONFIG_MMU is not defined. MMU is
335  * essential for mmap_vmcore() in order to map physically
336  * non-contiguous objects (ELF header, ELF note segment and memory
337  * regions in the 1st kernel pointed to by PT_LOAD entries) into
338  * virtually contiguous user-space in ELF layout.
339  */
340 #ifdef CONFIG_MMU
341 /*
342  * remap_oldmem_pfn_checked - do remap_oldmem_pfn_range replacing all pages
343  * reported as not being ram with the zero page.
344  *
345  * @vma: vm_area_struct describing requested mapping
346  * @from: start remapping from
347  * @pfn: page frame number to start remapping to
348  * @size: remapping size
349  * @prot: protection bits
350  *
351  * Returns zero on success, -EAGAIN on failure.
352  */
353 static int remap_oldmem_pfn_checked(struct vm_area_struct *vma,
354                                     unsigned long from, unsigned long pfn,
355                                     unsigned long size, pgprot_t prot)
356 {
357         unsigned long map_size;
358         unsigned long pos_start, pos_end, pos;
359         unsigned long zeropage_pfn = my_zero_pfn(0);
360         size_t len = 0;
361
362         pos_start = pfn;
363         pos_end = pfn + (size >> PAGE_SHIFT);
364
365         for (pos = pos_start; pos < pos_end; ++pos) {
366                 if (!pfn_is_ram(pos)) {
367                         /*
368                          * We hit a page which is not ram. Remap the continuous
369                          * region between pos_start and pos-1 and replace
370                          * the non-ram page at pos with the zero page.
371                          */
372                         if (pos > pos_start) {
373                                 /* Remap continuous region */
374                                 map_size = (pos - pos_start) << PAGE_SHIFT;
375                                 if (remap_oldmem_pfn_range(vma, from + len,
376                                                            pos_start, map_size,
377                                                            prot))
378                                         goto fail;
379                                 len += map_size;
380                         }
381                         /* Remap the zero page */
382                         if (remap_oldmem_pfn_range(vma, from + len,
383                                                    zeropage_pfn,
384                                                    PAGE_SIZE, prot))
385                                 goto fail;
386                         len += PAGE_SIZE;
387                         pos_start = pos + 1;
388                 }
389         }
390         if (pos > pos_start) {
391                 /* Remap the rest */
392                 map_size = (pos - pos_start) << PAGE_SHIFT;
393                 if (remap_oldmem_pfn_range(vma, from + len, pos_start,
394                                            map_size, prot))
395                         goto fail;
396         }
397         return 0;
398 fail:
399         do_munmap(vma->vm_mm, from, len);
400         return -EAGAIN;
401 }
402
403 static int vmcore_remap_oldmem_pfn(struct vm_area_struct *vma,
404                             unsigned long from, unsigned long pfn,
405                             unsigned long size, pgprot_t prot)
406 {
407         /*
408          * Check if oldmem_pfn_is_ram was registered to avoid
409          * looping over all pages without a reason.
410          */
411         if (oldmem_pfn_is_ram)
412                 return remap_oldmem_pfn_checked(vma, from, pfn, size, prot);
413         else
414                 return remap_oldmem_pfn_range(vma, from, pfn, size, prot);
415 }
416
417 static int mmap_vmcore(struct file *file, struct vm_area_struct *vma)
418 {
419         size_t size = vma->vm_end - vma->vm_start;
420         u64 start, end, len, tsz;
421         struct vmcore *m;
422
423         start = (u64)vma->vm_pgoff << PAGE_SHIFT;
424         end = start + size;
425
426         if (size > vmcore_size || end > vmcore_size)
427                 return -EINVAL;
428
429         if (vma->vm_flags & (VM_WRITE | VM_EXEC))
430                 return -EPERM;
431
432         vma->vm_flags &= ~(VM_MAYWRITE | VM_MAYEXEC);
433         vma->vm_flags |= VM_MIXEDMAP;
434         vma->vm_ops = &vmcore_mmap_ops;
435
436         len = 0;
437
438         if (start < elfcorebuf_sz) {
439                 u64 pfn;
440
441                 tsz = min(elfcorebuf_sz - (size_t)start, size);
442                 pfn = __pa(elfcorebuf + start) >> PAGE_SHIFT;
443                 if (remap_pfn_range(vma, vma->vm_start, pfn, tsz,
444                                     vma->vm_page_prot))
445                         return -EAGAIN;
446                 size -= tsz;
447                 start += tsz;
448                 len += tsz;
449
450                 if (size == 0)
451                         return 0;
452         }
453
454         if (start < elfcorebuf_sz + elfnotes_sz) {
455                 void *kaddr;
456
457                 tsz = min(elfcorebuf_sz + elfnotes_sz - (size_t)start, size);
458                 kaddr = elfnotes_buf + start - elfcorebuf_sz;
459                 if (remap_vmalloc_range_partial(vma, vma->vm_start + len,
460                                                 kaddr, tsz))
461                         goto fail;
462                 size -= tsz;
463                 start += tsz;
464                 len += tsz;
465
466                 if (size == 0)
467                         return 0;
468         }
469
470         list_for_each_entry(m, &vmcore_list, list) {
471                 if (start < m->offset + m->size) {
472                         u64 paddr = 0;
473
474                         tsz = min_t(size_t, m->offset + m->size - start, size);
475                         paddr = m->paddr + start - m->offset;
476                         if (vmcore_remap_oldmem_pfn(vma, vma->vm_start + len,
477                                                     paddr >> PAGE_SHIFT, tsz,
478                                                     vma->vm_page_prot))
479                                 goto fail;
480                         size -= tsz;
481                         start += tsz;
482                         len += tsz;
483
484                         if (size == 0)
485                                 return 0;
486                 }
487         }
488
489         return 0;
490 fail:
491         do_munmap(vma->vm_mm, vma->vm_start, len);
492         return -EAGAIN;
493 }
494 #else
495 static int mmap_vmcore(struct file *file, struct vm_area_struct *vma)
496 {
497         return -ENOSYS;
498 }
499 #endif
500
501 static const struct file_operations proc_vmcore_operations = {
502         .read           = read_vmcore,
503         .llseek         = default_llseek,
504         .mmap           = mmap_vmcore,
505 };
506
507 static struct vmcore* __init get_new_element(void)
508 {
509         return kzalloc(sizeof(struct vmcore), GFP_KERNEL);
510 }
511
512 static u64 __init get_vmcore_size(size_t elfsz, size_t elfnotesegsz,
513                                   struct list_head *vc_list)
514 {
515         u64 size;
516         struct vmcore *m;
517
518         size = elfsz + elfnotesegsz;
519         list_for_each_entry(m, vc_list, list) {
520                 size += m->size;
521         }
522         return size;
523 }
524
525 /**
526  * update_note_header_size_elf64 - update p_memsz member of each PT_NOTE entry
527  *
528  * @ehdr_ptr: ELF header
529  *
530  * This function updates p_memsz member of each PT_NOTE entry in the
531  * program header table pointed to by @ehdr_ptr to real size of ELF
532  * note segment.
533  */
534 static int __init update_note_header_size_elf64(const Elf64_Ehdr *ehdr_ptr)
535 {
536         int i, rc=0;
537         Elf64_Phdr *phdr_ptr;
538         Elf64_Nhdr *nhdr_ptr;
539
540         phdr_ptr = (Elf64_Phdr *)(ehdr_ptr + 1);
541         for (i = 0; i < ehdr_ptr->e_phnum; i++, phdr_ptr++) {
542                 void *notes_section;
543                 u64 offset, max_sz, sz, real_sz = 0;
544                 if (phdr_ptr->p_type != PT_NOTE)
545                         continue;
546                 max_sz = phdr_ptr->p_memsz;
547                 offset = phdr_ptr->p_offset;
548                 notes_section = kmalloc(max_sz, GFP_KERNEL);
549                 if (!notes_section)
550                         return -ENOMEM;
551                 rc = elfcorehdr_read_notes(notes_section, max_sz, &offset);
552                 if (rc < 0) {
553                         kfree(notes_section);
554                         return rc;
555                 }
556                 nhdr_ptr = notes_section;
557                 while (nhdr_ptr->n_namesz != 0) {
558                         sz = sizeof(Elf64_Nhdr) +
559                                 (((u64)nhdr_ptr->n_namesz + 3) & ~3) +
560                                 (((u64)nhdr_ptr->n_descsz + 3) & ~3);
561                         if ((real_sz + sz) > max_sz) {
562                                 pr_warn("Warning: Exceeded p_memsz, dropping PT_NOTE entry n_namesz=0x%x, n_descsz=0x%x\n",
563                                         nhdr_ptr->n_namesz, nhdr_ptr->n_descsz);
564                                 break;
565                         }
566                         real_sz += sz;
567                         nhdr_ptr = (Elf64_Nhdr*)((char*)nhdr_ptr + sz);
568                 }
569                 kfree(notes_section);
570                 phdr_ptr->p_memsz = real_sz;
571                 if (real_sz == 0) {
572                         pr_warn("Warning: Zero PT_NOTE entries found\n");
573                 }
574         }
575
576         return 0;
577 }
578
579 /**
580  * get_note_number_and_size_elf64 - get the number of PT_NOTE program
581  * headers and sum of real size of their ELF note segment headers and
582  * data.
583  *
584  * @ehdr_ptr: ELF header
585  * @nr_ptnote: buffer for the number of PT_NOTE program headers
586  * @sz_ptnote: buffer for size of unique PT_NOTE program header
587  *
588  * This function is used to merge multiple PT_NOTE program headers
589  * into a unique single one. The resulting unique entry will have
590  * @sz_ptnote in its phdr->p_mem.
591  *
592  * It is assumed that program headers with PT_NOTE type pointed to by
593  * @ehdr_ptr has already been updated by update_note_header_size_elf64
594  * and each of PT_NOTE program headers has actual ELF note segment
595  * size in its p_memsz member.
596  */
597 static int __init get_note_number_and_size_elf64(const Elf64_Ehdr *ehdr_ptr,
598                                                  int *nr_ptnote, u64 *sz_ptnote)
599 {
600         int i;
601         Elf64_Phdr *phdr_ptr;
602
603         *nr_ptnote = *sz_ptnote = 0;
604
605         phdr_ptr = (Elf64_Phdr *)(ehdr_ptr + 1);
606         for (i = 0; i < ehdr_ptr->e_phnum; i++, phdr_ptr++) {
607                 if (phdr_ptr->p_type != PT_NOTE)
608                         continue;
609                 *nr_ptnote += 1;
610                 *sz_ptnote += phdr_ptr->p_memsz;
611         }
612
613         return 0;
614 }
615
616 /**
617  * copy_notes_elf64 - copy ELF note segments in a given buffer
618  *
619  * @ehdr_ptr: ELF header
620  * @notes_buf: buffer into which ELF note segments are copied
621  *
622  * This function is used to copy ELF note segment in the 1st kernel
623  * into the buffer @notes_buf in the 2nd kernel. It is assumed that
624  * size of the buffer @notes_buf is equal to or larger than sum of the
625  * real ELF note segment headers and data.
626  *
627  * It is assumed that program headers with PT_NOTE type pointed to by
628  * @ehdr_ptr has already been updated by update_note_header_size_elf64
629  * and each of PT_NOTE program headers has actual ELF note segment
630  * size in its p_memsz member.
631  */
632 static int __init copy_notes_elf64(const Elf64_Ehdr *ehdr_ptr, char *notes_buf)
633 {
634         int i, rc=0;
635         Elf64_Phdr *phdr_ptr;
636
637         phdr_ptr = (Elf64_Phdr*)(ehdr_ptr + 1);
638
639         for (i = 0; i < ehdr_ptr->e_phnum; i++, phdr_ptr++) {
640                 u64 offset;
641                 if (phdr_ptr->p_type != PT_NOTE)
642                         continue;
643                 offset = phdr_ptr->p_offset;
644                 rc = elfcorehdr_read_notes(notes_buf, phdr_ptr->p_memsz,
645                                            &offset);
646                 if (rc < 0)
647                         return rc;
648                 notes_buf += phdr_ptr->p_memsz;
649         }
650
651         return 0;
652 }
653
654 /* Merges all the PT_NOTE headers into one. */
655 static int __init merge_note_headers_elf64(char *elfptr, size_t *elfsz,
656                                            char **notes_buf, size_t *notes_sz)
657 {
658         int i, nr_ptnote=0, rc=0;
659         char *tmp;
660         Elf64_Ehdr *ehdr_ptr;
661         Elf64_Phdr phdr;
662         u64 phdr_sz = 0, note_off;
663
664         ehdr_ptr = (Elf64_Ehdr *)elfptr;
665
666         rc = update_note_header_size_elf64(ehdr_ptr);
667         if (rc < 0)
668                 return rc;
669
670         rc = get_note_number_and_size_elf64(ehdr_ptr, &nr_ptnote, &phdr_sz);
671         if (rc < 0)
672                 return rc;
673
674         *notes_sz = roundup(phdr_sz, PAGE_SIZE);
675         *notes_buf = alloc_elfnotes_buf(*notes_sz);
676         if (!*notes_buf)
677                 return -ENOMEM;
678
679         rc = copy_notes_elf64(ehdr_ptr, *notes_buf);
680         if (rc < 0)
681                 return rc;
682
683         /* Prepare merged PT_NOTE program header. */
684         phdr.p_type    = PT_NOTE;
685         phdr.p_flags   = 0;
686         note_off = sizeof(Elf64_Ehdr) +
687                         (ehdr_ptr->e_phnum - nr_ptnote +1) * sizeof(Elf64_Phdr);
688         phdr.p_offset  = roundup(note_off, PAGE_SIZE);
689         phdr.p_vaddr   = phdr.p_paddr = 0;
690         phdr.p_filesz  = phdr.p_memsz = phdr_sz;
691         phdr.p_align   = 0;
692
693         /* Add merged PT_NOTE program header*/
694         tmp = elfptr + sizeof(Elf64_Ehdr);
695         memcpy(tmp, &phdr, sizeof(phdr));
696         tmp += sizeof(phdr);
697
698         /* Remove unwanted PT_NOTE program headers. */
699         i = (nr_ptnote - 1) * sizeof(Elf64_Phdr);
700         *elfsz = *elfsz - i;
701         memmove(tmp, tmp+i, ((*elfsz)-sizeof(Elf64_Ehdr)-sizeof(Elf64_Phdr)));
702         memset(elfptr + *elfsz, 0, i);
703         *elfsz = roundup(*elfsz, PAGE_SIZE);
704
705         /* Modify e_phnum to reflect merged headers. */
706         ehdr_ptr->e_phnum = ehdr_ptr->e_phnum - nr_ptnote + 1;
707
708         return 0;
709 }
710
711 /**
712  * update_note_header_size_elf32 - update p_memsz member of each PT_NOTE entry
713  *
714  * @ehdr_ptr: ELF header
715  *
716  * This function updates p_memsz member of each PT_NOTE entry in the
717  * program header table pointed to by @ehdr_ptr to real size of ELF
718  * note segment.
719  */
720 static int __init update_note_header_size_elf32(const Elf32_Ehdr *ehdr_ptr)
721 {
722         int i, rc=0;
723         Elf32_Phdr *phdr_ptr;
724         Elf32_Nhdr *nhdr_ptr;
725
726         phdr_ptr = (Elf32_Phdr *)(ehdr_ptr + 1);
727         for (i = 0; i < ehdr_ptr->e_phnum; i++, phdr_ptr++) {
728                 void *notes_section;
729                 u64 offset, max_sz, sz, real_sz = 0;
730                 if (phdr_ptr->p_type != PT_NOTE)
731                         continue;
732                 max_sz = phdr_ptr->p_memsz;
733                 offset = phdr_ptr->p_offset;
734                 notes_section = kmalloc(max_sz, GFP_KERNEL);
735                 if (!notes_section)
736                         return -ENOMEM;
737                 rc = elfcorehdr_read_notes(notes_section, max_sz, &offset);
738                 if (rc < 0) {
739                         kfree(notes_section);
740                         return rc;
741                 }
742                 nhdr_ptr = notes_section;
743                 while (nhdr_ptr->n_namesz != 0) {
744                         sz = sizeof(Elf32_Nhdr) +
745                                 (((u64)nhdr_ptr->n_namesz + 3) & ~3) +
746                                 (((u64)nhdr_ptr->n_descsz + 3) & ~3);
747                         if ((real_sz + sz) > max_sz) {
748                                 pr_warn("Warning: Exceeded p_memsz, dropping PT_NOTE entry n_namesz=0x%x, n_descsz=0x%x\n",
749                                         nhdr_ptr->n_namesz, nhdr_ptr->n_descsz);
750                                 break;
751                         }
752                         real_sz += sz;
753                         nhdr_ptr = (Elf32_Nhdr*)((char*)nhdr_ptr + sz);
754                 }
755                 kfree(notes_section);
756                 phdr_ptr->p_memsz = real_sz;
757                 if (real_sz == 0) {
758                         pr_warn("Warning: Zero PT_NOTE entries found\n");
759                 }
760         }
761
762         return 0;
763 }
764
765 /**
766  * get_note_number_and_size_elf32 - get the number of PT_NOTE program
767  * headers and sum of real size of their ELF note segment headers and
768  * data.
769  *
770  * @ehdr_ptr: ELF header
771  * @nr_ptnote: buffer for the number of PT_NOTE program headers
772  * @sz_ptnote: buffer for size of unique PT_NOTE program header
773  *
774  * This function is used to merge multiple PT_NOTE program headers
775  * into a unique single one. The resulting unique entry will have
776  * @sz_ptnote in its phdr->p_mem.
777  *
778  * It is assumed that program headers with PT_NOTE type pointed to by
779  * @ehdr_ptr has already been updated by update_note_header_size_elf32
780  * and each of PT_NOTE program headers has actual ELF note segment
781  * size in its p_memsz member.
782  */
783 static int __init get_note_number_and_size_elf32(const Elf32_Ehdr *ehdr_ptr,
784                                                  int *nr_ptnote, u64 *sz_ptnote)
785 {
786         int i;
787         Elf32_Phdr *phdr_ptr;
788
789         *nr_ptnote = *sz_ptnote = 0;
790
791         phdr_ptr = (Elf32_Phdr *)(ehdr_ptr + 1);
792         for (i = 0; i < ehdr_ptr->e_phnum; i++, phdr_ptr++) {
793                 if (phdr_ptr->p_type != PT_NOTE)
794                         continue;
795                 *nr_ptnote += 1;
796                 *sz_ptnote += phdr_ptr->p_memsz;
797         }
798
799         return 0;
800 }
801
802 /**
803  * copy_notes_elf32 - copy ELF note segments in a given buffer
804  *
805  * @ehdr_ptr: ELF header
806  * @notes_buf: buffer into which ELF note segments are copied
807  *
808  * This function is used to copy ELF note segment in the 1st kernel
809  * into the buffer @notes_buf in the 2nd kernel. It is assumed that
810  * size of the buffer @notes_buf is equal to or larger than sum of the
811  * real ELF note segment headers and data.
812  *
813  * It is assumed that program headers with PT_NOTE type pointed to by
814  * @ehdr_ptr has already been updated by update_note_header_size_elf32
815  * and each of PT_NOTE program headers has actual ELF note segment
816  * size in its p_memsz member.
817  */
818 static int __init copy_notes_elf32(const Elf32_Ehdr *ehdr_ptr, char *notes_buf)
819 {
820         int i, rc=0;
821         Elf32_Phdr *phdr_ptr;
822
823         phdr_ptr = (Elf32_Phdr*)(ehdr_ptr + 1);
824
825         for (i = 0; i < ehdr_ptr->e_phnum; i++, phdr_ptr++) {
826                 u64 offset;
827                 if (phdr_ptr->p_type != PT_NOTE)
828                         continue;
829                 offset = phdr_ptr->p_offset;
830                 rc = elfcorehdr_read_notes(notes_buf, phdr_ptr->p_memsz,
831                                            &offset);
832                 if (rc < 0)
833                         return rc;
834                 notes_buf += phdr_ptr->p_memsz;
835         }
836
837         return 0;
838 }
839
840 /* Merges all the PT_NOTE headers into one. */
841 static int __init merge_note_headers_elf32(char *elfptr, size_t *elfsz,
842                                            char **notes_buf, size_t *notes_sz)
843 {
844         int i, nr_ptnote=0, rc=0;
845         char *tmp;
846         Elf32_Ehdr *ehdr_ptr;
847         Elf32_Phdr phdr;
848         u64 phdr_sz = 0, note_off;
849
850         ehdr_ptr = (Elf32_Ehdr *)elfptr;
851
852         rc = update_note_header_size_elf32(ehdr_ptr);
853         if (rc < 0)
854                 return rc;
855
856         rc = get_note_number_and_size_elf32(ehdr_ptr, &nr_ptnote, &phdr_sz);
857         if (rc < 0)
858                 return rc;
859
860         *notes_sz = roundup(phdr_sz, PAGE_SIZE);
861         *notes_buf = alloc_elfnotes_buf(*notes_sz);
862         if (!*notes_buf)
863                 return -ENOMEM;
864
865         rc = copy_notes_elf32(ehdr_ptr, *notes_buf);
866         if (rc < 0)
867                 return rc;
868
869         /* Prepare merged PT_NOTE program header. */
870         phdr.p_type    = PT_NOTE;
871         phdr.p_flags   = 0;
872         note_off = sizeof(Elf32_Ehdr) +
873                         (ehdr_ptr->e_phnum - nr_ptnote +1) * sizeof(Elf32_Phdr);
874         phdr.p_offset  = roundup(note_off, PAGE_SIZE);
875         phdr.p_vaddr   = phdr.p_paddr = 0;
876         phdr.p_filesz  = phdr.p_memsz = phdr_sz;
877         phdr.p_align   = 0;
878
879         /* Add merged PT_NOTE program header*/
880         tmp = elfptr + sizeof(Elf32_Ehdr);
881         memcpy(tmp, &phdr, sizeof(phdr));
882         tmp += sizeof(phdr);
883
884         /* Remove unwanted PT_NOTE program headers. */
885         i = (nr_ptnote - 1) * sizeof(Elf32_Phdr);
886         *elfsz = *elfsz - i;
887         memmove(tmp, tmp+i, ((*elfsz)-sizeof(Elf32_Ehdr)-sizeof(Elf32_Phdr)));
888         memset(elfptr + *elfsz, 0, i);
889         *elfsz = roundup(*elfsz, PAGE_SIZE);
890
891         /* Modify e_phnum to reflect merged headers. */
892         ehdr_ptr->e_phnum = ehdr_ptr->e_phnum - nr_ptnote + 1;
893
894         return 0;
895 }
896
897 /* Add memory chunks represented by program headers to vmcore list. Also update
898  * the new offset fields of exported program headers. */
899 static int __init process_ptload_program_headers_elf64(char *elfptr,
900                                                 size_t elfsz,
901                                                 size_t elfnotes_sz,
902                                                 struct list_head *vc_list)
903 {
904         int i;
905         Elf64_Ehdr *ehdr_ptr;
906         Elf64_Phdr *phdr_ptr;
907         loff_t vmcore_off;
908         struct vmcore *new;
909
910         ehdr_ptr = (Elf64_Ehdr *)elfptr;
911         phdr_ptr = (Elf64_Phdr*)(elfptr + sizeof(Elf64_Ehdr)); /* PT_NOTE hdr */
912
913         /* Skip Elf header, program headers and Elf note segment. */
914         vmcore_off = elfsz + elfnotes_sz;
915
916         for (i = 0; i < ehdr_ptr->e_phnum; i++, phdr_ptr++) {
917                 u64 paddr, start, end, size;
918
919                 if (phdr_ptr->p_type != PT_LOAD)
920                         continue;
921
922                 paddr = phdr_ptr->p_offset;
923                 start = rounddown(paddr, PAGE_SIZE);
924                 end = roundup(paddr + phdr_ptr->p_memsz, PAGE_SIZE);
925                 size = end - start;
926
927                 /* Add this contiguous chunk of memory to vmcore list.*/
928                 new = get_new_element();
929                 if (!new)
930                         return -ENOMEM;
931                 new->paddr = start;
932                 new->size = size;
933                 list_add_tail(&new->list, vc_list);
934
935                 /* Update the program header offset. */
936                 phdr_ptr->p_offset = vmcore_off + (paddr - start);
937                 vmcore_off = vmcore_off + size;
938         }
939         return 0;
940 }
941
942 static int __init process_ptload_program_headers_elf32(char *elfptr,
943                                                 size_t elfsz,
944                                                 size_t elfnotes_sz,
945                                                 struct list_head *vc_list)
946 {
947         int i;
948         Elf32_Ehdr *ehdr_ptr;
949         Elf32_Phdr *phdr_ptr;
950         loff_t vmcore_off;
951         struct vmcore *new;
952
953         ehdr_ptr = (Elf32_Ehdr *)elfptr;
954         phdr_ptr = (Elf32_Phdr*)(elfptr + sizeof(Elf32_Ehdr)); /* PT_NOTE hdr */
955
956         /* Skip Elf header, program headers and Elf note segment. */
957         vmcore_off = elfsz + elfnotes_sz;
958
959         for (i = 0; i < ehdr_ptr->e_phnum; i++, phdr_ptr++) {
960                 u64 paddr, start, end, size;
961
962                 if (phdr_ptr->p_type != PT_LOAD)
963                         continue;
964
965                 paddr = phdr_ptr->p_offset;
966                 start = rounddown(paddr, PAGE_SIZE);
967                 end = roundup(paddr + phdr_ptr->p_memsz, PAGE_SIZE);
968                 size = end - start;
969
970                 /* Add this contiguous chunk of memory to vmcore list.*/
971                 new = get_new_element();
972                 if (!new)
973                         return -ENOMEM;
974                 new->paddr = start;
975                 new->size = size;
976                 list_add_tail(&new->list, vc_list);
977
978                 /* Update the program header offset */
979                 phdr_ptr->p_offset = vmcore_off + (paddr - start);
980                 vmcore_off = vmcore_off + size;
981         }
982         return 0;
983 }
984
985 /* Sets offset fields of vmcore elements. */
986 static void __init set_vmcore_list_offsets(size_t elfsz, size_t elfnotes_sz,
987                                            struct list_head *vc_list)
988 {
989         loff_t vmcore_off;
990         struct vmcore *m;
991
992         /* Skip Elf header, program headers and Elf note segment. */
993         vmcore_off = elfsz + elfnotes_sz;
994
995         list_for_each_entry(m, vc_list, list) {
996                 m->offset = vmcore_off;
997                 vmcore_off += m->size;
998         }
999 }
1000
1001 static void free_elfcorebuf(void)
1002 {
1003         free_pages((unsigned long)elfcorebuf, get_order(elfcorebuf_sz_orig));
1004         elfcorebuf = NULL;
1005         vfree(elfnotes_buf);
1006         elfnotes_buf = NULL;
1007 }
1008
1009 static int __init parse_crash_elf64_headers(void)
1010 {
1011         int rc=0;
1012         Elf64_Ehdr ehdr;
1013         u64 addr;
1014
1015         addr = elfcorehdr_addr;
1016
1017         /* Read Elf header */
1018         rc = elfcorehdr_read((char *)&ehdr, sizeof(Elf64_Ehdr), &addr);
1019         if (rc < 0)
1020                 return rc;
1021
1022         /* Do some basic Verification. */
1023         if (memcmp(ehdr.e_ident, ELFMAG, SELFMAG) != 0 ||
1024                 (ehdr.e_type != ET_CORE) ||
1025                 !vmcore_elf64_check_arch(&ehdr) ||
1026                 ehdr.e_ident[EI_CLASS] != ELFCLASS64 ||
1027                 ehdr.e_ident[EI_VERSION] != EV_CURRENT ||
1028                 ehdr.e_version != EV_CURRENT ||
1029                 ehdr.e_ehsize != sizeof(Elf64_Ehdr) ||
1030                 ehdr.e_phentsize != sizeof(Elf64_Phdr) ||
1031                 ehdr.e_phnum == 0) {
1032                 pr_warn("Warning: Core image elf header is not sane\n");
1033                 return -EINVAL;
1034         }
1035
1036         /* Read in all elf headers. */
1037         elfcorebuf_sz_orig = sizeof(Elf64_Ehdr) +
1038                                 ehdr.e_phnum * sizeof(Elf64_Phdr);
1039         elfcorebuf_sz = elfcorebuf_sz_orig;
1040         elfcorebuf = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
1041                                               get_order(elfcorebuf_sz_orig));
1042         if (!elfcorebuf)
1043                 return -ENOMEM;
1044         addr = elfcorehdr_addr;
1045         rc = elfcorehdr_read(elfcorebuf, elfcorebuf_sz_orig, &addr);
1046         if (rc < 0)
1047                 goto fail;
1048
1049         /* Merge all PT_NOTE headers into one. */
1050         rc = merge_note_headers_elf64(elfcorebuf, &elfcorebuf_sz,
1051                                       &elfnotes_buf, &elfnotes_sz);
1052         if (rc)
1053                 goto fail;
1054         rc = process_ptload_program_headers_elf64(elfcorebuf, elfcorebuf_sz,
1055                                                   elfnotes_sz, &vmcore_list);
1056         if (rc)
1057                 goto fail;
1058         set_vmcore_list_offsets(elfcorebuf_sz, elfnotes_sz, &vmcore_list);
1059         return 0;
1060 fail:
1061         free_elfcorebuf();
1062         return rc;
1063 }
1064
1065 static int __init parse_crash_elf32_headers(void)
1066 {
1067         int rc=0;
1068         Elf32_Ehdr ehdr;
1069         u64 addr;
1070
1071         addr = elfcorehdr_addr;
1072
1073         /* Read Elf header */
1074         rc = elfcorehdr_read((char *)&ehdr, sizeof(Elf32_Ehdr), &addr);
1075         if (rc < 0)
1076                 return rc;
1077
1078         /* Do some basic Verification. */
1079         if (memcmp(ehdr.e_ident, ELFMAG, SELFMAG) != 0 ||
1080                 (ehdr.e_type != ET_CORE) ||
1081                 !elf_check_arch(&ehdr) ||
1082                 ehdr.e_ident[EI_CLASS] != ELFCLASS32||
1083                 ehdr.e_ident[EI_VERSION] != EV_CURRENT ||
1084                 ehdr.e_version != EV_CURRENT ||
1085                 ehdr.e_ehsize != sizeof(Elf32_Ehdr) ||
1086                 ehdr.e_phentsize != sizeof(Elf32_Phdr) ||
1087                 ehdr.e_phnum == 0) {
1088                 pr_warn("Warning: Core image elf header is not sane\n");
1089                 return -EINVAL;
1090         }
1091
1092         /* Read in all elf headers. */
1093         elfcorebuf_sz_orig = sizeof(Elf32_Ehdr) + ehdr.e_phnum * sizeof(Elf32_Phdr);
1094         elfcorebuf_sz = elfcorebuf_sz_orig;
1095         elfcorebuf = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
1096                                               get_order(elfcorebuf_sz_orig));
1097         if (!elfcorebuf)
1098                 return -ENOMEM;
1099         addr = elfcorehdr_addr;
1100         rc = elfcorehdr_read(elfcorebuf, elfcorebuf_sz_orig, &addr);
1101         if (rc < 0)
1102                 goto fail;
1103
1104         /* Merge all PT_NOTE headers into one. */
1105         rc = merge_note_headers_elf32(elfcorebuf, &elfcorebuf_sz,
1106                                       &elfnotes_buf, &elfnotes_sz);
1107         if (rc)
1108                 goto fail;
1109         rc = process_ptload_program_headers_elf32(elfcorebuf, elfcorebuf_sz,
1110                                                   elfnotes_sz, &vmcore_list);
1111         if (rc)
1112                 goto fail;
1113         set_vmcore_list_offsets(elfcorebuf_sz, elfnotes_sz, &vmcore_list);
1114         return 0;
1115 fail:
1116         free_elfcorebuf();
1117         return rc;
1118 }
1119
1120 static int __init parse_crash_elf_headers(void)
1121 {
1122         unsigned char e_ident[EI_NIDENT];
1123         u64 addr;
1124         int rc=0;
1125
1126         addr = elfcorehdr_addr;
1127         rc = elfcorehdr_read(e_ident, EI_NIDENT, &addr);
1128         if (rc < 0)
1129                 return rc;
1130         if (memcmp(e_ident, ELFMAG, SELFMAG) != 0) {
1131                 pr_warn("Warning: Core image elf header not found\n");
1132                 return -EINVAL;
1133         }
1134
1135         if (e_ident[EI_CLASS] == ELFCLASS64) {
1136                 rc = parse_crash_elf64_headers();
1137                 if (rc)
1138                         return rc;
1139         } else if (e_ident[EI_CLASS] == ELFCLASS32) {
1140                 rc = parse_crash_elf32_headers();
1141                 if (rc)
1142                         return rc;
1143         } else {
1144                 pr_warn("Warning: Core image elf header is not sane\n");
1145                 return -EINVAL;
1146         }
1147
1148         /* Determine vmcore size. */
1149         vmcore_size = get_vmcore_size(elfcorebuf_sz, elfnotes_sz,
1150                                       &vmcore_list);
1151
1152         return 0;
1153 }
1154
1155 /* Init function for vmcore module. */
1156 static int __init vmcore_init(void)
1157 {
1158         int rc = 0;
1159
1160         /* Allow architectures to allocate ELF header in 2nd kernel */
1161         rc = elfcorehdr_alloc(&elfcorehdr_addr, &elfcorehdr_size);
1162         if (rc)
1163                 return rc;
1164         /*
1165          * If elfcorehdr= has been passed in cmdline or created in 2nd kernel,
1166          * then capture the dump.
1167          */
1168         if (!(is_vmcore_usable()))
1169                 return rc;
1170         rc = parse_crash_elf_headers();
1171         if (rc) {
1172                 pr_warn("Kdump: vmcore not initialized\n");
1173                 return rc;
1174         }
1175         elfcorehdr_free(elfcorehdr_addr);
1176         elfcorehdr_addr = ELFCORE_ADDR_ERR;
1177
1178         proc_vmcore = proc_create("vmcore", S_IRUSR, NULL, &proc_vmcore_operations);
1179         if (proc_vmcore)
1180                 proc_vmcore->size = vmcore_size;
1181         return 0;
1182 }
1183 fs_initcall(vmcore_init);
1184
1185 /* Cleanup function for vmcore module. */
1186 void vmcore_cleanup(void)
1187 {
1188         struct list_head *pos, *next;
1189
1190         if (proc_vmcore) {
1191                 proc_remove(proc_vmcore);
1192                 proc_vmcore = NULL;
1193         }
1194
1195         /* clear the vmcore list. */
1196         list_for_each_safe(pos, next, &vmcore_list) {
1197                 struct vmcore *m;
1198
1199                 m = list_entry(pos, struct vmcore, list);
1200                 list_del(&m->list);
1201                 kfree(m);
1202         }
1203         free_elfcorebuf();
1204 }