kcore.c 15 KB

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