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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
/* -------------------------------------------------------------------------- *\
* 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::{
cells::{CellName, Cells, CellsCache},
error::CellsServiceError,
executables::Executables,
validation::{
ValidatedCellServiceAllocateRequest, ValidatedCellServiceFreeRequest,
ValidatedCellServiceStartRequest, ValidatedCellServiceStopRequest,
},
Result,
};
use crate::{cells::cell_service::cells::CellsError, observe::ObserveService};
use ::validation::ValidatedType;
use backoff::backoff::Backoff;
use client::{cells::cell_service::CellServiceClient, Client, ClientError};
use proto::{
cells::{
cell_service_server, Cell, CellGraphNode, CellServiceAllocateRequest,
CellServiceAllocateResponse, CellServiceFreeRequest,
CellServiceFreeResponse, CellServiceListRequest,
CellServiceListResponse, CellServiceStartRequest,
CellServiceStartResponse, CellServiceStopRequest,
CellServiceStopResponse, CpuController, CpusetController,
MemoryController,
},
observe::LogChannelType,
};
use std::time::Duration;
use std::{process::ExitStatus, sync::Arc};
use tokio::sync::Mutex;
use tonic::{Code, Request, Response, Status};
use tracing::{info, trace, warn};
/**
* Macro to perform an operation within a cell.
* It retries the operation with an exponential backoff strategy in case of connection errors.
*/
macro_rules! do_in_cell {
($self:ident, $cell_name:ident, $function:ident, $request:ident) => {{
let mut cells = $self.cells.lock().await;
// Retrieve the client socket for the specified cell
let client_socket = cells
.get(&$cell_name, |cell| cell.client_socket())
.map_err(CellsServiceError::CellsError)?;
// Initialize the exponential backoff strategy for retrying the operation
let mut retry_strategy = backoff::ExponentialBackoffBuilder::new()
.with_initial_interval(Duration::from_millis(50)) // 1st retry in 50ms
.with_multiplier(10.0) // 10x the delay each attempt
.with_randomization_factor(0.5) // with a randomness of +/-50%
.with_max_interval(Duration::from_secs(3)) // but never delay more than 3s
.with_max_elapsed_time(Some(Duration::from_secs(20))) // or 20s total
.build();
// Attempt to create a new client with retries in case of connection errors
let client = loop {
match Client::new_no_tls(client_socket.clone()).await {
Ok(client) => break Ok(client),
e @ Err(ClientError::ConnectionError(_)) => {
trace!("aurae client failed to connect: {e:?}");
if let Some(delay) = retry_strategy.next_backoff() {
trace!("retrying in {delay:?}");
tokio::time::sleep(delay).await
} else {
break e
}
}
e => break e
}
}.map_err(CellsServiceError::from)?;
// Attempt the operation with the backoff strategy
backoff::future::retry(
retry_strategy,
|| async {
match client.$function($request.clone()).await {
Ok(res) => Ok(res),
Err(e) if e.code() == Code::Unknown && e.message() == "transport error" => {
Err(e)?;
unreachable!();
}
Err(e) => Err(backoff::Error::Permanent(e))
}
},
)
.await
}};
}
/// CellService struct manages the lifecycle of cells and executables.
#[derive(Debug, Clone)]
pub struct CellService {
cells: Arc<Mutex<Cells>>,
executables: Arc<Mutex<Executables>>,
observe_service: ObserveService,
}
impl CellService {
/// Creates a new instance of CellService.
///
/// # Arguments
/// * `observe_service` - An instance of ObserveService to manage log channels.
pub fn new(observe_service: ObserveService) -> Self {
CellService {
cells: Default::default(),
executables: Default::default(),
observe_service,
}
}
/// Allocates a new cell based on the provided request.
///
/// # Arguments
/// * `request` - A validated request to allocate a cell.
///
/// # Returns
/// A result containing the CellServiceAllocateResponse or an error.
/// Frees an existing cell based on the provided request.
#[tracing::instrument(skip(self))]
async fn allocate(
&self,
request: ValidatedCellServiceAllocateRequest,
) -> Result<CellServiceAllocateResponse> {
// Initialize the cell
let ValidatedCellServiceAllocateRequest { cell } = request;
let cell_name = cell.name.clone();
let cell_spec = cell.into();
let mut cells = self.cells.lock().await;
let cell = cells.allocate(cell_name, cell_spec)?;
Ok(CellServiceAllocateResponse {
cell_name: cell.name().clone().to_string(),
cgroup_v2: cell.v2().expect("allocated cell returns `Some`"),
})
}
/// Frees a cell.
///
/// # Arguments
/// * `request` - A request containing CellServiceFreeRequest.
///
/// # Returns
/// A response containing CellServiceFreeResponse or a Status error.
#[tracing::instrument(skip(self))]
async fn free(
&self,
request: ValidatedCellServiceFreeRequest,
) -> Result<CellServiceFreeResponse> {
let ValidatedCellServiceFreeRequest { cell_name } = request;
info!("CellService: free() cell_name={cell_name:?}");
let mut cells = self.cells.lock().await;
cells.free(&cell_name)?;
Ok(CellServiceFreeResponse::default())
}
#[tracing::instrument(skip(self))]
pub(crate) async fn free_all(&self) -> Result<()> {
let mut cells = self.cells.lock().await;
// Attempt to gracefully free all cells
cells.broadcast_free();
// The cells that remain failed to shut down for some reason.
// Forcefully kill any remaining cells that failed to shut down
cells.broadcast_kill();
Ok(())
}
#[tracing::instrument(skip(self))]
/// Handles a start request.
///
/// # Arguments
/// * `request` - A request containing CellServiceStartRequest.
///
/// # Returns
/// A response containing CellServiceStartResponse or a Status error.
async fn start(
&self,
request: ValidatedCellServiceStartRequest,
) -> std::result::Result<Response<CellServiceStartResponse>, Status> {
let ValidatedCellServiceStartRequest { cell_name, executable } =
request;
assert!(cell_name.is_none());
info!("CellService: start() executable={:?}", executable);
let mut executables = self.executables.lock().await;
// Start the executable and handle any errors
let executable = executables
.start(executable)
.map_err(CellsServiceError::ExecutablesError)?;
// Retrieve the process ID (PID) of the started executable
let pid = executable
.pid()
.map_err(CellsServiceError::Io)?
.expect("pid")
.as_raw();
// Register the stdout log channel for the executable's PID
if let Err(e) = self
.observe_service
.register_sub_process_channel(
pid,
LogChannelType::Stdout,
executable.stdout.clone(),
)
.await
{
warn!("failed to register stdout channel for pid {pid}: {e}");
}
// Register the stderr log channel for the executable's PID
if let Err(e) = self
.observe_service
.register_sub_process_channel(
pid,
LogChannelType::Stderr,
executable.stderr.clone(),
)
.await
{
warn!("failed to register stderr channel for pid {pid}: {e}");
}
Ok(Response::new(CellServiceStartResponse { pid }))
}
#[tracing::instrument(skip(self))]
async fn start_in_cell(
&self,
cell_name: &CellName,
request: CellServiceStartRequest,
) -> std::result::Result<Response<CellServiceStartResponse>, Status> {
do_in_cell!(self, cell_name, start, request)
}
#[tracing::instrument(skip(self))]
/// Handles the stop request.
///
/// # Arguments
/// * `request` - A request containing CellServiceStopRequest.
///
/// # Returns
/// A response containing CellServiceStopResponse or a Status error.
async fn stop(
&self,
request: ValidatedCellServiceStopRequest,
) -> std::result::Result<Response<CellServiceStopResponse>, Status> {
let ValidatedCellServiceStopRequest { cell_name, executable_name } =
request;
assert!(cell_name.is_none());
info!("CellService: stop() executable_name={:?}", executable_name,);
let mut executables = self.executables.lock().await;
// Retrieve the process ID (PID) of the executable to be stopped
let pid = executables
.get(&executable_name)
.map_err(CellsServiceError::ExecutablesError)?
.pid()
.map_err(CellsServiceError::Io)?
.expect("pid")
.as_raw();
// Stop the executable and handle any errors
let _: ExitStatus = executables
.stop(&executable_name)
.await
.map_err(CellsServiceError::ExecutablesError)?;
// Remove the executable's logs from the observe service.
if let Err(e) = self
.observe_service
.unregister_sub_process_channel(pid, LogChannelType::Stdout)
.await
{
warn!("failed to unregister stdout channel for pid {pid}: {e}");
}
if let Err(e) = self
.observe_service
.unregister_sub_process_channel(pid, LogChannelType::Stderr)
.await
{
warn!("failed to unregister stderr channel for pid {pid}: {e}");
}
Ok(Response::new(CellServiceStopResponse::default()))
}
#[tracing::instrument(skip(self))]
async fn stop_in_cell(
&self,
cell_name: &CellName,
request: CellServiceStopRequest,
) -> std::result::Result<Response<CellServiceStopResponse>, Status> {
do_in_cell!(self, cell_name, stop, request)
}
#[tracing::instrument(skip(self))]
pub(crate) async fn stop_all(&self) -> Result<()> {
let mut executables = self.executables.lock().await;
// Broadcast a stop signal to all executables
executables.broadcast_stop().await;
Ok(())
}
#[tracing::instrument(skip(self))]
async fn list(&self) -> Result<CellServiceListResponse> {
let cells = self.cells.lock().await;
// Retrieve all cells and convert them for returning
let cells = cells
.get_all(|x| x.try_into())
.expect("cells doesn't error")
.into_iter()
.filter_map(|x| x.ok())
.collect();
Ok(CellServiceListResponse { cells })
}
}
impl TryFrom<&super::cells::Cell> for CellGraphNode {
type Error = CellsError;
/// Converts a Cell into a CellGraphNode.
///
/// # Arguments
/// * `value` - A reference to the Cell.
///
/// # Returns
/// A result containing the CellGraphNode or an error.
fn try_from(
value: &super::cells::Cell,
) -> std::result::Result<Self, Self::Error> {
// Extract the name and specification of the cell
let name = value.name();
let spec = value.spec();
// Retrieve and convert all child cells
let children = CellsCache::get_all(value, |x| x.try_into())?
.into_iter()
.filter_map(|x| x.ok())
.collect();
// Extract cgroup and isolation specifications
let super::cells::CellSpec { cgroup_spec, iso_ctl } = spec;
// Extract CPU, cpuset, and memory specifications
let super::cells::cgroups::CgroupSpec { cpu, cpuset, memory } =
cgroup_spec;
Ok(Self {
// Create a new Cell instance with the extracted specifications
cell: Some(Cell {
name: name.to_string(),
cpu: cpu.as_ref().map(|x| x.into()),
cpuset: cpuset.as_ref().map(|x| x.into()),
memory: memory.as_ref().map(|x| x.into()),
isolate_process: iso_ctl.isolate_process,
isolate_network: iso_ctl.isolate_network,
}),
children,
})
}
}
impl From<&super::cells::cgroups::CpuController> for CpuController {
fn from(value: &super::cells::cgroups::CpuController) -> Self {
let super::cells::cgroups::CpuController { weight, max, period } =
value.clone();
Self {
weight: weight.map(|x| x.into_inner()),
max: max.map(|x| x.into_inner()),
period,
}
}
}
impl From<&super::cells::cgroups::cpuset::CpusetController>
for CpusetController
{
fn from(value: &super::cells::cgroups::CpusetController) -> Self {
let super::cells::cgroups::CpusetController { cpus, mems } =
value.clone();
Self {
cpus: cpus.map(|x| x.into_inner()),
mems: mems.map(|x| x.into_inner()),
}
}
}
impl From<&super::cells::cgroups::memory::MemoryController>
for MemoryController
{
fn from(value: &super::cells::cgroups::MemoryController) -> Self {
let super::cells::cgroups::MemoryController { min, low, high, max } =
value.clone();
Self {
min: min.map(|x| x.into_inner()),
low: low.map(|x| x.into_inner()),
high: high.map(|x| x.into_inner()),
max: max.map(|x| x.into_inner()),
}
}
}
/// ### Mapping cgroup options to the Cell API
///
/// Here we *only* expose options from the CgroupBuilder
/// as our features in Aurae need them! We do not try to
/// "map" everything as much as we start with a few small
/// features and add as needed.
///
// Example builder options can be found: https://github.com/kata-containers/cgroups-rs/blob/main/tests/builder.rs
// Cgroup documentation: https://man7.org/linux/man-pages/man7/cgroups.7.html
#[tonic::async_trait]
impl cell_service_server::CellService for CellService {
async fn allocate(
&self,
request: Request<CellServiceAllocateRequest>,
) -> std::result::Result<Response<CellServiceAllocateResponse>, Status>
{
// Extract the inner request from the request
let request = request.into_inner();
// Validate the allocate request
let request = ValidatedCellServiceAllocateRequest::validate(
request.clone(),
None,
)?;
// return the allocated cell
Ok(Response::new(self.allocate(request).await?))
}
async fn free(
&self,
request: Request<CellServiceFreeRequest>,
) -> std::result::Result<Response<CellServiceFreeResponse>, Status> {
let request = request.into_inner();
// Validate the free request
let request =
ValidatedCellServiceFreeRequest::validate(request.clone(), None)?;
// free the cell
Ok(Response::new(self.free(request).await?))
}
async fn start(
&self,
request: Request<CellServiceStartRequest>,
) -> std::result::Result<Response<CellServiceStartResponse>, Status> {
let request = request.into_inner();
// Execute start if cell_name is none
if request.cell_name.is_none() {
let request =
ValidatedCellServiceStartRequest::validate(request, None)?;
Ok(self.start(request).await?)
} else {
// We are in a parent cell, or validation will fail
let validated = ValidatedCellServiceStartRequest::validate(
request.clone(),
None,
)?;
// Validation has succeeded, so we can make assumptions about the request and use expect
let cell_name = validated.cell_name.expect("cell name");
let mut request = request;
request.cell_name = None;
// start in the cell
self.start_in_cell(&cell_name, request).await
}
}
async fn stop(
&self,
request: Request<CellServiceStopRequest>,
) -> std::result::Result<Response<CellServiceStopResponse>, Status> {
let request = request.into_inner();
// Execute stop if cell_name is none
if request.cell_name.is_none() {
let request =
ValidatedCellServiceStopRequest::validate(request, None)?;
Ok(self.stop(request).await?)
} else {
// Validate the request is valid
let validated = ValidatedCellServiceStopRequest::validate(
request.clone(),
None,
)?;
// Validation has succeeded, so we can make assumptions about the request and use expect
let cell_name = validated.cell_name.expect("cell name");
let mut request = request;
request.cell_name = None;
// stop the cell
self.stop_in_cell(&cell_name, request).await
}
}
/// Response with a list of cells
///
/// # Arguments
/// * `_request` - A request containing CellServiceListRequest.
///
/// # Returns
/// A response containing CellServiceListResponse or a Status error.
async fn list(
&self,
_request: Request<CellServiceListRequest>,
) -> std::result::Result<Response<CellServiceListResponse>, Status> {
Ok(Response::new(self.list().await?))
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::{
cells::cell_service::validation::{
ValidatedCell, ValidatedCpuController, ValidatedCpusetController,
ValidatedMemoryController,
},
logging::log_channel::LogChannel,
};
use crate::{AuraedRuntime, AURAED_RUNTIME};
use iter_tools::Itertools;
use test_helpers::*;
/// Test for the list function.
#[tokio::test]
async fn test_list() {
skip_if_not_root!("test_list");
skip_if_seccomp!("test_list");
// Set the Auraed runtime for the test
let _ = AURAED_RUNTIME.set(AuraedRuntime::default());
// Create a new instance of CellService for testing
let service = CellService::new(ObserveService::new(
Arc::new(LogChannel::new(String::from("test"))),
(None, None, None),
));
// Allocate a parent cell for testing
let parent_cell_name = format!("ae-test-{}", uuid::Uuid::new_v4());
assert!(service
.allocate(allocate_request(&parent_cell_name))
.await
.is_ok());
// Allocate a nested cell within the parent cell for testing
let nested_cell_name =
format!("{}/ae-test-{}", &parent_cell_name, uuid::Uuid::new_v4());
assert!(service
.allocate(allocate_request(&nested_cell_name))
.await
.is_ok());
// Allocate a cell without children for testing
let cell_without_children_name =
format!("ae-test-{}", uuid::Uuid::new_v4());
assert!(service
.allocate(allocate_request(&cell_without_children_name))
.await
.is_ok());
// List all cells and verify the result
let result = service.list().await;
assert!(result.is_ok());
let list = result.unwrap();
assert_eq!(list.cells.len(), 2);
// Verify the root cell names
let mut expected_root_cell_names =
vec![&parent_cell_name, &cell_without_children_name];
expected_root_cell_names.sort();
let mut actual_root_cell_names = list
.cells
.iter()
.map(|c| c.cell.as_ref().unwrap().name.as_str())
.collect_vec();
actual_root_cell_names.sort();
assert_eq!(actual_root_cell_names, expected_root_cell_names);
// Verify the parent cell name in child cells.
let parent_cell = list
.cells
.iter()
.find(|p| p.cell.as_ref().unwrap().name.eq(&parent_cell_name));
assert!(parent_cell.is_some());
let expected_nested_cell_names = vec![&nested_cell_name];
let actual_nested_cell_names = parent_cell
.unwrap()
.children
.iter()
.map(|c| c.cell.as_ref().unwrap().name.as_str())
.collect_vec();
assert_eq!(actual_nested_cell_names, expected_nested_cell_names);
}
/// Helper function to create a ValidatedCellServiceAllocateRequest.
///
/// # Arguments
/// * `cell_name` - The name of the cell.
///
/// # Returns
/// A ValidatedCellServiceAllocateRequest.
fn allocate_request(
cell_name: &str,
) -> ValidatedCellServiceAllocateRequest {
// Create a validated cell for the allocate request
let cell = ValidatedCell {
name: CellName::from(cell_name),
cpu: Some(ValidatedCpuController { weight: None, max: None, period: None }),
cpuset: Some(ValidatedCpusetController { cpus: None, mems: None }),
memory: Some(ValidatedMemoryController {
min: None,
low: None,
high: None,
max: None,
}),
isolate_process: false,
isolate_network: false,
};
// Return the validated allocate request
ValidatedCellServiceAllocateRequest { cell }
}
}