2012-10-24 16:46:12 +00:00
|
|
|
/****************************************************************************
|
2021-03-08 18:39:04 -03:00
|
|
|
* binfmt/libelf/libelf_verify.c
|
2012-10-24 16:46:12 +00:00
|
|
|
*
|
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 16:46:12 +00:00
|
|
|
*
|
2021-02-03 14:47:23 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-10-24 16:46:12 +00: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 16:46:12 +00:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <debug.h>
|
|
|
|
#include <errno.h>
|
2012-10-24 23:40:31 +00:00
|
|
|
|
2019-01-26 11:18:45 -06:00
|
|
|
#include <nuttx/elf.h>
|
2012-10-24 20:19:44 +00:00
|
|
|
#include <nuttx/binfmt/elf.h>
|
2012-10-24 16:46:12 +00:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Constant Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
2023-07-04 17:34:09 +08:00
|
|
|
static const char g_elfmagic[EI_MAGIC_SIZE] = EI_MAGIC;
|
2012-10-24 23:40:31 +00:00
|
|
|
|
2012-10-24 16:46:12 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: elf_verifyheader
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Given the header from a possible ELF executable, verify that it
|
|
|
|
* is an ELF executable.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 (OK) is returned on success and a negated errno is returned on
|
|
|
|
* failure.
|
|
|
|
*
|
2012-10-24 23:40:31 +00:00
|
|
|
* -ENOEXEC : Not an ELF file
|
2012-10-25 16:18:20 +00:00
|
|
|
* -EINVAL : Not a relocatable ELF file or not supported by the current,
|
2012-10-24 23:40:31 +00:00
|
|
|
* configured architecture.
|
|
|
|
*
|
2012-10-24 16:46:12 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
2020-02-07 17:10:23 -06:00
|
|
|
int elf_verifyheader(FAR const Elf_Ehdr *ehdr)
|
2012-10-24 16:46:12 +00:00
|
|
|
{
|
2012-10-24 23:40:31 +00:00
|
|
|
if (!ehdr)
|
2012-10-24 16:46:12 +00:00
|
|
|
{
|
2016-06-11 15:50:49 -06:00
|
|
|
berr("NULL ELF header!");
|
2012-10-24 16:46:12 +00:00
|
|
|
return -ENOEXEC;
|
|
|
|
}
|
|
|
|
|
2012-10-24 23:40:31 +00:00
|
|
|
/* Verify that the magic number indicates an ELF file */
|
|
|
|
|
|
|
|
if (memcmp(ehdr->e_ident, g_elfmagic, EI_MAGIC_SIZE) != 0)
|
|
|
|
{
|
2016-06-11 11:59:51 -06:00
|
|
|
binfo("Not ELF magic {%02x, %02x, %02x, %02x}\n",
|
2020-03-26 15:54:27 +09:00
|
|
|
ehdr->e_ident[0], ehdr->e_ident[1], ehdr->e_ident[2],
|
|
|
|
ehdr->e_ident[3]);
|
2012-10-24 23:40:31 +00:00
|
|
|
return -ENOEXEC;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Verify that this is a relocatable file */
|
|
|
|
|
2023-07-03 00:11:02 +08:00
|
|
|
if (ehdr->e_type != ET_REL && ehdr->e_type != ET_EXEC)
|
2012-10-24 23:40:31 +00:00
|
|
|
{
|
2023-05-26 14:22:36 +10:00
|
|
|
berr("Not a relocatable or executable file: e_type=%d\n",
|
2023-06-10 20:24:08 +03:00
|
|
|
ehdr->e_type);
|
2012-10-25 16:18:20 +00:00
|
|
|
return -EINVAL;
|
2012-10-24 23:40:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Verify that this file works with the currently configured architecture */
|
|
|
|
|
2017-05-09 08:58:05 -07:00
|
|
|
if (!up_checkarch(ehdr))
|
2012-10-24 23:40:31 +00:00
|
|
|
{
|
2016-06-11 15:50:49 -06:00
|
|
|
berr("Not a supported architecture\n");
|
2012-10-24 23:40:31 +00:00
|
|
|
return -ENOEXEC;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Looks good so far... we still might find some problems later. */
|
|
|
|
|
|
|
|
return OK;
|
2012-10-24 16:46:12 +00:00
|
|
|
}
|