1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
/* -------------------------------------------------------------------------- *\
* Apache 2.0 License Copyright © 2022-2023 The Aurae Authors *
* *
* +--------------------------------------------+ *
* | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | *
* | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | *
* | ███████║██║ ██║██████╔╝███████║█████╗ | *
* | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | *
* | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | *
* | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | *
* +--------------------------------------------+ *
* *
* Distributed Systems Runtime *
* *
* -------------------------------------------------------------------------- *
* *
* Licensed 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 *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* 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. *
* *
\* -------------------------------------------------------------------------- */
use super::{SocketStream, SystemRuntime, SystemRuntimeError};
use crate::init::{
fs::MountSpec, logging, network, power::spawn_thread_power_button_listener,
system_runtimes::create_tcp_socket_stream, BANNER,
};
use std::{net::SocketAddr, path::Path};
use tonic::async_trait;
use tracing::{error, info, trace};
const POWER_BUTTON_DEVICE: &str = "/dev/input/event0";
const DEFAULT_NETWORK_SOCKET_ADDR: &str = "[::]:8080";
pub(crate) struct Pid1SystemRuntime;
impl Pid1SystemRuntime {
fn spawn_system_runtime_threads(&self) {
// ---- MAIN DAEMON THREAD POOL ----
// TODO: https://github.com/aurae-runtime/auraed/issues/33
match spawn_thread_power_button_listener(Path::new(POWER_BUTTON_DEVICE))
{
Ok(_) => {
info!("Spawned power button device listener");
}
Err(e) => {
error!(
"Failed to spawn power button device listener. Error={e}"
);
}
}
// ---- MAIN DAEMON THREAD POOL ----
}
}
#[async_trait]
impl SystemRuntime for Pid1SystemRuntime {
// Executing as PID 1 context
async fn init(
self,
verbose: bool,
socket_address: Option<String>,
) -> Result<SocketStream, SystemRuntimeError> {
println!("{BANNER}");
// Initialize the PID 1 logger
logging::init(verbose, false)?;
info!("Running as pid 1");
trace!("Configure filesystem");
// NOTE: THESE TODOS WERE ALL HERE, BUT...
// if you are here, you are auraed is true pid 1
// Container -> use container_system_runtime.rs
// Cell -> use cell_system_runtime.rs
// TODO We need to determine how we want to handle mountings these filesystems.
// TODO From within the context of a container (cgroup trailing / in cgroup namespace)
// TODO We likely to do not need to mount these filesystems.
// TODO Do we want to have a way to "try" these mounts and continue without erroring?
MountSpec { source: None, target: "/sys", fstype: Some("sysfs") }
.mount()?;
MountSpec {
source: Some("proc"),
target: "/proc",
fstype: Some("proc"),
}
.mount()?;
MountSpec {
source: Some("debugfs"),
target: "/sys/kernel/debug",
fstype: Some("debugfs"),
}
.mount()?;
trace!("Configure network");
// show_dir("/sys/class/net/", false); // Show available network interfaces
let network = network::Network::connect()?;
network.init().await?;
network.show_network_info().await;
// TODO: do we need to create an interface and address for socket_address?
self.spawn_system_runtime_threads();
trace!("init of auraed as pid1 done");
let socket_addr = socket_address
.unwrap_or_else(|| DEFAULT_NETWORK_SOCKET_ADDR.into())
.parse::<SocketAddr>()?;
create_tcp_socket_stream(socket_addr).await
}
}