2012-10-24 18:46:12 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* binfmt/libelf/libelf_init.c
|
|
|
|
*
|
2021-02-03 14:47:23 +01: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
|
2012-10-24 18:46:12 +02:00
|
|
|
*
|
2021-02-03 14:47:23 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-10-24 18:46:12 +02:00
|
|
|
*
|
2021-02-03 14:47:23 +01: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.
|
2012-10-24 18:46:12 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
2012-10-26 21:53:20 +02:00
|
|
|
|
2012-10-24 18:46:12 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <debug.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2018-09-15 18:49:41 +02:00
|
|
|
#include <nuttx/fs/fs.h>
|
2012-10-24 22:19:44 +02:00
|
|
|
#include <nuttx/binfmt/elf.h>
|
2012-10-24 18:46:12 +02:00
|
|
|
|
2012-10-25 18:18:20 +02:00
|
|
|
#include "libelf.h"
|
|
|
|
|
2012-10-24 18:46:12 +02:00
|
|
|
/****************************************************************************
|
2015-04-08 16:29:03 +02:00
|
|
|
* Pre-processor Definitions
|
2012-10-24 18:46:12 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2020-03-26 07:54:27 +01:00
|
|
|
/* CONFIG_DEBUG_FEATURES, CONFIG_DEBUG_INFO, and CONFIG_DEBUG_BINFMT have to
|
|
|
|
* be defined or CONFIG_ELF_DUMPBUFFER does nothing.
|
2012-10-24 18:46:12 +02:00
|
|
|
*/
|
|
|
|
|
2016-06-11 19:50:18 +02:00
|
|
|
#if !defined(CONFIG_DEBUG_INFO) || !defined (CONFIG_DEBUG_BINFMT)
|
2012-10-24 18:46:12 +02:00
|
|
|
# undef CONFIG_ELF_DUMPBUFFER
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_ELF_DUMPBUFFER
|
2016-06-11 19:59:51 +02:00
|
|
|
# define elf_dumpbuffer(m,b,n) binfodumpbuffer(m,b,n)
|
2012-10-24 18:46:12 +02:00
|
|
|
#else
|
|
|
|
# define elf_dumpbuffer(m,b,n)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Constant Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-10-26 21:53:20 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: elf_filelen
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Get the size of the ELF file
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 (OK) is returned on success and a negated errno is returned on
|
|
|
|
* failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static inline int elf_filelen(FAR struct elf_loadinfo_s *loadinfo,
|
|
|
|
FAR const char *filename)
|
|
|
|
{
|
|
|
|
struct stat buf;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Get the file stats */
|
|
|
|
|
2020-05-02 16:30:58 +02:00
|
|
|
ret = nx_stat(filename, &buf, 1);
|
2012-10-26 21:53:20 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2020-05-02 16:30:58 +02:00
|
|
|
berr("Failed to stat file: %d\n", ret);
|
|
|
|
return ret;
|
2012-10-26 21:53:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Verify that it is a regular file */
|
|
|
|
|
|
|
|
if (!S_ISREG(buf.st_mode))
|
|
|
|
{
|
2016-06-11 23:50:49 +02:00
|
|
|
berr("Not a regular file. mode: %d\n", buf.st_mode);
|
2012-10-26 21:53:20 +02:00
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: Verify that the file is readable. Not really important because
|
|
|
|
* we will detect this when we try to open the file read-only.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Return the size of the file in the loadinfo structure */
|
|
|
|
|
|
|
|
loadinfo->filelen = buf.st_size;
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2012-10-24 18:46:12 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: elf_init
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function is called to configure the library to process an ELF
|
|
|
|
* program binary.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 (OK) is returned on success and a negated errno is returned on
|
|
|
|
* failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int elf_init(FAR const char *filename, FAR struct elf_loadinfo_s *loadinfo)
|
|
|
|
{
|
2012-10-25 01:40:31 +02:00
|
|
|
int ret;
|
2012-10-24 18:46:12 +02:00
|
|
|
|
2016-06-11 19:59:51 +02:00
|
|
|
binfo("filename: %s loadinfo: %p\n", filename, loadinfo);
|
2012-10-24 18:46:12 +02:00
|
|
|
|
|
|
|
/* Clear the load info structure */
|
|
|
|
|
|
|
|
memset(loadinfo, 0, sizeof(struct elf_loadinfo_s));
|
|
|
|
|
2012-10-26 21:53:20 +02:00
|
|
|
/* Get the length of the file. */
|
|
|
|
|
|
|
|
ret = elf_filelen(loadinfo, filename);
|
2012-10-27 02:04:47 +02:00
|
|
|
if (ret < 0)
|
2012-10-26 21:53:20 +02:00
|
|
|
{
|
2016-06-11 23:50:49 +02:00
|
|
|
berr("elf_filelen failed: %d\n", ret);
|
2012-10-26 21:53:20 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Open the binary file for reading (only) */
|
2012-10-24 18:46:12 +02:00
|
|
|
|
2021-02-15 18:15:08 +01:00
|
|
|
ret = file_open(&loadinfo->file, filename, O_RDONLY);
|
|
|
|
if (ret < 0)
|
2012-10-24 18:46:12 +02:00
|
|
|
{
|
2018-09-15 18:49:41 +02:00
|
|
|
berr("Failed to open ELF binary %s: %d\n", filename, ret);
|
|
|
|
return ret;
|
2012-10-24 18:46:12 +02:00
|
|
|
}
|
|
|
|
|
2012-10-25 01:40:31 +02:00
|
|
|
/* Read the ELF ehdr from offset 0 */
|
2012-10-24 18:46:12 +02:00
|
|
|
|
2020-01-07 16:54:35 +01:00
|
|
|
ret = elf_read(loadinfo, (FAR uint8_t *)&loadinfo->ehdr,
|
2020-02-08 00:10:23 +01:00
|
|
|
sizeof(Elf_Ehdr), 0);
|
2012-10-24 18:46:12 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2016-06-11 23:50:49 +02:00
|
|
|
berr("Failed to read ELF header: %d\n", ret);
|
2012-10-24 18:46:12 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-01-07 16:54:35 +01:00
|
|
|
elf_dumpbuffer("ELF header", (FAR const uint8_t *)&loadinfo->ehdr,
|
2020-02-08 00:10:23 +01:00
|
|
|
sizeof(Elf_Ehdr));
|
2012-10-24 18:46:12 +02:00
|
|
|
|
|
|
|
/* Verify the ELF header */
|
|
|
|
|
2012-10-25 01:40:31 +02:00
|
|
|
ret = elf_verifyheader(&loadinfo->ehdr);
|
2015-10-09 03:20:17 +02:00
|
|
|
if (ret < 0)
|
2012-10-24 18:46:12 +02:00
|
|
|
{
|
2020-03-26 07:54:27 +01:00
|
|
|
/* This may not be an error because we will be called to attempt
|
|
|
|
* loading EVERY binary. If elf_verifyheader() does not recognize
|
|
|
|
* the ELF header, it will -ENOEXEC which simply informs the system
|
|
|
|
* that the file is not an ELF file. elf_verifyheader() will return
|
|
|
|
* other errors if the ELF header is not correctly formed.
|
2012-10-24 18:46:12 +02:00
|
|
|
*/
|
|
|
|
|
2016-06-11 23:50:49 +02:00
|
|
|
berr("Bad ELF header: %d\n", ret);
|
2012-10-25 01:40:31 +02:00
|
|
|
return ret;
|
2012-10-24 18:46:12 +02:00
|
|
|
}
|
|
|
|
|
2012-10-25 01:40:31 +02:00
|
|
|
return OK;
|
2012-10-24 18:46:12 +02:00
|
|
|
}
|