summaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAgeFilesLines
...
* Add splash message and option --no-splashdilluti0n2025-09-051-1/+18
|
* Add flag --loglevel to set loglevel on runtimedilluti0n2025-09-032-10/+51
| | | | | | | | | | | | | | | * Introduce: `DEFAULT_LOG_LEVEL` and `LOG_LEVEL_OVERRIDE` (OnceLock) in log.rs. * Add: `set_log_level()` and `current_log_level()`; gate defaults by `debug_assertions`. * Implement: `FromStr` for `LogLevel` with a proper error type (`ParseLogLevelError`). * Update: `log_println!` to respect `current_log_level()` and use `format_args!`. * Extend: CLI: `--loglevel <debug|info|warning|error>` and reflect it in `usage()`. * Replace: ad-hoc prints with `log_println!` and plumb parsed level into `set_log_level`.
* Tidy up LogLevel enum definitiondilluti0n2025-09-034-21/+21
| | | | | | * Remove: unused `Fatal` variant from `LogLevel`. * Update: comment on `Error` to indicate it represents unrecoverable errors.
* Use log.rs for conditional logging and centralized error reportingdilluti0n2025-09-032-3/+8
| | | | | | | | | * Set: `LOG_LEVEL` to `Debug` in debug builds and `Warning` in release builds via `#[cfg(debug_assertions)]`. * Replace: direct `println!` calls with `log_println!` for packet handling, warning messages, and argument parsing errors. * Ensures: consistent log formatting and respects the global log level configuration across the codebase.
* Refactor main to ensure cleanup via RAII guarddilluti0n2025-09-031-2/+31
| | | | | | | | | Introduce `EnsureCleanup` struct with a `Drop` implementation that calls `platform::cleanup()`. This guarantees cleanup is always performed after a successful bootstrap, regardless of how execution exits. Error handling is centralized in `main()`, where errors are logged once with their cause chain, and the process exits with the appropriate status code.
* Refactor prefixed logs to using log.rs, leaving Errors untoucheddilluti0n2025-09-033-10/+13
|
* Implement log.rs; log level handlingdilluti0n2025-09-031-0/+34
|
* Add prefix [INFO] or [WARNNING] on log messagesdilluti0n2025-08-312-10/+10
|
* platform: windows: log WinDivert handle creationdilluti0n2025-08-311-5/+7
| | | | | | Define the TCP:443 outbound filter as a constant and reuse it in WinDivert::network. Add a log message when the handle is successfully constructed for better visibility during runtime.
* platform: linux: add verbose messages on bootstrapdilluti0n2025-08-311-3/+19
|
* platform: linux: unhardcode chain name DPIBREAKdilluti0n2025-08-311-7/+11
|
* Move is_client_hello to tls module for better readabilityDilluti0n2025-08-262-31/+29
|
* Fix typo on split_packet error messageDilluti0n2025-08-261-1/+1
|
* Decouple once_cell by replacing it with standard libDilluti0n2025-08-233-11/+2
|
* platform: linux: decouple once_cellDilluti0n2025-08-231-6/+3
| | | | * Replace once_cell::Lazy with plain AtomicBool
* platform: linux: use standard library instead of once_cell on socketDilluti0n2025-08-231-3/+4
|
* platform: linux: make iptables helpers privateDilluti0n2025-08-231-5/+5
|
* Make platform and TLS imports explicitDilluti0n2025-08-231-8/+8
| | | | | | | | * Remove: wildcard import from platform and top-level TLSMsg import. * Add: local use of TLSMsg inside is_client_hello(). * Add: local use of send_to_raw() inside handle_packet(). * Qualify: IS_U32_SUPPORTED, QUEUE_NUM, bootstrap(), run(), and cleanup() with platform::.
* Clean up is_client_hello() for clarityDilluti0n2025-08-231-12/+11
| | | | | | * Remove nested TLSMsg::new() invocation. * Introduce fragment variable for readability. * Simplify control flow by flattening record parsing.
* Simplify signal handling with global AtomicBoolDilluti0n2025-08-233-17/+18
| | | | | | | * Remove Arc<AtomicBool> indirection and introduce global RUNNING. * Rename plant_handler() to trap_exit() for clarity. * Update run() implementations on Linux and Windows to use RUNNING directly. * Drop unused imports in main.rs, linux.rs, and windows.rs.
* Wrap planting handler to plant_handlerdilluti0n2025-08-231-9/+12
|
* Clear output buffer before writing in split_packethskim2025-08-231-2/+1
| | | | | | | Previously split_packet used truncate() after writing, which could leave stale data from earlier writes. This patch calls clear() before builder.write() to ensure the buffer only contains the current packet contents.
* Add command-line argument parsing and switch config to OnceLockhskim2025-08-232-26/+65
| | | | | | | | | | | This change introduces basic CLI parsing for --delay-ms, --queue-num (Linux only), and -h/--help. A usage() function was added, and error/help output now goes to stdout for consistency. Global constants DELAY_MS and QUEUE_NUM are replaced with OnceLock-based initialization, with helper accessors delay_ms() and queue_num(). The Linux platform code is updated accordingly to use queue_num() instead of a constant.
* Deduplicate CLI argument parsinghskim2025-08-231-7/+22
| | | | | Extracted common args.next() + parse logic into take_value() to remove duplication in --delay-ms and --queue-num handling.
* Implement argument parserhskim2025-08-231-1/+21
|
* Wrap platform dependant main loops to platform::runhskim2025-08-223-66/+77
|
* Fix Message too long warning on send_to_rawdilluti0n2025-08-211-4/+1
|
* Remove unused field PktView.rawdilluti0n2025-08-211-2/+1
|
* Move use derivativesdilluti0n2025-08-211-2/+5
|
* Optimize split_packet to reuse caller-provided bufferdilluti0n2025-08-211-8/+16
| | | | | | | | - Change split_packet to take &mut Vec<u8> instead of returning Vec<u8> - Avoids allocating a new buffer for each split - Reserve additional capacity only when needed - Update handle_packet to reuse a single buffer across multiple calls - Add TODO for reusing IP header without extra copy
* platform: linux: provide more detailed error message for iptableshskim2025-08-201-7/+11
| | | | It was none readable before.. like (Err: No such file)
* Split TLS parsing into tls.rshskim2025-08-202-48/+53
|
* Introduce PktView to remove duplicate packet parsinghskim2025-08-202-14/+27
| | | | | | | - Added new `pkt.rs` with `PktView` struct wrapping `IpSlice` and `TcpSlice` - Updated `split_packet` and `handle_packet` to use `PktView` - Removed repeated calls to `IpSlice::from_slice` / `TcpSlice::from_slice` - Simplifies code and ensures parsing happens only once per packet
* chore: remove unused function get_vector (dead_code)dilluti0n2025-08-061-14/+0
| | | | revert me when use TLSMsg::get_vector
* refactor: add error propagation to send_to_rawdilluti0n2025-08-063-32/+42
| | | | | | | * Extracted: `handle_packet!` macro to deduplicate match logic in both Linux and Windows backend. * Changed: `send_to_raw()` to return Result and propagate errors with `anyhow!`.
* refactor: Unified all error types in the project to anyhow::Errordilluti0n2025-08-063-44/+46
| | | | | | | | Configured incompatible iptables errors to be propagated using map_err into the anyhow type * refactored: split_packet and handle_packet to return Result<> instead of Option<>
* build: add log for non-windows builddilluti0n2025-08-061-0/+1
|
* build: move windows app.manifest to res/app.manifest from build.rsdilluti0n2025-08-061-12/+1
|
* build: use winres to add manifest for windows binarydilluti0n2025-08-064-3/+75
|
* minor: remove handle_msg rapperdilluti0n2025-08-062-22/+19
| | | | | | | modify to have a simmilar flow with windows build * change ordering * debug messages
* minor: move platform-specific codes to seperate filesdilluti0n2025-08-064-205/+209
|
* fix: to use same windivert handle for recv/senddilluti0n2025-08-061-35/+21
| | | | somewhat it works now... why?
* minor: set WINDIVERT_PATH for windows builddilluti0n2025-08-064-1/+6
|
* implement: not-working framework for windowsdilluti0n2025-08-063-8/+58
|
* fix: windows build errorsdilluti0n2025-08-062-8/+16
|
* starting windows implementationdilluti0n2025-07-271-0/+17
|
* refactor: repeated queue number not to use magicdilluti0n2025-07-271-11/+13
|
* refactor: handle_packet to not depend on nfqdilluti0n2025-07-271-27/+34
|
* refactor: move platform-dependent code to mod platformdilluti0n2025-07-273-173/+312
|
* refactor: bootstrap and cleanup to support ip6tablesdilluti0n2025-07-261-6/+26
|