Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[integritee-service] introduce getters for RunConfig and make fields private #1349

Merged
merged 5 commits into from
Jun 7, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion core-primitives/settings/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ pub mod sidechain {
pub mod enclave {}

/// Settings for the Teeracle
#[cfg(feature = "teeracle")]
Copy link
Contributor Author

@clangenb clangenb Jun 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No real benefit of the compiler flag here, and this removes the need to use this compiler flag in the runconfig.

pub mod teeracle {
use core::time::Duration;
// Send extrinsic to update market exchange rate on the parentchain once per day
Expand Down
39 changes: 33 additions & 6 deletions service/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

use clap::ArgMatches;
use itc_rest_client::rest_client::Url;
use itp_settings::teeracle::DEFAULT_MARKET_DATA_UPDATE_INTERVAL;
use parse_duration::parse;
use serde::{Deserialize, Serialize};
use std::{
Expand Down Expand Up @@ -215,17 +216,43 @@ impl From<&ArgMatches<'_>> for Config {
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct RunConfig {
/// Skip remote attestation. Set this flag if running enclave in SW mode
pub skip_ra: bool,
skip_ra: bool,
/// Set this flag if running in development mode to bootstrap enclave account on parentchain via //Alice.
pub dev: bool,
dev: bool,
/// Request key and state provisioning from a peer worker.
pub request_state: bool,
request_state: bool,
/// Shard identifier base58 encoded. Defines the shard that this worker operates on. Default is mrenclave.
pub shard: Option<String>,
shard: Option<String>,
/// Optional teeracle update interval
pub teeracle_update_interval: Option<Duration>,
teeracle_update_interval: Option<Duration>,
/// Marblerun's Prometheus endpoint base URL
pub marblerun_base_url: Option<String>,
marblerun_base_url: Option<String>,
}

impl RunConfig {
pub fn skip_ra(&self) -> bool {
self.skip_ra
}

pub fn dev(&self) -> bool {
self.dev
}

pub fn request_state(&self) -> bool {
self.request_state
}

pub fn shard(&self) -> Option<&str> {
self.shard.as_deref()
}

pub fn teeracle_update_interval(&self) -> Duration {
self.teeracle_update_interval.unwrap_or(DEFAULT_MARKET_DATA_UPDATE_INTERVAL)
}

pub fn marblerun_base_url(&self) -> &str {
self.marblerun_base_url.as_deref().unwrap_or("http://localhost:9944")
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was the default that was used, but it does not make sense to me because this is also the default port of a substrate node. @OverOrion is this really the default port that the marblerun uses?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alright thanks! added it as a comment: 48c538c

}
}

impl From<&ArgMatches<'_>> for RunConfig {
Expand Down
32 changes: 13 additions & 19 deletions service/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ fn main() {
)));

if let Some(run_config) = config.run_config() {
let shard = extract_shard(&run_config.shard, enclave.as_ref());
let shard = extract_shard(run_config.shard(), enclave.as_ref());

println!("Worker Config: {:?}", config);

Expand All @@ -186,12 +186,12 @@ fn main() {
let node_api =
node_api_factory.create_api().expect("Failed to create parentchain node API");

if run_config.request_state {
if run_config.request_state() {
sync_state::sync_state::<_, _, WorkerModeProvider>(
&node_api,
&shard,
enclave.as_ref(),
run_config.skip_ra,
run_config.skip_ra(),
);
}

Expand All @@ -210,7 +210,7 @@ fn main() {
node_api_factory.create_api().expect("Failed to create parentchain node API");
sync_state::sync_state::<_, _, WorkerModeProvider>(
&node_api,
&extract_shard(&smatches.value_of("shard").map(|s| s.to_string()), enclave.as_ref()),
&extract_shard(smatches.value_of("shard"), enclave.as_ref()),
enclave.as_ref(),
smatches.is_present("skip-ra"),
);
Expand All @@ -235,7 +235,7 @@ fn main() {
} else if let Some(sub_matches) = matches.subcommand_matches("init-shard") {
setup::init_shard(
enclave.as_ref(),
&extract_shard(&sub_matches.value_of("shard").map(|s| s.to_string()), enclave.as_ref()),
&extract_shard(sub_matches.value_of("shard"), enclave.as_ref()),
);
} else if let Some(sub_matches) = matches.subcommand_matches("test") {
if sub_matches.is_present("provisioning-server") {
Expand All @@ -249,10 +249,7 @@ fn main() {
println!("[+] Done!");
} else if sub_matches.is_present("provisioning-client") {
println!("*** Running Enclave MU-RA TLS client\n");
let shard = extract_shard(
&sub_matches.value_of("shard").map(|s| s.to_string()),
enclave.as_ref(),
);
let shard = extract_shard(sub_matches.value_of("shard"), enclave.as_ref());
enclave_request_state_provisioning(
enclave.as_ref(),
sgx_quote_sign_type_t::SGX_UNLINKABLE_SIGNATURE,
Expand Down Expand Up @@ -294,7 +291,7 @@ fn start_worker<E, T, D, InitializationHandler, WorkerModeProvider>(
WorkerModeProvider: ProvideWorkerMode,
{
let run_config = config.run_config().clone().expect("Run config missing");
let skip_ra = run_config.skip_ra;
let skip_ra = run_config.skip_ra();

println!("Integritee Worker v{}", VERSION);
info!("starting worker on shard {}", shard.encode().to_base58());
Expand All @@ -313,7 +310,7 @@ fn start_worker<E, T, D, InitializationHandler, WorkerModeProvider>(
// ------------------------------------------------------------------------
// let new workers call us for key provisioning
println!("MU-RA server listening on {}", config.mu_ra_url());
let is_development_mode = run_config.dev;
let is_development_mode = run_config.dev();
let ra_url = config.mu_ra_url();
let enclave_api_key_prov = enclave.clone();
thread::spawn(move || {
Expand Down Expand Up @@ -427,9 +424,6 @@ fn start_worker<E, T, D, InitializationHandler, WorkerModeProvider>(
register_collateral(&node_api, &*enclave, &tee_accountid, is_development_mode, skip_ra);

let trusted_url = config.trusted_worker_url_external();
#[cfg(feature = "attesteer")]
let marblerun_base_url =
run_config.marblerun_base_url.unwrap_or("http://localhost:9944".to_owned());

#[cfg(feature = "attesteer")]
fetch_marblerun_events_every_hour(
Expand All @@ -438,7 +432,7 @@ fn start_worker<E, T, D, InitializationHandler, WorkerModeProvider>(
tee_accountid.clone(),
is_development_mode,
trusted_url.clone(),
marblerun_base_url.clone(),
run_config.marblerun_base_url().to_string(),
);

// ------------------------------------------------------------------------
Expand Down Expand Up @@ -478,7 +472,7 @@ fn start_worker<E, T, D, InitializationHandler, WorkerModeProvider>(
if WorkerModeProvider::worker_mode() == WorkerMode::Teeracle {
start_interval_market_update(
&node_api,
run_config.teeracle_update_interval,
run_config.teeracle_update_interval(),
enclave.as_ref(),
&teeracle_tokio_handle,
);
Expand Down Expand Up @@ -712,7 +706,7 @@ fn fetch_marblerun_events_every_hour<E>(
&accountid,
is_development_mode,
url.clone(),
marblerun_base_url.clone(),
&marblerun_base_url,
);

thread::sleep(Duration::from_secs(POLL_INTERVAL_5_MINUTES_IN_SECS));
Expand All @@ -728,10 +722,10 @@ fn register_quotes_from_marblerun(
accountid: &AccountId32,
is_development_mode: bool,
url: String,
marblerun_base_url: String,
marblerun_base_url: &str,
) {
let enclave = enclave.as_ref();
let events = prometheus_metrics::fetch_marblerun_events(&marblerun_base_url)
let events = prometheus_metrics::fetch_marblerun_events(marblerun_base_url)
.map_err(|e| {
info!("Fetching events from Marblerun failed with: {:?}, continuing with 0 events.", e);
})
Expand Down
4 changes: 1 addition & 3 deletions service/src/teeracle/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ use crate::teeracle::interval_scheduling::schedule_on_repeating_intervals;
use codec::{Decode, Encode};
use itp_enclave_api::teeracle_api::TeeracleApi;
use itp_node_api::api_client::ParentchainApi;
use itp_settings::teeracle::DEFAULT_MARKET_DATA_UPDATE_INTERVAL;
use itp_utils::hex::hex_encode;
use log::*;
use sp_runtime::OpaqueExtrinsic;
Expand All @@ -35,7 +34,7 @@ pub(crate) mod teeracle_metrics;
/// with the current market data (for now only exchange rate).
pub(crate) fn start_interval_market_update<E: TeeracleApi>(
api: &ParentchainApi,
maybe_interval: Option<Duration>,
interval: Duration,
enclave_api: &E,
tokio_handle: &Handle,
) {
Expand All @@ -47,7 +46,6 @@ pub(crate) fn start_interval_market_update<E: TeeracleApi>(
info!("Teeracle will update now");
updates_to_run();

let interval = maybe_interval.unwrap_or(DEFAULT_MARKET_DATA_UPDATE_INTERVAL);
info!("Starting teeracle interval for oracle update, interval of {:?}", interval);
schedule_on_repeating_intervals(updates_to_run, interval);
}
Expand Down
2 changes: 1 addition & 1 deletion service/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use itp_types::ShardIdentifier;
use log::info;

pub fn extract_shard<E: EnclaveBase>(
maybe_shard_str: &Option<String>,
maybe_shard_str: Option<&str>,
enclave_api: &E,
) -> ShardIdentifier {
match maybe_shard_str {
Expand Down