nerves_runtime
is a core component of Nerves. It contains applications and
libraries that are expected to be useful on all Nerves devices.
Here are its features:
- Generic system and filesystem initialization (suitable for use with
shoehorn
) - Introspection of Nerves system, firmware, and deployment metadata
- Device reboot and shutdown
- A small Linux kernel
uevent
application for capturing hardware change events and more - Device serial numbers
The following sections describe the features in more detail. For more information, see the hex docs.
nerves_runtime
provides an OTP application (nerves_runtime
) that can
initialize the system when it is started. For this to be useful,
nerves_runtime
must be started before other OTP applications, since most will
assume that the system is already initialized before they start. To set up
nerves_runtime
to work with shoehorn
, you will need to do the following:
- Include
shoehorn
inmix.exs
- Include
shoehorn
in yourrel/config.exs
- Ensure that
:nerves_runtime
is at the beginning of theinit:
list in yourconfig/config.exs
:
config :shoehorn,
overlay_path: "",
init: [:nerves_runtime, :other_app1, :other_app2],
app: :your_app
nerves_runtime
will attempt to auto-load kernel modules by calling modprobe
using the modalias
supplied by the device's uevent
message. You can disable
this feature by configuring autoload: false
in your application configuration:
config :nerves_runtime, :kernel,
autoload_modules: false
nerves_runtime
can optionally report device insertions and removals through
SystemRegistry. This is
currently the default, but you can disable it via configuration:
config :nerves_runtime, :kernel,
use_system_registry: false
Nerves systems generally ship with one or more application filesystem partitions. These are used for persisting data that is expected to live between firmware updates. The root filesystem cannot be used since it is mounted as read-only by default.
nerves_runtime
takes an unforgiving approach to managing the application
partition: if it can't be mounted as read-write, it gets re-formatted. While
filesystem corruption should be a rare event, even with unexpected loss of
power, Nerves devices may not always be accessible for manual recovery. This
default behavior provides a basic recoverability guarantee.
To verify that this recovery works, Nerves systems usually leave the application filesystems uninitialized so that the format operation happens on the first boot. This means that the first boot takes slightly longer than subsequent boots.
Note that a common implementation of "reset to factory defaults" is to purposely corrupt the application partition and reboot.
nerves_runtime
uses firmware metadata to determine how to mount and initialize
the application partition. The following variables are important:
[partition].nerves_fw_application_part0_devpath
- the path to the application partition (e.g./dev/mmcblk0p3
)[partition].nerves_fw_application_part0_fstype
- the type of filesystem (e.g.ext4
)[partition].nerves_fw_application_part0_target
- where the partition should be mounted (e.g./root
or/mnt/appdata
)
All official Nerves systems maintain a list of key-value pairs for tracking various information about the system. This information is not intended to be written frequently. To get this information, you can call one of the following:
Nerves.Runtime.KV.get_all_active/0
- return all key-value pairs associated with the active firmware.Nerves.Runtime.KV.get_all/0
- return all key-value pairs, including those from the inactive firmware, if any.Nerves.Runtime.KV.get_active/1
- look up the value of a key associated with the active firmware.Nerves.Runtime.KV.get/1
- look up the value of a key, including those from the inactive firmware, if any.
Global Nerves metadata includes the following:
Key | Build Environment Variable | Example Value | Description |
---|---|---|---|
nerves_fw_active |
N/A | "a" |
This key holds the prefix that identifies the active firmware metadata. In this example, all keys starting with "a." hold information about the running firmware. |
nerves_fw_devpath |
NERVES_FW_DEVPATH |
"/dev/mmcblk0" |
This is the primary storage device for the firmware. |
nerves_serial_number |
N/A | "12345abc" |
This is a text serial number. See Serial numbers for details. |
nerves_fw_validated |
N/A | 0 |
Set to "1" to indicate that the currently running firmware is valid. (Only supported on some platforms) |
nerves_fw_autovalidate |
N/A | 1 |
Set to "1" to indicate that firmware updates are valid without any additional checks. (Only supported on some platforms) |
Firmware-specific Nerves metadata includes the following:
Key | Example Value | Description |
---|---|---|
nerves_fw_application_part0_devpath |
"/dev/mmcblk0p3" |
The block device that contains the application partition |
nerves_fw_application_part0_fstype |
"ext4" |
The application partition's filesystem type |
nerves_fw_application_part0_target |
"/root" |
Where to mount the application partition |
nerves_fw_architecture |
"arm" |
The processor architecture (Not currently used) |
nerves_fw_author |
"John Doe" |
The person or company that created this firmware |
nerves_fw_description |
"Stuff" |
A description of the project |
nerves_fw_platform |
"rpi3" |
A name to identify the board that this runs on. It can be checked in the fwup.conf before performing an upgrade. |
nerves_fw_product |
"My Product" |
A product name that may show up in a firmware selection list, for example |
nerves_fw_version |
"1.0.0" |
The project's version |
nerves_fw_vcs_identifier |
"bdeead38..." |
A git SHA or other identifier (optional) |
nerves_fw_misc |
"anything..." |
Any application info that doesn't fit in another field (optional) |
Note that the keys are stored in the environment block prefixed by the firmware
slot for which they pertain. For example, a.nerves_fw_description
is the
description for the firmware in the "A" slot.
Several of the keys can be set in the mix.exs
file of your main Nerves
project. This is the preferred way to set them because it requires the least
amount of effort.
Assuming that your fwup.conf
respects the fwup
variable names listed in the
table, the keys can also be overridden by setting environment variables at build
time. Depending on your project, you may prefer to set them using a customized
fwup.conf
configuration file instead.
The fwup -m
value shows the key that you'll see if you run fwup -m -i project.fw
to extract the firmware metadata from the .fw
file.
Key in Nerves.Runtime |
Key in mix.exs |
Build Environment Variable | Key in fwup -m |
---|---|---|---|
nerves_fw_application_part0_devpath |
N/A | NERVES_FW_APPLICATION_PART0_DEVPATH |
N/A |
nerves_fw_application_part0_fstype |
N/A | NERVES_FW_APPLICATION_PART0_FSTYPE |
N/A |
nerves_fw_application_part0_target |
N/A | NERVES_FW_APPLICATION_PART0_TARGET |
N/A |
nerves_fw_architecture |
N/A | NERVES_FW_ARCHITECTURE |
meta-architecture |
nerves_fw_author |
:author |
NERVES_FW_AUTHOR |
meta-author |
nerves_fw_description |
:description |
NERVES_FW_DESCRIPTION |
meta-description |
nerves_fw_platform |
N/A | NERVES_FW_PLATFORM |
meta-platform |
nerves_fw_product |
:name |
NERVES_FW_PRODUCT |
meta-product |
nerves_fw_version |
:version |
NERVES_FW_VERSION |
meta-version |
nerves_fw_vcs_identifier |
N/A | NERVES_FW_VCS_IDENTIFIER |
meta-vcs-identifier |
nerves_fw_misc |
N/A | NERVES_FW_MISC |
meta-misc |
Rebooting, powering-off, and halting a device work by signaling to
erlinit
an intention to shutdown
and then exiting the Erlang VM by calling :init.stop/0
. The
Nerves.Runtime.reboot/0
and related utilities are helper methods for this.
Once they return, the Erlang VM will likely only be available momentarily before
shutdown. If the OTP applications cannot be stopped within a timeout as
specified in the erlinit.config
, erlinit
will ungracefully terminate the
Erlang VM.
If you'd like to go back to the previous version of firmware running on a device, you can do that if the Nerves system supports it. At the IEx prompt, run:
iex> Nerves.Runtime.revert
Running this command manually is useful in development. Production use requires more work to protect against faulty upgrades.
Nerves firmware updates protect against update corruption and power loss midway into the update procedure. However, what happens if the firmware update contains bad code that hangs the device or breaks something important like networking? Some Nerves systems support tentative runs of new firmware and if something goes wrong, they'll revert back.
At a high level, this involves some additional code from the developer that knows what constitutes "working". This could be "is it possible to connect to the firmware update server within 5 minutes of boot?"
Here's the process:
- New firmware is installed in the normal manner. The
Nerves.Runtime.KV
variable,nerves_fw_validated
is set to 0. (The systemsfwup.conf
does this) - The system reboots like normal.
- The device starts a five minute reboot timer (your code needs to do this if you want to catch hangs or super-slow boots)
- The application attempts to make a connection to the firmware update server.
- On a good connection, the application sets
nerves_fw_validated
to 1 by callingNerves.Runtime.validate_firmware/0
and cancels the reboot timer. - On error, the reboot timer failing, or a hardware watchdog timeout, the system reboots. The bootloader reverts to the previous firmware.
Some Nerves systems support a KV variable called nerves_fw_autovalidate
. The
intention of this variable was to make that system support scenarios that
require validate and ones that don't. If the system supports this variable then
you should make sure that it is set to 0 (either via a custom fwup.conf or via
the provisioning hooks for writing serial numbers to MicroSD cards). Support for
the nerves_fw_autovalidate
variable will likely go away in the future as steps
are made to make automatic revert on bad firmware a default feature of Nerves
rather than an add-on.
Unfortunately, the bootloader for platforms like the Raspberry Pi makes it difficult to implement the above mechanism. The following strategy cannot protect against kernel and early boot issues, but it can still provide value:
- Upgrade firmware the normal way. Record that the next boot will be the first one in the application data partition.
- On the reboot, if this is the first one, record that the boot happened and
revert the firmware with
reboot: false
. If this is not the first boot, carry on. - When you're happy with the new firmware, revert the firmware again with
reboot: false
. I.e., revert the revert. It is critical thatrevert
is only called once.
To make this handle hangs, you'll want to enable a hardware watchdog.
Operating system-level messages from /dev/log
and /proc/kmsg
, forwarding
them to Logger
with an appropriate level to match the syslog priority parsed
out of the message.
nerves_runtime
receives and processes UEvents from the Linux kernel. The processed
events' data is stored in the SystemRegistry
. So you need to obtain a current
SystemRegistry
map before querying the data. E.g.:
sr = SystemRegistry.match(:_)
nerves_runtime
stores all device data categorized by subsystem under
[:state, "subsystems"]
: This map uses the subsystem name as key. It's value
is a list of device paths.
The list of currently known subsystems can be obtained using:
iex> Map.keys(sr[:state]["subsystems"])
["mdio_bus", "remoteproc", "regulator", "iio", "mem", "soc", "queues",
"scsi_host", "clocksource", "mmc", "scsi_device", "mmc_host", "i2c", "bsg",
"dma", "workqueue", "misc", "platform", "leds", "spi_master", "gpio", "scsi",
"vc", "usb", "vtconsole", "watchdog", "scsi_disk", "uio", "bdi", "hidg", "udc",
"mbox", "cpu", "nvmem", "net", "spi", "clockevents", "block", "mmc_rpmb",
"tty", "i2c-dev", "spidev", "pwm"]
The list of devices paths for a specific subsystem can be obtained as follows:
iex> sr[:state]["subsystems"]["mem"]
[
[:state, "devices", "virtual", "mem", "random"],
[:state, "devices", "virtual", "mem", "null"],
[:state, "devices", "virtual", "mem", "urandom"],
[:state, "devices", "virtual", "mem", "full"],
[:state, "devices", "virtual", "mem", "kmsg"],
[:state, "devices", "virtual", "mem", "zero"],
[:state, "devices", "virtual", "mem", "mem"]
]
WARNING: Compared to the original device paths used by Linux the device path lists contain an additional
:state
prefix. This allows for a direct usage as keypath intoSystemRegistry
to access their properties.
To access the properties of one of the devices above simply use it's device path
with get_in
on SystemRegistry
:
iex> get_in(sr, [:state, "devices", "virtual", "mem", "zero"])
%{
"devmode" => "0666",
"devname" => "zero",
"major" => "1",
"minor" => "5",
"subsystem" => "mem"
}
WARNING: Please note that the returned map might contain non-binary values for non-leaf devices!
iex> get_in(sr, [:state, "devices", "platform", "ocp", "481d8000.mmc", "mmc_host", "mmc1", "mmc1:0001", "block", "mmcblk1"])
%{
"devname" => "mmcblk1",
"devtype" => "disk",
"major" => "179",
"minor" => "8",
"mmcblk1boot0" => %{
"devname" => "mmcblk1boot0",
"devtype" => "disk",
"major" => "179",
"minor" => "16",
"subsystem" => "block"
},
"mmcblk1boot1" => %{
"devname" => "mmcblk1boot1",
"devtype" => "disk",
"major" => "179",
"minor" => "24",
"subsystem" => "block"
},
"subsystem" => "block"
}
The non-binary values are actually the child devices of the device accessed. If you only need the actual device properties you need to filter out non-binary elements.
iex> get_in(sr, [:state, "devices", "platform", "ocp", "481d8000.mmc", "mmc_host", "mmc1", "mmc1:0001", "block", "mmcblk1"])
|> Enum.filter(fn {key, value} -> is_binary(value) end)
|> Map.new()
%{
"devname" => "mmcblk1",
"devtype" => "disk",
"major" => "179",
"minor" => "8",
"subsystem" => "block"
}
Finding the serial number of a device is both hardware specific and influenced
by you and your organization's choices for assigning them (or not). Programs
should call Nerves.Runtime.serial_number/0
to get the serial number.
Nerves systems all come with some default way of getting a serial number for a
device. This strategy will likely work for a while, but may not meet your needs
when it comes to production. Nerves uses
boardid
to read serial numbers
and it can be customized via its /etc/boardid.config
file. See boardid
for
the mechanisms available. If none of boardid
's mechanisms work for you, please
consider filing an issue or making a PR, since our history has been that
organizations tend to use similar mechanisms and it's likely someone else will
use it too.
As a word of caution, many Nerves users write serial numbers in the U-Boot
environment block under the key nerves_serial_number
. This is supported and
documentation exists for it in many places. While it's very convenient, it has
drawbacks - like it's easily modified. It's definitely not the only mechanism.
The boardid.config
file supports trying multiple ways of getting a serial
number to handle hardware changing over the course of development.
See embedded-elixir for how to assign serial numbers to devices using the U-Boot environment block way.
Applications that depend on nerves_runtime
for accessing provisioning
information from the Nerves.Runtime.KV
can mock the contents with the included
Nerves.Runtime.KV.Mock
module through the Application config:
config :nerves_runtime, Nerves.Runtime.KV.Mock, %{"key" => "value"}
You can also create your own module based on the Nerves.Runtime.KV
behavior
and set it to be used in the Application config. In most situations, the
provided Nerves.Runtime.KV.Mock
should be sufficient, though this would be
helpful in cases where you might need to generate the initial state at runtime
instead:
defmodule MyApp.KV.Mock do
@behaviour Nerves.Runtime.KV
@impl Nerves.Runtime.KV
def init(_opts) do
# initial state
%{
"howdy" => "partner",
"dynamic" => some_runtime_calc_function()
}
end
@impl Nerves.Runtime.KV
def put(_map), do: :ok
end
# Then in config.exs
config :nerves_runtime, :modules, [
{Nerves.Runtime.KV, MyApp.KV.Mock}
]