#ifndef _SYS_IMGACT_ELF_H_
#define _SYS_IMGACT_ELF_H_
#include <machine/elf.h>
#ifdef _KERNEL
#define AUXARGS_ENTRY(pos, id, val) \
{(pos)->a_type = (id); (pos)->a_un.a_val = (val); (pos)++;}
#if (defined(__LP64__) && __ELF_WORD_SIZE == 32)
#define AUXARGS_ENTRY_PTR(pos, id, ptr) \
{(pos)->a_type = (id); (pos)->a_un.a_val = (uintptr_t)(ptr); (pos)++;}
#else
#define AUXARGS_ENTRY_PTR(pos, id, ptr) \
{(pos)->a_type = (id); (pos)->a_un.a_ptr = (ptr); (pos)++;}
#endif
struct coredump_writer;
struct image_params;
struct thread;
struct vnode;
struct note_info_list;
struct sbuf;
typedef struct {
Elf_Ssize execfd;
Elf_Size phdr;
Elf_Size phent;
Elf_Size phnum;
Elf_Size pagesz;
Elf_Size base;
Elf_Size flags;
Elf_Size entry;
Elf_Word hdr_eflags;
} __ElfN(Auxargs);
typedef struct {
Elf_Note hdr;
const char * vendor;
int flags;
bool (*trans_osrel)(const Elf_Note *, int32_t *);
#define BN_CAN_FETCH_OSREL 0x0001
#define BN_TRANSLATE_OSREL 0x0002
} Elf_Brandnote;
typedef struct {
int brand;
int machine;
const char *compat_3_brand;
const char *interp_path;
struct sysentvec *sysvec;
const char *interp_newpath;
int flags;
const Elf_Brandnote *brand_note;
bool (*const header_supported)(const struct image_params *,
const int32_t *, const uint32_t *);
#define BI_CAN_EXEC_DYN 0x0001
#define BI_BRAND_NOTE 0x0002
#define BI_BRAND_NOTE_MANDATORY 0x0004
#define BI_BRAND_ONLY_STATIC 0x0008
} __ElfN(Brandinfo);
__ElfType(Auxargs);
__ElfType(Brandinfo);
#define MAX_BRANDS 8
#define FREEBSD_ABI_VENDOR "FreeBSD"
#define GNU_ABI_VENDOR "GNU"
typedef void (*outfunc_t)(void *, struct sbuf *, size_t *);
struct sseg_closure {
int count;
size_t size;
};
bool __elfN(brand_inuse)(const Elf_Brandinfo *entry);
int __elfN(insert_brand_entry)(const Elf_Brandinfo *entry);
int __elfN(remove_brand_entry)(const Elf_Brandinfo *entry);
int __elfN(freebsd_fixup)(uintptr_t *, struct image_params *);
int __elfN(coredump)(struct thread *, struct coredump_writer *, off_t, int);
size_t __elfN(populate_note)(int, void *, void *, size_t, void **);
int __elfN(freebsd_copyout_auxargs)(struct image_params *, uintptr_t);
void __elfN(puthdr)(struct thread *, void *, size_t, int, size_t, int);
void __elfN(prepare_notes)(struct thread *, struct note_info_list *,
size_t *);
void __elfN(size_segments)(struct thread *, struct sseg_closure *, int);
size_t __elfN(register_note)(struct thread *, struct note_info_list *,
int, outfunc_t, void *);
bool __elfN(parse_notes)(const struct image_params *, const Elf_Note *,
const char *, const Elf_Phdr *,
bool (*)(const Elf_Note *, void *, bool *), void *);
void __elfN(dump_thread)(struct thread *, void *, size_t *);
extern int __elfN(fallback_brand);
extern const Elf_Brandnote __elfN(freebsd_brandnote);
extern const Elf_Brandnote __elfN(kfreebsd_brandnote);
#endif
#endif