Skip to content

Commit

Permalink
Merge pull request #20 from gattaca-com/develop
Browse files Browse the repository at this point in the history
resolve audit issue
  • Loading branch information
gd-0 authored Feb 3, 2024
2 parents 84d31a6 + 3b986b2 commit bd1b1da
Show file tree
Hide file tree
Showing 12 changed files with 241 additions and 241 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion crates/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ helix-housekeeper.workspace = true
async-trait = { workspace = true }
axum = { workspace = true }
tower = { workspace = true }
dashmap = { workspace = true }
futures = { workspace = true }
hyper = { workspace = true }
reqwest = { workspace = true }
Expand Down
138 changes: 74 additions & 64 deletions crates/api/src/builder/api.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
use std::{
collections::HashMap,
io::Read,
sync::{
atomic::{AtomicU64, Ordering},
Arc,
},
sync::Arc,
time::{SystemTime, UNIX_EPOCH},
};

Expand Down Expand Up @@ -84,9 +81,10 @@ where

db_sender: Sender<DbInfo>,

curr_slot: Arc<AtomicU64>,
/// Information about the current head slot and next proposer duty
curr_slot_info: Arc<RwLock<(u64, Option<BuilderGetValidatorsResponseEntry>)>>,

proposer_duties_response: Arc<RwLock<Option<Vec<u8>>>>,
next_proposer_duty: Arc<RwLock<Option<BuilderGetValidatorsResponseEntry>>>,
payload_attributes: Arc<RwLock<HashMap<Bytes32, PayloadAttributesUpdate>>>,
}

Expand Down Expand Up @@ -125,9 +123,8 @@ where

db_sender,

curr_slot: AtomicU64::new(0).into(),
curr_slot_info: Arc::new(RwLock::new((0, None))),
proposer_duties_response: Arc::new(RwLock::new(None)),
next_proposer_duty: Arc::new(RwLock::new(None)),
payload_attributes: Arc::new(RwLock::new(HashMap::new())),
};

Expand Down Expand Up @@ -184,7 +181,7 @@ where
) -> Result<StatusCode, BuilderApiError> {
let request_id = Uuid::new_v4();
let mut trace = SubmissionTrace { receive: get_nanos_timestamp()?, ..Default::default() };
let head_slot = api.curr_slot.load(Ordering::Relaxed);
let (head_slot, next_duty) = api.curr_slot_info.read().await.clone();

info!(
request_id = %request_id,
Expand All @@ -193,6 +190,13 @@ where
timestamp_request_start = trace.receive,
);

// Verify that we have a validator connected for this slot
if next_duty.is_none() {
warn!(request_id = %request_id, "could not find slot duty");
return Err(BuilderApiError::ProposerDutyNotFound);
}
let next_duty = next_duty.unwrap();

// Decode the incoming request body into a payload
let (payload, is_cancellations_enabled) =
decode_payload(req, &mut trace, &request_id).await?;
Expand All @@ -218,6 +222,11 @@ where
});
}

// Fetch the next payload attributes and validate basic information
let payload_attributes = api
.fetch_payload_attributes(payload.slot(), payload.parent_hash(), &request_id)
.await?;

