summaryrefslogtreecommitdiffstats
path: root/usr.sbin/kgzip/elfhdr.c
blob: 12b1d5f5b3409466b65894f42b7a741081cb78d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*
 * Copyright (c) 1999 Global Technology Associates, Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * $FreeBSD$
 */

#include <sys/endian.h>
#include <stddef.h>
#include "elfhdr.h"

#define KGZ_FIX_NSIZE	0	/* Run-time fixup */

/*
 * Relocatable header template.
 */
const struct kgz_elfhdr elfhdr = {
    /* ELF header */
    {
	{
	    ELFMAG0, ELFMAG1, ELFMAG2, ELFMAG3, 	/* e_ident */
	    ELFCLASS32, ELFDATA2LSB, EV_CURRENT, 0,
	    'F', 'r', 'e', 'e', 'B', 'S', 'D', 0
	},
	htole16(ET_EXEC),				/* e_type */
	htole16(EM_386),				/* e_machine */
	htole32(EV_CURRENT),				/* e_version */
	0,						/* e_entry */
	0,						/* e_phoff */
	htole32(offsetof(struct kgz_elfhdr, sh)),	/* e_shoff */
	0,						/* e_flags */
	htole16(sizeof(Elf32_Ehdr)),			/* e_ehsize */
	0,						/* e_phentsize */
	0,						/* e_phnum */
	htole16(sizeof(Elf32_Shdr)),			/* e_shentsize */
	htole16(KGZ_SHNUM),				/* e_shnum */
	htole16(KGZ_SH_SHSTRTAB)			/* e_shstrndx */
    },
    /* Section header */
    {
	{
	    0,						/* sh_name */
	    htole32(SHT_NULL),				/* sh_type */
	    0,						/* sh_flags */
	    0,						/* sh_addr */
	    0,						/* sh_offset */
	    0,						/* sh_size */
	    htole32(SHN_UNDEF),				/* sh_link */
	    0,						/* sh_info */
	    0,						/* sh_addralign */
	    0						/* sh_entsize */
	},
	{
	    htole32(offsetof(struct kgz_shstrtab, symtab)), /* sh_name */
	    htole32(SHT_SYMTAB),			/* sh_type */
	    0,						/* sh_flags */
	    0,						/* sh_addr */
	    htole32(offsetof(struct kgz_elfhdr, st)),	/* sh_offset */
	    htole32(sizeof(Elf32_Sym) * KGZ_STNUM),	/* sh_size */
	    htole32(KGZ_SH_STRTAB),			/* sh_link */
	    htole32(1),					/* sh_info */
	    htole32(4),					/* sh_addralign */
	    htole32(sizeof(Elf32_Sym))			/* sh_entsize */
	},
	{
	    htole32(offsetof(struct kgz_shstrtab, shstrtab)), /* sh_name */
	    htole32(SHT_STRTAB),			/* sh_type */
	    0,						/* sh_flags */
	    0,						/* sh_addr */
	    htole32(offsetof(struct kgz_elfhdr, shstrtab)), /* sh_offset */
	    htole32(sizeof(struct kgz_shstrtab)),	/* sh_size */
	    htole32(SHN_UNDEF),				/* sh_link */
	    0,						/* sh_info */
	    htole32(1),					/* sh_addralign */
	    0						/* sh_entsize */
	},
	{
	    htole32(offsetof(struct kgz_shstrtab, strtab)), /* sh_name */
	    htole32(SHT_STRTAB),			/* sh_type */
	    0,						/* sh_flags */
	    0,						/* sh_addr */
	    htole32(offsetof(struct kgz_elfhdr, strtab)), /* sh_offset */
	    htole32(sizeof(struct kgz_strtab)),		/* sh_size */
	    htole32(SHN_UNDEF),				/* sh_link */
	    0,						/* sh_info */
	    htole32(1),					/* sh_addralign */
	    0						/* sh_entsize */
	},
	{
	    htole32(offsetof(struct kgz_shstrtab, data)), /* sh_name */
	    htole32(SHT_PROGBITS),			/* sh_type */
	    htole32(SHF_ALLOC | SHF_WRITE),		/* sh_flags */
	    0,						/* sh_addr */
	    htole32(sizeof(struct kgz_elfhdr)),		/* sh_offset */
	    htole32(sizeof(struct kgz_hdr) + KGZ_FIX_NSIZE), /* sh_size */
	    htole32(SHN_UNDEF),				/* sh_link */
	    0,						/* sh_info */
	    htole32(4),					/* sh_addralign */
	    0						/* sh_entsize */
	}
    },
    /* Symbol table */
    {
	{
	    0,						/* st_name */
	    0,						/* st_value */
	    0,						/* st_size */
	    0,						/* st_info */
	    0,						/* st_other */
	    htole16(SHN_UNDEF)				/* st_shndx */
	},
	{
	    htole32(offsetof(struct kgz_strtab, kgz)),	/* st_name */
	    0,						/* st_value */
	    htole32(sizeof(struct kgz_hdr)),		/* st_size */
	    ELF32_ST_INFO(STB_GLOBAL, STT_OBJECT),	/* st_info */
	    0,						/* st_other */
	    htole16(KGZ_SH_DATA)			/* st_shndx */
	},
	{
	    htole32(offsetof(struct kgz_strtab, kgz_ndata)), /* st_name */
	    htole32(sizeof(struct kgz_hdr)),		/* st_value */
	    htole32(KGZ_FIX_NSIZE),			/* st_size */
	    ELF32_ST_INFO(STB_GLOBAL, STT_OBJECT),	/* st_info */
	    0,						/* st_other */
	    htole16(KGZ_SH_DATA)			/* st_shndx */
	}
    },
    /* Section header string table */
    {
	KGZ_SHSTR_ZERO, 				/* zero */
	KGZ_SHSTR_SYMTAB,				/* symtab */
	KGZ_SHSTR_SHSTRTAB,				/* shstrtab */
	KGZ_SHSTR_STRTAB,				/* strtab */
	KGZ_SHSTR_DATA					/* data */
    },
    /* String table */
    {
	KGZ_STR_ZERO,					/* zero */
	KGZ_STR_KGZ,					/* kgz */
	KGZ_STR_KGZ_NDATA				/* kgz_ndata */
    }
};
OpenPOWER on IntegriCloud