ELF Programs – With Symbol Tables

Updating a Release System with ELF Programs – With Symbol Tables

You can easily extend the firmware in your released, embedded system using ELF programs provided via a file system. For example, an SD card or, perhaps, downloaded into on-board SPI FLASH.

In order to support such post-release updates, your released firmware must support execution of ELF programs loaded into RAM and symbol tables also provided via the file system (see apps/examples/elf).

The files shown in this Wiki page can be downloaded here

Creating a Symbol Table

There are several ways to create an application symbol table. Only two are compatible with the example provided here:

  1. Board-specific Bring-up Logic Build a symbol table into the base firmware and add it to your board-specific bring-up logic. This technique is typically used in kernel mode with CONFIG_USER_INITPATH=y.

    In this setup, the system does not initialize using a standard C call like nsh_main(). Instead, it starts with an init ELF program, similar to how Linux initializes. The configuration option CONFIG_EXECFUNCS_SYMTAB_ARRAY initializes the system with a minimal set of symbols required by the init program. Once initialized, the init program would typically call boardctl() to put the final symbol table in place.

    To enable this method, you must:

    • Set CONFIG_EXECFUNCS_HAVE_SYMTAB=y in your configuration.

    • Provide a symbol table with the global name CONFIG_EXECFUNCS_SYMTAB_ARRAY with the variable name CONFIG_EXECFUNCS_NSYMBOLS_VAR that holds the number of symbol entries. The default symbol table name is g_symtab.

    In this example, let’s illustrate this using an STM32F4-Discovery configuration. We will assume that you have modified the boards/arm/stm32/stm32fdiscovery/src/stm32_bringup.c file, adding the following:

    #include <stdio.h>
    #include <nuttx/binfmt/symtab.h>
    
    const struct symtab_s g_symtab[] = {
        {"printf", (FAR void *)printf}
    };
    
    int g_nsymbols = 1;
    

    This is a simple symbol table containing only the symbol string “printf,” whose value is the address of the function printf().

    There is, of course, a lot more that could be said about generating symbol tables. NuttX provides specialized tools in the tools/ directory and instructions elsewhere for generating more extensive symbol tables. However, this example keeps things simple to focus on the core functionality.

  2. Application Logic Alternatively, the symbol table can be provided dynamically by the application itself, using the boardctl() system interface. The specific boardctl() command to use is BOARDIOC_APP_SYMTAB. This command provides the symbol table in the same way as the board-specific logic but allows for application-level control.

    To use this approach, you need to: - Enable the configurations CONFIG_LIB_BOARDCTL=y and CONFIG_BOARDCTL_APP_SYMTAB=y. - Include application logic to provide the symbol table. If CONFIG_EXAMPLES_NSH_SYMTAB=y is set, NSH can handle this automatically.

Export Package

At the time of firmware release, you should create and save an export package. This export package contains all the necessary files required to create post-release add-on modules for your embedded system.

For demonstration purposes, we use the STM32F4-Discovery with the network NSH configuration. This setup assumes that you have the STM32F4DIS-BB baseboard. The demonstration also requires support for externally modifiable media, such as:

  • Removable media, like an SD card or USB flash drive.

  • An internal file system remotely accessible via USB MSC, FTP, or other protocols.

  • A remote file system, such as NFS.

In this demonstration, the networking NSH configuration uses the SD card on the STM32 baseboard. Other NSH configurations can also be used, provided they supply the necessary file system support.

(No baseboard? You can add file system support to the basic STM32F4-Discovery board by following these instructions: USB FLASH drive or SD card.)

Example for STM32F4-Discovery:

$ make distclean
$ tools/configure.sh -c stm32f4discovery:netnsh
$ make menuconfig

Required configurations:

  • Disable networking: # CONFIG_NET is not set

  • Enable ELF binary support: CONFIG_ELF=y, CONFIG_LIBC_EXECFUNCS=y, CONFIG_EXECFUNCS_HAVE_SYMTAB=y, CONFIG_EXECFUNCS_SYMTAB_ARRAY="g_symtab" and CONFIG_EXECFUNCS_NSYMBOLS_VAR="g_nsymbols"

  • Enable PATH variable support: CONFIG_BINFMT_EXEPATH=y, CONFIG_PATH_INITIAL="/bin"

  • Enable execution from NSH: CONFIG_NSH_FILE_APPS=y

