Skip to content

Commit b144ff5

Browse files
committed
feat: Add support for listening on Unix domain sockets
Add a new command line option `--listen-unix` for binding the HTTP server to socket file paths. Resolves #5
1 parent ee786a1 commit b144ff5

File tree

2 files changed

+35
-6
lines changed

2 files changed

+35
-6
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ Options:
8080
-h, --help print help and exit
8181
-V, --version print version and exit
8282
-L, --listen ADDRESS:PORT address and port to listen at (0.0.0.0:3080)
83+
--listen-unix PATH Unix domain socket path to listen at
8384
-U, --upstream-url URL upstream download URL (https://crates.io/)
8485
-I, --index-url URL upstream index URL (https://index.crates.io/)
8586
-S, --proxy-url URL this proxy server URL (http://localhost:3080/)

src/main.rs

+34-6
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ mod metadata_cache;
3131
use std::env;
3232
use std::fmt::Display;
3333
use std::io::Read;
34-
use std::path::PathBuf;
34+
use std::path::{Path, PathBuf};
3535
use std::sync::OnceLock;
3636
use std::time::Duration;
3737

@@ -538,11 +538,29 @@ fn handle_get_request(request: Request, config: &ProxyConfig) {
538538
};
539539
}
540540

541-
/// Runs HTTP proxy server forever.
542-
fn main_loop(listen_addr: &str, config: &ProxyConfig) -> ! {
543-
info!("proxy: starting HTTP server at: {listen_addr}");
541+
/// Server listening address
542+
enum ListenAddress {
543+
/// IP address + port
544+
SocketAddr(String),
545+
/// Unix domain socket path
546+
UnixPath(String),
547+
}
544548

545-
let server = Server::http(listen_addr).expect("failed to start the HTTP server");
549+
/// Runs HTTP proxy server forever.
550+
fn main_loop(listen_addr: &ListenAddress, config: &ProxyConfig) -> ! {
551+
let server = match listen_addr {
552+
ListenAddress::SocketAddr(addr) => {
553+
info!("proxy: starting HTTP server at: {addr}");
554+
Server::http(addr).expect("failed to start the HTTP server")
555+
}
556+
ListenAddress::UnixPath(path) => {
557+
info!("proxy: starting HTTP server at Unix socket {path}");
558+
let path = Path::new(path);
559+
// Reap stale socket files before binding.
560+
std::fs::remove_file(path).ok();
561+
Server::http_unix(path).expect("failed to start the HTTP server")
562+
}
563+
};
546564

547565
// Main HTTP request accept loop.
548566
loop {
@@ -583,6 +601,7 @@ fn usage() {
583601
println!(" -h, --help print help and exit");
584602
println!(" -V, --version print version and exit");
585603
println!(" -L, --listen ADDRESS:PORT address and port to listen at (0.0.0.0:3080)");
604+
println!(" --listen-unix PATH Unix domain socket path to listen at");
586605
println!(" -U, --upstream-url URL upstream download URL (https://crates.io/)");
587606
println!(" -I, --index-url URL upstream index URL (https://index.crates.io/)");
588607
println!(" -S, --proxy-url URL this proxy server URL (http://localhost:3080/)");
@@ -626,7 +645,11 @@ fn main() {
626645
verbose += 1;
627646
}
628647

629-
let listen_addr = args
648+
let listen_addr_unix = args
649+
.opt_value_from_str("--listen-unix")
650+
.expect("bad listen socket path");
651+
652+
let listen_addr_ip = args
630653
.opt_value_from_str(["-L", "--listen"])
631654
.expect("bad listen address argument")
632655
.unwrap_or_else(|| LISTEN_ADDRESS.to_string());
@@ -703,6 +726,11 @@ fn main() {
703726
cache_ttl,
704727
};
705728

729+
let listen_addr = match listen_addr_unix {
730+
Some(unix_path) => ListenAddress::UnixPath(unix_path),
731+
None => ListenAddress::SocketAddr(listen_addr_ip),
732+
};
733+
706734
// Start the main HTTP server.
707735
main_loop(&listen_addr, &config)
708736
}

0 commit comments

Comments
 (0)