kcore.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638
  1. /*
  2. * fs/proc/kcore.c kernel ELF core dumper
  3. *
  4. * Modelled on fs/exec.c:aout_core_dump()
  5. * Jeremy Fitzhardinge <jeremy@sw.oz.au>
  6. * ELF version written by David Howells <David.Howells@nexor.co.uk>
  7. * Modified and incorporated into 2.3.x by Tigran Aivazian <tigran@veritas.com>
  8. * Support to dump vmalloc'd areas (ELF only), Tigran Aivazian <tigran@veritas.com>
  9. * Safe accesses to vmalloc/direct-mapped discontiguous areas, Kanoj Sarcar <kanoj@sgi.com>
  10. */
  11. #include <linux/mm.h>
  12. #include <linux/proc_fs.h>
  13. #include <linux/user.h>
  14. #include <linux/capability.h>
  15. #include <linux/elf.h>
  16. #include <linux/elfcore.h>
  17. #include <linux/vmalloc.h>
  18. #include <linux/highmem.h>
  19. #include <linux/bootmem.h>
  20. #include <linux/init.h>
  21. #include <linux/slab.h>
  22. #include <asm/uaccess.h>
  23. #include <asm/io.h>
  24. #include <linux/list.h>
  25. #include <linux/ioport.h>
  26. #include <linux/memory.h>
  27. #include <asm/sections.h>
  28. #define CORE_STR "CORE"
  29. #ifndef ELF_CORE_EFLAGS
  30. #define ELF_CORE_EFLAGS 0
  31. #endif
  32. static struct proc_dir_entry *proc_root_kcore;
  33. #ifndef kc_vaddr_to_offset
  34. #define kc_vaddr_to_offset(v) ((v) - PAGE_OFFSET)
  35. #endif
  36. #ifndef kc_offset_to_vaddr
  37. #define kc_offset_to_vaddr(o) ((o) + PAGE_OFFSET)
  38. #endif
  39. /* An ELF note in memory */
  40. struct memelfnote
  41. {
  42. const char *name;
  43. int type;
  44. unsigned int datasz;
  45. void *data;
  46. };
  47. static LIST_HEAD(kclist_head);
  48. static DEFINE_RWLOCK(kclist_lock);
  49. static int kcore_need_update = 1;
  50. void
  51. kclist_add(struct kcore_list *new, void *addr, size_t size, int type)
  52. {
  53. new->addr = (unsigned long)addr;
  54. new->size = size;
  55. new->type = type;
  56. write_lock(&kclist_lock);
  57. list_add_tail(&new->list, &kclist_head);
  58. write_unlock(&kclist_lock);
  59. }
  60. static size_t get_kcore_size(int *nphdr, size_t *elf_buflen)
  61. {
  62. size_t try, size;
  63. struct kcore_list *m;
  64. *nphdr = 1; /* PT_NOTE */
  65. size = 0;
  66. list_for_each_entry(m, &kclist_head, list) {
  67. try = kc_vaddr_to_offset((size_t)m->addr + m->size);
  68. if (try > size)
  69. size = try;
  70. *nphdr = *nphdr + 1;
  71. }
  72. *elf_buflen = sizeof(struct elfhdr) +
  73. (*nphdr + 2)*sizeof(struct elf_phdr) +
  74. 3 * ((sizeof(struct elf_note)) +
  75. roundup(sizeof(CORE_STR), 4)) +
  76. roundup(sizeof(struct elf_prstatus), 4) +
  77. roundup(sizeof(struct elf_prpsinfo), 4) +
  78. roundup(sizeof(struct task_struct), 4);
  79. *elf_buflen = PAGE_ALIGN(*elf_buflen);
  80. return size + *elf_buflen;
  81. }
  82. static void free_kclist_ents(struct list_head *head)
  83. {
  84. struct kcore_list *tmp, *pos;
  85. list_for_each_entry_safe(pos, tmp, head, list) {
  86. list_del(&pos->list);
  87. kfree(pos);
  88. }
  89. }
  90. /*
  91. * Replace all KCORE_RAM/KCORE_VMEMMAP information with passed list.
  92. */
  93. static void __kcore_update_ram(struct list_head *list)
  94. {
  95. int nphdr;
  96. size_t size;
  97. struct kcore_list *tmp, *pos;
  98. LIST_HEAD(garbage);
  99. write_lock(&kclist_lock);
  100. if (kcore_need_update) {
  101. list_for_each_entry_safe(pos, tmp, &kclist_head, list) {
  102. if (pos->type == KCORE_RAM
  103. || pos->type == KCORE_VMEMMAP)
  104. list_move(&pos->list, &garbage);
  105. }
  106. list_splice_tail(list, &kclist_head);
  107. } else
  108. list_splice(list, &garbage);
  109. kcore_need_update = 0;
  110. proc_root_kcore->size = get_kcore_size(&nphdr, &size);
  111. write_unlock(&kclist_lock);
  112. free_kclist_ents(&garbage);
  113. }
  114. #ifdef CONFIG_HIGHMEM
  115. /*
  116. * If no highmem, we can assume [0...max_low_pfn) continuous range of memory
  117. * because memory hole is not as big as !HIGHMEM case.
  118. * (HIGHMEM is special because part of memory is _invisible_ from the kernel.)
  119. */
  120. static int kcore_update_ram(void)
  121. {
  122. LIST_HEAD(head);
  123. struct kcore_list *ent;
  124. int ret = 0;
  125. ent = kmalloc(sizeof(*ent), GFP_KERNEL);
  126. if (!ent)
  127. return -ENOMEM;
  128. ent->addr = (unsigned long)__va(0);
  129. ent->size = max_low_pfn << PAGE_SHIFT;
  130. ent->type = KCORE_RAM;
  131. list_add(&ent->list, &head);
  132. __kcore_update_ram(&head);
  133. return ret;
  134. }
  135. #else /* !CONFIG_HIGHMEM */
  136. #ifdef CONFIG_SPARSEMEM_VMEMMAP
  137. /* calculate vmemmap's address from given system ram pfn and register it */
  138. static int
  139. get_sparsemem_vmemmap_info(struct kcore_list *ent, struct list_head *head)
  140. {
  141. unsigned long pfn = __pa(ent->addr) >> PAGE_SHIFT;
  142. unsigned long nr_pages = ent->size >> PAGE_SHIFT;
  143. unsigned long start, end;
  144. struct kcore_list *vmm, *tmp;
  145. start = ((unsigned long)pfn_to_page(pfn)) & PAGE_MASK;
  146. end = ((unsigned long)pfn_to_page(pfn + nr_pages)) - 1;
  147. end = ALIGN(end, PAGE_SIZE);
  148. /* overlap check (because we have to align page */
  149. list_for_each_entry(tmp, head, list) {
  150. if (tmp->type != KCORE_VMEMMAP)
  151. continue;
  152. if (start < tmp->addr + tmp->size)
  153. if (end > tmp->addr)
  154. end = tmp->addr;
  155. }
  156. if (start < end) {
  157. vmm = kmalloc(sizeof(*vmm), GFP_KERNEL);
  158. if (!vmm)
  159. return 0;
  160. vmm->addr = start;
  161. vmm->size = end - start;
  162. vmm->type = KCORE_VMEMMAP;
  163. list_add_tail(&vmm->list, head);
  164. }
  165. return 1;
  166. }
  167. #else
  168. static int
  169. get_sparsemem_vmemmap_info(struct kcore_list *ent, struct list_head *head)
  170. {
  171. return 1;
  172. }
  173. #endif
  174. static int
  175. kclist_add_private(unsigned long pfn, unsigned long nr_pages, void *arg)
  176. {
  177. struct list_head *head = (struct list_head *)arg;
  178. struct kcore_list *ent;
  179. ent = kmalloc(sizeof(*ent), GFP_KERNEL);
  180. if (!ent)
  181. return -ENOMEM;
  182. ent->addr = (unsigned long)__va((pfn << PAGE_SHIFT));
  183. ent->size = nr_pages << PAGE_SHIFT;
  184. /* Sanity check: Can happen in 32bit arch...maybe */
  185. if (ent->addr < (unsigned long) __va(0))
  186. goto free_out;
  187. /* cut not-mapped area. ....from ppc-32 code. */
  188. if (ULONG_MAX - ent->addr < ent->size)
  189. ent->size = ULONG_MAX - ent->addr;
  190. /* cut when vmalloc() area is higher than direct-map area */
  191. if (VMALLOC_START > (unsigned long)__va(0)) {
  192. if (ent->addr > VMALLOC_START)
  193. goto free_out;
  194. if (VMALLOC_START - ent->addr < ent->size)
  195. ent->size = VMALLOC_START - ent->addr;
  196. }
  197. ent->type = KCORE_RAM;
  198. list_add_tail(&ent->list, head);
  199. if (!get_sparsemem_vmemmap_info(ent, head)) {
  200. list_del(&ent->list);
  201. goto free_out;
  202. }
  203. return 0;
  204. free_out:
  205. kfree(ent);
  206. return 1;
  207. }
  208. static int kcore_update_ram(void)
  209. {
  210. int nid, ret;
  211. unsigned long end_pfn;
  212. LIST_HEAD(head);
  213. /* Not inialized....update now */
  214. /* find out "max pfn" */
  215. end_pfn = 0;
  216. for_each_node_state(nid, N_MEMORY) {
  217. unsigned long node_end;
  218. node_end = NODE_DATA(nid)->node_start_pfn +
  219. NODE_DATA(nid)->node_spanned_pages;
  220. if (end_pfn < node_end)
  221. end_pfn = node_end;
  222. }
  223. /* scan 0 to max_pfn */
  224. ret = walk_system_ram_range(0, end_pfn, &head, kclist_add_private);
  225. if (ret) {
  226. free_kclist_ents(&head);
  227. return -ENOMEM;
  228. }
  229. __kcore_update_ram(&head);
  230. return ret;
  231. }
  232. #endif /* CONFIG_HIGHMEM */
  233. /*****************************************************************************/
  234. /*
  235. * determine size of ELF note
  236. */
  237. static int notesize(struct memelfnote *en)
  238. {
  239. int sz;
  240. sz = sizeof(struct elf_note);
  241. sz += roundup((strlen(en->name) + 1), 4);
  242. sz += roundup(en->datasz, 4);
  243. return sz;
  244. } /* end notesize() */
  245. /*****************************************************************************/
  246. /*
  247. * store a note in the header buffer
  248. */
  249. static char *storenote(struct memelfnote *men, char *bufp)
  250. {
  251. struct elf_note en;
  252. #define DUMP_WRITE(addr,nr) do { memcpy(bufp,addr,nr); bufp += nr; } while(0)
  253. en.n_namesz = strlen(men->name) + 1;
  254. en.n_descsz = men->datasz;
  255. en.n_type = men->type;
  256. DUMP_WRITE(&en, sizeof(en));
  257. DUMP_WRITE(men->name, en.n_namesz);
  258. /* XXX - cast from long long to long to avoid need for libgcc.a */
  259. bufp = (char*) roundup((unsigned long)bufp,4);
  260. DUMP_WRITE(men->data, men->datasz);
  261. bufp = (char*) roundup((unsigned long)bufp,4);
  262. #undef DUMP_WRITE
  263. return bufp;
  264. } /* end storenote() */
  265. /*
  266. * store an ELF coredump header in the supplied buffer
  267. * nphdr is the number of elf_phdr to insert
  268. */
  269. static void elf_kcore_store_hdr(char *bufp, int nphdr, int dataoff)
  270. {
  271. struct elf_prstatus prstatus; /* NT_PRSTATUS */
  272. struct elf_prpsinfo prpsinfo; /* NT_PRPSINFO */
  273. struct elf_phdr *nhdr, *phdr;
  274. struct elfhdr *elf;
  275. struct memelfnote notes[3];
  276. off_t offset = 0;
  277. struct kcore_list *m;
  278. /* setup ELF header */
  279. elf = (struct elfhdr *) bufp;
  280. bufp += sizeof(struct elfhdr);
  281. offset += sizeof(struct elfhdr);
  282. memcpy(elf->e_ident, ELFMAG, SELFMAG);
  283. elf->e_ident[EI_CLASS] = ELF_CLASS;
  284. elf->e_ident[EI_DATA] = ELF_DATA;
  285. elf->e_ident[EI_VERSION]= EV_CURRENT;
  286. elf->e_ident[EI_OSABI] = ELF_OSABI;
  287. memset(elf->e_ident+EI_PAD, 0, EI_NIDENT-EI_PAD);
  288. elf->e_type = ET_CORE;
  289. elf->e_machine = ELF_ARCH;
  290. elf->e_version = EV_CURRENT;
  291. elf->e_entry = 0;
  292. elf->e_phoff = sizeof(struct elfhdr);
  293. elf->e_shoff = 0;
  294. elf->e_flags = ELF_CORE_EFLAGS;
  295. elf->e_ehsize = sizeof(struct elfhdr);
  296. elf->e_phentsize= sizeof(struct elf_phdr);
  297. elf->e_phnum = nphdr;
  298. elf->e_shentsize= 0;
  299. elf->e_shnum = 0;
  300. elf->e_shstrndx = 0;
  301. /* setup ELF PT_NOTE program header */
  302. nhdr = (struct elf_phdr *) bufp;
  303. bufp += sizeof(struct elf_phdr);
  304. offset += sizeof(struct elf_phdr);
  305. nhdr->p_type = PT_NOTE;
  306. nhdr->p_offset = 0;
  307. nhdr->p_vaddr = 0;
  308. nhdr->p_paddr = 0;
  309. nhdr->p_filesz = 0;
  310. nhdr->p_memsz = 0;
  311. nhdr->p_flags = 0;
  312. nhdr->p_align = 0;
  313. /* setup ELF PT_LOAD program header for every area */
  314. list_for_each_entry(m, &kclist_head, list) {
  315. phdr = (struct elf_phdr *) bufp;
  316. bufp += sizeof(struct elf_phdr);
  317. offset += sizeof(struct elf_phdr);
  318. phdr->p_type = PT_LOAD;
  319. phdr->p_flags = PF_R|PF_W|PF_X;
  320. phdr->p_offset = kc_vaddr_to_offset(m->addr) + dataoff;
  321. phdr->p_vaddr = (size_t)m->addr;
  322. phdr->p_paddr = 0;
  323. phdr->p_filesz = phdr->p_memsz = m->size;
  324. phdr->p_align = PAGE_SIZE;
  325. }
  326. /*
  327. * Set up the notes in similar form to SVR4 core dumps made
  328. * with info from their /proc.
  329. */
  330. nhdr->p_offset = offset;
  331. /* set up the process status */
  332. notes[0].name = CORE_STR;
  333. notes[0].type = NT_PRSTATUS;
  334. notes[0].datasz = sizeof(struct elf_prstatus);
  335. notes[0].data = &prstatus;
  336. memset(&prstatus, 0, sizeof(struct elf_prstatus));
  337. nhdr->p_filesz = notesize(&notes[0]);
  338. bufp = storenote(&notes[0], bufp);
  339. /* set up the process info */
  340. notes[1].name = CORE_STR;
  341. notes[1].type = NT_PRPSINFO;
  342. notes[1].datasz = sizeof(struct elf_prpsinfo);
  343. notes[1].data = &prpsinfo;
  344. memset(&prpsinfo, 0, sizeof(struct elf_prpsinfo));
  345. prpsinfo.pr_state = 0;
  346. prpsinfo.pr_sname = 'R';
  347. prpsinfo.pr_zomb = 0;
  348. strcpy(prpsinfo.pr_fname, "vmlinux");
  349. strncpy(prpsinfo.pr_psargs, saved_command_line, ELF_PRARGSZ);
  350. nhdr->p_filesz += notesize(&notes[1]);
  351. bufp = storenote(&notes[1], bufp);
  352. /* set up the task structure */
  353. notes[2].name = CORE_STR;
  354. notes[2].type = NT_TASKSTRUCT;
  355. notes[2].datasz = sizeof(struct task_struct);
  356. notes[2].data = current;
  357. nhdr->p_filesz += notesize(&notes[2]);
  358. bufp = storenote(&notes[2], bufp);
  359. } /* end elf_kcore_store_hdr() */
  360. /*****************************************************************************/
  361. /*
  362. * read from the ELF header and then kernel memory
  363. */
  364. static ssize_t
  365. read_kcore(struct file *file, char __user *buffer, size_t buflen, loff_t *fpos)
  366. {
  367. ssize_t acc = 0;
  368. size_t size, tsz;
  369. size_t elf_buflen;
  370. int nphdr;
  371. unsigned long start;
  372. read_lock(&kclist_lock);
  373. size = get_kcore_size(&nphdr, &elf_buflen);
  374. if (buflen == 0 || *fpos >= size) {
  375. read_unlock(&kclist_lock);
  376. return 0;
  377. }
  378. /* trim buflen to not go beyond EOF */
  379. if (buflen > size - *fpos)
  380. buflen = size - *fpos;
  381. /* construct an ELF core header if we'll need some of it */
  382. if (*fpos < elf_buflen) {
  383. char * elf_buf;
  384. tsz = elf_buflen - *fpos;
  385. if (buflen < tsz)
  386. tsz = buflen;
  387. elf_buf = kzalloc(elf_buflen, GFP_ATOMIC);
  388. if (!elf_buf) {
  389. read_unlock(&kclist_lock);
  390. return -ENOMEM;
  391. }
  392. elf_kcore_store_hdr(elf_buf, nphdr, elf_buflen);
  393. read_unlock(&kclist_lock);
  394. if (copy_to_user(buffer, elf_buf + *fpos, tsz)) {
  395. kfree(elf_buf);
  396. return -EFAULT;
  397. }
  398. kfree(elf_buf);
  399. buflen -= tsz;
  400. *fpos += tsz;
  401. buffer += tsz;
  402. acc += tsz;
  403. /* leave now if filled buffer already */
  404. if (buflen == 0)
  405. return acc;
  406. } else
  407. read_unlock(&kclist_lock);
  408. /*
  409. * Check to see if our file offset matches with any of
  410. * the addresses in the elf_phdr on our list.
  411. */
  412. start = kc_offset_to_vaddr(*fpos - elf_buflen);
  413. if ((tsz = (PAGE_SIZE - (start & ~PAGE_MASK))) > buflen)
  414. tsz = buflen;
  415. while (buflen) {
  416. struct kcore_list *m;
  417. read_lock(&kclist_lock);
  418. list_for_each_entry(m, &kclist_head, list) {
  419. if (start >= m->addr && start < (m->addr+m->size))
  420. break;
  421. }
  422. read_unlock(&kclist_lock);
  423. if (&m->list == &kclist_head) {
  424. if (clear_user(buffer, tsz))
  425. return -EFAULT;
  426. } else if (is_vmalloc_or_module_addr((void *)start)) {
  427. char * elf_buf;
  428. elf_buf = kzalloc(tsz, GFP_KERNEL);
  429. if (!elf_buf)
  430. return -ENOMEM;
  431. vread(elf_buf, (char *)start, tsz);
  432. /* we have to zero-fill user buffer even if no read */
  433. if (copy_to_user(buffer, elf_buf, tsz)) {
  434. kfree(elf_buf);
  435. return -EFAULT;
  436. }
  437. kfree(elf_buf);
  438. } else {
  439. if (kern_addr_valid(start)) {
  440. unsigned long n;
  441. n = copy_to_user(buffer, (char *)start, tsz);
  442. /*
  443. * We cannot distinguish between fault on source
  444. * and fault on destination. When this happens
  445. * we clear too and hope it will trigger the
  446. * EFAULT again.
  447. */
  448. if (n) {
  449. if (clear_user(buffer + tsz - n,
  450. n))
  451. return -EFAULT;
  452. }
  453. } else {
  454. if (clear_user(buffer, tsz))
  455. return -EFAULT;
  456. }
  457. }
  458. buflen -= tsz;
  459. *fpos += tsz;
  460. buffer += tsz;
  461. acc += tsz;
  462. start += tsz;
  463. tsz = (buflen > PAGE_SIZE ? PAGE_SIZE : buflen);
  464. }
  465. return acc;
  466. }
  467. static int open_kcore(struct inode *inode, struct file *filp)
  468. {
  469. if (!capable(CAP_SYS_RAWIO))
  470. return -EPERM;
  471. if (kcore_need_update)
  472. kcore_update_ram();
  473. if (i_size_read(inode) != proc_root_kcore->size) {
  474. mutex_lock(&inode->i_mutex);
  475. i_size_write(inode, proc_root_kcore->size);
  476. mutex_unlock(&inode->i_mutex);
  477. }
  478. return 0;
  479. }
  480. static const struct file_operations proc_kcore_operations = {
  481. .read = read_kcore,
  482. .open = open_kcore,
  483. .llseek = default_llseek,
  484. };
  485. #ifdef CONFIG_MEMORY_HOTPLUG
  486. /* just remember that we have to update kcore */
  487. static int __meminit kcore_callback(struct notifier_block *self,
  488. unsigned long action, void *arg)
  489. {
  490. switch (action) {
  491. case MEM_ONLINE:
  492. case MEM_OFFLINE:
  493. write_lock(&kclist_lock);
  494. kcore_need_update = 1;
  495. write_unlock(&kclist_lock);
  496. }
  497. return NOTIFY_OK;
  498. }
  499. #endif
  500. static struct kcore_list kcore_vmalloc;
  501. #ifdef CONFIG_ARCH_PROC_KCORE_TEXT
  502. static struct kcore_list kcore_text;
  503. /*
  504. * If defined, special segment is used for mapping kernel text instead of
  505. * direct-map area. We need to create special TEXT section.
  506. */
  507. static void __init proc_kcore_text_init(void)
  508. {
  509. kclist_add(&kcore_text, _text, _end - _text, KCORE_TEXT);
  510. }
  511. #else
  512. static void __init proc_kcore_text_init(void)
  513. {
  514. }
  515. #endif
  516. #if defined(CONFIG_MODULES) && defined(MODULES_VADDR)
  517. /*
  518. * MODULES_VADDR has no intersection with VMALLOC_ADDR.
  519. */
  520. struct kcore_list kcore_modules;
  521. static void __init add_modules_range(void)
  522. {
  523. kclist_add(&kcore_modules, (void *)MODULES_VADDR,
  524. MODULES_END - MODULES_VADDR, KCORE_VMALLOC);
  525. }
  526. #else
  527. static void __init add_modules_range(void)
  528. {
  529. }
  530. #endif
  531. static int __init proc_kcore_init(void)
  532. {
  533. proc_root_kcore = proc_create("kcore", S_IRUSR, NULL,
  534. &proc_kcore_operations);
  535. if (!proc_root_kcore) {
  536. printk(KERN_ERR "couldn't create /proc/kcore\n");
  537. return 0; /* Always returns 0. */
  538. }
  539. /* Store text area if it's special */
  540. proc_kcore_text_init();
  541. /* Store vmalloc area */
  542. kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
  543. VMALLOC_END - VMALLOC_START, KCORE_VMALLOC);
  544. add_modules_range();
  545. /* Store direct-map area from physical memory map */
  546. kcore_update_ram();
  547. hotplug_memory_notifier(kcore_callback, 0);
  548. return 0;
  549. }
  550. module_init(proc_kcore_init);