// Handle duplicates.
api.check_for_duplicate_block_hash(
&block_hash,
Expand All @@ -242,12 +251,6 @@ where
.await?;
trace.floor_bid_checks = get_nanos_timestamp()?;

// Fetch the next proposer duty/ payload attributes and validate basic information about the
// payload
let (next_duty, payload_attributes) = api
.fetch_proposer_and_attributes(payload.slot(), payload.parent_hash(), &request_id)
.await?;

// Fetch builder info
let builder_info = api.fetch_builder_info(payload.builder_public_key()).await;

Expand Down Expand Up @@ -360,7 +363,7 @@ where
let request_id = Uuid::new_v4();
let mut trace =
HeaderSubmissionTrace { receive: get_nanos_timestamp()?, ..Default::default() };
let head_slot: u64 = api.curr_slot.load(Ordering::Relaxed);
let (head_slot, next_duty) = api.curr_slot_info.read().await.clone();

info!(
request_id = %request_id,
Expand All @@ -369,6 +372,13 @@ where
timestamp_request_start = trace.receive,
);

// Verify that we have a validator connected for this slot
if next_duty.is_none() {
warn!(request_id = %request_id, "could not find slot duty");
return Err(BuilderApiError::ProposerDutyNotFound);
}
let next_duty = next_duty.unwrap();

// Decode the incoming request body into a payload
let (mut payload, is_cancellations_enabled) =
decode_header_submission(req, &mut trace, &request_id).await?;
Expand All @@ -394,6 +404,11 @@ where
});
}

// Fetch the next payload attributes and validate basic information
let payload_attributes = api
.fetch_payload_attributes(payload.slot(), payload.parent_hash(), &request_id)
.await?;

// Fetch builder info
let builder_info = api.fetch_builder_info(payload.builder_public_key()).await;

Expand All @@ -414,11 +429,6 @@ where
)
.await?;

// Fetch the next proposer duty/ payload attributes
let (next_duty, payload_attributes) = api
.fetch_proposer_and_attributes(payload.slot(), payload.parent_hash(), &request_id)
.await?;

// Discard any OptimisticV2 submissions if the proposer has censoring enabled
if next_duty.entry.preferences.censoring {
warn!(request_id = %request_id, "proposer has censoring enabled, discarding optimistic v2 submission");
Expand Down Expand Up @@ -549,7 +559,7 @@ where
) -> Result<StatusCode, BuilderApiError> {
let request_id = Uuid::new_v4();
let mut trace = SubmissionTrace { receive: get_nanos_timestamp()?, ..Default::default() };
let head_slot = api.curr_slot.load(Ordering::Relaxed);
let (head_slot, next_duty) = api.curr_slot_info.read().await.clone();

info!(
request_id = %request_id,
Expand Down Expand Up @@ -593,6 +603,20 @@ where
});
}

// Verify that we have a validator connected for this slot
// Note: in `submit_block_v2` we have to do this check after decoding
// so we can send a `PayloadReceived` message.
if next_duty.is_none() {
warn!(request_id = %request_id, "could not find slot duty");
return Err(BuilderApiError::ProposerDutyNotFound);
}
let next_duty = next_duty.unwrap();

// Fetch the next payload attributes and validate basic information
let payload_attributes = api
.fetch_payload_attributes(payload.slot(), payload.parent_hash(), &request_id)
.await?;

// Fetch builder info
let builder_info = api.fetch_builder_info(payload.builder_public_key()).await;

Expand All @@ -603,12 +627,6 @@ where
return Err(err);
}

// Fetch the next proposer duty/ payload attributes and validate basic information about the
// payload
let (next_duty, payload_attributes) = api
.fetch_proposer_and_attributes(payload.slot(), payload.parent_hash(), &request_id)
.await?;

// Discard any OptimisticV2 submissions if the proposer has censoring enabled
if next_duty.entry.preferences.censoring {
warn!(request_id = %request_id, "proposer has censoring enabled, discarding optimistic v2 submission");
Expand Down Expand Up @@ -722,11 +740,13 @@ where
..Default::default()
};

// Check that this request is for a known payload attribute for the current slot.
if let Err(err) =
self.fetch_proposer_and_attributes(req.slot, &req.parent_hash, &request_id).await
{
warn!(request_id = %request_id, error = %err, "out of date request");
// Verify that the gossiped header is not for a past slot
let (head_slot, _) = self.curr_slot_info.read().await.clone();
if req.slot <= head_slot {
warn!(
request_id = %request_id,
"received gossiped header for a past slot",
);
return;
}

Expand Down Expand Up @@ -829,16 +849,13 @@ where
..Default::default()
};

