2012-10-24 18:46:12 +02:00
|
|
|
/****************************************************************************
|
2021-03-08 22:39:04 +01:00
|
|
|
* binfmt/libelf/libelf_verify.c
|
2012-10-24 18:46:12 +02: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 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 <string.h>
|
|
|
|
#include <debug.h>
|
|
|
|
#include <errno.h>
|
2012-10-25 01:40:31 +02:00
|
|
|
|
2019-01-26 18:18:45 +01:00
|
|
|
#include <nuttx/elf.h>
|
2012-10-24 22:19:44 +02:00
|
|
|
#include <nuttx/binfmt/elf.h>
|
2012-10-24 18:46:12 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Constant Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-10-09 03:20:17 +02:00
|
|
|
static const char g_elfmagic[EI_MAGIC_SIZE] =
|
|
|
|
{
|
|
|
|
0x7f, 'E', 'L', 'F'
|
|
|
|
};
|
2012-10-25 01:40:31 +02:00
|
|
|
|
2012-10-24 18:46:12 +02: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-25 01:40:31 +02:00
|
|
|
* -ENOEXEC : Not an ELF file
|
2012-10-25 18:18:20 +02:00
|
|
|
* -EINVAL : Not a relocatable ELF file or not supported by the current,
|
2012-10-25 01:40:31 +02:00
|
|
|
* configured architecture.
|
|
|
|
*
|
2012-10-24 18:46:12 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2020-02-08 00:10:23 +01:00
|
|
|
int elf_verifyheader(FAR const Elf_Ehdr *ehdr)
|
2012-10-24 18:46:12 +02:00
|
|
|
{
|
2012-10-25 01:40:31 +02:00
|
|
|
if (!ehdr)
|
2012-10-24 18:46:12 +02:00
|
|
|
{
|
2016-06-11 23:50:49 +02:00
|
|
|
berr("NULL ELF header!");
|
2012-10-24 18:46:12 +02:00
|
|
|
return -ENOEXEC;
|
|
|
|
}
|
|
|
|
|
2012-10-25 01:40:31 +02:00
|
|
|
/* Verify that the magic number indicates an ELF file */
|
|
|
|
|
|
|
|
if (memcmp(ehdr->e_ident, g_elfmagic, EI_MAGIC_SIZE) != 0)
|
|
|
|
{
|
2016-06-11 19:59:51 +02:00
|
|
|
binfo("Not ELF magic {%02x, %02x, %02x, %02x}\n",
|
2020-03-26 07:54:27 +01:00
|
|
|
ehdr->e_ident[0], ehdr->e_ident[1], ehdr->e_ident[2],
|
|
|
|
ehdr->e_ident[3]);
|
2012-10-25 01:40:31 +02:00
|
|
|
return -ENOEXEC;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Verify that this is a relocatable file */
|
|
|
|
|
|
|
|
if (ehdr->e_type != ET_REL)
|
|
|
|
{
|
2016-06-11 23:50:49 +02:00
|
|
|
berr("Not a relocatable file: e_type=%d\n", ehdr->e_type);
|
2012-10-25 18:18:20 +02:00
|
|
|
return -EINVAL;
|
2012-10-25 01:40:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Verify that this file works with the currently configured architecture */
|
|
|
|
|
2017-05-09 17:58:05 +02:00
|
|
|
if (!up_checkarch(ehdr))
|
2012-10-25 01:40:31 +02:00
|
|
|
{
|
2016-06-11 23:50:49 +02:00
|
|
|
berr("Not a supported architecture\n");
|
2012-10-25 01:40:31 +02:00
|
|
|
return -ENOEXEC;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Looks good so far... we still might find some problems later. */
|
|
|
|
|
|
|
|
return OK;
|
2012-10-24 18:46:12 +02:00
|
|
|
}
|