2 * fs/proc/kcore.c kernel ELF core dumper
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>
12 #include <linux/config.h>
14 #include <linux/proc_fs.h>
15 #include <linux/user.h>
16 #include <linux/a.out.h>
17 #include <linux/capability.h>
18 #include <linux/elf.h>
19 #include <linux/elfcore.h>
20 #include <linux/vmalloc.h>
21 #include <linux/highmem.h>
22 #include <linux/init.h>
23 #include <asm/uaccess.h>
27 static int open_kcore(struct inode
* inode
, struct file
* filp
)
29 return capable(CAP_SYS_RAWIO
) ? 0 : -EPERM
;
32 static ssize_t
read_kcore(struct file
*, char __user
*, size_t, loff_t
*);
34 struct file_operations proc_kcore_operations
= {
39 #ifndef kc_vaddr_to_offset
40 #define kc_vaddr_to_offset(v) ((v) - PAGE_OFFSET)
42 #ifndef kc_offset_to_vaddr
43 #define kc_offset_to_vaddr(o) ((o) + PAGE_OFFSET)
46 #define roundup(x, y) ((((x)+((y)-1))/(y))*(y))
48 /* An ELF note in memory */
57 static struct kcore_list
*kclist
;
58 static DEFINE_RWLOCK(kclist_lock
);
61 kclist_add(struct kcore_list
*new, void *addr
, size_t size
)
63 new->addr
= (unsigned long)addr
;
66 write_lock(&kclist_lock
);
69 write_unlock(&kclist_lock
);
72 static size_t get_kcore_size(int *nphdr
, size_t *elf_buflen
)
77 *nphdr
= 1; /* PT_NOTE */
80 for (m
=kclist
; m
; m
=m
->next
) {
81 try = kc_vaddr_to_offset((size_t)m
->addr
+ m
->size
);
86 *elf_buflen
= sizeof(struct elfhdr
) +
87 (*nphdr
+ 2)*sizeof(struct elf_phdr
) +
88 3 * (sizeof(struct elf_note
) + 4) +
89 sizeof(struct elf_prstatus
) +
90 sizeof(struct elf_prpsinfo
) +
91 sizeof(struct task_struct
);
92 *elf_buflen
= PAGE_ALIGN(*elf_buflen
);
93 return size
+ *elf_buflen
;
97 /*****************************************************************************/
99 * determine size of ELF note
101 static int notesize(struct memelfnote
*en
)
105 sz
= sizeof(struct elf_note
);
106 sz
+= roundup(strlen(en
->name
), 4);
107 sz
+= roundup(en
->datasz
, 4);
110 } /* end notesize() */
112 /*****************************************************************************/
114 * store a note in the header buffer
116 static char *storenote(struct memelfnote
*men
, char *bufp
)
120 #define DUMP_WRITE(addr,nr) do { memcpy(bufp,addr,nr); bufp += nr; } while(0)
122 en
.n_namesz
= strlen(men
->name
);
123 en
.n_descsz
= men
->datasz
;
124 en
.n_type
= men
->type
;
126 DUMP_WRITE(&en
, sizeof(en
));
127 DUMP_WRITE(men
->name
, en
.n_namesz
);
129 /* XXX - cast from long long to long to avoid need for libgcc.a */
130 bufp
= (char*) roundup((unsigned long)bufp
,4);
131 DUMP_WRITE(men
->data
, men
->datasz
);
132 bufp
= (char*) roundup((unsigned long)bufp
,4);
137 } /* end storenote() */
140 * store an ELF coredump header in the supplied buffer
141 * nphdr is the number of elf_phdr to insert
143 static void elf_kcore_store_hdr(char *bufp
, int nphdr
, int dataoff
)
145 struct elf_prstatus prstatus
; /* NT_PRSTATUS */
146 struct elf_prpsinfo prpsinfo
; /* NT_PRPSINFO */
147 struct elf_phdr
*nhdr
, *phdr
;
149 struct memelfnote notes
[3];
151 struct kcore_list
*m
;
153 /* setup ELF header */
154 elf
= (struct elfhdr
*) bufp
;
155 bufp
+= sizeof(struct elfhdr
);
156 offset
+= sizeof(struct elfhdr
);
157 memcpy(elf
->e_ident
, ELFMAG
, SELFMAG
);
158 elf
->e_ident
[EI_CLASS
] = ELF_CLASS
;
159 elf
->e_ident
[EI_DATA
] = ELF_DATA
;
160 elf
->e_ident
[EI_VERSION
]= EV_CURRENT
;
161 elf
->e_ident
[EI_OSABI
] = ELF_OSABI
;
162 memset(elf
->e_ident
+EI_PAD
, 0, EI_NIDENT
-EI_PAD
);
163 elf
->e_type
= ET_CORE
;
164 elf
->e_machine
= ELF_ARCH
;
165 elf
->e_version
= EV_CURRENT
;
167 elf
->e_phoff
= sizeof(struct elfhdr
);
169 #if defined(CONFIG_H8300)
170 elf
->e_flags
= ELF_FLAGS
;
174 elf
->e_ehsize
= sizeof(struct elfhdr
);
175 elf
->e_phentsize
= sizeof(struct elf_phdr
);
176 elf
->e_phnum
= nphdr
;
181 /* setup ELF PT_NOTE program header */
182 nhdr
= (struct elf_phdr
*) bufp
;
183 bufp
+= sizeof(struct elf_phdr
);
184 offset
+= sizeof(struct elf_phdr
);
185 nhdr
->p_type
= PT_NOTE
;
194 /* setup ELF PT_LOAD program header for every area */
195 for (m
=kclist
; m
; m
=m
->next
) {
196 phdr
= (struct elf_phdr
*) bufp
;
197 bufp
+= sizeof(struct elf_phdr
);
198 offset
+= sizeof(struct elf_phdr
);
200 phdr
->p_type
= PT_LOAD
;
201 phdr
->p_flags
= PF_R
|PF_W
|PF_X
;
202 phdr
->p_offset
= kc_vaddr_to_offset(m
->addr
) + dataoff
;
203 phdr
->p_vaddr
= (size_t)m
->addr
;
205 phdr
->p_filesz
= phdr
->p_memsz
= m
->size
;
206 phdr
->p_align
= PAGE_SIZE
;
210 * Set up the notes in similar form to SVR4 core dumps made
211 * with info from their /proc.
213 nhdr
->p_offset
= offset
;
215 /* set up the process status */
216 notes
[0].name
= "CORE";
217 notes
[0].type
= NT_PRSTATUS
;
218 notes
[0].datasz
= sizeof(struct elf_prstatus
);
219 notes
[0].data
= &prstatus
;
221 memset(&prstatus
, 0, sizeof(struct elf_prstatus
));
223 nhdr
->p_filesz
= notesize(¬es
[0]);
224 bufp
= storenote(¬es
[0], bufp
);
226 /* set up the process info */
227 notes
[1].name
= "CORE";
228 notes
[1].type
= NT_PRPSINFO
;
229 notes
[1].datasz
= sizeof(struct elf_prpsinfo
);
230 notes
[1].data
= &prpsinfo
;
232 memset(&prpsinfo
, 0, sizeof(struct elf_prpsinfo
));
233 prpsinfo
.pr_state
= 0;
234 prpsinfo
.pr_sname
= 'R';
235 prpsinfo
.pr_zomb
= 0;
237 strcpy(prpsinfo
.pr_fname
, "vmlinux");
238 strncpy(prpsinfo
.pr_psargs
, saved_command_line
, ELF_PRARGSZ
);
240 nhdr
->p_filesz
+= notesize(¬es
[1]);
241 bufp
= storenote(¬es
[1], bufp
);
243 /* set up the task structure */
244 notes
[2].name
= "CORE";
245 notes
[2].type
= NT_TASKSTRUCT
;
246 notes
[2].datasz
= sizeof(struct task_struct
);
247 notes
[2].data
= current
;
249 nhdr
->p_filesz
+= notesize(¬es
[2]);
250 bufp
= storenote(¬es
[2], bufp
);
252 } /* end elf_kcore_store_hdr() */
254 /*****************************************************************************/
256 * read from the ELF header and then kernel memory
259 read_kcore(struct file
*file
, char __user
*buffer
, size_t buflen
, loff_t
*fpos
)
267 read_lock(&kclist_lock
);
268 proc_root_kcore
->size
= size
= get_kcore_size(&nphdr
, &elf_buflen
);
269 if (buflen
== 0 || *fpos
>= size
) {
270 read_unlock(&kclist_lock
);
274 /* trim buflen to not go beyond EOF */
275 if (buflen
> size
- *fpos
)
276 buflen
= size
- *fpos
;
278 /* construct an ELF core header if we'll need some of it */
279 if (*fpos
< elf_buflen
) {
282 tsz
= elf_buflen
- *fpos
;
285 elf_buf
= kmalloc(elf_buflen
, GFP_ATOMIC
);
287 read_unlock(&kclist_lock
);
290 memset(elf_buf
, 0, elf_buflen
);
291 elf_kcore_store_hdr(elf_buf
, nphdr
, elf_buflen
);
292 read_unlock(&kclist_lock
);
293 if (copy_to_user(buffer
, elf_buf
+ *fpos
, tsz
)) {
303 /* leave now if filled buffer already */
307 read_unlock(&kclist_lock
);
310 * Check to see if our file offset matches with any of
311 * the addresses in the elf_phdr on our list.
313 start
= kc_offset_to_vaddr(*fpos
- elf_buflen
);
314 if ((tsz
= (PAGE_SIZE
- (start
& ~PAGE_MASK
))) > buflen
)
318 struct kcore_list
*m
;
320 read_lock(&kclist_lock
);
321 for (m
=kclist
; m
; m
=m
->next
) {
322 if (start
>= m
->addr
&& start
< (m
->addr
+m
->size
))
325 read_unlock(&kclist_lock
);
328 if (clear_user(buffer
, tsz
))
330 } else if ((start
>= VMALLOC_START
) && (start
< VMALLOC_END
)) {
333 unsigned long curstart
= start
;
334 unsigned long cursize
= tsz
;
336 elf_buf
= kmalloc(tsz
, GFP_KERNEL
);
339 memset(elf_buf
, 0, tsz
);
341 read_lock(&vmlist_lock
);
342 for (m
=vmlist
; m
&& cursize
; m
=m
->next
) {
343 unsigned long vmstart
;
344 unsigned long vmsize
;
345 unsigned long msize
= m
->size
- PAGE_SIZE
;
347 if (((unsigned long)m
->addr
+ msize
) <
350 if ((unsigned long)m
->addr
> (curstart
+
353 vmstart
= (curstart
< (unsigned long)m
->addr
?
354 (unsigned long)m
->addr
: curstart
);
355 if (((unsigned long)m
->addr
+ msize
) >
356 (curstart
+ cursize
))
357 vmsize
= curstart
+ cursize
- vmstart
;
359 vmsize
= (unsigned long)m
->addr
+
361 curstart
= vmstart
+ vmsize
;
363 /* don't dump ioremap'd stuff! (TA) */
364 if (m
->flags
& VM_IOREMAP
)
366 memcpy(elf_buf
+ (vmstart
- start
),
367 (char *)vmstart
, vmsize
);
369 read_unlock(&vmlist_lock
);
370 if (copy_to_user(buffer
, elf_buf
, tsz
)) {
376 if (kern_addr_valid(start
)) {
379 n
= copy_to_user(buffer
, (char *)start
, tsz
);
381 * We cannot distingush between fault on source
382 * and fault on destination. When this happens
383 * we clear too and hope it will trigger the
387 if (clear_user(buffer
+ tsz
- n
,
392 if (clear_user(buffer
, tsz
))
401 tsz
= (buflen
> PAGE_SIZE
? PAGE_SIZE
: buflen
);