Einit entity
One of the most important entities in KasperskyOS is the entity named Einit, which is the first entity started by the operating system kernel when the image is loaded. In most solutions built on KasperskyOS, the Einit
entity starts all other entities included in the solution, which means that it serves as the initializing entity.
The toolkit provided in KasperskyOS Community Edition includes the einit tool, which lets you generate the code of the Einit
entity in C based on the init.yaml
file (also known as the init description). The Einit
entity created using the einit
script performs the following initializing functions:
- creates all entities included in the solution;
- creates required connections (IPC channels) between entities;
- copies information about the entity's connections into the environment of each entity;
- starts entities.
The standard way of using the einit
tool is to integrate an einit call into one of the steps of the build script. As a result, the einit
tool uses the init.yaml
file to generate the einit.c
file containing the Einit
entity code. In one of the following steps of the build script, compile the einit.c
file into the executable file of the Einit
entity and include it into the solution image.
You are not required to create static description files for the Einit
entity. These files are included in the KasperskyOS Community Edition toolkit and are automatically connected during a solution build. However, the Einit
entity must be described in the security.psl
file.