mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 18:13:04 +00:00
7facdc426f
To get rid of hardcoded size/offset in those macros we need to have a definition of i386 variant of struct elf_prstatus. However, we can't do that in asm/compat.h - the types needed for that are not there and adding an include of asm/user32.h into asm/compat.h would cause a lot of mess. That could be conveniently done in elfcore-compat.h, but currently there is nowhere to put arch-dependent parts of it - no asm/elfcore-compat.h. So we introduce a new file (asm/elfcore-compat.h, present on architectures that have CONFIG_ARCH_HAS_ELFCORE_COMPAT set, currently only on x86), have it pulled by linux/elfcore-compat.h and move the definitions there. As a side benefit, we don't need to worry about accidental inclusion of that file into binfmt_elf.c itself, so we don't need the dance with COMPAT_PRSTATUS_SIZE, etc. - only fs/compat_binfmt_elf.c will see that header. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
32 lines
890 B
C
32 lines
890 B
C
#ifndef _ASM_X86_ELFCORE_COMPAT_H
|
|
#define _ASM_X86_ELFCORE_COMPAT_H
|
|
|
|
#include <asm/user32.h>
|
|
|
|
/*
|
|
* On amd64 we have two 32bit ABIs - i386 and x32. The latter
|
|
* has bigger registers, so we use it for compat_elf_regset_t.
|
|
* The former uses i386_elf_prstatus and PRSTATUS_SIZE/SET_PR_FPVALID
|
|
* are used to choose the size and location of ->pr_fpvalid of
|
|
* the layout actually used.
|
|
*/
|
|
typedef struct user_regs_struct compat_elf_gregset_t;
|
|
|
|
struct i386_elf_prstatus
|
|
{
|
|
struct compat_elf_prstatus_common common;
|
|
struct user_regs_struct32 pr_reg;
|
|
compat_int_t pr_fpvalid;
|
|
};
|
|
|
|
#define PRSTATUS_SIZE \
|
|
(user_64bit_mode(task_pt_regs(current)) \
|
|
? sizeof(struct compat_elf_prstatus) \
|
|
: sizeof(struct i386_elf_prstatus))
|
|
#define SET_PR_FPVALID(S) \
|
|
(*(user_64bit_mode(task_pt_regs(current)) \
|
|
? &(S)->pr_fpvalid \
|
|
: &((struct i386_elf_prstatus *)(S))->pr_fpvalid) = 1)
|
|
|
|
#endif
|