kcore.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:11k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * fs/proc/kcore.c kernel ELF/AOUT 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/config.h>
  12. #include <linux/mm.h>
  13. #include <linux/proc_fs.h>
  14. #include <linux/user.h>
  15. #include <linux/a.out.h>
  16. #include <linux/elf.h>
  17. #include <linux/elfcore.h>
  18. #include <linux/vmalloc.h>
  19. #include <linux/highmem.h>
  20. #include <asm/uaccess.h>
  21. #include <asm/io.h>
  22. static int open_kcore(struct inode * inode, struct file * filp)
  23. {
  24. return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
  25. }
  26. static ssize_t read_kcore(struct file *, char *, size_t, loff_t *);
  27. struct file_operations proc_kcore_operations = {
  28. read: read_kcore,
  29. open: open_kcore,
  30. };
  31. #ifdef CONFIG_KCORE_AOUT
  32. static ssize_t read_kcore(struct file *file, char *buf, size_t count, loff_t *ppos)
  33. {
  34. unsigned long long p = *ppos, memsize;
  35. ssize_t read;
  36. ssize_t count1;
  37. char * pnt;
  38. struct user dump;
  39. #if defined (__i386__) || defined (__mc68000__) || defined(__x86_64__)
  40. # define FIRST_MAPPED PAGE_SIZE /* we don't have page 0 mapped on x86.. */
  41. #else
  42. # define FIRST_MAPPED 0
  43. #endif
  44. memset(&dump, 0, sizeof(struct user));
  45. dump.magic = CMAGIC;
  46. dump.u_dsize = (virt_to_phys(high_memory) >> PAGE_SHIFT);
  47. #if defined (__i386__) || defined(__x86_64__)
  48. dump.start_code = PAGE_OFFSET;
  49. #endif
  50. #ifdef __alpha__
  51. dump.start_data = PAGE_OFFSET;
  52. #endif
  53. memsize = virt_to_phys(high_memory);
  54. if (p >= memsize)
  55. return 0;
  56. if (count > memsize - p)
  57. count = memsize - p;
  58. read = 0;
  59. if (p < sizeof(struct user) && count > 0) {
  60. count1 = count;
  61. if (p + count1 > sizeof(struct user))
  62. count1 = sizeof(struct user)-p;
  63. pnt = (char *) &dump + p;
  64. if (copy_to_user(buf,(void *) pnt, count1))
  65. return -EFAULT;
  66. buf += count1;
  67. p += count1;
  68. count -= count1;
  69. read += count1;
  70. }
  71. if (count > 0 && p < PAGE_SIZE + FIRST_MAPPED) {
  72. count1 = PAGE_SIZE + FIRST_MAPPED - p;
  73. if (count1 > count)
  74. count1 = count;
  75. if (clear_user(buf, count1))
  76. return -EFAULT;
  77. buf += count1;
  78. p += count1;
  79. count -= count1;
  80. read += count1;
  81. }
  82. if (count > 0) {
  83. if (copy_to_user(buf, (void *) (PAGE_OFFSET+p-PAGE_SIZE), count))
  84. return -EFAULT;
  85. read += count;
  86. }
  87. *ppos += read;
  88. return read;
  89. }
  90. #else /* CONFIG_KCORE_AOUT */
  91. #define roundup(x, y)  ((((x)+((y)-1))/(y))*(y))
  92. /* An ELF note in memory */
  93. struct memelfnote
  94. {
  95. const char *name;
  96. int type;
  97. unsigned int datasz;
  98. void *data;
  99. };
  100. extern char saved_command_line[];
  101. static size_t get_kcore_size(int *num_vma, size_t *elf_buflen)
  102. {
  103. size_t try, size;
  104. struct vm_struct *m;
  105. *num_vma = 0;
  106. size = ((size_t)high_memory - PAGE_OFFSET + PAGE_SIZE);
  107. if (!vmlist) {
  108. *elf_buflen = PAGE_SIZE;
  109. return (size);
  110. }
  111. for (m=vmlist; m; m=m->next) {
  112. try = (size_t)m->addr + m->size;
  113. if (try > size)
  114. size = try;
  115. *num_vma = *num_vma + 1;
  116. }
  117. *elf_buflen = sizeof(struct elfhdr) + 
  118. (*num_vma + 2)*sizeof(struct elf_phdr) + 
  119. 3 * sizeof(struct memelfnote);
  120. *elf_buflen = PAGE_ALIGN(*elf_buflen);
  121. return (size - PAGE_OFFSET + *elf_buflen);
  122. }
  123. /*****************************************************************************/
  124. /*
  125.  * determine size of ELF note
  126.  */
  127. static int notesize(struct memelfnote *en)
  128. {
  129. int sz;
  130. sz = sizeof(struct elf_note);
  131. sz += roundup(strlen(en->name), 4);
  132. sz += roundup(en->datasz, 4);
  133. return sz;
  134. } /* end notesize() */
  135. /*****************************************************************************/
  136. /*
  137.  * store a note in the header buffer
  138.  */
  139. static char *storenote(struct memelfnote *men, char *bufp)
  140. {
  141. struct elf_note en;
  142. #define DUMP_WRITE(addr,nr) do { memcpy(bufp,addr,nr); bufp += nr; } while(0)
  143. en.n_namesz = strlen(men->name);
  144. en.n_descsz = men->datasz;
  145. en.n_type = men->type;
  146. DUMP_WRITE(&en, sizeof(en));
  147. DUMP_WRITE(men->name, en.n_namesz);
  148. /* XXX - cast from long long to long to avoid need for libgcc.a */
  149. bufp = (char*) roundup((unsigned long)bufp,4);
  150. DUMP_WRITE(men->data, men->datasz);
  151. bufp = (char*) roundup((unsigned long)bufp,4);
  152. #undef DUMP_WRITE
  153. return bufp;
  154. } /* end storenote() */
  155. /*
  156.  * store an ELF coredump header in the supplied buffer
  157.  * num_vma is the number of elements in vmlist
  158.  */
  159. static void elf_kcore_store_hdr(char *bufp, int num_vma, int dataoff)
  160. {
  161. struct elf_prstatus prstatus; /* NT_PRSTATUS */
  162. struct elf_prpsinfo prpsinfo; /* NT_PRPSINFO */
  163. struct elf_phdr *nhdr, *phdr;
  164. struct elfhdr *elf;
  165. struct memelfnote notes[3];
  166. off_t offset = 0;
  167. struct vm_struct *m;
  168. /* setup ELF header */
  169. elf = (struct elfhdr *) bufp;
  170. bufp += sizeof(struct elfhdr);
  171. offset += sizeof(struct elfhdr);
  172. memcpy(elf->e_ident, ELFMAG, SELFMAG);
  173. elf->e_ident[EI_CLASS] = ELF_CLASS;
  174. elf->e_ident[EI_DATA] = ELF_DATA;
  175. elf->e_ident[EI_VERSION]= EV_CURRENT;
  176. memset(elf->e_ident+EI_PAD, 0, EI_NIDENT-EI_PAD);
  177. elf->e_type = ET_CORE;
  178. elf->e_machine = ELF_ARCH;
  179. elf->e_version = EV_CURRENT;
  180. elf->e_entry = 0;
  181. elf->e_phoff = sizeof(struct elfhdr);
  182. elf->e_shoff = 0;
  183. elf->e_flags = 0;
  184. elf->e_ehsize = sizeof(struct elfhdr);
  185. elf->e_phentsize= sizeof(struct elf_phdr);
  186. elf->e_phnum = 2 + num_vma;
  187. elf->e_shentsize= 0;
  188. elf->e_shnum = 0;
  189. elf->e_shstrndx = 0;
  190. /* setup ELF PT_NOTE program header */
  191. nhdr = (struct elf_phdr *) bufp;
  192. bufp += sizeof(struct elf_phdr);
  193. offset += sizeof(struct elf_phdr);
  194. nhdr->p_type = PT_NOTE;
  195. nhdr->p_offset = 0;
  196. nhdr->p_vaddr = 0;
  197. nhdr->p_paddr = 0;
  198. nhdr->p_filesz = 0;
  199. nhdr->p_memsz = 0;
  200. nhdr->p_flags = 0;
  201. nhdr->p_align = 0;
  202. /* setup ELF PT_LOAD program header for the 
  203.  * virtual range 0xc0000000 -> high_memory */
  204. phdr = (struct elf_phdr *) bufp;
  205. bufp += sizeof(struct elf_phdr);
  206. offset += sizeof(struct elf_phdr);
  207. phdr->p_type = PT_LOAD;
  208. phdr->p_flags = PF_R|PF_W|PF_X;
  209. phdr->p_offset = dataoff;
  210. phdr->p_vaddr = PAGE_OFFSET;
  211. phdr->p_paddr = __pa(PAGE_OFFSET);
  212. phdr->p_filesz = phdr->p_memsz = ((unsigned long)high_memory - PAGE_OFFSET);
  213. phdr->p_align = PAGE_SIZE;
  214. /* setup ELF PT_LOAD program header for every vmalloc'd area */
  215. for (m=vmlist; m; m=m->next) {
  216. if (m->flags & VM_IOREMAP) /* don't dump ioremap'd stuff! (TA) */
  217. continue;
  218. phdr = (struct elf_phdr *) bufp;
  219. bufp += sizeof(struct elf_phdr);
  220. offset += sizeof(struct elf_phdr);
  221. phdr->p_type = PT_LOAD;
  222. phdr->p_flags = PF_R|PF_W|PF_X;
  223. phdr->p_offset = (size_t)m->addr - PAGE_OFFSET + dataoff;
  224. phdr->p_vaddr = (size_t)m->addr;
  225. phdr->p_paddr = __pa(m->addr);
  226. phdr->p_filesz = phdr->p_memsz = m->size;
  227. phdr->p_align = PAGE_SIZE;
  228. }
  229. /*
  230.  * Set up the notes in similar form to SVR4 core dumps made
  231.  * with info from their /proc.
  232.  */
  233. nhdr->p_offset = offset;
  234. /* set up the process status */
  235. notes[0].name = "CORE";
  236. notes[0].type = NT_PRSTATUS;
  237. notes[0].datasz = sizeof(struct elf_prstatus);
  238. notes[0].data = &prstatus;
  239. memset(&prstatus, 0, sizeof(struct elf_prstatus));
  240. nhdr->p_filesz = notesize(&notes[0]);
  241. bufp = storenote(&notes[0], bufp);
  242. /* set up the process info */
  243. notes[1].name = "CORE";
  244. notes[1].type = NT_PRPSINFO;
  245. notes[1].datasz = sizeof(struct elf_prpsinfo);
  246. notes[1].data = &prpsinfo;
  247. memset(&prpsinfo, 0, sizeof(struct elf_prpsinfo));
  248. prpsinfo.pr_state = 0;
  249. prpsinfo.pr_sname = 'R';
  250. prpsinfo.pr_zomb = 0;
  251. strcpy(prpsinfo.pr_fname, "vmlinux");
  252. strncpy(prpsinfo.pr_psargs, saved_command_line, ELF_PRARGSZ);
  253. nhdr->p_filesz = notesize(&notes[1]);
  254. bufp = storenote(&notes[1], bufp);
  255. /* set up the task structure */
  256. notes[2].name = "CORE";
  257. notes[2].type = NT_TASKSTRUCT;
  258. notes[2].datasz = sizeof(struct task_struct);
  259. notes[2].data = current;
  260. nhdr->p_filesz = notesize(&notes[2]);
  261. bufp = storenote(&notes[2], bufp);
  262. } /* end elf_kcore_store_hdr() */
  263. /*****************************************************************************/
  264. /*
  265.  * read from the ELF header and then kernel memory
  266.  */
  267. static ssize_t read_kcore(struct file *file, char *buffer, size_t buflen, loff_t *fpos)
  268. {
  269. ssize_t acc = 0;
  270. size_t size, tsz;
  271. size_t elf_buflen;
  272. int num_vma;
  273. unsigned long start;
  274. read_lock(&vmlist_lock);
  275. proc_root_kcore->size = size = get_kcore_size(&num_vma, &elf_buflen);
  276. if (buflen == 0 || *fpos >= size) {
  277. read_unlock(&vmlist_lock);
  278. return 0;
  279. }
  280. /* trim buflen to not go beyond EOF */
  281. if (buflen > size - *fpos)
  282. buflen = size - *fpos;
  283. /* construct an ELF core header if we'll need some of it */
  284. if (*fpos < elf_buflen) {
  285. char * elf_buf;
  286. tsz = elf_buflen - *fpos;
  287. if (buflen < tsz)
  288. tsz = buflen;
  289. elf_buf = kmalloc(elf_buflen, GFP_ATOMIC);
  290. if (!elf_buf) {
  291. read_unlock(&vmlist_lock);
  292. return -ENOMEM;
  293. }
  294. memset(elf_buf, 0, elf_buflen);
  295. elf_kcore_store_hdr(elf_buf, num_vma, elf_buflen);
  296. read_unlock(&vmlist_lock);
  297. if (copy_to_user(buffer, elf_buf + *fpos, tsz)) {
  298. kfree(elf_buf);
  299. return -EFAULT;
  300. }
  301. kfree(elf_buf);
  302. buflen -= tsz;
  303. *fpos += tsz;
  304. buffer += tsz;
  305. acc += tsz;
  306. /* leave now if filled buffer already */
  307. if (buflen == 0)
  308. return acc;
  309. } else
  310. read_unlock(&vmlist_lock);
  311. /* where page 0 not mapped, write zeros into buffer */
  312. #if defined (__i386__) || defined (__mc68000__) || defined(__x86_64__)
  313. if (*fpos < PAGE_SIZE + elf_buflen) {
  314. /* work out how much to clear */
  315. tsz = PAGE_SIZE + elf_buflen - *fpos;
  316. if (buflen < tsz)
  317. tsz = buflen;
  318. /* write zeros to buffer */
  319. if (clear_user(buffer, tsz))
  320. return -EFAULT;
  321. buflen -= tsz;
  322. *fpos += tsz;
  323. buffer += tsz;
  324. acc += tsz;
  325. /* leave now if filled buffer already */
  326. if (buflen == 0)
  327. return tsz;
  328. }
  329. #endif
  330. /* fill the remainder of the buffer from kernel VM space */
  331. start = (unsigned long)__va(*fpos - elf_buflen);
  332. if ((tsz = (PAGE_SIZE - (start & ~PAGE_MASK))) > buflen)
  333. tsz = buflen;
  334. while (buflen) {
  335. if ((start >= VMALLOC_START) && (start < VMALLOC_END)) {
  336. char * elf_buf;
  337. struct vm_struct *m;
  338. unsigned long curstart = start;
  339. unsigned long cursize = tsz;
  340. elf_buf = kmalloc(tsz, GFP_KERNEL);
  341. if (!elf_buf)
  342. return -ENOMEM;
  343. memset(elf_buf, 0, tsz);
  344. read_lock(&vmlist_lock);
  345. for (m=vmlist; m && cursize; m=m->next) {
  346. unsigned long vmstart;
  347. unsigned long vmsize;
  348. unsigned long msize = m->size - PAGE_SIZE;
  349. if (((unsigned long)m->addr + msize) < 
  350. curstart)
  351. continue;
  352. if ((unsigned long)m->addr > (curstart + 
  353. cursize))
  354. break;
  355. vmstart = (curstart < (unsigned long)m->addr ? 
  356. (unsigned long)m->addr : curstart);
  357. if (((unsigned long)m->addr + msize) > 
  358. (curstart + cursize))
  359. vmsize = curstart + cursize - vmstart;
  360. else
  361. vmsize = (unsigned long)m->addr + 
  362. msize - vmstart;
  363. curstart = vmstart + vmsize;
  364. cursize -= vmsize;
  365. /* don't dump ioremap'd stuff! (TA) */
  366. if (m->flags & VM_IOREMAP)
  367. continue;
  368. memcpy(elf_buf + (vmstart - start),
  369. (char *)vmstart, vmsize);
  370. }
  371. read_unlock(&vmlist_lock);
  372. if (copy_to_user(buffer, elf_buf, tsz)) {
  373. kfree(elf_buf);
  374. return -EFAULT;
  375. }
  376. kfree(elf_buf);
  377. } else if ((start > PAGE_OFFSET) && (start < 
  378. (unsigned long)high_memory)) {
  379. if (kern_addr_valid(start)) {
  380. if (copy_to_user(buffer, (char *)start, tsz))
  381. return -EFAULT;
  382. } else {
  383. if (clear_user(buffer, tsz))
  384. return -EFAULT;
  385. }
  386. } else {
  387. if (clear_user(buffer, tsz))
  388. return -EFAULT;
  389. }
  390. buflen -= tsz;
  391. *fpos += tsz;
  392. buffer += tsz;
  393. acc += tsz;
  394. start += tsz;
  395. tsz = (buflen > PAGE_SIZE ? PAGE_SIZE : buflen);
  396. }
  397. return acc;
  398. }
  399. #endif /* CONFIG_KCORE_AOUT */