// Check that this request is for a known payload attribute for the current slot.
if let Err(err) = self
.fetch_proposer_and_attributes(
req.slot,
req.execution_payload.execution_payload.parent_hash(),
&request_id,
)
.await
{
warn!(request_id = %request_id, error = %err, "out of date request");
// Verify that the gossiped payload is not for a past slot
let (head_slot, _) = self.curr_slot_info.read().await.clone();
if req.slot <= head_slot {
warn!(
request_id = %request_id,
"received gossiped payload for a past slot",
);
return;
}

Expand Down Expand Up @@ -1284,25 +1301,12 @@ where
}
}

async fn fetch_proposer_and_attributes(
async fn fetch_payload_attributes(
&self,
slot: u64,
parent_hash: &Hash32,
request_id: &Uuid,
) -> Result<(BuilderGetValidatorsResponseEntry, PayloadAttributesUpdate), BuilderApiError> {
let next_proposer_duty = self.next_proposer_duty.read().await.clone().ok_or_else(|| {
warn!(request_id = %request_id, "could not find slot duty");
BuilderApiError::ProposerDutyNotFound
})?;

if next_proposer_duty.slot != slot {
warn!(request_id = %request_id, "request for past slot");
return Err(BuilderApiError::SubmissionForPastSlot {
current_slot: next_proposer_duty.slot,
submission_slot: slot,
})
}

) -> Result<PayloadAttributesUpdate, BuilderApiError> {
let payload_attributes =
self.payload_attributes.read().await.get(parent_hash).cloned().ok_or_else(|| {
warn!(request_id = %request_id, "payload attributes not yet known");
Expand All @@ -1317,7 +1321,7 @@ where
});
}

Ok((next_proposer_duty, payload_attributes))
Ok(payload_attributes)
}

/// Checks for later bid submissions from the same builder.
Expand Down Expand Up @@ -1488,8 +1492,7 @@ where
"updated head slot",
);

self.curr_slot.store(slot_update.slot, Ordering::Relaxed);
*self.next_proposer_duty.write().await = slot_update.next_duty;
*self.curr_slot_info.write().await = (slot_update.slot, slot_update.next_duty);

if let Some(new_duties) = slot_update.new_duties {
let response: Vec<BuilderGetValidatorsResponse> =
Expand All @@ -1505,20 +1508,20 @@ where
}

