2015-12-10 16:53:31 +01:00
|
|
|
/****************************************************************************
|
2018-05-29 21:21:26 +02:00
|
|
|
* libs/libc/modlib/modlib_bind.c
|
2015-12-10 16:53:31 +01:00
|
|
|
*
|
2020-04-13 17:03:46 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2015-12-10 16:53:31 +01:00
|
|
|
*
|
2020-04-13 17:03:46 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-12-10 16:53:31 +01:00
|
|
|
*
|
2020-04-13 17:03:46 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2015-12-10 16:53:31 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2019-01-26 18:18:45 +01:00
|
|
|
#include <nuttx/elf.h>
|
2017-01-29 15:24:42 +01:00
|
|
|
#include <nuttx/lib/modlib.h>
|
2015-12-10 16:53:31 +01:00
|
|
|
|
2019-03-19 15:57:13 +01:00
|
|
|
#include "libc.h"
|
2017-01-29 18:17:29 +01:00
|
|
|
#include "modlib/modlib.h"
|
|
|
|
|
2019-03-19 16:13:50 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* REVISIT: This naming breaks the NuttX coding standard, but is consistent
|
2020-02-08 00:10:23 +01:00
|
|
|
* with legacy naming of other ELF types.
|
2019-03-19 16:13:50 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
dq_entry_t entry;
|
2020-02-08 00:10:23 +01:00
|
|
|
Elf_Sym sym;
|
2019-03-19 16:13:50 +01:00
|
|
|
int idx;
|
2020-02-08 00:10:23 +01:00
|
|
|
} Elf_SymCache;
|
2019-03-19 16:13:50 +01:00
|
|
|
|
2015-12-10 16:53:31 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2019-03-19 15:57:13 +01:00
|
|
|
* Name: modlib_readrels
|
2015-12-10 16:53:31 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2020-02-08 00:10:23 +01:00
|
|
|
* Read the (ELF_Rel structure * buffer count) into memory.
|
2015-12-10 16:53:31 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2019-03-19 15:57:13 +01:00
|
|
|
static inline int modlib_readrels(FAR struct mod_loadinfo_s *loadinfo,
|
2020-02-08 00:10:23 +01:00
|
|
|
FAR const Elf_Shdr *relsec,
|
|
|
|
int index, FAR Elf_Rel *rels,
|
2019-03-19 16:13:50 +01:00
|
|
|
int count)
|
2015-12-10 16:53:31 +01:00
|
|
|
{
|
|
|
|
off_t offset;
|
2019-03-19 15:57:13 +01:00
|
|
|
int size;
|
2015-12-10 16:53:31 +01:00
|
|
|
|
|
|
|
/* Verify that the symbol table index lies within symbol table */
|
|
|
|
|
2020-02-08 00:10:23 +01:00
|
|
|
if (index < 0 || index > (relsec->sh_size / sizeof(Elf_Rel)))
|
2015-12-10 16:53:31 +01:00
|
|
|
{
|
2018-06-01 18:10:17 +02:00
|
|
|
berr("ERROR: Bad relocation symbol index: %d\n", index);
|
2015-12-10 16:53:31 +01:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the file offset to the symbol table entry */
|
|
|
|
|
2020-02-08 00:10:23 +01:00
|
|
|
offset = sizeof(Elf_Rel) * index;
|
|
|
|
size = sizeof(Elf_Rel) * count;
|
2019-03-19 15:57:13 +01:00
|
|
|
if (offset + size > relsec->sh_size)
|
|
|
|
{
|
|
|
|
size = relsec->sh_size - offset;
|
|
|
|
}
|
2015-12-10 16:53:31 +01:00
|
|
|
|
|
|
|
/* And, finally, read the symbol table entry into memory */
|
|
|
|
|
2019-03-19 15:57:13 +01:00
|
|
|
return modlib_read(loadinfo, (FAR uint8_t *)rels, size,
|
|
|
|
relsec->sh_offset + offset);
|
2015-12-10 16:53:31 +01:00
|
|
|
}
|
|
|
|
|
2020-02-08 00:10:23 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: modlib_readrelas
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Read the (ELF_Rela structure * buffer count) into memory.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static inline int modlib_readrelas(FAR struct mod_loadinfo_s *loadinfo,
|
|
|
|
FAR const Elf_Shdr *relsec,
|
|
|
|
int index, FAR Elf_Rela *relas,
|
|
|
|
int count)
|
|
|
|
{
|
|
|
|
off_t offset;
|
|
|
|
int size;
|
|
|
|
|
|
|
|
/* Verify that the symbol table index lies within symbol table */
|
|
|
|
|
|
|
|
if (index < 0 || index > (relsec->sh_size / sizeof(Elf_Rela)))
|
|
|
|
{
|
|
|
|
berr("ERROR: Bad relocation symbol index: %d\n", index);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the file offset to the symbol table entry */
|
|
|
|
|
|
|
|
offset = sizeof(Elf_Rela) * index;
|
|
|
|
size = sizeof(Elf_Rela) * count;
|
|
|
|
if (offset + size > relsec->sh_size)
|
|
|
|
{
|
|
|
|
size = relsec->sh_size - offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And, finally, read the symbol table entry into memory */
|
|
|
|
|
|
|
|
return modlib_read(loadinfo, (FAR uint8_t *)relas, size,
|
|
|
|
relsec->sh_offset + offset);
|
|
|
|
}
|
|
|
|
|
2015-12-10 16:53:31 +01:00
|
|
|
/****************************************************************************
|
2017-01-29 17:05:15 +01:00
|
|
|
* Name: modlib_relocate and modlib_relocateadd
|
2015-12-10 16:53:31 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Perform all relocations associated with a section.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 (OK) is returned on success and a negated errno is returned on
|
|
|
|
* failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-01-29 17:05:15 +01:00
|
|
|
static int modlib_relocate(FAR struct module_s *modp,
|
|
|
|
FAR struct mod_loadinfo_s *loadinfo, int relidx)
|
2015-12-10 16:53:31 +01:00
|
|
|
{
|
2020-02-08 00:10:23 +01:00
|
|
|
FAR Elf_Shdr *relsec = &loadinfo->shdr[relidx];
|
|
|
|
FAR Elf_Shdr *dstsec = &loadinfo->shdr[relsec->sh_info];
|
|
|
|
FAR Elf_Rel *rels;
|
|
|
|
FAR Elf_Rel *rel;
|
|
|
|
FAR Elf_SymCache *cache;
|
|
|
|
FAR Elf_Sym *sym;
|
2019-03-19 16:13:50 +01:00
|
|
|
FAR dq_entry_t *e;
|
|
|
|
dq_queue_t q;
|
2015-12-10 16:53:31 +01:00
|
|
|
uintptr_t addr;
|
|
|
|
int symidx;
|
|
|
|
int ret;
|
|
|
|
int i;
|
2019-03-19 16:13:50 +01:00
|
|
|
int j;
|
2015-12-10 16:53:31 +01:00
|
|
|
|
2020-02-08 00:10:23 +01:00
|
|
|
rels = lib_malloc(CONFIG_MODLIB_RELOCATION_BUFFERCOUNT * sizeof(Elf_Rel));
|
2019-03-19 15:57:13 +01:00
|
|
|
if (!rels)
|
|
|
|
{
|
|
|
|
berr("Failed to allocate memory for elf relocation rels\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2019-03-19 16:13:50 +01:00
|
|
|
dq_init(&q);
|
|
|
|
|
2015-12-10 16:53:31 +01:00
|
|
|
/* Examine each relocation in the section. 'relsec' is the section
|
|
|
|
* containing the relations. 'dstsec' is the section containing the data
|
|
|
|
* to be relocated.
|
|
|
|
*/
|
|
|
|
|
2019-03-19 15:57:13 +01:00
|
|
|
ret = OK;
|
|
|
|
|
2020-02-08 00:10:23 +01:00
|
|
|
for (i = j = 0; i < relsec->sh_size / sizeof(Elf_Rel); i++)
|
2015-12-10 16:53:31 +01:00
|
|
|
{
|
|
|
|
/* Read the relocation entry into memory */
|
|
|
|
|
2019-03-19 15:57:13 +01:00
|
|
|
rel = &rels[i % CONFIG_MODLIB_RELOCATION_BUFFERCOUNT];
|
|
|
|
|
|
|
|
if (!(i % CONFIG_MODLIB_RELOCATION_BUFFERCOUNT))
|
2015-12-10 16:53:31 +01:00
|
|
|
{
|
2020-03-10 06:52:58 +01:00
|
|
|
ret = modlib_readrels(loadinfo, relsec, i, rels,
|
|
|
|
CONFIG_MODLIB_RELOCATION_BUFFERCOUNT);
|
2019-03-19 15:57:13 +01:00
|
|
|
if (ret < 0)
|
2020-03-10 06:52:58 +01:00
|
|
|
{
|
|
|
|
berr("ERROR: Section %d reloc %d: "
|
|
|
|
"Failed to read relocation entry: %d\n",
|
2019-03-19 15:57:13 +01:00
|
|
|
relidx, i, ret);
|
|
|
|
break;
|
2020-03-10 06:52:58 +01:00
|
|
|
}
|
2015-12-10 16:53:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the symbol table index for the relocation. This is contained
|
|
|
|
* in a bit-field within the r_info element.
|
|
|
|
*/
|
|
|
|
|
2020-02-08 00:10:23 +01:00
|
|
|
symidx = ELF_R_SYM(rel->r_info);
|
2015-12-10 16:53:31 +01:00
|
|
|
|
2019-03-19 16:13:50 +01:00
|
|
|
/* First try the cache */
|
2015-12-10 16:53:31 +01:00
|
|
|
|
2019-03-19 16:13:50 +01:00
|
|
|
sym = NULL;
|
|
|
|
for (e = dq_peek(&q); e; e = dq_next(e))
|
2015-12-10 16:53:31 +01:00
|
|
|
{
|
2020-02-08 00:10:23 +01:00
|
|
|
cache = (FAR Elf_SymCache *)e;
|
2019-03-19 16:13:50 +01:00
|
|
|
if (cache->idx == symidx)
|
|
|
|
{
|
|
|
|
dq_rem(&cache->entry, &q);
|
|
|
|
dq_addfirst(&cache->entry, &q);
|
|
|
|
sym = &cache->sym;
|
|
|
|
break;
|
|
|
|
}
|
2015-12-10 16:53:31 +01:00
|
|
|
}
|
|
|
|
|
2019-03-19 16:13:50 +01:00
|
|
|
/* If the symbol was not found in the cache, we will need to read the
|
|
|
|
* symbol from the file.
|
|
|
|
*/
|
2015-12-10 16:53:31 +01:00
|
|
|
|
2019-03-19 16:13:50 +01:00
|
|
|
if (sym == NULL)
|
2015-12-10 16:53:31 +01:00
|
|
|
{
|
2019-03-19 16:13:50 +01:00
|
|
|
if (j < CONFIG_MODLIB_SYMBOL_CACHECOUNT)
|
2015-12-10 16:53:31 +01:00
|
|
|
{
|
2020-02-08 00:10:23 +01:00
|
|
|
cache = lib_malloc(sizeof(Elf_SymCache));
|
2019-03-19 16:13:50 +01:00
|
|
|
if (!cache)
|
|
|
|
{
|
|
|
|
berr("Failed to allocate memory for elf symbols\n");
|
|
|
|
ret = -ENOMEM;
|
|
|
|
break;
|
|
|
|
}
|
2020-03-10 06:52:58 +01:00
|
|
|
|
2019-03-19 16:13:50 +01:00
|
|
|
j++;
|
2015-12-10 16:53:31 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-02-08 00:10:23 +01:00
|
|
|
cache = (FAR Elf_SymCache *)dq_remlast(&q);
|
2019-03-19 16:13:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sym = &cache->sym;
|
|
|
|
|
|
|
|
/* Read the symbol table entry into memory */
|
|
|
|
|
|
|
|
ret = modlib_readsym(loadinfo, symidx, sym);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2020-03-10 06:52:58 +01:00
|
|
|
berr("ERROR: Section %d reloc %d: "
|
|
|
|
"Failed to read symbol[%d]: %d\n",
|
2019-03-19 16:13:50 +01:00
|
|
|
relidx, i, symidx, ret);
|
|
|
|
lib_free(cache);
|
2019-03-19 15:57:13 +01:00
|
|
|
break;
|
2015-12-10 16:53:31 +01:00
|
|
|
}
|
2019-03-19 16:13:50 +01:00
|
|
|
|
|
|
|
/* Get the value of the symbol (in sym.st_value) */
|
|
|
|
|
|
|
|
ret = modlib_symvalue(modp, loadinfo, sym);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2020-03-10 06:52:58 +01:00
|
|
|
/* The special error -ESRCH is returned only in one condition:
|
|
|
|
* The symbol has no name.
|
2019-03-19 16:13:50 +01:00
|
|
|
*
|
|
|
|
* There are a few relocations for a few architectures that do
|
|
|
|
* no depend upon a named symbol. We don't know if that is the
|
|
|
|
* case here, but we will use a NULL symbol pointer to indicate
|
|
|
|
* that case to up_relocate(). That function can then do what
|
|
|
|
* is best.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (ret == -ESRCH)
|
|
|
|
{
|
2020-03-10 06:52:58 +01:00
|
|
|
berr("ERROR: Section %d reloc %d: "
|
|
|
|
"Undefined symbol[%d] has no name: %d\n",
|
|
|
|
relidx, i, symidx, ret);
|
2019-03-19 16:13:50 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-03-10 06:52:58 +01:00
|
|
|
berr("ERROR: Section %d reloc %d: "
|
|
|
|
"Failed to get value of symbol[%d]: %d\n",
|
|
|
|
relidx, i, symidx, ret);
|
2019-03-19 16:13:50 +01:00
|
|
|
lib_free(cache);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cache->idx = symidx;
|
|
|
|
dq_addfirst(&cache->entry, &q);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sym->st_shndx == SHN_UNDEF && sym->st_name == 0)
|
|
|
|
{
|
|
|
|
sym = NULL;
|
2015-12-10 16:53:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate the relocation address. */
|
|
|
|
|
2020-03-10 06:52:58 +01:00
|
|
|
if (rel->r_offset < 0 ||
|
|
|
|
rel->r_offset > dstsec->sh_size - sizeof(uint32_t))
|
2015-12-10 16:53:31 +01:00
|
|
|
{
|
2020-03-10 06:52:58 +01:00
|
|
|
berr("ERROR: Section %d reloc %d: "
|
2020-11-22 02:05:59 +01:00
|
|
|
"Relocation address out of range, "
|
|
|
|
"offset %" PRIuPTR " size %ju\n",
|
|
|
|
relidx, i, (uintptr_t)rel->r_offset,
|
|
|
|
(uintmax_t)dstsec->sh_size);
|
2019-03-19 15:57:13 +01:00
|
|
|
ret = -EINVAL;
|
|
|
|
break;
|
2015-12-10 16:53:31 +01:00
|
|
|
}
|
|
|
|
|
2019-03-19 15:57:13 +01:00
|
|
|
addr = dstsec->sh_addr + rel->r_offset;
|
2015-12-10 16:53:31 +01:00
|
|
|
|
|
|
|
/* Now perform the architecture-specific relocation */
|
|
|
|
|
2019-03-19 16:13:50 +01:00
|
|
|
ret = up_relocate(rel, sym, addr);
|
2015-12-10 16:53:31 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2020-03-10 06:52:58 +01:00
|
|
|
berr("ERROR: Section %d reloc %d: Relocation failed: %d\n",
|
|
|
|
relidx, i, ret);
|
2019-03-19 15:57:13 +01:00
|
|
|
break;
|
2015-12-10 16:53:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-19 15:57:13 +01:00
|
|
|
lib_free(rels);
|
2019-03-19 16:13:50 +01:00
|
|
|
while ((e = dq_peek(&q)))
|
|
|
|
{
|
|
|
|
dq_rem(e, &q);
|
|
|
|
lib_free(e);
|
|
|
|
}
|
2019-03-19 15:57:13 +01:00
|
|
|
|
|
|
|
return ret;
|
2015-12-10 16:53:31 +01:00
|
|
|
}
|
|
|
|
|
2017-01-29 17:05:15 +01:00
|
|
|
static int modlib_relocateadd(FAR struct module_s *modp,
|
2017-01-27 18:43:27 +01:00
|
|
|
FAR struct mod_loadinfo_s *loadinfo, int relidx)
|
2015-12-10 16:53:31 +01:00
|
|
|
{
|
2020-02-08 00:10:23 +01:00
|
|
|
FAR Elf_Shdr *relsec = &loadinfo->shdr[relidx];
|
|
|
|
FAR Elf_Shdr *dstsec = &loadinfo->shdr[relsec->sh_info];
|
|
|
|
FAR Elf_Rela *relas;
|
|
|
|
FAR Elf_Rela *rela;
|
|
|
|
FAR Elf_SymCache *cache;
|
|
|
|
FAR Elf_Sym *sym;
|
|
|
|
FAR dq_entry_t *e;
|
|
|
|
dq_queue_t q;
|
|
|
|
uintptr_t addr;
|
|
|
|
int symidx;
|
|
|
|
int ret;
|
|
|
|
int i;
|
|
|
|
int j;
|
|
|
|
|
2020-03-10 06:52:58 +01:00
|
|
|
relas = lib_malloc(CONFIG_MODLIB_RELOCATION_BUFFERCOUNT *
|
|
|
|
sizeof(Elf_Rela));
|
2020-02-08 00:10:23 +01:00
|
|
|
if (!relas)
|
|
|
|
{
|
|
|
|
berr("Failed to allocate memory for elf relocation relas\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
dq_init(&q);
|
|
|
|
|
|
|
|
/* Examine each relocation in the section. 'relsec' is the section
|
|
|
|
* containing the relations. 'dstsec' is the section containing the data
|
|
|
|
* to be relocated.
|
|
|
|
*/
|
|
|
|
|
|
|
|
ret = OK;
|
|
|
|
|
|
|
|
for (i = j = 0; i < relsec->sh_size / sizeof(Elf_Rela); i++)
|
|
|
|
{
|
|
|
|
/* Read the relocation entry into memory */
|
|
|
|
|
|
|
|
rela = &relas[i % CONFIG_MODLIB_RELOCATION_BUFFERCOUNT];
|
|
|
|
|
|
|
|
if (!(i % CONFIG_MODLIB_RELOCATION_BUFFERCOUNT))
|
|
|
|
{
|
2020-03-10 06:52:58 +01:00
|
|
|
ret = modlib_readrelas(loadinfo, relsec, i, relas,
|
|
|
|
CONFIG_MODLIB_RELOCATION_BUFFERCOUNT);
|
2020-02-08 00:10:23 +01:00
|
|
|
if (ret < 0)
|
2020-03-10 06:52:58 +01:00
|
|
|
{
|
|
|
|
berr("ERROR: Section %d reloc %d: "
|
|
|
|
"Failed to read relocation entry: %d\n",
|
2020-02-08 00:10:23 +01:00
|
|
|
relidx, i, ret);
|
|
|
|
break;
|
2020-03-10 06:52:58 +01:00
|
|
|
}
|
2020-02-08 00:10:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the symbol table index for the relocation. This is contained
|
|
|
|
* in a bit-field within the r_info element.
|
|
|
|
*/
|
|
|
|
|
|
|
|
symidx = ELF_R_SYM(rela->r_info);
|
|
|
|
|
|
|
|
/* First try the cache */
|
|
|
|
|
|
|
|
sym = NULL;
|
|
|
|
for (e = dq_peek(&q); e; e = dq_next(e))
|
|
|
|
{
|
|
|
|
cache = (FAR Elf_SymCache *)e;
|
|
|
|
if (cache->idx == symidx)
|
|
|
|
{
|
|
|
|
dq_rem(&cache->entry, &q);
|
|
|
|
dq_addfirst(&cache->entry, &q);
|
|
|
|
sym = &cache->sym;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the symbol was not found in the cache, we will need to read the
|
|
|
|
* symbol from the file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (sym == NULL)
|
|
|
|
{
|
|
|
|
if (j < CONFIG_MODLIB_SYMBOL_CACHECOUNT)
|
|
|
|
{
|
|
|
|
cache = lib_malloc(sizeof(Elf_SymCache));
|
|
|
|
if (!cache)
|
|
|
|
{
|
|
|
|
berr("Failed to allocate memory for elf symbols\n");
|
|
|
|
ret = -ENOMEM;
|
|
|
|
break;
|
|
|
|
}
|
2020-03-10 06:52:58 +01:00
|
|
|
|
2020-02-08 00:10:23 +01:00
|
|
|
j++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cache = (FAR Elf_SymCache *)dq_remlast(&q);
|
|
|
|
}
|
|
|
|
|
|
|
|
sym = &cache->sym;
|
|
|
|
|
|
|
|
/* Read the symbol table entry into memory */
|
|
|
|
|
|
|
|
ret = modlib_readsym(loadinfo, symidx, sym);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2020-03-10 06:52:58 +01:00
|
|
|
berr("ERROR: Section %d reloc %d: "
|
|
|
|
"Failed to read symbol[%d]: %d\n",
|
2020-02-08 00:10:23 +01:00
|
|
|
relidx, i, symidx, ret);
|
|
|
|
lib_free(cache);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the value of the symbol (in sym.st_value) */
|
|
|
|
|
|
|
|
ret = modlib_symvalue(modp, loadinfo, sym);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2020-03-10 06:52:58 +01:00
|
|
|
/* The special error -ESRCH is returned only in one condition:
|
|
|
|
* The symbol has no name.
|
2020-02-08 00:10:23 +01:00
|
|
|
*
|
|
|
|
* There are a few relocations for a few architectures that do
|
|
|
|
* no depend upon a named symbol. We don't know if that is the
|
|
|
|
* case here, but we will use a NULL symbol pointer to indicate
|
|
|
|
* that case to up_relocate(). That function can then do what
|
|
|
|
* is best.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (ret == -ESRCH)
|
|
|
|
{
|
2020-03-10 06:52:58 +01:00
|
|
|
berr("ERROR: Section %d reloc %d: "
|
|
|
|
"Undefined symbol[%d] has no name: %d\n",
|
|
|
|
relidx, i, symidx, ret);
|
2020-02-08 00:10:23 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-03-10 06:52:58 +01:00
|
|
|
berr("ERROR: Section %d reloc %d: "
|
|
|
|
"Failed to get value of symbol[%d]: %d\n",
|
|
|
|
relidx, i, symidx, ret);
|
2020-02-08 00:10:23 +01:00
|
|
|
lib_free(cache);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cache->idx = symidx;
|
|
|
|
dq_addfirst(&cache->entry, &q);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sym->st_shndx == SHN_UNDEF && sym->st_name == 0)
|
|
|
|
{
|
|
|
|
sym = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate the relocation address. */
|
|
|
|
|
2020-03-10 06:52:58 +01:00
|
|
|
if (rela->r_offset < 0 ||
|
|
|
|
rela->r_offset > dstsec->sh_size - sizeof(uint32_t))
|
2020-02-08 00:10:23 +01:00
|
|
|
{
|
2020-03-10 06:52:58 +01:00
|
|
|
berr("ERROR: Section %d reloc %d: "
|
2020-11-22 02:05:59 +01:00
|
|
|
"Relocation address out of range, "
|
|
|
|
"offset %" PRIuPTR " size %ju\n",
|
|
|
|
relidx, i, (uintptr_t)rela->r_offset,
|
|
|
|
(uintmax_t)dstsec->sh_size);
|
2020-02-08 00:10:23 +01:00
|
|
|
ret = -EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
addr = dstsec->sh_addr + rela->r_offset;
|
|
|
|
|
|
|
|
/* Now perform the architecture-specific relocation */
|
|
|
|
|
|
|
|
ret = up_relocateadd(rela, sym, addr);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2020-03-10 06:52:58 +01:00
|
|
|
berr("ERROR: Section %d reloc %d: Relocation failed: %d\n",
|
|
|
|
relidx, i, ret);
|
2020-02-08 00:10:23 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lib_free(relas);
|
|
|
|
while ((e = dq_peek(&q)))
|
|
|
|
{
|
|
|
|
dq_rem(e, &q);
|
|
|
|
lib_free(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2015-12-10 16:53:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2017-01-29 17:05:15 +01:00
|
|
|
* Name: modlib_bind
|
2015-12-10 16:53:31 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Bind the imported symbol names in the loaded module described by
|
2020-03-10 06:52:58 +01:00
|
|
|
* 'loadinfo' using the exported symbol values provided by
|
|
|
|
* modlib_setsymtab().
|
2015-12-10 16:53:31 +01:00
|
|
|
*
|
2017-01-27 18:43:27 +01:00
|
|
|
* Input Parameters:
|
|
|
|
* modp - Module state information
|
|
|
|
* loadinfo - Load state information
|
|
|
|
*
|
2015-12-10 16:53:31 +01:00
|
|
|
* Returned Value:
|
|
|
|
* 0 (OK) is returned on success and a negated errno is returned on
|
|
|
|
* failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-03-10 06:52:58 +01:00
|
|
|
int modlib_bind(FAR struct module_s *modp,
|
|
|
|
FAR struct mod_loadinfo_s *loadinfo)
|
2015-12-10 16:53:31 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Find the symbol and string tables */
|
|
|
|
|
2017-01-29 18:17:29 +01:00
|
|
|
ret = modlib_findsymtab(loadinfo);
|
2015-12-10 16:53:31 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-12-12 14:09:17 +01:00
|
|
|
/* Allocate an I/O buffer. This buffer is used by mod_symname() to
|
2015-12-10 16:53:31 +01:00
|
|
|
* accumulate the variable length symbol name.
|
|
|
|
*/
|
|
|
|
|
2017-01-29 18:17:29 +01:00
|
|
|
ret = modlib_allocbuffer(loadinfo);
|
2015-12-10 16:53:31 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2018-06-01 18:10:17 +02:00
|
|
|
berr("ERROR: modlib_allocbuffer failed: %d\n", ret);
|
2015-12-10 16:53:31 +01:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Process relocations in every allocated section */
|
|
|
|
|
|
|
|
for (i = 1; i < loadinfo->ehdr.e_shnum; i++)
|
|
|
|
{
|
|
|
|
/* Get the index to the relocation section */
|
|
|
|
|
|
|
|
int infosec = loadinfo->shdr[i].sh_info;
|
|
|
|
if (infosec >= loadinfo->ehdr.e_shnum)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-01-27 18:43:27 +01:00
|
|
|
/* Make sure that the section is allocated. We can't relocate
|
2015-12-10 16:53:31 +01:00
|
|
|
* sections that were not loaded into memory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ((loadinfo->shdr[infosec].sh_flags & SHF_ALLOC) == 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Process the relocations by type */
|
|
|
|
|
|
|
|
if (loadinfo->shdr[i].sh_type == SHT_REL)
|
|
|
|
{
|
2017-01-29 17:05:15 +01:00
|
|
|
ret = modlib_relocate(modp, loadinfo, i);
|
2015-12-10 16:53:31 +01:00
|
|
|
}
|
|
|
|
else if (loadinfo->shdr[i].sh_type == SHT_RELA)
|
|
|
|
{
|
2017-01-29 17:05:15 +01:00
|
|
|
ret = modlib_relocateadd(modp, loadinfo, i);
|
2015-12-10 16:53:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure that the I and D caches are coherent before starting the newly
|
|
|
|
* loaded module by cleaning the D cache (i.e., flushing the D cache
|
|
|
|
* contents to memory and invalidating the I cache).
|
|
|
|
*/
|
|
|
|
|
|
|
|
up_coherent_dcache(loadinfo->textalloc, loadinfo->textsize);
|
2015-12-12 16:38:06 +01:00
|
|
|
up_coherent_dcache(loadinfo->datastart, loadinfo->datasize);
|
2015-12-10 16:53:31 +01:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|