Compare commits
27 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6c4d0246bc | |||
| 1391564ce7 | |||
| d102622e28 | |||
| 1abc17142f | |||
| 059dc2ac75 | |||
| 7cffff0b8b | |||
| d3b4c62f51 | |||
| 2f804ecfdd | |||
| 0c24136052 | |||
| d19fc68803 | |||
| 78876b110e | |||
| 6b7213db5c | |||
| b3a724afc8 | |||
| daf662cc2d | |||
| 98f833980d | |||
| de537810e5 | |||
| 298bfe0d0f | |||
| 604a14f0be | |||
| def58554d9 | |||
| 6f8847899c | |||
| 09454413d4 | |||
| ff189aeef2 | |||
| 298976aefb | |||
| 3b7f97853c | |||
| 8cca891b9a | |||
| 41b624db5a | |||
| 786e686563 |
+7
-4
@@ -58,15 +58,18 @@ endif()
|
|||||||
find_package(OpenSSL REQUIRED)
|
find_package(OpenSSL REQUIRED)
|
||||||
|
|
||||||
file(GLOB SHARED_SRCS "src/shared/*.c")
|
file(GLOB SHARED_SRCS "src/shared/*.c")
|
||||||
|
set(FILE_STORE_SRCS "${CMAKE_CURRENT_SOURCE_DIR}/src/shared/file_store.c")
|
||||||
|
list(REMOVE_ITEM SHARED_SRCS ${FILE_STORE_SRCS})
|
||||||
file(GLOB SERVER_SRCS "src/server/*.c")
|
file(GLOB SERVER_SRCS "src/server/*.c")
|
||||||
|
set(SERVER_RECEIVER_SRCS src/server/receiver.c)
|
||||||
file(GLOB CLIENT_SRCS "src/client/*.c")
|
file(GLOB CLIENT_SRCS "src/client/*.c")
|
||||||
|
|
||||||
# --- Main executables ---
|
# --- Main executables ---
|
||||||
add_executable(server ${SERVER_SRCS} ${SHARED_SRCS})
|
add_executable(server ${SERVER_SRCS} ${SHARED_SRCS} ${FILE_STORE_SRCS})
|
||||||
target_include_directories(server PRIVATE src/shared src/server src/client)
|
target_include_directories(server PRIVATE src/shared src/server src/client)
|
||||||
target_link_libraries(server PRIVATE Threads::Threads ${ZSTD_LIBRARY} OpenSSL::SSL OpenSSL::Crypto xxhash)
|
target_link_libraries(server PRIVATE Threads::Threads ${ZSTD_LIBRARY} OpenSSL::SSL OpenSSL::Crypto xxhash)
|
||||||
|
|
||||||
add_executable(client ${CLIENT_SRCS} ${SHARED_SRCS})
|
add_executable(client ${CLIENT_SRCS} ${SHARED_SRCS} ${FILE_STORE_SRCS} ${SERVER_RECEIVER_SRCS})
|
||||||
target_include_directories(client PRIVATE src/shared src/server src/client)
|
target_include_directories(client PRIVATE src/shared src/server src/client)
|
||||||
target_link_libraries(client PRIVATE Threads::Threads ${ZSTD_LIBRARY} OpenSSL::SSL OpenSSL::Crypto xxhash)
|
target_link_libraries(client PRIVATE Threads::Threads ${ZSTD_LIBRARY} OpenSSL::SSL OpenSSL::Crypto xxhash)
|
||||||
|
|
||||||
@@ -79,7 +82,7 @@ set(TEST_INCLUDES tests src/shared src/server src/client)
|
|||||||
|
|
||||||
# Monolithic test binary (backward compatible)
|
# Monolithic test binary (backward compatible)
|
||||||
file(GLOB TEST_SRCS "tests/test_*.c" "tests/runner.c")
|
file(GLOB TEST_SRCS "tests/test_*.c" "tests/runner.c")
|
||||||
add_executable(tests ${TEST_SRCS} ${SHARED_SRCS} src/client/scanner.c src/client/client_cli.c)
|
add_executable(tests ${TEST_SRCS} ${SHARED_SRCS} ${FILE_STORE_SRCS} ${SERVER_RECEIVER_SRCS} src/client/scanner.c src/client/client_cli.c src/client/client_validation.c src/client/usage.c)
|
||||||
target_include_directories(tests PRIVATE ${TEST_INCLUDES})
|
target_include_directories(tests PRIVATE ${TEST_INCLUDES})
|
||||||
target_compile_definitions(tests PRIVATE FASTSYNC_TEST_BUILD)
|
target_compile_definitions(tests PRIVATE FASTSYNC_TEST_BUILD)
|
||||||
target_link_libraries(tests PRIVATE ${TEST_LIBS})
|
target_link_libraries(tests PRIVATE ${TEST_LIBS})
|
||||||
@@ -94,7 +97,7 @@ if(ENABLE_FUZZ)
|
|||||||
file(GLOB FUZZ_SRCS "tests/fuzz/*.c")
|
file(GLOB FUZZ_SRCS "tests/fuzz/*.c")
|
||||||
foreach(FUZZ_SRC ${FUZZ_SRCS})
|
foreach(FUZZ_SRC ${FUZZ_SRCS})
|
||||||
get_filename_component(FUZZ_NAME ${FUZZ_SRC} NAME_WE)
|
get_filename_component(FUZZ_NAME ${FUZZ_SRC} NAME_WE)
|
||||||
add_executable(${FUZZ_NAME} ${FUZZ_SRC} ${SHARED_SRCS})
|
add_executable(${FUZZ_NAME} ${FUZZ_SRC} ${SHARED_SRCS} ${FILE_STORE_SRCS} ${SERVER_RECEIVER_SRCS})
|
||||||
target_include_directories(${FUZZ_NAME} PRIVATE ${TEST_INCLUDES})
|
target_include_directories(${FUZZ_NAME} PRIVATE ${TEST_INCLUDES})
|
||||||
target_compile_options(${FUZZ_NAME} PRIVATE -fsanitize=fuzzer,address,undefined -fno-omit-frame-pointer)
|
target_compile_options(${FUZZ_NAME} PRIVATE -fsanitize=fuzzer,address,undefined -fno-omit-frame-pointer)
|
||||||
target_link_options(${FUZZ_NAME} PRIVATE -fsanitize=fuzzer,address,undefined)
|
target_link_options(${FUZZ_NAME} PRIVATE -fsanitize=fuzzer,address,undefined)
|
||||||
|
|||||||
@@ -1,103 +1,83 @@
|
|||||||
# FastSync
|
#FastSync
|
||||||
|
|
||||||
A high-performance file synchronization system with SSH and TCP transport, TLS encryption, streaming zstd compression, multithreaded transfer, incremental sync, metadata preservation, and rsync-compatible CLI flags.
|
FastSync is a high-performance file synchronization tool designed to become a
|
||||||
|
drop-in replacement for common `rsync` workflows. It keeps the familiar
|
||||||
|
source/destination model and rsync-style options while adding optional
|
||||||
|
multithreading, streaming zstd compression, chunking, zero-copy TCP transfers,
|
||||||
|
and native TCP/TLS transports.
|
||||||
|
|
||||||
## Technical Overview
|
The compatibility target is straightforward:
|
||||||
|
|
||||||
1. **Dual transport**: custom TCP client-server or SSH subprocess (rsync-style `user@host:/path`)
|
- Existing rsync commands should keep the same meaning.
|
||||||
2. **TLS encryption**: OpenSSL-based TLS 1.2+ for encrypted TCP connections with optional CA verification
|
- FastSync-only performance options should be additive and optional.
|
||||||
3. **Chunked file transfer**: files grouped into configurable-size chunks (default ~10 MB)
|
- A normal compatibility-mode transfer should prioritize rsync filesystem
|
||||||
4. **Streaming zstd compression** (levels 1–22) using `ZSTD_compressStream2`
|
semantics over maximum throughput.
|
||||||
5. **Multithreading**: producer-consumer pipeline with thread-safe queues (scanner → loader → sender)
|
|
||||||
6. **Incremental sync**: skip files unchanged since last transfer (compares size + mtime)
|
|
||||||
7. **Batch incremental**: send incremental checks in batched groups for reduced round-trips
|
|
||||||
8. **Metadata preservation**: file mode and mtime are restored when enabled; ownership and atime are intentionally not restored
|
|
||||||
9. **`sendfile()` zero-copy** on TCP (~2× faster on loopback)
|
|
||||||
10. **SSH ControlMaster** for connection reuse across repeated invocations
|
|
||||||
11. **Bandwidth limiting**: token-bucket throttling (`--bwlimit`)
|
|
||||||
12. **`--delete`**: receiver removes files not present in sender manifest
|
|
||||||
13. **`--exclude` / `--include`**: glob-pattern filename filtering
|
|
||||||
14. **Path traversal protection**: `..` sequences in file paths are rejected automatically
|
|
||||||
15. **Connection limits**: server enforces maximum concurrent connections (default 100)
|
|
||||||
16. **Keep-alive**: periodic `STATUS_KEEPALIVE` messages detect stalled connections
|
|
||||||
17. **Abort handling**: `SIGINT` sends `STATUS_ABORT` for clean server-side teardown
|
|
||||||
18. **Atomic writes**: received files are written to a temporary name then atomically renamed
|
|
||||||
19. **Backup mode**: `--backup` preserves overwritten files with optional `--backup-dir`
|
|
||||||
20. **Log file**: `--log-file` redirects log output to a file instead of stderr
|
|
||||||
21. **Transfer statistics**: `--stats` prints summary of transferred bytes, files, and timing
|
|
||||||
|
|
||||||
## System Architecture
|
FastSync currently speaks its own protocol to `fastsync-server`. SSH mode
|
||||||
|
starts that server remotely; it does not yet interoperate with an unmodified
|
||||||
|
rsync client or rsync daemon. See [Compatibility Status](#compatibility-status)
|
||||||
|
for the current boundary.
|
||||||
|
|
||||||
### Client
|
## Why FastSync
|
||||||
- Recursively scans source directories (BFS), supports exclude and include patterns
|
|
||||||
- Groups files into chunks (configurable size)
|
|
||||||
- Streaming zstd compression with configurable level
|
|
||||||
- Chunk serialization (compact binary format) or per-file transfer
|
|
||||||
- Incremental transfer: sends file metadata to server, skips unchanged files
|
|
||||||
- Batch incremental: groups incremental checks to minimize round-trips
|
|
||||||
- Manifests all sent paths when `--delete` is active
|
|
||||||
- Sends via TCP `sendfile()` or SSH pipe
|
|
||||||
- Optional progress display with throughput
|
|
||||||
- Bandwidth limiting via token-bucket algorithm
|
|
||||||
- Configurable I/O and connection timeouts (`--timeout`, `--contimeout`)
|
|
||||||
- Backup overwritten files (`--backup`) with optional directory (`--backup-dir`)
|
|
||||||
- Transfer statistics summary (`--stats`)
|
|
||||||
- Maximum directory depth control (`--max-depth`)
|
|
||||||
- Log file output (`--log-file`)
|
|
||||||
- Exclude patterns from file (`--exclude-from`)
|
|
||||||
|
|
||||||
### Server
|
FastSync uses a producer-consumer transfer pipeline and can combine several
|
||||||
- TCP mode: listens on configurable port (default 8080); SSH mode: runs via `--stdio`
|
optimizations for large or high-latency transfers:
|
||||||
- TLS mode: wraps TCP connections with OpenSSL with optional CA verification
|
|
||||||
- Receives and reassembles files
|
|
||||||
- Decompresses (streaming zstd), deserializes, restores metadata
|
|
||||||
- Handles incremental checks: compares size + mtime against destination files
|
|
||||||
- Handles batch incremental checks for reduced round-trips
|
|
||||||
- Processes `STATUS_MANIFEST` for `--delete`: walks destination tree, removes extras
|
|
||||||
- Per-connection concurrency via `fork()` with configurable connection limit (default 100)
|
|
||||||
- Thread pool for parallel processing
|
|
||||||
- Atomic writes: files written to `.tmp` path then atomically renamed on success
|
|
||||||
- Abort handling: cleanly shuts down on `STATUS_ABORT` from client
|
|
||||||
- Path traversal protection: rejects file paths containing `..`
|
|
||||||
|
|
||||||
## Protocol Details
|
- Multithreaded scanning, loading, and sending.
|
||||||
|
- Streaming zstd compression with levels 1 through 22.
|
||||||
|
- Configurable file chunking and compact chunk serialization.
|
||||||
|
- `sendfile()` zero-copy transfers over TCP.
|
||||||
|
- Batched incremental checks to reduce round trips.
|
||||||
|
- Optional block-level delta transfer for FastSync peers.
|
||||||
|
- Bandwidth limiting, progress reporting, statistics, and backups.
|
||||||
|
- TCP, SSH, and TLS transports.
|
||||||
|
- Atomic temporary-file writes by default.
|
||||||
|
|
||||||
### Status Codes
|
These optimizations are disabled or selected independently. Users can start
|
||||||
| Code | Meaning |
|
with rsync-style commands and add FastSync options when they are useful.
|
||||||
|------|---------|
|
|
||||||
| `STATUS_OK` | Operation successful |
|
|
||||||
| `STATUS_ERROR` | Error occurred |
|
|
||||||
| `STATUS_FINISHED` | Transfer complete |
|
|
||||||
| `STATUS_NEXT` | Ready for next file (per-file mode) |
|
|
||||||
| `STATUS_CHUNK` | Following data is a serialized chunk |
|
|
||||||
| `STATUS_MANIFEST` | Following data is a file manifest (for `--delete`) |
|
|
||||||
| `STATUS_CHECK` | Incremental check: client sends file path + size + mtime and, when negotiated, checksum; server responds with OK (skip) or NEXT (send) |
|
|
||||||
| `STATUS_CHECK_BATCH` | Batch incremental check: multiple file checks sent in one message |
|
|
||||||
| `STATUS_KEEPALIVE` | Keep-alive heartbeat to detect stalled connections |
|
|
||||||
| `STATUS_ABORT` | Abort signal: client interrupts, server cleans up and exits |
|
|
||||||
| `STATUS_DELTA_SIGNATURE` | Delta sync: following data is a file signature (rsync-style rolling hash) |
|
|
||||||
| `STATUS_DELTA_DATA` | Delta sync: following data is a delta patch for a file |
|
|
||||||
|
|
||||||
### Wire Format — Metadata
|
## Compatibility Status
|
||||||
|
|
||||||
When `use_metadata` is enabled (`-M`), each file entry carries a 4-byte `present` flag followed by five fields (`mode`, `uid`, `gid`, `mtime_sec`, `mtime_nsec`). When disabled globally, no metadata bytes are sent — zero wire overhead.
|
FastSync is currently an rsync-compatible CLI in progress, not a complete
|
||||||
|
replacement for every rsync feature or protocol mode.
|
||||||
|
|
||||||
### Transfer Flow
|
### Working today
|
||||||
```
|
|
||||||
Config → (STATUS_NEXT | STATUS_CHUNK | STATUS_CHECK | STATUS_CHECK_BATCH)* → [STATUS_MANIFEST] → STATUS_FINISHED → STATUS_OK
|
|
||||||
```
|
|
||||||
|
|
||||||
Keep-alive (`STATUS_KEEPALIVE`) may be sent at any point during the transfer. The receiver resets its inactivity timer on receipt. If no data arrives within the receive timeout, the connection is aborted.
|
- Recursive directory scanning.
|
||||||
|
- Rsync-style source and destination arguments.
|
||||||
|
- SSH transport using `user@host:destination` paths below the remote authorized root.
|
||||||
|
- TCP client/server transfers.
|
||||||
|
- Dry runs, excludes, includes, size filters, backups, statistics, and
|
||||||
|
bandwidth limiting.
|
||||||
|
- Incremental size/mtime checks and optional xxHash64 content checks.
|
||||||
|
- FastSync-native delta transfer for changed files.
|
||||||
|
- Optional mode and timestamp preservation.
|
||||||
|
- Delete manifests with server-side delete authorization.
|
||||||
|
- Temporary-file writes with atomic rename by default.
|
||||||
|
- Path traversal checks and destination-root confinement.
|
||||||
|
|
||||||
Abort (`STATUS_ABORT`) may be sent at any point. On receipt the server cleans up temporary files and exits the child process.
|
### Not yet equivalent to rsync
|
||||||
|
|
||||||
### Protocol Version
|
- The FastSync wire protocol is not the rsync wire protocol.
|
||||||
|
- SSH mode requires `fastsync-server` on the remote host.
|
||||||
|
- Archive mode does not yet provide all of rsync's `-rlptgoD` behavior.
|
||||||
|
- Symlink transfer is incomplete; link targets are not yet recreated in all
|
||||||
|
modes.
|
||||||
|
- Owner/group, ACL, xattr, hard-link, device, and special-file handling is
|
||||||
|
incomplete or unavailable.
|
||||||
|
- Sparse-file handling does not yet preserve all holes correctly.
|
||||||
|
- `--partial`, `--partial-dir`, `--append`, and `--append-verify` are not yet
|
||||||
|
full rsync-style resumable transfers.
|
||||||
|
- Several rsync short options currently have FastSync-specific meanings. Do
|
||||||
|
not assume every short option is interchangeable yet.
|
||||||
|
|
||||||
`2.2.0` — server and client must match. This version adds a 64-bit XXH64 checksum to checksum-enabled `STATUS_CHECK` messages and validates the negotiated compression choice (`zstd` or `none`). Older clients and servers must not be mixed with this version; mismatch results in `STATUS_ERROR`.
|
The detailed flag matrix is maintained in
|
||||||
|
[`RSYNC_COMPAT.md`](RSYNC_COMPAT.md). It distinguishes implemented,
|
||||||
|
partial, alternate, and planned behavior.
|
||||||
|
|
||||||
Config negotiation is sender-driven: the client serializes transfer options and the server applies them while receiving and writing files. `--checksum` compares size and content checksum instead of timestamps. `--compress-choice zstd` enables zstd; `none` disables it. Unsupported choices are rejected during config exchange.
|
## Quick Start
|
||||||
|
|
||||||
## Command-Line Arguments
|
### Build
|
||||||
|
|
||||||
### Client
|
### Client
|
||||||
|
|
||||||
@@ -140,6 +120,7 @@ Config negotiation is sender-driven: the client serializes transfer options and
|
|||||||
| `--cert <path>` | TLS certificate file (PEM) |
|
| `--cert <path>` | TLS certificate file (PEM) |
|
||||||
| `--key <path>` | TLS private key file (PEM) |
|
| `--key <path>` | TLS private key file (PEM) |
|
||||||
| `--ca <path>` | TLS CA certificate file for verification (PEM) |
|
| `--ca <path>` | TLS CA certificate file for verification (PEM) |
|
||||||
|
| `--client-cn <name>` | Required TLS client certificate common name |
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
|
|
||||||
@@ -151,6 +132,9 @@ Config negotiation is sender-driven: the client serializes transfer options and
|
|||||||
| `--cert <path>` | TLS certificate file (PEM) |
|
| `--cert <path>` | TLS certificate file (PEM) |
|
||||||
| `--key <path>` | TLS private key file (PEM) |
|
| `--key <path>` | TLS private key file (PEM) |
|
||||||
| `--ca <path>` | TLS CA certificate file for verification (PEM) |
|
| `--ca <path>` | TLS CA certificate file for verification (PEM) |
|
||||||
|
| `--destination-root <path>` | Authorized destination root (default: `.`) |
|
||||||
|
| `--allow-delete` | Permit manifest deletion |
|
||||||
|
| `--allow-unauthenticated` | Permit plaintext TCP clients |
|
||||||
| `-v, --verbose` | Enable debug logging |
|
| `-v, --verbose` | Enable debug logging |
|
||||||
| `--help` | Show help |
|
| `--help` | Show help |
|
||||||
|
|
||||||
@@ -173,26 +157,46 @@ Config negotiation is sender-driven: the client serializes transfer options and
|
|||||||
### Data Structures
|
### Data Structures
|
||||||
1. **Chunk** — collection of files (~10 MB total by default)
|
1. **Chunk** — collection of files (~10 MB total by default)
|
||||||
2. **File** — path, content (`Data`), optional `FileMetadata` pointer
|
2. **File** — path, content (`Data`), optional `FileMetadata` pointer
|
||||||
3. **FileMetadata** — `mode`, `uid`, `gid`, `mtime_sec`, `mtime_nsec`; uid/gid are advisory wire fields and are never applied by the receiver; atime is unsupported
|
3. **FileMetadata** — `mode`, `uid`, `gid`, `mtime_sec`, `mtime_nsec`;
|
||||||
|
uid / gid are advisory wire fields and are never applied by the receiver;
|
||||||
|
atime is unsupported
|
||||||
4. **Config** — runtime parameters (transported over wire, TLS settings excluded). Includes `timeout`, `contimeout`, `quiet`, `backup`, `backup_dir`, `stats`, `max_depth`, `log_file`, `queue_size`.
|
4. **Config** — runtime parameters (transported over wire, TLS settings excluded). Includes `timeout`, `contimeout`, `quiet`, `backup`, `backup_dir`, `stats`, `max_depth`, `log_file`, `queue_size`.
|
||||||
5. **Queue** — thread-safe bounded queue with condition variables
|
5. **Queue** — thread-safe bounded queue with condition variables
|
||||||
6. **DirectoryScanner** — recursive BFS traversal with exclude and include pattern support, max-depth enforcement
|
6. **DirectoryScanner** — recursive BFS traversal with exclude and include pattern support, max-depth enforcement
|
||||||
|
|
||||||
### Key Algorithms
|
### Key Algorithms
|
||||||
1. **File scanning** — BFS directory traversal; entries matched against exclude and include patterns, max-depth enforced
|
1. **File scanning** — BFS directory traversal;
|
||||||
2. **Chunking** — files accumulated until `chunk_size` threshold, then flushed
|
entries matched against exclude and include patterns,
|
||||||
3. **Compression** — streaming zstd via `ZSTD_compressStream2` / `ZSTD_decompressStream`
|
max - depth enforced 2. * *Chunking ** — files accumulated until `chunk_size` threshold,
|
||||||
4. **Network protocol** — status-code-driven exchange with metadata packing, keep-alive, and abort support
|
then flushed 3. *
|
||||||
5. **Incremental check** — client sends `STATUS_CHECK` + path + size + mtime and, with `--checksum`, XXH64 content checksum; server compares against destination. Can be batched via `STATUS_CHECK_BATCH` for reduced round-trips.
|
*Compression ** — streaming zstd
|
||||||
|
via `ZSTD_compressStream2` / `ZSTD_decompressStream` 4. *
|
||||||
|
*Network protocol ** — status -
|
||||||
|
code - driven exchange with metadata packing,
|
||||||
|
keep - alive,
|
||||||
|
and abort support 5. * *Incremental check ** — client sends `STATUS_CHECK` + path + size +
|
||||||
|
mtime and,
|
||||||
|
with `--checksum`, XXH64 content checksum; server compares against destination. Can be batched via `STATUS_CHECK_BATCH` for reduced round-trips.
|
||||||
6. **Bandwidth limiting** — token-bucket algorithm with `nanosleep` throttling on 64 KB write chunks
|
6. **Bandwidth limiting** — token-bucket algorithm with `nanosleep` throttling on 64 KB write chunks
|
||||||
7. **Metadata restoration** — `chmod()`, `chown()`, `utimensat()` on the receiving side
|
7. **Metadata restoration** — `chmod()`, `chown()`, `utimensat()` on the receiving side
|
||||||
8. **`--delete`** — sender tracks all sent paths; receiver walks destination tree and removes unlisted files/directories
|
8. **`--delete`** — sender tracks all sent paths;
|
||||||
9. **SSH transport** — `socketpair()` + `fork()` + `execvp("ssh", ...)` with `ControlMaster` and port support
|
receiver walks destination tree and removes unlisted files / directories 9. *
|
||||||
10. **TLS transport** — OpenSSL `SSL_CTX` with TLS 1.2 minimum, optional CA verification, transparent `SSL_read`/`SSL_write` via `io_set_ssl()`
|
*SSH transport *
|
||||||
11. **Path traversal protection** — `has_path_traversal()` rejects any file path containing `..` components, preventing directory escape attacks
|
* — `socketpair()` + `fork()` + `execvp("ssh",
|
||||||
12. **Connection limiting** — server tracks active connections and rejects new ones beyond `max_connections` (default 100)
|
...)` with `ControlMaster` and port support
|
||||||
13. **Keep-alive** — idle connections receive periodic `STATUS_KEEPALIVE` to detect half-open TCP connections
|
10. *
|
||||||
14. **Abort handling** — `SIGINT` sets an abort flag; the next protocol operation sends `STATUS_ABORT` for clean server cleanup
|
*TLS transport ** — OpenSSL `SSL_CTX` with TLS
|
||||||
|
1.2 minimum,
|
||||||
|
mutual CA verification,
|
||||||
|
transparent `SSL_read`/`SSL_write` via `io_set_ssl()` 11. *
|
||||||
|
*Path traversal protection ** — `has_path_traversal()` rejects any file path
|
||||||
|
containing `..` components,
|
||||||
|
preventing directory escape attacks 12. *
|
||||||
|
*Connection limiting ** — server tracks active connections and rejects
|
||||||
|
new ones beyond `max_connections` (default 100)13. *
|
||||||
|
*Keep
|
||||||
|
- alive ** — idle connections receive periodic `STATUS_KEEPALIVE` to detect half
|
||||||
|
- open TCP connections 14. * *Abort handling ** — `SIGINT` sets an abort flag; the next protocol operation sends `STATUS_ABORT` for clean server cleanup
|
||||||
15. **Atomic writes** — files are written to a `.tmp` suffix then atomically renamed via `rename()`, preventing partial files
|
15. **Atomic writes** — files are written to a `.tmp` suffix then atomically renamed via `rename()`, preventing partial files
|
||||||
16. **Backup** — before overwriting, existing files are moved to `--backup-dir` (or same directory with `~` suffix) preserving the original
|
16. **Backup** — before overwriting, existing files are moved to `--backup-dir` (or same directory with `~` suffix) preserving the original
|
||||||
|
|
||||||
@@ -202,7 +206,7 @@ Config negotiation is sender-driven: the client serializes transfer options and
|
|||||||
All received file paths are validated by `has_path_traversal()` before any disk operation. Any path containing `..` components is rejected with `STATUS_ERROR`, preventing directory escape attacks.
|
All received file paths are validated by `has_path_traversal()` before any disk operation. Any path containing `..` components is rejected with `STATUS_ERROR`, preventing directory escape attacks.
|
||||||
|
|
||||||
### TLS Certificate Verification
|
### TLS Certificate Verification
|
||||||
When `--ca` is provided, the server performs mutual TLS verification (`SSL_VERIFY_PEER` with depth 4). Without `--ca`, TLS is still encrypted but peer certificates are not verified.
|
TLS requires `--ca` and performs mutual TLS verification (`SSL_VERIFY_PEER` with depth 4). Connections without certificate verification are rejected.
|
||||||
|
|
||||||
### Connection Limits
|
### Connection Limits
|
||||||
The server enforces a maximum of 100 concurrent connections (configurable via `max_connections` in `Server`). When the limit is reached, new connections are immediately rejected and closed.
|
The server enforces a maximum of 100 concurrent connections (configurable via `max_connections` in `Server`). When the limit is reached, new connections are immediately rejected and closed.
|
||||||
@@ -237,127 +241,305 @@ nix-shell # provides zstd, openssl, cmake, gcc
|
|||||||
## Building
|
## Building
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cmake -B build -S . && cmake --build build -j$(nproc)
|
cmake -B build -S .
|
||||||
|
cmake --build build -j$(nproc)
|
||||||
```
|
```
|
||||||
|
|
||||||
## Running
|
With Nix:
|
||||||
|
|
||||||
### Server (TCP mode)
|
|
||||||
```bash
|
```bash
|
||||||
./build/server
|
nix-shell
|
||||||
|
cmake -B build -S .
|
||||||
|
cmake --build build -j$(nproc)
|
||||||
```
|
```
|
||||||
|
|
||||||
### Server with TLS
|
### SSH transfer
|
||||||
|
|
||||||
|
The remote host must have `fastsync-server` available in `PATH`, or use
|
||||||
|
`--fastsync-server-path`. SSH starts `fastsync-server --stdio` in its remote
|
||||||
|
working directory, so use a destination below that directory unless the
|
||||||
|
remote server is otherwise configured with a matching authorized root.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
./build/server --tls --cert server.pem --key server-key.pem
|
ssh user@host 'mkdir -p destination'
|
||||||
|
./build/client /path/to/source user@host:destination
|
||||||
```
|
```
|
||||||
|
|
||||||
### Server via SSH
|
### TCP transfer
|
||||||
Place the `fastsync-server` binary in the remote `$PATH`. The client runs `ssh user@host fastsync-server --stdio` automatically when an SSH-style destination is given.
|
|
||||||
|
Start the FastSync server:
|
||||||
|
|
||||||
### Client — SSH (rsync-style)
|
|
||||||
```bash
|
```bash
|
||||||
./build/client /path/to/send user@host:/path/to/receive
|
./build/server --destination-root /path/to -p 8080
|
||||||
```
|
```
|
||||||
|
|
||||||
### Client — TCP
|
Then run the client:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
./build/client --source-dir /path/to/send --dest-dir /path/to/receive --save-to-disk
|
./build/client --server-host 127.0.0.1 --server-port 8080 \
|
||||||
|
--source-dir /path/to/source --dest-dir /path/to/destination \
|
||||||
|
--save-to-disk
|
||||||
```
|
```
|
||||||
|
|
||||||
### Client — TCP with TLS
|
Plain TCP requires the explicit `--allow-unauthenticated` server option. Use TLS for
|
||||||
|
authenticated network connections.
|
||||||
|
|
||||||
|
### TLS transfer
|
||||||
```bash
|
```bash
|
||||||
|
./build/server --destination-root /path/to --tls --cert server.pem --key server-key.pem -p 8443
|
||||||
./build/client --tls --cert client.pem --key client-key.pem --ca ca.pem \
|
./build/client --tls --cert client.pem --key client-key.pem --ca ca.pem \
|
||||||
--source-dir /path/to/send --dest-dir /path/to/receive --save-to-disk
|
--server-host example.com --server-port 8443 \
|
||||||
|
--source-dir /path/to/source --dest-dir /path/to/destination \
|
||||||
|
--save-to-disk
|
||||||
```
|
```
|
||||||
|
|
||||||
### Common Options
|
## Common Workflows
|
||||||
|
|
||||||
|
These examples show the intended rsync-style workflow. Options marked as
|
||||||
|
FastSync-native are optional performance or transport extensions.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Archive mode (compression + multithreading + metadata)
|
#Basic synchronization
|
||||||
./build/client -a /path/to/send user@host:/path
|
./build/client /source/ /destination/
|
||||||
|
|
||||||
# Dry run
|
#Archive - style synchronization(current FastSync archive behavior)
|
||||||
./build/client -n /path/to/send /path/to/receive
|
./build/client -a /source/ user@host:destination/
|
||||||
|
|
||||||
# With progress and custom chunk size
|
#Preview a transfer without changing the destination
|
||||||
./build/client --progress --chunk-size 2097152 /src user@host:/dst
|
./build/client -n /source/ /destination/
|
||||||
|
|
||||||
# Exclude temporary files + delete extras on receiver
|
#Exclude temporary and object files
|
||||||
./build/client --exclude "*.tmp" --exclude "*.o" --delete /src user@host:/dst
|
./build/client --exclude '*.tmp' --exclude '*.o' \
|
||||||
|
/source/ user@host:destination/
|
||||||
|
|
||||||
# Incremental sync (skip unchanged files)
|
#Remove destination entries not present in the source
|
||||||
./build/client --incremental /src user@host:/dst
|
./build/client --delete /source/ user@host:destination/
|
||||||
|
|
||||||
# Bandwidth limit to 1 MB/s
|
#Skip unchanged files using size and modification time
|
||||||
./build/client --bwlimit 1024 /src user@host:/dst
|
./build/client --incremental /source/ user@host:destination/
|
||||||
|
|
||||||
# With timeouts and stats
|
#Verify content when size and time are not sufficient
|
||||||
./build/client --timeout 60 --contimeout 15 --stats /src user@host:/dst
|
./build/client --incremental --checksum /source/ user@host:destination/
|
||||||
|
|
||||||
# Backup overwritten files to a directory
|
#Preserve supported mode and timestamp metadata
|
||||||
./build/client --backup --backup-dir /backups /src user@host:/dst
|
./build/client -M /source/ user@host:destination/
|
||||||
|
|
||||||
# Exclude patterns from file, limit depth
|
#Keep backups of overwritten destination files
|
||||||
./build/client --exclude-from ignore.txt --max-depth 3 /src user@host:/dst
|
./build/client --backup --backup-dir backups \
|
||||||
|
/source/ user@host:destination/
|
||||||
# Log to file
|
|
||||||
./build/client --log-file /tmp/fastsync.log /src user@host:/dst
|
|
||||||
|
|
||||||
# All features
|
|
||||||
./build/client -a --progress --chunk-size 5242880 --exclude "*.log" --delete /src /dst
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## FastSync Extensions
|
||||||
|
|
||||||
|
FastSync-native options are intended to add performance or operational
|
||||||
|
features without changing the meaning of ordinary compatibility options.
|
||||||
|
|
||||||
|
| Option | Purpose |
|
||||||
|
|---|---|
|
||||||
|
| `-m` | Enable the multithreaded scanner/loader/sender pipeline. |
|
||||||
|
| `-c [level]`, `-z [level]` | Enable streaming zstd compression, levels 1-22. |
|
||||||
|
| `--compress-level <n>` | Set the zstd compression level. |
|
||||||
|
| `--chunk-size <bytes>` | Set the transfer chunk size. |
|
||||||
|
| `-s` | Enable FastSync chunk serialization. |
|
||||||
|
| `-f`, `--sendfile` | Use TCP `sendfile()` zero-copy transfer. Incompatible with compression and chunk serialization. |
|
||||||
|
| `--delta` | Use FastSync-native block delta transfer. Requires `--incremental`. |
|
||||||
|
| `--delta-block <bytes>` | Set the FastSync delta block size. |
|
||||||
|
| `--delta-max <bytes>` | Limit files eligible for FastSync delta transfer. |
|
||||||
|
| `--server-host <host>` | Select the TCP server host. |
|
||||||
|
| `--server-port <port>` | Select the TCP server port. |
|
||||||
|
| `--tls` | Enable TLS for TCP transport. |
|
||||||
|
| `--bwlimit <KB/s>` | Apply token-bucket bandwidth limiting. |
|
||||||
|
| `--progress` | Show transfer progress and throughput. |
|
||||||
|
| `--stats` | Print transfer statistics. |
|
||||||
|
| `--timeout <seconds>` | Set I/O timeout. |
|
||||||
|
| `--contimeout <seconds>` | Set connection timeout. |
|
||||||
|
|
||||||
|
Current short-option conflicts are tracked as compatibility work. In
|
||||||
|
particular, FastSync currently uses `-p` for SSH port, `-s` for chunk
|
||||||
|
serialization, and `-S` for sparse handling. These meanings must be reconciled
|
||||||
|
before FastSync can claim full rsync CLI compatibility.
|
||||||
|
|
||||||
|
## Client Options
|
||||||
|
|
||||||
|
### Selection and transfer
|
||||||
|
|
||||||
|
| Option | Description |
|
||||||
|
|---|---|
|
||||||
|
| `-a`, `--archive` | Enable current archive preset. Full rsync archive semantics are planned. |
|
||||||
|
| `-n`, `--dry-run` | Scan and report without writing files. |
|
||||||
|
| `--delete` | Request removal of destination entries absent from the source. The server must allow deletion. |
|
||||||
|
| `--exclude <pattern>` | Exclude matching paths. Repeatable. |
|
||||||
|
| `--include <pattern>` | Include matching paths. Repeatable. |
|
||||||
|
| `--exclude-from <file>` | Read exclude patterns from a file. |
|
||||||
|
| `--include-from <file>` | Read include patterns from a file. |
|
||||||
|
| `--max-size <bytes>` | Skip files larger than the limit. |
|
||||||
|
| `--min-size <bytes>` | Skip files smaller than the limit. |
|
||||||
|
| `--max-depth <n>` | Limit recursive scanning depth;
|
||||||
|
zero means unlimited.| | `--incremental` | Skip files matching destination size and mtime.|
|
||||||
|
| `--checksum` | Include xxHash64 content checks in incremental comparisons.| | `--backup` |
|
||||||
|
Back up overwritten files.| | `--backup - dir<dir>` | Store backups under a separate directory.|
|
||||||
|
| `--suffix<suffix>` | Set the backup filename suffix.| | `--partial` |
|
||||||
|
Select partial - transfer handling.With `--partial - dir`,
|
||||||
|
completed files are written there;
|
||||||
|
resumable transfers are not implemented.| | `--partial - dir<dir>` |
|
||||||
|
Set a relative partial - transfer directory below the server destination root;
|
||||||
|
use with `--partial`. |
|
||||||
|
| `--inplace` | Write directly to the destination instead of using a temporary file. |
|
||||||
|
|
||||||
|
### Metadata and links
|
||||||
|
|
||||||
|
| Option | Description |
|
||||||
|
|---|---|
|
||||||
|
| `-M`, `--preserve` | Preserve supported file metadata, currently mode and modification time. |
|
||||||
|
| `-l`, `--links` | Request symlink preservation;
|
||||||
|
link-target transfer remains incomplete. |
|
||||||
|
| `--copy-links` | Copy symlink referents. |
|
||||||
|
| `--safe-links` | Skip symlinks that point outside the transfer tree. |
|
||||||
|
| `--copy-unsafe-links` | Copy unsafe symlink referents. |
|
||||||
|
| `-S`, `--sparse` | Request sparse-file handling; full hole preservation is planned. |
|
||||||
|
|
||||||
|
### Output and logging
|
||||||
|
|
||||||
|
| Option | Description |
|
||||||
|
|---|---|
|
||||||
|
| `-v`, `--verbose` | Enable debug logging. |
|
||||||
|
| `--progress` | Show live transfer progress. |
|
||||||
|
| `--stats` | Print transfer statistics. |
|
||||||
|
| `--log-file <path>` | Write log output to a file. |
|
||||||
|
| `-V`, `--version` | Print the FastSync protocol version. |
|
||||||
|
| `--help` | Print command usage. |
|
||||||
|
|
||||||
|
### Paths and transport
|
||||||
|
|
||||||
|
| Option | Description |
|
||||||
|
|---|---|
|
||||||
|
| `-p <port>` | SSH port in the current CLI. This conflicts with rsync's `-p` permissions option and is planned for correction. |
|
||||||
|
| `--fastsync-server-path <path>` | Remote FastSync server path for SSH mode. |
|
||||||
|
| `--source-dir <path>` | Set the source directory explicitly. |
|
||||||
|
| `--dest-dir <path>` | Set the destination directory explicitly. |
|
||||||
|
| `--save-to-disk` | Enable server-side disk persistence. |
|
||||||
|
| `--server-host <host>` | TCP server address. |
|
||||||
|
| `--server-port <port>` | TCP server port. |
|
||||||
|
| `--tls` | Enable TLS. Requires `--cert` and `--key`. |
|
||||||
|
| `--cert <path>` | TLS certificate file. |
|
||||||
|
| `--key <path>` | TLS private key file. |
|
||||||
|
| `--ca <path>` | CA file for peer verification. |
|
||||||
|
|
||||||
|
## Server Options
|
||||||
|
|
||||||
|
| Option | Description |
|
||||||
|
|---|---|
|
||||||
|
| `--stdio` | Serve one SSH connection over standard input/output. |
|
||||||
|
| `-p <port>` | TCP listen port. |
|
||||||
|
| `--tls` | Enable TLS. |
|
||||||
|
| `--cert <path>` | TLS certificate file. |
|
||||||
|
| `--key <path>` | TLS private key file. |
|
||||||
|
| `--ca <path>` | CA file for peer verification. |
|
||||||
|
| `--destination-root <path>` | Confine received files to this server-side root;
|
||||||
|
defaults to the current directory. |
|
||||||
|
| `--allow-delete` | Permit client delete manifests. Deletion is refused by default. |
|
||||||
|
| `-v`, `--verbose` | Enable debug logging. |
|
||||||
|
| `--help` | Print server usage. |
|
||||||
|
|
||||||
|
## Architecture
|
||||||
|
|
||||||
|
### Client
|
||||||
|
|
||||||
|
- Recursively scans the source tree with include, exclude, size, and depth
|
||||||
|
filters.
|
||||||
|
- Sends individual files or serialized chunks.
|
||||||
|
- Performs incremental checks and optional content checksums.
|
||||||
|
- Uses a multithreaded producer-consumer pipeline when requested.
|
||||||
|
- Sends over TCP, TLS-wrapped TCP, or an SSH subprocess.
|
||||||
|
- Supports progress, statistics, backups, timeouts, and bandwidth limiting.
|
||||||
|
|
||||||
|
### Server
|
||||||
|
|
||||||
|
- Runs as a TCP listener or one-shot SSH `--stdio` server.
|
||||||
|
- Receives and reassembles files and decompresses streaming zstd data.
|
||||||
|
- Applies supported metadata and writes files through a confined destination
|
||||||
|
root.
|
||||||
|
- Uses temporary files and atomic rename by default.
|
||||||
|
- Handles delete manifests only when explicitly authorized.
|
||||||
|
- Enforces connection, message-size, and path-safety limits.
|
||||||
|
|
||||||
|
## Protocol and Security
|
||||||
|
|
||||||
|
FastSync protocol version `2.2.0` is shared by the client and server. The
|
||||||
|
current protocol is sender-driven and includes configuration negotiation,
|
||||||
|
incremental checks, checksums, manifests, keep-alives, abort handling, and
|
||||||
|
FastSync-native delta messages. Client and server versions must currently
|
||||||
|
match exactly.
|
||||||
|
|
||||||
|
TLS provides encrypted TCP transport. Supplying `--ca` enables certificate
|
||||||
|
verification; without it, traffic is encrypted but peer identity is not
|
||||||
|
verified. Use certificate verification for deployments where authentication
|
||||||
|
matters. The default TCP transport is not encrypted.
|
||||||
|
|
||||||
|
The receiver protects its destination root with path validation, `openat()`
|
||||||
|
directory traversal, `O_NOFOLLOW`, temporary files, and atomic renames. Delete
|
||||||
|
operations require the server's explicit `--allow-delete` policy.
|
||||||
|
|
||||||
|
## Compatibility Roadmap
|
||||||
|
|
||||||
|
The project will reach the drop-in replacement goal in stages:
|
||||||
|
|
||||||
|
1. Correct rsync option meanings, including short options, combined options,
|
||||||
|
and `--option=value` syntax.
|
||||||
|
2. Add differential tests that compare FastSync and rsync contents, metadata,
|
||||||
|
links, deletes, filters, dry runs, and exit codes.
|
||||||
|
3. Make `-a` implement the expected recursive, links, permissions, times,
|
||||||
|
owner/group, and supported special-file behavior.
|
||||||
|
4. Complete symlink, sparse-file, metadata, delete-policy, and resumable-write
|
||||||
|
semantics.
|
||||||
|
5. Add rsync remote-shell and daemon protocol interoperability.
|
||||||
|
6. Keep FastSync performance options as negotiated, optional extensions.
|
||||||
|
|
||||||
|
The exhaustive implementation matrix and compatibility notes are in
|
||||||
|
[`RSYNC_COMPAT.md`](RSYNC_COMPAT.md).
|
||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|
||||||
```bash
|
Run the unit test binary:
|
||||||
# Unit tests (18 suites — array_list, chunk, compression, config, data, delta, file, glob,
|
|
||||||
# metadata, property, protocol, queue, robustness, scanner,
|
|
||||||
# shared_utils, stress, transport_tcp, transport_ssh, transport_tls)
|
|
||||||
./build/tests
|
|
||||||
|
|
||||||
# Integration + benchmark suite
|
```bash
|
||||||
python3 test.py
|
./build/tests
|
||||||
```
|
```
|
||||||
|
|
||||||
The benchmark prints throughput metrics, best configuration, and speedup vs rsync.
|
Run the Python integration suite:
|
||||||
|
|
||||||
## Performance Considerations
|
```bash
|
||||||
|
python3 -m pytest tests/
|
||||||
|
```
|
||||||
|
|
||||||
1. Chunk size (~10 MB default) balances memory and transfer efficiency
|
For stricter local validation:
|
||||||
2. Compression level trades CPU for bandwidth
|
|
||||||
3. `sendfile()` bypasses userspace — ~2× faster on localhost for large files
|
|
||||||
4. Multithreading scales with core count and uses memory-based pipeline sizing
|
|
||||||
5. Metadata transfer adds negligible overhead (~24 bytes per file when enabled)
|
|
||||||
6. SSH socketpair buffer set to 1 MB for improved pipe throughput
|
|
||||||
7. SSH ControlMaster reuses connections across repeated invocations
|
|
||||||
8. Incremental sync eliminates redundant transfers entirely
|
|
||||||
9. Batch incremental reduces round-trips by grouping multiple checks into one message
|
|
||||||
10. Bandwidth limiting uses token-bucket with nanosleep for accurate throttling
|
|
||||||
11. Atomic writes add a single `rename()` per file — negligible overhead
|
|
||||||
12. Path traversal check is O(n) in path length with negligible cost
|
|
||||||
|
|
||||||
## Benchmark Results
|
```bash
|
||||||
|
cmake -B build-strict -S . -DSTRICT_WARNINGS=ON
|
||||||
|
cmake --build build-strict -j$(nproc)
|
||||||
|
cmake -B build-asan -S . -DSANITIZER=address
|
||||||
|
cmake --build build-asan -j$(nproc)
|
||||||
|
```
|
||||||
|
|
||||||
25 MB of mixed file sizes over `localhost` with disk I/O throttled (reads ≤ 15 MB/s, writes ≤ 10 MB/s) and network emulation via `tc netem`. Each test was run 3×; the median is reported below.
|
The benchmark tool compares FastSync configurations with rsync under
|
||||||
|
controlled local and network conditions:
|
||||||
|
|
||||||
### LAN (1000 Mbit, 20 ms ±1 ms, 0.1% loss)
|
```bash
|
||||||
|
python3 benchmark/bench.py --help
|
||||||
|
```
|
||||||
|
|
||||||
| Configuration | Time | vs rsync (archive) | vs rsync (compress) |
|
Benchmark results measure transfer performance only. They do not establish
|
||||||
|---|---|---|---|
|
rsync protocol or filesystem-semantic compatibility.
|
||||||
| **Best: `-m -c`** | **0.20 s** | **11.2× faster** | **3.6× faster** |
|
|
||||||
| Compression (`-c`) | 0.31 s | 7.3× faster | 2.3× faster |
|
|
||||||
| Standard | 1.27 s | 1.8× faster | — |
|
|
||||||
| rsync (archive) | 2.27 s | — | — |
|
|
||||||
| rsync (archive + compress) | 0.72 s | — | — |
|
|
||||||
|
|
||||||
### WAN (100 Mbit, 50 ms ±10 ms, 1% loss)
|
## Performance Guidance
|
||||||
|
|
||||||
| Configuration | Time | vs rsync (archive) | vs rsync (compress) |
|
- Use `-m` for workloads with many files or enough CPU parallelism.
|
||||||
|---|---|---|---|
|
- Use `-c` or `-z` when network bandwidth is more constrained than CPU.
|
||||||
| **Best: `-m -c`** | **0.39 s** | **44.8× faster** | **3.8× faster** |
|
- Tune `--chunk-size` for file sizes, memory limits, and network latency.
|
||||||
| Compression (`-c`) | 0.64 s | 27.3× faster | 2.3× faster |
|
- Use `-f` for large uncompressed TCP transfers where zero-copy I/O helps.
|
||||||
| Standard | 7.12 s | 2.4× faster | — |
|
- Use `--incremental` to avoid retransmitting unchanged files.
|
||||||
| rsync (archive) | 17.44 s | — | — |
|
- Use `--delta` for changed files when both endpoints are FastSync peers.
|
||||||
| rsync (archive + compress) | 1.47 s | — | — |
|
- Use `--bwlimit` when sharing a link with other traffic.
|
||||||
|
|
||||||
Compression reduces the data on the wire enough that the transfer becomes latency-bound rather than bandwidth-bound. On WAN, the best configuration runs 10.8× faster than the theoretical limit for uncompressed data, since zstd shrinks the 25 MB payload to a fraction of its original size over the wire.
|
Always validate the compatibility behavior required by a deployment before
|
||||||
|
replacing an existing rsync job.
|
||||||
|
|||||||
+2
-2
@@ -152,14 +152,14 @@ This document maps rsync's full feature set to FastSync's current implementation
|
|||||||
|
|
||||||
| Flag | Rsync Description | FastSync Status | Notes |
|
| Flag | Rsync Description | FastSync Status | Notes |
|
||||||
|------|-------------------|-----------------|-------|
|
|------|-------------------|-----------------|-------|
|
||||||
| `-S`, `--sparse` | Sparse block handling | ✅ Implemented | `preserve_sparse` config field |
|
| `-S`, `--sparse` | Sparse block handling | ⚠️ Partial | Flag is accepted, but full hole preservation is not implemented |
|
||||||
| `--preallocate` | Allocate dest files before writing | ❌ Not Implemented | |
|
| `--preallocate` | Allocate dest files before writing | ❌ Not Implemented | |
|
||||||
|
|
||||||
## 11. Checksum & Comparison
|
## 11. Checksum & Comparison
|
||||||
|
|
||||||
| Flag | Rsync Description | FastSync Status | Notes |
|
| Flag | Rsync Description | FastSync Status | Notes |
|
||||||
|------|-------------------|-----------------|-------|
|
|------|-------------------|-----------------|-------|
|
||||||
| `--checksum` | Skip based on checksum | ❌ Not Implemented | Removed because it had no effect; `-c` means compression |
|
| `--checksum` | Skip based on checksum | ✅ Implemented | With `--incremental`, compares xxHash64 content checksums; `-c` remains compression |
|
||||||
| `--checksum-choice=STR` | Choose checksum algorithm | ❌ Not Implemented | xxHash used internally |
|
| `--checksum-choice=STR` | Choose checksum algorithm | ❌ Not Implemented | xxHash used internally |
|
||||||
| `--compare-dest=DIR` | Compare dest files relative to DIR | ❌ Not Implemented | Removed because it had no effect |
|
| `--compare-dest=DIR` | Compare dest files relative to DIR | ❌ Not Implemented | Removed because it had no effect |
|
||||||
| `--copy-dest=DIR` | Include copies of unchanged files | ❌ Not Implemented | Removed because it had no effect |
|
| `--copy-dest=DIR` | Include copies of unchanged files | ❌ Not Implemented | Removed because it had no effect |
|
||||||
|
|||||||
+3
-56
@@ -1,10 +1,12 @@
|
|||||||
#include "client_send.h"
|
#include "client_send.h"
|
||||||
|
#include "client_validation.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "delta.h"
|
#include "delta.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "protocol.h"
|
#include "protocol.h"
|
||||||
#include "transport_tcp.h"
|
#include "transport_tcp.h"
|
||||||
#include "transport_tls.h"
|
#include "transport_tls.h"
|
||||||
|
#include "usage.h"
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
@@ -12,7 +14,6 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "usage.c"
|
|
||||||
|
|
||||||
#ifndef FASTSYNC_TEST_BUILD
|
#ifndef FASTSYNC_TEST_BUILD
|
||||||
/* Parse environment variables for source/destination directories and save-to-disk flag. */
|
/* Parse environment variables for source/destination directories and save-to-disk flag. */
|
||||||
@@ -360,55 +361,6 @@ int parse_args(Config* config, int argc, char* argv[], int* positional_args,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef FASTSYNC_TEST_BUILD
|
|
||||||
/* Validate config after parsing. Returns true if valid. */
|
|
||||||
static bool validate_config(const Config* config) {
|
|
||||||
if (!config->send_directory || !config->receive_root_directory) {
|
|
||||||
fprintf(stderr, "Error: source and destination directories are required\n");
|
|
||||||
print_usage();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (config->use_sendfile && (config->use_chunk_serialization || config->use_compression)) {
|
|
||||||
fprintf(stderr, "Error: -f/--sendfile cannot be combined with -c (compression) or -s (chunk "
|
|
||||||
"serialization)\n");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (config->transport == TRANSPORT_SSH && config->use_sendfile) {
|
|
||||||
fprintf(stderr, "Error: -f/--sendfile is not supported with SSH transport\n");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (config->use_incremental && config->use_chunk_serialization) {
|
|
||||||
fprintf(stderr, "Error: --incremental is not supported with -s (chunk serialization)\n");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (config->use_delta && !config->use_incremental) {
|
|
||||||
fprintf(stderr, "Error: --delta requires --incremental\n");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (config->use_delta && config->use_chunk_serialization) {
|
|
||||||
fprintf(stderr, "Error: --delta cannot be combined with -s (chunk serialization)\n");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (config->use_delta && config->use_sendfile) {
|
|
||||||
fprintf(stderr, "Error: --delta cannot be combined with -f (sendfile)\n");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (config->append || config->append_verify) {
|
|
||||||
fprintf(
|
|
||||||
stderr,
|
|
||||||
"Error: --append and --append-verify are not supported yet; refusing to ignore option\n");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (config->use_tls) {
|
|
||||||
if (!config->tls_cert || !config->tls_key) {
|
|
||||||
fprintf(stderr, "Error: --tls requires --cert and --key\n");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
#endif /* FASTSYNC_TEST_BUILD */
|
|
||||||
|
|
||||||
static int read_patterns_from_file(const char* filepath, char*** patterns, int* count) {
|
static int read_patterns_from_file(const char* filepath, char*** patterns, int* count) {
|
||||||
FILE* fp = fopen(filepath, "r");
|
FILE* fp = fopen(filepath, "r");
|
||||||
if (!fp) {
|
if (!fp) {
|
||||||
@@ -459,7 +411,6 @@ int main(int argc, char* argv[]) {
|
|||||||
parse_environment(&env_source, &env_dest, &save_to_disk);
|
parse_environment(&env_source, &env_dest, &save_to_disk);
|
||||||
|
|
||||||
int exit_code = 0;
|
int exit_code = 0;
|
||||||
bool config_owned_by_pipeline = false;
|
|
||||||
Config* config = config_create();
|
Config* config = config_create();
|
||||||
if (!config) {
|
if (!config) {
|
||||||
fprintf(stderr, "Error: failed to allocate config\n");
|
fprintf(stderr, "Error: failed to allocate config\n");
|
||||||
@@ -542,17 +493,13 @@ int main(int argc, char* argv[]) {
|
|||||||
|
|
||||||
/* Execute transfer */
|
/* Execute transfer */
|
||||||
if (config->use_multithreading) {
|
if (config->use_multithreading) {
|
||||||
config_owned_by_pipeline = true;
|
exit_code = send_files_multithreaded(&config);
|
||||||
exit_code = send_files_multithreaded(config);
|
|
||||||
} else {
|
} else {
|
||||||
exit_code = send_files(config);
|
exit_code = send_files(config);
|
||||||
}
|
}
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
if (config) {
|
if (config) {
|
||||||
if (config->log_file)
|
|
||||||
fclose(config->log_file);
|
|
||||||
if (!config_owned_by_pipeline)
|
|
||||||
config_delete(config);
|
config_delete(config);
|
||||||
}
|
}
|
||||||
return exit_code;
|
return exit_code;
|
||||||
|
|||||||
+182
-175
@@ -28,6 +28,88 @@
|
|||||||
/* Forward declaration for progress-reporting thread used in multithreaded send. */
|
/* Forward declaration for progress-reporting thread used in multithreaded send. */
|
||||||
static int progress_thread_fn(void* arg);
|
static int progress_thread_fn(void* arg);
|
||||||
|
|
||||||
|
static ScannerOptions scanner_options_from_config(const Config* config, int num_threads) {
|
||||||
|
ScannerOptions options = {
|
||||||
|
config->use_metadata, config->chunk_size, config->exclude_patterns,
|
||||||
|
config->exclude_count, config->include_patterns, config->include_count,
|
||||||
|
config->max_size, config->min_size, config->max_depth,
|
||||||
|
num_threads, config->follow_symlinks, config->copy_links,
|
||||||
|
config->safe_links, config->copy_unsafe_links, config->checksum};
|
||||||
|
return options;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Select the configured transport for both transfer execution paths. */
|
||||||
|
static Client* connect_transfer_client(const Config* config) {
|
||||||
|
if (config->transport == TRANSPORT_SSH) {
|
||||||
|
if (config->use_sendfile) {
|
||||||
|
fprintf(stderr, "Error: -f/--sendfile is not supported with SSH transport\n");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
return client_connect_ssh(config->ssh_destination, config->ssh_port,
|
||||||
|
config->fastsync_server_path);
|
||||||
|
}
|
||||||
|
|
||||||
|
Client* client = client_create();
|
||||||
|
if (!client)
|
||||||
|
return NULL;
|
||||||
|
bool connected;
|
||||||
|
if (config->use_tls) {
|
||||||
|
connected = client_connect_tls(client, config->server_host, config->server_port,
|
||||||
|
config->tls_cert, config->tls_key, config->tls_ca);
|
||||||
|
} else {
|
||||||
|
connected = client_connect(client, config->server_host, config->server_port);
|
||||||
|
}
|
||||||
|
if (!connected) {
|
||||||
|
client_disconnect(client);
|
||||||
|
client_delete(client);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
return client;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void disconnect_transfer_client(Client* client) {
|
||||||
|
if (!client)
|
||||||
|
return;
|
||||||
|
client_disconnect(client);
|
||||||
|
client_delete(client);
|
||||||
|
}
|
||||||
|
|
||||||
|
static ArrayList* create_transfer_manifest(const Config* config) {
|
||||||
|
return config->use_delete ? array_list_create(free) : NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool add_chunk_to_manifest(ArrayList* manifest, const Chunk* chunk) {
|
||||||
|
if (!manifest)
|
||||||
|
return true;
|
||||||
|
for (int i = 0; i < chunk->element_count; i++) {
|
||||||
|
const char* path = chunk->items[i]->path;
|
||||||
|
if (*path == '/')
|
||||||
|
path++;
|
||||||
|
char* entry = str_dup(path);
|
||||||
|
if (!entry) {
|
||||||
|
log_message(LOG_LEVEL_ERROR, "Failed to allocate manifest entry");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!array_list_add(manifest, entry)) {
|
||||||
|
free(entry);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool finalize_transfer(Client* client) {
|
||||||
|
Status status;
|
||||||
|
return send_status(client->file_descriptor, STATUS_FINISHED) &&
|
||||||
|
receive_status(client->file_descriptor, &status) && status == STATUS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void mark_sender_done(PipelineContextSender* context) {
|
||||||
|
mtx_lock(&context->mutex_progress);
|
||||||
|
context->sender_done = true;
|
||||||
|
mtx_unlock(&context->mutex_progress);
|
||||||
|
}
|
||||||
|
|
||||||
static void pipeline_cancel(PipelineContextSender* context) {
|
static void pipeline_cancel(PipelineContextSender* context) {
|
||||||
mtx_lock(&context->mutex_scanner);
|
mtx_lock(&context->mutex_scanner);
|
||||||
mtx_lock(&context->mutex_loader);
|
mtx_lock(&context->mutex_loader);
|
||||||
@@ -43,12 +125,10 @@ static void pipeline_cancel(PipelineContextSender* context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Print dry-run manifest showing files that would be transferred. Returns 0 on success. */
|
/* Print dry-run manifest showing files that would be transferred. Returns 0 on success. */
|
||||||
static int send_dry_run_manifest(Config* config) {
|
static int send_dry_run_manifest(const Config* config) {
|
||||||
DirectoryScanner* scanner = directory_scanner_create(
|
ScannerOptions options = scanner_options_from_config(config, 0);
|
||||||
config->send_directory, config->use_metadata, config->chunk_size, config->exclude_patterns,
|
DirectoryScanner* scanner =
|
||||||
config->exclude_count, config->include_patterns, config->include_count, config->max_size,
|
directory_scanner_create_with_options(config->send_directory, &options);
|
||||||
config->min_size, config->max_depth, config->follow_symlinks, config->copy_links,
|
|
||||||
config->safe_links, config->copy_unsafe_links, config->checksum);
|
|
||||||
if (!scanner)
|
if (!scanner)
|
||||||
return -1;
|
return -1;
|
||||||
Chunk* chunk;
|
Chunk* chunk;
|
||||||
@@ -70,6 +150,8 @@ static int send_dry_run_manifest(Config* config) {
|
|||||||
|
|
||||||
/* Send the delete manifest (list of files) to the server. Returns 0 on success, -1 on failure. */
|
/* Send the delete manifest (list of files) to the server. Returns 0 on success, -1 on failure. */
|
||||||
static int send_delete_manifest(int fd, ArrayList* manifest) {
|
static int send_delete_manifest(int fd, ArrayList* manifest) {
|
||||||
|
if (!manifest)
|
||||||
|
return -1;
|
||||||
if (!send_status(fd, STATUS_MANIFEST))
|
if (!send_status(fd, STATUS_MANIFEST))
|
||||||
return -1;
|
return -1;
|
||||||
if (!send_int(fd, manifest->size))
|
if (!send_int(fd, manifest->size))
|
||||||
@@ -111,17 +193,22 @@ static int incremental_check(Client* client, File* file, const Config* config,
|
|||||||
return 1;
|
return 1;
|
||||||
if (s == STATUS_DELTA_SIGNATURE) {
|
if (s == STATUS_DELTA_SIGNATURE) {
|
||||||
Data* sig_data = receive_data(client->file_descriptor);
|
Data* sig_data = receive_data(client->file_descriptor);
|
||||||
if (!sig_data)
|
if (!sig_data) {
|
||||||
|
send_status(client->file_descriptor, STATUS_ERROR);
|
||||||
return -1;
|
return -1;
|
||||||
|
}
|
||||||
DeltaSignature* sig = delta_signature_deserialize(sig_data);
|
DeltaSignature* sig = delta_signature_deserialize(sig_data);
|
||||||
data_destroy(sig_data);
|
data_destroy(sig_data);
|
||||||
if (!sig)
|
if (!sig) {
|
||||||
|
send_status(client->file_descriptor, STATUS_ERROR);
|
||||||
return -1;
|
return -1;
|
||||||
|
}
|
||||||
*out_sig = sig;
|
*out_sig = sig;
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
if (s != STATUS_NEXT) {
|
if (s != STATUS_NEXT) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Unexpected server status");
|
log_message(LOG_LEVEL_ERROR, "Unexpected server status");
|
||||||
|
send_status(client->file_descriptor, STATUS_ERROR);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
@@ -129,8 +216,10 @@ static int incremental_check(Client* client, File* file, const Config* config,
|
|||||||
|
|
||||||
static int send_delta(Client* client, File* file, DeltaSignature* sig, Config* config) {
|
static int send_delta(Client* client, File* file, DeltaSignature* sig, Config* config) {
|
||||||
Delta* delta = delta_compute(file->data->data, file->data->size, sig, config->delta_block_size);
|
Delta* delta = delta_compute(file->data->data, file->data->size, sig, config->delta_block_size);
|
||||||
|
/* The receiver is blocked after sending the signature. Every local
|
||||||
|
fallback therefore needs the explicit NEXT response before full data. */
|
||||||
if (!delta)
|
if (!delta)
|
||||||
return 1;
|
return send_status(client->file_descriptor, STATUS_NEXT) ? 1 : -1;
|
||||||
|
|
||||||
if (!delta_is_worthwhile(delta, file->data->size)) {
|
if (!delta_is_worthwhile(delta, file->data->size)) {
|
||||||
delta_destroy(delta);
|
delta_destroy(delta);
|
||||||
@@ -142,14 +231,14 @@ static int send_delta(Client* client, File* file, DeltaSignature* sig, Config* c
|
|||||||
Data* delta_data = delta_serialize(delta);
|
Data* delta_data = delta_serialize(delta);
|
||||||
delta_destroy(delta);
|
delta_destroy(delta);
|
||||||
if (!delta_data)
|
if (!delta_data)
|
||||||
return -1;
|
return send_status(client->file_descriptor, STATUS_NEXT) ? 1 : -1;
|
||||||
|
|
||||||
Data* to_send = delta_data;
|
Data* to_send = delta_data;
|
||||||
if (config->use_compression) {
|
if (config->use_compression) {
|
||||||
to_send = data_compress(delta_data, config->compression_level);
|
to_send = data_compress(delta_data, config->compression_level);
|
||||||
data_destroy(delta_data);
|
data_destroy(delta_data);
|
||||||
if (!to_send)
|
if (!to_send)
|
||||||
return -1;
|
return send_status(client->file_descriptor, STATUS_NEXT) ? 1 : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ok = send_status(client->file_descriptor, STATUS_DELTA_DATA) &&
|
bool ok = send_status(client->file_descriptor, STATUS_DELTA_DATA) &&
|
||||||
@@ -279,7 +368,8 @@ int send_chunk(Client* client, Chunk* chunk, Config* config) {
|
|||||||
if (f == NULL)
|
if (f == NULL)
|
||||||
continue;
|
continue;
|
||||||
bool stream = f->data->data == NULL && f->data->size > 0;
|
bool stream = f->data->data == NULL && f->data->size > 0;
|
||||||
bool use_sendfile = (config->use_sendfile && !config->use_compression) || stream;
|
bool use_sendfile =
|
||||||
|
(config->use_sendfile && !config->use_compression) || (stream && !config->use_compression);
|
||||||
int rc = send_single_file(client, f, config, config->use_incremental, use_sendfile);
|
int rc = send_single_file(client, f, config, config->use_incremental, use_sendfile);
|
||||||
if (rc == 1)
|
if (rc == 1)
|
||||||
continue;
|
continue;
|
||||||
@@ -291,49 +381,24 @@ int send_chunk(Client* client, Chunk* chunk, Config* config) {
|
|||||||
|
|
||||||
static int send_chunks_multithreaded(void* pipeline_context) {
|
static int send_chunks_multithreaded(void* pipeline_context) {
|
||||||
PipelineContextSender* context = (PipelineContextSender*)pipeline_context;
|
PipelineContextSender* context = (PipelineContextSender*)pipeline_context;
|
||||||
Client* client;
|
Client* client = connect_transfer_client(context->config);
|
||||||
if (context->config->transport == TRANSPORT_SSH) {
|
if (!client) {
|
||||||
if (context->config->use_sendfile) {
|
if (context->config->transport == TRANSPORT_TCP)
|
||||||
fprintf(stderr, "Error: -f/--sendfile is not supported with SSH transport\n");
|
fprintf(stderr, "Error: could not connect to server%s\n",
|
||||||
mtx_lock(&context->mutex_progress);
|
context->config->use_tls ? " via TLS" : "");
|
||||||
context->sender_done = true;
|
pipeline_cancel(context);
|
||||||
mtx_unlock(&context->mutex_progress);
|
mark_sender_done(context);
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
client = client_connect_ssh(context->config->ssh_destination, context->config->ssh_port,
|
|
||||||
context->config->fastsync_server_path);
|
|
||||||
} else if (context->config->use_tls) {
|
|
||||||
client = client_create();
|
|
||||||
if (!client || !client_connect_tls(client, context->config->server_host,
|
|
||||||
context->config->server_port, context->config->tls_cert,
|
|
||||||
context->config->tls_key, context->config->tls_ca)) {
|
|
||||||
if (client)
|
|
||||||
client_delete(client);
|
|
||||||
fprintf(stderr, "Error: could not connect to server via TLS\n");
|
|
||||||
mtx_lock(&context->mutex_progress);
|
|
||||||
context->sender_done = true;
|
|
||||||
mtx_unlock(&context->mutex_progress);
|
|
||||||
return thrd_error;
|
return thrd_error;
|
||||||
}
|
}
|
||||||
} else {
|
ProtocolSession session;
|
||||||
client = client_create();
|
protocol_session_init(&session, client->file_descriptor, client->file_descriptor);
|
||||||
if (!client ||
|
protocol_session_set_ssl(&session, (SSL*)client->ssl);
|
||||||
!client_connect(client, context->config->server_host, context->config->server_port)) {
|
protocol_session_bind(&session);
|
||||||
if (client)
|
|
||||||
client_delete(client);
|
|
||||||
fprintf(stderr, "Error: could not connect to server\n");
|
|
||||||
mtx_lock(&context->mutex_progress);
|
|
||||||
context->sender_done = true;
|
|
||||||
mtx_unlock(&context->mutex_progress);
|
|
||||||
return thrd_error;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!config_send(client->file_descriptor, context->config)) {
|
if (!config_send(client->file_descriptor, context->config)) {
|
||||||
client_disconnect(client);
|
pipeline_cancel(context);
|
||||||
client_delete(client);
|
disconnect_transfer_client(client);
|
||||||
mtx_lock(&context->mutex_progress);
|
mark_sender_done(context);
|
||||||
context->sender_done = true;
|
protocol_session_unbind();
|
||||||
mtx_unlock(&context->mutex_progress);
|
|
||||||
return thrd_error;
|
return thrd_error;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -342,39 +407,37 @@ static int send_chunks_multithreaded(void* pipeline_context) {
|
|||||||
context->queue_loader, &context->mutex_loader, &context->condition_not_empty_loader,
|
context->queue_loader, &context->mutex_loader, &context->condition_not_empty_loader,
|
||||||
&context->condition_not_full_loader, &context->loader_done);
|
&context->condition_not_full_loader, &context->loader_done);
|
||||||
if (current_chunk == NULL) {
|
if (current_chunk == NULL) {
|
||||||
|
if (atomic_load(&context->cancelled)) {
|
||||||
|
pipeline_cancel(context);
|
||||||
|
disconnect_transfer_client(client);
|
||||||
|
mark_sender_done(context);
|
||||||
|
protocol_session_unbind();
|
||||||
|
return thrd_error;
|
||||||
|
}
|
||||||
if (context->config->use_delete) {
|
if (context->config->use_delete) {
|
||||||
if (send_delete_manifest(client->file_descriptor, context->manifest) != 0)
|
if (send_delete_manifest(client->file_descriptor, context->manifest) != 0)
|
||||||
goto send_fail;
|
goto send_fail;
|
||||||
}
|
}
|
||||||
if (!send_status(client->file_descriptor, STATUS_FINISHED))
|
bool ok = finalize_transfer(client);
|
||||||
goto send_fail;
|
disconnect_transfer_client(client);
|
||||||
Status s;
|
mark_sender_done(context);
|
||||||
int ok = receive_status(client->file_descriptor, &s) && s == STATUS_OK;
|
protocol_session_unbind();
|
||||||
client_disconnect(client);
|
|
||||||
client_delete(client);
|
|
||||||
mtx_lock(&context->mutex_progress);
|
|
||||||
context->sender_done = true;
|
|
||||||
mtx_unlock(&context->mutex_progress);
|
|
||||||
return ok ? thrd_success : thrd_error;
|
return ok ? thrd_success : thrd_error;
|
||||||
|
|
||||||
send_fail:
|
send_fail:
|
||||||
pipeline_cancel(context);
|
pipeline_cancel(context);
|
||||||
client_disconnect(client);
|
disconnect_transfer_client(client);
|
||||||
client_delete(client);
|
mark_sender_done(context);
|
||||||
mtx_lock(&context->mutex_progress);
|
protocol_session_unbind();
|
||||||
context->sender_done = true;
|
|
||||||
mtx_unlock(&context->mutex_progress);
|
|
||||||
return thrd_error;
|
return thrd_error;
|
||||||
}
|
}
|
||||||
if (send_chunk(client, current_chunk, context->config) != 0) {
|
if (send_chunk(client, current_chunk, context->config) != 0) {
|
||||||
fprintf(stderr, "Error: unexpected error while sending chunk\n");
|
fprintf(stderr, "Error: unexpected error while sending chunk\n");
|
||||||
chunk_destroy(current_chunk);
|
chunk_destroy(current_chunk);
|
||||||
pipeline_cancel(context);
|
pipeline_cancel(context);
|
||||||
client_disconnect(client);
|
disconnect_transfer_client(client);
|
||||||
client_delete(client);
|
mark_sender_done(context);
|
||||||
mtx_lock(&context->mutex_progress);
|
protocol_session_unbind();
|
||||||
context->sender_done = true;
|
|
||||||
mtx_unlock(&context->mutex_progress);
|
|
||||||
return thrd_error;
|
return thrd_error;
|
||||||
}
|
}
|
||||||
if (context->config->show_progress) {
|
if (context->config->show_progress) {
|
||||||
@@ -393,13 +456,9 @@ static int send_chunks_multithreaded(void* pipeline_context) {
|
|||||||
|
|
||||||
static int scan_directory_multithreaded(void* pipeline_context) {
|
static int scan_directory_multithreaded(void* pipeline_context) {
|
||||||
PipelineContextSender* context = (PipelineContextSender*)pipeline_context;
|
PipelineContextSender* context = (PipelineContextSender*)pipeline_context;
|
||||||
ParallelScanner* scanner = parallel_scanner_create(
|
ScannerOptions options = scanner_options_from_config(context->config, 4);
|
||||||
context->config->send_directory, context->config->use_metadata, context->config->chunk_size,
|
ParallelScanner* scanner =
|
||||||
context->config->exclude_patterns, context->config->exclude_count,
|
parallel_scanner_create_with_options(context->config->send_directory, &options);
|
||||||
context->config->include_patterns, context->config->include_count, context->config->max_size,
|
|
||||||
context->config->min_size, context->config->max_depth, 4, context->config->follow_symlinks,
|
|
||||||
context->config->copy_links, context->config->safe_links, context->config->copy_unsafe_links,
|
|
||||||
context->config->checksum);
|
|
||||||
|
|
||||||
Chunk* current_chunk;
|
Chunk* current_chunk;
|
||||||
if (scanner == NULL) {
|
if (scanner == NULL) {
|
||||||
@@ -410,29 +469,15 @@ static int scan_directory_multithreaded(void* pipeline_context) {
|
|||||||
while ((current_chunk = parallel_scanner_next(scanner)) != NULL) {
|
while ((current_chunk = parallel_scanner_next(scanner)) != NULL) {
|
||||||
if (context->config->use_delete) {
|
if (context->config->use_delete) {
|
||||||
mtx_lock(&context->mutex_scanner);
|
mtx_lock(&context->mutex_scanner);
|
||||||
for (int i = 0; i < current_chunk->element_count; i++) {
|
bool manifest_ok = add_chunk_to_manifest(context->manifest, current_chunk);
|
||||||
const char* p = current_chunk->items[i]->path;
|
|
||||||
if (*p == '/')
|
|
||||||
p++;
|
|
||||||
char* manifest_entry = str_dup(p);
|
|
||||||
if (!manifest_entry) {
|
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to allocate manifest entry");
|
|
||||||
mtx_unlock(&context->mutex_scanner);
|
|
||||||
pipeline_cancel(context);
|
|
||||||
parallel_scanner_destroy(scanner);
|
|
||||||
return thrd_error;
|
|
||||||
}
|
|
||||||
if (!array_list_add(context->manifest, manifest_entry)) {
|
|
||||||
free(manifest_entry);
|
|
||||||
mtx_unlock(&context->mutex_scanner);
|
mtx_unlock(&context->mutex_scanner);
|
||||||
|
if (!manifest_ok) {
|
||||||
pipeline_cancel(context);
|
pipeline_cancel(context);
|
||||||
chunk_destroy(current_chunk);
|
chunk_destroy(current_chunk);
|
||||||
parallel_scanner_destroy(scanner);
|
parallel_scanner_destroy(scanner);
|
||||||
return thrd_error;
|
return thrd_error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
mtx_unlock(&context->mutex_scanner);
|
|
||||||
}
|
|
||||||
if (!queue_enqueue_multithreaded_cancel(
|
if (!queue_enqueue_multithreaded_cancel(
|
||||||
context->queue_scanner, current_chunk, &context->mutex_scanner,
|
context->queue_scanner, current_chunk, &context->mutex_scanner,
|
||||||
&context->condition_not_empty_scanner, &context->condition_not_full_scanner,
|
&context->condition_not_empty_scanner, &context->condition_not_full_scanner,
|
||||||
@@ -478,12 +523,13 @@ static int load_files_multithreaded(void* pipeline_context) {
|
|||||||
if (!context->config->use_sendfile) {
|
if (!context->config->use_sendfile) {
|
||||||
for (int i = 0; i < chunk->element_count; i++) {
|
for (int i = 0; i < chunk->element_count; i++) {
|
||||||
File* f = chunk->items[i];
|
File* f = chunk->items[i];
|
||||||
if (f->data->size > STREAM_THRESHOLD)
|
if (f->data->size > STREAM_THRESHOLD && !context->config->use_compression)
|
||||||
continue;
|
continue;
|
||||||
if (!file_load_data(f)) {
|
if (!file_load_data(f)) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to load file data, skipping");
|
log_message(LOG_LEVEL_ERROR, "Failed to load file data");
|
||||||
file_destroy(f);
|
chunk_destroy(chunk);
|
||||||
chunk->items[i] = NULL;
|
pipeline_cancel(context);
|
||||||
|
return thrd_error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -492,9 +538,7 @@ static int load_files_multithreaded(void* pipeline_context) {
|
|||||||
&context->condition_not_full_loader,
|
&context->condition_not_full_loader,
|
||||||
&context->cancelled)) {
|
&context->cancelled)) {
|
||||||
chunk_destroy(chunk);
|
chunk_destroy(chunk);
|
||||||
atomic_store(&context->cancelled, true);
|
pipeline_cancel(context);
|
||||||
cnd_broadcast(&context->condition_not_full_loader);
|
|
||||||
cnd_broadcast(&context->condition_not_empty_loader);
|
|
||||||
return thrd_error;
|
return thrd_error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -540,61 +584,37 @@ int send_files(Config* config) {
|
|||||||
if (config->dry_run)
|
if (config->dry_run)
|
||||||
return send_dry_run_manifest(config);
|
return send_dry_run_manifest(config);
|
||||||
|
|
||||||
Client* client;
|
Client* client = connect_transfer_client(config);
|
||||||
if (config->transport == TRANSPORT_SSH) {
|
if (!client) {
|
||||||
if (config->use_sendfile) {
|
if (config->transport == TRANSPORT_TCP)
|
||||||
fprintf(stderr, "Error: -f/--sendfile is not supported with SSH transport\n");
|
fprintf(stderr, "Error: could not connect to server%s\n", config->use_tls ? " via TLS" : "");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
client =
|
ProtocolSession session;
|
||||||
client_connect_ssh(config->ssh_destination, config->ssh_port, config->fastsync_server_path);
|
protocol_session_init(&session, client->file_descriptor, client->file_descriptor);
|
||||||
if (!client)
|
protocol_session_set_ssl(&session, (SSL*)client->ssl);
|
||||||
return 1;
|
protocol_session_bind(&session);
|
||||||
} else if (config->use_tls) {
|
|
||||||
client = client_create();
|
|
||||||
if (!client || !client_connect_tls(client, config->server_host, config->server_port,
|
|
||||||
config->tls_cert, config->tls_key, config->tls_ca)) {
|
|
||||||
if (client) {
|
|
||||||
client_disconnect(client);
|
|
||||||
client_delete(client);
|
|
||||||
}
|
|
||||||
fprintf(stderr, "Error: could not connect to server via TLS\n");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
client = client_create();
|
|
||||||
if (!client || !client_connect(client, config->server_host, config->server_port)) {
|
|
||||||
if (client) {
|
|
||||||
client_disconnect(client);
|
|
||||||
client_delete(client);
|
|
||||||
}
|
|
||||||
fprintf(stderr, "Error: could not connect to server\n");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!config_send(client->file_descriptor, config)) {
|
if (!config_send(client->file_descriptor, config)) {
|
||||||
client_disconnect(client);
|
disconnect_transfer_client(client);
|
||||||
client_delete(client);
|
protocol_session_unbind();
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
DirectoryScanner* scanner = directory_scanner_create(
|
ScannerOptions scanner_options = scanner_options_from_config(config, 0);
|
||||||
config->send_directory, config->use_metadata, config->chunk_size, config->exclude_patterns,
|
DirectoryScanner* scanner =
|
||||||
config->exclude_count, config->include_patterns, config->include_count, config->max_size,
|
directory_scanner_create_with_options(config->send_directory, &scanner_options);
|
||||||
config->min_size, config->max_depth, config->follow_symlinks, config->copy_links,
|
|
||||||
config->safe_links, config->copy_unsafe_links, config->checksum);
|
|
||||||
Chunk* current_chunk;
|
Chunk* current_chunk;
|
||||||
unsigned long long total_bytes = 0;
|
unsigned long long total_bytes = 0;
|
||||||
int total_files = 0;
|
int total_files = 0;
|
||||||
time_t last_progress = 0;
|
time_t last_progress = 0;
|
||||||
time_t start = time(NULL);
|
time_t start = time(NULL);
|
||||||
ArrayList* manifest = config->use_delete ? array_list_create(free) : NULL;
|
ArrayList* manifest = create_transfer_manifest(config);
|
||||||
if (!scanner || (config->use_delete && !manifest)) {
|
if (!scanner || (config->use_delete && !manifest)) {
|
||||||
if (scanner)
|
if (scanner)
|
||||||
directory_scanner_destroy(scanner);
|
directory_scanner_destroy(scanner);
|
||||||
if (manifest)
|
if (manifest)
|
||||||
array_list_delete(manifest);
|
array_list_delete(manifest);
|
||||||
client_disconnect(client);
|
disconnect_transfer_client(client);
|
||||||
client_delete(client);
|
protocol_session_unbind();
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
while ((current_chunk = directory_scanner_next(scanner)) != NULL) {
|
while ((current_chunk = directory_scanner_next(scanner)) != NULL) {
|
||||||
@@ -602,39 +622,20 @@ int send_files(Config* config) {
|
|||||||
for (int i = 0; i < current_chunk->element_count; i++) {
|
for (int i = 0; i < current_chunk->element_count; i++) {
|
||||||
chunk_bytes += current_chunk->items[i]->data->size;
|
chunk_bytes += current_chunk->items[i]->data->size;
|
||||||
total_files++;
|
total_files++;
|
||||||
if (manifest) {
|
}
|
||||||
const char* p = current_chunk->items[i]->path;
|
if (!add_chunk_to_manifest(manifest, current_chunk)) {
|
||||||
if (*p == '/')
|
|
||||||
p++;
|
|
||||||
char* manifest_entry = str_dup(p);
|
|
||||||
if (!manifest_entry) {
|
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to allocate manifest entry");
|
|
||||||
chunk_destroy(current_chunk);
|
chunk_destroy(current_chunk);
|
||||||
array_list_delete(manifest);
|
goto send_fail;
|
||||||
directory_scanner_destroy(scanner);
|
|
||||||
client_disconnect(client);
|
|
||||||
client_delete(client);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
if (!array_list_add(manifest, manifest_entry)) {
|
|
||||||
free(manifest_entry);
|
|
||||||
chunk_destroy(current_chunk);
|
|
||||||
array_list_delete(manifest);
|
|
||||||
directory_scanner_destroy(scanner);
|
|
||||||
client_disconnect(client);
|
|
||||||
client_delete(client);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (!config->use_sendfile) {
|
if (!config->use_sendfile) {
|
||||||
for (int i = 0; i < current_chunk->element_count; i++) {
|
for (int i = 0; i < current_chunk->element_count; i++) {
|
||||||
File* f = current_chunk->items[i];
|
File* f = current_chunk->items[i];
|
||||||
if (f->data->size > STREAM_THRESHOLD)
|
if (f->data->size > STREAM_THRESHOLD && !config->use_compression)
|
||||||
continue;
|
continue;
|
||||||
if (!file_load_data(f)) {
|
if (!file_load_data(f)) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to load file data");
|
log_message(LOG_LEVEL_ERROR, "Failed to load file data");
|
||||||
continue;
|
chunk_destroy(current_chunk);
|
||||||
|
goto send_fail;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -664,15 +665,13 @@ int send_files(Config* config) {
|
|||||||
if (config->use_delete) {
|
if (config->use_delete) {
|
||||||
if (send_delete_manifest(client->file_descriptor, manifest) != 0) {
|
if (send_delete_manifest(client->file_descriptor, manifest) != 0) {
|
||||||
array_list_delete(manifest);
|
array_list_delete(manifest);
|
||||||
|
manifest = NULL;
|
||||||
goto send_fail;
|
goto send_fail;
|
||||||
}
|
}
|
||||||
array_list_delete(manifest);
|
array_list_delete(manifest);
|
||||||
manifest = NULL;
|
manifest = NULL;
|
||||||
}
|
}
|
||||||
if (!send_status(client->file_descriptor, STATUS_FINISHED))
|
bool ok = finalize_transfer(client);
|
||||||
goto send_fail;
|
|
||||||
Status s;
|
|
||||||
int ok = receive_status(client->file_descriptor, &s) && s == STATUS_OK;
|
|
||||||
double elapsed_total = difftime(time(NULL), start);
|
double elapsed_total = difftime(time(NULL), start);
|
||||||
if (config->show_progress) {
|
if (config->show_progress) {
|
||||||
double rate = elapsed_total > 0 ? total_bytes / (1048576.0 * elapsed_total) : 0;
|
double rate = elapsed_total > 0 ? total_bytes / (1048576.0 * elapsed_total) : 0;
|
||||||
@@ -684,20 +683,23 @@ int send_files(Config* config) {
|
|||||||
rate);
|
rate);
|
||||||
}
|
}
|
||||||
directory_scanner_destroy(scanner);
|
directory_scanner_destroy(scanner);
|
||||||
client_disconnect(client);
|
disconnect_transfer_client(client);
|
||||||
client_delete(client);
|
protocol_session_unbind();
|
||||||
return ok ? 0 : 1;
|
return ok ? 0 : 1;
|
||||||
|
|
||||||
send_fail:
|
send_fail:
|
||||||
if (manifest)
|
if (manifest)
|
||||||
array_list_delete(manifest);
|
array_list_delete(manifest);
|
||||||
directory_scanner_destroy(scanner);
|
directory_scanner_destroy(scanner);
|
||||||
client_disconnect(client);
|
disconnect_transfer_client(client);
|
||||||
client_delete(client);
|
protocol_session_unbind();
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int send_files_multithreaded(Config* config) {
|
int send_files_multithreaded(Config** config_ptr) {
|
||||||
|
if (!config_ptr || !*config_ptr)
|
||||||
|
return 1;
|
||||||
|
Config* config = *config_ptr;
|
||||||
if (config->dry_run)
|
if (config->dry_run)
|
||||||
return send_dry_run_manifest(config);
|
return send_dry_run_manifest(config);
|
||||||
|
|
||||||
@@ -728,8 +730,13 @@ int send_files_multithreaded(Config* config) {
|
|||||||
queue_destroy(q2);
|
queue_destroy(q2);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
*config_ptr = NULL; /* context now owns config through all remaining paths */
|
||||||
if (config->use_delete)
|
if (config->use_delete)
|
||||||
context->manifest = array_list_create(free);
|
context->manifest = array_list_create(free);
|
||||||
|
if (config->use_delete && !context->manifest) {
|
||||||
|
pipeline_context_sender_destroy(context);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
thrd_t scanner, loader, sender;
|
thrd_t scanner, loader, sender;
|
||||||
bool scanner_created = false;
|
bool scanner_created = false;
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
int send_chunk(Client* client, Chunk* chunk, Config* config);
|
int send_chunk(Client* client, Chunk* chunk, Config* config);
|
||||||
int send_files(Config* config);
|
int send_files(Config* config);
|
||||||
int send_files_multithreaded(Config* config);
|
/* Takes ownership only when *config is set to NULL on return. */
|
||||||
|
int send_files_multithreaded(Config** config);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -0,0 +1,50 @@
|
|||||||
|
#include "client_validation.h"
|
||||||
|
#include "usage.h"
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
/* Validate config after parsing. Returns true if valid. */
|
||||||
|
bool validate_config(const Config* config) {
|
||||||
|
if (!config->send_directory || !config->receive_root_directory) {
|
||||||
|
fprintf(stderr, "Error: source and destination directories are required\n");
|
||||||
|
print_usage();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (config->use_sendfile && (config->use_chunk_serialization || config->use_compression)) {
|
||||||
|
fprintf(stderr, "Error: -f/--sendfile cannot be combined with -c (compression) or -s (chunk "
|
||||||
|
"serialization)\n");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (config->transport == TRANSPORT_SSH && config->use_sendfile) {
|
||||||
|
fprintf(stderr, "Error: -f/--sendfile is not supported with SSH transport\n");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (config->use_incremental && config->use_chunk_serialization) {
|
||||||
|
fprintf(stderr, "Error: --incremental is not supported with -s (chunk serialization)\n");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (config->use_delta && !config->use_incremental) {
|
||||||
|
fprintf(stderr, "Error: --delta requires --incremental\n");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (config->use_delta && config->use_chunk_serialization) {
|
||||||
|
fprintf(stderr, "Error: --delta cannot be combined with -s (chunk serialization)\n");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (config->use_delta && config->use_sendfile) {
|
||||||
|
fprintf(stderr, "Error: --delta cannot be combined with -f (sendfile)\n");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (config->append || config->append_verify) {
|
||||||
|
fprintf(
|
||||||
|
stderr,
|
||||||
|
"Error: --append and --append-verify are not supported yet; refusing to ignore option\n");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (config->use_tls) {
|
||||||
|
if (!config->tls_cert || !config->tls_key || !config->tls_ca) {
|
||||||
|
fprintf(stderr, "Error: --tls requires --cert, --key, and --ca\n");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
#ifndef CLIENT_VALIDATION_H
|
||||||
|
#define CLIENT_VALIDATION_H
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
|
bool validate_config(const Config* config);
|
||||||
|
|
||||||
|
#endif
|
||||||
+185
-254
@@ -52,13 +52,84 @@ static bool safe_relative_link(const char* source_root, const char* containing_d
|
|||||||
return safe;
|
return safe;
|
||||||
}
|
}
|
||||||
|
|
||||||
DirectoryScanner* directory_scanner_create(const char* root_directory, bool use_metadata,
|
typedef struct {
|
||||||
unsigned long long chunk_size, char** exclude_patterns,
|
char* path;
|
||||||
int exclude_count, char** include_patterns,
|
struct stat stats;
|
||||||
int include_count, unsigned long long max_size,
|
bool is_directory;
|
||||||
unsigned long long min_size, int max_depth,
|
} ScannerEntry;
|
||||||
bool follow_symlinks, bool copy_links, bool safe_links,
|
|
||||||
bool copy_unsafe_links, bool checksum) {
|
/* Inspect symlinks, resolve the entry type, and apply file filters once for both scanners. */
|
||||||
|
static int scanner_inspect_entry(const ScannerOptions* options, const char* source_root,
|
||||||
|
const char* containing_dir, const char* name,
|
||||||
|
ScannerEntry* entry) {
|
||||||
|
entry->path = path_cat(containing_dir, name);
|
||||||
|
if (!entry->path)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
struct stat link_stats;
|
||||||
|
if (lstat(entry->path, &link_stats) != 0) {
|
||||||
|
free(entry->path);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
bool is_symlink = S_ISLNK(link_stats.st_mode);
|
||||||
|
if (is_symlink && !options->follow_symlinks && !options->copy_links && !options->safe_links &&
|
||||||
|
!options->copy_unsafe_links)
|
||||||
|
goto skip;
|
||||||
|
|
||||||
|
if (is_symlink && options->safe_links) {
|
||||||
|
char link_target[4096];
|
||||||
|
ssize_t length = readlink(entry->path, link_target, sizeof(link_target) - 1);
|
||||||
|
if (length < 0)
|
||||||
|
goto skip;
|
||||||
|
link_target[length] = '\0';
|
||||||
|
if (link_target[0] == '/' || !safe_relative_link(source_root, containing_dir, link_target))
|
||||||
|
goto skip;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (is_symlink && options->copy_unsafe_links && !options->copy_links) {
|
||||||
|
char link_target[4096];
|
||||||
|
ssize_t length = readlink(entry->path, link_target, sizeof(link_target) - 1);
|
||||||
|
if (length < 0)
|
||||||
|
goto skip;
|
||||||
|
link_target[length] = '\0';
|
||||||
|
if (link_target[0] != '/')
|
||||||
|
goto skip;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (is_symlink && options->follow_symlinks && !options->copy_links)
|
||||||
|
entry->stats = link_stats;
|
||||||
|
else if (stat(entry->path, &entry->stats) != 0)
|
||||||
|
goto skip;
|
||||||
|
|
||||||
|
entry->is_directory = S_ISDIR(entry->stats.st_mode);
|
||||||
|
if (entry->is_directory)
|
||||||
|
return 1;
|
||||||
|
for (int i = 0; i < options->exclude_count; i++)
|
||||||
|
if (glob_match(options->exclude_patterns[i], name))
|
||||||
|
goto skip;
|
||||||
|
if (options->include_count > 0) {
|
||||||
|
bool included = false;
|
||||||
|
for (int i = 0; i < options->include_count; i++)
|
||||||
|
if (glob_match(options->include_patterns[i], name))
|
||||||
|
included = true;
|
||||||
|
if (!included)
|
||||||
|
goto skip;
|
||||||
|
}
|
||||||
|
if ((options->max_size > 0 && (unsigned long long)entry->stats.st_size > options->max_size) ||
|
||||||
|
(options->min_size > 0 && (unsigned long long)entry->stats.st_size < options->min_size))
|
||||||
|
goto skip;
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
skip:
|
||||||
|
free(entry->path);
|
||||||
|
entry->path = NULL;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
DirectoryScanner* directory_scanner_create_with_options(const char* root_directory,
|
||||||
|
const ScannerOptions* options) {
|
||||||
|
if (!root_directory || !options)
|
||||||
|
return NULL;
|
||||||
DirectoryScanner* scanner = calloc(1, sizeof(DirectoryScanner));
|
DirectoryScanner* scanner = calloc(1, sizeof(DirectoryScanner));
|
||||||
if (scanner == NULL)
|
if (scanner == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
@@ -69,21 +140,21 @@ DirectoryScanner* directory_scanner_create(const char* root_directory, bool use_
|
|||||||
}
|
}
|
||||||
scanner->current_dir = NULL;
|
scanner->current_dir = NULL;
|
||||||
scanner->current_path = NULL;
|
scanner->current_path = NULL;
|
||||||
scanner->use_metadata = use_metadata;
|
scanner->use_metadata = options->use_metadata;
|
||||||
scanner->chunk_size = chunk_size > 0 ? chunk_size : DESIRED_CHUNK_SIZE;
|
scanner->chunk_size = options->chunk_size > 0 ? options->chunk_size : DESIRED_CHUNK_SIZE;
|
||||||
scanner->exclude_patterns = exclude_patterns;
|
scanner->exclude_patterns = options->exclude_patterns;
|
||||||
scanner->exclude_count = exclude_count;
|
scanner->exclude_count = options->exclude_count;
|
||||||
scanner->include_patterns = include_patterns;
|
scanner->include_patterns = options->include_patterns;
|
||||||
scanner->include_count = include_count;
|
scanner->include_count = options->include_count;
|
||||||
scanner->max_size = max_size;
|
scanner->max_size = options->max_size;
|
||||||
scanner->min_size = min_size;
|
scanner->min_size = options->min_size;
|
||||||
scanner->max_depth = max_depth;
|
scanner->max_depth = options->max_depth;
|
||||||
scanner->current_depth = 0;
|
scanner->current_depth = 0;
|
||||||
scanner->follow_symlinks = follow_symlinks;
|
scanner->follow_symlinks = options->follow_symlinks;
|
||||||
scanner->copy_links = copy_links;
|
scanner->copy_links = options->copy_links;
|
||||||
scanner->safe_links = safe_links;
|
scanner->safe_links = options->safe_links;
|
||||||
scanner->copy_unsafe_links = copy_unsafe_links;
|
scanner->copy_unsafe_links = options->copy_unsafe_links;
|
||||||
scanner->checksum = checksum;
|
scanner->checksum = options->checksum;
|
||||||
scanner->failed = false;
|
scanner->failed = false;
|
||||||
DirEntry* root = dir_entry_create(root_directory, 0);
|
DirEntry* root = dir_entry_create(root_directory, 0);
|
||||||
if (!root) {
|
if (!root) {
|
||||||
@@ -100,6 +171,20 @@ DirectoryScanner* directory_scanner_create(const char* root_directory, bool use_
|
|||||||
return scanner;
|
return scanner;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DirectoryScanner* directory_scanner_create(const char* root_directory, bool use_metadata,
|
||||||
|
unsigned long long chunk_size, char** exclude_patterns,
|
||||||
|
int exclude_count, char** include_patterns,
|
||||||
|
int include_count, unsigned long long max_size,
|
||||||
|
unsigned long long min_size, int max_depth,
|
||||||
|
bool follow_symlinks, bool copy_links, bool safe_links,
|
||||||
|
bool copy_unsafe_links, bool checksum) {
|
||||||
|
ScannerOptions options = {
|
||||||
|
use_metadata, chunk_size, exclude_patterns, exclude_count, include_patterns,
|
||||||
|
include_count, max_size, min_size, max_depth, 0,
|
||||||
|
follow_symlinks, copy_links, safe_links, copy_unsafe_links, checksum};
|
||||||
|
return directory_scanner_create_with_options(root_directory, &options);
|
||||||
|
}
|
||||||
|
|
||||||
void directory_scanner_destroy(DirectoryScanner* scanner) {
|
void directory_scanner_destroy(DirectoryScanner* scanner) {
|
||||||
if (scanner == NULL)
|
if (scanner == NULL)
|
||||||
return;
|
return;
|
||||||
@@ -167,7 +252,7 @@ Chunk* directory_scanner_next(DirectoryScanner* scanner) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct dirent* entry = readdir(scanner->current_dir);
|
const struct dirent* entry = readdir(scanner->current_dir);
|
||||||
if (entry == NULL) {
|
if (entry == NULL) {
|
||||||
closedir(scanner->current_dir);
|
closedir(scanner->current_dir);
|
||||||
scanner->current_dir = NULL;
|
scanner->current_dir = NULL;
|
||||||
@@ -179,67 +264,27 @@ Chunk* directory_scanner_next(DirectoryScanner* scanner) {
|
|||||||
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
|
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
char* cur_path = path_cat(scanner->current_path, entry->d_name);
|
ScannerOptions options = {scanner->use_metadata, scanner->chunk_size,
|
||||||
if (!cur_path) {
|
scanner->exclude_patterns, scanner->exclude_count,
|
||||||
|
scanner->include_patterns, scanner->include_count,
|
||||||
|
scanner->max_size, scanner->min_size,
|
||||||
|
scanner->max_depth, 0,
|
||||||
|
scanner->follow_symlinks, scanner->copy_links,
|
||||||
|
scanner->safe_links, scanner->copy_unsafe_links,
|
||||||
|
scanner->checksum};
|
||||||
|
ScannerEntry inspected;
|
||||||
|
int inspection = scanner_inspect_entry(&options, scanner->current_path, scanner->current_path,
|
||||||
|
entry->d_name, &inspected);
|
||||||
|
if (inspection < 0) {
|
||||||
scanner->failed = true;
|
scanner->failed = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
struct stat stats;
|
if (inspection == 0)
|
||||||
struct stat lstats;
|
|
||||||
bool is_symlink = false;
|
|
||||||
if (lstat(cur_path, &lstats) != 0) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
char* cur_path = inspected.path;
|
||||||
is_symlink = S_ISLNK(lstats.st_mode);
|
struct stat stats = inspected.stats;
|
||||||
|
|
||||||
if (is_symlink && !scanner->follow_symlinks && !scanner->copy_links && !scanner->safe_links &&
|
if (inspected.is_directory) {
|
||||||
!scanner->copy_unsafe_links) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_symlink && scanner->safe_links) {
|
|
||||||
char link_target[4096];
|
|
||||||
ssize_t len = readlink(cur_path, link_target, sizeof(link_target) - 1);
|
|
||||||
if (len < 0) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
link_target[len] = '\0';
|
|
||||||
if (link_target[0] == '/' ||
|
|
||||||
!safe_relative_link(scanner->current_path, scanner->current_path, link_target)) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_symlink && scanner->copy_unsafe_links && !scanner->copy_links) {
|
|
||||||
char link_target[4096];
|
|
||||||
ssize_t len = readlink(cur_path, link_target, sizeof(link_target) - 1);
|
|
||||||
if (len < 0) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
link_target[len] = '\0';
|
|
||||||
bool unsafe = (link_target[0] == '/');
|
|
||||||
if (!unsafe) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bool use_lstat = is_symlink && scanner->follow_symlinks && !scanner->copy_links;
|
|
||||||
if (use_lstat) {
|
|
||||||
stats = lstats;
|
|
||||||
} else {
|
|
||||||
if (stat(cur_path, &stats) != 0) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (S_ISDIR(stats.st_mode)) {
|
|
||||||
int next_depth = scanner->current_depth + 1;
|
int next_depth = scanner->current_depth + 1;
|
||||||
if (scanner->max_depth <= 0 || next_depth < scanner->max_depth) {
|
if (scanner->max_depth <= 0 || next_depth < scanner->max_depth) {
|
||||||
DirEntry* de = dir_entry_create(cur_path, next_depth);
|
DirEntry* de = dir_entry_create(cur_path, next_depth);
|
||||||
@@ -254,38 +299,6 @@ Chunk* directory_scanner_next(DirectoryScanner* scanner) {
|
|||||||
free(cur_path);
|
free(cur_path);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
bool excluded = false;
|
|
||||||
for (int i = 0; i < scanner->exclude_count; i++) {
|
|
||||||
if (glob_match(scanner->exclude_patterns[i], entry->d_name)) {
|
|
||||||
excluded = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (excluded) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (scanner->include_count > 0) {
|
|
||||||
bool included = false;
|
|
||||||
for (int i = 0; i < scanner->include_count; i++) {
|
|
||||||
if (glob_match(scanner->include_patterns[i], entry->d_name)) {
|
|
||||||
included = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!included) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((scanner->max_size > 0 && (unsigned long long)stats.st_size > scanner->max_size) ||
|
|
||||||
(scanner->min_size > 0 && (unsigned long long)stats.st_size < scanner->min_size)) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
File* file = file_create(cur_path);
|
File* file = file_create(cur_path);
|
||||||
if (file == NULL) {
|
if (file == NULL) {
|
||||||
free(cur_path);
|
free(cur_path);
|
||||||
@@ -336,29 +349,13 @@ typedef struct {
|
|||||||
ParallelScanner* ps;
|
ParallelScanner* ps;
|
||||||
char** dirs;
|
char** dirs;
|
||||||
int dir_count;
|
int dir_count;
|
||||||
bool use_metadata;
|
ScannerOptions options;
|
||||||
unsigned long long chunk_size;
|
|
||||||
char** exclude_patterns;
|
|
||||||
int exclude_count;
|
|
||||||
char** include_patterns;
|
|
||||||
int include_count;
|
|
||||||
unsigned long long max_size;
|
|
||||||
unsigned long long min_size;
|
|
||||||
int max_depth;
|
|
||||||
bool follow_symlinks;
|
|
||||||
bool copy_links;
|
|
||||||
bool safe_links;
|
|
||||||
bool copy_unsafe_links;
|
|
||||||
bool checksum;
|
|
||||||
} ParallelWorkerArg;
|
} ParallelWorkerArg;
|
||||||
|
|
||||||
static int parallel_worker_thread(void* arg) {
|
static int parallel_worker_thread(void* arg) {
|
||||||
ParallelWorkerArg* wa = (ParallelWorkerArg*)arg;
|
ParallelWorkerArg* wa = (ParallelWorkerArg*)arg;
|
||||||
for (int i = 0; i < wa->dir_count; i++) {
|
for (int i = 0; i < wa->dir_count; i++) {
|
||||||
DirectoryScanner* ds = directory_scanner_create(
|
DirectoryScanner* ds = directory_scanner_create_with_options(wa->dirs[i], &wa->options);
|
||||||
wa->dirs[i], wa->use_metadata, wa->chunk_size, wa->exclude_patterns, wa->exclude_count,
|
|
||||||
wa->include_patterns, wa->include_count, wa->max_size, wa->min_size, wa->max_depth,
|
|
||||||
wa->follow_symlinks, wa->copy_links, wa->safe_links, wa->copy_unsafe_links, wa->checksum);
|
|
||||||
if (!ds) {
|
if (!ds) {
|
||||||
mtx_lock(&wa->ps->result_mutex);
|
mtx_lock(&wa->ps->result_mutex);
|
||||||
wa->ps->failed = true;
|
wa->ps->failed = true;
|
||||||
@@ -366,6 +363,8 @@ static int parallel_worker_thread(void* arg) {
|
|||||||
cnd_broadcast(&wa->ps->result_not_empty);
|
cnd_broadcast(&wa->ps->result_not_empty);
|
||||||
cnd_broadcast(&wa->ps->result_not_full);
|
cnd_broadcast(&wa->ps->result_not_full);
|
||||||
mtx_unlock(&wa->ps->result_mutex);
|
mtx_unlock(&wa->ps->result_mutex);
|
||||||
|
for (int j = i; j < wa->dir_count; j++)
|
||||||
|
free(wa->dirs[j]);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
Chunk* chunk;
|
Chunk* chunk;
|
||||||
@@ -401,13 +400,22 @@ static int parallel_worker_thread(void* arg) {
|
|||||||
return thrd_success;
|
return thrd_success;
|
||||||
}
|
}
|
||||||
|
|
||||||
ParallelScanner* parallel_scanner_create(char* root_directory, bool use_metadata,
|
static void parallel_scanner_creation_failed(ParallelScanner* ps) {
|
||||||
unsigned long long chunk_size, char** exclude_patterns,
|
mtx_lock(&ps->result_mutex);
|
||||||
int exclude_count, char** include_patterns,
|
ps->failed = true;
|
||||||
int include_count, unsigned long long max_size,
|
atomic_store(&ps->cancelled, true);
|
||||||
unsigned long long min_size, int max_depth,
|
ps->expected_threads = ps->created_threads;
|
||||||
int num_threads, bool follow_symlinks, bool copy_links,
|
if (ps->completed >= ps->expected_threads)
|
||||||
bool safe_links, bool copy_unsafe_links, bool checksum) {
|
ps->done = true;
|
||||||
|
cnd_broadcast(&ps->result_not_empty);
|
||||||
|
cnd_broadcast(&ps->result_not_full);
|
||||||
|
mtx_unlock(&ps->result_mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
ParallelScanner* parallel_scanner_create_with_options(const char* root_directory,
|
||||||
|
const ScannerOptions* options) {
|
||||||
|
if (!root_directory || !options)
|
||||||
|
return NULL;
|
||||||
ParallelScanner* ps = calloc(1, sizeof(ParallelScanner));
|
ParallelScanner* ps = calloc(1, sizeof(ParallelScanner));
|
||||||
if (!ps)
|
if (!ps)
|
||||||
return NULL;
|
return NULL;
|
||||||
@@ -460,105 +468,27 @@ ParallelScanner* parallel_scanner_create(char* root_directory, bool use_metadata
|
|||||||
parallel_scanner_destroy(ps);
|
parallel_scanner_destroy(ps);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
struct dirent* entry;
|
const struct dirent* entry;
|
||||||
while ((entry = readdir(dir)) != NULL) {
|
while ((entry = readdir(dir)) != NULL) {
|
||||||
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
|
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
|
||||||
continue;
|
continue;
|
||||||
char* cur_path = path_cat(root_directory, entry->d_name);
|
ScannerEntry inspected;
|
||||||
if (!cur_path)
|
int inspection =
|
||||||
continue;
|
scanner_inspect_entry(options, root_directory, root_directory, entry->d_name, &inspected);
|
||||||
struct stat lstats;
|
if (inspection < 0) {
|
||||||
if (lstat(cur_path, &lstats) != 0) {
|
ps->failed = true;
|
||||||
free(cur_path);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
bool is_symlink = S_ISLNK(lstats.st_mode);
|
if (inspection == 0)
|
||||||
|
|
||||||
// Skip symlinks unless the user explicitly enabled following/copying them.
|
|
||||||
if (is_symlink && !follow_symlinks && !copy_links && !safe_links && !copy_unsafe_links) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
char* cur_path = inspected.path;
|
||||||
|
struct stat st = inspected.stats;
|
||||||
// --safe-links: reject symlinks pointing outside the source tree.
|
if (inspected.is_directory) {
|
||||||
if (is_symlink && safe_links) {
|
|
||||||
char link_target[4096];
|
|
||||||
ssize_t len = readlink(cur_path, link_target, sizeof(link_target) - 1);
|
|
||||||
if (len < 0) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
link_target[len] = 0;
|
|
||||||
if (link_target[0] == '/' ||
|
|
||||||
!safe_relative_link(root_directory, root_directory, link_target)) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// --copy-unsafe-links (without --copy-links): only copy absolute symlinks.
|
|
||||||
if (is_symlink && copy_unsafe_links && !copy_links) {
|
|
||||||
char link_target[4096];
|
|
||||||
ssize_t len = readlink(cur_path, link_target, sizeof(link_target) - 1);
|
|
||||||
if (len < 0) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
link_target[len] = 0;
|
|
||||||
bool unsafe = (link_target[0] == '/');
|
|
||||||
if (!unsafe) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Determine whether to use lstat or stat results for the entry.
|
|
||||||
struct stat st;
|
|
||||||
bool use_lstat_res = is_symlink && follow_symlinks && !copy_links;
|
|
||||||
if (use_lstat_res) {
|
|
||||||
st = lstats;
|
|
||||||
} else {
|
|
||||||
if (stat(cur_path, &st) != 0) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (S_ISDIR(st.st_mode)) {
|
|
||||||
if (!array_list_add(subdirs, cur_path)) {
|
if (!array_list_add(subdirs, cur_path)) {
|
||||||
free(cur_path);
|
free(cur_path);
|
||||||
ps->failed = true;
|
ps->failed = true;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
bool excluded = false;
|
|
||||||
for (int i = 0; i < exclude_count; i++) {
|
|
||||||
if (glob_match(exclude_patterns[i], entry->d_name)) {
|
|
||||||
excluded = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (excluded) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (include_count > 0) {
|
|
||||||
bool included = false;
|
|
||||||
for (int i = 0; i < include_count; i++) {
|
|
||||||
if (glob_match(include_patterns[i], entry->d_name)) {
|
|
||||||
included = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!included) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ((max_size > 0 && (unsigned long long)st.st_size > max_size) ||
|
|
||||||
(min_size > 0 && (unsigned long long)st.st_size < min_size)) {
|
|
||||||
free(cur_path);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
File* file = file_create(cur_path);
|
File* file = file_create(cur_path);
|
||||||
free(cur_path);
|
free(cur_path);
|
||||||
if (!file) {
|
if (!file) {
|
||||||
@@ -566,9 +496,9 @@ ParallelScanner* parallel_scanner_create(char* root_directory, bool use_metadata
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
file->data->size = st.st_size;
|
file->data->size = st.st_size;
|
||||||
if (use_metadata)
|
if (options->use_metadata)
|
||||||
file->metadata = file_metadata_create(&st);
|
file->metadata = file_metadata_create(&st);
|
||||||
if (use_metadata && !file->metadata) {
|
if (options->use_metadata && !file->metadata) {
|
||||||
file_destroy(file);
|
file_destroy(file);
|
||||||
ps->failed = true;
|
ps->failed = true;
|
||||||
continue;
|
continue;
|
||||||
@@ -581,7 +511,7 @@ ParallelScanner* parallel_scanner_create(char* root_directory, bool use_metadata
|
|||||||
}
|
}
|
||||||
closedir(dir);
|
closedir(dir);
|
||||||
|
|
||||||
unsigned long long cs = chunk_size > 0 ? chunk_size : DESIRED_CHUNK_SIZE;
|
unsigned long long cs = options->chunk_size > 0 ? options->chunk_size : DESIRED_CHUNK_SIZE;
|
||||||
if (root_files->size > 0) {
|
if (root_files->size > 0) {
|
||||||
ArrayList* batch = array_list_create(NULL);
|
ArrayList* batch = array_list_create(NULL);
|
||||||
if (!batch) {
|
if (!batch) {
|
||||||
@@ -604,7 +534,6 @@ ParallelScanner* parallel_scanner_create(char* root_directory, bool use_metadata
|
|||||||
void** items = array_list_to_array(batch);
|
void** items = array_list_to_array(batch);
|
||||||
if (!items) {
|
if (!items) {
|
||||||
ps->failed = true;
|
ps->failed = true;
|
||||||
batch->item_destroyer = file_destroy;
|
|
||||||
array_list_delete(batch);
|
array_list_delete(batch);
|
||||||
batch = NULL;
|
batch = NULL;
|
||||||
break;
|
break;
|
||||||
@@ -613,11 +542,13 @@ ParallelScanner* parallel_scanner_create(char* root_directory, bool use_metadata
|
|||||||
free(items);
|
free(items);
|
||||||
if (!c) {
|
if (!c) {
|
||||||
ps->failed = true;
|
ps->failed = true;
|
||||||
batch->item_destroyer = file_destroy;
|
|
||||||
array_list_delete(batch);
|
array_list_delete(batch);
|
||||||
batch = NULL;
|
batch = NULL;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
int batch_start = i - batch->size + 1;
|
||||||
|
for (int j = batch_start; j <= i; j++)
|
||||||
|
root_files->items[j] = NULL;
|
||||||
batch->item_destroyer = NULL;
|
batch->item_destroyer = NULL;
|
||||||
array_list_delete(batch);
|
array_list_delete(batch);
|
||||||
batch = NULL;
|
batch = NULL;
|
||||||
@@ -644,11 +575,10 @@ ParallelScanner* parallel_scanner_create(char* root_directory, bool use_metadata
|
|||||||
array_list_delete(batch);
|
array_list_delete(batch);
|
||||||
}
|
}
|
||||||
ps->initial_chunk = first;
|
ps->initial_chunk = first;
|
||||||
root_files->item_destroyer = NULL;
|
|
||||||
}
|
}
|
||||||
array_list_delete(root_files);
|
array_list_delete(root_files);
|
||||||
|
|
||||||
int n = num_threads > 0 ? num_threads : 4;
|
int n = options->num_threads > 0 ? options->num_threads : 4;
|
||||||
if (n > subdirs->size)
|
if (n > subdirs->size)
|
||||||
n = subdirs->size > 0 ? subdirs->size : 1;
|
n = subdirs->size > 0 ? subdirs->size : 1;
|
||||||
|
|
||||||
@@ -671,14 +601,14 @@ ParallelScanner* parallel_scanner_create(char* root_directory, bool use_metadata
|
|||||||
break;
|
break;
|
||||||
ParallelWorkerArg* wa = calloc(1, sizeof(ParallelWorkerArg));
|
ParallelWorkerArg* wa = calloc(1, sizeof(ParallelWorkerArg));
|
||||||
if (!wa) {
|
if (!wa) {
|
||||||
ps->failed = true;
|
parallel_scanner_creation_failed(ps);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
wa->ps = ps;
|
wa->ps = ps;
|
||||||
wa->dirs = calloc(count, sizeof(char*));
|
wa->dirs = calloc(count, sizeof(char*));
|
||||||
if (!wa->dirs) {
|
if (!wa->dirs) {
|
||||||
free(wa);
|
free(wa);
|
||||||
ps->failed = true;
|
parallel_scanner_creation_failed(ps);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
bool dup_ok = true;
|
bool dup_ok = true;
|
||||||
@@ -692,37 +622,19 @@ ParallelScanner* parallel_scanner_create(char* root_directory, bool use_metadata
|
|||||||
free(wa->dirs[j]);
|
free(wa->dirs[j]);
|
||||||
free(wa->dirs);
|
free(wa->dirs);
|
||||||
free(wa);
|
free(wa);
|
||||||
ps->failed = true;
|
parallel_scanner_creation_failed(ps);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
wa->dir_count = count;
|
wa->dir_count = count;
|
||||||
wa->use_metadata = use_metadata;
|
wa->options = *options;
|
||||||
wa->chunk_size = cs;
|
wa->options.chunk_size = cs;
|
||||||
wa->exclude_patterns = exclude_patterns;
|
|
||||||
wa->exclude_count = exclude_count;
|
|
||||||
wa->include_patterns = include_patterns;
|
|
||||||
wa->include_count = include_count;
|
|
||||||
wa->max_size = max_size;
|
|
||||||
wa->min_size = min_size;
|
|
||||||
wa->max_depth = max_depth;
|
|
||||||
wa->follow_symlinks = follow_symlinks;
|
|
||||||
wa->copy_links = copy_links;
|
|
||||||
wa->safe_links = safe_links;
|
|
||||||
wa->copy_unsafe_links = copy_unsafe_links;
|
|
||||||
wa->checksum = checksum;
|
|
||||||
start += count;
|
start += count;
|
||||||
if (thrd_create(&ps->threads[t], parallel_worker_thread, wa) != thrd_success) {
|
if (thrd_create(&ps->threads[t], parallel_worker_thread, wa) != thrd_success) {
|
||||||
for (int j = 0; j < count; j++)
|
for (int j = 0; j < count; j++)
|
||||||
free(wa->dirs[j]);
|
free(wa->dirs[j]);
|
||||||
free(wa->dirs);
|
free(wa->dirs);
|
||||||
free(wa);
|
free(wa);
|
||||||
ps->failed = true;
|
parallel_scanner_creation_failed(ps);
|
||||||
atomic_store(&ps->cancelled, true);
|
|
||||||
ps->expected_threads = ps->created_threads;
|
|
||||||
mtx_lock(&ps->result_mutex);
|
|
||||||
cnd_broadcast(&ps->result_not_empty);
|
|
||||||
cnd_broadcast(&ps->result_not_full);
|
|
||||||
mtx_unlock(&ps->result_mutex);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
ps->num_threads++;
|
ps->num_threads++;
|
||||||
@@ -733,6 +645,20 @@ ParallelScanner* parallel_scanner_create(char* root_directory, bool use_metadata
|
|||||||
return ps;
|
return ps;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ParallelScanner* parallel_scanner_create(const char* root_directory, bool use_metadata,
|
||||||
|
unsigned long long chunk_size, char** exclude_patterns,
|
||||||
|
int exclude_count, char** include_patterns,
|
||||||
|
int include_count, unsigned long long max_size,
|
||||||
|
unsigned long long min_size, int max_depth,
|
||||||
|
int num_threads, bool follow_symlinks, bool copy_links,
|
||||||
|
bool safe_links, bool copy_unsafe_links, bool checksum) {
|
||||||
|
ScannerOptions options = {use_metadata, chunk_size, exclude_patterns, exclude_count,
|
||||||
|
include_patterns, include_count, max_size, min_size,
|
||||||
|
max_depth, num_threads, follow_symlinks, copy_links,
|
||||||
|
safe_links, copy_unsafe_links, checksum};
|
||||||
|
return parallel_scanner_create_with_options(root_directory, &options);
|
||||||
|
}
|
||||||
|
|
||||||
Chunk* parallel_scanner_next(ParallelScanner* ps) {
|
Chunk* parallel_scanner_next(ParallelScanner* ps) {
|
||||||
if (ps->initial_chunk) {
|
if (ps->initial_chunk) {
|
||||||
Chunk* c = ps->initial_chunk;
|
Chunk* c = ps->initial_chunk;
|
||||||
@@ -741,6 +667,11 @@ Chunk* parallel_scanner_next(ParallelScanner* ps) {
|
|||||||
}
|
}
|
||||||
if (ps->num_threads == 0) {
|
if (ps->num_threads == 0) {
|
||||||
mtx_lock(&ps->result_mutex);
|
mtx_lock(&ps->result_mutex);
|
||||||
|
if (!queue_is_empty(ps->result_queue)) {
|
||||||
|
Chunk* chunk = queue_dequeue(ps->result_queue);
|
||||||
|
mtx_unlock(&ps->result_mutex);
|
||||||
|
return chunk;
|
||||||
|
}
|
||||||
ps->done = true;
|
ps->done = true;
|
||||||
mtx_unlock(&ps->result_mutex);
|
mtx_unlock(&ps->result_mutex);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|||||||
+23
-1
@@ -8,6 +8,24 @@
|
|||||||
#include <threads.h>
|
#include <threads.h>
|
||||||
#include <stdatomic.h>
|
#include <stdatomic.h>
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
bool use_metadata;
|
||||||
|
unsigned long long chunk_size;
|
||||||
|
char** exclude_patterns;
|
||||||
|
int exclude_count;
|
||||||
|
char** include_patterns;
|
||||||
|
int include_count;
|
||||||
|
unsigned long long max_size;
|
||||||
|
unsigned long long min_size;
|
||||||
|
int max_depth;
|
||||||
|
int num_threads;
|
||||||
|
bool follow_symlinks;
|
||||||
|
bool copy_links;
|
||||||
|
bool safe_links;
|
||||||
|
bool copy_unsafe_links;
|
||||||
|
bool checksum;
|
||||||
|
} ScannerOptions;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
Queue* directories;
|
Queue* directories;
|
||||||
DIR* current_dir;
|
DIR* current_dir;
|
||||||
@@ -53,17 +71,21 @@ DirectoryScanner* directory_scanner_create(const char* root_directory, bool use_
|
|||||||
unsigned long long min_size, int max_depth,
|
unsigned long long min_size, int max_depth,
|
||||||
bool follow_symlinks, bool copy_links, bool safe_links,
|
bool follow_symlinks, bool copy_links, bool safe_links,
|
||||||
bool copy_unsafe_links, bool checksum);
|
bool copy_unsafe_links, bool checksum);
|
||||||
|
DirectoryScanner* directory_scanner_create_with_options(const char* root_directory,
|
||||||
|
const ScannerOptions* options);
|
||||||
Chunk* directory_scanner_next(DirectoryScanner* scanner);
|
Chunk* directory_scanner_next(DirectoryScanner* scanner);
|
||||||
bool directory_scanner_failed(const DirectoryScanner* scanner);
|
bool directory_scanner_failed(const DirectoryScanner* scanner);
|
||||||
void directory_scanner_destroy(DirectoryScanner* scanner);
|
void directory_scanner_destroy(DirectoryScanner* scanner);
|
||||||
|
|
||||||
ParallelScanner* parallel_scanner_create(char* root_directory, bool use_metadata,
|
ParallelScanner* parallel_scanner_create(const char* root_directory, bool use_metadata,
|
||||||
unsigned long long chunk_size, char** exclude_patterns,
|
unsigned long long chunk_size, char** exclude_patterns,
|
||||||
int exclude_count, char** include_patterns,
|
int exclude_count, char** include_patterns,
|
||||||
int include_count, unsigned long long max_size,
|
int include_count, unsigned long long max_size,
|
||||||
unsigned long long min_size, int max_depth,
|
unsigned long long min_size, int max_depth,
|
||||||
int num_threads, bool follow_symlinks, bool copy_links,
|
int num_threads, bool follow_symlinks, bool copy_links,
|
||||||
bool safe_links, bool copy_unsafe_links, bool checksum);
|
bool safe_links, bool copy_unsafe_links, bool checksum);
|
||||||
|
ParallelScanner* parallel_scanner_create_with_options(const char* root_directory,
|
||||||
|
const ScannerOptions* options);
|
||||||
Chunk* parallel_scanner_next(ParallelScanner* scanner);
|
Chunk* parallel_scanner_next(ParallelScanner* scanner);
|
||||||
bool parallel_scanner_failed(const ParallelScanner* scanner);
|
bool parallel_scanner_failed(const ParallelScanner* scanner);
|
||||||
void parallel_scanner_destroy(ParallelScanner* scanner);
|
void parallel_scanner_destroy(ParallelScanner* scanner);
|
||||||
|
|||||||
+3
-2
@@ -1,8 +1,9 @@
|
|||||||
#include "stdio.h"
|
#include "usage.h"
|
||||||
|
#include <stdio.h>
|
||||||
#include <delta.h>
|
#include <delta.h>
|
||||||
#include <chunk.h>
|
#include <chunk.h>
|
||||||
|
|
||||||
static __attribute__((unused)) void print_usage() {
|
void print_usage(void) {
|
||||||
printf("Usage:\n");
|
printf("Usage:\n");
|
||||||
printf(" fastsync [options] <source> <destination>\n");
|
printf(" fastsync [options] <source> <destination>\n");
|
||||||
printf(" fastsync [options] --source-dir <src> --dest-dir <dst>\n");
|
printf(" fastsync [options] --source-dir <src> --dest-dir <dst>\n");
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#ifndef USAGE_H
|
||||||
|
#define USAGE_H
|
||||||
|
|
||||||
|
void print_usage(void);
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -0,0 +1,142 @@
|
|||||||
|
#include "receiver.h"
|
||||||
|
|
||||||
|
#include "chunk.h"
|
||||||
|
#include "log.h"
|
||||||
|
#include "protocol.h"
|
||||||
|
#include "utils.h"
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
|
||||||
|
static bool receiver_process_chunk(Chunk* chunk, const ReceiverSink* sink) {
|
||||||
|
if (!chunk || !sink || !sink->store_file)
|
||||||
|
return false;
|
||||||
|
for (int i = 0; i < chunk->element_count; i++) {
|
||||||
|
File* file = chunk->items[i];
|
||||||
|
if (!file) {
|
||||||
|
chunk_destroy(chunk);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
chunk->items[i] = NULL;
|
||||||
|
if (!sink->store_file(file, sink->context)) {
|
||||||
|
chunk_destroy(chunk);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
chunk_destroy(chunk);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool receiver_process_batch(Config* config, int file_descriptor) {
|
||||||
|
int count;
|
||||||
|
if (config->checksum || !receive_int(file_descriptor, &count) || count < 0 ||
|
||||||
|
count > MAX_MANIFEST_ENTRIES)
|
||||||
|
return false;
|
||||||
|
for (int i = 0; i < count; i++) {
|
||||||
|
char* check_path = receive_str(file_descriptor);
|
||||||
|
if (!check_path)
|
||||||
|
return false;
|
||||||
|
unsigned long long check_size;
|
||||||
|
long long check_mtime;
|
||||||
|
if (!receive_n_data(file_descriptor, &check_size, sizeof(check_size)) ||
|
||||||
|
!receive_n_data(file_descriptor, &check_mtime, sizeof(check_mtime))) {
|
||||||
|
free(check_path);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!utils_valid_batch_path(check_path)) {
|
||||||
|
free(check_path);
|
||||||
|
send_status(file_descriptor, STATUS_ERROR);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (check_size > MAX_RECEIVE_FILE_SIZE) {
|
||||||
|
free(check_path);
|
||||||
|
send_status(file_descriptor, STATUS_ERROR);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
char* full_path = path_cat(config->receive_root_directory, check_path);
|
||||||
|
if (!full_path) {
|
||||||
|
free(check_path);
|
||||||
|
send_status(file_descriptor, STATUS_ERROR);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
struct stat st;
|
||||||
|
bool has_old = file_stat_secure(full_path, &st);
|
||||||
|
bool match = has_old && (unsigned long long)st.st_size == check_size &&
|
||||||
|
(long long)st.st_mtime == check_mtime;
|
||||||
|
bool sent = send_status(file_descriptor, match ? STATUS_OK : STATUS_NEXT);
|
||||||
|
free(full_path);
|
||||||
|
free(check_path);
|
||||||
|
if (!sent)
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
int receiver_process(Config* config, int file_descriptor, const ReceiverSink* sink) {
|
||||||
|
Status status;
|
||||||
|
if (!receive_status(file_descriptor, &status))
|
||||||
|
return -1;
|
||||||
|
while (status == STATUS_NEXT || status == STATUS_CHUNK || status == STATUS_CHECK ||
|
||||||
|
status == STATUS_KEEPALIVE || status == STATUS_ABORT || status == STATUS_CHECK_BATCH) {
|
||||||
|
if (status == STATUS_KEEPALIVE) {
|
||||||
|
if (!send_status(file_descriptor, STATUS_KEEPALIVE))
|
||||||
|
return -1;
|
||||||
|
goto next;
|
||||||
|
}
|
||||||
|
if (status == STATUS_ABORT) {
|
||||||
|
log_message(LOG_LEVEL_INFO, "Received abort from client, cleaning up");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (status == STATUS_CHECK) {
|
||||||
|
bool skipped;
|
||||||
|
File* file = receive_incremental_check(file_descriptor, config, &skipped);
|
||||||
|
if (!skipped && (!file || !sink->store_file(file, sink->context)))
|
||||||
|
goto receive_error;
|
||||||
|
} else if (status == STATUS_CHUNK) {
|
||||||
|
Chunk* chunk = receive_chunk_data(file_descriptor, config);
|
||||||
|
if (!chunk || !receiver_process_chunk(chunk, sink))
|
||||||
|
goto receive_error;
|
||||||
|
} else if (status == STATUS_CHECK_BATCH) {
|
||||||
|
if (!receiver_process_batch(config, file_descriptor))
|
||||||
|
return -1;
|
||||||
|
goto next;
|
||||||
|
} else {
|
||||||
|
File* file = file_receive(config, file_descriptor);
|
||||||
|
if (!file) {
|
||||||
|
log_message(LOG_LEVEL_ERROR, "Failed to receive file");
|
||||||
|
goto receive_error;
|
||||||
|
}
|
||||||
|
if (!sink->store_file(file, sink->context))
|
||||||
|
goto receive_error;
|
||||||
|
}
|
||||||
|
next:
|
||||||
|
if (!receive_status(file_descriptor, &status))
|
||||||
|
goto receive_error;
|
||||||
|
}
|
||||||
|
if (status == STATUS_MANIFEST && receive_manifest(file_descriptor, config, &status) != 0)
|
||||||
|
return -1;
|
||||||
|
if (status != STATUS_FINISHED) {
|
||||||
|
log_message(LOG_LEVEL_ERROR, "Did not receive FINISHED Status");
|
||||||
|
goto receive_error;
|
||||||
|
}
|
||||||
|
if (sink->send_success && !send_status(file_descriptor, STATUS_OK))
|
||||||
|
return -1;
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
receive_error:
|
||||||
|
if (sink->send_error)
|
||||||
|
send_status(file_descriptor, STATUS_ERROR);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool receiver_save_file(File* file, void* context) {
|
||||||
|
Config* config = context;
|
||||||
|
bool success =
|
||||||
|
!config->save_to_disk || file_save_to_disk(config->receive_root_directory, file, config);
|
||||||
|
file_destroy(file);
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
|
int receiver_receive_files(Config* config, int file_descriptor) {
|
||||||
|
ReceiverSink sink = {receiver_save_file, config, true, true};
|
||||||
|
return receiver_process(config, file_descriptor, &sink);
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#ifndef RECEIVER_H
|
||||||
|
#define RECEIVER_H
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
#include "file.h"
|
||||||
|
|
||||||
|
typedef bool (*ReceiverFileSink)(File* file, void* context);
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
ReceiverFileSink store_file;
|
||||||
|
void* context;
|
||||||
|
bool send_error;
|
||||||
|
bool send_success;
|
||||||
|
} ReceiverSink;
|
||||||
|
|
||||||
|
int receiver_process(Config* config, int file_descriptor, const ReceiverSink* sink);
|
||||||
|
int receiver_receive_files(Config* config, int file_descriptor);
|
||||||
|
|
||||||
|
#endif
|
||||||
+141
-61
@@ -1,54 +1,102 @@
|
|||||||
#include "array_list.h"
|
|
||||||
#include "chunk.h"
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "data.h"
|
#include "chunk.h"
|
||||||
#include "file.h"
|
#include "file.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "multiprocessing.h"
|
#include "multiprocessing.h"
|
||||||
#include "protocol.h"
|
|
||||||
#include "queue.h"
|
#include "queue.h"
|
||||||
|
#include "receiver.h"
|
||||||
#include "transport_tcp.h"
|
#include "transport_tcp.h"
|
||||||
#include "transport_tls.h"
|
#include "transport_tls.h"
|
||||||
#include "unistd.h"
|
#include "unistd.h"
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <limits.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <limits.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <openssl/x509.h>
|
||||||
|
|
||||||
static char* authorized_root;
|
static char* authorized_root;
|
||||||
static int authorized_root_fd = -1;
|
static int authorized_root_fd = -1;
|
||||||
static bool allow_delete;
|
static bool allow_delete;
|
||||||
|
static bool allow_unauthenticated;
|
||||||
|
static const char* required_client_cn;
|
||||||
|
|
||||||
|
static bool tls_client_identity_allowed(SSL* ssl) {
|
||||||
|
if (!ssl || !required_client_cn)
|
||||||
|
return false;
|
||||||
|
X509* certificate = SSL_get1_peer_certificate(ssl);
|
||||||
|
if (!certificate)
|
||||||
|
return false;
|
||||||
|
char common_name[256];
|
||||||
|
int length = X509_NAME_get_text_by_NID(X509_get_subject_name(certificate), NID_commonName,
|
||||||
|
common_name, sizeof(common_name));
|
||||||
|
size_t required_length = strlen(required_client_cn);
|
||||||
|
bool allowed = length >= 0 && (size_t)length == required_length &&
|
||||||
|
required_length < sizeof(common_name) &&
|
||||||
|
memcmp(common_name, required_client_cn, required_length) == 0;
|
||||||
|
X509_free(certificate);
|
||||||
|
return allowed;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void release_authorization(void) {
|
||||||
|
file_set_authorized_root(-1, NULL);
|
||||||
|
utils_set_authorized_root_fd(-1);
|
||||||
|
if (authorized_root_fd >= 0)
|
||||||
|
close(authorized_root_fd);
|
||||||
|
authorized_root_fd = -1;
|
||||||
|
free(authorized_root);
|
||||||
|
authorized_root = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
static bool path_is_within(const char* root, const char* path) {
|
static bool path_is_within(const char* root, const char* path) {
|
||||||
size_t n = strlen(root);
|
size_t n = strlen(root);
|
||||||
return strncmp(root, path, n) == 0 && (path[n] == '\0' || path[n] == '/');
|
return strncmp(root, path, n) == 0 && (path[n] == '\0' || path[n] == '/');
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool valid_batch_path(const char* path) {
|
|
||||||
return path && path[0] != '\0' && path[0] != '/' && !has_path_traversal(path) &&
|
|
||||||
strchr(path, '\0') == path + strlen(path);
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool __attribute__((unused)) configure_authorization(const char* root) {
|
static bool __attribute__((unused)) configure_authorization(const char* root) {
|
||||||
char resolved[PATH_MAX];
|
char resolved[PATH_MAX];
|
||||||
if (!root || !realpath(root, resolved))
|
if (!root) {
|
||||||
|
file_set_authorized_root(-1, NULL);
|
||||||
|
utils_set_authorized_root(-1, NULL);
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
|
int root_fd = open(root, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
||||||
|
if (root_fd < 0) {
|
||||||
|
file_set_authorized_root(-1, NULL);
|
||||||
|
utils_set_authorized_root(-1, NULL);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
char fd_path[64];
|
||||||
|
int fd_path_length = snprintf(fd_path, sizeof(fd_path), "/proc/self/fd/%d", root_fd);
|
||||||
|
if (fd_path_length < 0 || (size_t)fd_path_length >= sizeof(fd_path) ||
|
||||||
|
!realpath(fd_path, resolved)) {
|
||||||
|
close(root_fd);
|
||||||
|
file_set_authorized_root(-1, NULL);
|
||||||
|
utils_set_authorized_root(-1, NULL);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
authorized_root = str_dup(resolved);
|
authorized_root = str_dup(resolved);
|
||||||
if (!authorized_root)
|
if (!authorized_root) {
|
||||||
|
close(root_fd);
|
||||||
|
file_set_authorized_root(-1, NULL);
|
||||||
|
utils_set_authorized_root(-1, NULL);
|
||||||
return false;
|
return false;
|
||||||
authorized_root_fd = open(resolved, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
|
}
|
||||||
if (authorized_root_fd < 0) {
|
authorized_root_fd = root_fd;
|
||||||
|
if (!file_set_authorized_root(authorized_root_fd, authorized_root) ||
|
||||||
|
!utils_set_authorized_root(authorized_root_fd, authorized_root)) {
|
||||||
|
file_set_authorized_root(-1, NULL);
|
||||||
|
utils_set_authorized_root(-1, NULL);
|
||||||
|
close(authorized_root_fd);
|
||||||
|
authorized_root_fd = -1;
|
||||||
free(authorized_root);
|
free(authorized_root);
|
||||||
authorized_root = NULL;
|
authorized_root = NULL;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
file_set_authorized_root(authorized_root_fd, authorized_root);
|
|
||||||
utils_set_authorized_root_fd(authorized_root_fd);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -113,14 +161,19 @@ int receive_files(Config* config, int fd) {
|
|||||||
free(check_path);
|
free(check_path);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (!valid_batch_path(check_path)) {
|
if (!utils_valid_batch_path(check_path)) {
|
||||||
free(check_path);
|
free(check_path);
|
||||||
send_status(fd, STATUS_ERROR);
|
send_status(fd, STATUS_ERROR);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
char* full_path = path_cat(config->receive_root_directory, check_path);
|
|
||||||
struct stat st;
|
struct stat st;
|
||||||
bool has_old = full_path && lstat(full_path, &st) == 0;
|
char* full_path = path_cat(config->receive_root_directory, check_path);
|
||||||
|
if (!full_path) {
|
||||||
|
free(check_path);
|
||||||
|
send_status(fd, STATUS_ERROR);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
bool has_old = full_path && file_stat_secure(full_path, &st);
|
||||||
bool match = has_old && (unsigned long long)st.st_size == check_size &&
|
bool match = has_old && (unsigned long long)st.st_size == check_size &&
|
||||||
(long long)st.st_mtime == check_mtime;
|
(long long)st.st_mtime == check_mtime;
|
||||||
bool sent = send_status(fd, match ? STATUS_OK : STATUS_NEXT);
|
bool sent = send_status(fd, match ? STATUS_OK : STATUS_NEXT);
|
||||||
@@ -153,9 +206,10 @@ int receive_files(Config* config, int fd) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (status == STATUS_MANIFEST) {
|
if (status == STATUS_MANIFEST) {
|
||||||
if (receive_manifest(fd, config, &status) != 0)
|
if (receive_manifest(fd, config, &status) != 0) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (status != STATUS_FINISHED) {
|
if (status != STATUS_FINISHED) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Did not receive FINISHED Status");
|
log_message(LOG_LEVEL_ERROR, "Did not receive FINISHED Status");
|
||||||
send_status(fd, STATUS_ERROR);
|
send_status(fd, STATUS_ERROR);
|
||||||
@@ -167,39 +221,59 @@ int receive_files(Config* config, int fd) {
|
|||||||
|
|
||||||
void handler(int file_descriptor) {
|
void handler(int file_descriptor) {
|
||||||
SSL* ssl = io_get_ssl();
|
SSL* ssl = io_get_ssl();
|
||||||
|
ProtocolSession session;
|
||||||
|
protocol_session_init(&session, file_descriptor, file_descriptor);
|
||||||
|
protocol_session_set_ssl(&session, ssl);
|
||||||
|
protocol_session_bind(&session);
|
||||||
Config* config = config_receive(file_descriptor);
|
Config* config = config_receive(file_descriptor);
|
||||||
if (config == NULL) {
|
if (config == NULL) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to receive config");
|
log_message(LOG_LEVEL_ERROR, "Failed to receive config");
|
||||||
close(file_descriptor);
|
close(file_descriptor);
|
||||||
|
protocol_session_unbind();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!authorized_root) {
|
if (!authorized_root) {
|
||||||
log_message(LOG_LEVEL_ERROR, "No server-side destination root configured");
|
log_message(LOG_LEVEL_ERROR, "No server-side destination root configured");
|
||||||
config_delete(config);
|
config_delete(config);
|
||||||
close(file_descriptor);
|
close(file_descriptor);
|
||||||
|
protocol_session_unbind();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
char resolved_destination[PATH_MAX];
|
if (!allow_unauthenticated && ssl == NULL) {
|
||||||
char* canonical_destination = realpath(config->receive_root_directory, NULL);
|
log_message(LOG_LEVEL_ERROR, "Rejected unauthenticated plaintext connection");
|
||||||
const char* destination =
|
config_delete(config);
|
||||||
canonical_destination ? canonical_destination : config->receive_root_directory;
|
close(file_descriptor);
|
||||||
if (has_path_traversal(destination) || !path_is_within(authorized_root, destination)) {
|
protocol_session_unbind();
|
||||||
log_message(LOG_LEVEL_ERROR, "Rejected destination outside authorized root");
|
return;
|
||||||
free(canonical_destination);
|
}
|
||||||
|
if (ssl && required_client_cn && !tls_client_identity_allowed(ssl)) {
|
||||||
|
log_message(LOG_LEVEL_ERROR, "Rejected TLS client with unauthorized identity");
|
||||||
config_delete(config);
|
config_delete(config);
|
||||||
close(file_descriptor);
|
close(file_descriptor);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (canonical_destination)
|
char* destination = config->receive_root_directory;
|
||||||
snprintf(resolved_destination, sizeof(resolved_destination), "%s", canonical_destination);
|
char* joined_destination = NULL;
|
||||||
else
|
if (destination && destination[0] != '/')
|
||||||
snprintf(resolved_destination, sizeof(resolved_destination), "%s", destination);
|
joined_destination = path_cat(authorized_root, destination);
|
||||||
free(canonical_destination);
|
if (joined_destination)
|
||||||
|
destination = joined_destination;
|
||||||
|
if (!destination || has_path_traversal(destination) ||
|
||||||
|
!path_is_within(authorized_root, destination)) {
|
||||||
|
log_message(LOG_LEVEL_ERROR, "Rejected destination outside authorized root");
|
||||||
|
free(joined_destination);
|
||||||
|
config_delete(config);
|
||||||
|
close(file_descriptor);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (joined_destination) {
|
||||||
free(config->receive_root_directory);
|
free(config->receive_root_directory);
|
||||||
config->receive_root_directory = str_dup(resolved_destination);
|
config->receive_root_directory = joined_destination;
|
||||||
|
}
|
||||||
if (!config->receive_root_directory) {
|
if (!config->receive_root_directory) {
|
||||||
config_delete(config);
|
config_delete(config);
|
||||||
close(file_descriptor);
|
close(file_descriptor);
|
||||||
|
protocol_session_unbind();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
config->use_delete = config->use_delete && allow_delete;
|
config->use_delete = config->use_delete && allow_delete;
|
||||||
@@ -208,6 +282,7 @@ void handler(int file_descriptor) {
|
|||||||
if (q == NULL) {
|
if (q == NULL) {
|
||||||
config_delete(config);
|
config_delete(config);
|
||||||
close(file_descriptor);
|
close(file_descriptor);
|
||||||
|
protocol_session_unbind();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
PipelineContextReceiver* context =
|
PipelineContextReceiver* context =
|
||||||
@@ -216,14 +291,15 @@ void handler(int file_descriptor) {
|
|||||||
queue_destroy(q);
|
queue_destroy(q);
|
||||||
config_delete(config);
|
config_delete(config);
|
||||||
close(file_descriptor);
|
close(file_descriptor);
|
||||||
|
protocol_session_unbind();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
context->session.total_allocated_bytes = session.total_allocated_bytes;
|
||||||
thrd_t receiver, writer;
|
thrd_t receiver, writer;
|
||||||
bool receiver_created = false;
|
bool receiver_created = thrd_create(&receiver, receive_thread, context) == thrd_success;
|
||||||
bool writer_created = false;
|
bool writer_created = false;
|
||||||
receiver_created = (thrd_create(&receiver, receive_thread, context) == thrd_success);
|
|
||||||
if (receiver_created)
|
if (receiver_created)
|
||||||
writer_created = (thrd_create(&writer, write_thread, context) == thrd_success);
|
writer_created = thrd_create(&writer, write_thread, context) == thrd_success;
|
||||||
if (!receiver_created || !writer_created) {
|
if (!receiver_created || !writer_created) {
|
||||||
perror("Error creating Threads");
|
perror("Error creating Threads");
|
||||||
if (receiver_created) {
|
if (receiver_created) {
|
||||||
@@ -240,22 +316,23 @@ void handler(int file_descriptor) {
|
|||||||
if (writer_created)
|
if (writer_created)
|
||||||
thrd_join(writer, NULL);
|
thrd_join(writer, NULL);
|
||||||
pipeline_context_receiver_destroy(context);
|
pipeline_context_receiver_destroy(context);
|
||||||
|
protocol_session_unbind();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
int receiver_result;
|
int receiver_result;
|
||||||
int writer_result;
|
int writer_result;
|
||||||
thrd_join(receiver, &receiver_result);
|
thrd_join(receiver, &receiver_result);
|
||||||
thrd_join(writer, &writer_result);
|
thrd_join(writer, &writer_result);
|
||||||
if (receiver_result == thrd_success && writer_result == thrd_success)
|
send_status(file_descriptor, receiver_result == thrd_success && writer_result == thrd_success
|
||||||
send_status(file_descriptor, STATUS_OK);
|
? STATUS_OK
|
||||||
else
|
: STATUS_ERROR);
|
||||||
send_status(file_descriptor, STATUS_ERROR);
|
|
||||||
pipeline_context_receiver_destroy(context);
|
pipeline_context_receiver_destroy(context);
|
||||||
} else {
|
} else {
|
||||||
if (receive_files(config, file_descriptor) != 0)
|
if (receiver_receive_files(config, file_descriptor) != 0)
|
||||||
log_message(LOG_LEVEL_ERROR, "Transfer failed");
|
log_message(LOG_LEVEL_ERROR, "Transfer failed");
|
||||||
config_delete(config);
|
config_delete(config);
|
||||||
}
|
}
|
||||||
|
protocol_session_unbind();
|
||||||
close(file_descriptor);
|
close(file_descriptor);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -264,16 +341,14 @@ static Server* g_server = NULL;
|
|||||||
|
|
||||||
static void cleanup(int sig) {
|
static void cleanup(int sig) {
|
||||||
(void)sig;
|
(void)sig;
|
||||||
if (g_server) {
|
if (g_server)
|
||||||
server_delete(&g_server);
|
server_delete(&g_server);
|
||||||
}
|
|
||||||
_exit(0);
|
_exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void print_server_usage(void) {
|
static void print_server_usage(void) {
|
||||||
printf("FastSync Server\n");
|
printf("FastSync Server\n");
|
||||||
printf("Usage: fastsync-server [options]\n");
|
printf("Usage: fastsync-server [options]\n\n");
|
||||||
printf("\n");
|
|
||||||
printf("Options:\n");
|
printf("Options:\n");
|
||||||
printf(" --stdio Run in stdio mode (SSH transport)\n");
|
printf(" --stdio Run in stdio mode (SSH transport)\n");
|
||||||
printf(" -p <port> TCP port (default: 8080, range: 1-65535)\n");
|
printf(" -p <port> TCP port (default: 8080, range: 1-65535)\n");
|
||||||
@@ -281,17 +356,17 @@ static void print_server_usage(void) {
|
|||||||
printf(" --cert <path> TLS certificate file (PEM)\n");
|
printf(" --cert <path> TLS certificate file (PEM)\n");
|
||||||
printf(" --key <path> TLS private key file (PEM)\n");
|
printf(" --key <path> TLS private key file (PEM)\n");
|
||||||
printf(" --ca <path> TLS CA certificate file (PEM)\n");
|
printf(" --ca <path> TLS CA certificate file (PEM)\n");
|
||||||
|
printf(" --client-cn <name> Required TLS client certificate CN\n");
|
||||||
printf(" --destination-root <path> Authorized destination root (default: .)\n");
|
printf(" --destination-root <path> Authorized destination root (default: .)\n");
|
||||||
printf(" --allow-delete Permit manifest deletion\n");
|
printf(" --allow-delete Permit manifest deletion\n");
|
||||||
|
printf(" --allow-unauthenticated Allow plaintext/anonymous network clients\n");
|
||||||
printf(" -v, --verbose Enable debug logging\n");
|
printf(" -v, --verbose Enable debug logging\n");
|
||||||
printf(" --help Show this help\n");
|
printf(" --help Show this help\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char* argv[]) {
|
int main(int argc, char* argv[]) {
|
||||||
bool use_tls = false;
|
bool use_tls = false;
|
||||||
char* tls_cert = NULL;
|
char *tls_cert = NULL, *tls_key = NULL, *tls_ca = NULL;
|
||||||
char* tls_key = NULL;
|
|
||||||
char* tls_ca = NULL;
|
|
||||||
int port = 8080;
|
int port = 8080;
|
||||||
const char* destination_root = ".";
|
const char* destination_root = ".";
|
||||||
bool stdio_mode = false;
|
bool stdio_mode = false;
|
||||||
@@ -313,10 +388,14 @@ int main(int argc, char* argv[]) {
|
|||||||
tls_key = argv[++i];
|
tls_key = argv[++i];
|
||||||
} else if (strcmp(argv[i], "--ca") == 0 && i + 1 < argc) {
|
} else if (strcmp(argv[i], "--ca") == 0 && i + 1 < argc) {
|
||||||
tls_ca = argv[++i];
|
tls_ca = argv[++i];
|
||||||
|
} else if (strcmp(argv[i], "--client-cn") == 0 && i + 1 < argc) {
|
||||||
|
required_client_cn = argv[++i];
|
||||||
} else if (strcmp(argv[i], "--destination-root") == 0 && i + 1 < argc) {
|
} else if (strcmp(argv[i], "--destination-root") == 0 && i + 1 < argc) {
|
||||||
destination_root = argv[++i];
|
destination_root = argv[++i];
|
||||||
} else if (strcmp(argv[i], "--allow-delete") == 0) {
|
} else if (strcmp(argv[i], "--allow-delete") == 0) {
|
||||||
allow_delete = true;
|
allow_delete = true;
|
||||||
|
} else if (strcmp(argv[i], "--allow-unauthenticated") == 0) {
|
||||||
|
allow_unauthenticated = true;
|
||||||
} else if (strcmp(argv[i], "-p") == 0 && i + 1 < argc) {
|
} else if (strcmp(argv[i], "-p") == 0 && i + 1 < argc) {
|
||||||
char* end;
|
char* end;
|
||||||
long p = strtol(argv[++i], &end, 10);
|
long p = strtol(argv[++i], &end, 10);
|
||||||
@@ -331,11 +410,8 @@ int main(int argc, char* argv[]) {
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (tls_ca && !use_tls)
|
||||||
if (tls_ca && !use_tls) {
|
|
||||||
log_message(LOG_LEVEL_WARNING, "--ca has no effect without --tls");
|
log_message(LOG_LEVEL_WARNING, "--ca has no effect without --tls");
|
||||||
}
|
|
||||||
|
|
||||||
signal(SIGINT, cleanup);
|
signal(SIGINT, cleanup);
|
||||||
signal(SIGTERM, cleanup);
|
signal(SIGTERM, cleanup);
|
||||||
if (!configure_authorization(destination_root)) {
|
if (!configure_authorization(destination_root)) {
|
||||||
@@ -343,35 +419,39 @@ int main(int argc, char* argv[]) {
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if (stdio_mode) {
|
if (stdio_mode) {
|
||||||
|
/* SSH authenticates the stdio transport outside of FastSync. */
|
||||||
|
allow_unauthenticated = true;
|
||||||
io_set_fds(STDIN_FILENO, STDOUT_FILENO);
|
io_set_fds(STDIN_FILENO, STDOUT_FILENO);
|
||||||
handler(STDIN_FILENO);
|
handler(STDIN_FILENO);
|
||||||
file_set_authorized_root(-1, NULL);
|
release_authorization();
|
||||||
utils_set_authorized_root_fd(-1);
|
|
||||||
close(authorized_root_fd);
|
|
||||||
free(authorized_root);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
g_server = server_create(port);
|
g_server = server_create(port);
|
||||||
if (g_server == NULL) {
|
if (!g_server) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to create server");
|
log_message(LOG_LEVEL_ERROR, "Failed to create server");
|
||||||
|
release_authorization();
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if (use_tls) {
|
if (use_tls) {
|
||||||
if (!tls_cert || !tls_key) {
|
if (!tls_cert || !tls_key || !tls_ca || !required_client_cn) {
|
||||||
fprintf(stderr, "Error: --tls requires --cert and --key\n");
|
fprintf(stderr, "Error: --tls requires --cert, --key, --ca, and --client-cn\n");
|
||||||
server_delete(&g_server);
|
server_delete(&g_server);
|
||||||
|
release_authorization();
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
tls_global_init();
|
tls_global_init();
|
||||||
if (!server_create_tls(g_server, tls_cert, tls_key, tls_ca)) {
|
if (!server_create_tls(g_server, tls_cert, tls_key, tls_ca)) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to set up TLS");
|
log_message(LOG_LEVEL_ERROR, "Failed to set up TLS");
|
||||||
server_delete(&g_server);
|
server_delete(&g_server);
|
||||||
|
release_authorization();
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
server_listen_tls(g_server, handler);
|
server_listen_tls(g_server, handler);
|
||||||
} else {
|
} else {
|
||||||
server_listen(g_server, handler);
|
server_listen(g_server, handler);
|
||||||
}
|
}
|
||||||
|
server_delete(&g_server);
|
||||||
|
release_authorization();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif /* !FASTSYNC_SERVER_AS_LIB */
|
#endif
|
||||||
|
|||||||
+109
-13
@@ -1,4 +1,6 @@
|
|||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <limits.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
@@ -11,22 +13,34 @@
|
|||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "metadata.h"
|
#include "metadata.h"
|
||||||
#include "protocol.h"
|
#include "protocol.h"
|
||||||
|
#include "utils.h"
|
||||||
|
|
||||||
/* Maximum individual file data size within a chunk (64 MB) */
|
/* Maximum individual file data size within a chunk (64 MB) */
|
||||||
#define MAX_FILE_DATA_SIZE (64ULL * 1024 * 1024)
|
#define MAX_FILE_DATA_SIZE (64ULL * 1024 * 1024)
|
||||||
|
#define MAX_FILES_PER_CHUNK 65536U
|
||||||
|
|
||||||
Chunk* chunk_create(File** items, int element_count) {
|
Chunk* chunk_create(File** items, int element_count) {
|
||||||
|
if (element_count < 0 || (element_count > 0 && items == NULL))
|
||||||
|
return NULL;
|
||||||
Chunk* chunk = (Chunk*)malloc(sizeof(Chunk));
|
Chunk* chunk = (Chunk*)malloc(sizeof(Chunk));
|
||||||
if (chunk == NULL) {
|
if (chunk == NULL) {
|
||||||
perror("ERROR: Could not allocate memory for chunk structure");
|
perror("ERROR: Could not allocate memory for chunk structure");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
chunk->items = (File**)malloc(element_count * sizeof(File*));
|
if (element_count == 0) {
|
||||||
|
chunk->items = NULL;
|
||||||
|
} else {
|
||||||
|
if ((size_t)element_count > SIZE_MAX / sizeof(File*)) {
|
||||||
|
free(chunk);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
chunk->items = (File**)malloc((size_t)element_count * sizeof(File*));
|
||||||
if (chunk->items == NULL) {
|
if (chunk->items == NULL) {
|
||||||
free(chunk);
|
free(chunk);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
for (int i = 0; i < element_count; i++) {
|
for (int i = 0; i < element_count; i++) {
|
||||||
chunk->items[i] = items[i];
|
chunk->items[i] = items[i];
|
||||||
@@ -50,15 +64,37 @@ void chunk_destroy(void* item) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static unsigned long long per_file_serialize_size(File* file, bool use_metadata) {
|
static unsigned long long per_file_serialize_size(File* file, bool use_metadata) {
|
||||||
return sizeof(size_t) + strlen(file->path) +
|
unsigned long long size = sizeof(size_t);
|
||||||
(use_metadata ? sizeof(int) + (file->metadata ? FILE_METADATA_WIRE_SIZE : 0) : 0) +
|
size_t path_len = strlen(file->path);
|
||||||
sizeof(size_t) + file->data->size;
|
unsigned long long metadata_size =
|
||||||
|
use_metadata ? sizeof(int) + (file->metadata ? FILE_METADATA_WIRE_SIZE : 0) : 0;
|
||||||
|
if ((unsigned long long)path_len > ULLONG_MAX - size)
|
||||||
|
return 0;
|
||||||
|
size += path_len;
|
||||||
|
if (metadata_size > ULLONG_MAX - size)
|
||||||
|
return 0;
|
||||||
|
size += metadata_size;
|
||||||
|
if (sizeof(size_t) > ULLONG_MAX - size)
|
||||||
|
return 0;
|
||||||
|
size += sizeof(size_t);
|
||||||
|
if ((unsigned long long)file->data->size > ULLONG_MAX - size)
|
||||||
|
return 0;
|
||||||
|
return size + file->data->size;
|
||||||
}
|
}
|
||||||
|
|
||||||
Data* chunk_serialize(Chunk* chunk, bool use_metadata) {
|
Data* chunk_serialize(Chunk* chunk, bool use_metadata) {
|
||||||
|
if (!chunk || chunk->element_count < 0 || (chunk->element_count > 0 && chunk->items == NULL))
|
||||||
|
return NULL;
|
||||||
unsigned long long data_size = 0;
|
unsigned long long data_size = 0;
|
||||||
for (int i = 0; i < chunk->element_count; i++) {
|
for (int i = 0; i < chunk->element_count; i++) {
|
||||||
data_size += per_file_serialize_size(chunk->items[i], use_metadata);
|
if (!chunk->items[i] || !chunk->items[i]->path || !chunk->items[i]->data ||
|
||||||
|
(chunk->items[i]->data->size > 0 && !chunk->items[i]->data->data) ||
|
||||||
|
chunk->items[i]->path[0] == '\0' || has_path_traversal(chunk->items[i]->path))
|
||||||
|
return NULL;
|
||||||
|
unsigned long long file_size = per_file_serialize_size(chunk->items[i], use_metadata);
|
||||||
|
if (file_size == 0 || file_size > ULLONG_MAX - data_size || data_size + file_size > SIZE_MAX)
|
||||||
|
return NULL;
|
||||||
|
data_size += file_size;
|
||||||
}
|
}
|
||||||
Data* data = data_create_empty(data_size);
|
Data* data = data_create_empty(data_size);
|
||||||
if (data == NULL) {
|
if (data == NULL) {
|
||||||
@@ -87,11 +123,20 @@ Data* chunk_serialize(Chunk* chunk, bool use_metadata) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Chunk* chunk_deserialize(Data* data, bool use_metadata) {
|
Chunk* chunk_deserialize(Data* data, bool use_metadata) {
|
||||||
|
if (!data || (!data->data && data->size != 0))
|
||||||
|
return NULL;
|
||||||
ArrayList* files = array_list_create(file_destroy);
|
ArrayList* files = array_list_create(file_destroy);
|
||||||
|
if (files == NULL)
|
||||||
|
return NULL;
|
||||||
char* data_pointer = data->data;
|
char* data_pointer = data->data;
|
||||||
size_t remaining_size = data->size;
|
size_t remaining_size = data->size;
|
||||||
|
|
||||||
while (remaining_size > 0) {
|
while (remaining_size > 0) {
|
||||||
|
if ((unsigned int)files->size >= MAX_FILES_PER_CHUNK) {
|
||||||
|
log_message(LOG_LEVEL_ERROR, "Chunk contains too many files");
|
||||||
|
array_list_delete(files);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
if (remaining_size < sizeof(size_t)) {
|
if (remaining_size < sizeof(size_t)) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Invalid chunk format: not enough data for path length");
|
log_message(LOG_LEVEL_ERROR, "Invalid chunk format: not enough data for path length");
|
||||||
array_list_delete(files);
|
array_list_delete(files);
|
||||||
@@ -103,12 +148,16 @@ Chunk* chunk_deserialize(Data* data, bool use_metadata) {
|
|||||||
data_pointer += sizeof(size_t);
|
data_pointer += sizeof(size_t);
|
||||||
remaining_size -= sizeof(size_t);
|
remaining_size -= sizeof(size_t);
|
||||||
|
|
||||||
if (remaining_size < path_len) {
|
if (path_len > SIZE_MAX - 1 || remaining_size < path_len) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Invalid chunk format: not enough data for path");
|
log_message(LOG_LEVEL_ERROR, "Invalid chunk format: not enough data for path");
|
||||||
array_list_delete(files);
|
array_list_delete(files);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (path_len == SIZE_MAX) {
|
||||||
|
array_list_delete(files);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
char* path = malloc(path_len + 1);
|
char* path = malloc(path_len + 1);
|
||||||
if (path == NULL) {
|
if (path == NULL) {
|
||||||
perror("Could not allocate memory for file path");
|
perror("Could not allocate memory for file path");
|
||||||
@@ -117,34 +166,59 @@ Chunk* chunk_deserialize(Data* data, bool use_metadata) {
|
|||||||
}
|
}
|
||||||
memcpy(path, data_pointer, path_len);
|
memcpy(path, data_pointer, path_len);
|
||||||
path[path_len] = '\0';
|
path[path_len] = '\0';
|
||||||
|
if (memchr(path, '\0', path_len) != NULL) {
|
||||||
|
free(path);
|
||||||
|
array_list_delete(files);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
data_pointer += path_len;
|
data_pointer += path_len;
|
||||||
remaining_size -= path_len;
|
remaining_size -= path_len;
|
||||||
|
|
||||||
|
if (path_len == 0 || has_path_traversal(path)) {
|
||||||
|
free(path);
|
||||||
|
array_list_delete(files);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
File* file = file_create(path);
|
File* file = file_create(path);
|
||||||
free(path);
|
free(path);
|
||||||
|
if (file == NULL) {
|
||||||
|
array_list_delete(files);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
if (use_metadata) {
|
if (use_metadata) {
|
||||||
if (remaining_size < sizeof(int)) {
|
if (remaining_size < sizeof(int)) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Invalid chunk format: not enough data for metadata");
|
log_message(LOG_LEVEL_ERROR, "Invalid chunk format: not enough data for metadata");
|
||||||
|
file_destroy(file);
|
||||||
array_list_delete(files);
|
array_list_delete(files);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
// Peek at present flag to determine total size needed before reading
|
// Peek at present flag to determine total size needed before reading
|
||||||
int present_flag;
|
int present_flag;
|
||||||
memcpy(&present_flag, data_pointer, sizeof(int));
|
memcpy(&present_flag, data_pointer, sizeof(int));
|
||||||
if (present_flag && remaining_size < sizeof(int) + FILE_METADATA_WIRE_SIZE) {
|
if ((present_flag != 0 && present_flag != 1) ||
|
||||||
|
(present_flag == 1 && remaining_size < sizeof(int) + FILE_METADATA_WIRE_SIZE)) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Invalid chunk format: not enough data for metadata body");
|
log_message(LOG_LEVEL_ERROR, "Invalid chunk format: not enough data for metadata body");
|
||||||
|
file_destroy(file);
|
||||||
array_list_delete(files);
|
array_list_delete(files);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
file->metadata = metadata_from_buf(&data_pointer);
|
file->metadata = metadata_from_buf(&data_pointer);
|
||||||
remaining_size -= sizeof(int);
|
remaining_size -= sizeof(int);
|
||||||
if (file->metadata)
|
if (present_flag == 1) {
|
||||||
|
if (file->metadata == NULL) {
|
||||||
|
file_destroy(file);
|
||||||
|
array_list_delete(files);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
remaining_size -= FILE_METADATA_WIRE_SIZE;
|
remaining_size -= FILE_METADATA_WIRE_SIZE;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (remaining_size < sizeof(size_t)) {
|
if (remaining_size < sizeof(size_t)) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Invalid chunk format: not enough data for data size");
|
log_message(LOG_LEVEL_ERROR, "Invalid chunk format: not enough data for data size");
|
||||||
|
file_destroy(file);
|
||||||
array_list_delete(files);
|
array_list_delete(files);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -156,6 +230,7 @@ Chunk* chunk_deserialize(Data* data, bool use_metadata) {
|
|||||||
|
|
||||||
if (remaining_size < file_data_size) {
|
if (remaining_size < file_data_size) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Invalid chunk format: not enough data for file content");
|
log_message(LOG_LEVEL_ERROR, "Invalid chunk format: not enough data for file content");
|
||||||
|
file_destroy(file);
|
||||||
array_list_delete(files);
|
array_list_delete(files);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -164,29 +239,50 @@ Chunk* chunk_deserialize(Data* data, bool use_metadata) {
|
|||||||
if (file_data_size > MAX_FILE_DATA_SIZE) {
|
if (file_data_size > MAX_FILE_DATA_SIZE) {
|
||||||
log_message(LOG_LEVEL_ERROR, "File data size %zu exceeds maximum %llu", file_data_size,
|
log_message(LOG_LEVEL_ERROR, "File data size %zu exceeds maximum %llu", file_data_size,
|
||||||
(unsigned long long)MAX_FILE_DATA_SIZE);
|
(unsigned long long)MAX_FILE_DATA_SIZE);
|
||||||
|
file_destroy(file);
|
||||||
array_list_delete(files);
|
array_list_delete(files);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void* file_data = malloc(file_data_size);
|
size_t allocation_size = file_data_size > 0 ? file_data_size : 1;
|
||||||
|
void* file_data = malloc(allocation_size);
|
||||||
if (file_data == NULL) {
|
if (file_data == NULL) {
|
||||||
perror("Could not allocate memory for file data");
|
perror("Could not allocate memory for file data");
|
||||||
|
file_destroy(file);
|
||||||
array_list_delete(files);
|
array_list_delete(files);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
memcpy(file_data, data_pointer, file_data_size);
|
memcpy(file_data, data_pointer, file_data_size);
|
||||||
|
Data* replacement = data_create(file_data, file_data_size);
|
||||||
|
if (replacement == NULL) {
|
||||||
|
file_destroy(file);
|
||||||
|
array_list_delete(files);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
data_destroy(file->data);
|
data_destroy(file->data);
|
||||||
file->data = data_create(file_data, file_data_size);
|
file->data = replacement;
|
||||||
data_pointer += file_data_size;
|
data_pointer += file_data_size;
|
||||||
remaining_size -= file_data_size;
|
remaining_size -= file_data_size;
|
||||||
|
|
||||||
array_list_add(files, file);
|
if (!array_list_add(files, file)) {
|
||||||
|
file_destroy(file);
|
||||||
|
array_list_delete(files);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
File** file_array = (File**)array_list_to_array(files);
|
File** file_array = (File**)array_list_to_array(files);
|
||||||
|
if (files->size > 0 && file_array == NULL) {
|
||||||
|
array_list_delete(files);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
Chunk* chunk = chunk_create(file_array, files->size);
|
Chunk* chunk = chunk_create(file_array, files->size);
|
||||||
|
|
||||||
free(file_array);
|
free(file_array);
|
||||||
|
if (chunk == NULL) {
|
||||||
|
array_list_delete(files);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
files->item_destroyer = NULL;
|
files->item_destroyer = NULL;
|
||||||
array_list_delete(files);
|
array_list_delete(files);
|
||||||
|
|
||||||
@@ -207,14 +303,14 @@ Data* chunk_compress(Chunk* chunk, int compression_level, bool use_metadata) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Chunk* receive_chunk_data(int fd, const Config* config) {
|
Chunk* receive_chunk_data(int fd, const Config* config) {
|
||||||
Data* chunk_data = receive_data(fd);
|
Data* chunk_data = receive_data_limited(fd, MAX_CHUNK_SIZE);
|
||||||
if (chunk_data == NULL) {
|
if (chunk_data == NULL) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to receive chunk data");
|
log_message(LOG_LEVEL_ERROR, "Failed to receive chunk data");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
Data* data_to_process = chunk_data;
|
Data* data_to_process = chunk_data;
|
||||||
if (config->use_compression) {
|
if (config->use_compression) {
|
||||||
data_to_process = data_decompress(chunk_data);
|
data_to_process = data_decompress_limited(chunk_data, MAX_CHUNK_SIZE);
|
||||||
data_destroy(chunk_data);
|
data_destroy(chunk_data);
|
||||||
if (data_to_process == NULL) {
|
if (data_to_process == NULL) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to decompress chunk");
|
log_message(LOG_LEVEL_ERROR, "Failed to decompress chunk");
|
||||||
|
|||||||
@@ -2,6 +2,8 @@
|
|||||||
#include "data.h"
|
#include "data.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <limits.h>
|
||||||
|
#include <stdint.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <strings.h>
|
#include <strings.h>
|
||||||
#include <zstd.h>
|
#include <zstd.h>
|
||||||
@@ -69,7 +71,10 @@ Data* data_compress(Data* data_to_compress, int compression_level) {
|
|||||||
return compressed_data;
|
return compressed_data;
|
||||||
}
|
}
|
||||||
|
|
||||||
Data* data_decompress(Data* compressed_data) {
|
Data* data_decompress_limited(Data* compressed_data, size_t maximum_size) {
|
||||||
|
if (!compressed_data || (!compressed_data->data && compressed_data->size != 0) ||
|
||||||
|
maximum_size == 0)
|
||||||
|
return NULL;
|
||||||
log_message(LOG_LEVEL_DEBUG, "Start to decompress data");
|
log_message(LOG_LEVEL_DEBUG, "Start to decompress data");
|
||||||
unsigned long long dst_size =
|
unsigned long long dst_size =
|
||||||
ZSTD_getFrameContentSize(compressed_data->data, compressed_data->size);
|
ZSTD_getFrameContentSize(compressed_data->data, compressed_data->size);
|
||||||
@@ -82,15 +87,16 @@ Data* data_decompress(Data* compressed_data) {
|
|||||||
// ZSTD_CONTENTSIZE_UNKNOWN (~2^64) can cause massive allocation;
|
// ZSTD_CONTENTSIZE_UNKNOWN (~2^64) can cause massive allocation;
|
||||||
// fall back to a conservative estimate (3x compressed size) when unknown.
|
// fall back to a conservative estimate (3x compressed size) when unknown.
|
||||||
if (dst_size == ZSTD_CONTENTSIZE_UNKNOWN) {
|
if (dst_size == ZSTD_CONTENTSIZE_UNKNOWN) {
|
||||||
|
if (compressed_data->size > ULLONG_MAX / 3)
|
||||||
|
return NULL;
|
||||||
dst_size = compressed_data->size * 3;
|
dst_size = compressed_data->size * 3;
|
||||||
if (dst_size < INITIAL_DECOMPRESS_BUF_SIZE)
|
if (dst_size < INITIAL_DECOMPRESS_BUF_SIZE)
|
||||||
dst_size = INITIAL_DECOMPRESS_BUF_SIZE;
|
dst_size = INITIAL_DECOMPRESS_BUF_SIZE;
|
||||||
if (dst_size > MAX_DECOMPRESSED_SIZE)
|
|
||||||
dst_size = MAX_DECOMPRESSED_SIZE;
|
|
||||||
}
|
}
|
||||||
if (dst_size > MAX_DECOMPRESSED_SIZE) {
|
unsigned long long hard_limit =
|
||||||
log_message(LOG_LEVEL_ERROR, "Declared decompressed size exceeds %llu bytes",
|
maximum_size < MAX_DECOMPRESSED_SIZE ? maximum_size : MAX_DECOMPRESSED_SIZE;
|
||||||
(unsigned long long)MAX_DECOMPRESSED_SIZE);
|
if (dst_size > hard_limit) {
|
||||||
|
log_message(LOG_LEVEL_ERROR, "Declared decompressed size exceeds %llu bytes", hard_limit);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -101,6 +107,8 @@ Data* data_decompress(Data* compressed_data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
size_t buf_size = (dst_size > 0) ? (size_t)dst_size : INITIAL_DECOMPRESS_BUF_SIZE;
|
size_t buf_size = (dst_size > 0) ? (size_t)dst_size : INITIAL_DECOMPRESS_BUF_SIZE;
|
||||||
|
if (buf_size > maximum_size)
|
||||||
|
buf_size = maximum_size;
|
||||||
Data* uncompressed_data = data_create_empty(buf_size);
|
Data* uncompressed_data = data_create_empty(buf_size);
|
||||||
if (!uncompressed_data) {
|
if (!uncompressed_data) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to allocate decompression buffer");
|
log_message(LOG_LEVEL_ERROR, "Failed to allocate decompression buffer");
|
||||||
@@ -121,7 +129,7 @@ Data* data_decompress(Data* compressed_data) {
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (ret > 0 && output.pos == output.size) {
|
if (ret > 0 && output.pos == output.size) {
|
||||||
if (buf_size >= MAX_DECOMPRESSED_SIZE) {
|
if (buf_size >= hard_limit || buf_size > SIZE_MAX / 2) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Decompressed data exceeds %llu bytes",
|
log_message(LOG_LEVEL_ERROR, "Decompressed data exceeds %llu bytes",
|
||||||
(unsigned long long)MAX_DECOMPRESSED_SIZE);
|
(unsigned long long)MAX_DECOMPRESSED_SIZE);
|
||||||
ZSTD_freeDCtx(dctx);
|
ZSTD_freeDCtx(dctx);
|
||||||
@@ -129,8 +137,8 @@ Data* data_decompress(Data* compressed_data) {
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
buf_size *= 2;
|
buf_size *= 2;
|
||||||
if (buf_size > MAX_DECOMPRESSED_SIZE)
|
if (buf_size > hard_limit)
|
||||||
buf_size = MAX_DECOMPRESSED_SIZE;
|
buf_size = (size_t)hard_limit;
|
||||||
void* new_data = realloc(uncompressed_data->data, buf_size);
|
void* new_data = realloc(uncompressed_data->data, buf_size);
|
||||||
if (!new_data) {
|
if (!new_data) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to grow decompression buffer");
|
log_message(LOG_LEVEL_ERROR, "Failed to grow decompression buffer");
|
||||||
@@ -150,3 +158,7 @@ Data* data_decompress(Data* compressed_data) {
|
|||||||
log_message(LOG_LEVEL_DEBUG, "Decompressed data successfully");
|
log_message(LOG_LEVEL_DEBUG, "Decompressed data successfully");
|
||||||
return uncompressed_data;
|
return uncompressed_data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Data* data_decompress(Data* compressed_data) {
|
||||||
|
return data_decompress_limited(compressed_data, MAX_DECOMPRESSED_SIZE);
|
||||||
|
}
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
Data* data_compress(Data* data_to_compress, int compression_level);
|
Data* data_compress(Data* data_to_compress, int compression_level);
|
||||||
Data* data_decompress(Data* compressed_data);
|
Data* data_decompress(Data* compressed_data);
|
||||||
|
Data* data_decompress_limited(Data* compressed_data, size_t maximum_size);
|
||||||
bool compression_should_skip(const char* path);
|
bool compression_should_skip(const char* path);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
+180
-249
@@ -100,6 +100,43 @@ static void config_set_defaults(Config* config) {
|
|||||||
config->compress_choice = NULL;
|
config->compress_choice = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool valid_wire_bool(int value) {
|
||||||
|
return value == 0 || value == 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool receive_wire_bool(int fd, bool* value) {
|
||||||
|
int wire_value;
|
||||||
|
if (!receive_int(fd, &wire_value) || !valid_wire_bool(wire_value))
|
||||||
|
return false;
|
||||||
|
*value = wire_value != 0;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool validate_received_config(const Config* config) {
|
||||||
|
return valid_wire_bool(config->save_to_disk) && valid_wire_bool(config->use_multithreading) &&
|
||||||
|
valid_wire_bool(config->use_chunk_serialization) &&
|
||||||
|
valid_wire_bool(config->use_compression) && valid_wire_bool(config->use_metadata) &&
|
||||||
|
valid_wire_bool(config->use_sendfile) && valid_wire_bool(config->use_delete) &&
|
||||||
|
valid_wire_bool(config->use_incremental) && valid_wire_bool(config->use_delta) &&
|
||||||
|
valid_wire_bool(config->backup) && valid_wire_bool(config->follow_symlinks) &&
|
||||||
|
valid_wire_bool(config->copy_links) && valid_wire_bool(config->safe_links) &&
|
||||||
|
valid_wire_bool(config->copy_unsafe_links) &&
|
||||||
|
valid_wire_bool(config->preserve_hard_links) && valid_wire_bool(config->preserve_acls) &&
|
||||||
|
valid_wire_bool(config->preserve_xattrs) && valid_wire_bool(config->preserve_devices) &&
|
||||||
|
valid_wire_bool(config->preserve_sparse) && valid_wire_bool(config->update) &&
|
||||||
|
valid_wire_bool(config->inplace) && valid_wire_bool(config->append) &&
|
||||||
|
valid_wire_bool(config->append_verify) && valid_wire_bool(config->delete_excluded) &&
|
||||||
|
valid_wire_bool(config->delete_after) && valid_wire_bool(config->relative) &&
|
||||||
|
valid_wire_bool(config->prune_empty_dirs) && valid_wire_bool(config->partial) &&
|
||||||
|
valid_wire_bool(config->delete_before) && valid_wire_bool(config->checksum) &&
|
||||||
|
(!config->use_compression ||
|
||||||
|
(config->compression_level >= 1 && config->compression_level <= 22)) &&
|
||||||
|
config->chunk_size > 0 && config->chunk_size <= MAX_CHUNK_SIZE &&
|
||||||
|
config->delta_block_size >= DELTA_BLOCK_SIZE_MIN &&
|
||||||
|
config->delta_block_size <= DELTA_BLOCK_SIZE_MAX &&
|
||||||
|
config->delta_max_file_size <= DELTA_MAX_FILE_SIZE && config->max_delete >= 0;
|
||||||
|
}
|
||||||
|
|
||||||
Config* config_create(void) {
|
Config* config_create(void) {
|
||||||
Config* config = malloc(sizeof(Config));
|
Config* config = malloc(sizeof(Config));
|
||||||
if (!config)
|
if (!config)
|
||||||
@@ -137,6 +174,10 @@ void config_parse_ssh_dest(Config* config) {
|
|||||||
void config_delete(Config* config) {
|
void config_delete(Config* config) {
|
||||||
if (config == NULL)
|
if (config == NULL)
|
||||||
return;
|
return;
|
||||||
|
if (config->log_file) {
|
||||||
|
fclose(config->log_file);
|
||||||
|
config->log_file = NULL;
|
||||||
|
}
|
||||||
free(config->version);
|
free(config->version);
|
||||||
free(config->send_directory);
|
free(config->send_directory);
|
||||||
free(config->receive_root_directory);
|
free(config->receive_root_directory);
|
||||||
@@ -173,102 +214,130 @@ void config_delete(Config* config) {
|
|||||||
free(config);
|
free(config);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Wire format order (must match config_receive and be updated when PROTOCOL_VERSION bumps):
|
/* Each helper is deliberately ordered to match the wire format. Keep the
|
||||||
* version, send_directory, receive_root_directory, save_to_disk, use_multithreading,
|
* helper call order in config_send and config_receive unchanged when adding
|
||||||
* use_chunk_serialization, use_compression, use_metadata, compression_level, chunk_size,
|
* fields. */
|
||||||
* use_sendfile, use_delete, use_incremental, use_delta, delta_block_size, delta_max_file_size,
|
static bool send_core_fields(int fd, const Config* c) {
|
||||||
* backup, backup_dir, follow_symlinks, copy_links, safe_links, copy_unsafe_links,
|
return send_str(fd, c->version) && send_str(fd, c->send_directory) &&
|
||||||
* preserve_hard_links, preserve_acls, preserve_xattrs, preserve_devices, preserve_sparse,
|
send_str(fd, c->receive_root_directory) && send_int(fd, c->save_to_disk) &&
|
||||||
* update, inplace, append, append_verify, delete_excluded, delete_after, max_delete, relative,
|
send_int(fd, c->use_multithreading) && send_int(fd, c->use_chunk_serialization) &&
|
||||||
* prune_empty_dirs, temp_dir, partial, partial_dir, suffix, delete_before, checksum,
|
send_int(fd, c->use_compression) && send_int(fd, c->use_metadata) &&
|
||||||
* compress_choice, status
|
send_int(fd, c->compression_level) &&
|
||||||
*/
|
send_n_data(fd, &c->chunk_size, sizeof(c->chunk_size)) && send_int(fd, c->use_sendfile);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool send_delta_fields(int fd, const Config* c) {
|
||||||
|
return send_int(fd, c->use_delete) && send_int(fd, c->use_incremental) &&
|
||||||
|
send_int(fd, c->use_delta) &&
|
||||||
|
send_n_data(fd, &c->delta_block_size, sizeof(c->delta_block_size)) &&
|
||||||
|
send_n_data(fd, &c->delta_max_file_size, sizeof(unsigned long long));
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool send_file_options(int fd, const Config* c) {
|
||||||
|
return send_int(fd, c->backup) && send_str(fd, c->backup_dir ? c->backup_dir : "") &&
|
||||||
|
send_int(fd, c->follow_symlinks) && send_int(fd, c->copy_links) &&
|
||||||
|
send_int(fd, c->safe_links) && send_int(fd, c->copy_unsafe_links) &&
|
||||||
|
send_int(fd, c->preserve_hard_links) && send_int(fd, c->preserve_acls) &&
|
||||||
|
send_int(fd, c->preserve_xattrs) && send_int(fd, c->preserve_devices) &&
|
||||||
|
send_int(fd, c->preserve_sparse);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool send_selection_options(int fd, const Config* c) {
|
||||||
|
return send_int(fd, c->update) && send_int(fd, c->inplace) && send_int(fd, c->append) &&
|
||||||
|
send_int(fd, c->append_verify) && send_int(fd, c->delete_excluded) &&
|
||||||
|
send_int(fd, c->delete_after) && send_n_data(fd, &c->max_delete, sizeof(c->max_delete)) &&
|
||||||
|
send_int(fd, c->relative) && send_int(fd, c->prune_empty_dirs);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool send_resume_options(int fd, const Config* c) {
|
||||||
|
return send_str(fd, c->temp_dir ? c->temp_dir : "") && send_int(fd, c->partial) &&
|
||||||
|
send_str(fd, c->partial_dir ? c->partial_dir : "") &&
|
||||||
|
send_str(fd, c->suffix ? c->suffix : "") && send_int(fd, c->delete_before) &&
|
||||||
|
send_int(fd, c->checksum) && send_str(fd, c->compress_choice ? c->compress_choice : "");
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool receive_core_fields(int fd, Config* c) {
|
||||||
|
int value;
|
||||||
|
c->send_directory = receive_str(fd);
|
||||||
|
c->receive_root_directory = receive_str(fd);
|
||||||
|
if (!c->send_directory || !c->receive_root_directory)
|
||||||
|
return false;
|
||||||
|
if (!receive_wire_bool(fd, &c->save_to_disk) || !receive_wire_bool(fd, &c->use_multithreading) ||
|
||||||
|
!receive_wire_bool(fd, &c->use_chunk_serialization) ||
|
||||||
|
!receive_wire_bool(fd, &c->use_compression) || !receive_wire_bool(fd, &c->use_metadata))
|
||||||
|
return false;
|
||||||
|
if (!receive_int(fd, &value))
|
||||||
|
return false;
|
||||||
|
c->compression_level = value;
|
||||||
|
if (!receive_n_data(fd, &c->chunk_size, sizeof(c->chunk_size)))
|
||||||
|
return false;
|
||||||
|
if (!receive_wire_bool(fd, &c->use_sendfile))
|
||||||
|
return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool receive_delta_fields(int fd, Config* c) {
|
||||||
|
if (!receive_wire_bool(fd, &c->use_delete))
|
||||||
|
return false;
|
||||||
|
if (!receive_wire_bool(fd, &c->use_incremental))
|
||||||
|
return false;
|
||||||
|
if (!receive_wire_bool(fd, &c->use_delta))
|
||||||
|
return false;
|
||||||
|
return receive_n_data(fd, &c->delta_block_size, sizeof(c->delta_block_size)) &&
|
||||||
|
receive_n_data(fd, &c->delta_max_file_size, sizeof(unsigned long long));
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool receive_file_options(int fd, Config* c) {
|
||||||
|
if (!receive_wire_bool(fd, &c->backup))
|
||||||
|
return false;
|
||||||
|
c->backup_dir = receive_str(fd);
|
||||||
|
if (!c->backup_dir)
|
||||||
|
return false;
|
||||||
|
bool* flags[] = {&c->follow_symlinks, &c->copy_links, &c->safe_links,
|
||||||
|
&c->copy_unsafe_links, &c->preserve_hard_links, &c->preserve_acls,
|
||||||
|
&c->preserve_xattrs, &c->preserve_devices, &c->preserve_sparse};
|
||||||
|
for (size_t i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) {
|
||||||
|
if (!receive_wire_bool(fd, flags[i]))
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool receive_selection_options(int fd, Config* c) {
|
||||||
|
bool* flags[] = {&c->update, &c->inplace, &c->append,
|
||||||
|
&c->append_verify, &c->delete_excluded, &c->delete_after};
|
||||||
|
for (size_t i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) {
|
||||||
|
if (!receive_wire_bool(fd, flags[i]))
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!receive_n_data(fd, &c->max_delete, sizeof(c->max_delete)))
|
||||||
|
return false;
|
||||||
|
if (!receive_wire_bool(fd, &c->relative))
|
||||||
|
return false;
|
||||||
|
if (!receive_wire_bool(fd, &c->prune_empty_dirs))
|
||||||
|
return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool receive_resume_options(int fd, Config* c) {
|
||||||
|
c->temp_dir = receive_str(fd);
|
||||||
|
if (!c->temp_dir || !receive_wire_bool(fd, &c->partial))
|
||||||
|
return false;
|
||||||
|
c->partial_dir = receive_str(fd);
|
||||||
|
c->suffix = c->partial_dir ? receive_str(fd) : NULL;
|
||||||
|
if (!c->partial_dir || !c->suffix || !receive_wire_bool(fd, &c->delete_before))
|
||||||
|
return false;
|
||||||
|
if (!receive_wire_bool(fd, &c->checksum))
|
||||||
|
return false;
|
||||||
|
c->compress_choice = receive_str(fd);
|
||||||
|
return c->compress_choice != NULL;
|
||||||
|
}
|
||||||
|
|
||||||
bool config_send(int file_descriptor, const Config* config) {
|
bool config_send(int file_descriptor, const Config* config) {
|
||||||
if (!send_str(file_descriptor, config->version))
|
if (!send_core_fields(file_descriptor, config) || !send_delta_fields(file_descriptor, config) ||
|
||||||
return false;
|
!send_file_options(file_descriptor, config) ||
|
||||||
if (!send_str(file_descriptor, config->send_directory))
|
!send_selection_options(file_descriptor, config) ||
|
||||||
return false;
|
!send_resume_options(file_descriptor, config))
|
||||||
if (!send_str(file_descriptor, config->receive_root_directory))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->save_to_disk))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->use_multithreading))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->use_chunk_serialization))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->use_compression))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->use_metadata))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->compression_level))
|
|
||||||
return false;
|
|
||||||
if (!send_n_data(file_descriptor, &config->chunk_size, sizeof(config->chunk_size)))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->use_sendfile))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->use_delete))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->use_incremental))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->use_delta))
|
|
||||||
return false;
|
|
||||||
if (!send_n_data(file_descriptor, &config->delta_block_size, sizeof(config->delta_block_size)))
|
|
||||||
return false;
|
|
||||||
if (!send_n_data(file_descriptor, &config->delta_max_file_size, sizeof(unsigned long long)))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->backup))
|
|
||||||
return false;
|
|
||||||
if (!send_str(file_descriptor, config->backup_dir ? config->backup_dir : ""))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->follow_symlinks))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->copy_links))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->safe_links))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->copy_unsafe_links))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->preserve_hard_links))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->preserve_acls))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->preserve_xattrs))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->preserve_devices))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->preserve_sparse))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->update))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->inplace))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->append))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->append_verify))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->delete_excluded))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->delete_after))
|
|
||||||
return false;
|
|
||||||
if (!send_n_data(file_descriptor, &config->max_delete, sizeof(config->max_delete)))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->relative))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->prune_empty_dirs))
|
|
||||||
return false;
|
|
||||||
if (!send_str(file_descriptor, config->temp_dir ? config->temp_dir : ""))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->partial))
|
|
||||||
return false;
|
|
||||||
if (!send_str(file_descriptor, config->partial_dir ? config->partial_dir : ""))
|
|
||||||
return false;
|
|
||||||
if (!send_str(file_descriptor, config->suffix ? config->suffix : ""))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->delete_before))
|
|
||||||
return false;
|
|
||||||
if (!send_int(file_descriptor, config->checksum))
|
|
||||||
return false;
|
|
||||||
if (!send_str(file_descriptor, config->compress_choice ? config->compress_choice : ""))
|
|
||||||
return false;
|
return false;
|
||||||
Status status;
|
Status status;
|
||||||
if (!receive_status(file_descriptor, &status))
|
if (!receive_status(file_descriptor, &status))
|
||||||
@@ -280,159 +349,25 @@ bool config_send(int file_descriptor, const Config* config) {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Wire format order: see the comment above config_send. */
|
|
||||||
Config* config_receive(int file_descriptor) {
|
Config* config_receive(int file_descriptor) {
|
||||||
Config* config = (Config*)malloc(sizeof(Config));
|
Config* config = config_create();
|
||||||
if (config == NULL)
|
if (!config)
|
||||||
return NULL;
|
return NULL;
|
||||||
config_set_defaults(config);
|
|
||||||
free(config->version);
|
free(config->version);
|
||||||
config->version = receive_str(file_descriptor);
|
config->version = receive_str(file_descriptor);
|
||||||
if (!config->version) {
|
if (!config->version)
|
||||||
free(config->server_host);
|
goto error;
|
||||||
free(config);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
if (strcmp(config->version, PROTOCOL_VERSION) != 0) {
|
if (strcmp(config->version, PROTOCOL_VERSION) != 0) {
|
||||||
fprintf(stderr, "Protocol version mismatch: client=%s, server=%s\n", config->version,
|
fprintf(stderr, "Protocol version mismatch: client=%s, server=%s\n", config->version,
|
||||||
PROTOCOL_VERSION);
|
PROTOCOL_VERSION);
|
||||||
free(config->version);
|
|
||||||
free(config->server_host);
|
|
||||||
free(config);
|
|
||||||
send_status(file_descriptor, STATUS_ERROR);
|
send_status(file_descriptor, STATUS_ERROR);
|
||||||
return NULL;
|
goto error;
|
||||||
}
|
}
|
||||||
config->send_directory = receive_str(file_descriptor);
|
if (!receive_core_fields(file_descriptor, config) ||
|
||||||
if (!config->send_directory) {
|
!receive_delta_fields(file_descriptor, config) ||
|
||||||
free(config->version);
|
!receive_file_options(file_descriptor, config) ||
|
||||||
free(config->server_host);
|
!receive_selection_options(file_descriptor, config) ||
|
||||||
free(config);
|
!receive_resume_options(file_descriptor, config))
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
config->receive_root_directory = receive_str(file_descriptor);
|
|
||||||
if (!config->receive_root_directory) {
|
|
||||||
free(config->version);
|
|
||||||
free(config->send_directory);
|
|
||||||
free(config->server_host);
|
|
||||||
free(config);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
int tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->save_to_disk = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->use_multithreading = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->use_chunk_serialization = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->use_compression = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->use_metadata = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->compression_level = tmp;
|
|
||||||
if (!receive_n_data(file_descriptor, &config->chunk_size, sizeof(config->chunk_size)))
|
|
||||||
goto error;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->use_sendfile = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->use_delete = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->use_incremental = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->use_delta = tmp;
|
|
||||||
if (!receive_n_data(file_descriptor, &config->delta_block_size, sizeof(config->delta_block_size)))
|
|
||||||
goto error;
|
|
||||||
if (!receive_n_data(file_descriptor, &config->delta_max_file_size, sizeof(unsigned long long)))
|
|
||||||
goto error;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->backup = tmp;
|
|
||||||
config->backup_dir = receive_str(file_descriptor);
|
|
||||||
if (config->backup_dir == NULL)
|
|
||||||
goto error;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->follow_symlinks = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->copy_links = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->safe_links = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->copy_unsafe_links = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->preserve_hard_links = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->preserve_acls = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->preserve_xattrs = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->preserve_devices = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->preserve_sparse = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->update = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->inplace = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->append = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->append_verify = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->delete_excluded = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->delete_after = tmp;
|
|
||||||
if (!receive_n_data(file_descriptor, &config->max_delete, sizeof(config->max_delete)))
|
|
||||||
goto error;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->relative = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->prune_empty_dirs = tmp;
|
|
||||||
config->temp_dir = receive_str(file_descriptor);
|
|
||||||
if (config->temp_dir == NULL)
|
|
||||||
goto error;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->partial = tmp;
|
|
||||||
config->partial_dir = receive_str(file_descriptor);
|
|
||||||
if (config->partial_dir == NULL)
|
|
||||||
goto error;
|
|
||||||
config->suffix = receive_str(file_descriptor);
|
|
||||||
if (config->suffix == NULL)
|
|
||||||
goto error;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->delete_before = tmp;
|
|
||||||
if (!receive_int(file_descriptor, &tmp))
|
|
||||||
goto error;
|
|
||||||
config->checksum = tmp;
|
|
||||||
config->compress_choice = receive_str(file_descriptor);
|
|
||||||
if (config->compress_choice == NULL)
|
|
||||||
goto error;
|
goto error;
|
||||||
if (config->compress_choice[0] != '\0' && strcmp(config->compress_choice, "zstd") != 0 &&
|
if (config->compress_choice[0] != '\0' && strcmp(config->compress_choice, "zstd") != 0 &&
|
||||||
strcmp(config->compress_choice, "none") != 0) {
|
strcmp(config->compress_choice, "none") != 0) {
|
||||||
@@ -440,20 +375,16 @@ Config* config_receive(int file_descriptor) {
|
|||||||
send_status(file_descriptor, STATUS_ERROR);
|
send_status(file_descriptor, STATUS_ERROR);
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
if (!validate_received_config(config)) {
|
||||||
|
fprintf(stderr, "Invalid configuration received from client\n");
|
||||||
|
send_status(file_descriptor, STATUS_ERROR);
|
||||||
|
goto error;
|
||||||
|
}
|
||||||
if (!send_status(file_descriptor, STATUS_OK))
|
if (!send_status(file_descriptor, STATUS_OK))
|
||||||
goto error;
|
goto error;
|
||||||
return config;
|
return config;
|
||||||
|
|
||||||
error:
|
error:
|
||||||
free(config->version);
|
config_delete(config);
|
||||||
free(config->send_directory);
|
|
||||||
free(config->receive_root_directory);
|
|
||||||
free(config->server_host);
|
|
||||||
free(config->backup_dir);
|
|
||||||
free(config->temp_dir);
|
|
||||||
free(config->partial_dir);
|
|
||||||
free(config->suffix);
|
|
||||||
free(config->compress_choice);
|
|
||||||
free(config);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ Data* data_create_reserve(size_t size) {
|
|||||||
}
|
}
|
||||||
d->data = NULL;
|
d->data = NULL;
|
||||||
d->size = size;
|
d->size = size;
|
||||||
|
d->protocol_charge = 0;
|
||||||
return d;
|
return d;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -33,12 +34,15 @@ Data* data_create(void* data, size_t data_size) {
|
|||||||
}
|
}
|
||||||
new_data->data = data;
|
new_data->data = data;
|
||||||
new_data->size = data_size;
|
new_data->size = data_size;
|
||||||
|
new_data->protocol_charge = 0;
|
||||||
return new_data;
|
return new_data;
|
||||||
}
|
}
|
||||||
|
|
||||||
void data_destroy(Data* data) {
|
void data_destroy(Data* data) {
|
||||||
if (data == NULL)
|
if (data == NULL)
|
||||||
return;
|
return;
|
||||||
|
if (data->protocol_charge != 0)
|
||||||
|
protocol_release_memory(data->protocol_charge);
|
||||||
free(data->data);
|
free(data->data);
|
||||||
free(data);
|
free(data);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,11 +6,14 @@
|
|||||||
typedef struct {
|
typedef struct {
|
||||||
void* data;
|
void* data;
|
||||||
size_t size;
|
size_t size;
|
||||||
|
/* Non-zero only for a buffer charged to the protocol connection budget. */
|
||||||
|
size_t protocol_charge;
|
||||||
} Data;
|
} Data;
|
||||||
|
|
||||||
Data* data_create_empty(size_t data_size);
|
Data* data_create_empty(size_t data_size);
|
||||||
Data* data_create_reserve(size_t size);
|
Data* data_create_reserve(size_t size);
|
||||||
Data* data_create(void* data, size_t data_size);
|
Data* data_create(void* data, size_t data_size);
|
||||||
void data_destroy(Data* data);
|
void data_destroy(Data* data);
|
||||||
|
void protocol_release_memory(size_t charge);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
+85
-56
@@ -1,6 +1,7 @@
|
|||||||
#include "delta.h"
|
#include "delta.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include <limits.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
@@ -36,6 +37,10 @@ DeltaSignature* delta_signature_create(const void* old_file_data, uint64_t old_f
|
|||||||
if (old_file_data == NULL || old_file_size == 0 || block_size == 0)
|
if (old_file_data == NULL || old_file_size == 0 || block_size == 0)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
if (old_file_size > DELTA_MAX_FILE_SIZE || block_size > DELTA_BLOCK_SIZE_MAX ||
|
||||||
|
old_file_size > UINT32_MAX * (uint64_t)block_size)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
uint32_t block_count = (uint32_t)((old_file_size + block_size - 1) / block_size);
|
uint32_t block_count = (uint32_t)((old_file_size + block_size - 1) / block_size);
|
||||||
|
|
||||||
DeltaSignature* sig = malloc(sizeof(DeltaSignature));
|
DeltaSignature* sig = malloc(sizeof(DeltaSignature));
|
||||||
@@ -45,7 +50,11 @@ DeltaSignature* delta_signature_create(const void* old_file_data, uint64_t old_f
|
|||||||
sig->file_size = old_file_size;
|
sig->file_size = old_file_size;
|
||||||
sig->block_size = block_size;
|
sig->block_size = block_size;
|
||||||
sig->block_count = block_count;
|
sig->block_count = block_count;
|
||||||
sig->blocks = malloc(block_count * sizeof(DeltaBlockSig));
|
if (block_count == 0) {
|
||||||
|
free(sig);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
sig->blocks = malloc((size_t)block_count * sizeof(DeltaBlockSig));
|
||||||
if (!sig->blocks) {
|
if (!sig->blocks) {
|
||||||
free(sig);
|
free(sig);
|
||||||
return NULL;
|
return NULL;
|
||||||
@@ -67,8 +76,11 @@ Data* delta_signature_serialize(const DeltaSignature* sig) {
|
|||||||
if (!sig)
|
if (!sig)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
uint64_t total = sizeof(uint64_t) + sizeof(uint32_t) + sizeof(uint32_t) +
|
uint64_t block_bytes = (uint64_t)sig->block_count * (sizeof(uint32_t) + sizeof(uint32_t));
|
||||||
(uint64_t)sig->block_count * (sizeof(uint32_t) + sizeof(uint32_t));
|
uint64_t total = sizeof(uint64_t) + sizeof(uint32_t) + sizeof(uint32_t) + block_bytes;
|
||||||
|
if (block_bytes > UINT64_MAX - (sizeof(uint64_t) + sizeof(uint32_t) + sizeof(uint32_t)) ||
|
||||||
|
total > SIZE_MAX)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
uint8_t* buf = malloc((size_t)total);
|
uint8_t* buf = malloc((size_t)total);
|
||||||
if (!buf)
|
if (!buf)
|
||||||
@@ -118,6 +130,13 @@ DeltaSignature* delta_signature_deserialize(const Data* data) {
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (sig->block_size == 0 || sig->block_size > DELTA_BLOCK_SIZE_MAX ||
|
||||||
|
sig->file_size > DELTA_MAX_FILE_SIZE || sig->file_size == 0 ||
|
||||||
|
(sig->file_size + sig->block_size - 1) / sig->block_size != sig->block_count) {
|
||||||
|
free(sig);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
uint64_t expected = sizeof(uint64_t) + sizeof(uint32_t) + sizeof(uint32_t) +
|
uint64_t expected = sizeof(uint64_t) + sizeof(uint32_t) + sizeof(uint32_t) +
|
||||||
(uint64_t)sig->block_count * (sizeof(uint32_t) + sizeof(uint32_t));
|
(uint64_t)sig->block_count * (sizeof(uint32_t) + sizeof(uint32_t));
|
||||||
if (data->size < expected) {
|
if (data->size < expected) {
|
||||||
@@ -156,8 +175,10 @@ void delta_signature_destroy(DeltaSignature* sig) {
|
|||||||
static bool ensure_capacity(DeltaInstruction** instrs, uint32_t* capacity, uint32_t count) {
|
static bool ensure_capacity(DeltaInstruction** instrs, uint32_t* capacity, uint32_t count) {
|
||||||
if (count < *capacity)
|
if (count < *capacity)
|
||||||
return true;
|
return true;
|
||||||
|
if (*capacity > MAX_DELTA_INSTRUCTIONS / 2)
|
||||||
|
return false;
|
||||||
uint32_t new_cap = *capacity * 2;
|
uint32_t new_cap = *capacity * 2;
|
||||||
DeltaInstruction* tmp = realloc(*instrs, new_cap * sizeof(DeltaInstruction));
|
DeltaInstruction* tmp = realloc(*instrs, (size_t)new_cap * sizeof(DeltaInstruction));
|
||||||
if (!tmp)
|
if (!tmp)
|
||||||
return false;
|
return false;
|
||||||
*instrs = tmp;
|
*instrs = tmp;
|
||||||
@@ -169,6 +190,8 @@ static bool flush_literal(DeltaInstruction** instrs, uint32_t* capacity, uint32_
|
|||||||
const uint8_t* data, uint64_t start, uint64_t end) {
|
const uint8_t* data, uint64_t start, uint64_t end) {
|
||||||
if (start >= end)
|
if (start >= end)
|
||||||
return true;
|
return true;
|
||||||
|
if (end - start > UINT32_MAX || *count >= MAX_DELTA_INSTRUCTIONS)
|
||||||
|
return false;
|
||||||
uint32_t lit_len = (uint32_t)(end - start);
|
uint32_t lit_len = (uint32_t)(end - start);
|
||||||
if (!ensure_capacity(instrs, capacity, *count))
|
if (!ensure_capacity(instrs, capacity, *count))
|
||||||
return false;
|
return false;
|
||||||
@@ -183,16 +206,26 @@ static bool flush_literal(DeltaInstruction** instrs, uint32_t* capacity, uint32_
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void free_instructions(DeltaInstruction* instrs, uint32_t count) {
|
||||||
|
if (!instrs)
|
||||||
|
return;
|
||||||
|
for (uint32_t i = 0; i < count; i++)
|
||||||
|
if (instrs[i].type == DELTA_INSTR_LITERAL)
|
||||||
|
free(instrs[i].literal.data);
|
||||||
|
free(instrs);
|
||||||
|
}
|
||||||
|
|
||||||
Delta* delta_compute(const void* new_file_data, uint64_t new_file_size, const DeltaSignature* sig,
|
Delta* delta_compute(const void* new_file_data, uint64_t new_file_size, const DeltaSignature* sig,
|
||||||
uint32_t block_size) {
|
uint32_t block_size) {
|
||||||
if (!new_file_data || !sig || new_file_size == 0 || block_size == 0)
|
if (!new_file_data || !sig || !sig->blocks || new_file_size == 0 || block_size == 0 ||
|
||||||
|
block_size > DELTA_BLOCK_SIZE_MAX || sig->block_size != block_size)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
const uint8_t* new_data = (const uint8_t*)new_file_data;
|
const uint8_t* new_data = (const uint8_t*)new_file_data;
|
||||||
|
|
||||||
uint32_t capacity = 64;
|
uint32_t capacity = 64;
|
||||||
uint32_t count = 0;
|
uint32_t count = 0;
|
||||||
DeltaInstruction* instrs = malloc(capacity * sizeof(DeltaInstruction));
|
DeltaInstruction* instrs = malloc((size_t)capacity * sizeof(DeltaInstruction));
|
||||||
if (!instrs)
|
if (!instrs)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
@@ -236,14 +269,14 @@ Delta* delta_compute(const void* new_file_data, uint64_t new_file_size, const De
|
|||||||
if (xxh == sig->blocks[j].xxhash) {
|
if (xxh == sig->blocks[j].xxhash) {
|
||||||
if (has_literal) {
|
if (has_literal) {
|
||||||
if (!flush_literal(&instrs, &capacity, &count, new_data, literal_start, i)) {
|
if (!flush_literal(&instrs, &capacity, &count, new_data, literal_start, i)) {
|
||||||
free(instrs);
|
free_instructions(instrs, count);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
has_literal = false;
|
has_literal = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!ensure_capacity(&instrs, &capacity, count)) {
|
if (!ensure_capacity(&instrs, &capacity, count)) {
|
||||||
free(instrs);
|
free_instructions(instrs, count);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
instrs[count].type = DELTA_INSTR_BLOCK_MATCH;
|
instrs[count].type = DELTA_INSTR_BLOCK_MATCH;
|
||||||
@@ -271,18 +304,14 @@ Delta* delta_compute(const void* new_file_data, uint64_t new_file_size, const De
|
|||||||
|
|
||||||
if (has_literal) {
|
if (has_literal) {
|
||||||
if (!flush_literal(&instrs, &capacity, &count, new_data, literal_start, new_file_size)) {
|
if (!flush_literal(&instrs, &capacity, &count, new_data, literal_start, new_file_size)) {
|
||||||
free(instrs);
|
free_instructions(instrs, count);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Delta* delta = malloc(sizeof(Delta));
|
Delta* delta = malloc(sizeof(Delta));
|
||||||
if (!delta) {
|
if (!delta) {
|
||||||
for (uint32_t k = 0; k < count; k++) {
|
free_instructions(instrs, count);
|
||||||
if (instrs[k].type == DELTA_INSTR_LITERAL)
|
|
||||||
free(instrs[k].literal.data);
|
|
||||||
}
|
|
||||||
free(instrs);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -292,11 +321,24 @@ Delta* delta_compute(const void* new_file_data, uint64_t new_file_size, const De
|
|||||||
delta->delta_size = 0;
|
delta->delta_size = 0;
|
||||||
|
|
||||||
for (uint32_t k = 0; k < count; k++) {
|
for (uint32_t k = 0; k < count; k++) {
|
||||||
|
if (delta->delta_size == UINT64_MAX) {
|
||||||
|
delta_destroy(delta);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
delta->delta_size += 1;
|
delta->delta_size += 1;
|
||||||
if (instrs[k].type == DELTA_INSTR_BLOCK_MATCH) {
|
if (instrs[k].type == DELTA_INSTR_BLOCK_MATCH) {
|
||||||
|
if (delta->delta_size > UINT64_MAX - sizeof(uint32_t) * 3) {
|
||||||
|
delta_destroy(delta);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
delta->delta_size += sizeof(uint32_t) * 3;
|
delta->delta_size += sizeof(uint32_t) * 3;
|
||||||
} else {
|
} else {
|
||||||
delta->delta_size += sizeof(uint32_t) + instrs[k].literal.length;
|
uint64_t extra = sizeof(uint32_t) + instrs[k].literal.length;
|
||||||
|
if (delta->delta_size > UINT64_MAX - extra) {
|
||||||
|
delta_destroy(delta);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
delta->delta_size += extra;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -307,7 +349,12 @@ Data* delta_serialize(const Delta* delta) {
|
|||||||
if (!delta)
|
if (!delta)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
uint64_t total = sizeof(uint64_t) + sizeof(uint32_t) + delta->delta_size;
|
if (delta->instruction_count > 0 && !delta->instructions)
|
||||||
|
return NULL;
|
||||||
|
uint64_t header_size = sizeof(uint64_t) + sizeof(uint32_t);
|
||||||
|
if (delta->delta_size > UINT64_MAX - header_size || header_size + delta->delta_size > SIZE_MAX)
|
||||||
|
return NULL;
|
||||||
|
uint64_t total = header_size + delta->delta_size;
|
||||||
uint8_t* buf = malloc((size_t)total);
|
uint8_t* buf = malloc((size_t)total);
|
||||||
if (!buf)
|
if (!buf)
|
||||||
return NULL;
|
return NULL;
|
||||||
@@ -365,8 +412,10 @@ Delta* delta_deserialize(const Data* data) {
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
delta->instructions = malloc(delta->instruction_count * sizeof(DeltaInstruction));
|
delta->instructions = delta->instruction_count == 0
|
||||||
if (!delta->instructions) {
|
? NULL
|
||||||
|
: malloc((size_t)delta->instruction_count * sizeof(DeltaInstruction));
|
||||||
|
if (delta->instruction_count > 0 && !delta->instructions) {
|
||||||
free(delta);
|
free(delta);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -375,11 +424,7 @@ Delta* delta_deserialize(const Data* data) {
|
|||||||
|
|
||||||
for (uint32_t i = 0; i < delta->instruction_count; i++) {
|
for (uint32_t i = 0; i < delta->instruction_count; i++) {
|
||||||
if (pos >= data->size) {
|
if (pos >= data->size) {
|
||||||
for (uint32_t k = 0; k < i; k++) {
|
free_instructions(delta->instructions, i);
|
||||||
if (delta->instructions[k].type == DELTA_INSTR_LITERAL)
|
|
||||||
free(delta->instructions[k].literal.data);
|
|
||||||
}
|
|
||||||
free(delta->instructions);
|
|
||||||
free(delta);
|
free(delta);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -391,12 +436,8 @@ Delta* delta_deserialize(const Data* data) {
|
|||||||
delta->delta_size += 1;
|
delta->delta_size += 1;
|
||||||
|
|
||||||
if (type == DELTA_OP_BLOCK_MATCH) {
|
if (type == DELTA_OP_BLOCK_MATCH) {
|
||||||
if (pos + sizeof(uint32_t) * 3 > data->size) {
|
if (data->size - pos < sizeof(uint32_t) * 3) {
|
||||||
for (uint32_t k = 0; k < i; k++) {
|
free_instructions(delta->instructions, i);
|
||||||
if (delta->instructions[k].type == DELTA_INSTR_LITERAL)
|
|
||||||
free(delta->instructions[k].literal.data);
|
|
||||||
}
|
|
||||||
free(delta->instructions);
|
|
||||||
free(delta);
|
free(delta);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -409,12 +450,8 @@ Delta* delta_deserialize(const Data* data) {
|
|||||||
pos += sizeof(uint32_t);
|
pos += sizeof(uint32_t);
|
||||||
delta->delta_size += sizeof(uint32_t) * 3;
|
delta->delta_size += sizeof(uint32_t) * 3;
|
||||||
} else if (type == DELTA_OP_LITERAL) {
|
} else if (type == DELTA_OP_LITERAL) {
|
||||||
if (pos + sizeof(uint32_t) > data->size) {
|
if (data->size - pos < sizeof(uint32_t)) {
|
||||||
for (uint32_t k = 0; k < i; k++) {
|
free_instructions(delta->instructions, i);
|
||||||
if (delta->instructions[k].type == DELTA_INSTR_LITERAL)
|
|
||||||
free(delta->instructions[k].literal.data);
|
|
||||||
}
|
|
||||||
free(delta->instructions);
|
|
||||||
free(delta);
|
free(delta);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -423,23 +460,15 @@ Delta* delta_deserialize(const Data* data) {
|
|||||||
pos += sizeof(uint32_t);
|
pos += sizeof(uint32_t);
|
||||||
|
|
||||||
uint32_t lit_len = delta->instructions[i].literal.length;
|
uint32_t lit_len = delta->instructions[i].literal.length;
|
||||||
if (pos + lit_len > data->size) {
|
if (lit_len > data->size - pos) {
|
||||||
for (uint32_t k = 0; k < i; k++) {
|
free_instructions(delta->instructions, i);
|
||||||
if (delta->instructions[k].type == DELTA_INSTR_LITERAL)
|
|
||||||
free(delta->instructions[k].literal.data);
|
|
||||||
}
|
|
||||||
free(delta->instructions);
|
|
||||||
free(delta);
|
free(delta);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
delta->instructions[i].literal.data = malloc(lit_len);
|
delta->instructions[i].literal.data = malloc(lit_len ? lit_len : 1);
|
||||||
if (!delta->instructions[i].literal.data) {
|
if (!delta->instructions[i].literal.data) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to allocate %u bytes for literal data", lit_len);
|
log_message(LOG_LEVEL_ERROR, "Failed to allocate %u bytes for literal data", lit_len);
|
||||||
for (uint32_t k = 0; k < i; k++) {
|
free_instructions(delta->instructions, i);
|
||||||
if (delta->instructions[k].type == DELTA_INSTR_LITERAL)
|
|
||||||
free(delta->instructions[k].literal.data);
|
|
||||||
}
|
|
||||||
free(delta->instructions);
|
|
||||||
free(delta);
|
free(delta);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -447,11 +476,7 @@ Delta* delta_deserialize(const Data* data) {
|
|||||||
pos += lit_len;
|
pos += lit_len;
|
||||||
delta->delta_size += sizeof(uint32_t) + lit_len;
|
delta->delta_size += sizeof(uint32_t) + lit_len;
|
||||||
} else {
|
} else {
|
||||||
for (uint32_t k = 0; k < i; k++) {
|
free_instructions(delta->instructions, i);
|
||||||
if (delta->instructions[k].type == DELTA_INSTR_LITERAL)
|
|
||||||
free(delta->instructions[k].literal.data);
|
|
||||||
}
|
|
||||||
free(delta->instructions);
|
|
||||||
free(delta);
|
free(delta);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -463,10 +488,11 @@ Delta* delta_deserialize(const Data* data) {
|
|||||||
void* delta_apply(const void* old_data, uint64_t old_size, const Delta* delta,
|
void* delta_apply(const void* old_data, uint64_t old_size, const Delta* delta,
|
||||||
uint32_t block_size) {
|
uint32_t block_size) {
|
||||||
if (!old_data || !delta || (delta->new_file_size > 0 && delta->instructions == NULL) ||
|
if (!old_data || !delta || (delta->new_file_size > 0 && delta->instructions == NULL) ||
|
||||||
(delta->instruction_count > 0 && block_size == 0))
|
(delta->instruction_count > 0 && block_size == 0) ||
|
||||||
|
delta->new_file_size > DELTA_MAX_FILE_SIZE || delta->new_file_size > SIZE_MAX)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
void* output = malloc((size_t)delta->new_file_size);
|
void* output = malloc(delta->new_file_size ? (size_t)delta->new_file_size : 1);
|
||||||
if (!output)
|
if (!output)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
@@ -491,7 +517,7 @@ void* delta_apply(const void* old_data, uint64_t old_size, const Delta* delta,
|
|||||||
}
|
}
|
||||||
memcpy(out + out_pos, old + src_offset, len);
|
memcpy(out + out_pos, old + src_offset, len);
|
||||||
out_pos += len;
|
out_pos += len;
|
||||||
} else {
|
} else if (delta->instructions[i].type == DELTA_INSTR_LITERAL) {
|
||||||
uint32_t len = delta->instructions[i].literal.length;
|
uint32_t len = delta->instructions[i].literal.length;
|
||||||
if (out_pos > delta->new_file_size || (uint64_t)len > delta->new_file_size - out_pos) {
|
if (out_pos > delta->new_file_size || (uint64_t)len > delta->new_file_size - out_pos) {
|
||||||
free(output);
|
free(output);
|
||||||
@@ -499,6 +525,9 @@ void* delta_apply(const void* old_data, uint64_t old_size, const Delta* delta,
|
|||||||
}
|
}
|
||||||
memcpy(out + out_pos, delta->instructions[i].literal.data, len);
|
memcpy(out + out_pos, delta->instructions[i].literal.data, len);
|
||||||
out_pos += len;
|
out_pos += len;
|
||||||
|
} else {
|
||||||
|
free(output);
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -534,7 +563,7 @@ bool delta_should_attempt(uint64_t old_size, uint64_t new_size, uint64_t max_fil
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool delta_is_worthwhile(const Delta* delta, uint64_t new_file_size) {
|
bool delta_is_worthwhile(const Delta* delta, uint64_t new_file_size) {
|
||||||
if (!delta || delta->instruction_count == 0)
|
if (!delta || delta->instruction_count == 0 || new_file_size == 0)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
bool has_match = false;
|
bool has_match = false;
|
||||||
|
|||||||
+227
-259
@@ -19,10 +19,14 @@
|
|||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "data.h"
|
#include "data.h"
|
||||||
#include "file.h"
|
#include "file.h"
|
||||||
|
#include "file_store.h"
|
||||||
#include "metadata.h"
|
#include "metadata.h"
|
||||||
#include "protocol.h"
|
#include "protocol.h"
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
|
|
||||||
|
#define MAX_SERVER_DELETE_COUNT 100000U
|
||||||
|
#define MAX_FILE_DATA_SIZE MAX_RECEIVE_FILE_SIZE
|
||||||
|
|
||||||
bool file_checksum(File* file, uint64_t* checksum) {
|
bool file_checksum(File* file, uint64_t* checksum) {
|
||||||
if (!file || !checksum || !file->data)
|
if (!file || !checksum || !file->data)
|
||||||
return false;
|
return false;
|
||||||
@@ -45,7 +49,7 @@ File* file_create(const char* path) {
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
int path_len = strlen(path);
|
size_t path_len = strlen(path);
|
||||||
file->path = (char*)malloc(path_len + 1);
|
file->path = (char*)malloc(path_len + 1);
|
||||||
if (file->path == NULL) {
|
if (file->path == NULL) {
|
||||||
free(file);
|
free(file);
|
||||||
@@ -101,7 +105,7 @@ void file_metadata_destroy(void* metadata) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool file_load_data(File* file) {
|
bool file_load_data(File* file) {
|
||||||
if (file == NULL)
|
if (file == NULL || !file->data)
|
||||||
return false;
|
return false;
|
||||||
if (file->data->data == NULL) {
|
if (file->data->data == NULL) {
|
||||||
if (file->data->size == 0)
|
if (file->data->size == 0)
|
||||||
@@ -125,7 +129,7 @@ bool file_load_data(File* file) {
|
|||||||
|
|
||||||
bool file_send_single_calls(File* file, int file_descriptor, bool use_metadata,
|
bool file_send_single_calls(File* file, int file_descriptor, bool use_metadata,
|
||||||
int compression_level, bool send_path) {
|
int compression_level, bool send_path) {
|
||||||
if (!file || !file->path || !file->data)
|
if (!file || !file->path || !file->data || (file->data->size != 0 && !file->data->data))
|
||||||
return false;
|
return false;
|
||||||
const Data* data_to_send = file->data;
|
const Data* data_to_send = file->data;
|
||||||
Data* compressed_data = NULL;
|
Data* compressed_data = NULL;
|
||||||
@@ -155,20 +159,50 @@ bool file_send_single_calls(File* file, int file_descriptor, bool use_metadata,
|
|||||||
|
|
||||||
static bool to_disk_secure(const char* path, const void* data, unsigned long long data_size,
|
static bool to_disk_secure(const char* path, const void* data, unsigned long long data_size,
|
||||||
bool inplace, bool sparse, const FileMetadata* metadata);
|
bool inplace, bool sparse, const FileMetadata* metadata);
|
||||||
static int open_secure_parent(const char* path, char** leaf_out);
|
static int open_secure_parent(const char* path, char** leaf_out, bool create_dirs);
|
||||||
|
static bool ensure_directory_secure(const char* path);
|
||||||
|
|
||||||
|
bool file_path_exists_secure(const char* path) {
|
||||||
|
struct stat st;
|
||||||
|
return file_stat_secure(path, &st);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool file_stat_secure(const char* path, struct stat* st) {
|
||||||
|
if (!path || !st)
|
||||||
|
return false;
|
||||||
|
char* leaf = NULL;
|
||||||
|
int parent_fd = open_secure_parent(path, &leaf, false);
|
||||||
|
if (parent_fd < 0)
|
||||||
|
return false;
|
||||||
|
int fd = openat(parent_fd, leaf, O_RDONLY | O_NONBLOCK | O_CLOEXEC | O_NOFOLLOW);
|
||||||
|
bool exists = fd >= 0 && fstat(fd, st) == 0 && S_ISREG(st->st_mode);
|
||||||
|
if (fd >= 0)
|
||||||
|
close(fd);
|
||||||
|
close(parent_fd);
|
||||||
|
free(leaf);
|
||||||
|
return exists;
|
||||||
|
}
|
||||||
static bool rename_secure(const char* old_path, const char* new_path);
|
static bool rename_secure(const char* old_path, const char* new_path);
|
||||||
static int authorized_root_fd = -1;
|
static int authorized_root_fd = -1;
|
||||||
static char* authorized_root_path;
|
static char* authorized_root_path;
|
||||||
|
|
||||||
void file_set_authorized_root(int fd, const char* canonical_path) {
|
static bool path_is_within_root(const char* root, const char* path) {
|
||||||
authorized_root_fd = fd;
|
size_t root_len = strlen(root);
|
||||||
free(authorized_root_path);
|
return strncmp(root, path, root_len) == 0 && (path[root_len] == '\0' || path[root_len] == '/');
|
||||||
authorized_root_path = canonical_path ? str_dup(canonical_path) : NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool path_is_within_root(const char* root, const char* path) {
|
bool file_set_authorized_root(int fd, const char* canonical_path) {
|
||||||
size_t n = strlen(root);
|
char* path_copy = canonical_path ? str_dup(canonical_path) : NULL;
|
||||||
return strncmp(root, path, n) == 0 && (path[n] == '\0' || path[n] == '/');
|
if (canonical_path && !path_copy) {
|
||||||
|
authorized_root_fd = -1;
|
||||||
|
free(authorized_root_path);
|
||||||
|
authorized_root_path = NULL;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
authorized_root_fd = fd;
|
||||||
|
free(authorized_root_path);
|
||||||
|
authorized_root_path = path_copy;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool file_save_to_disk(const char* root_directory, const File* file, const Config* config) {
|
bool file_save_to_disk(const char* root_directory, const File* file, const Config* config) {
|
||||||
@@ -178,9 +212,11 @@ bool file_save_to_disk(const char* root_directory, const File* file, const Confi
|
|||||||
const char* backup_suffix = (config && config->suffix) ? config->suffix : "~";
|
const char* backup_suffix = (config && config->suffix) ? config->suffix : "~";
|
||||||
const char* backup_dir = (config && config->backup_dir) ? config->backup_dir : NULL;
|
const char* backup_dir = (config && config->backup_dir) ? config->backup_dir : NULL;
|
||||||
const char* partial_dir = (config && config->partial_dir) ? config->partial_dir : NULL;
|
const char* partial_dir = (config && config->partial_dir) ? config->partial_dir : NULL;
|
||||||
char *confined_backup = NULL, *confined_partial = NULL;
|
char *confined_backup = NULL, *confined_partial = NULL, *disk_path = NULL;
|
||||||
|
char *backup_path = NULL, *parent_copy = NULL;
|
||||||
|
|
||||||
if (!file || !file->path || !file->data || has_path_traversal(file->path) ||
|
if (!file || !file->path || !file->data || (file->data->size != 0 && !file->data->data) ||
|
||||||
|
has_path_traversal(file->path) ||
|
||||||
(backup_enabled &&
|
(backup_enabled &&
|
||||||
(!backup_suffix || backup_suffix[0] == '\0' || strchr(backup_suffix, '/') != NULL ||
|
(!backup_suffix || backup_suffix[0] == '\0' || strchr(backup_suffix, '/') != NULL ||
|
||||||
strcmp(backup_suffix, ".") == 0 || strcmp(backup_suffix, "..") == 0))) {
|
strcmp(backup_suffix, ".") == 0 || strcmp(backup_suffix, "..") == 0))) {
|
||||||
@@ -200,45 +236,20 @@ bool file_save_to_disk(const char* root_directory, const File* file, const Confi
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
char* resolved_root = NULL;
|
|
||||||
const char* actual_root =
|
const char* actual_root =
|
||||||
(partial_dir && config && config->partial) ? confined_partial : root_directory;
|
(partial_dir && config && config->partial) ? confined_partial : root_directory;
|
||||||
resolved_root = realpath(actual_root, NULL);
|
disk_path = path_cat(actual_root, file->path);
|
||||||
if (resolved_root == NULL) {
|
|
||||||
if (mkdir_r(actual_root)) {
|
|
||||||
resolved_root = realpath(actual_root, NULL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (resolved_root == NULL) {
|
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to resolve destination root: %s", actual_root);
|
|
||||||
free(confined_backup);
|
|
||||||
free(confined_partial);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
char* resolved_base = realpath(root_directory, NULL);
|
|
||||||
if (resolved_base == NULL || !path_is_within_root(resolved_base, resolved_root)) {
|
|
||||||
free(resolved_base);
|
|
||||||
free(confined_backup);
|
|
||||||
free(confined_partial);
|
|
||||||
free(resolved_root);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
free(resolved_base);
|
|
||||||
|
|
||||||
char* disk_path = path_cat(resolved_root, file->path);
|
|
||||||
if (disk_path == NULL) {
|
if (disk_path == NULL) {
|
||||||
free(confined_backup);
|
free(confined_backup);
|
||||||
free(confined_partial);
|
free(confined_partial);
|
||||||
free(resolved_root);
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --update is receiver-side policy: never replace a newer destination. */
|
/* --update is receiver-side policy: never replace a newer destination. */
|
||||||
if (config && config->update) {
|
if (config && config->update) {
|
||||||
struct stat destination_stat;
|
struct stat destination_stat;
|
||||||
if (stat(disk_path, &destination_stat) == 0 && file->metadata &&
|
if (file_stat_secure(disk_path, &destination_stat) && file->metadata &&
|
||||||
destination_stat.st_mtime > file->metadata->mtime_sec) {
|
destination_stat.st_mtime > file->metadata->mtime_sec) {
|
||||||
free(resolved_root);
|
|
||||||
free(confined_backup);
|
free(confined_backup);
|
||||||
free(confined_partial);
|
free(confined_partial);
|
||||||
free(disk_path);
|
free(disk_path);
|
||||||
@@ -248,109 +259,61 @@ bool file_save_to_disk(const char* root_directory, const File* file, const Confi
|
|||||||
|
|
||||||
if (backup_enabled) {
|
if (backup_enabled) {
|
||||||
struct stat backup_stat;
|
struct stat backup_stat;
|
||||||
if (stat(disk_path, &backup_stat) == 0) {
|
if (file_stat_secure(disk_path, &backup_stat)) {
|
||||||
char* backup_path = NULL;
|
|
||||||
if (backup_dir) {
|
if (backup_dir) {
|
||||||
char* resolved_backup_dir = realpath(confined_backup, NULL);
|
backup_path = path_cat(confined_backup, file->path);
|
||||||
if (!resolved_backup_dir) {
|
} else {
|
||||||
mkdir_r(confined_backup);
|
|
||||||
resolved_backup_dir = realpath(confined_backup, NULL);
|
|
||||||
}
|
|
||||||
if (resolved_backup_dir) {
|
|
||||||
char* backup_base = realpath(root_directory, NULL);
|
|
||||||
if (backup_base && path_is_within_root(backup_base, resolved_backup_dir))
|
|
||||||
backup_path = path_cat(resolved_backup_dir, file->path);
|
|
||||||
free(backup_base);
|
|
||||||
free(resolved_backup_dir);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!backup_path) {
|
|
||||||
size_t path_len = strlen(disk_path);
|
size_t path_len = strlen(disk_path);
|
||||||
size_t suffix_len = strlen(backup_suffix);
|
size_t suffix_len = strlen(backup_suffix);
|
||||||
|
if (path_len > SIZE_MAX - suffix_len - 1)
|
||||||
|
goto fail;
|
||||||
backup_path = malloc(path_len + suffix_len + 1);
|
backup_path = malloc(path_len + suffix_len + 1);
|
||||||
if (backup_path) {
|
if (backup_path) {
|
||||||
memcpy(backup_path, disk_path, path_len);
|
memcpy(backup_path, disk_path, path_len);
|
||||||
memcpy(backup_path + path_len, backup_suffix, suffix_len + 1);
|
memcpy(backup_path + path_len, backup_suffix, suffix_len + 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (backup_path) {
|
if (!backup_path)
|
||||||
char* backup_dir_path = str_dup(backup_path);
|
goto fail;
|
||||||
if (backup_dir_path) {
|
parent_copy = str_dup(backup_path);
|
||||||
const char* bdir = dirname(backup_dir_path);
|
if (!parent_copy || !ensure_directory_secure(dirname(parent_copy)))
|
||||||
mkdir_r(bdir);
|
goto fail;
|
||||||
free(backup_dir_path);
|
free(parent_copy);
|
||||||
}
|
parent_copy = NULL;
|
||||||
if (!rename_secure(disk_path, backup_path)) {
|
if (!rename_secure(disk_path, backup_path))
|
||||||
free(backup_path);
|
goto fail;
|
||||||
free(resolved_root);
|
|
||||||
free(confined_backup);
|
|
||||||
free(confined_partial);
|
|
||||||
free(disk_path);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
free(backup_path);
|
free(backup_path);
|
||||||
|
backup_path = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
char* dir_dup = str_dup(disk_path);
|
|
||||||
if (!dir_dup) {
|
|
||||||
free(confined_backup);
|
|
||||||
free(confined_partial);
|
|
||||||
free(resolved_root);
|
|
||||||
free(disk_path);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
char* dir_str = dirname(dir_dup);
|
|
||||||
if (!mkdir_r(dir_str)) {
|
|
||||||
free(dir_dup);
|
|
||||||
free(confined_backup);
|
|
||||||
free(confined_partial);
|
|
||||||
free(resolved_root);
|
|
||||||
free(disk_path);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
char* resolved_dir = realpath(dir_str, NULL);
|
|
||||||
free(dir_dup);
|
|
||||||
if (resolved_dir == NULL) {
|
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to resolve directory for: %s", disk_path);
|
|
||||||
free(confined_backup);
|
|
||||||
free(confined_partial);
|
|
||||||
free(resolved_root);
|
|
||||||
free(disk_path);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
size_t root_len = strlen(resolved_root);
|
|
||||||
if (strncmp(resolved_dir, resolved_root, root_len) != 0 ||
|
|
||||||
(resolved_dir[root_len] != '\0' && resolved_dir[root_len] != '/')) {
|
|
||||||
log_message(LOG_LEVEL_ERROR, "Path escape detected: %s is outside %s", disk_path, actual_root);
|
|
||||||
free(resolved_dir);
|
|
||||||
free(confined_backup);
|
|
||||||
free(confined_partial);
|
|
||||||
free(resolved_root);
|
|
||||||
free(disk_path);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
free(resolved_dir);
|
|
||||||
free(resolved_root);
|
|
||||||
|
|
||||||
bool ok = to_disk_secure(disk_path, file->data->data, file->data->size, inplace, sparse,
|
bool ok = to_disk_secure(disk_path, file->data->data, file->data->size, inplace, sparse,
|
||||||
file->metadata);
|
file->metadata);
|
||||||
|
free(parent_copy);
|
||||||
|
free(backup_path);
|
||||||
free(confined_backup);
|
free(confined_backup);
|
||||||
free(confined_partial);
|
free(confined_partial);
|
||||||
free(disk_path);
|
free(disk_path);
|
||||||
return ok;
|
return ok;
|
||||||
|
|
||||||
|
fail:
|
||||||
|
free(parent_copy);
|
||||||
|
free(backup_path);
|
||||||
|
free(confined_backup);
|
||||||
|
free(confined_partial);
|
||||||
|
free(disk_path);
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static File* receive_delta_file(int fd, const Config* config, const char* check_path,
|
static File* receive_delta_file(int fd, const Config* config, const char* check_path,
|
||||||
void* old_data, unsigned long long old_size) {
|
void* old_data, unsigned long long old_size, bool* failed) {
|
||||||
if (!old_data)
|
if (!old_data)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
DeltaSignature* sig = delta_signature_create(old_data, old_size, config->delta_block_size);
|
DeltaSignature* sig = delta_signature_create(old_data, old_size, config->delta_block_size);
|
||||||
if (!sig) {
|
if (!sig) {
|
||||||
free(old_data);
|
free(old_data);
|
||||||
|
*failed = true;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -358,6 +321,7 @@ static File* receive_delta_file(int fd, const Config* config, const char* check_
|
|||||||
if (!sig_data) {
|
if (!sig_data) {
|
||||||
delta_signature_destroy(sig);
|
delta_signature_destroy(sig);
|
||||||
free(old_data);
|
free(old_data);
|
||||||
|
*failed = true;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -367,6 +331,7 @@ static File* receive_delta_file(int fd, const Config* config, const char* check_
|
|||||||
if (!sig_sent) {
|
if (!sig_sent) {
|
||||||
delta_signature_destroy(sig);
|
delta_signature_destroy(sig);
|
||||||
free(old_data);
|
free(old_data);
|
||||||
|
*failed = true;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -374,26 +339,27 @@ static File* receive_delta_file(int fd, const Config* config, const char* check_
|
|||||||
if (!receive_status(fd, &resp)) {
|
if (!receive_status(fd, &resp)) {
|
||||||
delta_signature_destroy(sig);
|
delta_signature_destroy(sig);
|
||||||
free(old_data);
|
free(old_data);
|
||||||
|
*failed = true;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (resp == STATUS_DELTA_DATA) {
|
if (resp == STATUS_DELTA_DATA) {
|
||||||
Data* delta_data = receive_data(fd);
|
Data* delta_data = receive_data_limited(fd, MAX_RECEIVE_FILE_SIZE);
|
||||||
if (!delta_data) {
|
if (!delta_data) {
|
||||||
delta_signature_destroy(sig);
|
delta_signature_destroy(sig);
|
||||||
free(old_data);
|
free(old_data);
|
||||||
send_status(fd, STATUS_ERROR);
|
*failed = true;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
Data* raw_delta = delta_data;
|
Data* raw_delta = delta_data;
|
||||||
if (config->use_compression) {
|
if (config->use_compression) {
|
||||||
raw_delta = data_decompress(delta_data);
|
raw_delta = data_decompress_limited(delta_data, MAX_RECEIVE_FILE_SIZE);
|
||||||
data_destroy(delta_data);
|
data_destroy(delta_data);
|
||||||
if (!raw_delta) {
|
if (!raw_delta) {
|
||||||
free(old_data);
|
free(old_data);
|
||||||
delta_signature_destroy(sig);
|
delta_signature_destroy(sig);
|
||||||
send_status(fd, STATUS_ERROR);
|
*failed = true;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -403,18 +369,25 @@ static File* receive_delta_file(int fd, const Config* config, const char* check_
|
|||||||
if (!delta) {
|
if (!delta) {
|
||||||
free(old_data);
|
free(old_data);
|
||||||
delta_signature_destroy(sig);
|
delta_signature_destroy(sig);
|
||||||
send_status(fd, STATUS_ERROR);
|
*failed = true;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void* new_data = delta_apply(old_data, old_size, delta, config->delta_block_size);
|
|
||||||
uint64_t new_size = delta->new_file_size;
|
uint64_t new_size = delta->new_file_size;
|
||||||
|
if (new_size > MAX_RECEIVE_FILE_SIZE || new_size > SIZE_MAX) {
|
||||||
|
delta_destroy(delta);
|
||||||
|
free(old_data);
|
||||||
|
delta_signature_destroy(sig);
|
||||||
|
send_status(fd, STATUS_ERROR);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
void* new_data = delta_apply(old_data, old_size, delta, config->delta_block_size);
|
||||||
delta_destroy(delta);
|
delta_destroy(delta);
|
||||||
|
|
||||||
if (!new_data) {
|
if (!new_data) {
|
||||||
free(old_data);
|
free(old_data);
|
||||||
delta_signature_destroy(sig);
|
delta_signature_destroy(sig);
|
||||||
send_status(fd, STATUS_ERROR);
|
*failed = true;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -423,7 +396,7 @@ static File* receive_delta_file(int fd, const Config* config, const char* check_
|
|||||||
free(new_data);
|
free(new_data);
|
||||||
free(old_data);
|
free(old_data);
|
||||||
delta_signature_destroy(sig);
|
delta_signature_destroy(sig);
|
||||||
send_status(fd, STATUS_ERROR);
|
*failed = true;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -435,13 +408,21 @@ static File* receive_delta_file(int fd, const Config* config, const char* check_
|
|||||||
free(new_data);
|
free(new_data);
|
||||||
free(old_data);
|
free(old_data);
|
||||||
delta_signature_destroy(sig);
|
delta_signature_destroy(sig);
|
||||||
send_status(fd, STATUS_ERROR);
|
*failed = true;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Data* replacement = data_create(new_data, (size_t)new_size);
|
||||||
|
if (replacement == NULL) {
|
||||||
|
file_destroy(file);
|
||||||
|
free(old_data);
|
||||||
|
delta_signature_destroy(sig);
|
||||||
|
send_status(fd, STATUS_ERROR);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
data_destroy(file->data);
|
data_destroy(file->data);
|
||||||
file->data = data_create(new_data, (size_t)new_size);
|
file->data = replacement;
|
||||||
|
|
||||||
free(old_data);
|
free(old_data);
|
||||||
delta_signature_destroy(sig);
|
delta_signature_destroy(sig);
|
||||||
@@ -454,7 +435,7 @@ static File* receive_delta_file(int fd, const Config* config, const char* check_
|
|||||||
|
|
||||||
File* file = file_create(check_path);
|
File* file = file_create(check_path);
|
||||||
if (!file) {
|
if (!file) {
|
||||||
send_status(fd, STATUS_ERROR);
|
*failed = true;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -463,22 +444,28 @@ static File* receive_delta_file(int fd, const Config* config, const char* check_
|
|||||||
file->metadata = metadata_receive(fd, &meta_ok);
|
file->metadata = metadata_receive(fd, &meta_ok);
|
||||||
if (!meta_ok) {
|
if (!meta_ok) {
|
||||||
file_destroy(file);
|
file_destroy(file);
|
||||||
send_status(fd, STATUS_ERROR);
|
*failed = true;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Data* file_data = receive_data(fd);
|
Data* file_data = receive_data_limited(fd, MAX_RECEIVE_FILE_SIZE);
|
||||||
if (file_data == NULL) {
|
if (file_data == NULL) {
|
||||||
file_destroy(file);
|
file_destroy(file);
|
||||||
send_status(fd, STATUS_ERROR);
|
*failed = true;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (config->use_compression) {
|
if (config->use_compression) {
|
||||||
Data* uncompressed = data_decompress(file_data);
|
Data* uncompressed = data_decompress_limited(file_data, MAX_RECEIVE_FILE_SIZE);
|
||||||
data_destroy(file_data);
|
data_destroy(file_data);
|
||||||
if (uncompressed == NULL) {
|
if (uncompressed == NULL) {
|
||||||
|
file_destroy(file);
|
||||||
|
*failed = true;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
if (uncompressed->size > MAX_FILE_DATA_SIZE) {
|
||||||
|
data_destroy(uncompressed);
|
||||||
file_destroy(file);
|
file_destroy(file);
|
||||||
send_status(fd, STATUS_ERROR);
|
send_status(fd, STATUS_ERROR);
|
||||||
return NULL;
|
return NULL;
|
||||||
@@ -493,14 +480,19 @@ static File* receive_delta_file(int fd, const Config* config, const char* check_
|
|||||||
|
|
||||||
delta_signature_destroy(sig);
|
delta_signature_destroy(sig);
|
||||||
free(old_data);
|
free(old_data);
|
||||||
|
send_status(fd, STATUS_ERROR);
|
||||||
|
*failed = true;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
File* receive_incremental_check(int fd, const Config* config, bool* skipped) {
|
File* receive_incremental_check(int fd, const Config* config, bool* skipped) {
|
||||||
|
if (!config || !skipped) {
|
||||||
|
send_status(fd, STATUS_ERROR);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
*skipped = false;
|
*skipped = false;
|
||||||
char* check_path = receive_str(fd);
|
char* check_path = receive_str(fd);
|
||||||
if (check_path == NULL) {
|
if (check_path == NULL) {
|
||||||
send_status(fd, STATUS_ERROR);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -510,10 +502,14 @@ File* receive_incremental_check(int fd, const Config* config, bool* skipped) {
|
|||||||
if (!receive_n_data(fd, &check_size, sizeof(check_size)) ||
|
if (!receive_n_data(fd, &check_size, sizeof(check_size)) ||
|
||||||
!receive_n_data(fd, &check_mtime, sizeof(check_mtime))) {
|
!receive_n_data(fd, &check_mtime, sizeof(check_mtime))) {
|
||||||
free(check_path);
|
free(check_path);
|
||||||
send_status(fd, STATUS_ERROR);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (config->checksum && !receive_n_data(fd, &check_checksum, sizeof(check_checksum))) {
|
if (config->checksum && !receive_n_data(fd, &check_checksum, sizeof(check_checksum))) {
|
||||||
|
free(check_path);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (check_size > MAX_RECEIVE_FILE_SIZE) {
|
||||||
free(check_path);
|
free(check_path);
|
||||||
send_status(fd, STATUS_ERROR);
|
send_status(fd, STATUS_ERROR);
|
||||||
return NULL;
|
return NULL;
|
||||||
@@ -522,27 +518,29 @@ File* receive_incremental_check(int fd, const Config* config, bool* skipped) {
|
|||||||
if (has_path_traversal(check_path)) {
|
if (has_path_traversal(check_path)) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Path traversal detected: %s", check_path);
|
log_message(LOG_LEVEL_ERROR, "Path traversal detected: %s", check_path);
|
||||||
free(check_path);
|
free(check_path);
|
||||||
send_status(fd, STATUS_ERROR);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
char* full_path = path_cat(config->receive_root_directory, check_path);
|
char* full_path = path_cat(config->receive_root_directory, check_path);
|
||||||
|
if (!full_path) {
|
||||||
|
free(check_path);
|
||||||
|
send_status(fd, STATUS_ERROR);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
struct stat st;
|
struct stat st;
|
||||||
bool has_old_file = false;
|
bool has_old_file = false;
|
||||||
int old_fd = -1;
|
int old_fd = -1;
|
||||||
if (full_path) {
|
|
||||||
char* leaf = NULL;
|
char* leaf = NULL;
|
||||||
int parent_fd = open_secure_parent(full_path, &leaf);
|
int parent_fd = open_secure_parent(full_path, &leaf, false);
|
||||||
if (parent_fd >= 0) {
|
if (parent_fd >= 0) {
|
||||||
old_fd = openat(parent_fd, leaf, O_RDONLY | O_CLOEXEC | O_NOFOLLOW);
|
old_fd = openat(parent_fd, leaf, O_RDONLY | O_CLOEXEC | O_NOFOLLOW);
|
||||||
free(leaf);
|
free(leaf);
|
||||||
close(parent_fd);
|
close(parent_fd);
|
||||||
has_old_file = old_fd >= 0 && fstat(old_fd, &st) == 0 && S_ISREG(st.st_mode);
|
has_old_file = old_fd >= 0 && fstat(old_fd, &st) == 0 && S_ISREG(st.st_mode);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
unsigned long long old_size = has_old_file ? (unsigned long long)st.st_size : 0;
|
unsigned long long old_size = has_old_file ? (unsigned long long)st.st_size : 0;
|
||||||
void* old_data = NULL;
|
void* old_data = NULL;
|
||||||
if (has_old_file && old_size > 0) {
|
if (has_old_file && old_size > 0 && old_size <= MAX_RECEIVE_FILE_SIZE && old_size <= SIZE_MAX) {
|
||||||
old_data = malloc((size_t)old_size);
|
old_data = malloc((size_t)old_size);
|
||||||
if (old_data) {
|
if (old_data) {
|
||||||
size_t got = 0;
|
size_t got = 0;
|
||||||
@@ -586,17 +584,24 @@ File* receive_incremental_check(int fd, const Config* config, bool* skipped) {
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool try_delta = config->use_delta && has_old_file &&
|
bool try_delta = config->use_delta && has_old_file && old_data != NULL &&
|
||||||
delta_should_attempt(old_size, check_size, config->delta_max_file_size);
|
delta_should_attempt(old_size, check_size, config->delta_max_file_size);
|
||||||
|
|
||||||
if (try_delta) {
|
if (try_delta) {
|
||||||
File* delta_file = receive_delta_file(fd, config, check_path, old_data, old_size);
|
bool delta_failed = false;
|
||||||
|
File* delta_file =
|
||||||
|
receive_delta_file(fd, config, check_path, old_data, old_size, &delta_failed);
|
||||||
old_data = NULL; /* receive_delta_file consumes the snapshot on every path */
|
old_data = NULL; /* receive_delta_file consumes the snapshot on every path */
|
||||||
if (delta_file) {
|
if (delta_file) {
|
||||||
free(full_path);
|
free(full_path);
|
||||||
free(check_path);
|
free(check_path);
|
||||||
return delta_file;
|
return delta_file;
|
||||||
}
|
}
|
||||||
|
if (delta_failed) {
|
||||||
|
free(full_path);
|
||||||
|
free(check_path);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
free(old_data);
|
free(old_data);
|
||||||
old_data = NULL;
|
old_data = NULL;
|
||||||
try_delta = false;
|
try_delta = false;
|
||||||
@@ -614,7 +619,6 @@ File* receive_incremental_check(int fd, const Config* config, bool* skipped) {
|
|||||||
free(check_path);
|
free(check_path);
|
||||||
free(full_path);
|
free(full_path);
|
||||||
if (file == NULL) {
|
if (file == NULL) {
|
||||||
send_status(fd, STATUS_ERROR);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -623,22 +627,25 @@ File* receive_incremental_check(int fd, const Config* config, bool* skipped) {
|
|||||||
file->metadata = metadata_receive(fd, &meta_ok);
|
file->metadata = metadata_receive(fd, &meta_ok);
|
||||||
if (!meta_ok) {
|
if (!meta_ok) {
|
||||||
file_destroy(file);
|
file_destroy(file);
|
||||||
send_status(fd, STATUS_ERROR);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Data* file_data = receive_data(fd);
|
Data* file_data = receive_data_limited(fd, MAX_RECEIVE_FILE_SIZE);
|
||||||
if (file_data == NULL) {
|
if (file_data == NULL) {
|
||||||
file_destroy(file);
|
file_destroy(file);
|
||||||
send_status(fd, STATUS_ERROR);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (config->use_compression) {
|
if (config->use_compression) {
|
||||||
Data* uncompressed = data_decompress(file_data);
|
Data* uncompressed = data_decompress_limited(file_data, MAX_RECEIVE_FILE_SIZE);
|
||||||
data_destroy(file_data);
|
data_destroy(file_data);
|
||||||
if (uncompressed == NULL) {
|
if (uncompressed == NULL) {
|
||||||
|
file_destroy(file);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
if (uncompressed->size > MAX_FILE_DATA_SIZE) {
|
||||||
|
data_destroy(uncompressed);
|
||||||
file_destroy(file);
|
file_destroy(file);
|
||||||
send_status(fd, STATUS_ERROR);
|
send_status(fd, STATUS_ERROR);
|
||||||
return NULL;
|
return NULL;
|
||||||
@@ -651,7 +658,7 @@ File* receive_incremental_check(int fd, const Config* config, bool* skipped) {
|
|||||||
return file;
|
return file;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int open_secure_parent(const char* path, char** leaf_out) {
|
static int open_secure_parent(const char* path, char** leaf_out, bool create_dirs) {
|
||||||
char* copy = str_dup(path);
|
char* copy = str_dup(path);
|
||||||
if (!copy)
|
if (!copy)
|
||||||
return -1;
|
return -1;
|
||||||
@@ -663,9 +670,19 @@ static int open_secure_parent(const char* path, char** leaf_out) {
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
int fd;
|
int fd;
|
||||||
if (authorized_root_fd >= 0 && authorized_root_path && path[0] == '/' &&
|
if (authorized_root_fd >= 0) {
|
||||||
path_is_within_root(authorized_root_path, path)) {
|
if (!authorized_root_path || path[0] != '/' ||
|
||||||
|
!path_is_within_root(authorized_root_path, path)) {
|
||||||
|
free(copy);
|
||||||
|
free(leaf);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
fd = dup(authorized_root_fd);
|
fd = dup(authorized_root_fd);
|
||||||
|
if (fd < 0) {
|
||||||
|
free(copy);
|
||||||
|
free(leaf);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
size_t root_len = strlen(authorized_root_path);
|
size_t root_len = strlen(authorized_root_path);
|
||||||
char* relative = str_dup(path + root_len);
|
char* relative = str_dup(path + root_len);
|
||||||
if (!relative) {
|
if (!relative) {
|
||||||
@@ -689,10 +706,18 @@ static int open_secure_parent(const char* path, char** leaf_out) {
|
|||||||
char* save = NULL;
|
char* save = NULL;
|
||||||
char* component = strtok_r(parent, "/", &save);
|
char* component = strtok_r(parent, "/", &save);
|
||||||
while (component) {
|
while (component) {
|
||||||
if (strcmp(component, ".") != 0 && strcmp(component, "..") != 0) {
|
if (strcmp(component, "..") == 0) {
|
||||||
|
close(fd);
|
||||||
|
free(copy);
|
||||||
|
free(leaf);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (strcmp(component, ".") != 0) {
|
||||||
int next = openat(fd, component, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
int next = openat(fd, component, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
||||||
if (next < 0 && errno == ENOENT && mkdirat(fd, component, 0755) == 0)
|
if (create_dirs && next < 0 && errno == ENOENT) {
|
||||||
|
if (mkdirat(fd, component, 0755) == 0 || errno == EEXIST)
|
||||||
next = openat(fd, component, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
next = openat(fd, component, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
||||||
|
}
|
||||||
if (next < 0) {
|
if (next < 0) {
|
||||||
close(fd);
|
close(fd);
|
||||||
free(copy);
|
free(copy);
|
||||||
@@ -709,10 +734,29 @@ static int open_secure_parent(const char* path, char** leaf_out) {
|
|||||||
return fd;
|
return fd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool ensure_directory_secure(const char* path) {
|
||||||
|
char* leaf = NULL;
|
||||||
|
int parent_fd = open_secure_parent(path, &leaf, true);
|
||||||
|
if (parent_fd < 0)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
int dir_fd = openat(parent_fd, leaf, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
||||||
|
if (dir_fd < 0 && errno == ENOENT) {
|
||||||
|
if (mkdirat(parent_fd, leaf, 0755) == 0 || errno == EEXIST)
|
||||||
|
dir_fd = openat(parent_fd, leaf, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
||||||
|
}
|
||||||
|
bool ok = dir_fd >= 0;
|
||||||
|
if (dir_fd >= 0)
|
||||||
|
close(dir_fd);
|
||||||
|
close(parent_fd);
|
||||||
|
free(leaf);
|
||||||
|
return ok;
|
||||||
|
}
|
||||||
|
|
||||||
static bool rename_secure(const char* old_path, const char* new_path) {
|
static bool rename_secure(const char* old_path, const char* new_path) {
|
||||||
char *old_leaf = NULL, *new_leaf = NULL;
|
char *old_leaf = NULL, *new_leaf = NULL;
|
||||||
int old_parent = open_secure_parent(old_path, &old_leaf);
|
int old_parent = open_secure_parent(old_path, &old_leaf, false);
|
||||||
int new_parent = open_secure_parent(new_path, &new_leaf);
|
int new_parent = open_secure_parent(new_path, &new_leaf, true);
|
||||||
bool ok = old_parent >= 0 && new_parent >= 0 &&
|
bool ok = old_parent >= 0 && new_parent >= 0 &&
|
||||||
renameat(old_parent, old_leaf, new_parent, new_leaf) == 0;
|
renameat(old_parent, old_leaf, new_parent, new_leaf) == 0;
|
||||||
if (old_parent >= 0)
|
if (old_parent >= 0)
|
||||||
@@ -741,7 +785,7 @@ static bool write_all(int fd, const void* data, unsigned long long size) {
|
|||||||
static bool to_disk_secure(const char* path, const void* data, unsigned long long data_size,
|
static bool to_disk_secure(const char* path, const void* data, unsigned long long data_size,
|
||||||
bool inplace, bool sparse, const FileMetadata* metadata) {
|
bool inplace, bool sparse, const FileMetadata* metadata) {
|
||||||
char* leaf = NULL;
|
char* leaf = NULL;
|
||||||
int dirfd = open_secure_parent(path, &leaf);
|
int dirfd = open_secure_parent(path, &leaf, true);
|
||||||
if (dirfd < 0)
|
if (dirfd < 0)
|
||||||
return false;
|
return false;
|
||||||
int fd = -1;
|
int fd = -1;
|
||||||
@@ -788,106 +832,6 @@ bool to_disk(const char* path, const void* data, unsigned long long data_size, b
|
|||||||
if (!path || (!data && data_size != 0) || has_path_traversal(path))
|
if (!path || (!data && data_size != 0) || has_path_traversal(path))
|
||||||
return false;
|
return false;
|
||||||
return to_disk_secure(path, data, data_size, inplace, sparse, NULL);
|
return to_disk_secure(path, data, data_size, inplace, sparse, NULL);
|
||||||
/* Kept below only as historical context; all writes use descriptor-relative operations. */
|
|
||||||
char* tmp_path = NULL;
|
|
||||||
char* directory = NULL;
|
|
||||||
|
|
||||||
char* path_dup = str_dup(path);
|
|
||||||
if (!path_dup)
|
|
||||||
return false;
|
|
||||||
const char* dir_result = dirname(path_dup);
|
|
||||||
directory = str_dup(dir_result);
|
|
||||||
free(path_dup);
|
|
||||||
if (!directory)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
bool ok = true;
|
|
||||||
if (!mkdir_r(directory))
|
|
||||||
goto done;
|
|
||||||
|
|
||||||
if (inplace) {
|
|
||||||
FILE* file_pointer = fopen(path, "wb");
|
|
||||||
if (file_pointer == NULL) {
|
|
||||||
perror("Could not open file for inplace write");
|
|
||||||
ok = false;
|
|
||||||
goto done;
|
|
||||||
}
|
|
||||||
if (sparse && data_size > 0) {
|
|
||||||
if (fseek(file_pointer, data_size - 1, SEEK_SET) != 0) {
|
|
||||||
perror("Failed to seek for sparse file");
|
|
||||||
fclose(file_pointer);
|
|
||||||
ok = false;
|
|
||||||
goto done;
|
|
||||||
}
|
|
||||||
if (fwrite("", 1, 1, file_pointer) != 1) {
|
|
||||||
perror("Failed to write sparse file");
|
|
||||||
fclose(file_pointer);
|
|
||||||
ok = false;
|
|
||||||
goto done;
|
|
||||||
}
|
|
||||||
rewind(file_pointer);
|
|
||||||
}
|
|
||||||
if (data_size > 0 && fwrite(data, 1, data_size, file_pointer) != data_size) {
|
|
||||||
perror("Failed to write all data to file");
|
|
||||||
fclose(file_pointer);
|
|
||||||
ok = false;
|
|
||||||
goto done;
|
|
||||||
}
|
|
||||||
fclose(file_pointer);
|
|
||||||
free(directory);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
size_t path_len = strlen(path);
|
|
||||||
tmp_path = malloc(path_len + 5);
|
|
||||||
if (!tmp_path) {
|
|
||||||
ok = false;
|
|
||||||
goto done;
|
|
||||||
}
|
|
||||||
memcpy(tmp_path, path, path_len);
|
|
||||||
memcpy(tmp_path + path_len, ".tmp", 5);
|
|
||||||
|
|
||||||
FILE* file_pointer = fopen(tmp_path, "wb");
|
|
||||||
if (file_pointer == NULL) {
|
|
||||||
perror("Could not open temporary file");
|
|
||||||
ok = false;
|
|
||||||
goto done;
|
|
||||||
}
|
|
||||||
if (sparse && data_size > 0) {
|
|
||||||
if (fseek(file_pointer, data_size - 1, SEEK_SET) != 0) {
|
|
||||||
perror("Failed to seek for sparse file");
|
|
||||||
fclose(file_pointer);
|
|
||||||
ok = false;
|
|
||||||
goto done;
|
|
||||||
}
|
|
||||||
if (fwrite("", 1, 1, file_pointer) != 1) {
|
|
||||||
perror("Failed to write sparse file");
|
|
||||||
fclose(file_pointer);
|
|
||||||
ok = false;
|
|
||||||
goto done;
|
|
||||||
}
|
|
||||||
rewind(file_pointer);
|
|
||||||
}
|
|
||||||
if (fwrite(data, 1, data_size, file_pointer) != data_size) {
|
|
||||||
perror("Failed to write all data to temporary file");
|
|
||||||
fclose(file_pointer);
|
|
||||||
unlink(tmp_path);
|
|
||||||
ok = false;
|
|
||||||
goto done;
|
|
||||||
}
|
|
||||||
fclose(file_pointer);
|
|
||||||
|
|
||||||
if (rename(tmp_path, path) != 0) {
|
|
||||||
perror("Failed to atomically rename temporary file");
|
|
||||||
unlink(tmp_path);
|
|
||||||
ok = false;
|
|
||||||
goto done;
|
|
||||||
}
|
|
||||||
|
|
||||||
done:
|
|
||||||
free(tmp_path);
|
|
||||||
free(directory);
|
|
||||||
return ok;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool file_send_sendfile(File* file, int file_descriptor, bool use_metadata, int compression_level,
|
bool file_send_sendfile(File* file, int file_descriptor, bool use_metadata, int compression_level,
|
||||||
@@ -999,18 +943,23 @@ File* file_receive(const Config* config, int file_descriptor) {
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Data* file_data = receive_data(file_descriptor);
|
Data* file_data = receive_data_limited(file_descriptor, MAX_RECEIVE_FILE_SIZE);
|
||||||
if (file_data == NULL) {
|
if (file_data == NULL) {
|
||||||
file_destroy(file);
|
file_destroy(file);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (config->use_compression) {
|
if (config->use_compression && !compression_should_skip(file->path)) {
|
||||||
Data* file_data_uncompressed = data_decompress(file_data);
|
Data* file_data_uncompressed = data_decompress_limited(file_data, MAX_RECEIVE_FILE_SIZE);
|
||||||
data_destroy(file_data);
|
data_destroy(file_data);
|
||||||
if (file_data_uncompressed == NULL) {
|
if (file_data_uncompressed == NULL) {
|
||||||
file_destroy(file);
|
file_destroy(file);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
if (file_data_uncompressed->size > MAX_FILE_DATA_SIZE) {
|
||||||
|
data_destroy(file_data_uncompressed);
|
||||||
|
file_destroy(file);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
file_data = file_data_uncompressed;
|
file_data = file_data_uncompressed;
|
||||||
}
|
}
|
||||||
data_destroy(file->data);
|
data_destroy(file->data);
|
||||||
@@ -1019,6 +968,8 @@ File* file_receive(const Config* config, int file_descriptor) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
size_t file_content_to_buffer(File* file) {
|
size_t file_content_to_buffer(File* file) {
|
||||||
|
if (!file || !file->path || !file->data || (!file->data->data && file->data->size != 0))
|
||||||
|
return 0;
|
||||||
FILE* file_pointer = fopen(file->path, "rb");
|
FILE* file_pointer = fopen(file->path, "rb");
|
||||||
if (file_pointer == NULL) {
|
if (file_pointer == NULL) {
|
||||||
perror("Could not open the file!");
|
perror("Could not open the file!");
|
||||||
@@ -1035,16 +986,26 @@ size_t file_content_to_buffer(File* file) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int receive_manifest(int fd, const Config* config, int* next_status) {
|
int receive_manifest(int fd, const Config* config, int* next_status) {
|
||||||
|
if (!config) {
|
||||||
|
send_status(fd, STATUS_ERROR);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
int received_status = STATUS_ERROR;
|
int received_status = STATUS_ERROR;
|
||||||
int* status_out = next_status ? next_status : &received_status;
|
int* status_out = next_status ? next_status : &received_status;
|
||||||
int count;
|
int count;
|
||||||
if (!receive_int(fd, &count))
|
if (!receive_int(fd, &count)) {
|
||||||
|
send_status(fd, STATUS_ERROR);
|
||||||
return -1;
|
return -1;
|
||||||
if (count < 0 || count > MAX_MANIFEST_ENTRIES)
|
}
|
||||||
|
if (count < 0 || count > MAX_MANIFEST_ENTRIES) {
|
||||||
|
send_status(fd, STATUS_ERROR);
|
||||||
return -1;
|
return -1;
|
||||||
|
}
|
||||||
ArrayList* manifest = array_list_create(free);
|
ArrayList* manifest = array_list_create(free);
|
||||||
if (!manifest)
|
if (!manifest) {
|
||||||
|
send_status(fd, STATUS_ERROR);
|
||||||
return -1;
|
return -1;
|
||||||
|
}
|
||||||
size_t manifest_bytes = 0;
|
size_t manifest_bytes = 0;
|
||||||
for (int i = 0; i < count; i++) {
|
for (int i = 0; i < count; i++) {
|
||||||
char* s = receive_str(fd);
|
char* s = receive_str(fd);
|
||||||
@@ -1054,21 +1015,28 @@ int receive_manifest(int fd, const Config* config, int* next_status) {
|
|||||||
(manifest_bytes += entry_size) > MAX_MANIFEST_BYTES || !array_list_add(manifest, s)) {
|
(manifest_bytes += entry_size) > MAX_MANIFEST_BYTES || !array_list_add(manifest, s)) {
|
||||||
free(s);
|
free(s);
|
||||||
array_list_delete(manifest);
|
array_list_delete(manifest);
|
||||||
|
send_status(fd, STATUS_ERROR);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!receive_status(fd, status_out)) {
|
if (!receive_status(fd, status_out)) {
|
||||||
array_list_delete(manifest);
|
array_list_delete(manifest);
|
||||||
|
send_status(fd, STATUS_ERROR);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
/* Deletion is a commit operation: never perform it until the sender has
|
/* Deletion is a commit operation: never perform it until the sender has
|
||||||
completed the manifest frame successfully. */
|
completed the manifest frame successfully. */
|
||||||
if (*status_out != STATUS_FINISHED || !config->use_delete) {
|
if (*status_out != STATUS_FINISHED || !config->use_delete) {
|
||||||
array_list_delete(manifest);
|
array_list_delete(manifest);
|
||||||
|
if (*status_out != STATUS_FINISHED)
|
||||||
|
send_status(fd, STATUS_ERROR);
|
||||||
return *status_out == STATUS_FINISHED ? 0 : -1;
|
return *status_out == STATUS_FINISHED ? 0 : -1;
|
||||||
}
|
}
|
||||||
fprintf(stderr, "Deleting files not in manifest...\n");
|
fprintf(stderr, "Deleting files not in manifest...\n");
|
||||||
bool deletion_ok = delete_extras(config->receive_root_directory, manifest);
|
bool deletion_ok =
|
||||||
|
delete_extras_limited(config->receive_root_directory, manifest, MAX_SERVER_DELETE_COUNT);
|
||||||
array_list_delete(manifest);
|
array_list_delete(manifest);
|
||||||
|
if (!deletion_ok)
|
||||||
|
send_status(fd, STATUS_ERROR);
|
||||||
return deletion_ok ? 0 : -1;
|
return deletion_ok ? 0 : -1;
|
||||||
}
|
}
|
||||||
|
|||||||
+4
-1
@@ -38,8 +38,11 @@ void file_metadata_destroy(void* metadata);
|
|||||||
bool to_disk(const char* path, const void* data, unsigned long long data_size, bool inplace,
|
bool to_disk(const char* path, const void* data, unsigned long long data_size, bool inplace,
|
||||||
bool sparse);
|
bool sparse);
|
||||||
bool file_save_to_disk(const char* root_directory, const File* file, const Config* config);
|
bool file_save_to_disk(const char* root_directory, const File* file, const Config* config);
|
||||||
void file_set_authorized_root(int fd, const char* canonical_path);
|
/* A configured fd without a canonical identity deliberately rejects paths. */
|
||||||
|
bool file_set_authorized_root(int fd, const char* canonical_path);
|
||||||
File* receive_incremental_check(int fd, const Config* config, bool* skipped);
|
File* receive_incremental_check(int fd, const Config* config, bool* skipped);
|
||||||
|
bool file_path_exists_secure(const char* path);
|
||||||
|
bool file_stat_secure(const char* path, struct stat* st);
|
||||||
int receive_manifest(int fd, const Config* config, int* next_status);
|
int receive_manifest(int fd, const Config* config, int* next_status);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -0,0 +1,197 @@
|
|||||||
|
#include <errno.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <libgen.h>
|
||||||
|
#include <limits.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
#include "file_store.h"
|
||||||
|
#include "metadata.h"
|
||||||
|
#include "utils.h"
|
||||||
|
|
||||||
|
static int authorized_root_fd = -1;
|
||||||
|
static char* authorized_root_path;
|
||||||
|
|
||||||
|
static bool path_is_within_root(const char* root, const char* path) {
|
||||||
|
size_t root_length = strlen(root);
|
||||||
|
return strncmp(root, path, root_length) == 0 &&
|
||||||
|
(path[root_length] == '\0' || path[root_length] == '/');
|
||||||
|
}
|
||||||
|
|
||||||
|
bool file_store_set_authorized_root(int fd, const char* canonical_path) {
|
||||||
|
char* new_path = canonical_path ? str_dup(canonical_path) : NULL;
|
||||||
|
if (canonical_path && !new_path) {
|
||||||
|
authorized_root_fd = -1;
|
||||||
|
free(authorized_root_path);
|
||||||
|
authorized_root_path = NULL;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
free(authorized_root_path);
|
||||||
|
authorized_root_path = new_path;
|
||||||
|
authorized_root_fd = fd;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
int file_store_open_secure_parent(const char* path, char** leaf_out) {
|
||||||
|
char* copy = str_dup(path);
|
||||||
|
if (!copy)
|
||||||
|
return -1;
|
||||||
|
char* parent = dirname(copy);
|
||||||
|
const char* slash = strrchr(path, '/');
|
||||||
|
char* leaf = str_dup(slash ? slash + 1 : path);
|
||||||
|
if (!leaf) {
|
||||||
|
free(copy);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
int fd;
|
||||||
|
if (authorized_root_fd >= 0) {
|
||||||
|
if (!authorized_root_path || path[0] != '/' ||
|
||||||
|
!path_is_within_root(authorized_root_path, path)) {
|
||||||
|
free(copy);
|
||||||
|
free(leaf);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
fd = dup(authorized_root_fd);
|
||||||
|
if (fd < 0) {
|
||||||
|
free(copy);
|
||||||
|
free(leaf);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
size_t root_length = strlen(authorized_root_path);
|
||||||
|
char* relative = str_dup(path + root_length);
|
||||||
|
if (!relative) {
|
||||||
|
free(copy);
|
||||||
|
free(leaf);
|
||||||
|
close(fd);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
free(copy);
|
||||||
|
copy = relative;
|
||||||
|
parent = dirname(copy);
|
||||||
|
} else {
|
||||||
|
fd = (parent[0] == '/') ? open("/", O_RDONLY | O_DIRECTORY | O_CLOEXEC)
|
||||||
|
: open(".", O_RDONLY | O_DIRECTORY | O_CLOEXEC);
|
||||||
|
}
|
||||||
|
if (fd < 0) {
|
||||||
|
free(copy);
|
||||||
|
free(leaf);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
char* save = NULL;
|
||||||
|
char* component = strtok_r(parent, "/", &save);
|
||||||
|
while (component) {
|
||||||
|
if (strcmp(component, "..") == 0) {
|
||||||
|
close(fd);
|
||||||
|
free(copy);
|
||||||
|
free(leaf);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (strcmp(component, ".") != 0) {
|
||||||
|
int next = openat(fd, component, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
||||||
|
if (next < 0 && errno == ENOENT) {
|
||||||
|
if (mkdirat(fd, component, 0755) == 0 || errno == EEXIST)
|
||||||
|
next = openat(fd, component, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
||||||
|
}
|
||||||
|
if (next < 0) {
|
||||||
|
close(fd);
|
||||||
|
free(copy);
|
||||||
|
free(leaf);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
close(fd);
|
||||||
|
fd = next;
|
||||||
|
}
|
||||||
|
component = strtok_r(NULL, "/", &save);
|
||||||
|
}
|
||||||
|
free(copy);
|
||||||
|
*leaf_out = leaf;
|
||||||
|
return fd;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool file_store_rename_secure(const char* old_path, const char* new_path) {
|
||||||
|
char *old_leaf = NULL, *new_leaf = NULL;
|
||||||
|
int old_parent = file_store_open_secure_parent(old_path, &old_leaf);
|
||||||
|
int new_parent = file_store_open_secure_parent(new_path, &new_leaf);
|
||||||
|
bool ok = old_parent >= 0 && new_parent >= 0 &&
|
||||||
|
renameat(old_parent, old_leaf, new_parent, new_leaf) == 0;
|
||||||
|
if (old_parent >= 0)
|
||||||
|
close(old_parent);
|
||||||
|
if (new_parent >= 0)
|
||||||
|
close(new_parent);
|
||||||
|
free(old_leaf);
|
||||||
|
free(new_leaf);
|
||||||
|
return ok;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool write_all(int fd, const void* data, unsigned long long size) {
|
||||||
|
const unsigned char* p = data;
|
||||||
|
unsigned long long done = 0;
|
||||||
|
while (done < size) {
|
||||||
|
ssize_t n = write(fd, p + done, (size_t)(size - done));
|
||||||
|
if (n < 0 && errno == EINTR)
|
||||||
|
continue;
|
||||||
|
if (n <= 0)
|
||||||
|
return false;
|
||||||
|
done += (unsigned long long)n;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool file_store_write_secure(const char* path, const void* data, unsigned long long data_size,
|
||||||
|
bool inplace, bool sparse, const FileMetadata* metadata) {
|
||||||
|
char* leaf = NULL;
|
||||||
|
int dirfd = file_store_open_secure_parent(path, &leaf);
|
||||||
|
if (dirfd < 0)
|
||||||
|
return false;
|
||||||
|
int fd = -1;
|
||||||
|
bool ok = false;
|
||||||
|
if (inplace) {
|
||||||
|
fd = openat(dirfd, leaf, O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC | O_NOFOLLOW, 0644);
|
||||||
|
if (fd >= 0) {
|
||||||
|
if (!sparse || data_size == 0 || ftruncate(fd, (off_t)data_size) == 0)
|
||||||
|
ok = write_all(fd, data, data_size);
|
||||||
|
if (ok && metadata)
|
||||||
|
ok = file_restore_metadata_fd(fd, metadata);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
int tmp_size = snprintf(NULL, 0, ".%s.tmp.%ld.%u", leaf, (long)getpid(), 99U);
|
||||||
|
if (tmp_size < 0) {
|
||||||
|
close(dirfd);
|
||||||
|
free(leaf);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
char* tmp = malloc((size_t)tmp_size + 1);
|
||||||
|
if (!tmp) {
|
||||||
|
close(dirfd);
|
||||||
|
free(leaf);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
for (unsigned int i = 0; i < 100 && !ok; ++i) {
|
||||||
|
snprintf(tmp, (size_t)tmp_size + 1, ".%s.tmp.%ld.%u", leaf, (long)getpid(), i);
|
||||||
|
fd = openat(dirfd, tmp, O_WRONLY | O_CREAT | O_EXCL | O_CLOEXEC | O_NOFOLLOW, 0600);
|
||||||
|
if (fd < 0)
|
||||||
|
continue;
|
||||||
|
if (sparse && data_size > 0)
|
||||||
|
ok = ftruncate(fd, (off_t)data_size) == 0;
|
||||||
|
if (ok || (!sparse || data_size == 0))
|
||||||
|
ok = write_all(fd, data, data_size);
|
||||||
|
if (ok && metadata)
|
||||||
|
ok = file_restore_metadata_fd(fd, metadata);
|
||||||
|
if (close(fd) != 0)
|
||||||
|
ok = false;
|
||||||
|
fd = -1;
|
||||||
|
if (ok && renameat(dirfd, tmp, dirfd, leaf) != 0)
|
||||||
|
ok = false;
|
||||||
|
if (!ok)
|
||||||
|
unlinkat(dirfd, tmp, 0);
|
||||||
|
}
|
||||||
|
free(tmp);
|
||||||
|
}
|
||||||
|
if (fd >= 0)
|
||||||
|
close(fd);
|
||||||
|
close(dirfd);
|
||||||
|
free(leaf);
|
||||||
|
return ok;
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
#ifndef FILE_STORE_H
|
||||||
|
#define FILE_STORE_H
|
||||||
|
|
||||||
|
#include "file.h"
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
|
bool file_store_set_authorized_root(int fd, const char* canonical_path);
|
||||||
|
int file_store_open_secure_parent(const char* path, char** leaf_out);
|
||||||
|
bool file_store_rename_secure(const char* old_path, const char* new_path);
|
||||||
|
bool file_store_write_secure(const char* path, const void* data, unsigned long long data_size,
|
||||||
|
bool inplace, bool sparse, const FileMetadata* metadata);
|
||||||
|
|
||||||
|
#endif
|
||||||
+12
-3
@@ -51,6 +51,8 @@ FileMetadata* metadata_from_buf(char** buf) {
|
|||||||
int32_t present;
|
int32_t present;
|
||||||
memcpy(&present, *buf, sizeof(present));
|
memcpy(&present, *buf, sizeof(present));
|
||||||
*buf += sizeof(present);
|
*buf += sizeof(present);
|
||||||
|
if (present != 0 && present != 1)
|
||||||
|
return NULL;
|
||||||
if (!present)
|
if (!present)
|
||||||
return NULL;
|
return NULL;
|
||||||
FileMetadata* m = malloc(sizeof(FileMetadata));
|
FileMetadata* m = malloc(sizeof(FileMetadata));
|
||||||
@@ -76,10 +78,15 @@ FileMetadata* metadata_from_buf(char** buf) {
|
|||||||
memcpy(&mtime_nsec, *buf, sizeof(mtime_nsec));
|
memcpy(&mtime_nsec, *buf, sizeof(mtime_nsec));
|
||||||
*buf += sizeof(mtime_nsec);
|
*buf += sizeof(mtime_nsec);
|
||||||
m->mtime_nsec = (long)mtime_nsec;
|
m->mtime_nsec = (long)mtime_nsec;
|
||||||
|
if (present != 1 || mtime_nsec < 0 || mtime_nsec >= 1000000000LL || mode < 0 || uid < 0 ||
|
||||||
|
gid < 0) {
|
||||||
|
free(m);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
return m;
|
return m;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool metadata_send(int file_descriptor, FileMetadata* m) {
|
bool metadata_send(int file_descriptor, const FileMetadata* m) {
|
||||||
if (m == NULL) {
|
if (m == NULL) {
|
||||||
int32_t zero = 0;
|
int32_t zero = 0;
|
||||||
return send_n_data(file_descriptor, &zero, sizeof(zero));
|
return send_n_data(file_descriptor, &zero, sizeof(zero));
|
||||||
@@ -175,7 +182,8 @@ FileMetadata* metadata_receive(int file_descriptor, int* ok) {
|
|||||||
void file_restore_metadata(const char* path, const FileMetadata* metadata) {
|
void file_restore_metadata(const char* path, const FileMetadata* metadata) {
|
||||||
if (metadata == NULL)
|
if (metadata == NULL)
|
||||||
return;
|
return;
|
||||||
if (chmod(path, metadata->mode & 07777 & ~(S_ISUID | S_ISGID)) != 0)
|
mode_t safe_mode = metadata->mode & 0777 & ~(S_IWGRP | S_IWOTH);
|
||||||
|
if (chmod(path, safe_mode) != 0)
|
||||||
log_message(LOG_LEVEL_WARNING, "Failed to chmod %s: %s", path, strerror(errno));
|
log_message(LOG_LEVEL_WARNING, "Failed to chmod %s: %s", path, strerror(errno));
|
||||||
/* Never apply client-supplied ownership. The descriptor API below is the
|
/* Never apply client-supplied ownership. The descriptor API below is the
|
||||||
receiver write path; retain this legacy API only for compatibility. */
|
receiver write path; retain this legacy API only for compatibility. */
|
||||||
@@ -192,7 +200,8 @@ bool file_restore_metadata_fd(int fd, const FileMetadata* metadata) {
|
|||||||
if (fd < 0 || metadata == NULL)
|
if (fd < 0 || metadata == NULL)
|
||||||
return metadata == NULL;
|
return metadata == NULL;
|
||||||
bool ok = true;
|
bool ok = true;
|
||||||
if (fchmod(fd, metadata->mode & 07777 & ~(S_ISUID | S_ISGID)) != 0)
|
mode_t safe_mode = metadata->mode & 0777 & ~(S_IWGRP | S_IWOTH);
|
||||||
|
if (fchmod(fd, safe_mode) != 0)
|
||||||
ok = false;
|
ok = false;
|
||||||
/* Client uid/gid values are deliberately not authoritative. */
|
/* Client uid/gid values are deliberately not authoritative. */
|
||||||
struct timespec times[2] = {{.tv_sec = 0, .tv_nsec = UTIME_OMIT},
|
struct timespec times[2] = {{.tv_sec = 0, .tv_nsec = UTIME_OMIT},
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
void metadata_to_buf(char** buf, const FileMetadata* m);
|
void metadata_to_buf(char** buf, const FileMetadata* m);
|
||||||
FileMetadata* metadata_from_buf(char** buf);
|
FileMetadata* metadata_from_buf(char** buf);
|
||||||
bool metadata_send(int file_descriptor, FileMetadata* m);
|
bool metadata_send(int file_descriptor, const FileMetadata* m);
|
||||||
FileMetadata* metadata_receive(int file_descriptor, int* ok);
|
FileMetadata* metadata_receive(int file_descriptor, int* ok);
|
||||||
void file_restore_metadata(const char* path, const FileMetadata* metadata);
|
void file_restore_metadata(const char* path, const FileMetadata* metadata);
|
||||||
bool file_restore_metadata_fd(int fd, const FileMetadata* metadata);
|
bool file_restore_metadata_fd(int fd, const FileMetadata* metadata);
|
||||||
|
|||||||
+23
-115
@@ -1,4 +1,5 @@
|
|||||||
#include "multiprocessing.h"
|
#include "multiprocessing.h"
|
||||||
|
#include "receiver.h"
|
||||||
|
|
||||||
#include "array_list.h"
|
#include "array_list.h"
|
||||||
#include "chunk.h"
|
#include "chunk.h"
|
||||||
@@ -14,10 +15,6 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <threads.h>
|
#include <threads.h>
|
||||||
|
|
||||||
static bool valid_batch_path(const char* path) {
|
|
||||||
return path && path[0] != '\0' && path[0] != '/' && !has_path_traversal(path);
|
|
||||||
}
|
|
||||||
|
|
||||||
PipelineContextSender* pipeline_context_sender_create(Config* config, Queue* queue_scanner,
|
PipelineContextSender* pipeline_context_sender_create(Config* config, Queue* queue_scanner,
|
||||||
Queue* queue_loader) {
|
Queue* queue_loader) {
|
||||||
PipelineContextSender* context = malloc(sizeof(PipelineContextSender));
|
PipelineContextSender* context = malloc(sizeof(PipelineContextSender));
|
||||||
@@ -101,6 +98,8 @@ PipelineContextReceiver* pipeline_context_receiver_create(Config* config, Queue*
|
|||||||
context->queue = queue;
|
context->queue = queue;
|
||||||
context->file_descriptor = file_descriptor;
|
context->file_descriptor = file_descriptor;
|
||||||
context->ssl = ssl;
|
context->ssl = ssl;
|
||||||
|
protocol_session_init(&context->session, file_descriptor, file_descriptor);
|
||||||
|
protocol_session_set_ssl(&context->session, ssl);
|
||||||
context->receiver_done = false;
|
context->receiver_done = false;
|
||||||
atomic_init(&context->cancelled, false);
|
atomic_init(&context->cancelled, false);
|
||||||
int init = 0;
|
int init = 0;
|
||||||
@@ -137,24 +136,14 @@ void pipeline_context_receiver_destroy(PipelineContextReceiver* context) {
|
|||||||
free(context);
|
free(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool receive_chunk_enqueue(int file_descriptor, PipelineContextReceiver* context) {
|
static bool receiver_enqueue_file(File* file, void* context_pointer) {
|
||||||
Chunk* chunk = receive_chunk_data(file_descriptor, context->config);
|
PipelineContextReceiver* context = context_pointer;
|
||||||
if (chunk == NULL)
|
if (queue_enqueue_multithreaded_cancel(context->queue, file, &context->mutex,
|
||||||
return false;
|
|
||||||
|
|
||||||
for (int i = 0; i < chunk->element_count; i++) {
|
|
||||||
File* file = chunk->items[i];
|
|
||||||
chunk->items[i] = NULL;
|
|
||||||
if (!queue_enqueue_multithreaded_cancel(context->queue, file, &context->mutex,
|
|
||||||
&context->condition_not_empty,
|
&context->condition_not_empty,
|
||||||
&context->condition_not_full, &context->cancelled)) {
|
&context->condition_not_full, &context->cancelled))
|
||||||
file_destroy(file);
|
|
||||||
chunk_destroy(chunk);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
chunk_destroy(chunk);
|
|
||||||
return true;
|
return true;
|
||||||
|
file_destroy(file);
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void receiver_thread_fail(PipelineContextReceiver* context) {
|
static void receiver_thread_fail(PipelineContextReceiver* context) {
|
||||||
@@ -167,123 +156,42 @@ static void receiver_thread_fail(PipelineContextReceiver* context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int receive_thread(void* pipeline_context) {
|
int receive_thread(void* pipeline_context) {
|
||||||
#define RECEIVE_THREAD_FAIL() \
|
|
||||||
do { \
|
|
||||||
receiver_thread_fail(context); \
|
|
||||||
return thrd_error; \
|
|
||||||
} while (0)
|
|
||||||
PipelineContextReceiver* context = (PipelineContextReceiver*)pipeline_context;
|
PipelineContextReceiver* context = (PipelineContextReceiver*)pipeline_context;
|
||||||
if (context->ssl)
|
protocol_session_bind(&context->session);
|
||||||
io_set_ssl(context->ssl);
|
|
||||||
mtx_lock(&context->mutex);
|
mtx_lock(&context->mutex);
|
||||||
int file_descriptor = context->file_descriptor;
|
int file_descriptor = context->file_descriptor;
|
||||||
const Config* config = context->config;
|
const Config* config = context->config;
|
||||||
mtx_unlock(&context->mutex);
|
mtx_unlock(&context->mutex);
|
||||||
|
|
||||||
Status status;
|
ReceiverSink sink = {receiver_enqueue_file, context, false, false};
|
||||||
if (!receive_status(file_descriptor, &status))
|
if (receiver_process((Config*)config, file_descriptor, &sink) != 0) {
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
while (status == STATUS_NEXT || status == STATUS_CHUNK || status == STATUS_CHECK ||
|
|
||||||
status == STATUS_KEEPALIVE || status == STATUS_ABORT || status == STATUS_CHECK_BATCH) {
|
|
||||||
if (status == STATUS_KEEPALIVE) {
|
|
||||||
if (!send_status(file_descriptor, STATUS_KEEPALIVE))
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
goto next;
|
|
||||||
}
|
|
||||||
if (status == STATUS_ABORT) {
|
|
||||||
log_message(LOG_LEVEL_INFO, "Received abort from client, cleaning up");
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
}
|
|
||||||
if (status == STATUS_CHECK) {
|
|
||||||
bool skipped;
|
|
||||||
File* file = receive_incremental_check(file_descriptor, config, &skipped);
|
|
||||||
if (!skipped) {
|
|
||||||
if (file == NULL)
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
if (!queue_enqueue_multithreaded_cancel(
|
|
||||||
context->queue, file, &context->mutex, &context->condition_not_empty,
|
|
||||||
&context->condition_not_full, &context->cancelled)) {
|
|
||||||
file_destroy(file);
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if (status == STATUS_CHUNK) {
|
|
||||||
if (!receive_chunk_enqueue(file_descriptor, context))
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
} else if (status == STATUS_CHECK_BATCH) {
|
|
||||||
int count;
|
|
||||||
if (config->checksum || !receive_int(file_descriptor, &count) || count < 0 ||
|
|
||||||
count > MAX_MANIFEST_ENTRIES)
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
for (int i = 0; i < count; i++) {
|
|
||||||
char* check_path = receive_str(file_descriptor);
|
|
||||||
if (!check_path)
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
unsigned long long check_size;
|
|
||||||
long long check_mtime;
|
|
||||||
if (!receive_n_data(file_descriptor, &check_size, sizeof(check_size)) ||
|
|
||||||
!receive_n_data(file_descriptor, &check_mtime, sizeof(check_mtime))) {
|
|
||||||
free(check_path);
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
}
|
|
||||||
if (!valid_batch_path(check_path)) {
|
|
||||||
free(check_path);
|
|
||||||
if (!send_status(file_descriptor, STATUS_ERROR))
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
}
|
|
||||||
char* full_path = path_cat(config->receive_root_directory, check_path);
|
|
||||||
struct stat st;
|
|
||||||
bool has_old = full_path && lstat(full_path, &st) == 0;
|
|
||||||
bool match = has_old && (unsigned long long)st.st_size == check_size &&
|
|
||||||
(long long)st.st_mtime == check_mtime;
|
|
||||||
if (!send_status(file_descriptor, match ? STATUS_OK : STATUS_NEXT))
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
free(full_path);
|
|
||||||
free(check_path);
|
|
||||||
}
|
|
||||||
goto next;
|
|
||||||
} else {
|
|
||||||
File* file = file_receive(config, file_descriptor);
|
|
||||||
if (file) {
|
|
||||||
if (!queue_enqueue_multithreaded_cancel(
|
|
||||||
context->queue, file, &context->mutex, &context->condition_not_empty,
|
|
||||||
&context->condition_not_full, &context->cancelled)) {
|
|
||||||
file_destroy(file);
|
|
||||||
receiver_thread_fail(context);
|
receiver_thread_fail(context);
|
||||||
|
protocol_session_unbind();
|
||||||
return thrd_error;
|
return thrd_error;
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to receive file");
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
next:
|
|
||||||
if (!receive_status(file_descriptor, &status))
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
}
|
|
||||||
if (status == STATUS_MANIFEST) {
|
|
||||||
if (receive_manifest(file_descriptor, config, &status) != 0)
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
}
|
|
||||||
if (status != STATUS_FINISHED)
|
|
||||||
RECEIVE_THREAD_FAIL();
|
|
||||||
mtx_lock(&context->mutex);
|
mtx_lock(&context->mutex);
|
||||||
context->receiver_done = true;
|
context->receiver_done = true;
|
||||||
cnd_signal(&context->condition_not_empty);
|
cnd_signal(&context->condition_not_empty);
|
||||||
mtx_unlock(&context->mutex);
|
mtx_unlock(&context->mutex);
|
||||||
#undef RECEIVE_THREAD_FAIL
|
protocol_session_unbind();
|
||||||
return thrd_success;
|
return thrd_success;
|
||||||
}
|
}
|
||||||
|
|
||||||
int write_thread(void* pipeline_context) {
|
int write_thread(void* pipeline_context) {
|
||||||
PipelineContextReceiver* context = (PipelineContextReceiver*)pipeline_context;
|
PipelineContextReceiver* context = (PipelineContextReceiver*)pipeline_context;
|
||||||
if (context->ssl)
|
|
||||||
io_set_ssl(context->ssl);
|
|
||||||
mtx_lock(&context->mutex);
|
mtx_lock(&context->mutex);
|
||||||
bool save_to_disk = context->config->save_to_disk;
|
bool save_to_disk = context->config->save_to_disk;
|
||||||
char* root_directory = str_dup(context->config->receive_root_directory);
|
char* root_directory = str_dup(context->config->receive_root_directory);
|
||||||
mtx_unlock(&context->mutex);
|
mtx_unlock(&context->mutex);
|
||||||
|
if (save_to_disk && !root_directory) {
|
||||||
|
mtx_lock(&context->mutex);
|
||||||
|
atomic_store(&context->cancelled, true);
|
||||||
|
context->receiver_done = true;
|
||||||
|
cnd_broadcast(&context->condition_not_full);
|
||||||
|
cnd_broadcast(&context->condition_not_empty);
|
||||||
|
mtx_unlock(&context->mutex);
|
||||||
|
return thrd_error;
|
||||||
|
}
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
File* file =
|
File* file =
|
||||||
|
|||||||
@@ -35,6 +35,7 @@ typedef struct PipelineContextReceiver {
|
|||||||
Config* config;
|
Config* config;
|
||||||
int file_descriptor;
|
int file_descriptor;
|
||||||
SSL* ssl;
|
SSL* ssl;
|
||||||
|
ProtocolSession session;
|
||||||
mtx_t mutex;
|
mtx_t mutex;
|
||||||
cnd_t condition_not_full;
|
cnd_t condition_not_full;
|
||||||
cnd_t condition_not_empty;
|
cnd_t condition_not_empty;
|
||||||
|
|||||||
+206
-73
@@ -13,75 +13,130 @@
|
|||||||
|
|
||||||
#define RECEIVE_TIMEOUT_SEC 60 /* 60 second per-message timeout */
|
#define RECEIVE_TIMEOUT_SEC 60 /* 60 second per-message timeout */
|
||||||
#define SEND_TIMEOUT_SEC 60
|
#define SEND_TIMEOUT_SEC 60
|
||||||
#define MAX_CONNECTION_MEMORY (1024ULL * 1024 * 1024) /* 1 GB total per connection */
|
#define MAX_CONNECTION_MEMORY (256ULL * 1024 * 1024) /* bounded cumulative receive budget */
|
||||||
|
|
||||||
static __thread int io_read_fd = -1;
|
static __thread int io_read_fd = -1;
|
||||||
static __thread int io_write_fd = -1;
|
static __thread int io_write_fd = -1;
|
||||||
static __thread SSL* io_ssl;
|
static __thread SSL* io_ssl;
|
||||||
|
static __thread ProtocolSession* bound_session;
|
||||||
|
static __thread ProtocolSession legacy_io_session = {.read_fd = -1, .write_fd = -1};
|
||||||
|
|
||||||
static unsigned long long io_bwlimit = 0;
|
static unsigned long long io_bwlimit = 0;
|
||||||
static long long bw_tokens = 0;
|
|
||||||
static struct timespec bw_last_refill = {0, 0};
|
|
||||||
static mtx_t bw_mutex;
|
static mtx_t bw_mutex;
|
||||||
static once_flag bw_mutex_once = ONCE_FLAG_INIT;
|
static once_flag bw_mutex_once = ONCE_FLAG_INIT;
|
||||||
|
|
||||||
static __thread unsigned long long total_allocated_bytes = 0;
|
static unsigned long long global_bwlimit(void);
|
||||||
|
|
||||||
|
void protocol_release_memory(size_t charge) {
|
||||||
|
ProtocolSession* session = bound_session ? bound_session : &legacy_io_session;
|
||||||
|
if ((unsigned long long)charge >= session->total_allocated_bytes)
|
||||||
|
session->total_allocated_bytes = 0;
|
||||||
|
else
|
||||||
|
session->total_allocated_bytes -= charge;
|
||||||
|
}
|
||||||
void io_set_fds(int read_fd, int write_fd) {
|
void io_set_fds(int read_fd, int write_fd) {
|
||||||
|
bound_session = NULL;
|
||||||
io_read_fd = read_fd;
|
io_read_fd = read_fd;
|
||||||
io_write_fd = write_fd;
|
io_write_fd = write_fd;
|
||||||
/* A descriptor switch starts a new transport; never reuse a TLS object
|
/* A descriptor switch starts a new transport; never reuse a TLS object
|
||||||
belonging to a previous connection or test pipe. */
|
belonging to a previous connection or test pipe. */
|
||||||
io_ssl = NULL;
|
io_ssl = NULL;
|
||||||
total_allocated_bytes = 0;
|
legacy_io_session.read_fd = read_fd;
|
||||||
|
legacy_io_session.write_fd = write_fd;
|
||||||
|
legacy_io_session.ssl = NULL;
|
||||||
|
legacy_io_session.total_allocated_bytes = 0;
|
||||||
|
protocol_session_set_bwlimit(&legacy_io_session, global_bwlimit());
|
||||||
|
}
|
||||||
|
|
||||||
|
void protocol_session_init(ProtocolSession* session, int read_fd, int write_fd) {
|
||||||
|
if (!session)
|
||||||
|
return;
|
||||||
|
memset(session, 0, sizeof(*session));
|
||||||
|
session->read_fd = read_fd;
|
||||||
|
session->write_fd = write_fd;
|
||||||
|
protocol_session_set_bwlimit(session, global_bwlimit());
|
||||||
|
}
|
||||||
|
|
||||||
|
void protocol_session_bind(ProtocolSession* session) {
|
||||||
|
bound_session = session;
|
||||||
|
}
|
||||||
|
|
||||||
|
void protocol_session_unbind(void) {
|
||||||
|
bound_session = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
void protocol_session_set_ssl(ProtocolSession* session, SSL* ssl) {
|
||||||
|
if (session)
|
||||||
|
session->ssl = ssl;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void bw_mutex_init(void) {
|
static void bw_mutex_init(void) {
|
||||||
mtx_init(&bw_mutex, mtx_plain);
|
mtx_init(&bw_mutex, mtx_plain);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static unsigned long long global_bwlimit(void) {
|
||||||
|
unsigned long long limit;
|
||||||
|
call_once(&bw_mutex_once, bw_mutex_init);
|
||||||
|
mtx_lock(&bw_mutex);
|
||||||
|
limit = io_bwlimit;
|
||||||
|
mtx_unlock(&bw_mutex);
|
||||||
|
return limit;
|
||||||
|
}
|
||||||
|
|
||||||
void io_set_bwlimit(unsigned long long bytes_per_sec) {
|
void io_set_bwlimit(unsigned long long bytes_per_sec) {
|
||||||
call_once(&bw_mutex_once, bw_mutex_init);
|
call_once(&bw_mutex_once, bw_mutex_init);
|
||||||
mtx_lock(&bw_mutex);
|
mtx_lock(&bw_mutex);
|
||||||
io_bwlimit = bytes_per_sec;
|
io_bwlimit =
|
||||||
bw_tokens = (long long)io_bwlimit;
|
bytes_per_sec > (unsigned long long)LLONG_MAX ? (unsigned long long)LLONG_MAX : bytes_per_sec;
|
||||||
clock_gettime(CLOCK_MONOTONIC, &bw_last_refill);
|
|
||||||
mtx_unlock(&bw_mutex);
|
mtx_unlock(&bw_mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void bw_throttle(size_t bytes_written) {
|
void protocol_session_set_bwlimit(ProtocolSession* session, unsigned long long bytes_per_sec) {
|
||||||
if (io_bwlimit == 0)
|
if (!session)
|
||||||
|
return;
|
||||||
|
session->bwlimit =
|
||||||
|
bytes_per_sec > (unsigned long long)LLONG_MAX ? (unsigned long long)LLONG_MAX : bytes_per_sec;
|
||||||
|
session->bw_tokens = (long long)session->bwlimit;
|
||||||
|
struct timespec now;
|
||||||
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
||||||
|
session->bw_last_refill_sec = now.tv_sec;
|
||||||
|
session->bw_last_refill_nsec = now.tv_nsec;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void bw_throttle_session(ProtocolSession* session, size_t bytes_written) {
|
||||||
|
if (session->bwlimit == 0)
|
||||||
return;
|
return;
|
||||||
call_once(&bw_mutex_once, bw_mutex_init);
|
|
||||||
mtx_lock(&bw_mutex);
|
|
||||||
|
|
||||||
struct timespec now;
|
struct timespec now;
|
||||||
clock_gettime(CLOCK_MONOTONIC, &now);
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
||||||
|
|
||||||
long long elapsed_ns =
|
long long elapsed_ns = (now.tv_sec - session->bw_last_refill_sec) * 1000000000LL +
|
||||||
(now.tv_sec - bw_last_refill.tv_sec) * 1000000000LL + (now.tv_nsec - bw_last_refill.tv_nsec);
|
(now.tv_nsec - session->bw_last_refill_nsec);
|
||||||
bw_last_refill = now;
|
session->bw_last_refill_sec = now.tv_sec;
|
||||||
|
session->bw_last_refill_nsec = now.tv_nsec;
|
||||||
|
|
||||||
long long tokens_to_add = (long long)((double)io_bwlimit * elapsed_ns / 1000000000.0);
|
long long tokens_to_add = (long long)((double)session->bwlimit * elapsed_ns / 1000000000.0);
|
||||||
bw_tokens += tokens_to_add;
|
session->bw_tokens += tokens_to_add;
|
||||||
if (bw_tokens > (long long)io_bwlimit)
|
if (session->bw_tokens > (long long)session->bwlimit)
|
||||||
bw_tokens = (long long)io_bwlimit;
|
session->bw_tokens = (long long)session->bwlimit;
|
||||||
|
|
||||||
bw_tokens -= (long long)bytes_written;
|
session->bw_tokens -= bytes_written;
|
||||||
|
|
||||||
if (bw_tokens < 0) {
|
if (session->bw_tokens < 0) {
|
||||||
long long deficit_us = (long long)((double)(-bw_tokens) / io_bwlimit * 1000000.0);
|
long long deficit_us =
|
||||||
|
(long long)((double)(-session->bw_tokens) / session->bwlimit * 1000000.0);
|
||||||
if (deficit_us >= 1000)
|
if (deficit_us >= 1000)
|
||||||
poll(NULL, 0, (int)(deficit_us / 1000));
|
poll(NULL, 0, (int)(deficit_us / 1000));
|
||||||
else
|
else
|
||||||
usleep((useconds_t)deficit_us);
|
usleep((useconds_t)deficit_us);
|
||||||
bw_tokens = 0;
|
session->bw_tokens = 0;
|
||||||
clock_gettime(CLOCK_MONOTONIC, &bw_last_refill);
|
session->bw_last_refill_sec = now.tv_sec;
|
||||||
|
session->bw_last_refill_nsec = now.tv_nsec;
|
||||||
}
|
}
|
||||||
mtx_unlock(&bw_mutex);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void io_set_ssl(SSL* ssl) {
|
void io_set_ssl(SSL* ssl) {
|
||||||
|
bound_session = NULL;
|
||||||
io_ssl = ssl;
|
io_ssl = ssl;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -89,8 +144,30 @@ SSL* io_get_ssl(void) {
|
|||||||
return io_ssl;
|
return io_ssl;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int io_fd(int dir_fd, int file_descriptor) {
|
static ProtocolSession* legacy_session(int read_fd, int write_fd) {
|
||||||
return (dir_fd != -1) ? dir_fd : file_descriptor;
|
if (bound_session)
|
||||||
|
return bound_session;
|
||||||
|
int target_read_fd = io_read_fd != -1 ? io_read_fd : read_fd;
|
||||||
|
int target_write_fd = io_write_fd != -1 ? io_write_fd : write_fd;
|
||||||
|
if (legacy_io_session.read_fd != target_read_fd ||
|
||||||
|
legacy_io_session.write_fd != target_write_fd) {
|
||||||
|
legacy_io_session.read_fd = target_read_fd;
|
||||||
|
legacy_io_session.write_fd = target_write_fd;
|
||||||
|
legacy_io_session.total_allocated_bytes = 0;
|
||||||
|
protocol_session_set_bwlimit(&legacy_io_session, global_bwlimit());
|
||||||
|
} else if (legacy_io_session.bwlimit != global_bwlimit()) {
|
||||||
|
protocol_session_set_bwlimit(&legacy_io_session, global_bwlimit());
|
||||||
|
}
|
||||||
|
legacy_io_session.ssl = io_ssl;
|
||||||
|
return &legacy_io_session;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool send_n_data(int file_descriptor, const void* data, size_t data_size) {
|
||||||
|
return protocol_send_n_data(legacy_session(-1, file_descriptor), data, data_size);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool receive_n_data(int file_descriptor, void* data, size_t data_size) {
|
||||||
|
return protocol_receive_n_data(legacy_session(file_descriptor, -1), data, data_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int deadline_remaining_ms(const struct timespec* deadline) {
|
static int deadline_remaining_ms(const struct timespec* deadline) {
|
||||||
@@ -104,9 +181,13 @@ static int deadline_remaining_ms(const struct timespec* deadline) {
|
|||||||
return ms > INT_MAX ? INT_MAX : (int)ms;
|
return ms > INT_MAX ? INT_MAX : (int)ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool send_n_data(int file_descriptor, const void* data, size_t data_size) {
|
bool protocol_send_n_data(ProtocolSession* session, const void* data, size_t data_size) {
|
||||||
|
if (!data && data_size != 0)
|
||||||
|
return false;
|
||||||
log_message(LOG_LEVEL_DEBUG, " Sending n Data: %zu", data_size);
|
log_message(LOG_LEVEL_DEBUG, " Sending n Data: %zu", data_size);
|
||||||
int fd = io_fd(io_write_fd, file_descriptor);
|
if (!session)
|
||||||
|
return false;
|
||||||
|
int fd = session->write_fd;
|
||||||
struct timespec deadline;
|
struct timespec deadline;
|
||||||
clock_gettime(CLOCK_MONOTONIC, &deadline);
|
clock_gettime(CLOCK_MONOTONIC, &deadline);
|
||||||
deadline.tv_sec += SEND_TIMEOUT_SEC;
|
deadline.tv_sec += SEND_TIMEOUT_SEC;
|
||||||
@@ -114,7 +195,7 @@ bool send_n_data(int file_descriptor, const void* data, size_t data_size) {
|
|||||||
ssize_t total_bytes_send = 0;
|
ssize_t total_bytes_send = 0;
|
||||||
while ((size_t)total_bytes_send < data_size) {
|
while ((size_t)total_bytes_send < data_size) {
|
||||||
size_t chunk = data_size - total_bytes_send;
|
size_t chunk = data_size - total_bytes_send;
|
||||||
if (io_bwlimit > 0 && chunk > 65536)
|
if (session->bwlimit > 0 && chunk > 65536)
|
||||||
chunk = 65536;
|
chunk = 65536;
|
||||||
struct pollfd pfd = {.fd = fd, .events = wait_events};
|
struct pollfd pfd = {.fd = fd, .events = wait_events};
|
||||||
int poll_result = poll(&pfd, 1, deadline_remaining_ms(&deadline));
|
int poll_result = poll(&pfd, 1, deadline_remaining_ms(&deadline));
|
||||||
@@ -127,13 +208,13 @@ bool send_n_data(int file_descriptor, const void* data, size_t data_size) {
|
|||||||
if (pfd.revents & (POLLERR | POLLNVAL))
|
if (pfd.revents & (POLLERR | POLLNVAL))
|
||||||
return false;
|
return false;
|
||||||
ssize_t bytes_send;
|
ssize_t bytes_send;
|
||||||
if (io_ssl)
|
if (session->ssl)
|
||||||
bytes_send = SSL_write(io_ssl, (const char*)data + total_bytes_send, chunk);
|
bytes_send = SSL_write(session->ssl, (const char*)data + total_bytes_send, chunk);
|
||||||
else
|
else
|
||||||
bytes_send = write(fd, (const char*)data + total_bytes_send, chunk);
|
bytes_send = write(fd, (const char*)data + total_bytes_send, chunk);
|
||||||
if (bytes_send <= 0) {
|
if (bytes_send <= 0) {
|
||||||
if (io_ssl) {
|
if (session->ssl) {
|
||||||
int ssl_err = SSL_get_error(io_ssl, (int)bytes_send);
|
int ssl_err = SSL_get_error(session->ssl, (int)bytes_send);
|
||||||
if (ssl_err == SSL_ERROR_WANT_WRITE || ssl_err == SSL_ERROR_WANT_READ) {
|
if (ssl_err == SSL_ERROR_WANT_WRITE || ssl_err == SSL_ERROR_WANT_READ) {
|
||||||
wait_events = ssl_err == SSL_ERROR_WANT_WRITE ? POLLOUT : POLLIN;
|
wait_events = ssl_err == SSL_ERROR_WANT_WRITE ? POLLOUT : POLLIN;
|
||||||
continue;
|
continue;
|
||||||
@@ -142,16 +223,20 @@ bool send_n_data(int file_descriptor, const void* data, size_t data_size) {
|
|||||||
log_message(LOG_LEVEL_ERROR, "Could not send data");
|
log_message(LOG_LEVEL_ERROR, "Could not send data");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
bw_throttle((size_t)bytes_send);
|
bw_throttle_session(session, (size_t)bytes_send);
|
||||||
total_bytes_send += bytes_send;
|
total_bytes_send += bytes_send;
|
||||||
|
if (session->ssl)
|
||||||
|
wait_events = POLLOUT;
|
||||||
}
|
}
|
||||||
log_message(LOG_LEVEL_DEBUG, " Send n Data: %zu", total_bytes_send);
|
log_message(LOG_LEVEL_DEBUG, " Send n Data: %zu", total_bytes_send);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool receive_n_data(int file_descriptor, void* data, size_t data_size) {
|
bool protocol_receive_n_data(ProtocolSession* session, void* data, size_t data_size) {
|
||||||
log_message(LOG_LEVEL_DEBUG, " Receiving n Data: %zu", data_size);
|
log_message(LOG_LEVEL_DEBUG, " Receiving n Data: %zu", data_size);
|
||||||
int fd = io_fd(io_read_fd, file_descriptor);
|
if (!session)
|
||||||
|
return false;
|
||||||
|
int fd = session->read_fd;
|
||||||
|
|
||||||
struct timespec deadline;
|
struct timespec deadline;
|
||||||
clock_gettime(CLOCK_MONOTONIC, &deadline);
|
clock_gettime(CLOCK_MONOTONIC, &deadline);
|
||||||
@@ -160,6 +245,7 @@ bool receive_n_data(int file_descriptor, void* data, size_t data_size) {
|
|||||||
size_t total_bytes_received = 0;
|
size_t total_bytes_received = 0;
|
||||||
short wait_events = POLLIN;
|
short wait_events = POLLIN;
|
||||||
while (total_bytes_received < data_size) {
|
while (total_bytes_received < data_size) {
|
||||||
|
if (!session->ssl || SSL_pending(session->ssl) == 0) {
|
||||||
struct pollfd pfd = {.fd = fd, .events = wait_events};
|
struct pollfd pfd = {.fd = fd, .events = wait_events};
|
||||||
int poll_result = poll(&pfd, 1, deadline_remaining_ms(&deadline));
|
int poll_result = poll(&pfd, 1, deadline_remaining_ms(&deadline));
|
||||||
if (poll_result == 0) {
|
if (poll_result == 0) {
|
||||||
@@ -174,17 +260,18 @@ bool receive_n_data(int file_descriptor, void* data, size_t data_size) {
|
|||||||
/* POLLHUP may accompany the final readable bytes on pipes/sockets. */
|
/* POLLHUP may accompany the final readable bytes on pipes/sockets. */
|
||||||
if (pfd.revents & (POLLERR | POLLNVAL))
|
if (pfd.revents & (POLLERR | POLLNVAL))
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
ssize_t bytes_received;
|
ssize_t bytes_received;
|
||||||
if (io_ssl)
|
if (session->ssl)
|
||||||
bytes_received =
|
bytes_received = SSL_read(session->ssl, (char*)data + total_bytes_received,
|
||||||
SSL_read(io_ssl, (char*)data + total_bytes_received, data_size - total_bytes_received);
|
data_size - total_bytes_received);
|
||||||
else
|
else
|
||||||
bytes_received =
|
bytes_received =
|
||||||
read(fd, (char*)data + total_bytes_received, data_size - total_bytes_received);
|
read(fd, (char*)data + total_bytes_received, data_size - total_bytes_received);
|
||||||
if (bytes_received <= 0) {
|
if (bytes_received <= 0) {
|
||||||
if (io_ssl) {
|
if (session->ssl) {
|
||||||
int ssl_err = SSL_get_error(io_ssl, (int)bytes_received);
|
int ssl_err = SSL_get_error(session->ssl, (int)bytes_received);
|
||||||
if (ssl_err == SSL_ERROR_WANT_WRITE || ssl_err == SSL_ERROR_WANT_READ) {
|
if (ssl_err == SSL_ERROR_WANT_WRITE || ssl_err == SSL_ERROR_WANT_READ) {
|
||||||
wait_events = ssl_err == SSL_ERROR_WANT_WRITE ? POLLOUT : POLLIN;
|
wait_events = ssl_err == SSL_ERROR_WANT_WRITE ? POLLOUT : POLLIN;
|
||||||
continue;
|
continue;
|
||||||
@@ -196,7 +283,9 @@ bool receive_n_data(int file_descriptor, void* data, size_t data_size) {
|
|||||||
log_message(LOG_LEVEL_ERROR, "Could not receive bytes");
|
log_message(LOG_LEVEL_ERROR, "Could not receive bytes");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
total_bytes_received += bytes_received;
|
total_bytes_received += (size_t)bytes_received;
|
||||||
|
if (session->ssl)
|
||||||
|
wait_events = POLLIN;
|
||||||
}
|
}
|
||||||
log_message(LOG_LEVEL_DEBUG, " Received n Data: %zu", total_bytes_received);
|
log_message(LOG_LEVEL_DEBUG, " Received n Data: %zu", total_bytes_received);
|
||||||
return true;
|
return true;
|
||||||
@@ -231,24 +320,24 @@ static const char* status_to_string(Status status) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool send_str(int file_descriptor, const char* data) {
|
bool protocol_send_str(ProtocolSession* session, const char* data) {
|
||||||
if (data == NULL)
|
if (data == NULL)
|
||||||
return false;
|
return false;
|
||||||
size_t size = strlen(data);
|
size_t size = strlen(data);
|
||||||
if (!send_n_data(file_descriptor, &size, sizeof(size_t)))
|
if (!protocol_send_n_data(session, &size, sizeof(size_t)))
|
||||||
return false;
|
return false;
|
||||||
if (!send_n_data(file_descriptor, data, size))
|
if (!protocol_send_n_data(session, data, size))
|
||||||
return false;
|
return false;
|
||||||
log_message(LOG_LEVEL_DEBUG, "Send String: %s", data);
|
log_message(LOG_LEVEL_DEBUG, "Send String: %s", data);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
char* receive_str(int file_descriptor) {
|
char* protocol_receive_str(ProtocolSession* session) {
|
||||||
size_t size;
|
size_t size;
|
||||||
if (!receive_n_data(file_descriptor, &size, sizeof(size_t)))
|
if (!protocol_receive_n_data(session, &size, sizeof(size_t)))
|
||||||
return NULL;
|
return NULL;
|
||||||
if (size > MAX_STRING_SIZE || size > SIZE_MAX - 1 ||
|
if (size > MAX_STRING_SIZE || size > SIZE_MAX - 1 ||
|
||||||
size + 1 > MAX_CONNECTION_MEMORY - total_allocated_bytes) {
|
size + 1 > MAX_CONNECTION_MEMORY - session->total_allocated_bytes) {
|
||||||
log_message(LOG_LEVEL_ERROR, "String size %zu exceeds maximum %llu", size,
|
log_message(LOG_LEVEL_ERROR, "String size %zu exceeds maximum %llu", size,
|
||||||
(unsigned long long)MAX_STRING_SIZE);
|
(unsigned long long)MAX_STRING_SIZE);
|
||||||
return NULL;
|
return NULL;
|
||||||
@@ -256,83 +345,127 @@ char* receive_str(int file_descriptor) {
|
|||||||
char* data = (char*)malloc(size + 1);
|
char* data = (char*)malloc(size + 1);
|
||||||
if (data == NULL)
|
if (data == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
if (!receive_n_data(file_descriptor, data, size)) {
|
if (!protocol_receive_n_data(session, data, size)) {
|
||||||
free(data);
|
free(data);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
if (memchr(data, '\0', size) != NULL) {
|
||||||
|
free(data);
|
||||||
|
log_message(LOG_LEVEL_ERROR, "Received string contains an embedded NUL");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
data[size] = '\0';
|
data[size] = '\0';
|
||||||
total_allocated_bytes += size + 1;
|
session->total_allocated_bytes += size + 1;
|
||||||
log_message(LOG_LEVEL_DEBUG, "Received String: %s", data);
|
log_message(LOG_LEVEL_DEBUG, "Received String: %s", data);
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool send_data(int file_descriptor, const Data* data) {
|
bool protocol_send_data(ProtocolSession* session, const Data* data) {
|
||||||
unsigned long long data_size = data->size;
|
if (!data || (!data->data && data->size != 0))
|
||||||
if (!send_n_data(file_descriptor, &data_size, sizeof(unsigned long long)))
|
|
||||||
return false;
|
return false;
|
||||||
if (!send_n_data(file_descriptor, data->data, data_size))
|
if (!session)
|
||||||
|
return false;
|
||||||
|
unsigned long long data_size = data->size;
|
||||||
|
if (!protocol_send_n_data(session, &data_size, sizeof(unsigned long long)))
|
||||||
|
return false;
|
||||||
|
if (!protocol_send_n_data(session, data->data, data_size))
|
||||||
return false;
|
return false;
|
||||||
log_message(LOG_LEVEL_DEBUG, "Send %lld data", data_size);
|
log_message(LOG_LEVEL_DEBUG, "Send %lld data", data_size);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
Data* receive_data(int file_descriptor) {
|
Data* protocol_receive_data_limited(ProtocolSession* session, unsigned long long maximum_size) {
|
||||||
unsigned long long size = 0;
|
if (!session)
|
||||||
if (!receive_n_data(file_descriptor, &size, sizeof(unsigned long long)))
|
|
||||||
return NULL;
|
return NULL;
|
||||||
if (size > MAX_DATA_PAYLOAD_SIZE) {
|
unsigned long long size = 0;
|
||||||
|
if (!protocol_receive_n_data(session, &size, sizeof(unsigned long long)))
|
||||||
|
return NULL;
|
||||||
|
if (size > MAX_DATA_PAYLOAD_SIZE || size > maximum_size) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Data size %llu exceeds maximum %llu", size,
|
log_message(LOG_LEVEL_ERROR, "Data size %llu exceeds maximum %llu", size,
|
||||||
(unsigned long long)MAX_DATA_PAYLOAD_SIZE);
|
(unsigned long long)MAX_DATA_PAYLOAD_SIZE);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
size_t allocation_size = size == 0 ? 1 : (size_t)size;
|
size_t allocation_size = size == 0 ? 1 : (size_t)size;
|
||||||
if (allocation_size > MAX_CONNECTION_MEMORY - total_allocated_bytes) {
|
if (allocation_size > MAX_CONNECTION_MEMORY - session->total_allocated_bytes) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Per-connection memory limit exceeded (%llu + %llu > %llu)",
|
log_message(LOG_LEVEL_ERROR, "Per-connection memory limit exceeded (%llu + %llu > %llu)",
|
||||||
(unsigned long long)total_allocated_bytes, size,
|
(unsigned long long)session->total_allocated_bytes, size,
|
||||||
(unsigned long long)MAX_CONNECTION_MEMORY);
|
(unsigned long long)MAX_CONNECTION_MEMORY);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
void* data = malloc(allocation_size);
|
void* data = malloc(allocation_size);
|
||||||
if (data == NULL)
|
if (data == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
if (!receive_n_data(file_descriptor, data, (size_t)size)) {
|
if (!protocol_receive_n_data(session, data, (size_t)size)) {
|
||||||
free(data);
|
free(data);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
total_allocated_bytes += allocation_size;
|
session->total_allocated_bytes += allocation_size;
|
||||||
log_message(LOG_LEVEL_DEBUG, "Received %lld data", size);
|
log_message(LOG_LEVEL_DEBUG, "Received %lld data", size);
|
||||||
Data* result = data_create(data, (size_t)size);
|
Data* result = data_create(data, (size_t)size);
|
||||||
if (!result) {
|
if (!result) {
|
||||||
free(data);
|
session->total_allocated_bytes -= allocation_size;
|
||||||
total_allocated_bytes -= allocation_size;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
result->protocol_charge = allocation_size;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool send_int(int file_descriptor, int data) {
|
Data* protocol_receive_data(ProtocolSession* session) {
|
||||||
if (!send_n_data(file_descriptor, &data, sizeof(int)))
|
return protocol_receive_data_limited(session, MAX_DATA_PAYLOAD_SIZE);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool protocol_send_int(ProtocolSession* session, int data) {
|
||||||
|
if (!protocol_send_n_data(session, &data, sizeof(int)))
|
||||||
return false;
|
return false;
|
||||||
log_message(LOG_LEVEL_DEBUG, "Send Int: %d", data);
|
log_message(LOG_LEVEL_DEBUG, "Send Int: %d", data);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool receive_int(int file_descriptor, int* data) {
|
bool protocol_receive_int(ProtocolSession* session, int* data) {
|
||||||
if (!receive_n_data(file_descriptor, data, sizeof(int)))
|
if (!protocol_receive_n_data(session, data, sizeof(int)))
|
||||||
return false;
|
return false;
|
||||||
log_message(LOG_LEVEL_DEBUG, "Received Int: %d", *data);
|
log_message(LOG_LEVEL_DEBUG, "Received Int: %d", *data);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool send_status(int file_descriptor, Status status) {
|
bool protocol_send_status(ProtocolSession* session, Status status) {
|
||||||
if (!send_n_data(file_descriptor, &status, sizeof(Status)))
|
if (!protocol_send_n_data(session, &status, sizeof(Status)))
|
||||||
return false;
|
return false;
|
||||||
log_message(LOG_LEVEL_DEBUG, "Send Status: %s", status_to_string(status));
|
log_message(LOG_LEVEL_DEBUG, "Send Status: %s", status_to_string(status));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool receive_status(int file_descriptor, Status* status) {
|
bool protocol_receive_status(ProtocolSession* session, Status* status) {
|
||||||
if (!receive_n_data(file_descriptor, status, sizeof(Status)))
|
if (!protocol_receive_n_data(session, status, sizeof(Status)))
|
||||||
return false;
|
return false;
|
||||||
log_message(LOG_LEVEL_DEBUG, "Received Status: %s", status_to_string(*status));
|
log_message(LOG_LEVEL_DEBUG, "Received Status: %s", status_to_string(*status));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool send_str(int fd, const char* data) {
|
||||||
|
return protocol_send_str(legacy_session(-1, fd), data);
|
||||||
|
}
|
||||||
|
char* receive_str(int fd) {
|
||||||
|
return protocol_receive_str(legacy_session(fd, -1));
|
||||||
|
}
|
||||||
|
bool send_data(int fd, const Data* data) {
|
||||||
|
return protocol_send_data(legacy_session(-1, fd), data);
|
||||||
|
}
|
||||||
|
Data* receive_data(int fd) {
|
||||||
|
return protocol_receive_data_limited(legacy_session(fd, -1), MAX_DATA_PAYLOAD_SIZE);
|
||||||
|
}
|
||||||
|
Data* receive_data_limited(int fd, unsigned long long maximum_size) {
|
||||||
|
return protocol_receive_data_limited(legacy_session(fd, -1), maximum_size);
|
||||||
|
}
|
||||||
|
bool send_int(int fd, int data) {
|
||||||
|
return protocol_send_int(legacy_session(-1, fd), data);
|
||||||
|
}
|
||||||
|
bool receive_int(int fd, int* data) {
|
||||||
|
return protocol_receive_int(legacy_session(fd, -1), data);
|
||||||
|
}
|
||||||
|
bool send_status(int fd, Status status) {
|
||||||
|
return protocol_send_status(legacy_session(-1, fd), status);
|
||||||
|
}
|
||||||
|
bool receive_status(int fd, Status* status) {
|
||||||
|
return protocol_receive_status(legacy_session(fd, -1), status);
|
||||||
|
}
|
||||||
|
|||||||
@@ -10,6 +10,8 @@
|
|||||||
|
|
||||||
/* Maximum allowed data payload size for receive_data (100 MB) */
|
/* Maximum allowed data payload size for receive_data (100 MB) */
|
||||||
#define MAX_DATA_PAYLOAD_SIZE (100ULL * 1024 * 1024)
|
#define MAX_DATA_PAYLOAD_SIZE (100ULL * 1024 * 1024)
|
||||||
|
/* Maximum uncompressed file payload accepted by the receiver. */
|
||||||
|
#define MAX_RECEIVE_FILE_SIZE (64ULL * 1024 * 1024)
|
||||||
|
|
||||||
/* Maximum chunk size (64 MB) — prevents unbounded allocation from the wire */
|
/* Maximum chunk size (64 MB) — prevents unbounded allocation from the wire */
|
||||||
#define MAX_CHUNK_SIZE (64ULL * 1024 * 1024)
|
#define MAX_CHUNK_SIZE (64ULL * 1024 * 1024)
|
||||||
@@ -19,6 +21,23 @@
|
|||||||
|
|
||||||
typedef struct ssl_st SSL;
|
typedef struct ssl_st SSL;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Explicit owner of protocol I/O. A session does not own the descriptors or
|
||||||
|
* SSL object; it only describes the transport used by a transfer. This makes
|
||||||
|
* it safe to pass the transport to a worker without relying on inherited
|
||||||
|
* thread-local state.
|
||||||
|
*/
|
||||||
|
typedef struct ProtocolSession {
|
||||||
|
int read_fd;
|
||||||
|
int write_fd;
|
||||||
|
SSL* ssl;
|
||||||
|
unsigned long long bwlimit;
|
||||||
|
long long bw_tokens;
|
||||||
|
long long bw_last_refill_sec;
|
||||||
|
long bw_last_refill_nsec;
|
||||||
|
unsigned long long total_allocated_bytes;
|
||||||
|
} ProtocolSession;
|
||||||
|
|
||||||
typedef int Status;
|
typedef int Status;
|
||||||
enum NET_STATUS {
|
enum NET_STATUS {
|
||||||
STATUS_OK,
|
STATUS_OK,
|
||||||
@@ -39,6 +58,24 @@ void io_set_fds(int read_fd, int write_fd);
|
|||||||
void io_set_bwlimit(unsigned long long bytes_per_sec);
|
void io_set_bwlimit(unsigned long long bytes_per_sec);
|
||||||
void io_set_ssl(SSL* ssl);
|
void io_set_ssl(SSL* ssl);
|
||||||
SSL* io_get_ssl(void);
|
SSL* io_get_ssl(void);
|
||||||
|
|
||||||
|
void protocol_session_init(ProtocolSession* session, int read_fd, int write_fd);
|
||||||
|
/* Transitional bridge for helpers whose signatures still carry only an fd. */
|
||||||
|
void protocol_session_bind(ProtocolSession* session);
|
||||||
|
void protocol_session_unbind(void);
|
||||||
|
void protocol_session_set_ssl(ProtocolSession* session, SSL* ssl);
|
||||||
|
void protocol_session_set_bwlimit(ProtocolSession* session, unsigned long long bytes_per_sec);
|
||||||
|
bool protocol_send_n_data(ProtocolSession* session, const void* data, size_t data_size);
|
||||||
|
bool protocol_receive_n_data(ProtocolSession* session, void* data, size_t data_size);
|
||||||
|
bool protocol_send_str(ProtocolSession* session, const char* data);
|
||||||
|
char* protocol_receive_str(ProtocolSession* session);
|
||||||
|
bool protocol_send_data(ProtocolSession* session, const Data* data);
|
||||||
|
Data* protocol_receive_data(ProtocolSession* session);
|
||||||
|
Data* protocol_receive_data_limited(ProtocolSession* session, unsigned long long maximum_size);
|
||||||
|
bool protocol_send_int(ProtocolSession* session, int data);
|
||||||
|
bool protocol_receive_int(ProtocolSession* session, int* data);
|
||||||
|
bool protocol_send_status(ProtocolSession* session, Status status);
|
||||||
|
bool protocol_receive_status(ProtocolSession* session, Status* status);
|
||||||
bool send_n_data(int file_descriptor, const void* data, size_t data_size);
|
bool send_n_data(int file_descriptor, const void* data, size_t data_size);
|
||||||
bool receive_n_data(int file_descriptor, void* data, size_t data_size);
|
bool receive_n_data(int file_descriptor, void* data, size_t data_size);
|
||||||
|
|
||||||
@@ -46,6 +83,7 @@ bool send_str(int file_descriptor, const char* data);
|
|||||||
char* receive_str(int file_descriptor);
|
char* receive_str(int file_descriptor);
|
||||||
bool send_data(int file_descriptor, const Data* data);
|
bool send_data(int file_descriptor, const Data* data);
|
||||||
Data* receive_data(int file_descriptor);
|
Data* receive_data(int file_descriptor);
|
||||||
|
Data* receive_data_limited(int file_descriptor, unsigned long long maximum_size);
|
||||||
bool send_int(int file_descriptor, int data);
|
bool send_int(int file_descriptor, int data);
|
||||||
bool receive_int(int file_descriptor, int* data);
|
bool receive_int(int file_descriptor, int* data);
|
||||||
bool send_status(int file_descriptor, Status status);
|
bool send_status(int file_descriptor, Status status);
|
||||||
|
|||||||
@@ -151,6 +151,10 @@ int tcp_get_contimeout_sec(void) {
|
|||||||
return g_contimeout_sec;
|
return g_contimeout_sec;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int tcp_get_timeout_sec(void) {
|
||||||
|
return g_timeout_sec;
|
||||||
|
}
|
||||||
|
|
||||||
static void tcp_apply_socket_timeout(int fd) {
|
static void tcp_apply_socket_timeout(int fd) {
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
tv.tv_sec = g_timeout_sec;
|
tv.tv_sec = g_timeout_sec;
|
||||||
@@ -173,7 +177,7 @@ Client* client_create() {
|
|||||||
return client;
|
return client;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool client_connect(Client* client, char* host, int port) {
|
bool tcp_connect_socket(Client* client, char* host, int port) {
|
||||||
struct addrinfo hints;
|
struct addrinfo hints;
|
||||||
struct addrinfo* result;
|
struct addrinfo* result;
|
||||||
memset(&hints, 0, sizeof(hints));
|
memset(&hints, 0, sizeof(hints));
|
||||||
@@ -222,6 +226,12 @@ bool client_connect(Client* client, char* host, int port) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool client_connect(Client* client, char* host, int port) {
|
||||||
|
if (!tcp_connect_socket(client, host, port))
|
||||||
|
return false;
|
||||||
tcp_apply_socket_timeout(client->file_descriptor);
|
tcp_apply_socket_timeout(client->file_descriptor);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,9 +30,11 @@ void server_accept_loop(Server* server, void (*child_fn)(int, void*), void* chil
|
|||||||
void server_delete(Server** server);
|
void server_delete(Server** server);
|
||||||
Client* client_create();
|
Client* client_create();
|
||||||
bool client_connect(Client* client, char* host, int port);
|
bool client_connect(Client* client, char* host, int port);
|
||||||
|
bool tcp_connect_socket(Client* client, char* host, int port);
|
||||||
void client_disconnect(Client* client);
|
void client_disconnect(Client* client);
|
||||||
void client_delete(Client* client);
|
void client_delete(Client* client);
|
||||||
void tcp_set_timeouts(int timeout_sec, int contimeout_sec);
|
void tcp_set_timeouts(int timeout_sec, int contimeout_sec);
|
||||||
int tcp_get_contimeout_sec(void);
|
int tcp_get_contimeout_sec(void);
|
||||||
|
int tcp_get_timeout_sec(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
+43
-50
@@ -3,7 +3,6 @@
|
|||||||
#include "protocol.h"
|
#include "protocol.h"
|
||||||
#include "transport_tcp.h"
|
#include "transport_tcp.h"
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#include <netdb.h>
|
|
||||||
#include <openssl/err.h>
|
#include <openssl/err.h>
|
||||||
#include <openssl/ssl.h>
|
#include <openssl/ssl.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
@@ -11,7 +10,9 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
|
#include <time.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
bool tls_global_init(void) {
|
bool tls_global_init(void) {
|
||||||
@@ -34,6 +35,10 @@ static void log_ssl_errors(void) {
|
|||||||
|
|
||||||
static SSL_CTX* create_ssl_ctx(bool is_server, const char* cert, const char* key,
|
static SSL_CTX* create_ssl_ctx(bool is_server, const char* cert, const char* key,
|
||||||
const char* ca_path) {
|
const char* ca_path) {
|
||||||
|
if (!is_server && !ca_path) {
|
||||||
|
log_message(LOG_LEVEL_ERROR, "TLS clients require a CA certificate path");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
const SSL_METHOD* method = is_server ? TLS_server_method() : TLS_client_method();
|
const SSL_METHOD* method = is_server ? TLS_server_method() : TLS_client_method();
|
||||||
SSL_CTX* ctx = SSL_CTX_new(method);
|
SSL_CTX* ctx = SSL_CTX_new(method);
|
||||||
if (!ctx) {
|
if (!ctx) {
|
||||||
@@ -42,9 +47,23 @@ static SSL_CTX* create_ssl_ctx(bool is_server, const char* cert, const char* key
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION);
|
if (SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION) != 1) {
|
||||||
|
SSL_CTX_free(ctx);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
if (SSL_CTX_set_cipher_list(ctx, "HIGH:!aNULL:!eNULL:!MD5:!RC4:!3DES") != 1) {
|
||||||
|
SSL_CTX_free(ctx);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
if (cert && key) {
|
if (cert && key) {
|
||||||
|
struct stat key_stat;
|
||||||
|
if (stat(key, &key_stat) != 0 || !S_ISREG(key_stat.st_mode) || key_stat.st_uid != geteuid() ||
|
||||||
|
(key_stat.st_mode & (S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH))) {
|
||||||
|
log_message(LOG_LEVEL_ERROR, "TLS private key must be owned by the current user and private");
|
||||||
|
SSL_CTX_free(ctx);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
if (SSL_CTX_use_certificate_file(ctx, cert, SSL_FILETYPE_PEM) <= 0) {
|
if (SSL_CTX_use_certificate_file(ctx, cert, SSL_FILETYPE_PEM) <= 0) {
|
||||||
log_message(LOG_LEVEL_ERROR, "Failed to load certificate: %s", cert);
|
log_message(LOG_LEVEL_ERROR, "Failed to load certificate: %s", cert);
|
||||||
log_ssl_errors();
|
log_ssl_errors();
|
||||||
@@ -86,15 +105,22 @@ static SSL* wrap_fd_with_ssl(int fd, SSL_CTX* ctx, bool is_server, const char* h
|
|||||||
log_message(LOG_LEVEL_ERROR, "Failed to create SSL object");
|
log_message(LOG_LEVEL_ERROR, "Failed to create SSL object");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
SSL_set_fd(ssl, fd);
|
if (SSL_set_fd(ssl, fd) != 1) {
|
||||||
|
SSL_free(ssl);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
// Enable hostname verification for client connections when a hostname is provided.
|
// Enable hostname verification for client connections when a hostname is provided.
|
||||||
// Must be done before SSL_connect to take effect during the handshake.
|
// Must be done before SSL_connect to take effect during the handshake.
|
||||||
if (!is_server && hostname) {
|
if (!is_server && hostname) {
|
||||||
SSL_set1_host(ssl, hostname);
|
if (SSL_set1_host(ssl, hostname) != 1) {
|
||||||
|
SSL_free(ssl);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Retry SSL_accept/SSL_connect on WANT_READ/WANT_WRITE (non-blocking handshake)
|
// Retry SSL_accept/SSL_connect on WANT_READ/WANT_WRITE (non-blocking handshake)
|
||||||
|
time_t deadline = time(NULL) + (is_server ? tcp_get_timeout_sec() : tcp_get_contimeout_sec());
|
||||||
int ret;
|
int ret;
|
||||||
do {
|
do {
|
||||||
if (is_server)
|
if (is_server)
|
||||||
@@ -104,7 +130,8 @@ static SSL* wrap_fd_with_ssl(int fd, SSL_CTX* ctx, bool is_server, const char* h
|
|||||||
|
|
||||||
if (ret <= 0) {
|
if (ret <= 0) {
|
||||||
int ssl_err = SSL_get_error(ssl, ret);
|
int ssl_err = SSL_get_error(ssl, ret);
|
||||||
if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE)
|
if ((ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) &&
|
||||||
|
time(NULL) < deadline)
|
||||||
continue;
|
continue;
|
||||||
log_message(LOG_LEVEL_ERROR, "SSL %s failed", is_server ? "accept" : "connect");
|
log_message(LOG_LEVEL_ERROR, "SSL %s failed", is_server ? "accept" : "connect");
|
||||||
log_ssl_errors();
|
log_ssl_errors();
|
||||||
@@ -132,8 +159,10 @@ struct tls_child_ctx {
|
|||||||
static void tls_child_fn(int fd, void* arg) {
|
static void tls_child_fn(int fd, void* arg) {
|
||||||
struct tls_child_ctx* ctx = (struct tls_child_ctx*)arg;
|
struct tls_child_ctx* ctx = (struct tls_child_ctx*)arg;
|
||||||
SSL* ssl = wrap_fd_with_ssl(fd, ctx->ssl_ctx, true, NULL);
|
SSL* ssl = wrap_fd_with_ssl(fd, ctx->ssl_ctx, true, NULL);
|
||||||
if (!ssl)
|
if (!ssl) {
|
||||||
|
io_set_ssl(NULL);
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
io_set_ssl(ssl);
|
io_set_ssl(ssl);
|
||||||
ctx->handler(fd);
|
ctx->handler(fd);
|
||||||
SSL_shutdown(ssl);
|
SSL_shutdown(ssl);
|
||||||
@@ -149,57 +178,19 @@ bool server_listen_tls(Server* server, void (*handler)(int file_descriptor)) {
|
|||||||
|
|
||||||
bool client_connect_tls(Client* client, char* host, int port, const char* cert_path,
|
bool client_connect_tls(Client* client, char* host, int port, const char* cert_path,
|
||||||
const char* key_path, const char* ca_path) {
|
const char* key_path, const char* ca_path) {
|
||||||
struct addrinfo hints;
|
if (!tcp_connect_socket(client, host, port)) {
|
||||||
struct addrinfo* result;
|
|
||||||
memset(&hints, 0, sizeof(hints));
|
|
||||||
hints.ai_family = AF_UNSPEC;
|
|
||||||
hints.ai_socktype = SOCK_STREAM;
|
|
||||||
hints.ai_protocol = IPPROTO_TCP;
|
|
||||||
|
|
||||||
char port_str[16];
|
|
||||||
snprintf(port_str, sizeof(port_str), "%d", port);
|
|
||||||
|
|
||||||
int err = getaddrinfo(host, port_str, &hints, &result);
|
|
||||||
if (err != 0 || result == NULL) {
|
|
||||||
fprintf(stderr, "Could not resolve host: %s (%s)\n", host, gai_strerror(err));
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct addrinfo* rp;
|
|
||||||
bool connected = false;
|
|
||||||
for (rp = result; rp != NULL; rp = rp->ai_next) {
|
|
||||||
if (client->file_descriptor >= 0)
|
if (client->file_descriptor >= 0)
|
||||||
close(client->file_descriptor);
|
close(client->file_descriptor);
|
||||||
|
client->file_descriptor = -1;
|
||||||
client->file_descriptor = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
|
|
||||||
if (client->file_descriptor < 0)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
struct timeval ct;
|
|
||||||
ct.tv_sec = tcp_get_contimeout_sec();
|
|
||||||
ct.tv_usec = 0;
|
|
||||||
setsockopt(client->file_descriptor, SOL_SOCKET, SO_RCVTIMEO, &ct, sizeof(ct));
|
|
||||||
setsockopt(client->file_descriptor, SOL_SOCKET, SO_SNDTIMEO, &ct, sizeof(ct));
|
|
||||||
|
|
||||||
memcpy(&client->address, rp->ai_addr, rp->ai_addrlen);
|
|
||||||
client->address_length = rp->ai_addrlen;
|
|
||||||
|
|
||||||
if (connect(client->file_descriptor, (struct sockaddr*)&client->address,
|
|
||||||
client->address_length) == 0) {
|
|
||||||
connected = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
freeaddrinfo(result);
|
|
||||||
|
|
||||||
if (!connected) {
|
|
||||||
perror("Could not connect to Server!");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
SSL_CTX* ctx = create_ssl_ctx(false, cert_path, key_path, ca_path);
|
SSL_CTX* ctx = create_ssl_ctx(false, cert_path, key_path, ca_path);
|
||||||
if (!ctx)
|
if (!ctx) {
|
||||||
|
close(client->file_descriptor);
|
||||||
|
client->file_descriptor = -1;
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
client->ssl_ctx = ctx;
|
client->ssl_ctx = ctx;
|
||||||
|
|
||||||
// Pass the server hostname for TLS hostname verification (SSL_set1_host
|
// Pass the server hostname for TLS hostname verification (SSL_set1_host
|
||||||
@@ -209,6 +200,8 @@ bool client_connect_tls(Client* client, char* host, int port, const char* cert_p
|
|||||||
if (!ssl) {
|
if (!ssl) {
|
||||||
SSL_CTX_free(ctx);
|
SSL_CTX_free(ctx);
|
||||||
client->ssl_ctx = NULL;
|
client->ssl_ctx = NULL;
|
||||||
|
close(client->file_descriptor);
|
||||||
|
client->file_descriptor = -1;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+153
-55
@@ -7,62 +7,117 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <stdint.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
static int authorized_root_fd = -1;
|
static int authorized_root_fd = -1;
|
||||||
|
static char* authorized_root_path;
|
||||||
|
|
||||||
|
bool utils_set_authorized_root(int fd, const char* canonical_path) {
|
||||||
|
char* path_copy = canonical_path ? str_dup(canonical_path) : NULL;
|
||||||
|
if (canonical_path && !path_copy) {
|
||||||
|
authorized_root_fd = -1;
|
||||||
|
free(authorized_root_path);
|
||||||
|
authorized_root_path = NULL;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
authorized_root_fd = fd;
|
||||||
|
free(authorized_root_path);
|
||||||
|
authorized_root_path = path_copy;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
void utils_set_authorized_root_fd(int fd) {
|
void utils_set_authorized_root_fd(int fd) {
|
||||||
authorized_root_fd = fd;
|
(void)utils_set_authorized_root(fd, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool path_is_within_root(const char* root, const char* path) {
|
||||||
|
size_t root_len = strlen(root);
|
||||||
|
return strncmp(root, path, root_len) == 0 && (path[root_len] == '\0' || path[root_len] == '/');
|
||||||
|
}
|
||||||
|
|
||||||
|
static int open_authorized_destination(const char* dest_root) {
|
||||||
|
if (authorized_root_fd < 0 || !authorized_root_path || !dest_root ||
|
||||||
|
!path_is_within_root(authorized_root_path, dest_root))
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
int dirfd = dup(authorized_root_fd);
|
||||||
|
if (dirfd < 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
const char* relative_path = dest_root + strlen(authorized_root_path);
|
||||||
|
while (*relative_path == '/')
|
||||||
|
relative_path++;
|
||||||
|
char* relative = str_dup(*relative_path ? relative_path : ".");
|
||||||
|
if (!relative) {
|
||||||
|
close(dirfd);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
char* saveptr = NULL;
|
||||||
|
char* component = strtok_r(relative, "/", &saveptr);
|
||||||
|
while (component) {
|
||||||
|
if (strcmp(component, "..") == 0) {
|
||||||
|
free(relative);
|
||||||
|
close(dirfd);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (strcmp(component, ".") == 0) {
|
||||||
|
component = strtok_r(NULL, "/", &saveptr);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
int next = openat(dirfd, component, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
||||||
|
if (next < 0) {
|
||||||
|
free(relative);
|
||||||
|
close(dirfd);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
close(dirfd);
|
||||||
|
dirfd = next;
|
||||||
|
component = strtok_r(NULL, "/", &saveptr);
|
||||||
|
}
|
||||||
|
|
||||||
|
free(relative);
|
||||||
|
return dirfd;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool mkdir_r(const char* path) {
|
bool mkdir_r(const char* path) {
|
||||||
size_t path_len = strlen(path);
|
if (!path || *path == '\0')
|
||||||
char* path_duplicate = malloc(path_len + 1);
|
|
||||||
if (!path_duplicate)
|
|
||||||
return false;
|
return false;
|
||||||
memcpy(path_duplicate, path, path_len + 1);
|
char* duplicate = str_dup(path);
|
||||||
size_t capacity = path_len + 2;
|
if (!duplicate)
|
||||||
char* path_current = (char*)malloc(capacity * sizeof(char));
|
return false;
|
||||||
if (!path_current) {
|
int dirfd = open(path[0] == '/' ? "/" : ".", O_RDONLY | O_DIRECTORY | O_CLOEXEC | O_NOFOLLOW);
|
||||||
free(path_duplicate);
|
if (dirfd < 0) {
|
||||||
|
free(duplicate);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
char* path_current_position = path_current;
|
|
||||||
if (path[0] == '/') {
|
|
||||||
path_current[0] = '/';
|
|
||||||
path_current[1] = '\0';
|
|
||||||
path_current_position += 1;
|
|
||||||
} else {
|
|
||||||
path_current[0] = '\0';
|
|
||||||
}
|
|
||||||
const char* delimiter = "/";
|
|
||||||
char* saveptr;
|
|
||||||
const char* part = strtok_r(path_duplicate, delimiter, &saveptr);
|
|
||||||
bool ok = true;
|
bool ok = true;
|
||||||
while (part != NULL) {
|
char* saveptr = NULL;
|
||||||
size_t part_len = strlen(part);
|
char* component = strtok_r(duplicate, "/", &saveptr);
|
||||||
if ((size_t)(path_current_position - path_current) + part_len + 2 > capacity) {
|
while (component) {
|
||||||
|
if (strcmp(component, "..") == 0) {
|
||||||
ok = false;
|
ok = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
memcpy(path_current_position, part, part_len);
|
if (strcmp(component, ".") != 0) {
|
||||||
path_current_position += part_len;
|
int next = openat(dirfd, component, O_RDONLY | O_DIRECTORY | O_CLOEXEC | O_NOFOLLOW);
|
||||||
path_current_position[0] = '/';
|
if (next < 0 && errno == ENOENT) {
|
||||||
path_current_position[1] = '\0';
|
if (mkdirat(dirfd, component, 0755) == 0 || errno == EEXIST)
|
||||||
path_current_position++;
|
next = openat(dirfd, component, O_RDONLY | O_DIRECTORY | O_CLOEXEC | O_NOFOLLOW);
|
||||||
struct stat st;
|
}
|
||||||
if (stat(path_current, &st) != 0) {
|
if (next < 0) {
|
||||||
if (mkdir(path_current, 0755) != 0) {
|
|
||||||
perror("Could not create directory");
|
|
||||||
ok = false;
|
ok = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
close(dirfd);
|
||||||
|
dirfd = next;
|
||||||
}
|
}
|
||||||
part = strtok_r(NULL, delimiter, &saveptr);
|
component = strtok_r(NULL, "/", &saveptr);
|
||||||
}
|
}
|
||||||
free(path_duplicate);
|
close(dirfd);
|
||||||
free(path_current);
|
free(duplicate);
|
||||||
return ok;
|
return ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -143,7 +198,8 @@ static bool is_dir_in_manifest(const char* rel_path, ArrayList* manifest) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool delete_extras_fd(int dirfd, const char* rel_path, ArrayList* manifest) {
|
static bool delete_extras_fd(int dirfd, const char* rel_path, ArrayList* manifest,
|
||||||
|
size_t max_delete, size_t* deleted_count) {
|
||||||
int scanfd = dup(dirfd);
|
int scanfd = dup(dirfd);
|
||||||
if (scanfd < 0)
|
if (scanfd < 0)
|
||||||
return false;
|
return false;
|
||||||
@@ -152,15 +208,20 @@ static bool delete_extras_fd(int dirfd, const char* rel_path, ArrayList* manifes
|
|||||||
close(scanfd);
|
close(scanfd);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
bool all_removed = true;
|
|
||||||
bool operation_ok = true;
|
bool operation_ok = true;
|
||||||
const struct dirent* entry;
|
const struct dirent* entry;
|
||||||
while ((entry = readdir(dir)) != NULL) {
|
while ((entry = readdir(dir)) != NULL) {
|
||||||
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
|
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
|
||||||
continue;
|
continue;
|
||||||
char* child_rel = path_cat((char*)rel_path, entry->d_name);
|
char* child_rel = path_cat((char*)rel_path, entry->d_name);
|
||||||
|
if (!child_rel) {
|
||||||
|
operation_ok = false;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
struct stat st;
|
struct stat st;
|
||||||
if (fstatat(dirfd, entry->d_name, &st, AT_SYMLINK_NOFOLLOW) != 0) {
|
if (fstatat(dirfd, entry->d_name, &st, AT_SYMLINK_NOFOLLOW) != 0) {
|
||||||
|
if (errno != ENOENT)
|
||||||
|
operation_ok = false;
|
||||||
free(child_rel);
|
free(child_rel);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -173,14 +234,24 @@ static bool delete_extras_fd(int dirfd, const char* rel_path, ArrayList* manifes
|
|||||||
int childfd = openat(dirfd, entry->d_name, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
int childfd = openat(dirfd, entry->d_name, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
||||||
bool child_removed = false;
|
bool child_removed = false;
|
||||||
if (childfd >= 0) {
|
if (childfd >= 0) {
|
||||||
child_removed = delete_extras_fd(childfd, child_rel, manifest);
|
child_removed = delete_extras_fd(childfd, child_rel, manifest, max_delete, deleted_count);
|
||||||
close(childfd);
|
if (!child_removed)
|
||||||
}
|
|
||||||
if (child_removed && !is_dir_in_manifest(child_rel, manifest) &&
|
|
||||||
unlinkat(dirfd, entry->d_name, AT_REMOVEDIR) != 0 && errno != ENOENT) {
|
|
||||||
operation_ok = false;
|
operation_ok = false;
|
||||||
} else if (!child_removed) {
|
close(childfd);
|
||||||
all_removed = false;
|
} else if (errno != ENOENT) {
|
||||||
|
operation_ok = false;
|
||||||
|
}
|
||||||
|
if (child_removed && !is_dir_in_manifest(child_rel, manifest)) {
|
||||||
|
if (*deleted_count >= max_delete) {
|
||||||
|
operation_ok = false;
|
||||||
|
} else {
|
||||||
|
if (unlinkat(dirfd, entry->d_name, AT_REMOVEDIR) != 0) {
|
||||||
|
if (errno != ENOENT)
|
||||||
|
operation_ok = false;
|
||||||
|
} else {
|
||||||
|
(*deleted_count)++;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Check if relative path is in manifest
|
// Check if relative path is in manifest
|
||||||
@@ -192,38 +263,59 @@ static bool delete_extras_fd(int dirfd, const char* rel_path, ArrayList* manifes
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!found) {
|
if (!found) {
|
||||||
if (unlinkat(dirfd, entry->d_name, 0) != 0 && errno != ENOENT)
|
if (*deleted_count >= max_delete) {
|
||||||
|
operation_ok = false;
|
||||||
|
free(child_rel);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (unlinkat(dirfd, entry->d_name, 0) != 0) {
|
||||||
|
if (errno != ENOENT)
|
||||||
operation_ok = false;
|
operation_ok = false;
|
||||||
fprintf(stderr, " Deleted: %s\n", child_rel);
|
|
||||||
} else {
|
} else {
|
||||||
all_removed = false;
|
(*deleted_count)++;
|
||||||
|
}
|
||||||
|
fprintf(stderr, " Deleted: %s\n", child_rel);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
free(child_rel);
|
free(child_rel);
|
||||||
}
|
}
|
||||||
closedir(dir);
|
closedir(dir);
|
||||||
(void)all_removed;
|
|
||||||
return operation_ok;
|
return operation_ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool delete_extras(const char* dest_root, ArrayList* manifest) {
|
bool delete_extras_limited(const char* dest_root, ArrayList* manifest, size_t max_delete) {
|
||||||
int rootfd = authorized_root_fd >= 0
|
if (!manifest)
|
||||||
? dup(authorized_root_fd)
|
return false;
|
||||||
: open(dest_root, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
int rootfd;
|
||||||
|
if (authorized_root_fd >= 0) {
|
||||||
|
if (authorized_root_path)
|
||||||
|
rootfd = open_authorized_destination(dest_root);
|
||||||
|
else if (dest_root == NULL)
|
||||||
|
rootfd = dup(authorized_root_fd);
|
||||||
|
else
|
||||||
|
rootfd = -1;
|
||||||
|
} else {
|
||||||
|
rootfd = open(dest_root, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
|
||||||
|
}
|
||||||
if (rootfd < 0)
|
if (rootfd < 0)
|
||||||
return false;
|
return false;
|
||||||
bool ok = delete_extras_fd(rootfd, "", manifest);
|
size_t deleted_count = 0;
|
||||||
|
bool ok = delete_extras_fd(rootfd, "", manifest, max_delete, &deleted_count);
|
||||||
if (close(rootfd) != 0)
|
if (close(rootfd) != 0)
|
||||||
ok = false;
|
ok = false;
|
||||||
return ok;
|
return ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool delete_extras(const char* dest_root, ArrayList* manifest) {
|
||||||
|
return delete_extras_limited(dest_root, manifest, SIZE_MAX);
|
||||||
|
}
|
||||||
|
|
||||||
bool has_path_traversal(const char* path) {
|
bool has_path_traversal(const char* path) {
|
||||||
if (!path)
|
if (!path)
|
||||||
return false;
|
return true;
|
||||||
char* dup = str_dup(path);
|
char* dup = str_dup(path);
|
||||||
if (!dup)
|
if (!dup)
|
||||||
return false;
|
return true;
|
||||||
char* saveptr;
|
char* saveptr;
|
||||||
const char* part = strtok_r(dup, "/", &saveptr);
|
const char* part = strtok_r(dup, "/", &saveptr);
|
||||||
while (part) {
|
while (part) {
|
||||||
@@ -237,6 +329,10 @@ bool has_path_traversal(const char* path) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool utils_valid_batch_path(const char* path) {
|
||||||
|
return path && path[0] != '\0' && path[0] != '/' && !has_path_traversal(path);
|
||||||
|
}
|
||||||
|
|
||||||
char* path_cat(const char* path1, const char* path2) {
|
char* path_cat(const char* path1, const char* path2) {
|
||||||
if (path1 == NULL || *path1 == '\0')
|
if (path1 == NULL || *path1 == '\0')
|
||||||
return str_dup(path2);
|
return str_dup(path2);
|
||||||
@@ -251,6 +347,8 @@ char* path_cat(const char* path1, const char* path2) {
|
|||||||
offset = 1;
|
offset = 1;
|
||||||
path2_len -= 1;
|
path2_len -= 1;
|
||||||
}
|
}
|
||||||
|
if (path1_len > SIZE_MAX - path2_len - 2)
|
||||||
|
return NULL;
|
||||||
char* new_path = malloc(path1_len + path2_len + 2);
|
char* new_path = malloc(path1_len + path2_len + 2);
|
||||||
if (new_path == NULL)
|
if (new_path == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
#define UTILS_H
|
#define UTILS_H
|
||||||
|
|
||||||
#include "array_list.h"
|
#include "array_list.h"
|
||||||
|
#include <stddef.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
bool mkdir_r(const char* path);
|
bool mkdir_r(const char* path);
|
||||||
@@ -9,7 +10,12 @@ char* str_dup(const char* string);
|
|||||||
char* path_cat(const char* path1, const char* path2);
|
char* path_cat(const char* path1, const char* path2);
|
||||||
bool glob_match(const char* pattern, const char* str);
|
bool glob_match(const char* pattern, const char* str);
|
||||||
bool delete_extras(const char* dest_root, ArrayList* manifest);
|
bool delete_extras(const char* dest_root, ArrayList* manifest);
|
||||||
|
bool delete_extras_limited(const char* dest_root, ArrayList* manifest, size_t max_delete);
|
||||||
|
bool utils_set_authorized_root(int fd, const char* canonical_path);
|
||||||
|
/* The fd-only compatibility form is fail-closed for path-based operations;
|
||||||
|
* callers should use utils_set_authorized_root with the canonical identity. */
|
||||||
void utils_set_authorized_root_fd(int fd);
|
void utils_set_authorized_root_fd(int fd);
|
||||||
bool has_path_traversal(const char* path);
|
bool has_path_traversal(const char* path);
|
||||||
|
bool utils_valid_batch_path(const char* path);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -25,7 +25,9 @@ class ServerManager:
|
|||||||
def start(self, extra_args=None):
|
def start(self, extra_args=None):
|
||||||
self.stop()
|
self.stop()
|
||||||
self._port = _find_free_port()
|
self._port = _find_free_port()
|
||||||
cmd = SERVER_CMD + ["-p", str(self._port)]
|
# Plain TCP is intentionally explicit in the server; integration tests
|
||||||
|
# exercise that opt-in mode rather than relying on the secure default.
|
||||||
|
cmd = SERVER_CMD + ["-p", str(self._port), "--allow-unauthenticated"]
|
||||||
if extra_args:
|
if extra_args:
|
||||||
cmd += extra_args
|
cmd += extra_args
|
||||||
self._proc = subprocess.Popen(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
self._proc = subprocess.Popen(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
||||||
|
|||||||
@@ -102,6 +102,7 @@ class TestTLSBasic:
|
|||||||
with ServerManager() as server:
|
with ServerManager() as server:
|
||||||
server.start(extra_args=[
|
server.start(extra_args=[
|
||||||
"--tls", "--cert", certs["server_cert"], "--key", certs["server_key"],
|
"--tls", "--cert", certs["server_cert"], "--key", certs["server_key"],
|
||||||
|
"--ca", certs["ca"], "--client-cn", "fastsync-client",
|
||||||
])
|
])
|
||||||
result, dur = run_client(
|
result, dur = run_client(
|
||||||
SOURCE_DIR, DEST_DIR,
|
SOURCE_DIR, DEST_DIR,
|
||||||
@@ -125,6 +126,7 @@ class TestTLSBasic:
|
|||||||
with ServerManager() as server:
|
with ServerManager() as server:
|
||||||
server.start(extra_args=[
|
server.start(extra_args=[
|
||||||
"--tls", "--cert", certs["server_cert"], "--key", certs["server_key"],
|
"--tls", "--cert", certs["server_cert"], "--key", certs["server_key"],
|
||||||
|
"--ca", certs["ca"], "--client-cn", "fastsync-client",
|
||||||
])
|
])
|
||||||
result, dur = run_client(
|
result, dur = run_client(
|
||||||
SOURCE_DIR, DEST_DIR,
|
SOURCE_DIR, DEST_DIR,
|
||||||
@@ -149,6 +151,7 @@ class TestTLSBasic:
|
|||||||
with ServerManager() as server:
|
with ServerManager() as server:
|
||||||
server.start(extra_args=[
|
server.start(extra_args=[
|
||||||
"--tls", "--cert", certs["server_cert"], "--key", certs["server_key"],
|
"--tls", "--cert", certs["server_cert"], "--key", certs["server_key"],
|
||||||
|
"--ca", certs["ca"], "--client-cn", "fastsync-client",
|
||||||
])
|
])
|
||||||
result, dur = run_client(
|
result, dur = run_client(
|
||||||
SOURCE_DIR, DEST_DIR,
|
SOURCE_DIR, DEST_DIR,
|
||||||
|
|||||||
@@ -17,6 +17,8 @@ void test_array_list() {
|
|||||||
|
|
||||||
// Test adding
|
// Test adding
|
||||||
int* val1 = malloc(sizeof(int));
|
int* val1 = malloc(sizeof(int));
|
||||||
|
if (!val1)
|
||||||
|
return;
|
||||||
*val1 = 42;
|
*val1 = 42;
|
||||||
array_list_add(list, val1);
|
array_list_add(list, val1);
|
||||||
EXPECT_EQ_INT(list->size, 1);
|
EXPECT_EQ_INT(list->size, 1);
|
||||||
@@ -26,6 +28,8 @@ void test_array_list() {
|
|||||||
// Initial capacity is 100. Let's add 105 elements.
|
// Initial capacity is 100. Let's add 105 elements.
|
||||||
for (int i = 0; i < 105; i++) {
|
for (int i = 0; i < 105; i++) {
|
||||||
int* val = malloc(sizeof(int));
|
int* val = malloc(sizeof(int));
|
||||||
|
if (!val)
|
||||||
|
return;
|
||||||
*val = i;
|
*val = i;
|
||||||
array_list_add(list, val);
|
array_list_add(list, val);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
#include "test_client_cli.h"
|
#include "test_client_cli.h"
|
||||||
|
#include "client_validation.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "test_utils.h"
|
#include "test_utils.h"
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
@@ -9,6 +10,58 @@
|
|||||||
/* Declaration of parse_args from client_cli.c */
|
/* Declaration of parse_args from client_cli.c */
|
||||||
int parse_args(Config* config, int argc, char* argv[], int* positional_args, int* positional_count);
|
int parse_args(Config* config, int argc, char* argv[], int* positional_args, int* positional_count);
|
||||||
|
|
||||||
|
static Config* valid_client_config() {
|
||||||
|
Config* cfg = config_create();
|
||||||
|
if (!cfg)
|
||||||
|
return NULL;
|
||||||
|
cfg->send_directory = str_dup("/src");
|
||||||
|
cfg->receive_root_directory = str_dup("/dst");
|
||||||
|
return cfg;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void test_validate_config_required_paths() {
|
||||||
|
Config* cfg = config_create();
|
||||||
|
EXPECT_FALSE(validate_config(cfg));
|
||||||
|
cfg->send_directory = str_dup("/src");
|
||||||
|
EXPECT_FALSE(validate_config(cfg));
|
||||||
|
config_delete(cfg);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void test_validate_config_incompatible_options() {
|
||||||
|
Config* cfg = valid_client_config();
|
||||||
|
cfg->use_sendfile = true;
|
||||||
|
cfg->use_compression = true;
|
||||||
|
EXPECT_FALSE(validate_config(cfg));
|
||||||
|
cfg->use_compression = false;
|
||||||
|
cfg->use_incremental = true;
|
||||||
|
cfg->use_chunk_serialization = true;
|
||||||
|
EXPECT_FALSE(validate_config(cfg));
|
||||||
|
config_delete(cfg);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void test_validate_config_tls_requirements() {
|
||||||
|
Config* cfg = valid_client_config();
|
||||||
|
cfg->use_tls = true;
|
||||||
|
EXPECT_FALSE(validate_config(cfg));
|
||||||
|
cfg->tls_cert = str_dup("cert.pem");
|
||||||
|
EXPECT_FALSE(validate_config(cfg));
|
||||||
|
cfg->tls_key = str_dup("key.pem");
|
||||||
|
EXPECT_FALSE(validate_config(cfg));
|
||||||
|
cfg->tls_ca = str_dup("ca.pem");
|
||||||
|
EXPECT_TRUE(validate_config(cfg));
|
||||||
|
config_delete(cfg);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void test_validate_config_delta_sendfile_constraints() {
|
||||||
|
Config* cfg = valid_client_config();
|
||||||
|
cfg->use_delta = true;
|
||||||
|
EXPECT_FALSE(validate_config(cfg));
|
||||||
|
cfg->use_incremental = true;
|
||||||
|
cfg->use_sendfile = true;
|
||||||
|
EXPECT_FALSE(validate_config(cfg));
|
||||||
|
config_delete(cfg);
|
||||||
|
}
|
||||||
|
|
||||||
/* Test main() with --help flag (early return path, no server connection needed) */
|
/* Test main() with --help flag (early return path, no server connection needed) */
|
||||||
static void test_cli_help() {
|
static void test_cli_help() {
|
||||||
/* We can't easily call main() because it calls send_files which needs a server.
|
/* We can't easily call main() because it calls send_files which needs a server.
|
||||||
@@ -287,6 +340,10 @@ static void test_parse_args_archive() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void test_client_cli() {
|
void test_client_cli() {
|
||||||
|
test_validate_config_required_paths();
|
||||||
|
test_validate_config_incompatible_options();
|
||||||
|
test_validate_config_tls_requirements();
|
||||||
|
test_validate_config_delta_sendfile_constraints();
|
||||||
test_cli_help();
|
test_cli_help();
|
||||||
test_cli_archive_flags();
|
test_cli_archive_flags();
|
||||||
test_cli_dry_run();
|
test_cli_dry_run();
|
||||||
|
|||||||
@@ -13,6 +13,8 @@ static void test_data_compress_decompress_roundtrip() {
|
|||||||
size_t len = strlen(original);
|
size_t len = strlen(original);
|
||||||
|
|
||||||
char* buf = malloc(len);
|
char* buf = malloc(len);
|
||||||
|
if (!buf)
|
||||||
|
return;
|
||||||
memcpy(buf, original, len);
|
memcpy(buf, original, len);
|
||||||
Data* original_data = data_create(buf, len);
|
Data* original_data = data_create(buf, len);
|
||||||
EXPECT_NOT_NULL(original_data);
|
EXPECT_NOT_NULL(original_data);
|
||||||
|
|||||||
@@ -224,6 +224,26 @@ static void test_config_send_receive_version_mismatch() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void test_config_receive_truncated() {
|
||||||
|
int p[2];
|
||||||
|
EXPECT_EQ_INT(socketpair(AF_UNIX, SOCK_STREAM, 0, p), 0);
|
||||||
|
io_set_fds(p[0], p[0]);
|
||||||
|
io_set_bwlimit(0);
|
||||||
|
|
||||||
|
/* A valid prefix exercises cleanup after allocated wire strings and a
|
||||||
|
* partially received scalar field. */
|
||||||
|
EXPECT_TRUE(send_str(p[1], PROTOCOL_VERSION));
|
||||||
|
EXPECT_TRUE(send_str(p[1], "/src"));
|
||||||
|
EXPECT_TRUE(send_str(p[1], "/dst"));
|
||||||
|
EXPECT_TRUE(send_int(p[1], 1));
|
||||||
|
shutdown(p[1], SHUT_WR);
|
||||||
|
|
||||||
|
const Config* cfg = config_receive(p[0]);
|
||||||
|
EXPECT_NULL(cfg);
|
||||||
|
close(p[0]);
|
||||||
|
close(p[1]);
|
||||||
|
}
|
||||||
|
|
||||||
static void test_is_remote_dest() {
|
static void test_is_remote_dest() {
|
||||||
/* Valid SSH-style destinations */
|
/* Valid SSH-style destinations */
|
||||||
EXPECT_TRUE(is_remote_dest("user@host:/path"));
|
EXPECT_TRUE(is_remote_dest("user@host:/path"));
|
||||||
@@ -256,6 +276,7 @@ void test_config() {
|
|||||||
if (!is_running_under_valgrind()) {
|
if (!is_running_under_valgrind()) {
|
||||||
test_config_send_receive();
|
test_config_send_receive();
|
||||||
test_config_send_receive_version_mismatch();
|
test_config_send_receive_version_mismatch();
|
||||||
|
test_config_receive_truncated();
|
||||||
}
|
}
|
||||||
test_is_remote_dest();
|
test_is_remote_dest();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,6 +14,8 @@
|
|||||||
static Data* random_data(int min_size, int max_size) {
|
static Data* random_data(int min_size, int max_size) {
|
||||||
int size = min_size + rand() % (max_size - min_size + 1);
|
int size = min_size + rand() % (max_size - min_size + 1);
|
||||||
char* buf = malloc(size);
|
char* buf = malloc(size);
|
||||||
|
if (!buf)
|
||||||
|
return NULL;
|
||||||
for (int i = 0; i < size; i++)
|
for (int i = 0; i < size; i++)
|
||||||
buf[i] = (char)(rand() % 256);
|
buf[i] = (char)(rand() % 256);
|
||||||
return data_create(buf, size);
|
return data_create(buf, size);
|
||||||
@@ -81,6 +83,8 @@ static void test_property_chunk_roundtrip() {
|
|||||||
|
|
||||||
int content_len = 1 + rand() % 4096;
|
int content_len = 1 + rand() % 4096;
|
||||||
char* content = malloc(content_len);
|
char* content = malloc(content_len);
|
||||||
|
if (!content)
|
||||||
|
return;
|
||||||
for (int i = 0; i < content_len; i++)
|
for (int i = 0; i < content_len; i++)
|
||||||
content[i] = (char)(rand() % 256);
|
content[i] = (char)(rand() % 256);
|
||||||
|
|
||||||
|
|||||||
@@ -38,6 +38,23 @@ static void test_send_receive_n_data_zero() {
|
|||||||
close(p[1]);
|
close(p[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void test_explicit_session_context() {
|
||||||
|
int p[2];
|
||||||
|
EXPECT_EQ_INT(pipe(p), 0);
|
||||||
|
ProtocolSession session;
|
||||||
|
protocol_session_init(&session, p[0], p[1]);
|
||||||
|
protocol_session_set_bwlimit(&session, 0);
|
||||||
|
|
||||||
|
const char payload[] = "explicit context";
|
||||||
|
char received[sizeof(payload)] = {0};
|
||||||
|
EXPECT_TRUE(protocol_send_n_data(&session, payload, sizeof(payload)));
|
||||||
|
EXPECT_TRUE(protocol_receive_n_data(&session, received, sizeof(received)));
|
||||||
|
EXPECT_EQ_INT(memcmp(payload, received, sizeof(payload)), 0);
|
||||||
|
|
||||||
|
close(p[0]);
|
||||||
|
close(p[1]);
|
||||||
|
}
|
||||||
|
|
||||||
static void test_send_receive_str() {
|
static void test_send_receive_str() {
|
||||||
int p[2];
|
int p[2];
|
||||||
EXPECT_EQ_INT(pipe(p), 0);
|
EXPECT_EQ_INT(pipe(p), 0);
|
||||||
@@ -173,6 +190,7 @@ static void test_receive_str_truncated() {
|
|||||||
void test_protocol() {
|
void test_protocol() {
|
||||||
test_send_receive_n_data();
|
test_send_receive_n_data();
|
||||||
test_send_receive_n_data_zero();
|
test_send_receive_n_data_zero();
|
||||||
|
test_explicit_session_context();
|
||||||
test_send_receive_str();
|
test_send_receive_str();
|
||||||
test_send_receive_str_normal();
|
test_send_receive_str_normal();
|
||||||
test_send_receive_data();
|
test_send_receive_data();
|
||||||
|
|||||||
@@ -122,6 +122,8 @@ static void test_queue_destroyer() {
|
|||||||
|
|
||||||
for (int i = 0; i < 3; i++) {
|
for (int i = 0; i < 3; i++) {
|
||||||
int* val = malloc(sizeof(int));
|
int* val = malloc(sizeof(int));
|
||||||
|
if (!val)
|
||||||
|
break;
|
||||||
*val = i;
|
*val = i;
|
||||||
queue_enqueue(q, val);
|
queue_enqueue(q, val);
|
||||||
}
|
}
|
||||||
@@ -181,6 +183,8 @@ static void test_queue_multithreaded() {
|
|||||||
|
|
||||||
for (int i = 1; i <= 100; i++) {
|
for (int i = 1; i <= 100; i++) {
|
||||||
int* val = malloc(sizeof(int));
|
int* val = malloc(sizeof(int));
|
||||||
|
if (!val)
|
||||||
|
break;
|
||||||
*val = i;
|
*val = i;
|
||||||
queue_enqueue_multithreaded(q, val, &mutex, &cnd_empty, &cnd_full);
|
queue_enqueue_multithreaded(q, val, &mutex, &cnd_empty, &cnd_full);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -385,6 +385,34 @@ static void test_scanner_no_patterns() {
|
|||||||
rmdir(dir);
|
rmdir(dir);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void test_parallel_scanner_root_chunks_without_workers() {
|
||||||
|
const char* dir = "test_parallel_scan_root";
|
||||||
|
const char* file1 = "test_parallel_scan_root/a.txt";
|
||||||
|
const char* file2 = "test_parallel_scan_root/b.txt";
|
||||||
|
|
||||||
|
EXPECT_EQ_INT(mkdir(dir, 0755), 0);
|
||||||
|
create_test_file(file1, "a");
|
||||||
|
create_test_file(file2, "b");
|
||||||
|
|
||||||
|
ParallelScanner* scanner = parallel_scanner_create(dir, false, 1, NULL, 0, NULL, 0, 0, 0, 0, 0,
|
||||||
|
false, false, false, false, false);
|
||||||
|
EXPECT_NOT_NULL(scanner);
|
||||||
|
|
||||||
|
int total_files = 0;
|
||||||
|
Chunk* chunk;
|
||||||
|
while ((chunk = parallel_scanner_next(scanner)) != NULL) {
|
||||||
|
total_files += chunk->element_count;
|
||||||
|
chunk_destroy(chunk);
|
||||||
|
}
|
||||||
|
EXPECT_EQ_INT(total_files, 2);
|
||||||
|
EXPECT_FALSE(parallel_scanner_failed(scanner));
|
||||||
|
|
||||||
|
parallel_scanner_destroy(scanner);
|
||||||
|
unlink(file1);
|
||||||
|
unlink(file2);
|
||||||
|
rmdir(dir);
|
||||||
|
}
|
||||||
|
|
||||||
void test_scanner() {
|
void test_scanner() {
|
||||||
test_scanner_single_file();
|
test_scanner_single_file();
|
||||||
test_scanner_multiple_files();
|
test_scanner_multiple_files();
|
||||||
@@ -399,4 +427,5 @@ void test_scanner() {
|
|||||||
test_scanner_size_range();
|
test_scanner_size_range();
|
||||||
test_scanner_mixed_patterns();
|
test_scanner_mixed_patterns();
|
||||||
test_scanner_no_patterns();
|
test_scanner_no_patterns();
|
||||||
|
test_parallel_scanner_root_chunks_without_workers();
|
||||||
}
|
}
|
||||||
|
|||||||
+4
-8
@@ -11,11 +11,7 @@
|
|||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
/* Include server.c but rename main to avoid conflict with test runner's main */
|
#include "receiver.h"
|
||||||
#define main server_main_
|
|
||||||
#define FASTSYNC_SERVER_AS_LIB
|
|
||||||
#include "server.c"
|
|
||||||
#undef main
|
|
||||||
|
|
||||||
/* Test receive_files with immediate FINISHED status */
|
/* Test receive_files with immediate FINISHED status */
|
||||||
static void test_receive_files_finished() {
|
static void test_receive_files_finished() {
|
||||||
@@ -36,7 +32,7 @@ static void test_receive_files_finished() {
|
|||||||
/* Child: use p[0] for both read and write */
|
/* Child: use p[0] for both read and write */
|
||||||
close(p[1]);
|
close(p[1]);
|
||||||
io_set_fds(p[0], p[0]);
|
io_set_fds(p[0], p[0]);
|
||||||
int ret = receive_files(cfg, p[0]);
|
int ret = receiver_receive_files(cfg, p[0]);
|
||||||
close(p[0]);
|
close(p[0]);
|
||||||
config_delete(cfg);
|
config_delete(cfg);
|
||||||
_exit(ret == 0 ? 0 : 1);
|
_exit(ret == 0 ? 0 : 1);
|
||||||
@@ -88,7 +84,7 @@ static void test_receive_files_single_file() {
|
|||||||
/* Child: use p[0] for both read and write */
|
/* Child: use p[0] for both read and write */
|
||||||
close(p[1]);
|
close(p[1]);
|
||||||
io_set_fds(p[0], p[0]);
|
io_set_fds(p[0], p[0]);
|
||||||
int ret = receive_files(cfg, p[0]);
|
int ret = receiver_receive_files(cfg, p[0]);
|
||||||
close(p[0]);
|
close(p[0]);
|
||||||
config_delete(cfg);
|
config_delete(cfg);
|
||||||
_exit(ret == 0 ? 0 : 1);
|
_exit(ret == 0 ? 0 : 1);
|
||||||
@@ -149,7 +145,7 @@ static void test_receive_files_abort() {
|
|||||||
if (pid == 0) {
|
if (pid == 0) {
|
||||||
close(p[1]);
|
close(p[1]);
|
||||||
io_set_fds(p[0], p[0]);
|
io_set_fds(p[0], p[0]);
|
||||||
int ret = receive_files(cfg, p[0]);
|
int ret = receiver_receive_files(cfg, p[0]);
|
||||||
close(p[0]);
|
close(p[0]);
|
||||||
config_delete(cfg);
|
config_delete(cfg);
|
||||||
/* Should return -1 on abort */
|
/* Should return -1 on abort */
|
||||||
|
|||||||
@@ -32,6 +32,8 @@ static int mpmc_producer_func(void* arg) {
|
|||||||
ProducerCtx* ctx = (ProducerCtx*)arg;
|
ProducerCtx* ctx = (ProducerCtx*)arg;
|
||||||
for (int i = 1; i <= ITEMS_PER_PRODUCER; i++) {
|
for (int i = 1; i <= ITEMS_PER_PRODUCER; i++) {
|
||||||
int* val = malloc(sizeof(int));
|
int* val = malloc(sizeof(int));
|
||||||
|
if (!val)
|
||||||
|
return thrd_error;
|
||||||
*val = ctx->producer_id * ITEMS_PER_PRODUCER + i;
|
*val = ctx->producer_id * ITEMS_PER_PRODUCER + i;
|
||||||
queue_enqueue_multithreaded(ctx->q, val, ctx->mutex, ctx->cnd_empty, ctx->cnd_full);
|
queue_enqueue_multithreaded(ctx->q, val, ctx->mutex, ctx->cnd_empty, ctx->cnd_full);
|
||||||
}
|
}
|
||||||
@@ -121,6 +123,8 @@ static int bp_producer_func(void* arg) {
|
|||||||
BackpressureCtx* ctx = (BackpressureCtx*)arg;
|
BackpressureCtx* ctx = (BackpressureCtx*)arg;
|
||||||
for (int i = 0; i < 5; i++) {
|
for (int i = 0; i < 5; i++) {
|
||||||
int* val = malloc(sizeof(int));
|
int* val = malloc(sizeof(int));
|
||||||
|
if (!val)
|
||||||
|
return thrd_error;
|
||||||
*val = i + 1;
|
*val = i + 1;
|
||||||
queue_enqueue_multithreaded(ctx->q, val, ctx->mutex, ctx->cnd_empty, ctx->cnd_full);
|
queue_enqueue_multithreaded(ctx->q, val, ctx->mutex, ctx->cnd_empty, ctx->cnd_full);
|
||||||
ctx->items_sent++;
|
ctx->items_sent++;
|
||||||
@@ -194,6 +198,8 @@ static void test_queue_rapid_create_destroy() {
|
|||||||
|
|
||||||
for (int j = 0; j < 3; j++) {
|
for (int j = 0; j < 3; j++) {
|
||||||
int* val = malloc(sizeof(int));
|
int* val = malloc(sizeof(int));
|
||||||
|
if (!val)
|
||||||
|
break;
|
||||||
*val = j;
|
*val = j;
|
||||||
queue_enqueue(q, val);
|
queue_enqueue(q, val);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user