async fn handle_new_payload_attributes(&self, payload_attributes: PayloadAttributesUpdate) {
let head_slot = self.curr_slot.load(Ordering::Relaxed);
let (head_slot, _) = *self.curr_slot_info.read().await;

debug!(
randao = ?payload_attributes.payload_attributes.prev_randao,
timestamp = payload_attributes.payload_attributes.timestamp,
);

// Discard payload attributes if already known
if self.payload_attributes.read().await.contains_key(&payload_attributes.parent_hash) {
let mut all_payload_attributes = self.payload_attributes.write().await;
if all_payload_attributes.contains_key(&payload_attributes.parent_hash) {
return;
}

// Clean up old payload attributes
let mut all_payload_attributes = self.payload_attributes.write().await;
all_payload_attributes.retain(|_, value| value.slot >= head_slot - 2);

// Save new one
Expand Down Expand Up @@ -1742,6 +1745,13 @@ fn sanity_check_block_submission(
return Err(BuilderApiError::SlotMismatch { got: payload.slot(), expected: next_duty.slot });
}

if next_duty.entry.registration.message.public_key != bid_trace.proposer_public_key {
return Err(BuilderApiError::ProposerPublicKeyMismatch {
got: bid_trace.proposer_public_key.clone(),
expected: next_duty.entry.registration.message.public_key.clone(),
});
}

// Check payload attrs
if *payload.prev_randao() != payload_attributes.payload_attributes.prev_randao {
return Err(BuilderApiError::PrevRandaoMismatch {
Expand Down
6 changes: 6 additions & 0 deletions crates/api/src/builder/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ pub enum BuilderApiError {
#[error("fee recipient mismatch. got: {got:?}, expected: {expected:?}")]
FeeRecipientMismatch { got: ByteVector<20>, expected: ByteVector<20> },

#[error("proposer public key mismatch. got: {got:?}, expected: {expected:?}")]
ProposerPublicKeyMismatch { got: BlsPublicKey, expected: BlsPublicKey },

#[error("slot mismatch. got: {got}, expected: {expected}")]
SlotMismatch { got: u64, expected: u64 },

Expand Down Expand Up @@ -167,6 +170,9 @@ impl IntoResponse for BuilderApiError {
BuilderApiError::ParentHashMismatch { message, payload } => {
(StatusCode::BAD_REQUEST, format!("Parent hash mismatch. message: {message:?}, payload: {payload:?}")).into_response()
},
BuilderApiError::ProposerPublicKeyMismatch { got, expected } => {
(StatusCode::BAD_REQUEST, format!("Proposer public key mismatch. got: {got:?}, expected: {expected:?}")).into_response()
},
BuilderApiError::ZeroValueBlock => {
(StatusCode::BAD_REQUEST, "Zero value block").into_response()
},
Expand Down
12 changes: 9 additions & 3 deletions crates/api/src/builder/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,9 @@ mod tests {
if cancellations_enabled { "?cancellations=1" } else { "" }
);

let signed_bid_submission: SignedBidSubmission = load_bid_submission();
let mut signed_bid_submission: SignedBidSubmission = load_bid_submission();
signed_bid_submission.message_mut().proposer_public_key =
get_valid_payload_register_validator(None).entry.registration.message.public_key;

// Send JSON encoded request
let resp = send_request(
Expand Down Expand Up @@ -896,6 +898,8 @@ mod tests {
}
_ => panic!("unexpected execution payload type"),
}
signed_bid_submission.message_mut().proposer_public_key =
get_valid_payload_register_validator(None).entry.registration.message.public_key;

// Send JSON encoded request
let resp = reqwest::Client::new()
Expand Down Expand Up @@ -938,11 +942,13 @@ mod tests {
let req_url =
format!("{}{}{}", http_config.base_url(), PATH_BUILDER_API, PATH_SUBMIT_BLOCK);

let signed_bid_submission: SignedBidSubmission = load_bid_submission_from_file(
let mut signed_bid_submission: SignedBidSubmission = load_bid_submission_from_file(
"submitBlockPayloadCapella_Goerli_incorrect_withdrawal_root.json",
Some(CAPELLA_FORK_EPOCH * SLOTS_PER_EPOCH + 1),
Some(1681338467),
);
signed_bid_submission.message_mut().proposer_public_key =
get_valid_payload_register_validator(None).entry.registration.message.public_key;

// Send JSON encoded request
let resp = reqwest::Client::new()
Expand Down Expand Up @@ -1212,7 +1218,7 @@ mod tests {
.unwrap();

assert_eq!(resp.status(), reqwest::StatusCode::BAD_REQUEST);
assert_eq!(resp.text().await.unwrap(), "Prev randao mismatch. got: 0x9962816e9d0a39fd4c80935338a741dc916d1545694e41eb5a505e1a3098f9e5, expected: 0x9962816e9d0a39fd4c80935338a741dc916d1545694e41eb5a505e1a3098f9e4");
assert_eq!(resp.text().await.unwrap(), "Proposer public key mismatch. got: 0x8559727ee65c295279332198029c939557f4d2aba0751fc55f71d0733b8aa17cd0301232a7f21a895f81eacf55c97ec4, expected: 0x84e975405f8691ad7118527ee9ee4ed2e4e8bae973f6e29aa9ca9ee4aea83605ae3536d22acc9aa1af0545064eacf82e");

// Shut down the server
let _ = tx.send(());
Expand Down
Loading

0 comments on commit bd1b1da

Please sign in to comment.