199767f8919635c4928607450d9e0abb932109ceToomas Soome/*-
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Copyright (c) 1998 John D. Polstra.
199767f8919635c4928607450d9e0abb932109ceToomas Soome * All rights reserved.
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Redistribution and use in source and binary forms, with or without
199767f8919635c4928607450d9e0abb932109ceToomas Soome * modification, are permitted provided that the following conditions
199767f8919635c4928607450d9e0abb932109ceToomas Soome * are met:
199767f8919635c4928607450d9e0abb932109ceToomas Soome * 1. Redistributions of source code must retain the above copyright
199767f8919635c4928607450d9e0abb932109ceToomas Soome * notice, this list of conditions and the following disclaimer.
199767f8919635c4928607450d9e0abb932109ceToomas Soome * 2. Redistributions in binary form must reproduce the above copyright
199767f8919635c4928607450d9e0abb932109ceToomas Soome * notice, this list of conditions and the following disclaimer in the
199767f8919635c4928607450d9e0abb932109ceToomas Soome * documentation and/or other materials provided with the distribution.
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
199767f8919635c4928607450d9e0abb932109ceToomas Soome * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
199767f8919635c4928607450d9e0abb932109ceToomas Soome * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
199767f8919635c4928607450d9e0abb932109ceToomas Soome * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
199767f8919635c4928607450d9e0abb932109ceToomas Soome * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
199767f8919635c4928607450d9e0abb932109ceToomas Soome * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
199767f8919635c4928607450d9e0abb932109ceToomas Soome * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
199767f8919635c4928607450d9e0abb932109ceToomas Soome * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
199767f8919635c4928607450d9e0abb932109ceToomas Soome * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
199767f8919635c4928607450d9e0abb932109ceToomas Soome * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
199767f8919635c4928607450d9e0abb932109ceToomas Soome * SUCH DAMAGE.
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * $FreeBSD$
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#ifndef _SYS_ELF_GENERIC_H_
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define _SYS_ELF_GENERIC_H_ 1
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include <sys/cdefs.h>
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome/*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Definitions of generic ELF names which relieve applications from
199767f8919635c4928607450d9e0abb932109ceToomas Soome * needing to know the word size.
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if __ELF_WORD_SIZE != 32 && __ELF_WORD_SIZE != 64
199767f8919635c4928607450d9e0abb932109ceToomas Soome#error "__ELF_WORD_SIZE must be defined as 32 or 64"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define ELF_CLASS __CONCAT(ELFCLASS,__ELF_WORD_SIZE)
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#if BYTE_ORDER == LITTLE_ENDIAN
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define ELF_DATA ELFDATA2LSB
199767f8919635c4928607450d9e0abb932109ceToomas Soome#elif BYTE_ORDER == BIG_ENDIAN
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define ELF_DATA ELFDATA2MSB
199767f8919635c4928607450d9e0abb932109ceToomas Soome#else
199767f8919635c4928607450d9e0abb932109ceToomas Soome#error "Unknown byte order"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define __elfN(x) __CONCAT(__CONCAT(__CONCAT(elf,__ELF_WORD_SIZE),_),x)
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define __ElfN(x) __CONCAT(__CONCAT(__CONCAT(Elf,__ELF_WORD_SIZE),_),x)
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define __ELFN(x) __CONCAT(__CONCAT(__CONCAT(ELF,__ELF_WORD_SIZE),_),x)
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define __ElfType(x) typedef __ElfN(x) __CONCAT(Elf_,x)
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Addr);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Half);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Off);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Sword);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Word);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Ehdr);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Shdr);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Phdr);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Dyn);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Rel);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Rela);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Sym);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Verdef);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Verdaux);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Verneed);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Vernaux);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Versym);
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome/* Non-standard ELF types. */
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Hashelt);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Size);
199767f8919635c4928607450d9e0abb932109ceToomas Soome__ElfType(Ssize);
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define ELF_R_SYM __ELFN(R_SYM)
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define ELF_R_TYPE __ELFN(R_TYPE)
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define ELF_R_INFO __ELFN(R_INFO)
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define ELF_ST_BIND __ELFN(ST_BIND)
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define ELF_ST_TYPE __ELFN(ST_TYPE)
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define ELF_ST_INFO __ELFN(ST_INFO)
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif /* !_SYS_ELF_GENERIC_H_ */