2022-04-29 22:36:44 -04:00
|
|
|
use std::{
|
|
|
|
cmp,
|
|
|
|
fs::File,
|
|
|
|
future::Future,
|
|
|
|
io,
|
|
|
|
path::PathBuf,
|
|
|
|
pin::Pin,
|
|
|
|
task::{Context, Poll},
|
|
|
|
};
|
|
|
|
|
|
|
|
use actix_web::error::{Error, ErrorInternalServerError};
|
|
|
|
use bytes::Bytes;
|
|
|
|
use futures_core::{ready, Stream};
|
|
|
|
use inotify::{Inotify, WatchMask};
|
|
|
|
use log::trace;
|
|
|
|
use pin_project_lite::pin_project;
|
|
|
|
use std::{os::unix::fs::MetadataExt, time::SystemTime};
|
2022-04-26 23:54:29 -04:00
|
|
|
|
|
|
|
use actix_web::{
|
|
|
|
body::{self, BoxBody, SizedStream},
|
|
|
|
http::{
|
|
|
|
header::{
|
2022-04-28 05:18:35 -04:00
|
|
|
self, ContentDisposition, DispositionParam, DispositionType, EntityTag, HeaderValue,
|
|
|
|
HttpDate, IfMatch, IfModifiedSince, IfNoneMatch, IfUnmodifiedSince,
|
2022-04-26 23:54:29 -04:00
|
|
|
},
|
|
|
|
StatusCode,
|
|
|
|
},
|
2022-04-27 20:15:51 -04:00
|
|
|
HttpMessage, HttpRequest, HttpResponse, Responder,
|
2022-04-26 23:54:29 -04:00
|
|
|
};
|
|
|
|
|
2022-04-27 20:15:51 -04:00
|
|
|
use actix_files::HttpRange;
|
2022-04-26 23:54:29 -04:00
|
|
|
|
2022-04-30 01:38:26 -04:00
|
|
|
use crate::store::StoredFile;
|
2022-04-26 23:54:29 -04:00
|
|
|
|
2022-04-27 20:15:51 -04:00
|
|
|
// This is copied substantially from actix-files, with some tweaks
|
2022-04-26 23:54:29 -04:00
|
|
|
|
2022-04-27 20:15:51 -04:00
|
|
|
pub(crate) struct DownloadingFile {
|
|
|
|
pub(crate) file: File,
|
2022-04-29 22:36:44 -04:00
|
|
|
pub(crate) storage_path: PathBuf,
|
2022-04-30 01:38:26 -04:00
|
|
|
pub(crate) info: StoredFile,
|
2022-04-26 23:54:29 -04:00
|
|
|
}
|
|
|
|
|
2022-04-27 20:15:51 -04:00
|
|
|
impl DownloadingFile {
|
|
|
|
fn etag(&self) -> EntityTag {
|
|
|
|
let ino = self.file.metadata().map(|md| md.ino()).unwrap_or_default();
|
|
|
|
EntityTag::new_strong(format!(
|
|
|
|
"{:x}:{:x}:{:x}:{:x}",
|
|
|
|
ino,
|
|
|
|
self.info.size,
|
|
|
|
self.info.modtime.unix_timestamp() as u64,
|
|
|
|
self.info.modtime.nanosecond(),
|
|
|
|
))
|
2022-04-26 23:54:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates an `HttpResponse` with file as a streaming body.
|
|
|
|
pub fn into_response(self, req: &HttpRequest) -> HttpResponse<BoxBody> {
|
2022-04-27 20:15:51 -04:00
|
|
|
let etag = self.etag();
|
|
|
|
let last_modified = HttpDate::from(SystemTime::from(self.info.modtime));
|
2022-04-26 23:54:29 -04:00
|
|
|
|
2022-04-27 20:15:51 -04:00
|
|
|
let precondition_failed = precondition_failed(req, &etag, &last_modified);
|
|
|
|
let not_modified = not_modified(req, &etag, &last_modified);
|
2022-04-26 23:54:29 -04:00
|
|
|
|
2022-04-27 20:15:51 -04:00
|
|
|
let mut res = HttpResponse::build(StatusCode::OK);
|
2022-04-26 23:54:29 -04:00
|
|
|
|
2022-04-28 01:06:39 -04:00
|
|
|
res.insert_header((header::CONTENT_SECURITY_POLICY, "sandbox"));
|
2022-04-27 20:15:51 -04:00
|
|
|
res.insert_header((header::CONTENT_TYPE, mime::APPLICATION_OCTET_STREAM));
|
|
|
|
res.insert_header((
|
|
|
|
header::CONTENT_DISPOSITION,
|
|
|
|
ContentDisposition {
|
|
|
|
disposition: DispositionType::Attachment,
|
|
|
|
parameters: vec![DispositionParam::Filename(self.info.name)],
|
2022-04-28 05:18:35 -04:00
|
|
|
},
|
2022-04-27 20:15:51 -04:00
|
|
|
));
|
|
|
|
res.insert_header((header::LAST_MODIFIED, last_modified));
|
|
|
|
res.insert_header((header::ETAG, etag));
|
2022-04-26 23:54:29 -04:00
|
|
|
res.insert_header((header::ACCEPT_RANGES, "bytes"));
|
|
|
|
|
2022-04-27 20:15:51 -04:00
|
|
|
let mut length = self.info.size;
|
2022-04-26 23:54:29 -04:00
|
|
|
let mut offset = 0;
|
|
|
|
|
|
|
|
// check for range header
|
|
|
|
if let Some(ranges) = req.headers().get(header::RANGE) {
|
|
|
|
if let Ok(ranges_header) = ranges.to_str() {
|
|
|
|
if let Ok(ranges) = HttpRange::parse(ranges_header, length) {
|
|
|
|
length = ranges[0].length;
|
|
|
|
offset = ranges[0].start;
|
|
|
|
|
|
|
|
// don't allow compression middleware to modify partial content
|
|
|
|
res.insert_header((
|
|
|
|
header::CONTENT_ENCODING,
|
|
|
|
HeaderValue::from_static("identity"),
|
|
|
|
));
|
|
|
|
|
|
|
|
res.insert_header((
|
|
|
|
header::CONTENT_RANGE,
|
2022-04-28 05:18:35 -04:00
|
|
|
format!(
|
|
|
|
"bytes {}-{}/{}",
|
|
|
|
offset,
|
|
|
|
offset + length - 1,
|
|
|
|
self.info.size
|
|
|
|
),
|
2022-04-26 23:54:29 -04:00
|
|
|
));
|
|
|
|
} else {
|
|
|
|
res.insert_header((header::CONTENT_RANGE, format!("bytes */{}", length)));
|
|
|
|
return res.status(StatusCode::RANGE_NOT_SATISFIABLE).finish();
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return res.status(StatusCode::BAD_REQUEST).finish();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
if precondition_failed {
|
|
|
|
return res.status(StatusCode::PRECONDITION_FAILED).finish();
|
|
|
|
} else if not_modified {
|
|
|
|
return res
|
|
|
|
.status(StatusCode::NOT_MODIFIED)
|
|
|
|
.body(body::None::new())
|
|
|
|
.map_into_boxed_body();
|
|
|
|
}
|
|
|
|
|
2022-04-29 22:36:44 -04:00
|
|
|
let reader = new_live_reader(length, offset, self.file, self.storage_path);
|
2022-04-26 23:54:29 -04:00
|
|
|
|
2022-04-27 20:15:51 -04:00
|
|
|
if offset != 0 || length != self.info.size {
|
2022-04-26 23:54:29 -04:00
|
|
|
res.status(StatusCode::PARTIAL_CONTENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
res.body(SizedStream::new(length, reader))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-27 20:15:51 -04:00
|
|
|
fn precondition_failed(req: &HttpRequest, etag: &EntityTag, last_modified: &HttpDate) -> bool {
|
|
|
|
if let Some(IfMatch::Items(ref items)) = req.get_header() {
|
|
|
|
if !items.iter().any(|item| item.strong_eq(etag)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(IfUnmodifiedSince(ref since)) = req.get_header() {
|
|
|
|
if last_modified > since {
|
|
|
|
return true;
|
2022-04-26 23:54:29 -04:00
|
|
|
}
|
|
|
|
}
|
2022-04-27 20:15:51 -04:00
|
|
|
false
|
2022-04-26 23:54:29 -04:00
|
|
|
}
|
|
|
|
|
2022-04-27 20:15:51 -04:00
|
|
|
fn not_modified(req: &HttpRequest, etag: &EntityTag, last_modified: &HttpDate) -> bool {
|
|
|
|
match req.get_header::<IfNoneMatch>() {
|
2022-04-28 05:18:35 -04:00
|
|
|
Some(IfNoneMatch::Any) => {
|
|
|
|
return true;
|
|
|
|
}
|
2022-04-27 20:15:51 -04:00
|
|
|
Some(IfNoneMatch::Items(ref items)) => {
|
|
|
|
return items.iter().any(|item| item.weak_eq(etag));
|
|
|
|
}
|
|
|
|
None => (),
|
|
|
|
}
|
|
|
|
if let Some(IfModifiedSince(ref since)) = req.get_header() {
|
|
|
|
if last_modified < since {
|
|
|
|
return true;
|
2022-04-26 23:54:29 -04:00
|
|
|
}
|
|
|
|
}
|
2022-04-27 20:15:51 -04:00
|
|
|
false
|
2022-04-26 23:54:29 -04:00
|
|
|
}
|
|
|
|
|
2022-04-27 20:15:51 -04:00
|
|
|
impl Responder for DownloadingFile {
|
2022-04-26 23:54:29 -04:00
|
|
|
type Body = BoxBody;
|
|
|
|
|
|
|
|
fn respond_to(self, req: &HttpRequest) -> HttpResponse<Self::Body> {
|
|
|
|
self.into_response(req)
|
|
|
|
}
|
|
|
|
}
|
2022-04-29 22:36:44 -04:00
|
|
|
|
|
|
|
pin_project! {
|
|
|
|
pub struct LiveFileReader<F, Fut> {
|
|
|
|
size: u64,
|
|
|
|
offset: u64,
|
|
|
|
#[pin]
|
|
|
|
state: LiveFileReaderState<Fut>,
|
|
|
|
counter: u64,
|
|
|
|
available_file_size: u64,
|
|
|
|
callback: F,
|
|
|
|
#[pin]
|
|
|
|
events: inotify::EventStream<[u8; 1024]>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pin_project! {
|
|
|
|
#[project = LiveFileReaderStateProj]
|
|
|
|
#[project_replace = LiveFileReaderStateProjReplace]
|
|
|
|
enum LiveFileReaderState<Fut> {
|
|
|
|
File { file: Option<File>, },
|
|
|
|
Future { #[pin] fut: Fut },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn new_live_reader(
|
|
|
|
size: u64,
|
|
|
|
offset: u64,
|
|
|
|
file: File,
|
|
|
|
storage_path: PathBuf,
|
|
|
|
) -> impl Stream<Item = Result<Bytes, Error>> {
|
|
|
|
let mut inotify = Inotify::init().expect("failed to init inotify");
|
|
|
|
inotify
|
|
|
|
.add_watch(storage_path, WatchMask::MODIFY | WatchMask::CLOSE_WRITE)
|
|
|
|
.expect("Failed to add inotify watch");
|
|
|
|
let events = inotify
|
|
|
|
.event_stream([0; 1024])
|
|
|
|
.expect("failed to set up event stream");
|
|
|
|
LiveFileReader {
|
|
|
|
size,
|
|
|
|
offset,
|
|
|
|
state: LiveFileReaderState::File { file: Some(file) },
|
|
|
|
counter: 0,
|
|
|
|
available_file_size: 0,
|
|
|
|
callback: live_file_reader_callback,
|
|
|
|
events,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn live_file_reader_callback(
|
|
|
|
mut file: File,
|
|
|
|
offset: u64,
|
|
|
|
max_bytes: usize,
|
|
|
|
) -> Result<(File, Bytes), Error> {
|
|
|
|
use io::{Read as _, Seek as _};
|
|
|
|
|
|
|
|
let res = actix_web::web::block(move || {
|
|
|
|
trace!(
|
|
|
|
"reading up to {} bytes of file starting at {}",
|
|
|
|
max_bytes,
|
|
|
|
offset
|
|
|
|
);
|
|
|
|
|
|
|
|
let mut buf = Vec::with_capacity(max_bytes);
|
|
|
|
|
|
|
|
file.seek(io::SeekFrom::Start(offset))?;
|
|
|
|
|
|
|
|
let n_bytes = std::io::Read::by_ref(&mut file)
|
|
|
|
.take(max_bytes as u64)
|
|
|
|
.read_to_end(&mut buf)?;
|
|
|
|
trace!("got {} bytes from file", n_bytes);
|
|
|
|
if n_bytes == 0 {
|
|
|
|
Err(io::Error::from(io::ErrorKind::UnexpectedEof))
|
|
|
|
} else {
|
|
|
|
Ok((file, Bytes::from(buf)))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<F, Fut> Stream for LiveFileReader<F, Fut>
|
|
|
|
where
|
|
|
|
F: Fn(File, u64, usize) -> Fut,
|
|
|
|
Fut: Future<Output = Result<(File, Bytes), Error>>,
|
|
|
|
{
|
|
|
|
type Item = Result<Bytes, Error>;
|
|
|
|
|
|
|
|
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
|
|
|
|
let mut this = self.as_mut().project();
|
|
|
|
match this.state.as_mut().project() {
|
|
|
|
LiveFileReaderStateProj::File { file } => {
|
|
|
|
let size = *this.size;
|
|
|
|
let offset = *this.offset;
|
|
|
|
let counter = *this.counter;
|
|
|
|
|
|
|
|
if size == counter {
|
|
|
|
Poll::Ready(None)
|
|
|
|
} else {
|
|
|
|
let inner_file = file.take().expect("LiveFileReader polled after completion");
|
|
|
|
|
|
|
|
if offset >= *this.available_file_size {
|
|
|
|
trace!(
|
|
|
|
"offset {} has reached available file size {}, updating metadata",
|
|
|
|
offset,
|
|
|
|
this.available_file_size
|
|
|
|
);
|
|
|
|
// If we've hit the end of what was available
|
|
|
|
// last time we checked, check again
|
|
|
|
*this.available_file_size = match inner_file.metadata() {
|
|
|
|
Ok(md) => md.len(),
|
|
|
|
Err(e) => {
|
|
|
|
return Poll::Ready(Some(Err(e.into())));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
trace!("new available file size: {}", this.available_file_size);
|
|
|
|
|
|
|
|
// If we're still at the end, inotify time
|
|
|
|
if offset >= *this.available_file_size {
|
|
|
|
trace!("waiting for inotify events");
|
|
|
|
file.get_or_insert(inner_file);
|
|
|
|
match this.events.poll_next(cx) {
|
|
|
|
Poll::Pending => {
|
|
|
|
return Poll::Pending;
|
|
|
|
}
|
|
|
|
Poll::Ready(Some(_)) => {
|
|
|
|
return self.poll_next(cx);
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
return Poll::Ready(Some(Err(ErrorInternalServerError(
|
|
|
|
"inotify stream empty",
|
|
|
|
))));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let max_bytes = cmp::min(
|
|
|
|
65_536,
|
|
|
|
cmp::min(
|
|
|
|
size.saturating_sub(counter),
|
|
|
|
this.available_file_size.saturating_sub(offset),
|
|
|
|
),
|
|
|
|
) as usize;
|
|
|
|
|
|
|
|
let fut = (this.callback)(inner_file, offset, max_bytes);
|
|
|
|
|
|
|
|
this.state
|
|
|
|
.project_replace(LiveFileReaderState::Future { fut });
|
|
|
|
|
|
|
|
self.poll_next(cx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LiveFileReaderStateProj::Future { fut } => {
|
|
|
|
let (file, bytes) = ready!(fut.poll(cx))?;
|
|
|
|
|
|
|
|
this.state
|
|
|
|
.project_replace(LiveFileReaderState::File { file: Some(file) });
|
|
|
|
|
|
|
|
*this.offset += bytes.len() as u64;
|
|
|
|
*this.counter += bytes.len() as u64;
|
|
|
|
|
|
|
|
Poll::Ready(Some(Ok(bytes)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|