1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
use anyhow::{anyhow, Context, Error, Result};
use fehler::{throw, throws};
use std::fs::File;
use std::io::prelude::*;
use ureq::AgentBuilder;
use url::Url;
#[derive(Debug, Copy, Clone)]
pub enum ResourceAccess {
LocalOnly,
RemoteAllowed,
}
impl ResourceAccess {
pub fn permits(self, url: &Url) -> bool {
match self {
ResourceAccess::LocalOnly if is_local(url) => true,
ResourceAccess::RemoteAllowed => true,
_ => false,
}
}
}
fn is_local(url: &Url) -> bool {
url.scheme() == "file" && url.to_file_path().is_ok()
}
static RESOURCE_READ_LIMIT: u64 = 104_857_600;
#[throws]
fn fetch_http(url: &Url) -> Vec<u8> {
let proxy = match env_proxy::for_url(url).to_string() {
None => None,
Some(proxy_url) => {
let proxy = ureq::Proxy::new(&proxy_url).with_context(|| {
format!("Failed to set proxy for URL {} to {}", url, &proxy_url)
})?;
Some(proxy)
}
};
let response = proxy
.map_or(AgentBuilder::new(), |proxy| {
AgentBuilder::new().proxy(proxy)
})
.build()
.request_url("GET", url)
.set("User-Agent", concat!("mdcat/", env!("CARGO_PKG_VERSION")))
.call()
.with_context(|| format!("Failed to GET {}", url))?;
match response.header("Content-Length") {
None => {
let mut buffer = Vec::with_capacity(1_048_576);
response
.into_reader()
.take(RESOURCE_READ_LIMIT + 1)
.read_to_end(&mut buffer)
.with_context(|| format!("Failed to read from {}", url))?;
if RESOURCE_READ_LIMIT < buffer.len() as u64 {
throw!(anyhow!(
"Contents of {} exceeded {}, rejected",
url,
RESOURCE_READ_LIMIT
))
} else {
buffer
}
}
Some(value) => {
let size = value
.parse::<usize>()
.with_context(|| format!("{} reports invalid content size {}", url, value))?;
if RESOURCE_READ_LIMIT < size as u64 {
throw!(anyhow!(
"{} reports size {} which exceeds limit {}, refusing to read",
url,
size,
RESOURCE_READ_LIMIT
))
}
let mut buffer = vec![0; size];
response
.into_reader()
.take(RESOURCE_READ_LIMIT)
.read_exact(buffer.as_mut_slice())
.with_context(|| format!("Failed to read from {}", url))?;
buffer
}
}
}
pub fn read_url(url: &Url, access: ResourceAccess) -> Result<Vec<u8>> {
if !access.permits(url) {
throw!(anyhow!(
"Access denied to URL {} by policy {:?}",
url,
access
))
}
match url.scheme() {
"file" => match url.to_file_path() {
Ok(path) => {
let mut buffer = Vec::new();
File::open(path)
.with_context(|| format!("Failed to open file at {}", url))?
.take(RESOURCE_READ_LIMIT + 1)
.read_to_end(&mut buffer)
.with_context(|| format!("Failed to read from file at {}", url))?;
if RESOURCE_READ_LIMIT < buffer.len() as u64 {
Err(anyhow!(
"Contents of {} exceeded {}, rejected",
url,
RESOURCE_READ_LIMIT
))
} else {
Ok(buffer)
}
}
Err(_) => Err(anyhow!("Cannot convert URL {} to file path", url)),
},
"http" | "https" => fetch_http(url),
_ => Err(anyhow!(
"Cannot read from URL {}, protocol not supported",
url,
)),
}
}
#[cfg(test)]
mod tests {
use super::*;
use pretty_assertions::assert_eq;
#[test]
#[cfg(unix)]
fn resource_access_permits_local_resource() {
let resource = Url::parse("file:///foo/bar").unwrap();
assert!(ResourceAccess::LocalOnly.permits(&resource));
assert!(ResourceAccess::RemoteAllowed.permits(&resource));
}
#[test]
#[cfg(unix)]
fn resource_access_permits_remote_file_url() {
let resource = Url::parse("file://example.com/foo/bar").unwrap();
assert!(!ResourceAccess::LocalOnly.permits(&resource));
assert!(ResourceAccess::RemoteAllowed.permits(&resource));
}
#[test]
fn resource_access_permits_https_url() {
let resource = Url::parse("https:///foo/bar").unwrap();
assert!(!ResourceAccess::LocalOnly.permits(&resource));
assert!(ResourceAccess::RemoteAllowed.permits(&resource));
}
#[test]
fn read_url_with_http_url_fails_if_local_only_access() {
let url = "https://eu.httpbin.org/status/404"
.parse::<url::Url>()
.unwrap();
let error = read_url(&url, ResourceAccess::LocalOnly)
.unwrap_err()
.to_string();
assert_eq!(
error,
"Access denied to URL https://eu.httpbin.org/status/404 by policy LocalOnly"
);
}
#[test]
fn read_url_with_http_url_fails_when_status_404() {
let url = "https://eu.httpbin.org/status/404"
.parse::<url::Url>()
.unwrap();
let result = read_url(&url, ResourceAccess::RemoteAllowed);
assert!(result.is_err(), "Unexpected success: {:?}", result);
let error = format!("{:#}", result.unwrap_err());
assert_eq!(error, "Failed to GET https://eu.httpbin.org/status/404: https://eu.httpbin.org/status/404: status code 404")
}
#[test]
fn read_url_with_http_url_returns_content_when_status_200() {
let url = "https://eu.httpbin.org/bytes/100"
.parse::<url::Url>()
.unwrap();
let result = read_url(&url, ResourceAccess::RemoteAllowed);
assert!(result.is_ok(), "Unexpected error: {:?}", result);
assert_eq!(result.unwrap().len(), 100);
}
#[test]
fn read_url_with_http_url_fails_when_size_limit_is_exceeded() {
let url = "https://eu.httpbin.org/response-headers?content-length=115343400"
.parse::<url::Url>()
.unwrap();
let result = read_url(&url, ResourceAccess::RemoteAllowed);
assert!(result.is_err(), "Unexpected success: {:?}", result);
let error = format!("{:#}", result.unwrap_err());
assert_eq!(error, "https://eu.httpbin.org/response-headers?content-length=115343400 reports size 115343400 which exceeds limit 104857600, refusing to read")
}
}