Then, build the NuttX firmware image and the export package:

$ make
$ make export

When make export completes, you will find a ZIP package in the top-level NuttX directory called nuttx-export-x.y.zip (where x.y corresponds to the version, determined by the .version file in the same directory). The contents of this ZIP file are organized as follows:

nuttx-export-x.x
|- arch/
|- build/
|- include/
|- libs/
|- startup/
|- System.map
`- .config

Add-On Build Directory

In order to create the add-on ELF program, you will need:

  1. The export package.

  2. A program build Makefile.

  3. A linker script used by the Makefile.

The example Makefile discussed below assumes the use of a GNU toolchain. Note that non-GNU toolchains would likely require a significantly different Makefile and linker script.

Hello Example

To keep things manageable, let’s use a concrete example. Suppose the ELF program that we wish to add to the release code is the simple source file hello.c:

#include <stdio.h>

int main(int argc, char **argv)
{
  printf("Hello from Add-On Program!\n");
  return 0;
}

Let’s say that we have a directory called addon that contains the following:

  1. The hello.c source file.

  2. A Makefile to build the ELF program.

  3. A linker script called gnu-elf.ld needed by the Makefile.

  4. The export package nuttx-export-7.25.zip.

Building the ELF Program

The first step in creating the ELF program is to unzip the export package. Starting in the addon directory:

$ cd addon
$ ls
gnu-elf.ld hello.c Makefile nuttx-export-7.25.zip

Where: - gnu-elf.ld is the linker script. - hello.c is the example source file. - Makefile builds the ELF program. - nuttx-export-7.25.zip is the export package from NuttX 7.25.

Unzip the export package as follows:

$ unzip nuttx-export-7.25.zip

This creates a new directory called nuttx-export-7.25, containing all the content from the released NuttX code required to build the ELF program.

The Makefile

To build the ELF program, simply run:

$ make

This uses the following Makefile to generate several files: - hello.o: The compiled object file for hello.c. - hello: The linked ELF program.

Only the resulting hello file is needed.

The Makefile used to create the ELF program is as follows:

include nuttx-export-7.25/build/Make.defs

# Long calls are need to call from RAM into FLASH

ARCHCFLAGS += -mlong-calls
ARCHWARNINGS = -Wall -Wstrict-prototypes -Wshadow -Wundef
ARCHOPTIMIZATION = -Os -fno-strict-aliasing -fno-strength-reduce -fomit-frame-pointer
ARCHINCLUDES = -I. -isystem  nuttx-export-7.25/include

CFLAGS = $(ARCHCFLAGS) $(ARCHWARNINGS) $(ARCHOPTIMIZATION) $(ARCHINCLUDES) -pipe

CROSSDEV = arm-none-eabi-
CC = $(CROSSDEV)gcc
LD = $(CROSSDEV)ld
STRIP = $(CROSSDEV)strip --strip-unneeded

# Setup up linker command line options

LDELFFLAGS = -r -e main
LDELFFLAGS += -T gnu-elf.ld

# This might change in a different environment

OBJEXT ?= .o

# This is the generated ELF program

BIN = hello

# These are the sources files that we use

SRCS = hello.c
OBJS = $(SRCS:.c=$(OBJEXT))

# Build targets

all: $(BIN)
.PHONY: clean

$(OBJS): %$(OBJEXT): %.c
$(CC) -c $(CFLAGS) $< -o $@

$(BIN): $(OBJS)
$(LD) $(LDELFFLAGS) -o $@ $^
$(STRIP) $(BIN)

clean:
rm -f $(BIN)
rm -f *.o

The Linker Script

The linker script that I am using in this example, gnu-elf.ld, contains the following:

SECTIONS
{
.text 0x00000000 :
    {
    _stext = . ;
    *(.text)
    *(.text.*)
    *(.gnu.warning)
    *(.stub)
    *(.glue_7)
    *(.glue_7t)
    *(.jcr)
    _etext = . ;
    }

.rodata :
    {
    _srodata = . ;
    *(.rodata)
    *(.rodata1)
    *(.rodata.*)
    *(.gnu.linkonce.r*)
    _erodata = . ;
    }

.data :
    {
    _sdata = . ;
    *(.data)
    *(.data1)
    *(.data.*)
    *(.gnu.linkonce.d*)
    _edata = . ;
    }

.bss :
    {
    _sbss = . ;
    *(.bss)
    *(.bss.*)
    *(.sbss)
    *(.sbss.*)
    *(.gnu.linkonce.b*)
    *(COMMON)
    _ebss = . ;
    }

    /* Stabs debugging sections.    */

    .stab 0 : { *(.stab) }
    .stabstr 0 : { *(.stabstr) }
    .stab.excl 0 : { *(.stab.excl) }
    .stab.exclstr 0 : { *(.stab.exclstr) }
    .stab.index 0 : { *(.stab.index) }
    .stab.indexstr 0 : { *(.stab.indexstr) }
    .comment 0 : { *(.comment) }
    .debug_abbrev 0 : { *(.debug_abbrev) }
    .debug_info 0 : { *(.debug_info) }
    .debug_line 0 : { *(.debug_line) }
    .debug_pubnames 0 : { *(.debug_pubnames) }
    .debug_aranges 0 : { *(.debug_aranges) }
}

Replacing NSH Built-In Functions

Files can be executed by NSH from the command line by simply typing the name of the ELF program. This requires (1) that the feature be enabled with CONFIG_NSH_FILE_APP=y and (2) that support for the PATH variable is enabled with CONFIG_BINFMT_EXEPATH=y and CONFIG_PATH_INITIAL set to the mount point of the file system that may contain ELF programs.

In this example, there is no application in the base firmware called hello. So attempts to run hello will fail:

nsh> hello
nsh: hello: command not found
nsh>

But if we mount the SD card containing the hello image that we created above, then we can successfully execute the hello command:

nsh> mount -t vfat /dev/mmcsd0 /bin
nsh> ls /bin
/bin:
 System Volume Information/
 hello
nsh> hello
Hello from Add-On Program!
nsh>

Here we showed how you can add a new command to NSH to a product without modifying the base firmware. We can also replace or update an existing built-in application in this way:

In the above configuration, NSH will first attempt to run the program called hello from the file system. This will fail because we have not yet put our custom hello ELF program in the file system. So instead, NSH will fallback and execute the built-in application called hello. In this way, any command known to NSH can be replaced from an ELF program installed in a mounted file system directory that can be found via the PATH variable.

After we do add our custom hello to the file system, when NSH attempts to run the program called hello from the file system it will run successfully. The built-in version will be ignored. It has been replaced with the version in the file system.

Tightly Coupled Memories

Most MCUs based on ARMv7-M family processors support some kind of Tightly Coupled Memory (TCM). These TCMs have somewhat different properties for specialized operations. Depending on the bus matrix of the processor, you may not be able to execute programs from the TCM. For instance, the STM32 F4 supports Core Coupled Memory (CCM), but since it is tied directly to the D-bus, it cannot be used to execute programs! On the other hand, the STM32F3 has a CCM that is accessible to both the D-Bus and the I-Bus, in which case it should be possible to execute programs from this TCM.

../_images/system_arch_stm32f42xx_and_f43xx.png ../_images/system_arch_stm32f303xBC_and_f358xC.png

When ELF programs are loaded into memory, the memory is allocated from the heap via a standard memory allocator. By default with the STM32 F4, the CCM is included in the heap and will typically be allocated first. If CCM memory is allocated to hold the ELF program in memory, then a hard-fault will occur immediately when you try to execute the ELF program in memory.

Therefore, it is necessary on STM32 F4 platforms to include the following configuration setting:

CONFIG_STM32_CCMEXCLUDE=y

With that setting, the CCM memory will be excluded from the heap and so will never be allocated for ELF program memory.