blob: 7a15588e45d47265391ec508c787d98b374aaeb9 [file] [log] [blame]
David Howells7fa30312008-02-08 04:19:28 -08001/* a.out coredump register dumper
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11
H. Peter Anvin1965aae2008-10-22 22:26:29 -070012#ifndef _ASM_X86_A_OUT_CORE_H
13#define _ASM_X86_A_OUT_CORE_H
David Howells7fa30312008-02-08 04:19:28 -080014
15#ifdef __KERNEL__
16#ifdef CONFIG_X86_32
17
18#include <linux/user.h>
19#include <linux/elfcore.h>
Frederic Weisbecker9f6b3c22009-11-09 21:03:43 +010020#include <asm/debugreg.h>
David Howells7fa30312008-02-08 04:19:28 -080021
22/*
23 * fill in the user structure for an a.out core dump
24 */
25static inline void aout_dump_thread(struct pt_regs *regs, struct user *dump)
26{
David Howells7fa30312008-02-08 04:19:28 -080027/* changed the size calculations - should hopefully work better. lbt */
28 dump->magic = CMAGIC;
29 dump->start_code = 0;
30 dump->start_stack = regs->sp & ~(PAGE_SIZE - 1);
Joe Perchesb03aa8c2008-03-23 01:01:38 -070031 dump->u_tsize = ((unsigned long)current->mm->end_code) >> PAGE_SHIFT;
32 dump->u_dsize = ((unsigned long)(current->mm->brk + (PAGE_SIZE - 1)))
33 >> PAGE_SHIFT;
David Howells7fa30312008-02-08 04:19:28 -080034 dump->u_dsize -= dump->u_tsize;
35 dump->u_ssize = 0;
Frederic Weisbecker9f6b3c22009-11-09 21:03:43 +010036 aout_dump_debugregs(dump);
David Howells7fa30312008-02-08 04:19:28 -080037
38 if (dump->start_stack < TASK_SIZE)
Joe Perchesb03aa8c2008-03-23 01:01:38 -070039 dump->u_ssize = ((unsigned long)(TASK_SIZE - dump->start_stack))
40 >> PAGE_SHIFT;
David Howells7fa30312008-02-08 04:19:28 -080041
42 dump->regs.bx = regs->bx;
43 dump->regs.cx = regs->cx;
44 dump->regs.dx = regs->dx;
45 dump->regs.si = regs->si;
46 dump->regs.di = regs->di;
47 dump->regs.bp = regs->bp;
48 dump->regs.ax = regs->ax;
49 dump->regs.ds = (u16)regs->ds;
50 dump->regs.es = (u16)regs->es;
51 dump->regs.fs = (u16)regs->fs;
Tejun Heod9a89a22009-02-09 22:17:40 +090052 dump->regs.gs = get_user_gs(regs);
David Howells7fa30312008-02-08 04:19:28 -080053 dump->regs.orig_ax = regs->orig_ax;
54 dump->regs.ip = regs->ip;
55 dump->regs.cs = (u16)regs->cs;
56 dump->regs.flags = regs->flags;
57 dump->regs.sp = regs->sp;
58 dump->regs.ss = (u16)regs->ss;
59
Joe Perchesb03aa8c2008-03-23 01:01:38 -070060 dump->u_fpvalid = dump_fpu(regs, &dump->i387);
David Howells7fa30312008-02-08 04:19:28 -080061}
62
63#endif /* CONFIG_X86_32 */
64#endif /* __KERNEL__ */
H. Peter Anvin1965aae2008-10-22 22:26:29 -070065#endif /* _ASM_X86_A_OUT_CORE_H */