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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
|
/* Create new section in output file.
Copyright (C) 2002-2011, 2016 Red Hat, Inc.
This file is part of elfutils.
Written by Ulrich Drepper <drepper@redhat.com>, 2002.
This file is free software; you can redistribute it and/or modify
it under the terms of either
* the GNU Lesser General Public License as published by the Free
Software Foundation; either version 3 of the License, or (at
your option) any later version
or
* the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at
your option) any later version
or both in parallel, as here.
elfutils is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received copies of the GNU General Public License and
the GNU Lesser General Public License along with this program. If
not, see <http://www.gnu.org/licenses/>. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <libasmP.h>
#include <libelf.h>
#include <system.h>
/* Memory for the default pattern. The type uses a flexible array
which does work well with a static initializer. Work around this by
wrapping it in a union, whose second member is a char array 1 byte larger
than struct FillPattern. According to 6.7.9, this does what we need:
If an object that has static or thread storage duration is not
initialized explicitly, then ... if it is a union, the first named
member is initialized (recursively) according to these rules, and
any padding is initialized to zero bits. */
static const union
{
struct FillPattern pattern;
char zeroes[sizeof(struct FillPattern) + 1];
} xdefault_pattern =
{
.pattern =
{
.len = 1
},
};
const struct FillPattern *__libasm_default_pattern = &xdefault_pattern.pattern;
static AsmScn_t *
text_newscn (AsmScn_t *result, GElf_Word type, GElf_Xword flags)
{
/* Buffer where we construct the flag string. */
char flagstr[sizeof (GElf_Xword) * 8 + 5];
char *wp = flagstr;
const char *typestr = "";
/* Only write out the flag string if this is the first time the
section is selected. Some assemblers cannot cope with the
.section pseudo-op otherwise. */
wp = stpcpy (wp, ", \"");
if (flags & SHF_WRITE)
*wp++ = 'w';
if (flags & SHF_ALLOC)
*wp++ = 'a';
if (flags & SHF_EXECINSTR)
*wp++ = 'x';
if (flags & SHF_MERGE)
*wp++ = 'M';
if (flags & SHF_STRINGS)
*wp++ = 'S';
if (flags & SHF_LINK_ORDER)
*wp++ = 'L';
*wp++ = '"';
if (type == SHT_PROGBITS)
typestr = ",@progbits";
else if (type == SHT_NOBITS)
typestr = ",@nobits";
/* Terminate the string. */
*wp = '\0';
fprintf (result->ctx->out.file, "\t.section \"%s\"%s%s\n",
result->name, flagstr, typestr);
return result;
}
static AsmScn_t *
binary_newscn (AsmScn_t *result, GElf_Word type, GElf_Xword flags,
size_t scnname_len)
{
GElf_Shdr shdr_mem;
GElf_Shdr *shdr;
Elf_Scn *scn;
/* The initial subsection has the number zero. */
result->subsection_id = 0;
/* We start at offset zero. */
result->offset = 0;
/* And generic alignment. */
result->max_align = 1;
/* No output yet. */
result->content = NULL;
/* Put the default fill pattern in place. */
result->pattern = (struct FillPattern *) __libasm_default_pattern;
/* There are no subsections so far. */
result->subnext = NULL;
/* Add the name to the section header string table. */
result->data.main.strent = dwelf_strtab_add_len (result->ctx->section_strtab,
result->name, scnname_len);
assert (result->data.main.strent != NULL);
/* Create the new ELF section. */
result->data.main.scn = scn = elf_newscn (result->ctx->out.elf);
if (scn == NULL)
{
free (result);
__libasm_seterrno (ASM_E_LIBELF);
return NULL;
}
/* Not part of a section group (yet). */
result->data.main.next_in_group = NULL;
/* Remember the flags. */
shdr = gelf_getshdr (scn, &shdr_mem);
shdr->sh_flags = flags;
result->type = shdr->sh_type = type;
(void) gelf_update_shdr (scn, shdr);
return result;
}
AsmScn_t *
asm_newscn (AsmCtx_t *ctx, const char *scnname, GElf_Word type,
GElf_Xword flags)
{
size_t scnname_len = strlen (scnname) + 1;
AsmScn_t *result;
/* If no context is given there might be an earlier error. */
if (ctx == NULL)
return NULL;
/* Check whether only flags are set which areselectable by the user. */
if (unlikely ((flags & ~(SHF_WRITE | SHF_ALLOC | SHF_EXECINSTR | SHF_MERGE
| SHF_STRINGS | SHF_LINK_ORDER)) != 0)
/* We allow only two section types: data and data without file
representation. */
|| (type != SHT_PROGBITS && unlikely (type != SHT_NOBITS)))
{
__libasm_seterrno (ASM_E_INVALID);
return NULL;
}
rwlock_wrlock (ctx->lock);
/* This is a new section. */
result = malloc (sizeof (AsmScn_t) + scnname_len);
if (result != NULL)
{
/* Add the name. */
memcpy (result->name, scnname, scnname_len);
/* Add the reference to the context. */
result->ctx = ctx;
/* Perform operations according to output mode. */
result = (unlikely (ctx->textp)
? text_newscn (result, type, flags)
: binary_newscn (result, type, flags, scnname_len));
/* If everything went well finally add the new section to the hash
table. */
if (result != NULL)
{
result->allnext = ctx->section_list;
ctx->section_list = result;
}
}
rwlock_unlock (ctx->lock);
return result;
}
INTDEF(asm_newscn)
|