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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
|
use std::fmt::Display;
use std::net::IpAddr;
use std::path::PathBuf;
use actix_web::http::header::{HeaderMap, HeaderName, HeaderValue};
use clap::{Parser, ValueEnum, ValueHint};
use crate::auth;
use crate::listing::{SortingMethod, SortingOrder};
use crate::renderer::ThemeSlug;
#[derive(ValueEnum, Clone)]
pub enum MediaType {
Image,
Audio,
Video,
}
#[derive(ValueEnum, Clone)]
pub enum SizeDisplay {
Human,
Exact,
}
impl Display for SizeDisplay {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
SizeDisplay::Human => write!(f, "human"),
SizeDisplay::Exact => write!(f, "exact"),
}
}
}
#[derive(Parser)]
#[command(name = "miniserve", author, about, version)]
pub struct CliArgs {
/// Be verbose, includes emitting access logs
#[arg(short = 'v', long = "verbose", env = "MINISERVE_VERBOSE")]
pub verbose: bool,
/// Which path to serve
#[arg(value_hint = ValueHint::AnyPath, env = "MINISERVE_PATH")]
pub path: Option<PathBuf>,
/// The path to where file uploads will be written to before being moved to their
/// correct location. It's wise to make sure that this directory will be written to
/// disk and not into memory.
///
/// This value will only be used **IF** file uploading is enabled. If this option is
/// not set, the operating system default temporary directory will be used.
#[arg(
long = "temp-directory",
value_hint = ValueHint::FilePath,
requires = "allowed_upload_dir",
value_parser(validate_is_dir_and_exists),
env = "MINISERVER_TEMP_UPLOAD_DIRECTORY")
]
pub temp_upload_directory: Option<PathBuf>,
/// The name of a directory index file to serve, like "index.html"
///
/// Normally, when miniserve serves a directory, it creates a listing for that directory.
/// However, if a directory contains this file, miniserve will serve that file instead.
#[arg(long, value_hint = ValueHint::FilePath, env = "MINISERVE_INDEX")]
pub index: Option<PathBuf>,
/// Activate SPA (Single Page Application) mode
///
/// This will cause the file given by --index to be served for all non-existing file paths. In
/// effect, this will serve the index file whenever a 404 would otherwise occur in order to
/// allow the SPA router to handle the request instead.
#[arg(long, requires = "index", env = "MINISERVE_SPA")]
pub spa: bool,
/// Activate Pretty URLs mode
///
/// This will cause the server to serve the equivalent `.html` file indicated by the path.
///
/// `/about` will try to find `about.html` and serve it.
#[arg(long, env = "MINISERVE_PRETTY_URLS")]
pub pretty_urls: bool,
/// Port to use
#[arg(
short = 'p',
long = "port",
default_value = "8080",
env = "MINISERVE_PORT"
)]
pub port: u16,
/// Interface to listen on
#[arg(
short = 'i',
long = "interfaces",
value_parser(parse_interface),
num_args(1),
env = "MINISERVE_INTERFACE"
)]
pub interfaces: Vec<IpAddr>,
/// Set authentication
///
/// Currently supported formats:
/// username:password, username:sha256:hash, username:sha512:hash
/// (e.g. joe:123, joe:sha256:a665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27ae3)
#[arg(
short = 'a',
long = "auth",
value_parser(parse_auth),
num_args(1),
env = "MINISERVE_AUTH",
verbatim_doc_comment
)]
pub auth: Vec<auth::RequiredAuth>,
/// Read authentication values from a file
///
/// Example file content:
///
/// joe:123
/// bob:sha256:a665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27ae3
/// bill:
#[arg(long, value_hint = ValueHint::FilePath, env = "MINISERVE_AUTH_FILE", verbatim_doc_comment)]
pub auth_file: Option<PathBuf>,
/// Use a specific route prefix
#[arg(long = "route-prefix", env = "MINISERVE_ROUTE_PREFIX")]
pub route_prefix: Option<String>,
/// Generate a random 6-hexdigit route
#[arg(
long = "random-route",
conflicts_with("route_prefix"),
env = "MINISERVE_RANDOM_ROUTE"
)]
pub random_route: bool,
/// Hide symlinks in listing and prevent them from being followed
#[arg(short = 'P', long = "no-symlinks", env = "MINISERVE_NO_SYMLINKS")]
pub no_symlinks: bool,
/// Show hidden files
#[arg(short = 'H', long = "hidden", env = "MINISERVE_HIDDEN")]
pub hidden: bool,
/// Default sorting method for file list
#[arg(
short = 'S',
long = "default-sorting-method",
default_value = "name",
ignore_case = true,
env = "MINISERVE_DEFAULT_SORTING_METHOD"
)]
pub default_sorting_method: SortingMethod,
/// Default sorting order for file list
#[arg(
short = 'O',
long = "default-sorting-order",
default_value = "desc",
ignore_case = true,
env = "MINISERVE_DEFAULT_SORTING_ORDER"
)]
pub default_sorting_order: SortingOrder,
/// Default color scheme
#[arg(
short = 'c',
long = "color-scheme",
default_value = "squirrel",
ignore_case = true,
env = "MINISERVE_COLOR_SCHEME"
)]
pub color_scheme: ThemeSlug,
/// Default color scheme
#[arg(
short = 'd',
long = "color-scheme-dark",
default_value = "archlinux",
ignore_case = true,
env = "MINISERVE_COLOR_SCHEME_DARK"
)]
pub color_scheme_dark: ThemeSlug,
/// Enable QR code display
#[arg(short = 'q', long = "qrcode", env = "MINISERVE_QRCODE")]
pub qrcode: bool,
/// Enable file uploading (and optionally specify for which directory)
///
/// The provided path is not a physical file system path. Instead, it's relative to the serve
/// dir. For instance, if the serve dir is '/home/hello', set this to '/upload' to allow
/// uploading to '/home/hello/upload'.
/// When specified via environment variable, a path always needs to be specified.
#[arg(short = 'u', long = "upload-files", value_hint = ValueHint::FilePath, num_args(0..=1), value_delimiter(','), env = "MINISERVE_ALLOWED_UPLOAD_DIR")]
pub allowed_upload_dir: Option<Vec<PathBuf>>,
/// Configure amount of concurrent uploads when visiting the website. Must have
/// upload-files option enabled for this setting to matter.
///
/// For example, a value of 4 would mean that the web browser will only upload
/// 4 files at a time to the web server when using the web browser interface.
///
/// When the value is kept at 0, it attempts to resolve all the uploads at once
/// in the web browser.
///
/// NOTE: Web pages have a limit of how many active HTTP connections that they
/// can make at one time, so even though you might set a concurrency limit of
/// 100, the browser might only make progress on the max amount of connections
/// it allows the web page to have open.
#[arg(
long = "web-upload-files-concurrency",
env = "MINISERVE_WEB_UPLOAD_CONCURRENCY",
default_value = "0"
)]
pub web_upload_concurrency: usize,
/// Enable creating directories
#[arg(
short = 'U',
long = "mkdir",
requires = "allowed_upload_dir",
env = "MINISERVE_MKDIR_ENABLED"
)]
pub mkdir_enabled: bool,
/// Specify uploadable media types
#[arg(
short = 'm',
long = "media-type",
requires = "allowed_upload_dir",
env = "MINISERVE_MEDIA_TYPE"
)]
pub media_type: Option<Vec<MediaType>>,
/// Directly specify the uploadable media type expression
#[arg(
short = 'M',
long = "raw-media-type",
requires = "allowed_upload_dir",
conflicts_with = "media_type",
env = "MINISERVE_RAW_MEDIA_TYPE"
)]
pub media_type_raw: Option<String>,
/// Enable overriding existing files during file upload
#[arg(
short = 'o',
long = "overwrite-files",
env = "MINISERVE_OVERWRITE_FILES"
)]
pub overwrite_files: bool,
/// Enable uncompressed tar archive generation
#[arg(short = 'r', long = "enable-tar", env = "MINISERVE_ENABLE_TAR")]
pub enable_tar: bool,
/// Enable gz-compressed tar archive generation
#[arg(short = 'g', long = "enable-tar-gz", env = "MINISERVE_ENABLE_TAR_GZ")]
pub enable_tar_gz: bool,
/// Enable zip archive generation
///
/// WARNING: Zipping large directories can result in out-of-memory exception
/// because zip generation is done in memory and cannot be sent on the fly
#[arg(short = 'z', long = "enable-zip", env = "MINISERVE_ENABLE_ZIP")]
pub enable_zip: bool,
/// Compress response
///
/// WARNING: Enabling this option may slow down transfers due to CPU overhead, so it is
/// disabled by default.
///
/// Only enable this option if you know that your users have slow connections or if you want to
/// minimize your server's bandwidth usage.
#[arg(
short = 'C',
long = "compress-response",
env = "MINISERVE_COMPRESS_RESPONSE"
)]
pub compress_response: bool,
/// List directories first
#[arg(short = 'D', long = "dirs-first", env = "MINISERVE_DIRS_FIRST")]
pub dirs_first: bool,
/// Shown instead of host in page title and heading
#[arg(short = 't', long = "title", env = "MINISERVE_TITLE")]
pub title: Option<String>,
/// Inserts custom headers into the responses. Specify each header as a 'Header:Value' pair.
/// This parameter can be used multiple times to add multiple headers.
///
/// Example:
/// --header "Header1:Value1" --header "Header2:Value2"
/// (If a header is already set or previously inserted, it will not be overwritten.)
#[arg(
long = "header",
value_parser(parse_header),
num_args(1),
env = "MINISERVE_HEADER"
)]
pub header: Vec<HeaderMap>,
/// Visualize symlinks in directory listing
#[arg(
short = 'l',
long = "show-symlink-info",
env = "MINISERVE_SHOW_SYMLINK_INFO"
)]
pub show_symlink_info: bool,
/// Hide version footer
#[arg(
short = 'F',
long = "hide-version-footer",
env = "MINISERVE_HIDE_VERSION_FOOTER"
)]
pub hide_version_footer: bool,
/// Hide theme selector
#[arg(long = "hide-theme-selector", env = "MINISERVE_HIDE_THEME_SELECTOR")]
pub hide_theme_selector: bool,
/// If enabled, display a wget command to recursively download the current directory
#[arg(
short = 'W',
long = "show-wget-footer",
env = "MINISERVE_SHOW_WGET_FOOTER"
)]
pub show_wget_footer: bool,
/// Generate completion file for a shell
#[arg(long = "print-completions", value_name = "shell")]
pub print_completions: Option<clap_complete::Shell>,
/// Generate man page
#[arg(long = "print-manpage")]
pub print_manpage: bool,
/// TLS certificate to use
#[cfg(feature = "tls")]
#[arg(long = "tls-cert", requires = "tls_key", value_hint = ValueHint::FilePath, env = "MINISERVE_TLS_CERT")]
pub tls_cert: Option<PathBuf>,
/// TLS private key to use
#[cfg(feature = "tls")]
#[arg(long = "tls-key", requires = "tls_cert", value_hint = ValueHint::FilePath, env = "MINISERVE_TLS_KEY")]
pub tls_key: Option<PathBuf>,
/// Enable README.md rendering in directories
#[arg(long, env = "MINISERVE_README")]
pub readme: bool,
/// Disable indexing
///
/// This will prevent directory listings from being generated
/// and return an error instead.
#[arg(short = 'I', long, env = "MINISERVE_DISABLE_INDEXING")]
pub disable_indexing: bool,
/// Enable read-only WebDAV support (PROPFIND requests)
///
/// Currently incompatible with -P|--no-symlinks (see https://github.com/messense/dav-server-rs/issues/37)
#[arg(long, env = "MINISERVE_ENABLE_WEBDAV", conflicts_with = "no_symlinks")]
pub enable_webdav: bool,
/// Show served file size in exact bytes
#[arg(long, default_value_t = SizeDisplay::Human, env = "MINISERVE_SIZE_DISPLAY")]
pub size_display: SizeDisplay,
}
/// Checks whether an interface is valid, i.e. it can be parsed into an IP address
fn parse_interface(src: &str) -> Result<IpAddr, std::net::AddrParseError> {
src.parse::<IpAddr>()
}
/// Validate that a path passed in is a directory and it exists.
fn validate_is_dir_and_exists(s: &str) -> Result<PathBuf, String> {
let path = PathBuf::from(s);
if path.exists() && path.is_dir() {
Ok(path)
} else {
Err(format!(
"Upload temporary directory must exist and be a directory. \
Validate that path {:?} meets those requirements.",
path
))
}
}
#[derive(Clone, Debug, thiserror::Error)]
pub enum AuthParseError {
/// Might occur if the HTTP credential string does not respect the expected format
#[error(
"Invalid format for credentials string. Expected username:password, username:sha256:hash or username:sha512:hash"
)]
InvalidAuthFormat,
/// Might occur if the hash method is neither sha256 nor sha512
#[error("{0} is not a valid hashing method. Expected sha256 or sha512")]
InvalidHashMethod(String),
/// Might occur if the HTTP auth hash password is not a valid hex code
#[error("Invalid format for password hash. Expected hex code")]
InvalidPasswordHash,
/// Might occur if the HTTP auth password exceeds 255 characters
#[error("HTTP password length exceeds 255 characters")]
PasswordTooLong,
}
/// Parse authentication requirement
pub fn parse_auth(src: &str) -> Result<auth::RequiredAuth, AuthParseError> {
use AuthParseError as E;
let mut split = src.splitn(3, ':');
let invalid_auth_format = Err(E::InvalidAuthFormat);
let username = match split.next() {
Some(username) => username,
None => return invalid_auth_format,
};
// second_part is either password in username:password or method in username:method:hash
let second_part = match split.next() {
// This allows empty passwords, as the spec does not forbid it
Some(password) => password,
None => return invalid_auth_format,
};
let password = if let Some(hash_hex) = split.next() {
let hash_bin = hex::decode(hash_hex).map_err(|_| E::InvalidPasswordHash)?;
match second_part {
"sha256" => auth::RequiredAuthPassword::Sha256(hash_bin),
"sha512" => auth::RequiredAuthPassword::Sha512(hash_bin),
_ => return Err(E::InvalidHashMethod(second_part.to_owned())),
}
} else {
// To make it Windows-compatible, the password needs to be shorter than 255 characters.
// After 255 characters, Windows will truncate the value.
// As for the username, the spec does not mention a limit in length
if second_part.len() > 255 {
return Err(E::PasswordTooLong);
}
auth::RequiredAuthPassword::Plain(second_part.to_owned())
};
Ok(auth::RequiredAuth {
username: username.to_owned(),
password,
})
}
/// Custom header parser (allow multiple headers input)
pub fn parse_header(src: &str) -> Result<HeaderMap, httparse::Error> {
let mut headers = [httparse::EMPTY_HEADER; 1];
let header = format!("{src}\n");
httparse::parse_headers(header.as_bytes(), &mut headers)?;
let mut header_map = HeaderMap::new();
if let Some(h) = headers.first() {
if h.name != httparse::EMPTY_HEADER.name {
header_map.insert(
HeaderName::from_bytes(h.name.as_bytes()).unwrap(),
HeaderValue::from_bytes(h.value).unwrap(),
);
}
}
Ok(header_map)
}
#[rustfmt::skip]
#[cfg(test)]
mod tests {
use super::*;
use rstest::rstest;
use pretty_assertions::assert_eq;
/// Helper function that creates a `RequiredAuth` structure
fn create_required_auth(username: &str, password: &str, encrypt: &str) -> auth::RequiredAuth {
use auth::*;
use RequiredAuthPassword::*;
let password = match encrypt {
"plain" => Plain(password.to_owned()),
"sha256" => Sha256(hex::decode(password).unwrap()),
"sha512" => Sha512(hex::decode(password).unwrap()),
_ => panic!("Unknown encryption type"),
};
auth::RequiredAuth {
username: username.to_owned(),
password,
}
}
#[rstest(
auth_string, username, password, encrypt,
case("username:password", "username", "password", "plain"),
case("username:sha256:abcd", "username", "abcd", "sha256"),
case("username:sha512:abcd", "username", "abcd", "sha512")
)]
fn parse_auth_valid(auth_string: &str, username: &str, password: &str, encrypt: &str) {
assert_eq!(
parse_auth(auth_string).unwrap(),
create_required_auth(username, password, encrypt),
);
}
#[rstest(
auth_string, err_msg,
case(
"foo",
"Invalid format for credentials string. Expected username:password, username:sha256:hash or username:sha512:hash"
),
case(
"username:blahblah:abcd",
"blahblah is not a valid hashing method. Expected sha256 or sha512"
),
case(
"username:sha256:invalid",
"Invalid format for password hash. Expected hex code"
),
case(
"username:sha512:invalid",
"Invalid format for password hash. Expected hex code"
),
)]
fn parse_auth_invalid(auth_string: &str, err_msg: &str) {
let err = parse_auth(auth_string).unwrap_err();
assert_eq!(format!("{err}"), err_msg.to_owned());
}
}
|