Tracing and Logging high-level design¶
Both Trace and Log are built on top of a mechanism named shared buffer (Sbuf).
ACRN Trace¶
ACRNTrace is a tool running on the Service OS (SOS) to capture trace data. It allows developers to add performance profiling trace points at key locations to get a picture of what is going on inside the hypervisor. Scripts to analyze the collected trace data are also provided.
As shown in Figure 204, ACRNTrace is built using Shared Buffers (Sbuf), and consists of three parts from bottom layer up:
- ACRNTrace userland app: Userland application collecting trace data to files (Per Physical CPU)
- SOS Trace Module: allocates/frees SBufs, creates device for each SBuf, sets up sbuf shared between SOS and HV, and provides a dev node for the userland app to retrieve trace data from Sbuf
- Trace APIs: provide APIs to generate trace event and insert to Sbuf.
Trace APIs¶
Note
reference APIs defined in hypervisor/include/debug/trace.h for trace_entry struct and functions.
SOS Trace Module¶
The SOS trace module is responsible for:
- allocating sbuf in sos memory range for each physical CPU, and assign
the gpa of Sbuf to
per_cpu sbuf[ACRN_TRACE]
- create a misc device for each physical CPU
- provide mmap operation to map entire Sbuf to userspace for high flexible and efficient access.
On SOS shutdown, the trace module is responsible to remove misc devices, free
SBufs, and set per_cpu sbuf[ACRN_TRACE]
to null.
ACRNTrace Application¶
ACRNTrace application includes a binary to retrieve trace data from Sbuf, and Python scripts to convert trace data from raw format into readable text, and do analysis.
Figure 2.2 shows the sequence of trace initialization and trace data collection. With a debug build, trace components are initialized at boot time. After initialization, HV writes trace event date into sbuf until sbuf is full, which can happen easily if the ACRNTrace app is not consuming trace data from Sbuf on SOS user space.
Once ACRNTrace is launched, for each physical CPU a consumer thread is created to periodically read RAW trace data from sbuf and write to a file.
Note
figure is missing
Figure 2.2 Sequence of trace init and trace data collection
These are the Python scripts provided:
- acrntrace_format.py converts RAW trace data to human-readable text offline according to given format;
- acrnalyze.py analyzes trace data (as output by acrntrace) based on given analyzer filters, such as vm_exit or irq, and generates a report.
See acrntrace for details and usage.
ACRN Log¶
acrnlog is a tool used to capture ACRN hypervisor log to files on SOS filesystem. It can run as an SOS service at boot, capturing two kinds of logs:
- Current runtime logs;
- Logs remaining in the buffer, from last crashed running.
Architectural diagram¶
Similar to the design of ACRN Trace, ACRN Log is built on the top of Shared Buffer (Sbuf), and consists of three parts from bottom layer up:
- ACRN Log app: Userland application collecting hypervisor log to files;
- SOS ACRN Log Module: constructs/frees SBufs at reserved memory area, creates dev for current/last logs, sets up sbuf shared between SOS and HV, and provides a dev node for the userland app to retrieve logs
- ACRN log support in HV: put logs at specified loglevel to Sbuf.
ACRN log support in Hypervisor¶
To support acrn log, the following adaption was made to hypervisor log system:
- log messages with severity level higher than a specified value will be put into Sbuf when calling logmsg in hypervisor
- allocate sbuf to accommodate early hypervisor logs before SOS can allocate and set up sbuf
There are 6 different loglevels, as shown below. The specified
severity loglevel is stored in mem_loglevel
, initialized
by CONFIG_MEM_LOGLEVEL_DEFAULT
. The loglevel can
be set to a new value
at runtime via hypervisor shell command “loglevel”.
#define LOG_FATAL 1U
#define LOG_ACRN 2U
#define LOG_ERROR 3U
#define LOG_WARNING 4U
#define LOG_INFO 5U
#define LOG_DEBUG 6U
The element size of sbuf for logs is fixed at 80 bytes, and the max size of a single log message is 320 bytes. Log messages with a length between 80 and 320 bytes will be separated into multiple sbuf elements. Log messages with length larger then 320 will be truncated.
For security, SOS allocates sbuf in its memory range and assigns it to the hypervisor. To handle log messages before SOS boots, sbuf for each physical cpu will be allocated in acrn hypervisor memory range for any early log entries. Once sbuf in the SOS memory range is allocated and assigned to hypervisor via hypercall, the Hypervisor logmsg will switch to use SOS allocated sbuf, early logs will be copied, and early sbuf in hypervisor memory range will be freed.
SOS ACRN Log Module¶
To enable retrieving log messages from a crash, 4MB of memory from 0x6DE00000 is reserved for acrn log. This space is further divided into two each ranges, one for current run and one for last previous run:
On SOS boot, SOS acrnlog module is responsible to:
- examine if there are log messages remaining from last crashed run by checking the magic number of each sbuf
- if there are previous crash logs, construct sbuf and create misc devices for these last logs
- construct sbuf in the usable buf range for each physical CPU,
assign the gpa of Sbuf to
per_cpu sbuf[ACRN_LOG]
and create a misc device for each physical CPU - the misc devices implement read() file operation to allow userspace app to read one Sbuf element.
When checking the validity of sbuf for last logs examination, it sets the
current sbuf with magic number 0x5aa57aa71aa13aa3
, and changes the
magic number of last sbuf to 0x5aa57aa71aa13aa2
, to distinguish which is
the current/last.
On SOS shutdown, the module is responsible to remove misc devices,
free SBufs, and set per_cpu sbuf[ACRN_TRACE]
to null.
ACRN Log Application¶
ACRNLog application reads log messages from sbuf for each physical CPU and combines them into log files with log messages in ascending order by the global sequence number. If the sequence number is not continuous, a warning of “incontinuous logs” will be inserted.
To avoid using up storage space, the size of a single log file and the total number of log files are both limited. By default, log file size limitation is 1MB and file number limitation is 4.
If there are last log devices, ACRN log will read out the log messages, combine them, and save them into last log files.
See acrnlog for usage details.