2020-04-28 10:18:14 +00:00
|
|
|
use std::sync::Arc;
|
2022-01-11 11:43:46 +00:00
|
|
|
use std::time::{Duration, SystemTime, UNIX_EPOCH};
|
2020-04-28 10:18:14 +00:00
|
|
|
|
2022-01-11 16:31:09 +00:00
|
|
|
use futures::TryFutureExt;
|
|
|
|
use md5::{Digest as Md5Digest, Md5};
|
|
|
|
|
2021-03-15 15:21:41 +00:00
|
|
|
use hyper::{Body, Request, Response};
|
2022-01-11 16:31:09 +00:00
|
|
|
use serde::Serialize;
|
2020-04-28 10:18:14 +00:00
|
|
|
|
|
|
|
use garage_table::*;
|
|
|
|
use garage_util::data::*;
|
2021-03-15 15:21:41 +00:00
|
|
|
use garage_util::time::*;
|
2020-04-28 10:18:14 +00:00
|
|
|
|
2020-07-07 11:59:22 +00:00
|
|
|
use garage_model::block_ref_table::*;
|
|
|
|
use garage_model::garage::Garage;
|
2022-01-11 16:31:09 +00:00
|
|
|
use garage_model::key_table::Key;
|
2020-07-07 11:59:22 +00:00
|
|
|
use garage_model::object_table::*;
|
|
|
|
use garage_model::version_table::*;
|
2020-04-28 10:18:14 +00:00
|
|
|
|
2022-01-11 16:31:09 +00:00
|
|
|
use crate::api_server::{parse_bucket_key, resolve_bucket};
|
2020-11-08 14:04:30 +00:00
|
|
|
use crate::error::*;
|
2022-01-11 16:31:09 +00:00
|
|
|
use crate::s3_put::{decode_upload_id, get_headers};
|
|
|
|
use crate::s3_xml::{self, xmlns_tag};
|
2020-11-08 14:04:30 +00:00
|
|
|
|
2020-04-28 10:18:14 +00:00
|
|
|
pub async fn handle_copy(
|
|
|
|
garage: Arc<Garage>,
|
2022-01-11 16:31:09 +00:00
|
|
|
api_key: &Key,
|
2021-03-15 15:21:41 +00:00
|
|
|
req: &Request<Body>,
|
2021-12-14 12:55:11 +00:00
|
|
|
dest_bucket_id: Uuid,
|
2020-04-28 10:18:14 +00:00
|
|
|
dest_key: &str,
|
2020-07-07 15:15:53 +00:00
|
|
|
) -> Result<Response<Body>, Error> {
|
2022-01-11 11:43:46 +00:00
|
|
|
let copy_precondition = CopyPreconditionHeaders::parse(req)?;
|
|
|
|
|
2022-01-11 16:31:09 +00:00
|
|
|
let source_object = get_copy_source(&garage, api_key, req).await?;
|
2020-04-28 10:18:14 +00:00
|
|
|
|
2022-01-11 16:31:09 +00:00
|
|
|
let (source_version, source_version_data, source_version_meta) =
|
|
|
|
extract_source_info(&source_object)?;
|
2020-11-11 15:12:42 +00:00
|
|
|
|
2022-01-11 16:31:09 +00:00
|
|
|
// Check precondition, e.g. x-amz-copy-source-if-match
|
|
|
|
copy_precondition.check(source_version, &source_version_meta.etag)?;
|
2020-04-28 10:18:14 +00:00
|
|
|
|
2022-01-11 16:31:09 +00:00
|
|
|
// Generate parameters for copied object
|
2020-04-28 10:18:14 +00:00
|
|
|
let new_uuid = gen_uuid();
|
2021-03-15 14:26:29 +00:00
|
|
|
let new_timestamp = now_msec();
|
2020-04-28 10:18:14 +00:00
|
|
|
|
2021-03-15 15:21:41 +00:00
|
|
|
// Implement x-amz-metadata-directive: REPLACE
|
|
|
|
let new_meta = match req.headers().get("x-amz-metadata-directive") {
|
|
|
|
Some(v) if v == hyper::header::HeaderValue::from_static("REPLACE") => ObjectVersionMeta {
|
2022-02-21 22:02:30 +00:00
|
|
|
headers: get_headers(req.headers())?,
|
2022-01-11 16:31:09 +00:00
|
|
|
size: source_version_meta.size,
|
|
|
|
etag: source_version_meta.etag.clone(),
|
2021-03-15 15:21:41 +00:00
|
|
|
},
|
2022-01-11 16:31:09 +00:00
|
|
|
_ => source_version_meta.clone(),
|
2021-03-15 15:21:41 +00:00
|
|
|
};
|
|
|
|
|
2021-05-03 20:45:42 +00:00
|
|
|
let etag = new_meta.etag.to_string();
|
|
|
|
|
2021-03-15 15:21:41 +00:00
|
|
|
// Save object copy
|
2022-01-11 16:31:09 +00:00
|
|
|
match source_version_data {
|
2021-03-15 15:21:41 +00:00
|
|
|
ObjectVersionData::DeleteMarker => unreachable!(),
|
|
|
|
ObjectVersionData::Inline(_meta, bytes) => {
|
|
|
|
let dest_object_version = ObjectVersion {
|
|
|
|
uuid: new_uuid,
|
|
|
|
timestamp: new_timestamp,
|
|
|
|
state: ObjectVersionState::Complete(ObjectVersionData::Inline(
|
|
|
|
new_meta,
|
|
|
|
bytes.clone(),
|
|
|
|
)),
|
|
|
|
};
|
|
|
|
let dest_object = Object::new(
|
2021-12-14 12:55:11 +00:00
|
|
|
dest_bucket_id,
|
2021-03-15 15:21:41 +00:00
|
|
|
dest_key.to_string(),
|
|
|
|
vec![dest_object_version],
|
|
|
|
);
|
2020-04-28 10:18:14 +00:00
|
|
|
garage.object_table.insert(&dest_object).await?;
|
|
|
|
}
|
2021-03-15 15:21:41 +00:00
|
|
|
ObjectVersionData::FirstBlock(_meta, first_block_hash) => {
|
2021-03-15 14:26:29 +00:00
|
|
|
// Get block list from source version
|
2020-04-28 10:18:14 +00:00
|
|
|
let source_version = garage
|
|
|
|
.version_table
|
2022-01-11 16:31:09 +00:00
|
|
|
.get(&source_version.uuid, &EmptyKey)
|
2020-04-28 10:18:14 +00:00
|
|
|
.await?;
|
2022-01-05 16:07:36 +00:00
|
|
|
let source_version = source_version.ok_or(Error::NoSuchKey)?;
|
2020-04-28 10:18:14 +00:00
|
|
|
|
2021-03-15 14:26:29 +00:00
|
|
|
// Write an "uploading" marker in Object table
|
|
|
|
// This holds a reference to the object in the Version table
|
|
|
|
// so that it won't be deleted, e.g. by repair_versions.
|
|
|
|
let tmp_dest_object_version = ObjectVersion {
|
|
|
|
uuid: new_uuid,
|
|
|
|
timestamp: new_timestamp,
|
2021-03-15 15:21:41 +00:00
|
|
|
state: ObjectVersionState::Uploading(new_meta.headers.clone()),
|
2021-03-15 14:26:29 +00:00
|
|
|
};
|
|
|
|
let tmp_dest_object = Object::new(
|
2021-12-14 12:55:11 +00:00
|
|
|
dest_bucket_id,
|
2021-03-15 14:26:29 +00:00
|
|
|
dest_key.to_string(),
|
|
|
|
vec![tmp_dest_object_version],
|
|
|
|
);
|
|
|
|
garage.object_table.insert(&tmp_dest_object).await?;
|
|
|
|
|
|
|
|
// Write version in the version table. Even with empty block list,
|
|
|
|
// this means that the BlockRef entries linked to this version cannot be
|
|
|
|
// marked as deleted (they are marked as deleted only if the Version
|
|
|
|
// doesn't exist or is marked as deleted).
|
2021-12-14 12:55:11 +00:00
|
|
|
let mut dest_version =
|
|
|
|
Version::new(new_uuid, dest_bucket_id, dest_key.to_string(), false);
|
2021-03-15 14:26:29 +00:00
|
|
|
garage.version_table.insert(&dest_version).await?;
|
|
|
|
|
|
|
|
// Fill in block list for version and insert block refs
|
2021-03-10 15:21:56 +00:00
|
|
|
for (bk, bv) in source_version.blocks.items().iter() {
|
|
|
|
dest_version.blocks.put(*bk, *bv);
|
|
|
|
}
|
2020-04-28 10:18:14 +00:00
|
|
|
let dest_block_refs = dest_version
|
2021-03-10 15:21:56 +00:00
|
|
|
.blocks
|
|
|
|
.items()
|
2020-04-28 10:18:14 +00:00
|
|
|
.iter()
|
|
|
|
.map(|b| BlockRef {
|
2021-03-10 15:21:56 +00:00
|
|
|
block: b.1.hash,
|
2020-04-28 10:18:14 +00:00
|
|
|
version: new_uuid,
|
2021-03-10 15:21:56 +00:00
|
|
|
deleted: false.into(),
|
2020-04-28 10:18:14 +00:00
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
futures::try_join!(
|
|
|
|
garage.version_table.insert(&dest_version),
|
|
|
|
garage.block_ref_table.insert_many(&dest_block_refs[..]),
|
|
|
|
)?;
|
2021-03-15 14:26:29 +00:00
|
|
|
|
|
|
|
// Insert final object
|
|
|
|
// We do this last because otherwise there is a race condition in the case where
|
|
|
|
// the copy call has the same source and destination (this happens, rclone does
|
|
|
|
// it to update the modification timestamp for instance). If we did this concurrently
|
|
|
|
// with the stuff before, the block's reference counts could be decremented before
|
|
|
|
// they are incremented again for the new version, leading to data being deleted.
|
2021-03-15 15:21:41 +00:00
|
|
|
let dest_object_version = ObjectVersion {
|
|
|
|
uuid: new_uuid,
|
|
|
|
timestamp: new_timestamp,
|
|
|
|
state: ObjectVersionState::Complete(ObjectVersionData::FirstBlock(
|
|
|
|
new_meta,
|
|
|
|
*first_block_hash,
|
|
|
|
)),
|
|
|
|
};
|
|
|
|
let dest_object = Object::new(
|
2021-12-14 12:55:11 +00:00
|
|
|
dest_bucket_id,
|
2021-03-15 15:21:41 +00:00
|
|
|
dest_key.to_string(),
|
|
|
|
vec![dest_object_version],
|
|
|
|
);
|
2021-03-15 14:26:29 +00:00
|
|
|
garage.object_table.insert(&dest_object).await?;
|
2020-04-28 10:18:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-15 15:21:41 +00:00
|
|
|
let last_modified = msec_to_rfc3339(new_timestamp);
|
2022-01-12 10:41:20 +00:00
|
|
|
let result = CopyObjectResult {
|
2021-05-03 20:45:42 +00:00
|
|
|
last_modified: s3_xml::Value(last_modified),
|
2022-01-12 10:41:20 +00:00
|
|
|
etag: s3_xml::Value(format!("\"{}\"", etag)),
|
2021-05-03 20:45:42 +00:00
|
|
|
};
|
|
|
|
let xml = s3_xml::to_xml_with_header(&result)?;
|
2020-04-28 10:18:14 +00:00
|
|
|
|
2021-02-19 22:40:18 +00:00
|
|
|
Ok(Response::builder()
|
2021-02-23 17:46:25 +00:00
|
|
|
.header("Content-Type", "application/xml")
|
2022-01-11 11:43:46 +00:00
|
|
|
.header("x-amz-version-id", hex::encode(new_uuid))
|
|
|
|
.header(
|
|
|
|
"x-amz-copy-source-version-id",
|
2022-01-11 16:31:09 +00:00
|
|
|
hex::encode(source_version.uuid),
|
2022-01-11 11:43:46 +00:00
|
|
|
)
|
2021-05-03 20:45:42 +00:00
|
|
|
.body(Body::from(xml))?)
|
2020-04-28 10:18:14 +00:00
|
|
|
}
|
2022-01-11 11:43:46 +00:00
|
|
|
|
2022-01-11 16:31:09 +00:00
|
|
|
pub async fn handle_upload_part_copy(
|
|
|
|
garage: Arc<Garage>,
|
|
|
|
api_key: &Key,
|
|
|
|
req: &Request<Body>,
|
|
|
|
dest_bucket_id: Uuid,
|
|
|
|
dest_key: &str,
|
|
|
|
part_number: u64,
|
|
|
|
upload_id: &str,
|
|
|
|
) -> Result<Response<Body>, Error> {
|
|
|
|
let copy_precondition = CopyPreconditionHeaders::parse(req)?;
|
|
|
|
|
|
|
|
let dest_version_uuid = decode_upload_id(upload_id)?;
|
|
|
|
|
|
|
|
let dest_key = dest_key.to_string();
|
|
|
|
let (source_object, dest_object) = futures::try_join!(
|
|
|
|
get_copy_source(&garage, api_key, req),
|
|
|
|
garage
|
|
|
|
.object_table
|
|
|
|
.get(&dest_bucket_id, &dest_key)
|
|
|
|
.map_err(Error::from),
|
|
|
|
)?;
|
|
|
|
let dest_object = dest_object.ok_or(Error::NoSuchKey)?;
|
|
|
|
|
|
|
|
let (source_object_version, source_version_data, source_version_meta) =
|
|
|
|
extract_source_info(&source_object)?;
|
|
|
|
|
|
|
|
// Check precondition on source, e.g. x-amz-copy-source-if-match
|
|
|
|
copy_precondition.check(source_object_version, &source_version_meta.etag)?;
|
|
|
|
|
|
|
|
// Check source range is valid
|
|
|
|
let source_range = match req.headers().get("x-amz-copy-source-range") {
|
|
|
|
Some(range) => {
|
|
|
|
let range_str = range.to_str()?;
|
|
|
|
let mut ranges = http_range::HttpRange::parse(range_str, source_version_meta.size)
|
|
|
|
.map_err(|e| (e, source_version_meta.size))?;
|
|
|
|
if ranges.len() != 1 {
|
|
|
|
return Err(Error::BadRequest(
|
|
|
|
"Invalid x-amz-copy-source-range header: exactly 1 range must be given".into(),
|
|
|
|
));
|
|
|
|
} else {
|
|
|
|
ranges.pop().unwrap()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => http_range::HttpRange {
|
|
|
|
start: 0,
|
|
|
|
length: source_version_meta.size,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
// Check destination version is indeed in uploading state
|
|
|
|
if !dest_object
|
|
|
|
.versions()
|
|
|
|
.iter()
|
|
|
|
.any(|v| v.uuid == dest_version_uuid && v.is_uploading())
|
|
|
|
{
|
|
|
|
return Err(Error::NoSuchUpload);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check source version is not inlined
|
|
|
|
match source_version_data {
|
|
|
|
ObjectVersionData::DeleteMarker => unreachable!(),
|
|
|
|
ObjectVersionData::Inline(_meta, _bytes) => {
|
|
|
|
// This is only for small files, we don't bother handling this.
|
|
|
|
// (in AWS UploadPartCopy works for parts at least 5MB which
|
|
|
|
// is never the case of an inline object)
|
|
|
|
return Err(Error::BadRequest(
|
|
|
|
"Source object is too small (minimum part size is 5Mb)".into(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
ObjectVersionData::FirstBlock(_meta, _first_block_hash) => (),
|
|
|
|
};
|
|
|
|
|
|
|
|
// Fetch source versin with its block list,
|
|
|
|
// and destination version to check part hasn't yet been uploaded
|
|
|
|
let (source_version, dest_version) = futures::try_join!(
|
|
|
|
garage
|
|
|
|
.version_table
|
|
|
|
.get(&source_object_version.uuid, &EmptyKey),
|
|
|
|
garage.version_table.get(&dest_version_uuid, &EmptyKey),
|
|
|
|
)?;
|
|
|
|
let source_version = source_version.ok_or(Error::NoSuchKey)?;
|
|
|
|
|
|
|
|
// Check this part number hasn't yet been uploaded
|
|
|
|
if let Some(dv) = dest_version {
|
|
|
|
if dv.has_part_number(part_number) {
|
|
|
|
return Err(Error::BadRequest(format!(
|
|
|
|
"Part number {} has already been uploaded",
|
|
|
|
part_number
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We want to reuse blocks from the source version as much as possible.
|
|
|
|
// However, we still need to get the data from these blocks
|
|
|
|
// because we need to know it to calculate the MD5sum of the part
|
|
|
|
// which is used as its ETag.
|
|
|
|
|
|
|
|
// First, calculate what blocks we want to keep,
|
|
|
|
// and the subrange of the block to take, if the bounds of the
|
|
|
|
// requested range are in the middle.
|
|
|
|
let (range_begin, range_end) = (source_range.start, source_range.start + source_range.length);
|
|
|
|
|
|
|
|
let mut blocks_to_copy = vec![];
|
|
|
|
let mut current_offset = 0;
|
|
|
|
let mut size_to_copy = 0;
|
|
|
|
for (_bk, block) in source_version.blocks.items().iter() {
|
|
|
|
let (block_begin, block_end) = (current_offset, current_offset + block.size);
|
|
|
|
|
|
|
|
if block_begin < range_end && block_end > range_begin {
|
|
|
|
let subrange_begin = if block_begin < range_begin {
|
|
|
|
Some(range_begin - block_begin)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
let subrange_end = if block_end > range_end {
|
|
|
|
Some(range_end - block_begin)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
let range_to_copy = match (subrange_begin, subrange_end) {
|
|
|
|
(Some(b), Some(e)) => Some(b as usize..e as usize),
|
|
|
|
(None, Some(e)) => Some(0..e as usize),
|
|
|
|
(Some(b), None) => Some(b as usize..block.size as usize),
|
|
|
|
(None, None) => None,
|
|
|
|
};
|
|
|
|
size_to_copy += range_to_copy
|
|
|
|
.as_ref()
|
|
|
|
.map(|x| x.len() as u64)
|
|
|
|
.unwrap_or(block.size);
|
|
|
|
|
|
|
|
blocks_to_copy.push((block.hash, range_to_copy));
|
|
|
|
}
|
|
|
|
|
|
|
|
current_offset = block_end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if size_to_copy < 1024 * 1024 {
|
|
|
|
return Err(Error::BadRequest(format!(
|
|
|
|
"Not enough data to copy: {} bytes (minimum: 1MB)",
|
|
|
|
size_to_copy
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now, actually copy the blocks
|
|
|
|
let mut md5hasher = Md5::new();
|
|
|
|
|
|
|
|
let mut block = Some(
|
|
|
|
garage
|
|
|
|
.block_manager
|
|
|
|
.rpc_get_block(&blocks_to_copy[0].0)
|
|
|
|
.await?,
|
|
|
|
);
|
|
|
|
|
|
|
|
let mut current_offset = 0;
|
|
|
|
for (i, (block_hash, range_to_copy)) in blocks_to_copy.iter().enumerate() {
|
|
|
|
let (current_block, subrange_hash) = match range_to_copy.clone() {
|
|
|
|
Some(r) => {
|
|
|
|
let subrange = block.take().unwrap()[r].to_vec();
|
|
|
|
let hash = blake2sum(&subrange);
|
|
|
|
(subrange, hash)
|
|
|
|
}
|
|
|
|
None => (block.take().unwrap(), *block_hash),
|
|
|
|
};
|
|
|
|
md5hasher.update(¤t_block[..]);
|
|
|
|
|
|
|
|
let mut version = Version::new(dest_version_uuid, dest_bucket_id, dest_key.clone(), false);
|
|
|
|
version.blocks.put(
|
|
|
|
VersionBlockKey {
|
|
|
|
part_number,
|
|
|
|
offset: current_offset,
|
|
|
|
},
|
|
|
|
VersionBlock {
|
|
|
|
hash: subrange_hash,
|
|
|
|
size: current_block.len() as u64,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
current_offset += current_block.len() as u64;
|
|
|
|
|
|
|
|
let block_ref = BlockRef {
|
|
|
|
block: subrange_hash,
|
|
|
|
version: dest_version_uuid,
|
|
|
|
deleted: false.into(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let next_block_hash = blocks_to_copy.get(i + 1).map(|(h, _)| *h);
|
|
|
|
|
|
|
|
let garage2 = garage.clone();
|
|
|
|
let garage3 = garage.clone();
|
|
|
|
let is_subrange = range_to_copy.is_some();
|
|
|
|
|
|
|
|
let (_, _, _, next_block) = futures::try_join!(
|
|
|
|
// Thing 1: if we are taking a subrange of the source block,
|
|
|
|
// we need to insert that subrange as a new block.
|
|
|
|
async move {
|
|
|
|
if is_subrange {
|
|
|
|
garage2
|
|
|
|
.block_manager
|
|
|
|
.rpc_put_block(subrange_hash, current_block)
|
|
|
|
.await
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// Thing 2: we need to insert the block in the version
|
|
|
|
garage.version_table.insert(&version),
|
|
|
|
// Thing 3: we need to add a block reference
|
|
|
|
garage.block_ref_table.insert(&block_ref),
|
|
|
|
// Thing 4: we need to prefetch the next block
|
|
|
|
async move {
|
|
|
|
match next_block_hash {
|
|
|
|
Some(h) => Ok(Some(garage3.block_manager.rpc_get_block(&h).await?)),
|
|
|
|
None => Ok(None),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
|
|
|
|
block = next_block;
|
|
|
|
}
|
|
|
|
|
|
|
|
let data_md5sum = md5hasher.finalize();
|
|
|
|
let etag = hex::encode(data_md5sum);
|
|
|
|
|
|
|
|
// Put the part's ETag in the Versiontable
|
|
|
|
let mut version = Version::new(dest_version_uuid, dest_bucket_id, dest_key.clone(), false);
|
|
|
|
version.parts_etags.put(part_number, etag.clone());
|
|
|
|
garage.version_table.insert(&version).await?;
|
|
|
|
|
|
|
|
// LGTM
|
|
|
|
let resp_xml = s3_xml::to_xml_with_header(&CopyPartResult {
|
|
|
|
xmlns: (),
|
2022-01-12 10:41:20 +00:00
|
|
|
etag: s3_xml::Value(format!("\"{}\"", etag)),
|
2022-01-11 16:31:09 +00:00
|
|
|
last_modified: s3_xml::Value(msec_to_rfc3339(source_object_version.timestamp)),
|
|
|
|
})?;
|
|
|
|
|
|
|
|
Ok(Response::builder()
|
|
|
|
.header("Content-Type", "application/xml")
|
|
|
|
.header(
|
|
|
|
"x-amz-copy-source-version-id",
|
|
|
|
hex::encode(source_object_version.uuid),
|
|
|
|
)
|
|
|
|
.body(Body::from(resp_xml))?)
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn get_copy_source(
|
|
|
|
garage: &Garage,
|
|
|
|
api_key: &Key,
|
|
|
|
req: &Request<Body>,
|
|
|
|
) -> Result<Object, Error> {
|
|
|
|
let copy_source = req.headers().get("x-amz-copy-source").unwrap().to_str()?;
|
|
|
|
let copy_source = percent_encoding::percent_decode_str(copy_source).decode_utf8()?;
|
|
|
|
|
|
|
|
let (source_bucket, source_key) = parse_bucket_key(©_source, None)?;
|
|
|
|
let source_bucket_id = resolve_bucket(garage, &source_bucket.to_string(), api_key).await?;
|
|
|
|
|
|
|
|
if !api_key.allow_read(&source_bucket_id) {
|
|
|
|
return Err(Error::Forbidden(format!(
|
|
|
|
"Reading from bucket {} not allowed for this key",
|
|
|
|
source_bucket
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
|
|
|
|
let source_key = source_key.ok_or_bad_request("No source key specified")?;
|
|
|
|
|
|
|
|
let source_object = garage
|
|
|
|
.object_table
|
|
|
|
.get(&source_bucket_id, &source_key.to_string())
|
|
|
|
.await?
|
|
|
|
.ok_or(Error::NoSuchKey)?;
|
|
|
|
|
|
|
|
Ok(source_object)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn extract_source_info(
|
|
|
|
source_object: &Object,
|
|
|
|
) -> Result<(&ObjectVersion, &ObjectVersionData, &ObjectVersionMeta), Error> {
|
|
|
|
let source_version = source_object
|
|
|
|
.versions()
|
|
|
|
.iter()
|
|
|
|
.rev()
|
|
|
|
.find(|v| v.is_complete())
|
|
|
|
.ok_or(Error::NoSuchKey)?;
|
|
|
|
|
|
|
|
let source_version_data = match &source_version.state {
|
|
|
|
ObjectVersionState::Complete(x) => x,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let source_version_meta = match source_version_data {
|
|
|
|
ObjectVersionData::DeleteMarker => {
|
|
|
|
return Err(Error::NoSuchKey);
|
|
|
|
}
|
|
|
|
ObjectVersionData::Inline(meta, _bytes) => meta,
|
|
|
|
ObjectVersionData::FirstBlock(meta, _fbh) => meta,
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok((source_version, source_version_data, source_version_meta))
|
|
|
|
}
|
|
|
|
|
2022-01-11 11:43:46 +00:00
|
|
|
struct CopyPreconditionHeaders {
|
|
|
|
copy_source_if_match: Option<Vec<String>>,
|
|
|
|
copy_source_if_modified_since: Option<SystemTime>,
|
|
|
|
copy_source_if_none_match: Option<Vec<String>>,
|
|
|
|
copy_source_if_unmodified_since: Option<SystemTime>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CopyPreconditionHeaders {
|
|
|
|
fn parse(req: &Request<Body>) -> Result<Self, Error> {
|
|
|
|
Ok(Self {
|
|
|
|
copy_source_if_match: req
|
|
|
|
.headers()
|
|
|
|
.get("x-amz-copy-source-if-match")
|
|
|
|
.map(|x| x.to_str())
|
|
|
|
.transpose()?
|
|
|
|
.map(|x| {
|
|
|
|
x.split(',')
|
|
|
|
.map(|m| m.trim().trim_matches('"').to_string())
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
}),
|
|
|
|
copy_source_if_modified_since: req
|
|
|
|
.headers()
|
|
|
|
.get("x-amz-copy-source-if-modified-since")
|
|
|
|
.map(|x| x.to_str())
|
|
|
|
.transpose()?
|
2022-01-18 11:22:31 +00:00
|
|
|
.map(httpdate::parse_http_date)
|
2022-01-11 11:43:46 +00:00
|
|
|
.transpose()
|
|
|
|
.ok_or_bad_request("Invalid date in x-amz-copy-source-if-modified-since")?,
|
|
|
|
copy_source_if_none_match: req
|
|
|
|
.headers()
|
|
|
|
.get("x-amz-copy-source-if-none-match")
|
|
|
|
.map(|x| x.to_str())
|
|
|
|
.transpose()?
|
|
|
|
.map(|x| {
|
|
|
|
x.split(',')
|
|
|
|
.map(|m| m.trim().trim_matches('"').to_string())
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
}),
|
|
|
|
copy_source_if_unmodified_since: req
|
|
|
|
.headers()
|
|
|
|
.get("x-amz-copy-source-if-unmodified-since")
|
|
|
|
.map(|x| x.to_str())
|
|
|
|
.transpose()?
|
2022-01-18 11:22:31 +00:00
|
|
|
.map(httpdate::parse_http_date)
|
2022-01-11 11:43:46 +00:00
|
|
|
.transpose()
|
|
|
|
.ok_or_bad_request("Invalid date in x-amz-copy-source-if-unmodified-since")?,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check(&self, v: &ObjectVersion, etag: &str) -> Result<(), Error> {
|
|
|
|
let v_date = UNIX_EPOCH + Duration::from_millis(v.timestamp);
|
|
|
|
|
|
|
|
let ok = match (
|
|
|
|
&self.copy_source_if_match,
|
|
|
|
&self.copy_source_if_unmodified_since,
|
|
|
|
&self.copy_source_if_none_match,
|
|
|
|
&self.copy_source_if_modified_since,
|
|
|
|
) {
|
|
|
|
// TODO I'm not sure all of the conditions are evaluated correctly here
|
|
|
|
|
|
|
|
// If we have both if-match and if-unmodified-since,
|
|
|
|
// basically we don't care about if-unmodified-since,
|
|
|
|
// because in the spec it says that if if-match evaluates to
|
|
|
|
// true but if-unmodified-since evaluates to false,
|
|
|
|
// the copy is still done.
|
|
|
|
(Some(im), _, None, None) => im.iter().any(|x| x == etag || x == "*"),
|
|
|
|
(None, Some(ius), None, None) => v_date <= *ius,
|
|
|
|
|
|
|
|
// If we have both if-none-match and if-modified-since,
|
|
|
|
// then both of the two conditions must evaluate to true
|
|
|
|
(None, None, Some(inm), Some(ims)) => {
|
|
|
|
!inm.iter().any(|x| x == etag || x == "*") && v_date > *ims
|
|
|
|
}
|
|
|
|
(None, None, Some(inm), None) => !inm.iter().any(|x| x == etag || x == "*"),
|
|
|
|
(None, None, None, Some(ims)) => v_date > *ims,
|
2022-01-12 09:17:15 +00:00
|
|
|
(None, None, None, None) => true,
|
2022-01-11 11:43:46 +00:00
|
|
|
_ => {
|
|
|
|
return Err(Error::BadRequest(
|
|
|
|
"Invalid combination of x-amz-copy-source-if-xxxxx headers".into(),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if ok {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(Error::PreconditionFailed)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-11 16:31:09 +00:00
|
|
|
|
2022-01-12 10:41:20 +00:00
|
|
|
#[derive(Debug, Serialize, PartialEq)]
|
|
|
|
pub struct CopyObjectResult {
|
|
|
|
#[serde(rename = "LastModified")]
|
|
|
|
pub last_modified: s3_xml::Value,
|
|
|
|
#[serde(rename = "ETag")]
|
|
|
|
pub etag: s3_xml::Value,
|
|
|
|
}
|
|
|
|
|
2022-01-11 16:31:09 +00:00
|
|
|
#[derive(Debug, Serialize, PartialEq)]
|
|
|
|
pub struct CopyPartResult {
|
|
|
|
#[serde(serialize_with = "xmlns_tag")]
|
|
|
|
pub xmlns: (),
|
|
|
|
#[serde(rename = "LastModified")]
|
|
|
|
pub last_modified: s3_xml::Value,
|
|
|
|
#[serde(rename = "ETag")]
|
|
|
|
pub etag: s3_xml::Value,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
use crate::s3_xml::to_xml_with_header;
|
|
|
|
|
2022-01-12 10:41:20 +00:00
|
|
|
#[test]
|
|
|
|
fn copy_object_result() -> Result<(), Error> {
|
|
|
|
let copy_result = CopyObjectResult {
|
|
|
|
last_modified: s3_xml::Value(msec_to_rfc3339(0)),
|
|
|
|
etag: s3_xml::Value("\"9b2cf535f27731c974343645a3985328\"".to_string()),
|
|
|
|
};
|
|
|
|
assert_eq!(
|
|
|
|
to_xml_with_header(©_result)?,
|
|
|
|
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\
|
|
|
|
<CopyObjectResult>\
|
|
|
|
<LastModified>1970-01-01T00:00:00.000Z</LastModified>\
|
|
|
|
<ETag>"9b2cf535f27731c974343645a3985328"</ETag>\
|
|
|
|
</CopyObjectResult>\
|
|
|
|
"
|
|
|
|
);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-01-11 16:31:09 +00:00
|
|
|
#[test]
|
|
|
|
fn serialize_copy_part_result() -> Result<(), Error> {
|
2022-01-12 10:41:20 +00:00
|
|
|
let expected_retval = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\
|
|
|
|
<CopyPartResult xmlns=\"http://s3.amazonaws.com/doc/2006-03-01/\">\
|
|
|
|
<LastModified>2011-04-11T20:34:56.000Z</LastModified>\
|
|
|
|
<ETag>"9b2cf535f27731c974343645a3985328"</ETag>\
|
|
|
|
</CopyPartResult>";
|
2022-01-11 16:31:09 +00:00
|
|
|
let v = CopyPartResult {
|
|
|
|
xmlns: (),
|
|
|
|
last_modified: s3_xml::Value("2011-04-11T20:34:56.000Z".into()),
|
2022-01-12 10:41:20 +00:00
|
|
|
etag: s3_xml::Value("\"9b2cf535f27731c974343645a3985328\"".into()),
|
2022-01-11 16:31:09 +00:00
|
|
|
};
|
|
|
|
println!("{}", to_xml_with_header(&v)?);
|
|
|
|
|
|
|
|
assert_eq!(to_xml_with_header(&v)?, expected_retval);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|