fix(sync): secure encrypted snapshot lifecycle
This commit is contained in:
@@ -1,13 +1,21 @@
|
||||
use std::time::Duration;
|
||||
use std::time::{Duration, SystemTime, UNIX_EPOCH};
|
||||
|
||||
use serde::de::DeserializeOwned;
|
||||
use ureq::{Agent, AgentBuilder};
|
||||
|
||||
use crate::{
|
||||
SnapshotHeadRef,
|
||||
auth::BearerToken,
|
||||
device::{DeviceIdentity, DeviceListResponse, DeviceRegistration},
|
||||
device_api::{
|
||||
DeviceApprovalDocument, DeviceApprovalRequest, DeviceRebindChallengeDocument,
|
||||
DeviceRebindChallengeRequest, DeviceRebindDocument,
|
||||
},
|
||||
device_revocation::{DeviceRevocationDocument, DeviceRevocationRequest},
|
||||
error::SyncClientError,
|
||||
snapshot::{SnapshotDownload, SnapshotUploadRequest},
|
||||
vault::SyncVaultDocument,
|
||||
vault_bootstrap::SyncVaultBootstrapRequest,
|
||||
};
|
||||
|
||||
const REQUEST_TIMEOUT: Duration = Duration::from_secs(30);
|
||||
@@ -73,13 +81,16 @@ impl SyncApiClient {
|
||||
identity: &DeviceIdentity,
|
||||
idempotency_key: &str,
|
||||
) -> Result<DeviceRecordDocument, SyncClientError> {
|
||||
let registration_proof = identity.registration_proof(idempotency_key)?;
|
||||
let registration = DeviceRegistration {
|
||||
version: 1,
|
||||
version: 2,
|
||||
device_id: &identity.device_id,
|
||||
public_key: &identity.public_key,
|
||||
wrapping_public_key: &identity.wrapping_public_key,
|
||||
device_name: &identity.device_name,
|
||||
platform: &identity.platform,
|
||||
idempotency_key,
|
||||
registration_proof: ®istration_proof,
|
||||
};
|
||||
let endpoint = self.endpoint("/api/devices/register");
|
||||
let response = self
|
||||
@@ -107,6 +118,75 @@ impl SyncApiClient {
|
||||
read_json_response::<DeviceListResponse>(&endpoint, response)
|
||||
}
|
||||
|
||||
/// Rebind an existing v2 device to a fresh authenticated session.
|
||||
pub fn rebind_device(
|
||||
&self,
|
||||
identity: &DeviceIdentity,
|
||||
) -> Result<DeviceRebindDocument, SyncClientError> {
|
||||
let challenge_endpoint = self.endpoint("/api/devices/rebind/challenge");
|
||||
let challenge_request =
|
||||
DeviceRebindChallengeRequest { version: 1, device_id: &identity.device_id };
|
||||
let challenge_response = self
|
||||
.agent
|
||||
.post(&challenge_endpoint)
|
||||
.set("Authorization", &format!("Bearer {}", self.bearer.as_str()))
|
||||
.set("Content-Type", "application/json")
|
||||
.send_json(serde_json::to_value(&challenge_request).map_err(|source| {
|
||||
SyncClientError::Json { endpoint: challenge_endpoint.clone(), source }
|
||||
})?);
|
||||
let challenge = read_json_response::<DeviceRebindChallengeDocument>(
|
||||
&challenge_endpoint,
|
||||
challenge_response,
|
||||
)?;
|
||||
let now_seconds = current_time_seconds()?;
|
||||
let rebind_request = challenge.signed_request(identity, now_seconds)?;
|
||||
let rebind_endpoint = self.endpoint("/api/devices/rebind");
|
||||
let rebind_response = self
|
||||
.agent
|
||||
.post(&rebind_endpoint)
|
||||
.set("Authorization", &format!("Bearer {}", self.bearer.as_str()))
|
||||
.set("Content-Type", "application/json")
|
||||
.send_json(serde_json::to_value(&rebind_request).map_err(|source| {
|
||||
SyncClientError::Json { endpoint: rebind_endpoint.clone(), source }
|
||||
})?);
|
||||
let document =
|
||||
read_json_response::<DeviceRebindDocument>(&rebind_endpoint, rebind_response)?;
|
||||
document.validate(identity, &challenge, current_time_seconds()?)?;
|
||||
Ok(document)
|
||||
}
|
||||
|
||||
pub fn approve_device(
|
||||
&self,
|
||||
request: &DeviceApprovalRequest<'_>,
|
||||
) -> Result<DeviceApprovalDocument, SyncClientError> {
|
||||
let endpoint = self.endpoint("/api/devices/approve");
|
||||
let response =
|
||||
self.agent
|
||||
.post(&endpoint)
|
||||
.set("Authorization", &format!("Bearer {}", self.bearer.as_str()))
|
||||
.set("Content-Type", "application/json")
|
||||
.send_json(serde_json::to_value(request).map_err(|source| {
|
||||
SyncClientError::Json { endpoint: endpoint.clone(), source }
|
||||
})?);
|
||||
read_json_response::<DeviceApprovalDocument>(&endpoint, response)
|
||||
}
|
||||
|
||||
pub fn revoke_device(
|
||||
&self,
|
||||
request: &DeviceRevocationRequest,
|
||||
) -> Result<DeviceRevocationDocument, SyncClientError> {
|
||||
let endpoint = self.endpoint("/api/devices/revoke");
|
||||
let response =
|
||||
self.agent
|
||||
.post(&endpoint)
|
||||
.set("Authorization", &format!("Bearer {}", self.bearer.as_str()))
|
||||
.set("Content-Type", "application/json")
|
||||
.send_json(serde_json::to_value(request).map_err(|source| {
|
||||
SyncClientError::Json { endpoint: endpoint.clone(), source }
|
||||
})?);
|
||||
read_json_response::<DeviceRevocationDocument>(&endpoint, response)
|
||||
}
|
||||
|
||||
/// `GET /api/sync/status` — return the worker-side cursor,
|
||||
/// object, snapshot, and device summary for the authenticated
|
||||
/// approved device.
|
||||
@@ -120,13 +200,54 @@ impl SyncApiClient {
|
||||
read_json_response::<SyncStatusDocument>(&endpoint, response)
|
||||
}
|
||||
|
||||
pub fn current_sync_vault(&self) -> Result<SyncVaultDocument, SyncClientError> {
|
||||
let endpoint = self.endpoint("/api/sync/vault");
|
||||
let response = self
|
||||
.agent
|
||||
.get(&endpoint)
|
||||
.set("Authorization", &format!("Bearer {}", self.bearer.as_str()))
|
||||
.call();
|
||||
read_json_response::<SyncVaultDocument>(&endpoint, response)
|
||||
}
|
||||
|
||||
pub fn sync_vault_generation(
|
||||
&self,
|
||||
generation: u64,
|
||||
key_id: &str,
|
||||
) -> Result<SyncVaultDocument, SyncClientError> {
|
||||
let endpoint =
|
||||
self.endpoint(&format!("/api/sync/vault?generation={generation}&key_id={key_id}"));
|
||||
let response = self
|
||||
.agent
|
||||
.get(&endpoint)
|
||||
.set("Authorization", &format!("Bearer {}", self.bearer.as_str()))
|
||||
.call();
|
||||
read_json_response::<SyncVaultDocument>(&endpoint, response)
|
||||
}
|
||||
|
||||
pub fn bootstrap_sync_vault(
|
||||
&self,
|
||||
request: &SyncVaultBootstrapRequest<'_>,
|
||||
) -> Result<SyncVaultDocument, SyncClientError> {
|
||||
let endpoint = self.endpoint("/api/sync/vault/bootstrap");
|
||||
let response =
|
||||
self.agent
|
||||
.post(&endpoint)
|
||||
.set("Authorization", &format!("Bearer {}", self.bearer.as_str()))
|
||||
.set("Content-Type", "application/json")
|
||||
.send_json(serde_json::to_value(request).map_err(|error| {
|
||||
SyncClientError::Json { endpoint: endpoint.clone(), source: error }
|
||||
})?);
|
||||
read_json_response::<SyncVaultDocument>(&endpoint, response)
|
||||
}
|
||||
|
||||
/// `POST /api/sync/snapshot` — push the full per-user state. The
|
||||
/// worker enforces logical-clock monotonicity, so callers must
|
||||
/// pass a value strictly greater than the last accepted snapshot.
|
||||
pub fn upload_snapshot(
|
||||
&self,
|
||||
request: &SnapshotUploadRequest<'_>,
|
||||
) -> Result<SnapshotUploadDocument, SyncClientError> {
|
||||
) -> Result<SnapshotUploadResult, SyncClientError> {
|
||||
let endpoint = self.endpoint("/api/sync/snapshot");
|
||||
let response =
|
||||
self.agent
|
||||
@@ -136,7 +257,23 @@ impl SyncApiClient {
|
||||
.send_json(serde_json::to_value(request).map_err(|error| {
|
||||
SyncClientError::Json { endpoint: endpoint.clone(), source: error }
|
||||
})?);
|
||||
read_json_response::<SnapshotUploadDocument>(&endpoint, response)
|
||||
match response {
|
||||
Ok(response) => read_json_from_response::<SnapshotUploadDocument>(&endpoint, response)
|
||||
.map(SnapshotUploadResult::Committed),
|
||||
Err(ureq::Error::Status(409, response)) => {
|
||||
let conflict = read_json_from_response::<SyncSnapshotHeadConflictDocument>(
|
||||
&endpoint, response,
|
||||
)?;
|
||||
if conflict.version != 1 || conflict.error != "sync_snapshot_head_conflict" {
|
||||
return Err(SyncClientError::DeviceTrust {
|
||||
reason: "snapshot conflict response is invalid",
|
||||
});
|
||||
}
|
||||
Ok(SnapshotUploadResult::Conflict(conflict))
|
||||
}
|
||||
Err(error) => read_json_response::<SnapshotUploadDocument>(&endpoint, Err(error))
|
||||
.map(SnapshotUploadResult::Committed),
|
||||
}
|
||||
}
|
||||
|
||||
/// `GET /api/sync/snapshot?snapshot_id=…` — fetch the snapshot for
|
||||
@@ -145,15 +282,36 @@ impl SyncApiClient {
|
||||
/// the bytes.
|
||||
pub fn download_snapshot(
|
||||
&self,
|
||||
snapshot_id: &str,
|
||||
) -> Result<SnapshotDownload, SyncClientError> {
|
||||
let endpoint = self.endpoint(&format!("/api/sync/snapshot?snapshot_id={snapshot_id}"));
|
||||
head: &SnapshotHeadRef,
|
||||
) -> Result<SnapshotDownloadResult, SyncClientError> {
|
||||
let endpoint = self.endpoint(&format!(
|
||||
"/api/sync/snapshot?snapshot_id={}&head_revision={}&payload_hash={}",
|
||||
head.snapshot_id(),
|
||||
head.revision(),
|
||||
head.payload_hash(),
|
||||
));
|
||||
let response = self
|
||||
.agent
|
||||
.get(&endpoint)
|
||||
.set("Authorization", &format!("Bearer {}", self.bearer.as_str()))
|
||||
.call();
|
||||
read_json_response::<SnapshotDownload>(&endpoint, response)
|
||||
match response {
|
||||
Ok(response) => read_json_from_response::<SnapshotDownload>(&endpoint, response)
|
||||
.map(SnapshotDownloadResult::Downloaded),
|
||||
Err(ureq::Error::Status(409, response)) => {
|
||||
let conflict = read_json_from_response::<SyncSnapshotHeadConflictDocument>(
|
||||
&endpoint, response,
|
||||
)?;
|
||||
if conflict.version != 1 || conflict.error != "sync_snapshot_head_conflict" {
|
||||
return Err(SyncClientError::DeviceTrust {
|
||||
reason: "snapshot conflict response is invalid",
|
||||
});
|
||||
}
|
||||
Ok(SnapshotDownloadResult::Conflict(conflict))
|
||||
}
|
||||
Err(error) => read_json_response::<SnapshotDownload>(&endpoint, Err(error))
|
||||
.map(SnapshotDownloadResult::Downloaded),
|
||||
}
|
||||
}
|
||||
|
||||
fn endpoint(&self, path: &str) -> String {
|
||||
@@ -205,19 +363,55 @@ pub struct SyncObjectStatusDocument {
|
||||
#[derive(Clone, Debug, serde::Deserialize)]
|
||||
pub struct SyncSnapshotStatusDocument {
|
||||
pub total_snapshots: u64,
|
||||
pub latest: Option<SyncLatestSnapshotDocument>,
|
||||
pub head: Option<SyncLatestSnapshotDocument>,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, serde::Deserialize)]
|
||||
pub struct SyncLatestSnapshotDocument {
|
||||
pub head_revision: u64,
|
||||
pub base_head: Option<SnapshotHeadRef>,
|
||||
pub snapshot_id: String,
|
||||
pub payload_hash: String,
|
||||
pub encryption_version: u32,
|
||||
pub vault_generation: u64,
|
||||
pub key_id: String,
|
||||
pub content_hash: String,
|
||||
pub logical_clock: u64,
|
||||
pub device_id: String,
|
||||
pub size_bytes: u64,
|
||||
pub created_at: u64,
|
||||
}
|
||||
|
||||
impl SyncLatestSnapshotDocument {
|
||||
pub fn head_ref(&self) -> Result<SnapshotHeadRef, SyncClientError> {
|
||||
SnapshotHeadRef::new(
|
||||
self.head_revision,
|
||||
self.snapshot_id.clone(),
|
||||
self.payload_hash.clone(),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug)]
|
||||
pub enum SnapshotUploadResult {
|
||||
Committed(SnapshotUploadDocument),
|
||||
Conflict(SyncSnapshotHeadConflictDocument),
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug)]
|
||||
pub enum SnapshotDownloadResult {
|
||||
Downloaded(SnapshotDownload),
|
||||
Conflict(SyncSnapshotHeadConflictDocument),
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, serde::Deserialize)]
|
||||
#[serde(deny_unknown_fields)]
|
||||
pub struct SyncSnapshotHeadConflictDocument {
|
||||
pub version: u32,
|
||||
pub error: String,
|
||||
pub current_head: Option<SyncLatestSnapshotDocument>,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, serde::Deserialize)]
|
||||
pub struct SyncDeviceStatusDocument {
|
||||
pub approved_count: u64,
|
||||
@@ -230,18 +424,7 @@ fn read_json_response<T: DeserializeOwned>(
|
||||
response: Result<ureq::Response, ureq::Error>,
|
||||
) -> Result<T, SyncClientError> {
|
||||
match response {
|
||||
Ok(ok) => {
|
||||
let status = ok.status();
|
||||
let body = ok.into_string().map_err(|error| SyncClientError::HttpStatus {
|
||||
endpoint: endpoint.to_string(),
|
||||
status,
|
||||
body: error.to_string(),
|
||||
})?;
|
||||
serde_json::from_str::<T>(&body).map_err(|error| SyncClientError::Json {
|
||||
endpoint: endpoint.to_string(),
|
||||
source: error,
|
||||
})
|
||||
}
|
||||
Ok(ok) => read_json_from_response(endpoint, ok),
|
||||
Err(ureq::Error::Status(status, raw)) => {
|
||||
let body = raw.into_string().unwrap_or_default();
|
||||
Err(SyncClientError::HttpStatus { endpoint: endpoint.to_string(), status, body })
|
||||
@@ -251,3 +434,28 @@ fn read_json_response<T: DeserializeOwned>(
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn read_json_from_response<T: DeserializeOwned>(
|
||||
endpoint: &str,
|
||||
response: ureq::Response,
|
||||
) -> Result<T, SyncClientError> {
|
||||
let status = response.status();
|
||||
let body = response.into_string().map_err(|error| SyncClientError::HttpStatus {
|
||||
endpoint: endpoint.to_string(),
|
||||
status,
|
||||
body: error.to_string(),
|
||||
})?;
|
||||
serde_json::from_str::<T>(&body)
|
||||
.map_err(|source| SyncClientError::Json { endpoint: endpoint.to_string(), source })
|
||||
}
|
||||
|
||||
fn current_time_seconds() -> Result<u64, SyncClientError> {
|
||||
SystemTime::now()
|
||||
.duration_since(UNIX_EPOCH)
|
||||
.map(|duration| duration.as_secs())
|
||||
.map_err(|_| SyncClientError::DeviceTrust { reason: "system clock is invalid" })
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
#[path = "client_tests.rs"]
|
||||
mod tests;
|
||||
|
||||
Reference in New Issue
Block a user