Compare commits
13 Commits
ca530bf987
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
6690343aad
|
|||
|
c957dfff6b
|
|||
|
8e5b921771
|
|||
|
f106beeb62
|
|||
|
5e18a2e06c
|
|||
|
7f62ffaf25
|
|||
|
8f764f06b2
|
|||
|
8dc344cbd1
|
|||
|
eacb2e1450
|
|||
|
734b2ee71d
|
|||
|
7999902cc0
|
|||
|
d6b888e403
|
|||
|
36219c49a0
|
@@ -16,7 +16,6 @@ target/
|
|||||||
*.pem
|
*.pem
|
||||||
*.key
|
*.key
|
||||||
!public_key.pem
|
!public_key.pem
|
||||||
!data/public_key.pem
|
|
||||||
|
|
||||||
# Database files
|
# Database files
|
||||||
*.db
|
*.db
|
||||||
@@ -51,7 +50,6 @@ update_codebase.txt
|
|||||||
.idea/
|
.idea/
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
Cargo.lock
|
|
||||||
generate_random_ascii.sh
|
generate_random_ascii.sh
|
||||||
test/
|
test/
|
||||||
invalid_txs/
|
invalid_txs/
|
||||||
|
|||||||
72
.gitignore
vendored
72
.gitignore
vendored
@@ -1,39 +1,51 @@
|
|||||||
.gitsecret/keys/random_seed
|
# Secrets and environment files - NEVER commit
|
||||||
!*.secret
|
|
||||||
|
|
||||||
# Environment files - NEVER commit tokens or secrets
|
|
||||||
*.env
|
|
||||||
.env
|
.env
|
||||||
.env.local
|
.env.*
|
||||||
.env.production
|
!.env.example
|
||||||
.env.secret
|
|
||||||
|
|
||||||
|
|
||||||
# Private keys - NEVER commit to git
|
|
||||||
# Only public_key.pem should be tracked (if needed)
|
|
||||||
*.pem
|
*.pem
|
||||||
!public_key.pem
|
!public_key.pem
|
||||||
data/*.pem
|
|
||||||
!data/public_key.pem
|
|
||||||
*.key
|
*.key
|
||||||
!*.secret
|
|
||||||
private_key.pem
|
|
||||||
privkey.pem
|
|
||||||
ec.key
|
|
||||||
chiave_privata.key
|
|
||||||
|
|
||||||
# Other sensitive files
|
# Databases
|
||||||
bal.db
|
*.db
|
||||||
.bal.db
|
*.db-shm
|
||||||
download_bal_db.sh
|
*.db-wal
|
||||||
|
|
||||||
# IDE files
|
|
||||||
*.swp
|
|
||||||
*.swo
|
|
||||||
# Rust build artifacts
|
# Rust build artifacts
|
||||||
/target
|
/target
|
||||||
Cargo.lock
|
|
||||||
!lib/
|
# Release artifacts
|
||||||
!contrib/
|
/releases/
|
||||||
!src/
|
*.tar.gz
|
||||||
|
*.tar.gz.asc
|
||||||
|
*.tar.gz.sig
|
||||||
|
*.tar.gz.sha256
|
||||||
|
bal-server-*/
|
||||||
|
|
||||||
|
# Deployment configs (keep in deploy scripts, not in repo)
|
||||||
|
bal-server.env
|
||||||
|
bal-pusher.env
|
||||||
|
bitcoind.service
|
||||||
|
tbitcoind.service
|
||||||
|
|
||||||
|
# Test data and scratch files
|
||||||
|
invalid_txs
|
||||||
|
valid_txs
|
||||||
|
test
|
||||||
|
update
|
||||||
|
update_codebase.txt
|
||||||
|
|
||||||
|
# Utility scripts (keep local, not in repo)
|
||||||
|
sendtx.sh
|
||||||
|
lib.sh
|
||||||
|
generate_random_ascii.sh
|
||||||
|
start_postgres_docker.sh
|
||||||
make_release.sh
|
make_release.sh
|
||||||
|
download_bal_db.sh
|
||||||
|
|
||||||
|
# Misc
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
src/xpub.rs2
|
||||||
|
public_key.pem
|
||||||
|
.gitsecret/
|
||||||
|
|||||||
717
Cargo.lock
generated
717
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bal_server"
|
name = "bal_server"
|
||||||
version = "0.3.0"
|
version = "0.3.2"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
@@ -20,7 +20,7 @@ hex = { version = "0.4.3" }
|
|||||||
log = { version = "0.4.21" }
|
log = { version = "0.4.21" }
|
||||||
serde = { version = "1.0.152", features = ["derive"] }
|
serde = { version = "1.0.152", features = ["derive"] }
|
||||||
serde_json = { version = "1.0.116" }
|
serde_json = { version = "1.0.116" }
|
||||||
sqlite = { version = "0.34.0" }
|
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "postgres", "chrono"] }
|
||||||
regex = { version = "1.10.4" }
|
regex = { version = "1.10.4" }
|
||||||
tokio = { version = "1", features = ["rt", "net","macros","rt-multi-thread"] }
|
tokio = { version = "1", features = ["rt", "net","macros","rt-multi-thread"] }
|
||||||
url = { version = "2" }
|
url = { version = "2" }
|
||||||
|
|||||||
12
Dockerfile
12
Dockerfile
@@ -11,9 +11,8 @@ FROM rust:1.95-bookworm AS builder
|
|||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
pkg-config \
|
pkg-config \
|
||||||
libssl-dev \
|
libssl-dev \
|
||||||
libsodium-dev \
|
|
||||||
libzmq5-dev \
|
libzmq5-dev \
|
||||||
cmake \
|
libsqlite3-dev \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
WORKDIR /build
|
WORKDIR /build
|
||||||
@@ -27,12 +26,14 @@ RUN mkdir -p src/bin && \
|
|||||||
echo '' > src/db.rs && \
|
echo '' > src/db.rs && \
|
||||||
echo '' > src/xpub.rs && \
|
echo '' > src/xpub.rs && \
|
||||||
echo '' > src/validation.rs && \
|
echo '' > src/validation.rs && \
|
||||||
cargo build --release --bin bal-server --bin bal-pusher 2>/dev/null || true && \
|
cargo build --release --bin bal-server --no-default-features --features server 2>/dev/null || true && \
|
||||||
|
cargo build --release --bin bal-pusher --no-default-features --features pusher 2>/dev/null || true && \
|
||||||
rm -rf src target/release/.fingerprint target/release/deps/*bal_server*
|
rm -rf src target/release/.fingerprint target/release/deps/*bal_server*
|
||||||
|
|
||||||
# Copy real source and build
|
# Copy real source and build each binary with only its required features
|
||||||
COPY src/ src/
|
COPY src/ src/
|
||||||
RUN cargo build --release --bin bal-server --bin bal-pusher && \
|
RUN cargo build --release --bin bal-server --no-default-features --features server && \
|
||||||
|
cargo build --release --bin bal-pusher --no-default-features --features pusher && \
|
||||||
strip target/release/bal-server target/release/bal-pusher
|
strip target/release/bal-server target/release/bal-pusher
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
@@ -43,7 +44,6 @@ FROM debian:bookworm-slim AS runtime
|
|||||||
# Install runtime dependencies + tini for PID 1
|
# Install runtime dependencies + tini for PID 1
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
libssl3 \
|
libssl3 \
|
||||||
libsodium23 \
|
|
||||||
libzmq5 \
|
libzmq5 \
|
||||||
libsqlite3-0 \
|
libsqlite3-0 \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
|
|||||||
100
Dockerfile.release
Normal file
100
Dockerfile.release
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
# =============================================================================
|
||||||
|
# Dockerfile.release — Downloads the latest pre-built release from Gitea
|
||||||
|
# No Rust toolchain needed. Fast builds, minimal image.
|
||||||
|
# =============================================================================
|
||||||
|
|
||||||
|
FROM debian:bookworm-slim AS runtime
|
||||||
|
|
||||||
|
ARG GITEA_API="https://bitcoin-after.life/gitea/api/v1/repos/bitcoinafterlife/bal-server"
|
||||||
|
ARG BAL_VERSION=""
|
||||||
|
|
||||||
|
# Install runtime dependencies
|
||||||
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
libssl3 \
|
||||||
|
libzmq5 \
|
||||||
|
libsqlite3-0 \
|
||||||
|
ca-certificates \
|
||||||
|
curl \
|
||||||
|
jq \
|
||||||
|
tini \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
|
&& apt-get clean
|
||||||
|
|
||||||
|
WORKDIR /tmp/bal-install
|
||||||
|
|
||||||
|
# Download and verify release
|
||||||
|
# If BAL_VERSION is set, fetch that specific tag; otherwise fetch latest
|
||||||
|
RUN set -eux; \
|
||||||
|
if [ -n "$BAL_VERSION" ]; then \
|
||||||
|
URL="${GITEA_API}/releases/tags/${BAL_VERSION}"; \
|
||||||
|
else \
|
||||||
|
URL="${GITEA_API}/releases/latest"; \
|
||||||
|
fi; \
|
||||||
|
echo "==> Fetching release metadata from $URL"; \
|
||||||
|
RELEASE_JSON=$(curl -sfL "$URL") || { echo "ERROR: Failed to fetch release metadata"; exit 1; }; \
|
||||||
|
TAG=$(echo "$RELEASE_JSON" | jq -r '.tag_name // empty'); \
|
||||||
|
if [ -z "$TAG" ]; then echo "ERROR: Could not determine release tag"; exit 1; fi; \
|
||||||
|
echo "==> Release tag: $TAG"; \
|
||||||
|
TARBALL_URL=$(echo "$RELEASE_JSON" | jq -r \
|
||||||
|
'.assets[] | select(.name | test("\\.tar\\.gz$")) | .browser_download_url' | head -1); \
|
||||||
|
if [ -z "$TARBALL_URL" ]; then echo "ERROR: No .tar.gz asset found"; exit 1; fi; \
|
||||||
|
ASSET_NAME=$(basename "$TARBALL_URL"); \
|
||||||
|
echo "==> Downloading $ASSET_NAME"; \
|
||||||
|
curl -sfL -o "$ASSET_NAME" "$TARBALL_URL" || { echo "ERROR: Download failed"; exit 1; }; \
|
||||||
|
echo "==> Downloading checksum"; \
|
||||||
|
curl -sfL -o "${ASSET_NAME}.sha256" "${TARBALL_URL}.sha256" 2>/dev/null || true; \
|
||||||
|
if [ -f "${ASSET_NAME}.sha256" ]; then \
|
||||||
|
echo "==> Verifying SHA-256 checksum"; \
|
||||||
|
sha256sum -c "${ASSET_NAME}.sha256" || { echo "ERROR: SHA-256 verification failed"; exit 1; }; \
|
||||||
|
echo "==> Checksum OK"; \
|
||||||
|
else \
|
||||||
|
echo "WARNING: No .sha256 file available — skipping checksum verification"; \
|
||||||
|
fi; \
|
||||||
|
echo "==> Extracting tarball"; \
|
||||||
|
tar -xzf "$ASSET_NAME"; \
|
||||||
|
EXTRACTED="$(basename "$ASSET_NAME" .tar.gz)"; \
|
||||||
|
for bin in bal-server bal-pusher; do \
|
||||||
|
if [ ! -f "$EXTRACTED/$bin" ]; then \
|
||||||
|
echo "ERROR: Binary '$bin' not found in archive"; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
echo "==> Installing $bin"; \
|
||||||
|
install -m 0755 -o root -g root "$EXTRACTED/$bin" /usr/local/bin/; \
|
||||||
|
done; \
|
||||||
|
echo "==> Cleanup"; \
|
||||||
|
rm -rf /tmp/bal-install
|
||||||
|
|
||||||
|
# Create dedicated non-root user
|
||||||
|
RUN groupadd -g 1000 bal && \
|
||||||
|
useradd -u 1000 -g bal -s /usr/sbin/nologin -M bal && \
|
||||||
|
mkdir -p /var/bal /var/bal/.bitcoin && \
|
||||||
|
chown -R bal:bal /var/bal && \
|
||||||
|
chmod 700 /var/bal
|
||||||
|
|
||||||
|
# Copy entrypoint
|
||||||
|
COPY docker/entrypoint.sh /usr/local/bin/entrypoint.sh
|
||||||
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
||||||
|
|
||||||
|
# Use tini as PID 1 for proper signal handling
|
||||||
|
ENTRYPOINT ["/usr/bin/tini", "--"]
|
||||||
|
CMD ["/usr/local/bin/entrypoint.sh"]
|
||||||
|
|
||||||
|
# Data directory (mount as volume)
|
||||||
|
VOLUME ["/var/bal"]
|
||||||
|
|
||||||
|
# bal-server port
|
||||||
|
EXPOSE 9137
|
||||||
|
|
||||||
|
# Default environment (override at runtime)
|
||||||
|
ENV RUST_LOG=info \
|
||||||
|
BAL_SERVER_BIND_ADDRESS=127.0.0.1 \
|
||||||
|
BAL_SERVER_BIND_PORT=9137 \
|
||||||
|
BAL_SERVER_DB_FILE=/var/bal/bal.db \
|
||||||
|
BAL_PUSHER_DB_FILE=/var/bal/bal.db \
|
||||||
|
BAL_SERVER_URL=http://127.0.0.1:9137 \
|
||||||
|
BAL_SERVER_PUB_KEY_PATH=/var/bal/public_key.pem \
|
||||||
|
SSL_KEY_PATH=/var/bal/private_key.pem
|
||||||
|
|
||||||
|
# Health check
|
||||||
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
|
||||||
|
CMD curl -sf http://127.0.0.1:9137/ || exit 1
|
||||||
20
README.md
20
README.md
@@ -13,7 +13,15 @@ sudo cp target/release/bal-server target/release/bal-pusher /usr/local/bin
|
|||||||
|
|
||||||
## Docker
|
## Docker
|
||||||
|
|
||||||
### Build
|
### Quick Start (release download)
|
||||||
|
|
||||||
|
Download the latest pre-built release — no Rust toolchain needed:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker build -f Dockerfile.release -t bal-server .
|
||||||
|
```
|
||||||
|
|
||||||
|
### Build from source
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker build -t bal-server .
|
docker build -t bal-server .
|
||||||
@@ -37,6 +45,12 @@ docker run -d \
|
|||||||
bal-server
|
bal-server
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Pin a specific version
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker build -f Dockerfile.release --build-arg BAL_VERSION=v0.3.2 -t bal-server:0.3.2 .
|
||||||
|
```
|
||||||
|
|
||||||
### Docker environment variables
|
### Docker environment variables
|
||||||
|
|
||||||
| Variable | Description | Default |
|
| Variable | Description | Default |
|
||||||
@@ -48,6 +62,7 @@ docker run -d \
|
|||||||
> **Note:** The container runs as a non-root `bal` user (uid 1000) with `tini` as PID 1.
|
> **Note:** The container runs as a non-root `bal` user (uid 1000) with `tini` as PID 1.
|
||||||
> The `/var/bal` volume stores the database. Mount Bitcoin Core's cookie file as read-only.
|
> The `/var/bal` volume stores the database. Mount Bitcoin Core's cookie file as read-only.
|
||||||
> When using `--network host`, ensure only `127.0.0.1` is used for internal services.
|
> When using `--network host`, ensure only `127.0.0.1` is used for internal services.
|
||||||
|
> `Dockerfile.release` fetches the latest release from the Gitea server and verifies its SHA-256 checksum.
|
||||||
|
|
||||||
## Configuration (bal-server)
|
## Configuration (bal-server)
|
||||||
|
|
||||||
@@ -97,6 +112,7 @@ The `bal-server` application can be configured using environment variables.
|
|||||||
| `BAL_SERVER_ACTIX_DEFAULT_BURST` | Rate limit: default burst size. | `100` |
|
| `BAL_SERVER_ACTIX_DEFAULT_BURST` | Rate limit: default burst size. | `100` |
|
||||||
| `BAL_SERVER_ACTIX_WORKERS` | Number of Actix worker threads. | `4` |
|
| `BAL_SERVER_ACTIX_WORKERS` | Number of Actix worker threads. | `4` |
|
||||||
| `BAL_SERVER_ACTIX_MAX_CONNECTIONS` | Maximum concurrent connections. | `100` |
|
| `BAL_SERVER_ACTIX_MAX_CONNECTIONS` | Maximum concurrent connections. | `100` |
|
||||||
|
| `BAL_SERVER_TRUSTED_PROXY` | Trusted reverse proxy IP for rate-limiting client identification. | `127.0.0.1` |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -111,7 +127,7 @@ The `bal-server` application can be configured using environment variables.
|
|||||||
zmqpubhashblock=tcp://127.0.0.1:28332
|
zmqpubhashblock=tcp://127.0.0.1:28332
|
||||||
```
|
```
|
||||||
- **Rust and Cargo**: [Rust Installation](https://www.rust-lang.org/tools/install)
|
- **Rust and Cargo**: [Rust Installation](https://www.rust-lang.org/tools/install)
|
||||||
- **Libraries**: `libssl-dev`, `libsodium-dev`, `libzmq5-dev`, `libsqlite3-dev`
|
- **Libraries**: `libssl-dev`, `libzmq5-dev`, `libsqlite3-dev`
|
||||||
|
|
||||||
## Running
|
## Running
|
||||||
|
|
||||||
|
|||||||
@@ -1,30 +0,0 @@
|
|||||||
RUST_LOG=info
|
|
||||||
BAL_SERVER_DB_FILE="/home/bal/bal.db"
|
|
||||||
BAL_SERVER_INFO="BAL server test willexecutor"
|
|
||||||
# !!! WARNING: Never bind to 0.0.0.0 in production. Use 127.0.0.1 and place Nginx with TLS in front.
|
|
||||||
BAL_SERVER_BIND_ADDRESS=127.0.0.1
|
|
||||||
BAL_SERVER_BIND_PORT=9133
|
|
||||||
BAL_SERVER_BITCOIN_ADDRESS="your bitcoin or xpub to recive payments here"
|
|
||||||
BAL_SERVER_BITCOIN_FIXED_FEE=50000
|
|
||||||
BAL_SERVER_PUB_KEY_PATH="/home/bal/public_key.pem"
|
|
||||||
|
|
||||||
BAL_SERVER_REGTEST_ADDRESS="vpub5UhLrYG1qQjnJhvJgBdqgpznyH11mxW9hwBYxf3KhfdjiupCFPUVDvgwpeZ9Wj5YUJXjKjXjy7DSbJNBW1sXbKwARiaphm1UjHYy3mKvTG4"
|
|
||||||
BAL_SERVER_REGTEST_FEE=5000
|
|
||||||
#BAL_SERVER_TESTNET_ADDRESS=
|
|
||||||
#BAL_SERVER_TESTNET_FEE=100000
|
|
||||||
#BAL_SERVER_SIGNET_ADDRESS=
|
|
||||||
#BAL_SERVER_SIGNET_FEE=100000
|
|
||||||
|
|
||||||
# Actix Web DoS Protection Settings (added with migration to Actix Web)
|
|
||||||
BAL_SERVER_ACTIX_MAX_BODY_SIZE=1048576
|
|
||||||
BAL_SERVER_ACTIX_TIMEOUT_SECS=5
|
|
||||||
BAL_SERVER_ACTIX_PUSHTXS_PER_SEC=1
|
|
||||||
BAL_SERVER_ACTIX_PUSHTXS_BURST=3
|
|
||||||
BAL_SERVER_ACTIX_SEARCHTX_PER_SEC=5
|
|
||||||
BAL_SERVER_ACTIX_SEARCHTX_BURST=10
|
|
||||||
BAL_SERVER_ACTIX_INFO_PER_SEC=20
|
|
||||||
BAL_SERVER_ACTIX_INFO_BURST=30
|
|
||||||
BAL_SERVER_ACTIX_DEFAULT_PER_SEC=50
|
|
||||||
BAL_SERVER_ACTIX_DEFAULT_BURST=100
|
|
||||||
BAL_SERVER_ACTIX_WORKERS=4
|
|
||||||
BAL_SERVER_ACTIX_MAX_CONNECTIONS=100
|
|
||||||
40
bal-server.sh
Normal file → Executable file
40
bal-server.sh
Normal file → Executable file
@@ -1,6 +1,12 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
||||||
|
. "$SCRIPT_DIR/lib.sh"
|
||||||
|
|
||||||
WORKING_DIR=$(pwd)
|
WORKING_DIR=$(pwd)
|
||||||
if [ ! -f "$WORKING_DIR/public_key.pem" ]; then
|
if [ ! -f "$WORKING_DIR/public_key.pem" ]; then
|
||||||
echo "creating keypairs"
|
echo_i "creating keypairs"
|
||||||
openssl genpkey -algorithm ED25519 -out private_key.pem
|
openssl genpkey -algorithm ED25519 -out private_key.pem
|
||||||
openssl pkey -in private_key.pem -pubout -out public_key.pem
|
openssl pkey -in private_key.pem -pubout -out public_key.pem
|
||||||
fi
|
fi
|
||||||
@@ -11,7 +17,7 @@ export BAL_SERVER_INFO="BAL devel willexecutor server"
|
|||||||
export BAL_SERVER_BIND_ADDRESS="127.0.0.1"
|
export BAL_SERVER_BIND_ADDRESS="127.0.0.1"
|
||||||
export BAL_SERVER_BIND_PORT=9133
|
export BAL_SERVER_BIND_PORT=9133
|
||||||
export BAL_SERVER_PUB_KEY_PATH="$WORKING_DIR/public_key.pem"
|
export BAL_SERVER_PUB_KEY_PATH="$WORKING_DIR/public_key.pem"
|
||||||
export BAL_SERVER_EXPOSE_STATS=true;
|
export BAL_SERVER_EXPOSE_STATS=true
|
||||||
|
|
||||||
#export BAL_SERVER_BITCOIN_ADDRESS="your bitcoin address or xpub to recive payments here"
|
#export BAL_SERVER_BITCOIN_ADDRESS="your bitcoin address or xpub to recive payments here"
|
||||||
#export BAL_SERVER_BITCOIN_FIXED_FEE=50000
|
#export BAL_SERVER_BITCOIN_FIXED_FEE=50000
|
||||||
@@ -22,4 +28,34 @@ export BAL_SERVER_REGTEST_FIXED_FEE=1000
|
|||||||
#export BAL_SERVER_TESTNET_FEE=100000
|
#export BAL_SERVER_TESTNET_FEE=100000
|
||||||
#export BAL_SERVER_SIGNET_ADDRESS=
|
#export BAL_SERVER_SIGNET_ADDRESS=
|
||||||
#export BAL_SERVER_SIGNET_FEE=100000
|
#export BAL_SERVER_SIGNET_FEE=100000
|
||||||
|
export BAL_SERVER_DB_BACKEND="postgresql"
|
||||||
|
|
||||||
|
if [ "$BAL_SERVER_DB_BACKEND" = "postgresql" ]; then
|
||||||
|
PG_CONTAINER="bal-pg"
|
||||||
|
PG_DSN="${BAL_SERVER_PG_DSN:-postgres://bal:balpass@localhost:5432/baldb}"
|
||||||
|
|
||||||
|
docker rm -f "$PG_CONTAINER" 2>/dev/null || true
|
||||||
|
echo_i "Starting PostgreSQL container..."
|
||||||
|
docker run -d --name "$PG_CONTAINER" \
|
||||||
|
-e POSTGRES_USER=bal \
|
||||||
|
-e POSTGRES_PASSWORD=balpass \
|
||||||
|
-e POSTGRES_DB=baldb \
|
||||||
|
-p 5432:5432 postgres:16-alpine
|
||||||
|
|
||||||
|
echo_i "Waiting for PostgreSQL..."
|
||||||
|
until docker exec "$PG_CONTAINER" pg_isready -U bal >/dev/null 2>&1; do
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
echo_i "PostgreSQL ready at $PG_DSN"
|
||||||
|
export BAL_SERVER_PG_DSN="$PG_DSN"
|
||||||
|
|
||||||
|
|
||||||
|
cleanup() {
|
||||||
|
echo_i "Stopping PostgreSQL container..."
|
||||||
|
docker stop "$PG_CONTAINER" >/dev/null 2>&1
|
||||||
|
docker rm "$PG_CONTAINER" >/dev/null 2>&1
|
||||||
|
}
|
||||||
|
trap cleanup EXIT
|
||||||
|
fi
|
||||||
|
|
||||||
cargo run --bin=bal-server
|
cargo run --bin=bal-server
|
||||||
|
|||||||
0
contrib/.config_init
Normal file
0
contrib/.config_init
Normal file
325
contrib/deploy.sh
Executable file
325
contrib/deploy.sh
Executable file
@@ -0,0 +1,325 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
# deploy.sh — Deploy the latest bal-server release on a remote server.
|
||||||
|
#
|
||||||
|
# Downloads, verifies (SHA-256 + GPG), and installs the release entirely
|
||||||
|
# on the remote server via SSH. No file transfer (scp/rsync) needed.
|
||||||
|
#
|
||||||
|
# Usage:
|
||||||
|
# ./contrib/deploy.sh # deploy latest
|
||||||
|
# ./contrib/deploy.sh --dry-run # show plan without executing
|
||||||
|
# ./contrib/deploy.sh v0.3.1 # deploy a specific tag
|
||||||
|
# DEPLOY_DRY_RUN=1 ./contrib/deploy.sh # same as --dry-run
|
||||||
|
#
|
||||||
|
# Prerequisites:
|
||||||
|
# - ssh key access to debian@bitcoin-after.life:47081
|
||||||
|
# - The server must have: curl, jq, sha256sum, gpg, systemctl
|
||||||
|
#
|
||||||
|
# Services managed:
|
||||||
|
# bal-server, bal-pusher, tbal-pusher, t4bal-pusher
|
||||||
|
|
||||||
|
REMOTE_USER="debian"
|
||||||
|
REMOTE_HOST="bitcoin-after.life"
|
||||||
|
REMOTE_PORT="47081"
|
||||||
|
SSH_OPTS="-p ${REMOTE_PORT} -o ConnectTimeout=15 -o BatchMode=yes"
|
||||||
|
|
||||||
|
GITEA_API="https://bitcoin-after.life/gitea/api/v1/repos/bitcoinafterlife/bal-server"
|
||||||
|
GPG_SIGNER="svatantrya@bitcoin-after.life"
|
||||||
|
GPG_KEY_ID="A847D004DB91610711CA6A0DFE756706E833E0D1"
|
||||||
|
|
||||||
|
SERVICES=("bal-server" "bal-pusher" "tbal-pusher" "t4bal-pusher")
|
||||||
|
INSTALL_DIR="/usr/local/bin"
|
||||||
|
|
||||||
|
# ── Parse arguments ─────────────────────────────────────────────────
|
||||||
|
DRY_RUN=0
|
||||||
|
DEPLOY_TAG=""
|
||||||
|
for arg in "$@"; do
|
||||||
|
case "$arg" in
|
||||||
|
--dry-run) DRY_RUN=1 ;;
|
||||||
|
--help|-h)
|
||||||
|
echo "Usage: $0 [--dry-run] [TAG]"
|
||||||
|
echo " TAG Deploy a specific release tag (e.g. v0.3.1). Default: latest."
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
*) DEPLOY_TAG="$arg" ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
[[ "${DEPLOY_DRY_RUN:-}" == "1" ]] && DRY_RUN=1
|
||||||
|
|
||||||
|
# ── Helpers ──────────────────────────────────────────────────────────
|
||||||
|
info() { echo -e "\033[1m==> $1\033[0m"; }
|
||||||
|
ok() { echo -e "\033[32;1m ✔ $1\033[0m"; }
|
||||||
|
warn() { echo -e "\033[33;1m ⚠ $1\033[0m"; }
|
||||||
|
err() { echo -e "\033[31;1m ✖ $1\033[0m"; }
|
||||||
|
die() { err "$1"; exit "${2:-1}"; }
|
||||||
|
|
||||||
|
remote_exec() {
|
||||||
|
if [[ $DRY_RUN -eq 1 ]]; then
|
||||||
|
info "[dry-run] remote: $1"
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
ssh $SSH_OPTS "${REMOTE_USER}@${REMOTE_HOST}" "$@"
|
||||||
|
}
|
||||||
|
|
||||||
|
# ── Step 0: Verify SSH connectivity ────────────────────────────────
|
||||||
|
info "Verifying SSH connection to ${REMOTE_HOST} ..."
|
||||||
|
if ! remote_exec "echo ok" >/dev/null 2>&1; then
|
||||||
|
die "Cannot connect via SSH. Check your key and network."
|
||||||
|
fi
|
||||||
|
ok "SSH connection OK"
|
||||||
|
|
||||||
|
# ── Step 1: Resolve release to deploy ──────────────────────────────
|
||||||
|
if [[ -n "$DEPLOY_TAG" ]]; then
|
||||||
|
TAG="$DEPLOY_TAG"
|
||||||
|
info "Deploying explicit tag: $TAG"
|
||||||
|
RELEASE_JSON=$(curl -sfL "${GITEA_API}/releases/tags/${TAG}") \
|
||||||
|
|| die "Release $TAG not found at $GITEA_API/releases/tags/$TAG"
|
||||||
|
else
|
||||||
|
info "Fetching latest release metadata ..."
|
||||||
|
RELEASE_JSON=$(curl -sfL "${GITEA_API}/releases/latest") \
|
||||||
|
|| die "Failed to fetch latest release from $GITEA_API"
|
||||||
|
TAG=$(echo "$RELEASE_JSON" | jq -r '.tag_name // empty')
|
||||||
|
fi
|
||||||
|
|
||||||
|
RELEASE_NAME=$(echo "$RELEASE_JSON" | jq -r '.name // empty')
|
||||||
|
if [[ -z "$TAG" ]]; then
|
||||||
|
die "Could not determine release tag"
|
||||||
|
fi
|
||||||
|
info "Release: $RELEASE_NAME (tag: $TAG)"
|
||||||
|
|
||||||
|
TARBALL_URL=$(echo "$RELEASE_JSON" | jq -r \
|
||||||
|
'.assets[] | select(.name | test("\\.tar\\.gz$")) | .browser_download_url' | head -1)
|
||||||
|
[[ -z "$TARBALL_URL" ]] && die "No .tar.gz asset found in release $TAG"
|
||||||
|
ASSET_NAME=$(basename "$TARBALL_URL")
|
||||||
|
info "Asset: $ASSET_NAME"
|
||||||
|
|
||||||
|
# Collect sidecar URLs
|
||||||
|
SHA256_URL="${TARBALL_URL}.sha256"
|
||||||
|
SIG_URL="${TARBALL_URL}.sig"
|
||||||
|
ASC_URL="${TARBALL_URL}.asc"
|
||||||
|
|
||||||
|
# ── Step 2: Check current version on server ─────────────────────────
|
||||||
|
info "Checking current version on server ..."
|
||||||
|
CURRENT=$(remote_exec "$INSTALL_DIR/bal-server --version" 2>/dev/null \
|
||||||
|
|| remote_exec "strings $INSTALL_DIR/bal-server 2>/dev/null | head -1" 2>/dev/null \
|
||||||
|
|| echo "unknown")
|
||||||
|
info "Current version on server: $CURRENT"
|
||||||
|
|
||||||
|
# ── Step 2b: Export GPG key for remote import ────────────────────────
|
||||||
|
info "Exporting GPG public key for $GPG_SIGNER ..."
|
||||||
|
GPG_PUBKEY_B64=""
|
||||||
|
if gpg --list-keys "$GPG_SIGNER" &>/dev/null; then
|
||||||
|
GPG_PUBKEY_B64=$(gpg --armor --export "$GPG_SIGNER" | base64 -w 0)
|
||||||
|
ok "GPG public key exported (${#GPG_PUBKEY_B64} chars base64)"
|
||||||
|
else
|
||||||
|
warn "GPG key for $GPG_SIGNER not found locally — remote import will try keyservers"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ── Step 3: Deploy on remote ───────────────────────────────────────
|
||||||
|
# Build a single shell script that runs entirely on the server.
|
||||||
|
# This avoids scp/rsync issues and ensures atomic, auditable deployment.
|
||||||
|
|
||||||
|
DEPLOY_SCRIPT=$(cat << 'REMOTE_EOF'
|
||||||
|
#!/bin/bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
TAG="__TAG__"
|
||||||
|
ASSET_NAME="__ASSET_NAME__"
|
||||||
|
TARBALL_URL="__TARBALL_URL__"
|
||||||
|
SHA256_URL="__SHA256_URL__"
|
||||||
|
SIG_URL="__SIG_URL__"
|
||||||
|
ASC_URL="__ASC_URL__"
|
||||||
|
GPG_SIGNER="__GPG_SIGNER__"
|
||||||
|
GPG_KEY_ID="__GPG_KEY_ID__"
|
||||||
|
INSTALL_DIR="__INSTALL_DIR__"
|
||||||
|
SERVICES="__SERVICES__"
|
||||||
|
DRY_RUN="__DRY_RUN__"
|
||||||
|
|
||||||
|
info() { echo -e "\033[1m==> $1\033[0m"; }
|
||||||
|
ok() { echo -e "\033[32;1m ✔ $1\033[0m"; }
|
||||||
|
warn() { echo -e "\033[33;1m ⚠ $1\033[0m"; }
|
||||||
|
err() { echo -e "\033[31;1m ✖ $1\033[0m"; }
|
||||||
|
die() { err "$1"; exit "${2:-1}"; }
|
||||||
|
|
||||||
|
WORKDIR=$(mktemp -d /tmp/bal-deploy.XXXXXX)
|
||||||
|
trap 'rm -rf "$WORKDIR"' EXIT
|
||||||
|
|
||||||
|
# ── Ensure GPG is available ─────────────────────────────────────────
|
||||||
|
if ! command -v gpg &>/dev/null; then
|
||||||
|
info "Installing gnupg ..."
|
||||||
|
sudo apt-get update -qq && sudo apt-get install -y -qq gnupg
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ── Import GPG key ──────────────────────────────────────────────────
|
||||||
|
info "Importing GPG key $GPG_KEY_ID ..."
|
||||||
|
if ! gpg --list-keys "$GPG_SIGNER" &>/dev/null; then
|
||||||
|
imported=0
|
||||||
|
# Try embedded key first (base64-encoded, pushed from deployer)
|
||||||
|
if [[ -n "__GPG_PUBKEY_B64__" ]]; then
|
||||||
|
echo "__GPG_PUBKEY_B64__" | base64 -d | gpg --batch --import 2>/dev/null && imported=1 && ok "Key imported from deployer"
|
||||||
|
fi
|
||||||
|
# Fallback to keyservers
|
||||||
|
if [[ $imported -eq 0 ]]; then
|
||||||
|
for ks in keyserver.ubuntu.com keys.openpgp.org pgp.mit.edu; do
|
||||||
|
if gpg --batch --keyserver "$ks" --recv-keys "$GPG_KEY_ID" 2>/dev/null; then
|
||||||
|
ok "Key imported from $ks"
|
||||||
|
imported=1
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
if [[ $imported -eq 0 ]]; then
|
||||||
|
die "Cannot import GPG key $GPG_KEY_ID. Import it manually and re-run."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
ok "GPG key already present"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ── Download release assets ─────────────────────────────────────────
|
||||||
|
info "Downloading $ASSET_NAME ..."
|
||||||
|
curl -sfL -o "$WORKDIR/$ASSET_NAME" "$TARBALL_URL" || die "Download failed"
|
||||||
|
|
||||||
|
for sidecar in "sha256:$SHA256_URL:.sha256" "sig:$SIG_URL:.sig" "asc:$ASC_URL:.asc"; do
|
||||||
|
IFS=: read -r label url suffix <<< "$sidecar"
|
||||||
|
if curl -sfL -o "$WORKDIR/$(basename "$ASSET_NAME")$suffix" "$url" 2>/dev/null; then
|
||||||
|
ok "Downloaded $ASSET_NAME$suffix"
|
||||||
|
else
|
||||||
|
warn "$label file not available — skipping"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# ── Verify SHA-256 ──────────────────────────────────────────────────
|
||||||
|
SHA_FILE="$WORKDIR/${ASSET_NAME}.sha256"
|
||||||
|
if [[ -f "$SHA_FILE" ]]; then
|
||||||
|
info "Verifying SHA-256 checksum ..."
|
||||||
|
(cd "$WORKDIR" && sha256sum -c "$SHA_FILE") || die "SHA-256 verification FAILED"
|
||||||
|
ok "SHA-256 OK"
|
||||||
|
else
|
||||||
|
warn "No .sha256 file — skipping checksum"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ── Verify GPG signature ────────────────────────────────────────────
|
||||||
|
SIG_FILE="$WORKDIR/${ASSET_NAME}.sig"
|
||||||
|
ASC_FILE="$WORKDIR/${ASSET_NAME}.asc"
|
||||||
|
verified=0
|
||||||
|
|
||||||
|
if [[ -f "$SIG_FILE" ]]; then
|
||||||
|
info "Verifying GPG signature (binary) ..."
|
||||||
|
gpg --batch --verify "$SIG_FILE" "$WORKDIR/$ASSET_NAME" 2>&1 && verified=1
|
||||||
|
fi
|
||||||
|
if [[ $verified -eq 0 ]] && [[ -f "$ASC_FILE" ]]; then
|
||||||
|
info "Verifying GPG signature (ASCII-armored) ..."
|
||||||
|
gpg --batch --verify "$ASC_FILE" "$WORKDIR/$ASSET_NAME" 2>&1 && verified=1
|
||||||
|
fi
|
||||||
|
if [[ $verified -eq 0 ]]; then
|
||||||
|
warn "No GPG signature available — skipping signature verification"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ── Extract ──────────────────────────────────────────────────────────
|
||||||
|
info "Extracting tarball ..."
|
||||||
|
tar -xzf "$WORKDIR/$ASSET_NAME" -C "$WORKDIR"
|
||||||
|
EXTRACTED="$WORKDIR/$(basename "$ASSET_NAME" .tar.gz)"
|
||||||
|
|
||||||
|
for bin in bal-server bal-pusher; do
|
||||||
|
if [[ ! -f "$EXTRACTED/$bin" ]]; then
|
||||||
|
die "Binary '$bin' not found in archive"
|
||||||
|
fi
|
||||||
|
ok "Found $bin ($(stat -c%s "$EXTRACTED/$bin") bytes)"
|
||||||
|
done
|
||||||
|
|
||||||
|
# ── Stop services ────────────────────────────────────────────────────
|
||||||
|
info "Stopping services ..."
|
||||||
|
IFS=',' read -ra SVC_LIST <<< "$SERVICES"
|
||||||
|
for svc in "${SVC_LIST[@]}"; do
|
||||||
|
svc=$(echo "$svc" | xargs) # trim whitespace
|
||||||
|
if systemctl is-active --quiet "$svc" 2>/dev/null; then
|
||||||
|
sudo systemctl stop "$svc" || warn "Failed to stop $svc"
|
||||||
|
ok "Stopped $svc"
|
||||||
|
else
|
||||||
|
warn "$svc is not running"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# ── Backup current binaries ─────────────────────────────────────────
|
||||||
|
BACKUP_DIR="$WORKDIR/backup"
|
||||||
|
mkdir -p "$BACKUP_DIR"
|
||||||
|
for bin in bal-server bal-pusher; do
|
||||||
|
if [[ -f "$INSTALL_DIR/$bin" ]]; then
|
||||||
|
cp "$INSTALL_DIR/$bin" "$BACKUP_DIR/$bin" 2>/dev/null || true
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
ok "Current binaries backed up"
|
||||||
|
|
||||||
|
# ── Install new binaries ────────────────────────────────────────────
|
||||||
|
info "Installing binaries to $INSTALL_DIR ..."
|
||||||
|
sudo install -m 0755 -o root -g root "$EXTRACTED/bal-server" "$EXTRACTED/bal-pusher" "$INSTALL_DIR/"
|
||||||
|
ok "Installed bal-server and bal-pusher"
|
||||||
|
|
||||||
|
# ── Restart services ────────────────────────────────────────────────
|
||||||
|
info "Restarting services ..."
|
||||||
|
sudo systemctl daemon-reload
|
||||||
|
for svc in "${SVC_LIST[@]}"; do
|
||||||
|
svc=$(echo "$svc" | xargs)
|
||||||
|
if systemctl is-enabled --quiet "$svc" 2>/dev/null; then
|
||||||
|
sudo systemctl restart "$svc" || warn "Failed to restart $svc"
|
||||||
|
ok "Restarted $svc"
|
||||||
|
else
|
||||||
|
warn "$svc is not enabled — skipping restart"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# ── Verify ──────────────────────────────────────────────────────────
|
||||||
|
echo ""
|
||||||
|
info "Checking service status ..."
|
||||||
|
sleep 2
|
||||||
|
for svc in "${SVC_LIST[@]}"; do
|
||||||
|
svc=$(echo "$svc" | xargs)
|
||||||
|
status=$(systemctl is-active "$svc" 2>/dev/null || echo "inactive")
|
||||||
|
if [[ "$status" == "active" ]]; then
|
||||||
|
ok "$svc: active"
|
||||||
|
else
|
||||||
|
warn "$svc: $status"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
ok "Deploy of $TAG completed successfully!"
|
||||||
|
REMOTE_EOF
|
||||||
|
)
|
||||||
|
|
||||||
|
# ── Substitute variables into the remote script ─────────────────────
|
||||||
|
DEPLOY_SCRIPT="${DEPLOY_SCRIPT//__TAG__/$TAG}"
|
||||||
|
DEPLOY_SCRIPT="${DEPLOY_SCRIPT//__ASSET_NAME__/$ASSET_NAME}"
|
||||||
|
DEPLOY_SCRIPT="${DEPLOY_SCRIPT//__TARBALL_URL__/$TARBALL_URL}"
|
||||||
|
DEPLOY_SCRIPT="${DEPLOY_SCRIPT//__SHA256_URL__/$SHA256_URL}"
|
||||||
|
DEPLOY_SCRIPT="${DEPLOY_SCRIPT//__SIG_URL__/$SIG_URL}"
|
||||||
|
DEPLOY_SCRIPT="${DEPLOY_SCRIPT//__ASC_URL__/$ASC_URL}"
|
||||||
|
DEPLOY_SCRIPT="${DEPLOY_SCRIPT//__GPG_SIGNER__/$GPG_SIGNER}"
|
||||||
|
DEPLOY_SCRIPT="${DEPLOY_SCRIPT//__GPG_KEY_ID__/$GPG_KEY_ID}"
|
||||||
|
DEPLOY_SCRIPT="${DEPLOY_SCRIPT//__INSTALL_DIR__/$INSTALL_DIR}"
|
||||||
|
DEPLOY_SCRIPT="${DEPLOY_SCRIPT//__DRY_RUN__/$DRY_RUN}"
|
||||||
|
# Join SERVICES array into comma-separated string for the remote script
|
||||||
|
SERVICES_STR=$(IFS=,; echo "${SERVICES[*]}")
|
||||||
|
DEPLOY_SCRIPT="${DEPLOY_SCRIPT//__SERVICES__/$SERVICES_STR}"
|
||||||
|
DEPLOY_SCRIPT="${DEPLOY_SCRIPT//__GPG_PUBKEY_B64__/${GPG_PUBKEY_B64:-}}"
|
||||||
|
|
||||||
|
# ── Execute ──────────────────────────────────────────────────────────
|
||||||
|
if [[ $DRY_RUN -eq 1 ]]; then
|
||||||
|
info "=== DRY RUN — would execute the following on remote: ==="
|
||||||
|
echo "$DEPLOY_SCRIPT"
|
||||||
|
echo "=== end dry run ==="
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
REMOTE_SCRIPT="/tmp/bal-deploy-$(date +%s).sh"
|
||||||
|
info "Uploading deploy script to remote ..."
|
||||||
|
ssh $SSH_OPTS "${REMOTE_USER}@${REMOTE_HOST}" "cat > '$REMOTE_SCRIPT'" <<< "$DEPLOY_SCRIPT" \
|
||||||
|
|| die "Failed to upload deploy script"
|
||||||
|
|
||||||
|
info "Executing deploy on remote server ..."
|
||||||
|
ssh $SSH_OPTS "${REMOTE_USER}@${REMOTE_HOST}" "chmod +x '$REMOTE_SCRIPT' && bash '$REMOTE_SCRIPT'; rc=\$?; rm -f '$REMOTE_SCRIPT'; exit \$rc" \
|
||||||
|
|| die "Deploy script failed on remote (exit $?)"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
ok "Deploy finished!"
|
||||||
19
contrib/lib.sh
Normal file
19
contrib/lib.sh
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
echo_i() {
|
||||||
|
echo -e "\033[1m==> $1\033[0m"
|
||||||
|
}
|
||||||
|
|
||||||
|
echo_e() {
|
||||||
|
echo -e "\033[31;1m$1\033[0m"
|
||||||
|
}
|
||||||
|
|
||||||
|
echo_s() {
|
||||||
|
echo -e "\033[32;1m$1\033[0m"
|
||||||
|
}
|
||||||
|
echo_w() {
|
||||||
|
echo -e "\033[33;1m$1\033[0m"
|
||||||
|
}
|
||||||
|
|
||||||
|
alias echo_i=echo_i
|
||||||
|
alias echo_e=echo_e
|
||||||
|
alias echo_s=echo_s
|
||||||
|
alias echo_w=echo_w
|
||||||
3
docker/s6-rc.d/bal-pusher/run
Executable file
3
docker/s6-rc.d/bal-pusher/run
Executable file
@@ -0,0 +1,3 @@
|
|||||||
|
#!/command/with-contenv sh
|
||||||
|
exec s6-setsid logutil-service bal-pusher \
|
||||||
|
/usr/local/bin/bal-pusher
|
||||||
1
docker/s6-rc.d/bal-pusher/type
Normal file
1
docker/s6-rc.d/bal-pusher/type
Normal file
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
3
docker/s6-rc.d/bal-server/run
Executable file
3
docker/s6-rc.d/bal-server/run
Executable file
@@ -0,0 +1,3 @@
|
|||||||
|
#!/command/with-contenv sh
|
||||||
|
exec s6-setsid logutil-service bal-server \
|
||||||
|
/usr/local/bin/bal-server
|
||||||
1
docker/s6-rc.d/bal-server/type
Normal file
1
docker/s6-rc.d/bal-server/type
Normal file
@@ -0,0 +1 @@
|
|||||||
|
longrun
|
||||||
0
docker/s6-rc.d/user/contents.d/bal-pusher
Normal file
0
docker/s6-rc.d/user/contents.d/bal-pusher
Normal file
0
docker/s6-rc.d/user/contents.d/bal-server
Normal file
0
docker/s6-rc.d/user/contents.d/bal-server
Normal file
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
## Vision and Scope
|
## Vision and Scope
|
||||||
|
|
||||||
`bal_server` is a Rust-based Bitcoin transaction executor server. It receives raw Bitcoin transactions via HTTP, validates them, persists them in a local SQLite database, and coordinates their broadcast on-chain after a locktime condition expires. The system supports multiple Bitcoin networks (mainnet, testnet, regtest, testnet4, signet) and tracks extended public keys (xpub) for fee collection.
|
`bal_server` is a Rust-based Bitcoin transaction executor server (v0.3.2, edition 2024). It receives raw Bitcoin transactions via HTTP, validates them, persists them in a local SQLite database, and coordinates their broadcast on-chain after a locktime condition expires. The system supports multiple Bitcoin networks (mainnet, testnet, regtest, testnet4, signet) and tracks extended public keys (xpub) for fee collection.
|
||||||
|
|
||||||
### Key Goals
|
### Key Goals
|
||||||
1. **Receive and validate** raw Bitcoin transactions with locktime.
|
1. **Receive and validate** raw Bitcoin transactions with locktime.
|
||||||
@@ -17,18 +17,39 @@
|
|||||||
|
|
||||||
## System Components
|
## System Components
|
||||||
|
|
||||||
The project consists of three primary binaries and two shared libraries:
|
The project consists of two binaries and one shared library:
|
||||||
|
|
||||||
1. **`bal-server`**: Async HTTP server (hyper + tokio) that exposes the API for receiving transactions and serving statistics.
|
1. **`bal-server`**: Async HTTP server (**actix-web 4.9.0** + actix-rt) that exposes the API for receiving transactions and serving statistics. Includes rate limiting via `actix-governor`.
|
||||||
2. **`bal-pusher`**: Async daemon that listens for `hashblock` ZMQ messages and pushes pending transactions to a Bitcoin node via RPC.
|
2. **`bal-pusher`**: Async daemon (tokio) that listens for `hashblock` ZMQ messages and pushes pending transactions to a Bitcoin node via RPC.
|
||||||
4. **`lib.rs`**: Exports the shared modules `db` and `xpub`.
|
3. **`lib.rs`**: Exports the shared modules `db`, `xpub`, and `validation`.
|
||||||
5. **`db.rs`**: All database operations and schema creation for SQLite `0.34.0`.
|
|
||||||
6. **`xpub.rs`**: Address derivation from xpub/zpub using BIP-84 and the `bitcoin` crate.
|
### Library Modules
|
||||||
|
4. **`db.rs`**: All database operations, schema creation, path validation, and WAL mode for SQLite `0.34.0`.
|
||||||
|
5. **`xpub.rs`**: Address derivation from xpub/zpub/ypub using BIP-84 and the `bitcoin` crate.
|
||||||
|
6. **`validation.rs`**: SSRF protection for the `welist` URL, blocking private/internal IP ranges.
|
||||||
|
|
||||||
|
## Feature Flags
|
||||||
|
|
||||||
|
The project uses Cargo feature flags to build each binary independently:
|
||||||
|
|
||||||
|
| Feature | Dependencies | Binary |
|
||||||
|
|---------|-------------|--------|
|
||||||
|
| `server` (default) | `actix-web`, `actix-governor`, `actix-rt`, `chrono`, `hex-conservative` | `bal-server` |
|
||||||
|
| `pusher` (default) | `zmq`, `reqwest`, `byteorder`, `base64`, `ed25519-dalek` | `bal-pusher` |
|
||||||
|
|
||||||
|
## Docker Support
|
||||||
|
|
||||||
|
Two Dockerfiles are provided:
|
||||||
|
|
||||||
|
- **`Dockerfile.release`** (recommended for production): Downloads the latest pre-built release from the Gitea server. No Rust toolchain needed. Verifies SHA-256 checksum. Supports pinning a specific version via `BAL_VERSION` build arg.
|
||||||
|
- **`Dockerfile`** (for development/custom builds): Multi-stage build using `rust:1.95-bookworm` as the builder and `debian:bookworm-slim` as the runtime. Each binary is compiled with only its required features (`--no-default-features --features server` / `--features pusher`).
|
||||||
|
|
||||||
|
Both run as a non-root `bal` user (uid 1000) with `tini` as PID 1 and include a healthcheck endpoint.
|
||||||
|
|
||||||
## Mapping to Existing Documentation
|
## Mapping to Existing Documentation
|
||||||
|
|
||||||
| Existing File | Subject | Covered in this KB |
|
| Existing File | Subject | Covered in this KB |
|
||||||
|---------------|---------|-------------------|
|
|---------------|---------|-------------------|
|
||||||
| `README.md` | Installation, environment variables, ZMQ dependency | [`07_deployment_and_ops.md`](07_deployment_and_ops.md) |
|
| `README.md` | Installation, environment variables, ZMQ dependency, Docker | [`07_deployment_and_ops.md`](07_deployment_and_ops.md) |
|
||||||
| `RPC.md` | API endpoint specification | `05_api_reference.md` | [`05_api_reference.md`](05_api_reference.md) |
|
| `RPC.md` | API endpoint specification | [`05_api_reference.md`](05_api_reference.md) |
|
||||||
| `AGENTS.md` | Security guidelines for agents | `08_security_audit.md` | [`08_security_audit.md`](08_security_audit.md) |
|
| `AGENTS.md` | Security guidelines for agents | [`08_security_audit.md`](08_security_audit.md) |
|
||||||
|
|||||||
@@ -12,21 +12,19 @@ User
|
|||||||
| HTTP POST (raw hex transactions)
|
| HTTP POST (raw hex transactions)
|
||||||
v
|
v
|
||||||
+-----------------+
|
+-----------------+
|
||||||
| bal-server | (hyper + tokio, async)
|
| bal-server | (actix-web 4.9.0 + actix-governor, async)
|
||||||
| (src/bin/bal-server.rs) |
|
| (src/bin/bal-server.rs) |
|
||||||
+-----------------+
|
+-----------------+
|
||||||
| SQLite insert (db.rs)
|
| SQLite insert (db.rs, Arc<Mutex<Connection>>)
|
||||||
v
|
v
|
||||||
bal.db
|
bal.db (WAL mode)
|
||||||
| (transactions with status=0, waiting locktime)
|
| (transactions with status=0, waiting locktime)
|
||||||
|
|
|
|
||||||
| ZMQ (hashblock / rawblock)
|
| ZMQ (hashblock)
|
||||||
v
|
v
|
||||||
+-----------------+
|
+-----------------+
|
||||||
+-----------------+
|
| bal-pusher | (tokio, ZMQ + RPC + reqwest)
|
||||||
| bal-pusher | (async, ZMQ + RPC + reqwest)
|
|
||||||
| (src/bin/bal-pusher.rs)
|
| (src/bin/bal-pusher.rs)
|
||||||
+-----------------+
|
|
||||||
+-----------------+
|
+-----------------+
|
||||||
| bitcoincore-rpc
|
| bitcoincore-rpc
|
||||||
| sendrawtransaction
|
| sendrawtransaction
|
||||||
@@ -36,13 +34,13 @@ User
|
|||||||
|
|
||||||
## Data Flow (Transaction Lifecycle)
|
## Data Flow (Transaction Lifecycle)
|
||||||
|
|
||||||
1. **Submission**: A client sends one or more raw hex transactions to the `pushtxs` endpoint.
|
1. **Submission**: A client sends one or more raw hex transactions to the `pushtxs` endpoint (newline-separated).
|
||||||
2. **Validation**: The `bal-server` parses each transaction using `bitcoin::Transaction`. It checks for the fee output, extracts inputs/outputs, and validates the locktime.
|
2. **Validation**: The `bal-server` parses each transaction using `bitcoin::Transaction` via `consensus::deserialize`. It checks for the fee output, extracts inputs/outputs, and validates the locktime.
|
||||||
3. **Storage**: Valid transactions are stored in `tbl_tx` with `status = 0` (waiting). The inputs and outputs are stored in `tbl_inp` and `tbl_out`.
|
3. **Storage**: Valid transactions are stored in `tbl_tx` with `status = 0` (waiting). The inputs and outputs are stored in `tbl_inp` and `tbl_out`. Batch inserts use `UNION ALL SELECT` for efficiency.
|
||||||
4. **Monitoring**: The `bal-pusher` listens to the ZMQ `hashblock` topic. When a new block is detected, it fetches the `mediantime` via `getblockchaininfo` (or via the block's median time in the enhanced version).
|
4. **Monitoring**: The `bal-pusher` listens to the ZMQ `hashblock` topic with a 5-second receive timeout. When a new block is detected, it fetches blockchain info via RPC.
|
||||||
5. **Evaluation**: The pusher queries the database for transactions with `status=0` and compares their locktime to the current blockchain median time.
|
5. **Evaluation**: The pusher queries the database for transactions with `status=0` and compares their locktime against the blockchain's best block height or median time (for timestamp-based locktimes above `LOCKTIME_THRESHOLD`).
|
||||||
6. **Broadcast**: If the locktime is satisfied, the pusher sends the transaction via `sendrawtransaction` and updates the status to `1` (sent) or `2` (failed if the RPC returns an error).
|
6. **Broadcast**: If the locktime is satisfied, the pusher sends the transaction via `sendrawtransaction` and updates the status to `1` (sent) or `2` (failed with error stored in `push_err`).
|
||||||
7. **Statistics**: The pusher periodically sends statistics to a remote server (`welist`) using a signed POST request. The server also collects stats on its own.
|
7. **Statistics**: The pusher periodically calculates statistics and sends them to a remote `welist` server using an Ed25519-signed POST request. The server also exposes stats via the `GET /:network/stats` endpoint if `expose_stats` is enabled.
|
||||||
|
|
||||||
## State Machine
|
## State Machine
|
||||||
|
|
||||||
@@ -57,12 +55,15 @@ User
|
|||||||
The `status` field in `tbl_tx` is an integer:
|
The `status` field in `tbl_tx` is an integer:
|
||||||
- `0`: Waiting for locktime.
|
- `0`: Waiting for locktime.
|
||||||
- `1`: Successfully sent to the network.
|
- `1`: Successfully sent to the network.
|
||||||
- `2`: Failed (e.g., RPC error `-25 bad-txns-inputs-missingorspent`).
|
- `2`: Failed (e.g., RPC error `-25 bad-txns-inputs-missingorspent`). Error details stored in `push_err`.
|
||||||
|
|
||||||
## Error Handling Strategy
|
## Error Handling Strategy
|
||||||
|
|
||||||
The codebase is currently inconsistent with error handling. The `bal-server` uses `unwrap()` on many critical paths (e.g., `sqlite::open`, `Regex::new`, body parsing), which causes panics in the async runtime. The `bal-pusher` also panics on RPC connection failures (`panic!("impossible to get client {}", e)`) which crashes the entire ZMQ loop.
|
The codebase has been hardened with comprehensive error handling:
|
||||||
|
- **`bal-server`**: Uses `actix-web`'s built-in error handling. All `unwrap()`/`expect()` calls have been replaced with safe `match`/`if let` error propagation, returning appropriate HTTP status codes (400, 404, 500).
|
||||||
|
- **`bal-pusher`**: ZMQ `recv` uses `set_rcvtimeo(5000)` with a match/timeout handler. RPC connection failures log errors and retry with a sleep interval instead of panicking. The pusher logs warnings for consecutive ZMQ timeouts (~1 hour threshold).
|
||||||
|
- **`db.rs`**: Database operations use `Result` types. The `open_db` function validates paths before opening. WAL mode is set with retry logic.
|
||||||
|
|
||||||
## Logging and Monitoring
|
## Logging and Monitoring
|
||||||
|
|
||||||
The project uses `env_logger` and `log`. By default, `RUST_LOG=info` is set. The `bal-pusher` sends signed statistics to a remote server. The server exposes a `stats` endpoint (`/<network>/stats`) if `expose_stats` is enabled.
|
The project uses `env_logger` and `log`. By default, `RUST_LOG=info` is set. The `bal-pusher` sends signed statistics to a remote server. The server exposes a `stats` endpoint (`/<network>/stats`) if `expose_stats` is enabled. The actix-web `Logger::default()` middleware logs all HTTP requests/responses.
|
||||||
|
|||||||
@@ -10,8 +10,9 @@
|
|||||||
|
|
||||||
**Location:** `src/lib.rs`
|
**Location:** `src/lib.rs`
|
||||||
|
|
||||||
This is the root of the library crate. It simply exports two public modules:
|
This is the root of the library crate. It exports three public modules:
|
||||||
- `pub mod db;` — the database interface
|
- `pub mod db;` — the database interface
|
||||||
|
- `pub mod validation;` — SSRF URL validation
|
||||||
- `pub mod xpub;` — the extended public key utilities
|
- `pub mod xpub;` — the extended public key utilities
|
||||||
|
|
||||||
It contains no application logic.
|
It contains no application logic.
|
||||||
@@ -26,20 +27,23 @@ This module contains all the logic for interacting with the SQLite database.
|
|||||||
|
|
||||||
### Key Functions
|
### Key Functions
|
||||||
|
|
||||||
- `create_table`: Creates the full database schema if it does not exist. See `src/db.rs` for the `CREATE TABLE` statements.
|
| Function | Signature | Purpose |
|
||||||
- `execute_insert`: A batched, atomic SQL wrapper function that performs multiple insert operations inside a transaction.
|
|---|---|---|
|
||||||
- `insert_tx`: Inserts a transaction into `tbl_tx`.
|
| `open_db` | `pub fn open_db(path: &str) -> Result<Connection, String>` | Validates path (blocks `..` traversal, forbidden system dirs, symlinks), opens SQLite, sets `busy_timeout=5000`, retries WAL mode up to 5 times, sets `synchronous=NORMAL`. |
|
||||||
- `insert_inp`: Inserts an input into `tbl_inp`.
|
| `create_database` | `pub fn create_database(db: &Connection)` | Creates all tables and indexes (idempotent via `IF NOT EXISTS`). |
|
||||||
- `insert_out`: Inserts an output into `tbl_out`.
|
| `check_duplicate_txids` | `pub fn check_duplicate_txids(db: &Connection, txids: &[String]) -> Result<HashSet<String>, Error>` | Batch check which txids already exist. Chunks in groups of 500 for SQLite parameter limit safety. |
|
||||||
- `insert_xpub`: Inserts an xpub into `tbl_xpub`.
|
| `insert_xpub` | `pub fn insert_xpub(db: &Connection, network: &str, xpub: &str)` | INSERT OR IGNORE into tbl_xpub. |
|
||||||
- `insert_address`: Inserts a new derived address into `tbl_address`.
|
| `get_last_used_address_by_ip` | `pub fn get_last_used_address_by_ip(db: &Connection, network: &String, xpub: &String, address: &String) -> Option<String>` | Finds most recent address previously assigned to a remote IP for an xpub. |
|
||||||
- `get_pending_txs`: Queries `tbl_tx` for transactions with `status=0` and valid locktime conditions.
|
| `get_next_address_index` | `pub fn get_next_address_index(db: &Connection, network: &String, xpub: &String) -> (i64, i64)` | Atomically increments `path_idx` and returns `(xpub_id, new_index)` using `RETURNING`. |
|
||||||
- `update_tx_status`: Updates `status` to `1` (sent) or `2` (failed) after a broadcast attempt.
|
| `save_new_address` | `pub fn save_new_address(db: &Connection, xpub: i64, address: &String, path: &String, remote_addr: &String)` | INSERT into tbl_address. |
|
||||||
- `get_stats`: Aggregates statistics for the `tbl_stats` table.
|
| `execute_insert` | `pub fn execute_insert(db: &Connection, sqltxs: String, ptx: Vec<(usize, Value)>, sqlinp: String, pinp: Vec<(usize, Value)>, sqlout: String, pout: Vec<(usize, Value)>) -> Result<(), Error>` | Executes a transaction: BEGIN, insert txs, insert inputs, insert outputs, COMMIT (with ROLLBACK on error). |
|
||||||
- `get_address_by_ip`: A query that joins `tbl_address` with `tbl_xpub` to find addresses by IP for rate limiting or reuse logic.
|
| `get_total_transaction_number` | `pub fn get_total_transaction_number(db: Connection, network: &String) -> Result<i64, Error>` | Counts transactions for a network. |
|
||||||
|
| `get_all_addresses_by_xpub` | `pub fn get_all_addresses_by_xpub(db: &Connection, xpub: &str) -> Result<HashSet<String>, Error>` | Fetches all addresses for an xpub via JOIN on tbl_xpub/tbl_address. Used for O(1) fee validation in the push handler. |
|
||||||
|
|
||||||
### Design Notes
|
### Design Notes
|
||||||
SQL queries are built using `format!` in many places. The `execute_insert` function attempts to batch inserts to reduce transaction overhead, but this is dependent on the SQLite version.
|
- All SQL queries use parameterized statements (`?` placeholders with `bind()`). No string formatting is used for user-controlled values.
|
||||||
|
- The `open_db` function validates paths before opening, rejecting directory traversal, system directories, and symlinks.
|
||||||
|
- WAL mode (`PRAGMA journal_mode=WAL`) is enabled with retry logic for concurrent access safety.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -47,20 +51,61 @@ SQL queries are built using `format!` in many places. The `execute_insert` funct
|
|||||||
|
|
||||||
**Location:** `src/xpub.rs`
|
**Location:** `src/xpub.rs`
|
||||||
|
|
||||||
This module handles the derivation of Bitcoin addresses from extended public keys (xpub/zpub) and the creation of P2WPKH descriptors.
|
This module handles the derivation of Bitcoin addresses from extended public keys (xpub/zpub/ypub) and the creation of P2WPKH descriptors with Bitcoin Core checksums.
|
||||||
|
|
||||||
### Key Functions
|
### Key Functions
|
||||||
|
|
||||||
- `parse_xpub`: Parses a Base58-encoded xpub/zpub string into a `bitcoin::bip32::Xpub`.
|
| Function | Signature | Purpose |
|
||||||
- `derive_address`: Derives a P2WPKH (Bech32) address at a given address index from the xpub. Uses the BIP-84 path (`m/84'/coin_type'/account'/0/index`). Uses `Secp256k1` from the `secp256k1` crate for elliptic curve math.
|
|---|---|---|
|
||||||
- `get_descriptor`: Generates a Bitcoin descriptor string for the xpub (e.g., `wpkh(.../0/*)`), which is useful for wallet integration.
|
| `new_address_from_xpub` | `pub fn new_address_from_xpub(zpub: &str, index: i64, network: Network) -> Result<(String, String), Box<dyn std::error::Error>>` | Derives a P2WPKH (native SegWit) address at path `m/0/{index}` from an xpub. Returns `(address, path)`. |
|
||||||
- `checksum_verify`: Verifies the Base58 checksum of an xpub/zpub string to prevent data corruption during entry.
|
| `get_bitcoincore_descriptor` | `pub fn get_bitcoincore_descriptor(xpub: &str) -> String` | Generates a Bitcoin Core descriptor with checksum (e.g., `wpkh([fingerprint/84h/0h/0h]xpub/0/*)#checksum`). |
|
||||||
|
| `calculate_fingerprint` | `pub fn calculate_fingerprint(tpub: &str) -> Result<String, String>` | Returns the hex fingerprint of an xpub (converts to standard xpub first). |
|
||||||
|
|
||||||
|
### Private Functions
|
||||||
|
- `poly_mod(c, val)` / `calc_checksum(desc)` — Bitcoin Core descriptor checksum calculation.
|
||||||
|
- `convert_xpub(xpub)` — Detects prefix (xpub/ypub/zpub or tpub/vpub/upub) and converts to target format.
|
||||||
|
- `base58check_decode(s)` / `base58check_encode(data)` — Base58Check encoding/decoding.
|
||||||
|
- `convert_to(zpub, prefix)` — Converts xpub between different prefix formats.
|
||||||
|
|
||||||
|
### Supported Prefixes
|
||||||
|
| Prefix | Type | Network |
|
||||||
|
|--------|------|---------|
|
||||||
|
| `xpub` | Legacy P2PKH | Mainnet |
|
||||||
|
| `ypub` | Nested SegWit P2SH-P2WPKH | Mainnet |
|
||||||
|
| `zpub` | Native SegWit P2WPKH | Mainnet |
|
||||||
|
| `tpub` | Legacy P2PKH | Testnet |
|
||||||
|
| `vpub` | Nested SegWit | Testnet |
|
||||||
|
| `upub` | Nested SegWit | Regtest |
|
||||||
|
|
||||||
### Dependencies
|
### Dependencies
|
||||||
- `bitcoin::bip32::Xpub`
|
- `bitcoin::bip32::{DerivationPath, Xpub}`
|
||||||
- `secp256k1::Secp256k1`
|
- `bitcoin::key::Secp256k1`
|
||||||
- `bs58` for Base58 decoding
|
- `bitcoin::{Address, Network, ScriptBuf, WPubkeyHash}`
|
||||||
- `bitcoin::Address::p2wpkh` for address creation
|
- `sha2::{Digest, Sha256}`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## `validation.rs` (SSRF Protection)
|
||||||
|
|
||||||
|
**Location:** `src/validation.rs`
|
||||||
|
|
||||||
|
This module provides URL validation to prevent SSRF attacks via the `welist` stats reporting feature.
|
||||||
|
|
||||||
|
### Key Functions
|
||||||
|
|
||||||
|
| Function | Signature | Purpose |
|
||||||
|
|---|---|---|
|
||||||
|
| `is_valid_welist_url` | `pub fn is_valid_welist_url(url_str: &str) -> bool` | Validates a URL against SSRF: checks scheme is HTTPS, blocks localhost/loopback/private/link-local/multicast/unspecified IPs for both IPv4 and IPv6. |
|
||||||
|
|
||||||
|
### Validation Rules
|
||||||
|
1. URL must be well-formed and parsable.
|
||||||
|
2. Scheme must be `https://` (plain HTTP is rejected).
|
||||||
|
3. Host must not be `localhost`, `127.0.0.1`, `::1`, or any loopback/private/link-local/multicast/unspecified IP address.
|
||||||
|
4. IPv4 private RFC1918 ranges (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) and AWS metadata link-local (169.254.169.254) are blocked.
|
||||||
|
5. IPv6 Unique Local (fc00::/7) and link-local (fe80::/10) are blocked.
|
||||||
|
|
||||||
|
### Inline Tests
|
||||||
|
8 unit tests cover valid domains, invalid schemes, localhost/loopback, private IPs, unspecified/multicast, IPv6 link-local, IPv6 unique local, malformed URLs, and valid public IPs.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -71,29 +116,52 @@ This module handles the derivation of Bitcoin addresses from extended public key
|
|||||||
The main application binary that provides an async HTTP server.
|
The main application binary that provides an async HTTP server.
|
||||||
|
|
||||||
### Architecture
|
### Architecture
|
||||||
- **Runtime:** `tokio::main` with `rt-multi-thread`.
|
- **Runtime:** `actix-web 4.9.0` with `actix-rt` (`#[actix_web::main]`).
|
||||||
- **HTTP Framework:** `hyper` (low-level) + `hyper-util` + `http-body-util`. Each connection is spawned as a new `tokio::task`.
|
- **Rate Limiting:** `actix-governor` middleware with token-bucket algorithm. Uses `RealIpKeyExtractor` to identify clients by real IP behind reverse proxy (via `X-Real-IP` / `X-Forwarded-For` headers).
|
||||||
- **Routing:** Routes are matched using path regex and a simple match on the HTTP method. The router is implemented manually in `main`.
|
- **Response Compression:** `actix_web::middleware::Compress`.
|
||||||
|
- **Request Logging:** `actix_web::middleware::Logger::default()`.
|
||||||
|
- **Shared State:** `Arc<Mutex<Connection>>` for database access, `MyConfig` for configuration.
|
||||||
|
|
||||||
### Key Routes (implemented in source code)
|
### Configuration Structs
|
||||||
- `GET /`, `GET /version`: Returns static strings (name and version).
|
|
||||||
- `GET /.pub_key.pem`: Returns the Ed25519 public key PEM file for signature verification.
|
|
||||||
- `GET /:network/info`: Returns JSON with fee, address, and chain info. Networks: `bitcoin`, `testnet`, `testnet4`, `signet`, `regtest`.
|
|
||||||
- `GET /:network/stats`: Returns per-chain statistics if `expose_stats` is enabled.
|
|
||||||
- `POST /:network/pushtxs`: Accepts one or more raw hex transactions. It validates them, checks the fee output to the `our_address` for that network, and stores the transaction in the database. See `src/bin/bal-server.rs` for the `pushtxs` request body parsing logic.
|
|
||||||
- `POST /searchtx`: Accepts a txid in the request body and returns the transaction details, status, and fee breakdown.
|
|
||||||
|
|
||||||
### Configuration
|
**`MyConfig`** (server configuration):
|
||||||
- The server reads environment variables and/or a config file (`confy`). Default config is hardcoded for `regtest` development.
|
- `regtest`, `signet`, `testnet`, `testnet4`, `mainnet`: `NetConfig` per network
|
||||||
- `db_file`: The path to the SQLite database (e.g., `bal.db`).
|
- `info`, `bind_address`, `bind_port`, `db_file`, `pub_key_path`, `expose_stats`
|
||||||
- `bind_address`: The address to listen on (e.g., `127.0.0.1:3031`).
|
|
||||||
- `expose_stats`: A boolean flag to enable/disable the stats endpoint.
|
**`NetConfig`** (per-network):
|
||||||
|
- `address` (xpub or address), `fixed_fee` (sats), `xpub` (bool), `network` (bitcoin::Network), `name`, `enabled`
|
||||||
|
|
||||||
|
**`ActixConfig`** (server tuning):
|
||||||
|
- `max_body_size`, `timeout_secs`, rate limits (`pushtxs` per sec/burst), `workers`, `max_connections`, `trusted_proxy`
|
||||||
|
|
||||||
|
### Key Routes
|
||||||
|
| Method | Path | Handler | Description |
|
||||||
|
|--------|------|---------|-------------|
|
||||||
|
| GET | `/` | `echo_home` | Returns `cfg.info` string |
|
||||||
|
| GET | `/.pub_key.pem` | `echo_pub_key` | Returns public key PEM file |
|
||||||
|
| GET | `/version` | `echo_version` | Returns VERSION constant (0.3.2) |
|
||||||
|
| GET | `/{network}/info` | `echo_info` | Returns `InfoResponse` JSON. In xpub mode, derives/returns per-IP address |
|
||||||
|
| GET | `/{network}/stats` | `echo_stats` | Returns `Vec<StatsResponse>` JSON (requires `expose_stats=true`) |
|
||||||
|
| POST | `/{network}/pushtxs` | `echo_push` | Accepts newline-separated raw tx hex. 3-phase: parse (no lock), check duplicates (lock), insert (lock) |
|
||||||
|
| POST | `/searchtx` | `echo_search` | Searches by txid (body = 64 hex chars). Returns status, tx, our_address, our_fees, reqid |
|
||||||
|
|
||||||
|
### Handler Details
|
||||||
|
|
||||||
|
**`echo_info`**: If xpub mode is enabled, first checks `get_last_used_address_by_ip` for an existing address for that IP. If none, atomically claims next index via `get_next_address_index`, derives address via `new_address_from_xpub`, and saves it. Two separate DB lock acquisitions (lookup + save) with CPU-bound derivation in between (no lock held).
|
||||||
|
|
||||||
|
**`echo_push`**: Three-phase approach:
|
||||||
|
1. Load all known addresses (for xpub validation) with DB lock, release lock
|
||||||
|
2. Parse all transactions from request body (CPU-bound, no lock) using `parse_request_transactions`
|
||||||
|
3. Batch check duplicates with DB lock, release lock
|
||||||
|
4. Build bulk INSERT statements using `UNION ALL SELECT` and execute in single transaction
|
||||||
|
|
||||||
|
**`parse_request_transactions`**: Splits body by newlines, hex-decodes each line, deserializes via `consensus::deserialize`, computes txid/wtxid/ntxid, checks if any output matches the expected address (or is in known_addresses for xpub mode) with amount >= fixed_fee.
|
||||||
|
|
||||||
### Error Handling
|
### Error Handling
|
||||||
- **WARNING:** This binary uses `unwrap()` and `expect()` on many critical paths (e.g., `sqlite::open`, `Regex::new`, `req.collect()`). A malformed request could crash the async task or even the entire runtime. This is a known vulnerability.
|
All `unwrap()`/`expect()` calls have been replaced with safe `match`/`if let` error propagation, returning appropriate HTTP status codes (400, 404, 500). The server does not panic on untrusted input.
|
||||||
|
|
||||||
### Static Public Key (`/.pub_key.pem`)
|
### Static Public Key (`/.pub_key.pem`)
|
||||||
The server serves a static `public_key.pem` file. The corresponding private key (`privkey.pem`) is used by the pusher to sign statistics before sending them to the `welist` server. This file is located in the project root directory.
|
The server serves a static `public_key.pem` file. The corresponding `privkey.pem` is used by the pusher to sign statistics before sending them to the `welist` server.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -104,26 +172,41 @@ The server serves a static `public_key.pem` file. The corresponding private key
|
|||||||
This is the async daemon that monitors the blockchain and pushes pending transactions.
|
This is the async daemon that monitors the blockchain and pushes pending transactions.
|
||||||
|
|
||||||
### Architecture
|
### Architecture
|
||||||
- **Runtime:** `tokio::main`.
|
- **Runtime:** `tokio::main` with `rt-multi-thread`.
|
||||||
- **ZMQ:** `zmq::Context` with a `SUB` socket that listens to `tcp://127.0.0.1:28332` (or similar per-network port). The topic is `hashblock` (32-byte block hash).
|
- **ZMQ:** `zmq::Context` with a `SUB` socket. Subscribes to all topics. Uses `set_rcvtimeo(5000)` for 5-second receive timeout.
|
||||||
- **RPC:** It uses the `bitcoincore-rpc` client to call `getblockchaininfo` (to get the `mediantime`) and `sendrawtransaction` for each transaction.
|
- **RPC:** `bitcoincore-rpc` client. Tries username/password auth first, falls back to cookie file auth.
|
||||||
- **HTTP Client:** `reqwest` with the `json` feature. It sends a signed JSON POST to the `welist` server.
|
- **HTTP Client:** `reqwest` with `json` and `socks` features. Sends Ed25519-signed JSON POST to the `welist` server.
|
||||||
|
- **IPv6 Preference:** Optional `BAL_PUSHER_PREFER_IPV6` flag pins the HTTP connection to the first IPv6 address.
|
||||||
|
|
||||||
### Key Logic
|
### Key Logic
|
||||||
1. On every `hashblock` message, it calls `main_result()`.
|
1. On startup and every `hashblock` message, it calls `main_result()`.
|
||||||
2. `main_result` creates a `bitcoincore-rpc` client. If it fails, it **panics** (`panic!("impossible to get client {}", e)`), crashing the entire process.
|
2. `main_result` creates a `bitcoincore-rpc` client. If it fails, it logs an error and returns (no panic).
|
||||||
3. It fetches `getblockchaininfo` to get the `mediantime`.
|
3. It fetches `getblockchaininfo` to get `mediantime` and `blocks` height.
|
||||||
4. It queries the database for transactions with `status=0` and `locktime < mediantime`.
|
4. It queries the database for transactions with `status=0` and locktime satisfied (block height < best block, or timestamp < mediantime for timestamps > `LOCKTIME_THRESHOLD`).
|
||||||
5. For each pending transaction, it calls `sendrawtransaction`.
|
5. For each pending transaction, it calls `sendrawtransaction`.
|
||||||
6. If `send_stats` is enabled, it collects statistics, signs them with `privkey.pem`, and sends them to the configured `welist` URL via `reqwest`.
|
6. If `send_stats` is enabled, it collects statistics, signs them with `privkey.pem`, and sends them to the configured `welist` URL via `reqwest`.
|
||||||
7. It updates the database with the new status.
|
7. It updates the database with the new status (`1` = sent, `2` = failed with `push_err`).
|
||||||
|
|
||||||
|
### Statistics Reporting
|
||||||
|
- Statistics are aggregated from the database (total, waiting, sent, failed, profits, unique inputs).
|
||||||
|
- The chain name is validated (alphanumeric, `-`, `_` only).
|
||||||
|
- Stats are inserted into `tbl_stats` with `ON CONFLICT(chain) DO UPDATE`.
|
||||||
|
- The stats payload is signed with Ed25519 and POSTed to `{welist_url}/ping`.
|
||||||
|
- The `WELIST_SERVER_URL` is validated via `is_valid_welist_url()` before sending (can be bypassed with `WELIST_SKIP_URL_VALIDATION=true`).
|
||||||
|
|
||||||
|
### ZMQ Timeout Handling
|
||||||
|
- Uses `set_rcvtimeo(5000)` (5-second timeout).
|
||||||
|
- Logs a warning every ~720 consecutive timeouts (~1 hour of no blocks).
|
||||||
|
- Does not block forever or panic on connection loss.
|
||||||
|
|
||||||
### Configuration
|
### Configuration
|
||||||
- `zmq_endpoint`: The ZMQ endpoint (e.g., `tcp://127.0.0.1:28332`).
|
All configuration is via environment variables (no config files):
|
||||||
- `rpc_url`: The URL of the Bitcoin RPC (e.g., `http://127.0.0.1:18443`).
|
- `BAL_PUSHER_DB_FILE`: Path to SQLite database.
|
||||||
- `rpc_auth`: `user_pass` or `cookie_file`. The cookie path is constructed from the `HOME` environment variable (e.g., `~/.bitcoin/.cookie`).
|
- `BAL_PUSHER_BITCOIN_DIR`: Bitcoin data directory (for cookie file path).
|
||||||
- `send_stats`: A boolean that enables the remote server reporting.
|
- `BAL_PUSHER_SEND_STATS`: Enable/disable remote stats reporting.
|
||||||
- `welist_url`: The URL to POST to.
|
- `BAL_SERVER_URL`: URL of the bal-server for internal communication.
|
||||||
- `ssl_key_path`: The path to the Ed25519 private key (`privkey.pem`) for signing stats.
|
- `SSL_KEY_PATH`: Path to Ed25519 private key for signing stats.
|
||||||
|
- `WELIST_SERVER_URL`: URL to POST stats to (validated against SSRF).
|
||||||
---
|
- `WELIST_SKIP_URL_VALIDATION`: Bypass URL validation (for testing).
|
||||||
|
- `BAL_PUSHER_PREFER_IPV6`: Pin HTTP connection to IPv6 address.
|
||||||
|
- Per-network: `BAL_PUSHER_{NETWORK}_HOST`, `_PORT`, `_DIR_PATH`, `_DB_FIELD`, `_COOKIE_FILE`, `_RPC_USER`, `_RPC_PASSWORD`, `_ZMQ_HASHBLOCK`.
|
||||||
|
|||||||
@@ -8,18 +8,26 @@
|
|||||||
|
|
||||||
## HTTP API (provided by `bal-server`)
|
## HTTP API (provided by `bal-server`)
|
||||||
|
|
||||||
|
### Rate Limiting
|
||||||
|
|
||||||
|
All endpoints are rate-limited via `actix-governor` with a token-bucket algorithm. The rate limit key is the **real client IP address**, extracted from `X-Real-IP` / `X-Forwarded-For` headers when the request comes from a trusted proxy (default `127.0.0.1`, configurable via `BAL_SERVER_TRUSTED_PROXY`). Direct connections (non-proxy) use the TCP peer IP.
|
||||||
|
|
||||||
|
Default: 1 req/s with burst of 3 (configurable via `BAL_SERVER_ACTIX_PUSHTXS_PER_SEC` / `BAL_SERVER_ACTIX_PUSHTXS_BURST`).
|
||||||
|
|
||||||
|
When behind Nginx, ensure `proxy_set_header X-Real-IP $remote_addr` is set so the server can identify individual clients.
|
||||||
|
|
||||||
### `GET /`
|
### `GET /`
|
||||||
- **Description:** Returns a static identification string (e.g., "Will Executor Server").
|
- **Description:** Returns a static identification string (default: "Will Executor Server").
|
||||||
- **Response:** Plain text `200 OK`.
|
- **Response:** Plain text `200 OK`.
|
||||||
|
|
||||||
### `GET /version`
|
### `GET /version`
|
||||||
- **Description:** Returns the Cargo package version (`bal_server` version).
|
- **Description:** Returns the Cargo package version.
|
||||||
- **Response:** `text/plain` (e.g., `0.2.3`).
|
- **Response:** `text/plain` (e.g., `0.3.2`).
|
||||||
|
|
||||||
### `GET /.pub_key.pem`
|
### `GET /.pub_key.pem`
|
||||||
- **Description:** Returns the static Ed25519 public key PEM file for signature verification of remote stats.
|
- **Description:** Returns the static Ed25519 public key PEM file for signature verification of remote stats.
|
||||||
- **Response:** `text/plain` with the PEM file content.
|
- **Response:** `text/plain` with the PEM file content.
|
||||||
- **File:** `public_key.pem` in the project root.
|
- **File:** `public_key.pem` in the project root (path configurable via `BAL_SERVER_PUB_KEY_PATH`).
|
||||||
|
|
||||||
### `GET /:network/info`
|
### `GET /:network/info`
|
||||||
- **Description:** Returns JSON with the server's configuration for that specific network.
|
- **Description:** Returns JSON with the server's configuration for that specific network.
|
||||||
@@ -27,67 +35,62 @@
|
|||||||
- **Response (200 OK):**
|
- **Response (200 OK):**
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"network": "regtest",
|
"address": "bcrt1q...",
|
||||||
"our_address": "bcrt...",
|
"base_fee": 50000,
|
||||||
"fee": 1000,
|
|
||||||
"chain": "regtest",
|
"chain": "regtest",
|
||||||
"version": "0.2.3"
|
"info": "Will Executor Server",
|
||||||
|
"version": "0.3.2"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
- **Error:** `404` if the network is not configured.
|
- In xpub mode, the `address` field contains a freshly derived P2WPKH address unique to the requesting IP.
|
||||||
|
- **Error:** `404` if the network is not configured or unknown.
|
||||||
|
|
||||||
### `GET /:network/stats`
|
### `GET /:network/stats`
|
||||||
- **Description:** Returns statistics for the given network. This endpoint is guarded by the `expose_stats` configuration flag.
|
- **Description:** Returns statistics for the given network. Guarded by the `expose_stats` configuration flag.
|
||||||
- **Response (200 OK):**
|
- **Response (200 OK):** A JSON array of `StatsResponse` objects:
|
||||||
```json
|
```json
|
||||||
{
|
[
|
||||||
"report_date": 1712345678,
|
{
|
||||||
"chain": "regtest",
|
"report_date": "2024-07-20T12:00:00Z",
|
||||||
"total": 42,
|
"chain": "regtest",
|
||||||
"waiting": 10,
|
"totals": 42,
|
||||||
"sent": 30,
|
"waiting": 10,
|
||||||
"failed": 2,
|
"sent": 30,
|
||||||
"waiting_profit": 10000,
|
"failed": 2,
|
||||||
"sent_profit": 30000,
|
"waiting_profit": 10000,
|
||||||
"missed_profit": 5000,
|
"sent_profit": 30000,
|
||||||
"unique_input": 15
|
"missed_profit": 5000,
|
||||||
}
|
"unique_inputs": 15
|
||||||
|
}
|
||||||
|
]
|
||||||
```
|
```
|
||||||
- **Error:** `403` or `400` if stats are not enabled or the network is unknown.
|
- **Error:** `403` or `400` if stats are not enabled or the network is unknown.
|
||||||
|
|
||||||
### `POST /:network/pushtxs`
|
### `POST /:network/pushtxs`
|
||||||
- **Description:** Accepts one or more raw hex Bitcoin transactions. The server deserializes the transaction, validates that the fee is paid to the correct `our_address` for that network, and stores the transaction in the database. It also stores all inputs and outputs.
|
- **Description:** Accepts one or more raw hex Bitcoin transactions (newline-separated). The server deserializes each transaction, validates that the fee is paid to the correct `our_address` for that network, and stores valid transactions in the database.
|
||||||
- **Request Body:**
|
- **Request Body:** Newline-separated raw hex transactions.
|
||||||
- `Content-Type: application/json` (or plain text, depending on the client).
|
|
||||||
- The payload format is typically an array of raw hex strings or a single hex string.
|
|
||||||
```json
|
|
||||||
[
|
|
||||||
"02000000000101...hex..."
|
|
||||||
]
|
|
||||||
```
|
```
|
||||||
- **Response (200 OK):** A JSON array with the result for each transaction.
|
02000000000101...hex...\n
|
||||||
```json
|
02000000000101...hex...\n
|
||||||
[
|
|
||||||
{
|
|
||||||
"txid": "abc123...",
|
|
||||||
"wtxid": "def456...",
|
|
||||||
"status": 0,
|
|
||||||
"locktime": 2100,
|
|
||||||
"our_fees": 1000,
|
|
||||||
"our_address": "bcrt1q..."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
```
|
```
|
||||||
- **Response (400 Bad Request):** If the transaction is invalid, the fee is missing, or the locktime is not acceptable.
|
- **Response (200 OK):** A JSON object with the results for the batch:
|
||||||
- **Response (500 Internal Server):** `Database error`, `Invalid hex`, `Invalid transaction` (may contain a panic trace if an internal `unwrap` is hit).
|
```json
|
||||||
- **Security Note:** If a transaction is not valid or does not pay the required fees, it is not inserted into the database.
|
{
|
||||||
|
"accepted": 2,
|
||||||
|
"rejected": 0,
|
||||||
|
"details": [...]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
- **Response (400 Bad Request):** If all transactions are invalid, the fee is missing, or the locktime is not acceptable.
|
||||||
|
- **Response (413 Payload Too Limited):** If the request body exceeds the configured max size (default 1 MiB).
|
||||||
|
- **Security Note:** Invalid transactions or those not paying the required fees are not inserted into the database.
|
||||||
|
|
||||||
### `POST /searchtx`
|
### `POST /searchtx`
|
||||||
- **Description:** Searches for a transaction by its `txid`. Returns the transaction details, status, raw hex, and fees.
|
- **Description:** Searches for a transaction by its `txid`. The request body must contain exactly 64 hex characters.
|
||||||
- **Request Body:**
|
- **Request Body:**
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"txid": "abc123..."
|
"txid": "abc123def456..."
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
- **Response (200 OK):**
|
- **Response (200 OK):**
|
||||||
@@ -98,42 +101,57 @@
|
|||||||
"tx": "020000000...",
|
"tx": "020000000...",
|
||||||
"our_address": "bcrt1q...",
|
"our_address": "bcrt1q...",
|
||||||
"our_fees": 1000,
|
"our_fees": 1000,
|
||||||
"locktime": 2100,
|
"reqid": "192.168.1.1"
|
||||||
"timestamp": 1712345678
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
- **Response (404):** If the transaction is not found in the database.
|
- **Response (400 Bad Request):** If the txid is not exactly 64 hex characters.
|
||||||
- **Response (400):** If the request body is invalid.
|
- **Response (404 Not Found):** If the transaction is not found in the database.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## ZMQ Messages (consumed by `bal-pusher`)
|
## ZMQ Messages (consumed by `bal-pusher`)
|
||||||
|
|
||||||
### Topic: `hashblock` (Consumed by `bal-pusher`)
|
### Topic: `hashblock`
|
||||||
- **Format:** A multipart ZMQ message. The first frame is the topic name (`hashblock`), the second frame is the 32-byte block hash.
|
- **Format:** A multipart ZMQ message. The first frame is the topic name (`hashblock`), the second frame is the 32-byte block hash.
|
||||||
- **Trigger:** When a new Bitcoin block is found by the local node.
|
- **Trigger:** When a new Bitcoin block is found by the local node.
|
||||||
- **Action:** The pusher fetches `getblockchaininfo` from the RPC, gets the updated `mediantime`, then queries and pushes pending transactions.
|
- **Action:** The pusher fetches `getblockchaininfo` from the RPC, gets the updated `mediantime` and `blocks` height, then queries and pushes pending transactions.
|
||||||
- **Endpoint:** `tcp://127.0.0.1:28332` (or network-specific ports).
|
- **Endpoint:** Per-network (e.g., `tcp://127.0.0.1:28332` for mainnet).
|
||||||
|
- **Timeout:** 5 seconds (`ZMQ_RCVTIMEO`). The pusher logs a warning after ~720 consecutive timeouts (~1 hour).
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Bitcoin Core RPC Usage (used by `bal-pusher`)
|
## Bitcoin Core RPC Usage (used by `bal-pusher`)
|
||||||
|
|
||||||
### `sendrawtransaction` (Both pushers)
|
### `sendrawtransaction`
|
||||||
- **Method:** `sendrawtransaction` (RPC `2`)
|
- **Method:** `sendrawtransaction` (RPC `2`)
|
||||||
- **Parameters:** `hexstring` (the raw hex of the transaction to broadcast).
|
- **Parameters:** `hexstring` (the raw hex of the transaction to broadcast).
|
||||||
- **Description:** Broadcasts the transaction to the Bitcoin network. If the transaction is invalid (e.g., `bad-txns-inputs-missingorspent`), the RPC will return an error with a negative code (e.g., `-25`).
|
- **Description:** Broadcasts the transaction to the Bitcoin network. If the transaction is invalid (e.g., `bad-txns-inputs-missingorspent`), the RPC will return an error with a negative code (e.g., `-25`).
|
||||||
- **Error Handling:** The pusher catches these errors, logs them, and updates the database status to `2` (failed).
|
- **Error Handling:** The pusher catches these errors, logs them, and updates the database status to `2` (failed) with the error in `push_err`.
|
||||||
|
|
||||||
### `getblockchaininfo` (Only `bal-pusher`)
|
### `getblockchaininfo`
|
||||||
- **Method:** `getblockchaininfo` (RPC `1`)
|
- **Method:** `getblockchaininfo` (RPC `1`)
|
||||||
- **Parameters:** None.
|
- **Parameters:** None.
|
||||||
- **Description:** Returns the current blockchain state, including the `mediantime` (the median timestamp of the last 11 blocks). This is used to evaluate the `nLockTime` of pending transactions.
|
- **Description:** Returns the current blockchain state, including `mediantime` (median timestamp of the last 11 blocks) and `blocks` (best block height). Used to evaluate `nLockTime` of pending transactions.
|
||||||
|
|
||||||
|
### `getblock`
|
||||||
### `getblock` (Only used by `bal-pusher` for median time)
|
|
||||||
- **Method:** `getblock` (RPC `1`)
|
- **Method:** `getblock` (RPC `1`)
|
||||||
- **Parameters:** `blockhash`, `verbosity` (set to `1` for JSON with timestamp).
|
- **Parameters:** `blockhash`, `verbosity` (set to `1` for JSON with timestamp).
|
||||||
- **Description:** Fetches the details of a block. It is used as an alternative to `getblockchaininfo` to get the block's `time` if `getblockchaininfo` fails or is insufficient.
|
- **Description:** Fetches block details. Used as an alternative for median time calculation.
|
||||||
|
|
||||||
|
### RPC Authentication
|
||||||
|
Authentication is done via `bitcoincore-rpc` using either:
|
||||||
|
- **`UserPass`**: `BAL_PUSHER_{NETWORK}_RPC_USER` and `BAL_PUSHER_{NETWORK}_RPC_PASSWORD`.
|
||||||
|
- **`CookieFile`**: `$HOME/.bitcoin/{dir_path}.cookie` or custom path via `BAL_PUSHER_{NETWORK}_COOKIE_FILE`.
|
||||||
|
|
||||||
|
The client tries username/password auth first, then falls back to cookie file auth.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## Ed25519 Stats Signing
|
||||||
|
|
||||||
|
The pusher signs the statistics payload before sending it to the `welist` server:
|
||||||
|
1. Collects statistics from the database.
|
||||||
|
2. Serializes the stats as JSON.
|
||||||
|
3. Signs the JSON payload with the Ed25519 private key (`privkey.pem`).
|
||||||
|
4. Sends the payload with the base64-encoded signature in the `X-Signature` header.
|
||||||
|
5. The `welist` server can verify the signature using the public key served at `GET /.pub_key.pem`.
|
||||||
|
|||||||
@@ -8,9 +8,12 @@
|
|||||||
|
|
||||||
## Database Technology
|
## Database Technology
|
||||||
- **Engine:** `sqlite` (Rust `sqlite` crate, version 0.34.0)
|
- **Engine:** `sqlite` (Rust `sqlite` crate, version 0.34.0)
|
||||||
- **File:** `bal.db` (default, configured in environment)
|
- **File:** `bal.db` (default, configurable via `BAL_SERVER_DB_FILE` / `BAL_PUSHER_DB_FILE`)
|
||||||
- **Connection Pooling:** The Rust `sqlite` crate handles connections but does not use a thread pool.
|
- **Connection Management:** Shared `Arc<Mutex<Connection>>` in `bal-server`, single connection in `bal-pusher`.
|
||||||
- **Transactions:** The `execute_insert` function attempts to use atomic transactions for batched inserts, but this is not guaranteed for all operations.
|
- **WAL Mode:** Enabled via `PRAGMA journal_mode=WAL` with retry logic (up to 5 attempts) for concurrent access safety.
|
||||||
|
- **Busy Timeout:** Set to 5000ms via `PRAGMA busy_timeout=5000`.
|
||||||
|
- **Synchronous Mode:** Set to `NORMAL` via `PRAGMA synchronous=NORMAL`.
|
||||||
|
- **Path Validation:** The `open_db` function validates the database path before opening, rejecting directory traversal (`..`), forbidden system directories (`/etc`, `/proc`, `/sys`, `/dev`, `/usr`, `/bin`, `/sbin`, `/lib`, `/opt`), and symlinks.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -19,156 +22,183 @@
|
|||||||
### `tbl_tx` (Transactions)
|
### `tbl_tx` (Transactions)
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
CREATE TABLE tbl_tx (
|
CREATE TABLE IF NOT EXISTS tbl_tx (
|
||||||
txid PRIMARY KEY, -- TEXT: The unique transaction ID (hex string)
|
txid PRIMARY KEY, -- TEXT: The unique transaction ID (hex string)
|
||||||
wtxid, -- TEXT: The witness transaction ID
|
date_creation TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||||
ntxid, -- TEXT: The non-witness transaction ID
|
date_update TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||||
tx, -- TEXT: The full raw serialized transaction (hex)
|
wtxid, -- TEXT: The witness transaction ID
|
||||||
locktime INTEGER, -- INTEGER: The locktime value (block height or timestamp)
|
ntxid, -- TEXT: The non-witness transaction ID
|
||||||
network, -- TEXT: The network name (e.g., 'regtest', 'bitcoin')
|
tx, -- TEXT: The full raw serialized transaction (hex)
|
||||||
network_fees, -- TEXT: The total fees paid by the user (satoshi)
|
locktime INTEGER, -- INTEGER: The locktime value (block height or timestamp)
|
||||||
reqid, -- TEXT: A request ID or client IP for the submitter
|
network, -- TEXT: The network name (e.g., 'regtest', 'bitcoin')
|
||||||
our_fees, -- TEXT: The fees paid to us (the operator) (satoshi)
|
network_fees, -- TEXT: The total fees paid by the user (satoshi)
|
||||||
our_address, -- TEXT: The address the operator fee is paid to
|
reqid, -- TEXT: A request ID or client IP for the submitter
|
||||||
status INTEGER DEFAULT 0, -- INTEGER: 0 = waiting, 1 = sent, 2 = failed
|
our_fees, -- TEXT: The fees paid to us (the operator) (satoshi)
|
||||||
push_err TEXT -- TEXT: The error message if the RPC broadcast failed
|
our_address, -- TEXT: The address the operator fee is paid to
|
||||||
|
status INTEGER DEFAULT 0, -- INTEGER: 0 = waiting, 1 = sent, 2 = failed
|
||||||
|
push_err TEXT -- TEXT: The error message if the RPC broadcast failed
|
||||||
);
|
);
|
||||||
|
ALTER TABLE tbl_tx ADD COLUMN push_err TEXT;
|
||||||
```
|
```
|
||||||
- **Indexes:** The `txid` is the primary key, so it is automatically indexed.
|
- **Indexes:** The `txid` is the primary key, so it is automatically indexed.
|
||||||
- **Notes:** `locktime` is stored as an integer. It is compared against the `mediantime` or `block_height` from the blockchain to evaluate when a transaction is ready to send. The `status` column is the core of the transaction lifecycle state machine. `our_fees` and `our_address` are used to validate the transaction and ensure the correct fee is included before accepting it.
|
- **Notes:** `date_creation` and `date_update` track when the transaction was inserted and last modified. `locktime` is compared against the blockchain's best block height or `mediantime` (for timestamps above `LOCKTIME_THRESHOLD`). The `status` column is the core of the transaction lifecycle state machine. `push_err` stores the RPC error message when status=2.
|
||||||
|
|
||||||
### `tbl_inp` (Transaction Inputs)
|
### `tbl_inp` (Transaction Inputs)
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
CREATE TABLE tbl_inp (
|
CREATE TABLE IF NOT EXISTS tbl_inp (
|
||||||
id, -- INTEGER: Auto-increment ID
|
id, -- INTEGER: Auto-increment ID
|
||||||
txid, -- TEXT: The transaction ID of the transaction being submitted
|
txid, -- TEXT: The transaction ID of the transaction being submitted
|
||||||
in_txid, -- TEXT: The previous transaction ID (output being spent)
|
in_txid, -- TEXT: The previous transaction ID (output being spent)
|
||||||
in_vout -- INTEGER: The previous output index
|
in_vout -- INTEGER: The previous output index
|
||||||
);
|
);
|
||||||
CREATE UNIQUE INDEX ON tbl_inp(txid, in_txid, in_vout);
|
CREATE UNIQUE INDEX ON tbl_inp(txid, in_txid, in_vout);
|
||||||
```
|
```
|
||||||
- **Purpose:** Tracks all inputs of the submitted transactions. This allows the database to identify double-spends and ensure the inputs are valid and available.
|
- **Purpose:** Tracks all inputs of submitted transactions. Enables identification of double-spends.
|
||||||
- **Constraints:** A unique index prevents duplicate entries for the same input in the same transaction.
|
- **Constraints:** A unique index prevents duplicate entries for the same input in the same transaction.
|
||||||
- **Relationships:** `in_txid` and `in_vout` refer to outputs from previous transactions in the Bitcoin blockchain. The `txid` column refers to the transaction being submitted (the one in `tbl_tx`).
|
|
||||||
|
|
||||||
### `tbl_out` (Transaction Outputs)
|
### `tbl_out` (Transaction Outputs)
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
CREATE TABLE tbl_out (
|
CREATE TABLE IF NOT EXISTS tbl_out (
|
||||||
id, -- INTEGER: Auto-increment ID
|
id, -- INTEGER: Auto-increment ID
|
||||||
txid, -- TEXT: The transaction ID of the transaction being submitted
|
txid, -- TEXT: The transaction ID of the transaction being submitted
|
||||||
script_pubkey, -- TEXT: The hex scriptPubKey of this output
|
script_pubkey, -- TEXT: The hex scriptPubKey of this output
|
||||||
amount, -- TEXT: The amount in this output (satoshi)
|
amount, -- TEXT: The amount in this output (satoshi)
|
||||||
vout -- INTEGER: The output index (0-based) in this transaction
|
vout -- INTEGER: The output index (0-based) in this transaction
|
||||||
);
|
);
|
||||||
CREATE UNIQUE INDEX ON tbl_out(txid, script_pubkey, amount, vout);
|
CREATE UNIQUE INDEX ON tbl_out(txid, script_pubkey, amount, vout);
|
||||||
```
|
```
|
||||||
- **Purpose:** Tracks all outputs of the submitted transactions. The server searches for the `script_pubkey` matching the `our_address` for the network to determine if the correct fee is included.
|
- **Purpose:** Tracks all outputs of submitted transactions. The server searches for the `script_pubkey` matching the `our_address` for the network to verify fee payment.
|
||||||
- **Constraints:** A unique index prevents duplicate entries for the same output in the same transaction.
|
- **Constraints:** A unique index prevents duplicate entries for the same output in the same transaction.
|
||||||
- **Relationships:** `txid` refers to the transaction being submitted. The `script_pubkey` is matched against the known addresses for each network to verify the fee payment.
|
|
||||||
|
|
||||||
### `tbl_xpub` (Extended Public Keys)
|
### `tbl_xpub` (Extended Public Keys)
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
CREATE TABLE tbl_xpub (
|
CREATE TABLE IF NOT EXISTS tbl_xpub (
|
||||||
id INTEGER PRIMARY KEY, -- INTEGER: Auto-increment ID
|
id INTEGER PRIMARY KEY, -- INTEGER: Auto-increment ID
|
||||||
network TEXT, -- TEXT: The network name (e.g., 'regtest', 'bitcoin')
|
network TEXT, -- TEXT: The network name (e.g., 'regtest', 'bitcoin')
|
||||||
xpub TEXT, -- TEXT: The extended public key (xpub or zpub)
|
xpub TEXT, -- TEXT: The extended public key (xpub, zpub, ypub, etc.)
|
||||||
date_create TIMESTAMP DEFAULT CURRENT_TIMESTAMP, -- TEXT: The date the xpub was added
|
date_create TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||||
path_idx INTEGER DEFAULT -1 -- INTEGER: The next address index to derive for this xpub
|
path_idx INTEGER DEFAULT -1 -- INTEGER: The next address index to derive for this xpub
|
||||||
);
|
);
|
||||||
CREATE UNIQUE INDEX idx_xpub ON tbl_xpub (network, xpub);
|
CREATE UNIQUE INDEX idx_xpub ON tbl_xpub (network, xpub);
|
||||||
```
|
```
|
||||||
- **Purpose:** Stores the master xpub/zpub keys for each network. When the server receives a transaction, it uses these to derive new receiving addresses (if applicable) or to verify the `our_address`.
|
- **Purpose:** Stores the master xpub/zpub/ypub keys for each network. When the server receives a transaction in xpub mode, it derives new receiving addresses from these keys.
|
||||||
- **Relationships:** `tbl_xpub` is linked to `tbl_address` via `xpub` (the ID). The `path_idx` tracks which child index is the next unused one for the wallet's derivation path.
|
- **Relationships:** `tbl_xpub` is linked to `tbl_address` via `id`. The `path_idx` tracks which child index is the next unused one for the wallet's derivation path.
|
||||||
|
|
||||||
### `tbl_address` (Derived Addresses)
|
### `tbl_address` (Derived Addresses)
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
CREATE TABLE tbl_address (
|
CREATE TABLE IF NOT EXISTS tbl_address (
|
||||||
address TEXT PRIMARY KEY, -- TEXT: The Bech32 P2WPKH address (e.g., 'bcrt1q...')
|
address TEXT PRIMARY_KEY, -- TEXT: The Bech32 P2WPKH address (e.g., 'bcrt1q...')
|
||||||
path TEXT NOT NULL, -- TEXT: The derivation path used to create this address (e.g., 'm/84'/1'/0'/0/0')
|
path TEXT NOT NULL, -- TEXT: The derivation path (e.g., 'm/0/0')
|
||||||
date_create TIMESTAMP DEFAULT CURRENT_TIMESTAMP, -- TEXT: The date the address was generated
|
date_create TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||||
xpub INTEGER, -- INTEGER: The ID of the xpub in `tbl_xpub` that owns this address
|
xpub INTEGER, -- INTEGER: The ID of the xpub in `tbl_xpub`
|
||||||
remote_address TEXT -- TEXT: IP or client identifier that requested this address (if applicable)
|
remote_address TEXT -- TEXT: IP or client identifier that requested this address
|
||||||
);
|
);
|
||||||
```
|
```
|
||||||
- **Purpose:** Stores all generated addresses. The `our_address` for each network is derived from a specific xpub path. The server can also generate new addresses on demand for clients.
|
- **Purpose:** Stores all generated addresses. In xpub mode, addresses are derived on-demand per requesting IP.
|
||||||
- **Relationships:** `xpub` (FK) links to `tbl_xpub.id`. The `address` is the primary key because it is unique by design. `remote_address` is used for rate-limiting or identifying address ownership in logs.
|
- **Relationships:** `xpub` (FK) links to `tbl_xpub.id`. `remote_address` is used for rate-limiting and preventing address reuse per IP.
|
||||||
|
|
||||||
### `tbl_stats` (Per-Network Statistics)
|
### `tbl_stats` (Per-Network Statistics)
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
CREATE TABLE tbl_stats (
|
CREATE TABLE IF NOT EXISTS tbl_stats (
|
||||||
report_date INTEGER, -- INTEGER: The Unix timestamp of the report
|
report_date TEXT, -- TEXT: The ISO timestamp of the report
|
||||||
chain TEXT PRIMARY KEY, -- TEXT: The network name (e.g., 'regtest', 'bitcoin')
|
chain TEXT, -- TEXT: The network name (e.g., 'regtest', 'bitcoin')
|
||||||
totals INTEGER, -- INTEGER: Total number of transactions submitted
|
totals INTEGER, -- INTEGER: Total number of transactions submitted
|
||||||
waiting INTEGER, -- INTEGER: Transactions currently waiting (status=0)
|
waiting INTEGER, -- INTEGER: Transactions currently waiting (status=0)
|
||||||
sent INTEGER, -- INTEGER: Transactions successfully sent (status=1)
|
sent INTEGER, -- INTEGER: Transactions successfully sent (status=1)
|
||||||
failed INTEGER, -- INTEGER: Transactions that failed to broadcast (status=2)
|
failed INTEGER, -- INTEGER: Transactions that failed to broadcast (status=2)
|
||||||
waiting_profit INTEGER, -- INTEGER: Total fees for waiting transactions (satoshi)
|
waiting_profit INTEGER, -- INTEGER: Total fees for waiting transactions (satoshi)
|
||||||
sent_profit INTEGER, -- INTEGER: Total fees for sent transactions (satoshi)
|
sent_profit INTEGER, -- INTEGER: Total fees for sent transactions (satoshi)
|
||||||
missed_profit INTEGER, -- INTEGER: Total fees for transactions that expired or failed (satoshi)
|
missed_profit INTEGER, -- INTEGER: Total fees for failed/expired transactions (satoshi)
|
||||||
unique_inputs INTEGER -- INTEGER: The number of unique inputs (for deduplication analysis)
|
unique_inputs INTEGER -- INTEGER: The number of unique inputs (for deduplication analysis)
|
||||||
);
|
);
|
||||||
|
CREATE UNIQUE INDEX IF NOT EXISTS idx_stats_chain ON tbl_stats(chain);
|
||||||
```
|
```
|
||||||
- **Purpose:** Stores aggregate statistics for each network. The pusher sends this data to a remote `welist` server. The server also reads from it for the `stats` endpoint if `expose_stats` is enabled.
|
- **Purpose:** Stores aggregate statistics for each network. The pusher calculates and upserts stats (`ON CONFLICT(chain) DO UPDATE`). The server reads from it for the `stats` endpoint if `expose_stats` is enabled.
|
||||||
- **Relationships:** `chain` is the primary key. The data is updated by the `bal-pusher` binary.
|
- **Relationships:** `chain` has a unique index. Data is updated by `bal-pusher` via `calculate_stats`.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Data Query Strategy
|
## Data Query Strategy
|
||||||
|
|
||||||
### Key Queries (from `db.rs` and `bal-pusher.rs`)
|
### Key Queries
|
||||||
|
|
||||||
- **Get Pending Transactions (by status and locktime):**
|
- **Get Pending Transactions (by status and locktime):**
|
||||||
```sql
|
```sql
|
||||||
SELECT
|
SELECT * FROM tbl_tx
|
||||||
txid, tx, wtxid, ntxid, locktime, status,
|
WHERE network = :network
|
||||||
our_address, our_fees, network_fees
|
AND status = :status
|
||||||
FROM
|
AND (locktime < :bestblock_height
|
||||||
tbl_tx
|
OR locktime > :locktime_threshold AND locktime < :bestblock_time);
|
||||||
WHERE
|
|
||||||
network = ?
|
|
||||||
AND status = 0
|
|
||||||
AND locktime < ?;
|
|
||||||
```
|
```
|
||||||
Used by the `bal-pusher` daemon to find transactions that are ready to broadcast. The `?` placeholders are bound at runtime. `locktime` is compared with the `mediantime` or block height from the ZMQ `new block` event.
|
Used by the `bal-pusher` to find transactions ready to broadcast. The `locktime_threshold` constant distinguishes block heights from timestamps.
|
||||||
|
|
||||||
- **Insert Transaction:**
|
- **Insert Transaction (batched):**
|
||||||
```sql
|
```sql
|
||||||
INSERT INTO tbl_tx (txid, wtxid, ntxid, tx, locktime, network, network_fees, reqid, our_fees, our_address)
|
INSERT INTO tbl_tx (txid, wtxid, ntxid, tx, locktime, network, network_fees, reqid, our_fees, our_address)
|
||||||
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?);
|
UNION ALL SELECT ?, ?, ?, ?, ?, ?, ?, ?, ?, ?
|
||||||
|
UNION ALL SELECT ?, ?, ?, ?, ?, ?, ?, ?, ?, ?
|
||||||
|
-- ... more rows
|
||||||
```
|
```
|
||||||
Used by the `bal-server` when accepting a new valid transaction.
|
Used by `bal-server` for efficient bulk inserts.
|
||||||
|
|
||||||
- **Update Status:**
|
- **Update Status:**
|
||||||
```sql
|
```sql
|
||||||
UPDATE tbl_tx SET status = ? WHERE txid = ?;
|
UPDATE tbl_tx SET status = ? WHERE txid = ?;
|
||||||
```
|
```
|
||||||
Used by the pusher after a successful or failed broadcast attempt. The status is set to `1` (sent) and `2` (failed).
|
Used by the pusher after broadcast. Status `1` = sent, `2` = failed.
|
||||||
**WARNING:** The `bal-pusher` also uses a raw `WHERE txid IN ('...')` format for batch updates. These string formats have **SQL injection risk** because the `txid` strings are concatenated into the raw SQL string without proper parameterization.
|
```sql
|
||||||
|
UPDATE tbl_tx SET status = 2, push_err = ? WHERE txid = ?;
|
||||||
|
```
|
||||||
|
For failed broadcasts, the error message is stored.
|
||||||
|
|
||||||
|
- **Check Duplicate Txids:**
|
||||||
|
```sql
|
||||||
|
SELECT txid FROM tbl_tx WHERE txid IN (?, ?, ?, ...);
|
||||||
|
```
|
||||||
|
Used by `bal-server` to batch-check duplicates before inserting. Chunks in groups of 500 for SQLite parameter limit safety.
|
||||||
|
|
||||||
- **Search Transaction:**
|
- **Search Transaction:**
|
||||||
```sql
|
```sql
|
||||||
SELECT * FROM tbl_tx WHERE txid = ?;
|
SELECT * FROM tbl_tx WHERE txid = ?;
|
||||||
```
|
```
|
||||||
Used by the `searchtx` endpoint.
|
Used by the `searchtx` endpoint.
|
||||||
- **Get Address for Rate Limiting:**
|
|
||||||
|
- **Get All Addresses by XPub:**
|
||||||
```sql
|
```sql
|
||||||
SELECT a.address, x.xpub
|
SELECT a.address
|
||||||
FROM tbl_address a
|
FROM tbl_address a
|
||||||
JOIN tbl_xpub x ON a.xpub = x.id
|
JOIN tbl_xpub x ON a.xpub = x.id
|
||||||
WHERE a.remote_address = ?;
|
WHERE x.xpub = ?;
|
||||||
```
|
```
|
||||||
Used to check if an IP or client address already has a generated address. This is part of the address reuse logic to prevent users from requesting too many addresses or using the same IP to bypass fees.
|
Used to load all known addresses for an xpub in a single query, enabling O(1) fee validation in the push handler.
|
||||||
|
|
||||||
|
- **Get Last Used Address by IP:**
|
||||||
|
```sql
|
||||||
|
SELECT address FROM tbl_address
|
||||||
|
WHERE remote_address = ? AND xpub = ?
|
||||||
|
ORDER BY date_create DESC LIMIT 1;
|
||||||
|
```
|
||||||
|
Used to check if an IP already has a generated address (address reuse prevention).
|
||||||
|
|
||||||
|
- **Get Next Address Index:**
|
||||||
|
```sql
|
||||||
|
UPDATE tbl_xpub SET path_idx = path_idx + 1
|
||||||
|
WHERE network = ? AND xpub = ?
|
||||||
|
RETURNING id, path_idx;
|
||||||
|
```
|
||||||
|
Atomically increments the derivation index and returns the new value.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Data Lifecycle
|
## Data Lifecycle
|
||||||
- **Creation:** Transactions are created when a user submits a raw hex tx via the `POST /pushtxs` endpoint. The address is inserted when an xpub is configured.
|
- **Creation:** Transactions are created when a user submits raw hex tx via `POST /{network}/pushtxs`. Addresses are derived on-demand in xpub mode.
|
||||||
- **Waiting:** Transactions are in `status=0` and are queried by the pusher every new block.
|
- **Waiting:** Transactions are in `status=0` and are queried by the pusher every new block.
|
||||||
- **Broadcast:** Transactions are pushed to the network via `sendrawtransaction`. If successful, the status becomes `1`. If the RPC returns an error (e.g., `-25`), the status becomes `2` and the error string is stored in `push_err`.
|
- **Broadcast:** Transactions are pushed via `sendrawtransaction`. If successful, status becomes `1`. If the RPC returns an error, status becomes `2` and the error is stored in `push_err`.
|
||||||
- **Retention:** There is no explicit cleanup mechanism for old records. The `valid_txs` and `invalid_txs` files contain logs of past transaction pushes, but the database itself may grow indefinitely. For a production system, a periodic vacuum or purge of old `status=1` transactions might be required.
|
- **Statistics:** The pusher aggregates stats from the database and upserts into `tbl_stats` with `ON CONFLICT(chain) DO UPDATE`.
|
||||||
- **Backup:** The database is a single SQLite file (`bal.db`). It can be copied directly using `cp` or `rsync` (see `scripts/download_bal_db.sh`). There is no WAL mode or online backup mechanism implemented.
|
- **Retention:** There is no explicit cleanup mechanism for old records. For production, a periodic vacuum or purge of old `status=1` transactions may be required.
|
||||||
|
- **Backup:** The database is a single SQLite file. It can be copied directly using `cp` or `rsync`. WAL mode ensures consistency during copies.
|
||||||
|
|||||||
@@ -1,58 +1,144 @@
|
|||||||
# Deployment and Operations
|
# Deployment and Operations
|
||||||
|
|
||||||
## Quick Reference
|
## Quick Reference
|
||||||
- **What this file contains:** environment variables, systemd service files, deployment scripts, nginx/Tor configuration, and installation procedures.
|
- **What this file contains:** environment variables, systemd service files, deployment scripts, nginx/Tor configuration, Docker support, and installation procedures.
|
||||||
- **See also:** [01_project_overview.md](01_project_overview.md), [03_architecture_and_data_flow.md](03_architecture_and_data_flow.md), [05_api_reference.md](05_api_reference.md), [08_security_audit.md](08_security_audit.md)
|
- **See also:** [01_project_overview.md](01_project_overview.md), [03_architecture_and_data_flow.md](03_architecture_and_data_flow.md), [05_api_reference.md](05_api_reference.md), [08_security_audit.md](08_security_audit.md)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Environment Variables
|
## Environment Variables
|
||||||
|
|
||||||
### `bal-server` (`bal-server.env`)
|
### `bal-server` (all prefixed `BAL_SERVER_`)
|
||||||
The `bal-server.env` file is a production environment file that sets the configuration for the `bal-server` binary. The `bal-server.sh` script sources it before executing `cargo run --bin=bal-server`.
|
|
||||||
|
|
||||||
```env
|
#### Core Settings
|
||||||
RUST_LOG=info
|
|
||||||
BAL_DB_FILE=/var/bal/bal.db
|
| Variable | Default | Description |
|
||||||
BAL_BIND_ADDRESS=0.0.0.0:3031
|
|----------|---------|-------------|
|
||||||
BAL_EXPOSE_STATS=true
|
| `BAL_SERVER_DB_FILE` | `"bal.db"` | Path to the SQLite database file |
|
||||||
BAL_REGTEST_XPUB=tpub... (example for regtest testing)
|
| `BAL_SERVER_BIND_ADDRESS` | `"127.0.0.1"` | TCP address to bind to (**never use `0.0.0.0` in production**) |
|
||||||
BAL_PUB_KEY_PATH=public_key.pem
|
| `BAL_SERVER_BIND_PORT` | `9137` | TCP port to listen on |
|
||||||
|
| `BAL_SERVER_EXPOSE_STATS` | `false` | Enable/disable the `GET /:network/stats` endpoint |
|
||||||
|
| `BAL_SERVER_PUB_KEY_PATH` | `"public_key.pem"` | Path to the Ed25519 public key PEM file |
|
||||||
|
| `BAL_SERVER_INFO` | `"Will Executor Server"` | String returned by `GET /` |
|
||||||
|
|
||||||
|
#### Per-Network Settings
|
||||||
|
|
||||||
|
For each network (`regtest`, `testnet`, `testnet4`, `signet`, `bitcoin`):
|
||||||
|
|
||||||
|
| Variable | Default | Description |
|
||||||
|
|----------|---------|-------------|
|
||||||
|
| `BAL_SERVER_{NETWORK}_ADDRESS` | (empty) | The xpub/zpub/ypub or fixed address for fee collection |
|
||||||
|
| `BAL_SERVER_{NETWORK}_FIXED_FEE` | `50000` | Minimum fee in satoshis required for transaction acceptance |
|
||||||
|
|
||||||
|
Example: `BAL_SERVER_REGTEST_ADDRESS=tpub...`, `BAL_SERVER_BITCOIN_FIXED_FEE=50000`.
|
||||||
|
|
||||||
|
#### Actix-Web Tuning
|
||||||
|
|
||||||
|
| Variable | Default | Description |
|
||||||
|
|----------|---------|-------------|
|
||||||
|
| `BAL_SERVER_ACTIX_MAX_BODY_SIZE` | `1048576` (1 MiB) | Maximum HTTP request body size |
|
||||||
|
| `BAL_SERVER_ACTIX_TIMEOUT_SECS` | `5` | Request timeout in seconds |
|
||||||
|
| `BAL_SERVER_ACTIX_WORKERS` | `4` | Number of actix-web worker threads |
|
||||||
|
| `BAL_SERVER_ACTIX_MAX_CONNECTIONS` | `100` | Maximum concurrent connections |
|
||||||
|
| `BAL_SERVER_TRUSTED_PROXY` | `127.0.0.1` | Trusted reverse proxy IP for rate-limiting client identification |
|
||||||
|
| `BAL_SERVER_ACTIX_PUSHTXS_PER_SEC` | `1` | Rate limit: requests per second (applied to all endpoints) |
|
||||||
|
| `BAL_SERVER_ACTIX_PUSHTXS_BURST` | `3` | Rate limit: burst size (applied to all endpoints) |
|
||||||
|
| `BAL_SERVER_ACTIX_SEARCHTX_PER_SEC` | `5` | Rate limit: searchtx requests per second |
|
||||||
|
| `BAL_SERVER_ACTIX_SEARCHTX_BURST` | `10` | Rate limit: searchtx burst size |
|
||||||
|
| `BAL_SERVER_ACTIX_INFO_PER_SEC` | `20` | Rate limit: info requests per second |
|
||||||
|
| `BAL_SERVER_ACTIX_INFO_BURST` | `30` | Rate limit: info burst size |
|
||||||
|
| `BAL_SERVER_ACTIX_DEFAULT_PER_SEC` | `50` | Rate limit: default requests per second |
|
||||||
|
| `BAL_SERVER_ACTIX_DEFAULT_BURST` | `100` | Rate limit: default burst size |
|
||||||
|
|
||||||
|
### `bal-pusher` (prefixed `BAL_PUSHER_`)
|
||||||
|
|
||||||
|
#### Core Settings
|
||||||
|
|
||||||
|
| Variable | Default | Description |
|
||||||
|
|----------|---------|-------------|
|
||||||
|
| `BAL_PUSHER_DB_FILE` | `"bal.db"` | Path to the SQLite database file |
|
||||||
|
| `BAL_PUSHER_BITCOIN_DIR` | `""` | Bitcoin data directory (for cookie file path resolution) |
|
||||||
|
| `BAL_PUSHER_SEND_STATS` | `false` | Enable/disable remote stats reporting |
|
||||||
|
| `BAL_SERVER_URL` | `"http://localhost/"` | URL of the bal-server for internal communication |
|
||||||
|
| `SSL_KEY_PATH` | `"privkey.pem"` | Path to Ed25519 private key for signing stats |
|
||||||
|
| `BAL_PUSHER_PREFER_IPV6` | `false` | Pin HTTP connection to first IPv6 address (for broken IPv4 routes) |
|
||||||
|
| `WELIST_SERVER_URL` | `"https://welist.bitcoin-after.life"` | URL to POST signed stats to (validated against SSRF) |
|
||||||
|
| `WELIST_SKIP_URL_VALIDATION` | `false` | Bypass SSRF URL validation (for testing only) |
|
||||||
|
|
||||||
|
#### Per-Network Settings
|
||||||
|
|
||||||
|
For each network (`regtest`, `testnet`, `testnet4`, `signet`, `bitcoin`):
|
||||||
|
|
||||||
|
| Variable | Default (regtest) | Description |
|
||||||
|
|----------|-------------------|-------------|
|
||||||
|
| `BAL_PUSHER_{NETWORK}_HOST` | `"127.0.0.1"` | Bitcoin Core RPC host |
|
||||||
|
| `BAL_PUSHER_{NETWORK}_PORT` | `18443` | Bitcoin Core RPC port |
|
||||||
|
| `BAL_PUSHER_{NETWORK}_DIR_PATH` | `".bitcoin"` | Relative directory under `$HOME` for cookie file |
|
||||||
|
| `BAL_PUSHER_{NETWORK}_DB_FIELD` | (empty) | Database field name for this network |
|
||||||
|
| `BAL_PUSHER_{NETWORK}_COOKIE_FILE` | (empty) | Absolute path to cookie file (overrides `DIR_PATH`) |
|
||||||
|
| `BAL_PUSHER_{NETWORK}_RPC_USER` | (empty) | RPC username (if using user/pass auth) |
|
||||||
|
| `BAL_PUSHER_{NETWORK}_RPC_PASSWORD` | (empty) | RPC password (if using user/pass auth) |
|
||||||
|
| `BAL_PUSHER_{NETWORK}_ZMQ_HASHBLOCK` | `"tcp://127.0.0.1:21332"` | ZMQ hashblock endpoint |
|
||||||
|
|
||||||
|
Default ports per network:
|
||||||
|
|
||||||
|
| Network | RPC Port | ZMQ Port |
|
||||||
|
|---------|----------|----------|
|
||||||
|
| bitcoin | 8332 | 28332 |
|
||||||
|
| regtest | 18443 | 21332 |
|
||||||
|
| testnet | 18332 | 23332 |
|
||||||
|
| testnet4 | 48332 | 24332 |
|
||||||
|
| signet | 18332 | 22332 |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Docker
|
||||||
|
|
||||||
|
The project provides two Dockerfiles:
|
||||||
|
|
||||||
|
### `Dockerfile.release` — Download pre-built release (recommended for production)
|
||||||
|
|
||||||
|
Downloads the latest release from the Gitea server. No Rust toolchain needed. Fast builds.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Latest release
|
||||||
|
docker build -f Dockerfile.release -t bal-server .
|
||||||
|
|
||||||
|
# Specific version
|
||||||
|
docker build -f Dockerfile.release --build-arg BAL_VERSION=v0.3.2 -t bal-server:0.3.2 .
|
||||||
```
|
```
|
||||||
- `RUST_LOG`: Log level (e.g., `info`, `debug`, `error`). The `env_logger` crate uses this.
|
|
||||||
- `BAL_DB_FILE`: Path to the `sqlite` database file. If not specified, it defaults to `bal.db` in the working directory.
|
|
||||||
- `BAL_BIND_ADDRESS`: The TCP address and port to listen on. For example, `0.0.0.0:3031` means it will listen on any interface, port `3031`. For local development, you may want `127.0.0.1:3031`.
|
|
||||||
- `BAL_EXPOSE_STATS`: Boolean flag (`true` or `false`) to enable the `GET /:network/stats` endpoint. Set to `false` if you do not want to expose statistics to the public internet.
|
|
||||||
- `BAL_NETWORK_XPUB`: The `XPUB` or `ZPUB` for each network. For example, `BAL_REGTEST_XPUB`, `BAL_BITCOIN_XPUB`, etc. These are used to derive the receiving and fee collection addresses.
|
|
||||||
- `BAL_PUB_KEY_PATH`: The file path to the `public_key.pem` file that is served via the `GET /.pub_key.pem` endpoint. This is used for signature verification by the `welist` server or other clients.
|
|
||||||
|
|
||||||
### `bal-pusher` (`bal-pusher.env`)
|
- Fetches `.tar.gz` from `https://bitcoin-after.life/gitea/api/v1/repos/bitcoinafterlife/bal-server/releases/latest`.
|
||||||
The `bal-pusher.env` file is used for the `bal-pusher` binary. It contains sensitive information and is sourced by the `bal-pusher.sh` script.
|
- Verifies SHA-256 checksum if available.
|
||||||
|
- Single-stage image (`debian:bookworm-slim`), minimal size.
|
||||||
|
- `BAL_VERSION` build arg: set to a tag (e.g., `v0.3.2`) to pin a specific release.
|
||||||
|
|
||||||
```env
|
### `Dockerfile` — Build from source
|
||||||
ZMQ_ENDPOINT=tcp://127.0.0.1:21332
|
|
||||||
BAL_SERVER_URL=http://127.0.0.1:3031
|
Multi-stage build with the Rust toolchain. Use for development or custom builds.
|
||||||
BAL_PUSHER_RPC_URL=http://127.0.0.1:18443
|
|
||||||
BAL_PUSHER_RPC_COOKIE_PATH=/home/bal/.bitcoin/.cookie
|
- **Builder stage:** `rust:1.95-bookworm` with full build. Each binary is compiled with only its required features (`--no-default-features --features server` / `--features pusher`).
|
||||||
BAL_SSL_KEY_PATH=private_key.pem
|
- **Runtime stage:** `debian:bookworm-slim` with minimal runtime.
|
||||||
SEND_STATS=true
|
- **User:** Non-root `bal` user (uid 1000).
|
||||||
WELIST_URL=https://welist.example.com/api/stats
|
- **PID 1:** `tini` for proper signal handling.
|
||||||
|
- **Healthcheck:** `curl -f http://localhost:9137/ || exit 1`.
|
||||||
|
|
||||||
|
### Run (both Dockerfiles)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run -d \
|
||||||
|
--name bal-server \
|
||||||
|
-v /var/bal:/var/bal \
|
||||||
|
--env-file bal-server.env \
|
||||||
|
-p 127.0.0.1:9137:9137 \
|
||||||
|
bal-server
|
||||||
```
|
```
|
||||||
- `ZMQ_ENDPOINT`: The ZMQ endpoint for the `hashblock` or `rawblock` topic. For `regtest`, use `tcp://127.0.0.1:21332`. For mainnet, use `tcp://127.0.0.1:28332`.
|
|
||||||
- `BAL_SERVER_URL`: The URL of the `bal-server` that the pusher can use to query statistics or for other internal communication.
|
|
||||||
- `BAL_PUSHER_RPC_URL`: The URL for the Bitcoin Core JSON-RPC endpoint. For `regtest`, the default is `http://127.0.0.1:18443`.
|
|
||||||
- `BAL_PUSHER_RPC_COOKIE_PATH`: The path to the `.cookie` file for RPC authentication. If not set, the pusher must use `user_pass` authentication. The cookie file is created by `bitcoind` when it starts with `rpccookieauth`.
|
|
||||||
- `BAL_SSL_KEY_PATH`: The path to the Ed25519 private key (`private_key.pem`) used to sign the statistics payload before sending it to the `welist` server. This is a critical secret.
|
|
||||||
- `SEND_STATS`: A boolean flag to enable the reporting of statistics to the remote `welist` server.
|
|
||||||
- `WELIST_URL`: The URL to which the statistics are sent. If `SEND_STATS` is `true`, this URL must be reachable. If the server is unreachable, the pusher will log an error but might not crash (see `08_security_audit.md` for DoS analysis).
|
|
||||||
- `BAL_PUSHER_PREFER_IPV6`: Optional boolean flag (default `false`). When set to `true`, the pusher resolves the `welist` host itself and pins the HTTP connection to its first IPv6 (AAAA) address, still using the hostname for the `Host` header and TLS SNI. This works around networks where the IPv4 route to the `welist` host is broken while IPv6 works — the default connector may otherwise pick the unreachable family and the request would stall. Leave unset unless you hit this specific connectivity problem.
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## System Services
|
## System Services
|
||||||
|
|
||||||
### `bal-server.service` (Systemd Unit)
|
### `bal-server.service` (Systemd Unit)
|
||||||
This file is the systemd unit for the `bal-server` binary. It runs the server as a dedicated `bal` user with hardening options.
|
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
[Unit]
|
[Unit]
|
||||||
@@ -74,12 +160,10 @@ MemoryDenyWriteExecute=true
|
|||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user
|
WantedBy=multi-user
|
||||||
```
|
```
|
||||||
- **User:** The service runs as a dedicated, non-privileged user (`bal` user) to ensure the server doesn't run as root.
|
- Runs as a dedicated non-privileged `bal` user.
|
||||||
- **Hardening:** `ProtectSystem=full` prevents writing to most of the filesystem. `NoNewPrivileges=true` prevents privilege escalation. `MemoryDenyWriteExecute=true` prevents executable memory allocations (W^X). `PrivateDevices=true` limits the exposure to the physical hardware.
|
- Hardened with `ProtectSystem=full`, `NoNewPrivileges=true`, `PrivateDevices=true`, `MemoryDenyWriteExecute=true`.
|
||||||
- **Security:** The `bal-server` does not need root access, and the database should be in a directory owned by the `bal` user.
|
|
||||||
|
|
||||||
### `bitcoind.service` (Systemd Unit for Mainnet)
|
### `bitcoind.service` (Bitcoin Core Daemon)
|
||||||
The `bitcoind.service` file is the systemd unit to run the Bitcoin Core daemon. It must be configured with the appropriate ZMQ and RPC flags. For example, `bitcoind` must be started with `zmqpubhashblock=tcp://127.0.0.1:28332` to send `new block` notifications to the pusher.
|
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
[Unit]
|
[Unit]
|
||||||
@@ -94,147 +178,126 @@ RestartSec=30
|
|||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user
|
WantedBy=multi-user
|
||||||
```
|
```
|
||||||
- **Note:** The full `bitcoind` configuration is in `bitcoin.conf` (or the `contrib/download_and_install_bitcoincore.sh` script). The script sets `zmqpubhashblock` (not `zmqpubrawblock`) for the pusher's new-block notifications. The `zmqpubhashblock` and `zmqpubrawtx` ports must be bound to `127.0.0.1` (never `0.0.0.0`) and match the pusher's `ZMQ_ENDPOINT`.
|
- Must be started with `zmqpubhashblock` (not `zmqpubrawblock`).
|
||||||
|
- ZMQ ports must be bound to `127.0.0.1` only.
|
||||||
|
|
||||||
### `tbitcoind.service` (Systemd Unit for Testnet)
|
### `tbitcoind.service` (Testnet Bitcoind)
|
||||||
This is the same as `bitcoind.service` but for the `testnet` network. It uses a different data directory (`~/.bitcoin/testnet/` by default) and a different ZMQ port (e.g., `tcp://127.0.0.1:23332`).
|
Same as `bitcoind.service` but for testnet with a different data directory and ZMQ port (e.g., `tcp://127.0.0.1:23332`).
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Bash Scripts
|
## Bash Scripts
|
||||||
|
|
||||||
### `bal-server.sh` (Development Server Startup)
|
### `bal-server.sh` (Development Server Startup)
|
||||||
This script sources the `bal-server.env` file and then runs the development server with Cargo for easy development and reloading.
|
Sources `bal-server.env` and runs the development server:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
export $(grep -v '^#' bal-server.env | xargs)
|
export $(grep -v '^#' bal-server.env | xargs)
|
||||||
RUST_LOG=info cargo run --bin=bal-server 2>&1
|
RUST_LOG=info cargo run --bin=bal-server 2>&1
|
||||||
```
|
```
|
||||||
- It is intended for development use only. It is not suitable for production because it compiles and runs in a single step, which is slow and insecure.
|
|
||||||
|
|
||||||
### `bal-pusher.sh` (Development Pusher Startup)
|
### `bal-pusher.sh` (Development Pusher Startup)
|
||||||
This script sources the `bal-pusher.env` and runs the pusher in development mode. It also accepts the `network` name as an argument (e.g., `sh bal-pusher.sh regtest`).
|
Sources `bal-pusher.env` and runs the pusher with a network argument:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
export $(grep -v '^#' bal-pusher.env | xargs)
|
export $(grep -v '^#' bal-pusher.env | xargs)
|
||||||
RUST_LOG=info cargo run --bin=bal-pusher $1
|
RUST_LOG=info cargo run --bin=bal-pusher $1
|
||||||
```
|
```
|
||||||
|
|
||||||
### `sendtx.sh` (One-liner Transaction Sender)
|
### `sendtx.sh` (Test Transaction Sender)
|
||||||
This script is a one-liner helper that sends a raw transaction to a local node using a sequence of `bitcoin-cli` calls. It is not part of the main system but is used for testing purposes.
|
A helper script that wraps `bitcoin-cli` for manual testing.
|
||||||
|
|
||||||
```bash
|
|
||||||
bitcoin-cli -regtest gettransaction ... | bitcoin-cli -regtest sendrawtransaction ... | bitcoin-cli -regtest sendtoaddress ...
|
|
||||||
```
|
|
||||||
- It is a helper script that wraps `bitcoin-cli` to send a pre-created transaction, get the raw bytes, and send them to a new address. It is only useful for manual testing and integration checks.
|
|
||||||
|
|
||||||
### `make_release.sh` (Release Builder)
|
### `make_release.sh` (Release Builder)
|
||||||
This script builds a release binary, creates a Git tag, and uploads the release to a Git server (Gitea). It also hardcodes a Gitea API token (`TOKEN="5cfa8c33e337ebaadb355c0ffa2d053d521ee43b"`), which is a major security risk.
|
Builds release binaries, creates Git tags, and uploads to Gitea. Signs the release tarball with GPG. Release assets include `.tar.gz`, `.sha256`, `.sig`, and `.asc` files. Token is loaded from `.env` (not hardcoded).
|
||||||
|
|
||||||
```bash
|
|
||||||
# WARNING: This script contains a hardcoded secret token. Do not use it as-is for production.
|
|
||||||
```
|
|
||||||
- **Release Assets:** It generates a `.tar.gz` archive with the binaries, a `.sha256` checksum file, and both a `.sig` GPG detached binary signature and a `.asc` ASCII-armored version.
|
|
||||||
- **Signature:** The release tarball is signed with the GPG key `Svātantrya <svatantrya@bitcoin-after.life>`. The script verifies that `gpg`, `sha256sum`, and `jq` are installed before proceeding.
|
|
||||||
- **Verification:** The release body includes instructions for verifying the checksum and signature (binary or ASCII-armored):
|
|
||||||
```bash
|
|
||||||
sha256sum -c <release>.tar.gz.sha256
|
|
||||||
gpg --verify <release>.tar.gz.sig <release>.tar.gz
|
|
||||||
gpg --verify <release>.tar.gz.asc <release>.tar.gz
|
|
||||||
```
|
|
||||||
- **Security:** It also builds and uploads the binaries. The binaries should be built and signed on a separate, clean build machine, not on the production server.
|
|
||||||
|
|
||||||
### `download_bal_db.sh` (Database Pull Script)
|
### `download_bal_db.sh` (Database Pull Script)
|
||||||
This script uses `scp` to pull the production `bal.db` from a remote server (`debian@bitcoin-after.life`). It requires passwordless or key-based SSH access to the remote server.
|
Uses `scp` to pull the production `bal.db` from a remote server.
|
||||||
|
|
||||||
```bash
|
|
||||||
scp debian@bitcoin-after.life:/var/bal/bal.db ./bal.db
|
|
||||||
```
|
|
||||||
- **Security:** It requires the remote server to be accessible. The remote server's IP address is hardcoded. This is a maintenance script, not part of the core system.
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Nginx and SSL Configuration
|
## Nginx and SSL Configuration
|
||||||
|
|
||||||
The `bal-server` is a plain HTTP server. To expose it to the internet, a production environment should put a reverse proxy like `Nginx` in front of it. The `nginx` configuration (from `contrib/download_and_install_bal.sh`) is used to terminate TLS and provide SSL certificates. Nginx also handles rate limiting, request filtering, and static file serving for `public_key.pem`.
|
The `bal-server` is a plain HTTP server. A reverse proxy (Nginx) with TLS termination is required for production.
|
||||||
|
|
||||||
### Example Nginx Configuration (from `contrib`)
|
### Template: `contrib/nginx/bal-server.conf`
|
||||||
|
|
||||||
```nginx
|
```nginx
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
server_name bal.example.com;
|
server_name BAL_DOMAIN;
|
||||||
return 301 https://$server_name$request_uri;
|
return 301 https://$server_name$request_uri;
|
||||||
}
|
}
|
||||||
server {
|
server {
|
||||||
listen 443 ssl http2;
|
listen 443 ssl http2;
|
||||||
server_name bal.example.com;
|
server_name BAL_DOMAIN;
|
||||||
ssl_certificate /etc/letsencrypt/live/bal.example.com/fullchain.pem;
|
ssl_certificate /etc/letsencrypt/live/BAL_DOMAIN/fullchain.pem;
|
||||||
ssl_certificate_key /etc/letsencrypt/live/bal.example.com/privkey.pem;
|
ssl_certificate_key /etc/letsencrypt/live/BAL_DOMAIN/privkey.pem;
|
||||||
|
|
||||||
|
client_max_body_size 1m;
|
||||||
|
add_header X-Frame-Options DENY;
|
||||||
|
add_header X-Content-Type-Options nosniff;
|
||||||
|
add_header Referrer-Policy no-referrer;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://127.0.0.1:3031;
|
proxy_pass http://127.0.0.1:9137;
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
}
|
}
|
||||||
# Rate limiting can be added here
|
# Uncomment for rate limiting:
|
||||||
|
# limit_req zone=pal limit=10 nodelay;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
- **Certbot:** The `contrib` script installs `certbot` and automatically generates the certificate. This configuration is used to ensure the `bal-server` is served over HTTPS with valid TLS.
|
|
||||||
- **Rate limiting:** It is recommended to add `limit_req` or `limit_conn` to the Nginx configuration to prevent the server from being overwhelmed by too many concurrent requests (e.g., `pushtxs` spam, or DoS attacks). The `bal-server` has no built-in rate limiting on the HTTP level.
|
Key points:
|
||||||
|
- `client_max_body_size` must match `BAL_SERVER_ACTIX_MAX_BODY_SIZE`.
|
||||||
|
- `certbot --nginx` obtains the certificate automatically.
|
||||||
|
- Security headers: `X-Frame-Options`, `X-Content-Type-Options`, `Referrer-Policy`.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Production Deployment Checklist
|
## Production Deployment Checklist
|
||||||
|
|
||||||
Before exposing `bal` to the internet, verify the following steps. The `bal-server` is a plain HTTP application and must **never** be bound directly to a public IP or `0.0.0.0`.
|
|
||||||
|
|
||||||
### 1. `bal-server` Bind Address
|
### 1. `bal-server` Bind Address
|
||||||
- [ ] `bal-server.env` (or `.env`) sets `BAL_SERVER_BIND_ADDRESS=127.0.0.1` (not `0.0.0.0`).
|
- [ ] `BAL_SERVER_BIND_ADDRESS=127.0.0.1` (never `0.0.0.0`).
|
||||||
- [ ] `BAL_SERVER_BIND_PORT` is the port used by Nginx `proxy_pass` (default `9137`).
|
- [ ] `BAL_SERVER_BIND_PORT` matches Nginx `proxy_pass` (default `9137`).
|
||||||
- [ ] Firewall blocks inbound connections to `BAL_SERVER_BIND_PORT` from external interfaces (e.g., `iptables -A INPUT -p tcp --dport 9137 -s 127.0.0.1 -j ACCEPT` and `DROP` for others).
|
- [ ] Firewall blocks inbound connections to `BAL_SERVER_BIND_PORT` from external interfaces.
|
||||||
|
|
||||||
### 2. Reverse Proxy (Nginx + TLS)
|
### 2. Reverse Proxy (Nginx + TLS)
|
||||||
- [ ] Nginx is installed (`contrib/download_and_install_bal.sh` handles this).
|
- [ ] Nginx installed (`contrib/download_and_install_bal.sh` handles this).
|
||||||
- [ ] The template `contrib/nginx/bal-server.conf` is copied to `/etc/nginx/sites-available/` and symlinked to `sites-enabled` (the `contrib/download_and_install_bal.sh` script does this automatically).
|
- [ ] `contrib/nginx/bal-server.conf` template copied to `/etc/nginx/sites-available/`.
|
||||||
- [ ] The file has a real domain name replacing `BAL_DOMAIN`.
|
- [ ] Real domain name replacing `BAL_DOMAIN`.
|
||||||
- [ ] `listen 443 ssl http2;` is active.
|
- [ ] `listen 443 ssl http2` active.
|
||||||
- [ ] `certbot --nginx` has obtained a valid certificate (the script runs `certbot --nginx` which avoids the port 80 conflict of `--standalone`). For manual installs, use `sudo certbot --nginx -d $domain`.
|
- [ ] `certbot --nginx` has obtained a valid certificate.
|
||||||
- [ ] `proxy_pass` points to `http://127.0.0.1:9137` (or whatever `BAL_SERVER_BIND_PORT` is).
|
- [ ] `proxy_pass` points to `http://127.0.0.1:9137`.
|
||||||
- [ ] `client_max_body_size` in Nginx matches `BAL_SERVER_ACTIX_MAX_BODY_SIZE` (default `1m`).
|
- [ ] `client_max_body_size` matches `BAL_SERVER_ACTIX_MAX_BODY_SIZE`.
|
||||||
- [ ] HTTP port 80 redirects to HTTPS (`return 301 https://...`).
|
- [ ] HTTP port 80 redirects to HTTPS.
|
||||||
- [ ] Nginx `limit_req` zone is configured if desired (backup to `actix-governor`).
|
- [ ] Security headers configured.
|
||||||
|
|
||||||
### 3. Database and Secrets
|
### 3. Database and Secrets
|
||||||
- [ ] Database file is owned by the `bal` user (`chown bal:bal /var/bal/bal.db`).
|
- [ ] Database file owned by `bal` user (`chown bal:bal /var/bal/bal.db`).
|
||||||
- [ ] Database file permissions are `600` (`chmod 600 /var/bal/bal.db`).
|
- [ ] Database file permissions `600` (`chmod 600 /var/bal/bal.db`).
|
||||||
- [ ] `.env` file is in `.gitignore` and not committed.
|
- [ ] `.env` files in `.gitignore` and not committed.
|
||||||
- [ ] `private_key.pem` and `privkey.pem` are not in the repository (use `git ls-files` to verify).
|
- [ ] `private_key.pem` / `privkey.pem` not in the repository.
|
||||||
- [ ] `public_key.pem` is readable by Nginx if served directly (otherwise let the actix endpoint handle it).
|
- [ ] `public_key.pem` readable by Nginx if served directly.
|
||||||
|
|
||||||
### 4. Pusher and ZMQ
|
### 4. Pusher and ZMQ
|
||||||
- [ ] ZMQ endpoints are configured for `127.0.0.1` only (e.g., `tcp://127.0.0.1:28332`).
|
- [ ] ZMQ endpoints configured for `127.0.0.1` only.
|
||||||
- [ ] `BAL_PUSHER_SEND_STATS` is set to `false` unless the `welist` endpoint is actually needed.
|
- [ ] `BAL_PUSHER_SEND_STATS=false` unless `welist` endpoint is needed.
|
||||||
- [ ] If stats are enabled, `WELIST_SERVER_URL` is a valid external HTTPS domain (not IP, not local).
|
- [ ] If stats enabled, `WELIST_SERVER_URL` is a valid external HTTPS domain.
|
||||||
- [ ] Firewall blocks inbound TCP port `28332` (or your custom `bitcoin`, `regtest`, etc. ZMQ ports) from external interfaces.
|
- [ ] Firewall blocks inbound ZMQ ports from external interfaces.
|
||||||
|
|
||||||
### 5. Logging and Monitoring
|
### 5. Logging and Monitoring
|
||||||
- [ ] `RUST_LOG` is set to `info` or `warn` in production (not `debug` or `trace`).
|
- [ ] `RUST_LOG=info` or `warn` in production (not `debug`/`trace`).
|
||||||
- [ ] Log files are rotated (e.g., via `logrotate`) and stored only under `/var/log/bal/` or systemd journal.
|
- [ ] Log files rotated and stored under `/var/log/bal/` or systemd journal.
|
||||||
- [ ] Log files are not in the same directory as the database or the private key.
|
- [ ] Log files not in the same directory as the database or private key.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Tor and Privacy
|
## Tor and Privacy
|
||||||
|
|
||||||
The `contrib/install_tor.sh` script installs Tor for use as an onion-routed proxy. It can be used to:
|
The `contrib/install_tor.sh` script installs Tor for onion-routed proxy use:
|
||||||
1. Allow the `bal-server` to be reachable via a `.onion` address for privacy and censorship resistance.
|
1. `bal-server` can be reachable via a `.onion` address.
|
||||||
2. Allow the `bal-pusher` to connect to the Bitcoin RPC or the `welist` server through Tor to hide its origin IP.
|
2. `bal-pusher` can connect to Bitcoin RPC or `welist` through Tor.
|
||||||
3. Allow the server to run behind NAT without exposing the real IP to the public internet.
|
3. The server can run behind NAT without exposing the real IP.
|
||||||
|
|
||||||
The script uses `ControlPort 9051` and enables `CookieAuthentication`. If `SEND_STATS` is true, the `welist` URL can be configured to be a `.onion` address to hide the origin. For example, the `bal-pusher` could use `reqwest` with SOCKS5 proxy settings to connect to the `welist` server via Tor.
|
The script uses `ControlPort 9051` with `CookieAuthentication`. The `bal-pusher` supports SOCKS5 proxy via the `reqwest` `socks` feature for `.onion` connectivity.
|
||||||
- `reqwest` feature `socks` (enabled in `Cargo.toml`) supports proxy settings.
|
|
||||||
- For a production privacy setup, it is recommended to run the server and the pusher behind a Tor or VPN proxy.
|
|
||||||
- **Security:** The Tor service itself (`tor.service`) should be hardened and run as a separate user. The `ControlPort` `9051` should be bound to `127.0.0.1` and should not be exposed to the public without authentication.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|||||||
@@ -9,221 +9,148 @@
|
|||||||
## Threat Model
|
## Threat Model
|
||||||
|
|
||||||
### Assets
|
### Assets
|
||||||
1. **`bal.db` (SQLite database):** Contains all transaction details, including private transaction data, user IP addresses, and the `welist` stats payload. The file is a single, unencrypted file on disk. If the database is exfiltrated, the attacker will have knowledge of the transaction history and user activity.
|
1. **`bal.db` (SQLite database):** Contains all transaction details, user IP addresses, and stats data. Single unencrypted file on disk. WAL mode enabled for concurrent access safety.
|
||||||
2. **Private Keys (`private_key.pem`, `privkey.pem`, `ec.key`, `chiave_privata.key`):** The `private_key.pem` is used to sign the statistics payload for the `welist` server. An attacker with access to this key can impersonate the server and send fake statistics or modify the remote database.
|
2. **Private Keys (`privkey.pem`):** Used to sign statistics payloads for the `welist` server. Located in `.gitignore`.
|
||||||
3. **Bitcoin Node (`bitcoind`) Access:** The `bal-pusher` has RPC access to the `bitcoind` node. If an attacker can compromise the pusher, they can send arbitrary transactions to the network, potentially misappropriating funds or DoS-ing the node.
|
3. **Bitcoin Node (`bitcoind`) Access:** The `bal-pusher` has RPC access. Compromise allows arbitrary transaction broadcasting.
|
||||||
4. **Server Availability (`bal-server`):** The server is a public-facing HTTP endpoint. If it is down, users cannot submit transactions. Denail of service (DoS) attacks could be a direct threat to the service's availability.
|
4. **Server Availability (`bal-server`):** Public-facing HTTP endpoint. DoS attacks threaten service availability.
|
||||||
|
|
||||||
### Attackers
|
### Attackers
|
||||||
- **Remote Anonymous Users:** Can interact with the `bal-server` API via the public HTTP interface. They do not have credentials or special access. They can send valid or invalid transactions.
|
- **Remote Anonymous Users:** Can interact with the API via public HTTP. No credentials required.
|
||||||
- **Network Man-in-the-Middle (MITM):** The HTTP server does not have TLS by default (see `07_deployment_and_ops.md`). If Nginx is not configured with a valid SSL certificate, an attacker can intercept the traffic.
|
- **Network Man-in-the-Middle (MITM):** TLS termination is via Nginx reverse proxy. The `bal-server` itself is plain HTTP.
|
||||||
- **Local/Insider Threats:** If the server is compromised (e.g., via a vulnerable `bitcoind` or a remote exploit), the attacker can read the `bal.db` file, the private key, and the `env` files. The database file contains all transaction data, which is a serious privacy risk.
|
- **Local/Insider Threats:** If the server is compromised, the attacker can access `bal.db`, private keys, and env files.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## Vulnerability Assessment
|
## Vulnerability Assessment
|
||||||
|
|
||||||
### 1. SQL Injection (HIGH)
|
### 1. SQL Injection (FIXED)
|
||||||
**Location:** `src/bin/bal-server.rs` (e.g., `echo_stats`, `echo_push` handlers), `src/db.rs`.
|
**Severity:** HIGH | **Status:** Fixed
|
||||||
**Description:** SQL queries are built using `format!("... WHERE txid in ('{}')", ...")` in `db.rs`. The `txid` strings are derived from the raw HTTP request body. While the `txid` is usually a hash of 32 bytes, the database code does not validate or enforce this. This is a potential SQL injection vector if an attacker can bypass the transaction hash check or if the `txid` string is used directly from the request body without proper escaping or parameterized queries.
|
**Location:** `src/db.rs`, `src/bin/bal-server.rs`, `src/bin/bal-pusher.rs`
|
||||||
**Impact:** An attacker could potentially read, modify, or delete any database record.
|
**Description:** SQL queries previously used `format!()` for string interpolation. All queries now use parameterized statements (`?` with `bind()`).
|
||||||
**Mitigation:** Replace all string-formatted SQL with prepared statements using parameterized queries (`?`) for every user-input value. See `src/db.rs` for the `execute_insert` function, which already uses parameterized queries but is not universally applied.
|
**Mitigation Applied:** All SQL queries rewritten with prepared statements. `execute_insert` uses parameterized batch inserts. `check_duplicate_txids` uses parameterized `IN` clauses. `echo_stats` handler uses prepared statements for chain filtering.
|
||||||
**Status:** Fixed (Vulnerability 1 & 2 in `bal-pusher.rs` patched in commit).
|
**Regression Tests:** `tests/sql_injection_tests.rs` (3 tests).
|
||||||
**Reproduction:** Send a malicious `searchtx` request with a crafted `txid` containing SQL characters (e.g., `' OR '1'='1`). The database will not crash because the query is malformed, but it might be exploitable if the `txid` format is not strictly enforced. See `valid_txs` and `invalid_txs` log files for examples of valid and invalid txids.
|
|
||||||
**Fix Applied:** Vulnerabilities 1 and 2 (UPDATE `txid IN` and UPDATE `push_err` in `bal-pusher.rs`) were rewritten to use parameterized queries (`?` with `bind()`). Regression tests added in `tests/sql_injection_tests.rs`.
|
|
||||||
|
|
||||||
### 2. Panic on Untrusted Input (HIGH)
|
### 2. Panic on Untrusted Input (FIXED)
|
||||||
**Location:** `src/bin/bal-server.rs` (e.g., `req.collect().unwrap()`, `Regex::new(...).unwrap()`) and `src/bin/bal-pusher.rs` (e.g., `panic!("impossible to get client {}", e)`).
|
**Severity:** HIGH | **Status:** Fixed
|
||||||
**Description:** The `bal-server` uses `unwrap()` and `expect()` on many critical paths. A malformed HTTP request (e.g., an oversized body, invalid JSON, or an invalid `network` string) can cause a panic in the async runtime. This could crash the entire server process or at least one async worker. The `Regex::new` is also `unwrap`ed, making the entire server crash if the regex is not valid at startup.
|
**Location:** `src/bin/bal-server.rs`, `src/bin/bal-pusher.rs`
|
||||||
- The `bal-pusher` panics on RPC connection failures (`main_result` -> `get_client`). If the Bitcoin node is temporarily down, the entire pusher process will crash. This is a serious DoS vector because it will stop the service from broadcasting transactions if the network is unstable.
|
**Description:** All `unwrap()`/`expect()` calls on critical paths have been replaced with safe error handling.
|
||||||
**Impact:** A single malformed request can crash the entire server or the pusher daemon, leading to a full Denial of Service (DoS).
|
**Mitigation Applied:**
|
||||||
**Mitigation:**
|
- `bal-server`: `from_utf8` returns 400, `sqlite::open` uses `open_db()` with validation, all handlers return proper HTTP status codes.
|
||||||
- Replace all `unwrap()` and `expect()` with `match` or `Result` propagation in the server request handlers. Use `?` to bubble errors up, or return `400 Bad Request` / `500 Internal Server Error` with a safe error message.
|
- `bal-pusher`: RPC failures log errors + sleep + retry (no panic), ZMQ `recv` uses `set_rcvtimeo(5000)`, `fs::read_to_string` uses `match` + 500, `cfg.lock()` uses `poisoned.into_inner()` recovery.
|
||||||
- In the `bal-pusher`, do not `panic!` on RPC connection failures. Instead, use `eprintln!` or `log::error!` and sleep for a retry interval. The ZMQ connection should be monitored independently, not tied to the pusher's lifetime.
|
**Regression Tests:** `tests/panic_regression_tests.rs` (2 tests).
|
||||||
- In the `bal-pusher`, ensure ZMQ `recv` has a timeout (e.g., `RCVTIMEO`). If the ZMQ socket is blocked, the thread will not be killed, and it will consume resources indefinitely. This is a resource leak / DoS vector.
|
|
||||||
**Status:** Fixed (Fase 1 + Fase 2 applied). All critical panic vectors in `bal-server.rs` and `bal-pusher.rs` have been replaced with safe `match`/`if let` error propagation. `unwrap`/`expect` replaced with:
|
|
||||||
- `from_utf8` → `match` + `return Ok(400)`
|
|
||||||
- `sqlite::open` per richiesta → `Arc<Mutex<Connection>>` condiviso
|
|
||||||
- `panic!` su RPC → `error!` + sleep + retry
|
|
||||||
- `recv_multipart` → `set_rcvtimeo(5000)` + `match`
|
|
||||||
- `connect`/`subscribe` → retry loop con `match`/`return`
|
|
||||||
- `fs::read_to_string().expect()` → `match` + `500 Internal Server Error`
|
|
||||||
- `timestamp_nanos_opt().unwrap()` → `match` + `return Ok(400)`
|
|
||||||
- `idx/amount.try_into().unwrap()` → `i64::try_from(...).unwrap_or(0/-1)`
|
|
||||||
- `cfg.lock().unwrap()` → `match` + `poisoned.into_inner()` recovery
|
|
||||||
- `stmt.read().unwrap()`/`bind().unwrap()` in `db.rs` → `match`/`if let` + log error
|
|
||||||
|
|
||||||
Regression tests: `tests/panic_regression_tests.rs` (2 tests).
|
### 3. Secret Leakage (FIXED)
|
||||||
|
**Severity:** HIGH | **Status:** Fixed
|
||||||
|
**Location:** `make_release.sh`, `.gitignore`
|
||||||
|
**Description:** `make_release.sh` now loads `TOKEN` from `.env` (`.env.example` provided). Private keys (`.pem`, `.key`) are in `.gitignore`. `generate_keys.sh` sets `chmod 600` on generated keys.
|
||||||
|
**Mitigation Applied:** Secrets removed from scripts and repository. `.gitignore` protects `.env`, `*.pem`, `*.key` files.
|
||||||
|
**Regression Tests:** `tests/secret_leakage_tests.rs` (3 tests).
|
||||||
|
|
||||||
### 3. Secret Leakage (HIGH)
|
### 4. Denial of Service (DoS) (FIXED)
|
||||||
**Location:** `make_release.sh`, `contrib/download_and_install_bal.sh`, `private_key.pem`, `privkey.pem`, `ec.key`, `chiave_privata.key`.
|
**Severity:** HIGH | **Status:** Fixed
|
||||||
**Description:**
|
**Location:** `src/bin/bal-server.rs` (HTTP), `src/bin/bal-pusher.rs` (ZMQ)
|
||||||
- The `make_release.sh` script contains a hardcoded Gitea API token: `TOKEN="5cfa8c33e337ebaadb355c0ffa2d053d521ee43b"`. If the script is accidentally pushed to a public repository, it will be visible to everyone.
|
**Description:** All DoS vectors mitigated via actix-web migration.
|
||||||
- The `contrib/download_and_install_bal.sh` script contains a hardcoded `xpub` address and a fixed fee. This is less critical but could be used for fingerprinting.
|
**Mitigation Applied:**
|
||||||
- The `private_key.pem` and `chiave_privata.key` files are stored in the project root (and in the repository). If the repository is public, the private key is compromised. An attacker could use this to sign fake statistics or forge authentication credentials.
|
- Body size limit: `PayloadConfig::default().limit(max_body_size)` via `BAL_SERVER_ACTIX_MAX_BODY_SIZE` (default 1 MiB).
|
||||||
**Impact:** An attacker could gain unauthorized access to the CI/CD pipeline, the release server, or the `welist` statistics service.
|
- Rate limiting: `actix-governor` with token-bucket per client IP (`BAL_SERVER_ACTIX_PUSHTXS_PER_SEC`/`BURST`). Uses `RealIpKeyExtractor` to extract real client IP from proxy headers.
|
||||||
**Mitigation:**
|
- Connection limits: `workers(4)` and `max_connections(100)` via `BAL_SERVER_ACTIX_WORKERS`/`MAX_CONNECTIONS`.
|
||||||
- Remove `private_key.pem` from the repository and add it to `.gitsecret` or `.gitignore`. Use a secret manager or a password store for the `private_key.pem`.
|
- Body timeout: configurable via `BAL_SERVER_ACTIX_TIMEOUT_SECS`.
|
||||||
- Remove hardcoded secrets from the scripts. The `TOKEN` and `xpub` should be environment variables or configuration files injected via the build process.
|
- ZMQ timeout: `set_rcvtimeo(5000)` prevents infinite blocking.
|
||||||
- Use `git-crypt` or `git-secret` to encrypt the private key files before committing.
|
- RPC retry: sleep + retry on connection failure instead of panic.
|
||||||
**Status:** Fixed. `make_release.sh` now loads `TOKEN` from `.env` (`.env.example` provided). `contrib/download_and_install_bal.sh` no longer hardcodes `xpub`/`fixed_fee`. Private keys moved to `.gitignore` (`*.pem`, `*.key`). `generate_keys.sh` sets `chmod 600` on generated keys. Regression tests: `tests/secret_leakage_tests.rs` (3 tests). **Priority:** High. (Mitigation applied)
|
|
||||||
|
|
||||||
### 4. Denial of Service (DoS) (HIGH)
|
### 5. SSRF / Network Abuse via `reqwest` (FIXED)
|
||||||
**Location:** `src/bin/bal-server.rs` (HTTP request body), `src/bin/bal-pusher.rs` (ZMQ).
|
**Severity:** MEDIUM | **Status:** Fixed
|
||||||
**Description:**
|
**Location:** `src/bin/bal-pusher.rs`, `src/validation.rs`
|
||||||
- The `bal-server` does not limit the size of the HTTP request body. On the `POST /pushtxs` endpoint, it calls `req.collect().await?.to_bytes()` without checking for a maximum body size. A malicious client could send an unbounded or extremely large request (e.g., `100000MB`), which would consume all available memory and crash the server.
|
**Description:** URL validation prevents redirecting requests to internal/private IPs.
|
||||||
- The `bal-server` regex for path matching might be expensive if the user provides a malicious path string. For a production system, the regex should be compiled only once at startup and should be very specific.
|
**Mitigation Applied:** `is_valid_welist_url()` in `src/validation.rs` blocks localhost, loopback, RFC1918, link-local, multicast, unspecified, and IPv6 unique-local addresses. HTTPS-only scheme enforced.
|
||||||
- The `bal-pusher` `recv` call is synchronous and blocking. If the ZMQ connection fails, the thread will hang without any timeout. This is a resource leak if the connection is broken. The ZMQ socket is not reconfigured with `ZMQ_RECONNECT_IVL` or `ZMQ_MAXMSGSIZE`. If the Bitcoin Core node is not sending, the pusher will be stuck waiting forever, consuming a thread and not doing other useful work.
|
**Regression Tests:** `tests/ssrf_tests.rs` (integration) + 8 unit tests in `src/validation.rs`.
|
||||||
- The `bal-pusher` does not have a rate limiter for the `sendrawtransaction` call. If the database is full or the ZMQ loop is running very fast, it could send thousands of RPC requests to the `bicoind` node, overwhelming it. For example, if the node is slow, the pusher will keep sending requests, potentially blocking the RPC queue or causing a memory leak in `bitcoind`.
|
|
||||||
**Impact:** The server could become unresponsive, crash, or be completely unavailable. The `bitcoind` node could be overwhelmed with `sendrawtransaction` requests, causing a chain failure in the entire Bitcoin infrastructure.
|
|
||||||
**Reproduction:**
|
|
||||||
- For the HTTP server: Send an HTTP POST with `Content-Length: 9999999999` to `POST /regtest/pushtxs`. The server will try to allocate that much memory and will be killed by the OOM killer.
|
|
||||||
- For the ZMQ pusher: Kill the `bitcoind` ZMQ socket. The `bal-pusher` will hang forever. The process cannot be killed gracefully by the systemd `SIGTERM` because the thread is blocked by the ZMQ `recv` call.
|
|
||||||
**Mitigation:**
|
|
||||||
- Add a maximum body size check to the HTTP server. Use `hyper`'s built-in `Body` size limiter, or manually check `req.headers().get("content-length")` before `collect().await` and return `413 Payload Too Large` if it exceeds the limit (e.g., `1 MB` for a single transaction, or `10 MB` for a batch).
|
|
||||||
- Implement request rate limiting on the `bal-server` (e.g., `tower::filter` or a simple `HashMap` of client IP address to request count). Limit the `pushtxs` request to one per second per IP.
|
|
||||||
- Add a ZMQ socket option for `ZMQ_RCVTIMEO` (e.g., `5000` ms) to avoid blocking forever. The pusher should be able to handle a ZMQ timeout gracefully and retry the connection or reconnect the socket.
|
|
||||||
- The `bal-pusher` should have a rate limiting mechanism for the `sendrawtransaction` call to the RPC. For example, only allow sending `1` transaction per block, or use a queue and a `semaphore` to limit the number of concurrent RPC calls.
|
|
||||||
**Status:** Fixed (Migrated to Actix Web). All DoS vectors mitigated via:
|
|
||||||
- Body size limit: `PayloadConfig::default().limit(max_body_size)` — configurable via `BAL_SERVER_ACTIX_MAX_BODY_SIZE` (default 1 MiB)
|
|
||||||
- Rate limiting: `actix-governor` middleware with token-bucket — configurable via `BAL_SERVER_ACTIX_PUSHTXS_PER_SEC`/`BURST` (default 1 req/s per IP with burst 5)
|
|
||||||
- Connection limits: `workers(4)` and `max_connections(100)` — configurable via `BAL_SERVER_ACTIX_WORKERS`/`MAX_CONNECTIONS`
|
|
||||||
- Body timeout: configurable via `BAL_SERVER_ACTIX_TIMEOUT_SECS` (default 30s)
|
|
||||||
**Migration:** Server replaced `hyper` custom server with `actix-web` (see `src/bin/bal-server.rs`). All handlers migrated with `Arc<Mutex<Connection>>` shared DB. Old `bal-server.rs` (Hyper) removed. `bal-pusher` enhanced with ZMQ timeout (`ZMQ_RCVTIMEO` 5000ms) and RPC retry logic. **Priority:** High. (Mitigated)
|
|
||||||
|
|
||||||
### 5. SSRF / Network Abuse via `reqwest` (MEDIUM)
|
### 6. Insecure Database Access (FIXED)
|
||||||
**Location:** `src/bin/bal-pusher.rs`.
|
**Severity:** MEDIUM | **Status:** Fixed
|
||||||
**Description:** The `bal-pusher` sends statistics to a remote `welist` URL using the `reqwest` HTTP client. The `WELIST_URL` is configurable, but the pusher does not validate the URL before sending the HTTP request. An attacker who can modify the `WELIST_URL` (e.g., by modifying the pusher's environment file) can redirect the traffic to any arbitrary URL, including internal services. The `reqwest` client has SOCKS5 enabled (`socks` feature). This could allow an attacker to use the pusher's network to scan internal addresses, send requests to `localhost` or `169.254.169.254` (AWS metadata IP), or access internal infrastructure.
|
**Location:** `src/db.rs`, `src/bin/bal-server.rs`, `src/bin/bal-pusher.rs`
|
||||||
**Impact:** An attacker could use the pusher to access internal services, potentially leaking sensitive information or attacking internal infrastructure.
|
**Description:** Database path validation and WAL mode for concurrent access.
|
||||||
**Mitigation:**
|
**Mitigation Applied:**
|
||||||
- ✅ **Implemented:** Added strict URL validation `bal_server::validation::is_valid_wELIST_url` (see `src/validation.rs`). It checks:
|
- `open_db()` rejects `..` traversal, forbidden system directories (`/etc`, `/proc`, `/sys`, `/dev`, `/usr`, `/bin`, `/sbin`, `/lib`, `/opt`), symlinks, and non-regular files.
|
||||||
- URL must be well-formed and parsable.
|
- WAL mode (`PRAGMA journal_mode=WAL`) with retry logic (up to 5 attempts).
|
||||||
- Scheme must be `https://` (plain HTTP is rejected).
|
- `busy_timeout=5000` for concurrent access.
|
||||||
- Host must not be `localhost`, `127.0.0.1`, `::1`, or any loopback/private/link-local/multicast/unspecified IP address.
|
- `bal-server` uses `Arc<Mutex<Connection>>` for thread-safe shared access.
|
||||||
- IPv4 private RFC1918 ranges (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) and AWS metadata link-local (169.254.169.254) are blocked.
|
**Regression Tests:** `tests/db_path_validation.rs` (5 tests).
|
||||||
- IPv6 Unique Local (fc00::/7) and link-local (fe80::/10) are blocked.
|
|
||||||
- IPv6 address brackets are stripped before validation.
|
|
||||||
- The `bal-pusher` `send_stats_report` now calls `is_valid_wELIST_url` before making the request. If validation fails, the function skips the request with a warning and returns `Ok(())` to avoid panicking.
|
|
||||||
- The `WELIST_URL` is configurable via `WELIST_SERVER_URL` (defaults to `https://wELIST.bitcoin-after.life`), but invalid URLs are rejected at runtime. If stats are not needed, `send_stats` can be set to `false` to skip the feature entirely.
|
|
||||||
- SOCKS5 feature is retained for `.onion` support (see `07_deployment_and_ops.md`), but URL validation prevents redirecting to internal IPs.
|
|
||||||
**Regression tests:** `src/validation.rs` (unit tests) and `tests/ssrf_tests.rs` (integration tests) cover all blocked/allowed IP ranges and schemes. 9 tests + 4 integration tests = all passing.
|
|
||||||
**Status:** Fixed. **Priority:** Medium.
|
|
||||||
|
|
||||||
### 6. Insecure Database Access (MEDIUM)
|
### 7. ZMQ Authentication and Encryption (OPEN)
|
||||||
**Location:** `src/bin/bal-server.rs`, `src/bin/bal-pusher.rs`.
|
**Severity:** MEDIUM | **Status:** Open
|
||||||
**Description:** The `bal-server` opens the `bal.db` file using `sqlite::open(&cfg.db_file).unwrap()`. The path is not validated. If the environment variable `BAL_DB_FILE` is set to a malicious path (e.g., `/etc/passwd`), the server will try to open it as a database. This could cause a crash or a security issue if the database file is on a malicious path. Also, if the database file is on a network drive, the performance will be very slow, and it might cause a timeout.
|
**Location:** `src/bin/bal-pusher.rs`
|
||||||
- The `bal-pusher` and `bal-server` both access the same `bal.db` file. There is no file locking mechanism or `flock` on the database file. If two instances of the `bal-server` start at the same time, they might corrupt the database or cause a deadlock. SQLite handles this automatically, but the `sqlite` crate (Rust) might not be configured with the proper threading mode (`WAL` or `SHARED`).
|
**Description:** ZMQ connection is plaintext TCP. No authentication (ZAP), no encryption (ZMQ_CURVE). If the ZMQ port is exposed, any attacker can subscribe to topics.
|
||||||
**Impact:**
|
**Mitigation (Operational):**
|
||||||
- The database file could be placed on a path that causes a file system vulnerability or a crash of the server.
|
- Bind ZMQ to `127.0.0.1` only.
|
||||||
- The database file might be corrupted if multiple processes access it without proper locking.
|
- Firewall blocks external access to ZMQ ports.
|
||||||
**Mitigation:**
|
- If public ZMQ is required, use ZMQ_CURVE with public-key cryptography.
|
||||||
- ✅ **Path validation:** Added `db::open_db` in `src/db.rs` which validates the database path before opening:
|
|
||||||
- Rejects paths containing `..` (directory traversal).
|
|
||||||
- Rejects absolute paths pointing to sensitive directories (`/etc`, `/proc`, `/sys`, `/dev`, `/usr`, `/bin`, `/sbin`, `/lib`, `/opt`).
|
|
||||||
- Rejects symlinks and non-regular files (directories, devices, etc.).
|
|
||||||
- If validation fails, the function returns `Err(String)` instead of panicking, preventing crashes or accidental access to system files.
|
|
||||||
- ✅ **WAL mode:** `db::open_db` automatically executes `PRAGMA journal_mode = WAL;` and `PRAGMA synchronous = NORMAL;` on every connection. This is a best practice for safe concurrent access when `bal-server` and `bal-pusher` share the same database file.
|
|
||||||
- ✅ **Replaced `unwrap`:** In `src/bin/bal-server.rs` and `src/bin/bal-pusher.rs`, `sqlite::open(...).unwrap()` was replaced with `db::open_db(...)` with safe error handling (return `Err` in the server, `std::process::exit(1)` in the pusher with a log error).
|
|
||||||
- **Remaining (ops):** Ensure the database file is owned by the `bal` user and not writable by any other user (`chmod 600`). The database file should not reside on a shared or network drive.
|
|
||||||
**Regression tests:** `tests/db_path_validation.rs` (5 tests covering traversal, forbidden absolute paths, symlink, WAL pragma, and valid relative paths). All passing.
|
|
||||||
**Status:** Fixed. **Priority:** Medium.
|
|
||||||
|
|
||||||
### 7. ZMQ Authentication and Encryption (MEDIUM)
|
### 8. Missing HTTPS / Insecure Server Communication (FIXED)
|
||||||
**Location:** `src/bin/bal-pusher.rs`.
|
**Severity:** HIGH | **Status:** Fixed (Infrastructure)
|
||||||
**Description:** The ZMQ connection to the `bitcoind` is a plaintext TCP connection (`zmqpubhashblock=tcp://127.0.0.1:28332`). There is no ZMQ authentication (ZAP), no username/password, and no encryption (ZMQ_CURVE or ZMQ_GSSAPI). If the ZMQ port is accessible from the network (not just `127.0.0.1`), any attacker can subscribe to the `hashblock` or `rawblock` topics. The `rawblock` topic is particularly sensitive because it sends full block data, which is large and could be used to fingerprint the `bal` system. More importantly, the pusher does not verify that the `hashblock` is from the intended `bitcoind` node. If an attacker can inject a fake ZMQ message, they could trigger the pusher to evaluate the transactions and potentially broadcast them at an incorrect time, or cause a DoS.
|
**Location:** Nginx configuration, `contrib/nginx/bal-server.conf`
|
||||||
**Impact:**
|
**Description:** TLS termination via Nginx reverse proxy. The `bal-server` intentionally does not implement TLS.
|
||||||
- If the ZMQ port is exposed, an attacker can intercept the `rawblock` data to get the full block contents, which could be used to fingerprint the node or the system.
|
**Mitigation Applied:**
|
||||||
- An attacker can send a fake `hashblock` message to the pusher, causing it to try to evaluate the database. If the pusher is not idempotent, it could cause duplicate or incorrect RPC requests.
|
- Dedicated Nginx template with `listen 443 ssl http2`, Let's Encrypt paths.
|
||||||
**Mitigation:**
|
- Security headers: `X-Frame-Options`, `X-Content-Type-Options`, `Referrer-Policy`.
|
||||||
- Bind `zmqpubhashblock` and `zmqpubrawblock` to `127.0.0.1` (or `127.0.0.1:28332`) and ensure the firewall blocks external access to the ZMQ port (e.g., port 28332). Use a firewall (e.g., `iptables`, `ufw`) to deny external access to port 28332.
|
- `client_max_body_size` matching `BAL_SERVER_ACTIX_MAX_BODY_SIZE`.
|
||||||
- If the ZMQ port must be on a public interface, use ZMQ_CURVE with public-key cryptography, or ZMQ_GSSAPI with TLS. This is a more advanced solution but provides strong authentication and encryption for the ZMQ channel.
|
- HTTP 80 redirect to HTTPS.
|
||||||
- If not using ZMQ_CURVE, use `zmqpubhashblock` with a firewall that blocks the public port for port 28332.
|
- Deployment checklist ensures no accidental plain HTTP exposure.
|
||||||
- The `bal` service should not listen on all interfaces (0.0.0.0) unless necessary. It is better to listen only on `127.0.0.1` if the server is behind a reverse proxy (like Nginx) or if the server is only accessible from the local machine.
|
|
||||||
**Status:** Open. **Priority:** Medium.
|
|
||||||
|
|
||||||
### 8. Missing HTTPS / Insecure Server Communication (HIGH)
|
### 9. Missing Input Validation (FIXED)
|
||||||
**Location:** `src/bin/bal-server.rs` (TCP server), Nginx configuration.
|
**Severity:** MEDIUM | **Status:** Fixed
|
||||||
**Description:** The `bal-server` is a plain HTTP server. It does not have TLS or SSL support. To provide HTTPS, an external reverse proxy like Nginx is recommended. However, if the server is exposed to the internet directly, the entire transaction data will be sent over unencrypted HTTP. This includes the raw transaction details and the user IP, which is a privacy risk. An attacker on the same network as the server or client can intercept the request and see the transaction details or the `welist` data.
|
**Location:** `src/bin/bal-server.rs`
|
||||||
**Impact:**
|
**Description:** Network, txid, and content validation.
|
||||||
- If the server is directly exposed to the internet, the transaction data is sent in plaintext, making it vulnerable to sniffing and MitM attacks.
|
**Mitigation Applied:**
|
||||||
- If the reverse proxy is not configured with TLS, the server will be insecure and might be vulnerable to a `HTTP Host Header Injection` or `HTTP Header Injection` attack if the server uses the Host header to determine the routing.
|
- Network validation: `NETWORKS.contains(¶m.as_str())` before processing. Unknown networks return 404.
|
||||||
**Mitigation:**
|
- Txid validation: `echo_search` requires exactly 64 ASCII hex characters. Non-hex or wrong length returns 400.
|
||||||
- ✅ **Nginx config extracted:** The inline Nginx block from `contrib/download_and_install_bal.sh` was extracted into a dedicated, auditable template: `contrib/nginx/bal-server.conf`. It includes:
|
- XPub address caching: `get_all_addresses_by_xpub` loads all addresses once per batch (O(1) lookup), eliminating N+1 queries.
|
||||||
- `listen 443 ssl http2;` with Let's encrypt paths
|
- Content-Length: Handled by actix-web `PayloadConfig` size limit.
|
||||||
- `proxy_pass` to `http://127.0.0.1:9137` only
|
**Regression Tests:** `tests/input_validation_tests.rs` (4 tests).
|
||||||
- `client_max_body_size 1m` matching `BAL_SERVER_ACTIX_MAX_BODY_SIZE`
|
|
||||||
- `X-Frame-Options`, `X-Content-Type-Options`, `Referrer-Policy` security headers
|
|
||||||
- HTTP 80 redirect to HTTPS
|
|
||||||
- Optional `limit_req` / `limit_conn` directives (commented, ready for activation)
|
|
||||||
- ✅ **Bind warning:** `.env.example` and `bal-server.env` updated with explicit warning: `!!! Never bind to 0.0.0.0. Use 127.0.0.1 and place Nginx with TLS in front.`. Default bind address is `127.0.0.1`.
|
|
||||||
- ✅ **Deployment checklist:** `docs/07_deployment_and_ops.md` now includes a step-by-step "Production Deployment Checklist" covering Nginx TLS, firewall rules, DB permissions, ZMQ port blocking, and logging hardening.
|
|
||||||
- **Note:** This is an **infrastructure hardening**, not a code change. The `actix-web` server intentionally does not implement TLS — it is the reverse proxy's responsibility. The checklist ensures no operator accidentally exposes plain HTTP to the internet.
|
|
||||||
**Status:** Fixed (Documented/Infrastructure). **Priority:** High.
|
|
||||||
|
|
||||||
### 9. Missing Input Validation (MEDIUM)
|
### 10. Information Leakage (MITIGATED)
|
||||||
**Location:** `src/bin/bal-server.rs` (e.g., `pushtxs` endpoint).
|
**Severity:** LOW | **Status:** Mitigated
|
||||||
**Description:** While the server does check if the transaction is valid and the fee is correct, it does not validate the `Content-Type` or the `Content-Length` of the request body. It also does not validate the `network` string before using it in the path. The `network` string is directly used to match the database table, which could be a potential SQL injection or DoS vector if the string is not a known network (e.g., `bitcoin`, `testnet`). The `searchtx` endpoint also does not validate the `txid` format and uses it in the SQL query.
|
**Location:** Application logs
|
||||||
**Impact:** An attacker could send a request with a malformed `network` or `txid`, which could cause unexpected database behavior, or a server error (e.g., a 500 error if the database table is not found), or a DoS if the SQL query is not handled properly. The `network` value is used as a string in the query, which could be used to bypass the database if it is not validated.
|
**Description:** Raw file logging (`valid_txs`/`invalid_txs`) has been removed. `info!`/`warn!` macros may still log txid and details in application logs.
|
||||||
**Mitigation:**
|
**Mitigation (Operational):** Set production `RUST_LOG` to `warn` or higher. Log files restricted with `chmod 600`.
|
||||||
- Add a strict validation step for the `network` parameter. Use an `enum` or a `HashSet` of known network names. If the `network` is not in the list, return a `404` error immediately, before accessing the database.
|
|
||||||
- Add a strict validation step for the `txid` in the `searchtx` request. A `txid` must be a 64-character hexadecimal string. If `txid` is not hex or not 64 chars, return `400 Bad Request` immediately.
|
|
||||||
- Add a `Content-Length` check to the request body. If it's not set, or if it's too large, return `411 Length Required` or `413 Payload Too Large`.
|
|
||||||
**Status:** Fixed. **Priority:** Medium.
|
|
||||||
- ✅ **Network validation:** `echo_info`, `echo_stats`, and `echo_push` handlers now verify `NETWORKS.contains(¶m.as_str())` **before** calling `get_net_config`. Unknown networks (e.g., `GET /attacker/info`) return `404 Not Found` immediately, preventing the previous fallback to `mainnet`.
|
|
||||||
- ✅ **txid validation:** `echo_search` now validates that the request body is exactly **64 ASCII hex characters** (0-9, a-f, A-F). Any other length or non-hex content returns `400 Bad Request` before touching the database.
|
|
||||||
- ✅ **Performance optimization (N+1 fix):** The `SELECT * FROM tbl_address WHERE address=?` query inside the per-output loop of `echo_push` was replaced by a single `db.get_all_addresses_by_xpub(&db, &xpub)` call executed once per batch, returning a `HashSet<String>`. The per-output lookup is now an O(1) memory check, eliminating the N+1 query bottleneck.
|
|
||||||
- **Content-Length:** Already handled by `Actix PayloadConfig` size limit (see point 4).
|
|
||||||
- ✅ **SQL injection in `echo_stats` fixed:** The `chain` parameter was previously interpolated directly into a `format!` string (`"WHERE chain = '{}'"`) before being passed to `db.iterate`. It has been replaced by a prepared statement with `stmt.bind((1, Value::String(...)))` and a loop over `stmt.next()`. An index `idx_stats_chain` was also added on `tbl_stats(chain)` to ensure efficient filtering.
|
|
||||||
**Regression tests:** `tests/input_validation_tests.rs` (4 tests: xpub address cache, empty cache, network validation, txid hex/64 validation). All passing.
|
|
||||||
|
|
||||||
### 10. Information Leakage (LOW)
|
### 11. `bal-stats.rs.dontcompile` (REMOVED)
|
||||||
|
**Severity:** LOW | **Status:** Removed
|
||||||
|
**Description:** The broken HTML report generator file no longer exists in the source tree.
|
||||||
|
|
||||||
### 10. Information Leakage (LOW)
|
---
|
||||||
**Location:** `valid_txs` and `invalid_txs` files, `bal-server` error messages.
|
|
||||||
**Description:** The `bal-server` returns `500 Internal Server Error` in some cases. The `bal-server` does not log the raw request body or the user IP in all cases, but it does log the transaction details and some error messages in the `valid_txs` and `invalid_txs` log files. The `valid_txs` file contains the raw transaction details, which could leak private information if the log file is not protected. The `invalid_txs` file contains the raw error messages from the `bitcoind` RPC, which could be used to fingerprint the `bitcoind` version or its configuration. The `valid_txs` and `invalid_txs` files contain the raw transaction details, including the user IP and the transaction details, which could be used to identify the user's behavior or the network's topology. The `invalid_txs` file contains the raw error message from the `bitcoind` RPC, which is a potential information leakage (e.g., `bad-txns-inputs-missingorspent`). This message could be used to fingerprint the `bitcoind` version or the mempool state.
|
|
||||||
**Impact:**
|
|
||||||
- If the log files are not protected, the raw transaction details could be read by unauthorized users or processes running on the same machine. If the log files are accessible, the attacker could see the transaction details and potentially use them to link addresses to users or services.
|
|
||||||
- The `invalid_txs` file contains the raw error messages from the `bitcoind` RPC, which could be used to fingerprint the node or its configuration. For example, `bad-txns-inputs` suggests that the input is not available or not valid, which is a mempool state. If the attacker can read these logs, they can deduce the state of the mempool.
|
|
||||||
**Mitigation:**
|
|
||||||
- Ensure the `valid_txs` and `invalid_txs` files are not stored in the same directory as the `bal.db` or `private_key.pem`. If they are, they should be protected with `chmod 600` and only readable by the `bal` user.
|
|
||||||
- The `bal-server` should not log the raw request body or the transaction details in the `valid_txs` log file. It should only log the `txid` and the result, not the full raw transaction. The `invalid_txs` should log the error message, but not the raw transaction details or the user IP. If the server logs the raw transaction, the attacker could read it by reading the log files or the memory of the server process if it crashes.
|
|
||||||
**Status:** Partially Fixed. **Priority:** Medium. The raw file logging (`valid_txs`/`invalid_txs`) in `bal-pusher.rs` has been commented out (lines 271-290). The `bal-server` `actix-web` middleware logs only requests/responses via `Logger::default()`. However, `info!`/`warn!` macros may still log `txid` and other details in application logs. Ensure production `RUST_LOG` level is set to `warn` or higher and log files are restricted with `chmod 600`.
|
|
||||||
|
|
||||||
### 11. `valid_txs` Log File Privacy (LOW)
|
|
||||||
**Location:** `valid_txs`, `invalid_txs` files.
|
|
||||||
**Description:** The `valid_txs` and `invalid_txs` files are plain text log files. `valid_txs` contains the transaction details and the raw hex. `invalid_txs` contains the error messages and the raw hex of the failed transactions. These files do not contain the user IP, but they do contain the raw transaction details and the `txid`, which is enough to fingerprint the transaction. If the `valid_txs` file is accessible to the public, the transaction details could be read by anyone. Also, the `valid_txs` file is not encrypted or compressed.
|
|
||||||
**Impact:** The raw transaction details could be read by anyone. If the user is using the `valid_txs` file to track the transactions, it could be used for privacy analysis or to fingerprint the transaction history. If the `valid_txs` file is leaked, it could be used to link the user's transaction to the `bal-server` and identify the user or their behavior. The `valid_txs` file is not encrypted, and it is not protected by any authentication. If the server is compromised, these files will be accessible to the attacker, which is a privacy risk.
|
|
||||||
**Mitigation:**
|
|
||||||
- Ensure the `valid_txs` and `invalid_txs` files are not accessible to the public. If the server is running on a shared directory, use `chmod 600` to restrict access. If the server is not, they are accessible by default.
|
|
||||||
- The `valid_txs` and `invalid_txs` files should not be stored in the same directory as the `bal.db` or `private_key.pem`. They should be in a separate directory.
|
|
||||||
- The `valid_txs` and `invalid_txs` files should be rotated and compressed to avoid growing infinitely. The `bal-server` should also not log the entire raw transaction in the `valid_txs` file. It should only log the `txid` and the status. This will prevent the leak of the transaction details if the log file is compromised.
|
|
||||||
**Status:** Fixed. **Priority:** Low. The raw file logging (`valid_txs` and `invalid_txs`) in `bal-pusher.rs` has been removed (commented out). The structured logging only logs `txid` and timestamps, not full raw transactions. Ensure log files are protected with `chmod 600` and are in a separate directory from the database and keys.
|
|
||||||
|
|
||||||
### 12. `bal-stats.rs.dontcompile` (LOW)
|
|
||||||
**Location:** `src/bin/bal-stats.rs.dontcompile` (removed).
|
|
||||||
**Description:** This file was a broken, incomplete HTML report generator that directly queried `tbl_tx` and wrote `bal_status.html` to the local filesystem. It contained hardcoded SQL queries and lacked security checks. If accidentally compiled or renamed, it could leak transaction details or expose the database contents via an HTML file. It could also bypass security checks or rate limiting if accessed directly.
|
|
||||||
**Impact:** If the file was compiled or run, it could create an unprotected HTML report with sensitive database contents, accessible if the server was serving static files.
|
|
||||||
**Mitigation:**
|
|
||||||
- ✅ **Removed:** File `src/bin/bal-stats.rs.dontcompile` deleted from source tree. No longer a risk for accidental compilation or exposure.
|
|
||||||
**Status:** Fixed (File removed). **Priority:** Low.
|
|
||||||
|
|
||||||
## Hardening Recommendations
|
## Hardening Recommendations
|
||||||
|
|
||||||
### System-Level
|
### System-Level
|
||||||
1. **Run the service as a non-root user:** Use the `bal-systemd` hardening (e.g., `ProtectSystem=full, NoNewPrivileges, PrivateDevices`). The `bal-server` should not be exposed to the internet directly. Use a reverse proxy or a firewall.
|
1. Run as non-root user with systemd hardening (`ProtectSystem=full`, `NoNewPrivileges`, `PrivateDevices`, `MemoryDenyWriteExecute`).
|
||||||
2. **Use `firewall` (e.g., `iptables`, `netfilter`, or `nftables`) to block all inbound ports except the HTTPS port (443) and the SSH port (22).** The HTTP port should not be exposed to the internet. The `bal-server` should be on a separate port or on `127.0.0.1`.
|
2. Use firewall to block all inbound ports except HTTPS (443) and SSH (22).
|
||||||
3. **Use a `VPN` or `Tor` for the `welist` connection.** If the `welist` server is on a public network, use a VPN or Tor to prevent the `welist` IP address from being exposed to the `bal-pusher`.
|
3. Use VPN or Tor for `welist` connections if on public network.
|
||||||
4. **Run the `bal-server` in a `chroot` or `docker` container.** The server should be isolated from the rest of the system. If the server is compromised, the attacker will not be able to access the `bal.db` or `private_key.pem` files.
|
4. Run in a container or chroot for isolation.
|
||||||
5. **Enable the `SELinux` or `AppArmor` profile for the `bal-server` and `bal-pusher` binaries.** This will prevent the attacker from accessing the database or the private key if the binary is compromised.
|
5. Enable SELinux or AppArmor profiles for the binaries.
|
||||||
6. **Use a `read-only` file system for the `bal-server` binary.** The server should be read-only to prevent the attacker from modifying the binary or the configuration files. The `bal-server` should be in a `chroot` jail with the `bal` user.
|
6. Use read-only filesystem for the server binary.
|
||||||
7. **Use a `network` firewall to block the outbound traffic from the `bal-server` to the internet.** If the server only needs to communicate with the `bal-pusher` and the `nginx` proxy, it should not have internet access. If the server is compromised, it will not be able to download malware or communicate with a C2 server.
|
|
||||||
|
|
||||||
### Application-Level
|
### Application-Level
|
||||||
1. **Add `Rate Limiting`:** Add a rate limiter to the `bal-server` to prevent DDoS or abuse. The `bal-server` should limit the number of requests per IP per minute or per hour. It should also limit the number of `pushtxs` requests to avoid filling the database with malicious requests. A `HashMap` or `Redis` can be used to store the rate limiter state.
|
1. **Rate Limiting:** Implemented via `actix-governor` with token-bucket per client IP. `RealIpKeyExtractor` identifies clients behind reverse proxy using `X-Real-IP` / `X-Forwarded-For` headers. Trusted proxy IP configurable via `BAL_SERVER_TRUSTED_PROXY`.
|
||||||
2. **Add `Input Validation`:** Add strict input validation for all endpoints. The `network`, `txid`, and `hex` parameters must be validated. The `txid` must be 64 hex chars, the `hex` must be a valid Bitcoin hex string, and the `network` must be a known network.
|
2. **Input Validation:** Network enum check, txid hex validation, body size limits.
|
||||||
3. **Add `HTTPS`:** The `Nginx` configuration should be used to terminate TLS and provide HTTPS. The `bal-server` should only run on `127.0.0.1` to avoid being exposed to the public internet.
|
3. **HTTPS:** Via Nginx reverse proxy with Let's Encrypt.
|
||||||
4. **Add `WAL` for `SQLite`:** Enable the `Write-Ahead Logging` (WAL) mode for the `bal` database to prevent database locking or data corruption when multiple processes access the database at the same time. This is a standard practice for SQLite and is supported by the `sqlite` crate. Enable it via `PRAGMA journal_mode=WAL; PRAGMA synchronous=NORMAL;` upon the first connection.
|
4. **WAL Mode:** Enabled with retry logic for concurrent access.
|
||||||
5. **Add `ZMQ Authentication`:** Use `ZMQ_CURVE` or `ZMQ_GSSAPI` to authenticate the ZMQ connection. If the `ZMQ` connection is over a public network, the `bal-pusher` should be authenticated and the traffic should be encrypted. Alternatively, use `ZMQ_RCVTIMEO` and `ZMQ_SNDTIMEO` to set a connection timeout to prevent blocking forever if the socket is disconnected or the `bitcoind` node is not available.
|
5. **ZMQ Timeout:** 5-second receive timeout prevents infinite blocking.
|
||||||
6. **Add `Transaction Size Limits`:** The `bal-pusher` should have a `MAX_TRANSACTIONS_PER_SECOND` and `MAX_TRANSACTIONS_PER_BLOCK` config value. This will prevent the pusher from sending too many transactions to the `bitcoind` node and overloading it. If the database is full of many transactions, the pusher should only send a small batch at a time (e.g., `1` or `10` transactions per block, or `5` per minute) to avoid overwhelming the RPC queue or the node.
|
6. **Transaction Size Limits:** Configurable via rate limiting and body size.
|
||||||
7. **Add `ZMQ Retry`:** The `bal-pusher` should implement a retry mechanism for the `sendrawtransaction` and ZMQ connection. If the RPC or ZMQ call fails, it should wait for the next block before trying again. The pusher should not panic or stop on the first failure. It should be resilient and continue operating even if the network is down or the `bitcoind` node is restarting. The `ZMQ` socket should be reconfigured with `ZMQ_RECONNECT_IVL` and `ZMQ_MAXMSGSIZE` to avoid reconnecting too aggressively or receiving unbounded messages. If the connection is lost, the `ZMQ` should wait for the `bitcoind` to come back and not try to reconnect immediately. The pusher should also handle `SIGTERM` and `SIGINT` gracefully and stop the ZMQ connection before exiting.
|
7. **ZMQ Retry:** Reconnect logic with timeout-based detection.
|
||||||
8. **Add `Transaction Fee Limits`:** The `bal-server` should not accept transactions with a fee of `0`. It should also not accept transactions with a fee higher than a reasonable limit (e.g., `100000` satoshi for a `10 KB` transaction). This will prevent the user from sending too many transactions with a very low or high fee. This will limit the risk of a DoS attack where the attacker fills the database with many invalid transactions. The `bal-server` should not accept a transaction that is not valid or has the wrong `network`. Also, the `bal-server` should not accept a transaction with a very high `locktime` (e.g., `9999999999`) to prevent the database from becoming too large or to prevent the pusher from being blocked by a very far future locktime. The `bal-server` should only accept locktime values that are reasonable for the current blockchain height.
|
8. **Fee Limits:** Per-network `fixed_fee` configuration.
|
||||||
9. **Add `Transaction Fee Limits`:** The `bal-server` should not accept a transaction from a `network` if the `network` is not supported. Only the `regtest`, `testnet`, `testnet4`, `signet`, and `bitcoin` networks are supported. If the `network` is not in the list, the server should reject the request and not process it. The server should also not accept a transaction from a different network than the one it is configured for. If the server is configured for `regtest`, it should not accept `bitcoin` transactions. This will prevent the attacker from using the wrong network and sending a transaction that is not valid for the current network. The server should not accept a transaction that has a different `network` than the `our_address` network. If the `network` is not valid, the server should not process the request and should return a `404` error. The server should not accept a transaction that is for a different network than the one it is configured for. This will prevent the attacker from using the server to process transactions for a different network.
|
9. **Network Limits:** Only known networks accepted (bitcoin, testnet, testnet4, signet, regtest).
|
||||||
10. **Add `Transaction Time Limits`:** The `bal-server` should not accept a transaction with a locktime that is too far in the future. If the locktime is greater than `500000000`, it is a timestamp. The server should only accept locktime values that are within a reasonable timeframe (e.g., within the next year or a few months). If the locktime is in the past, the server should not accept it or it should be marked as a `0` locktime and processed immediately. If the locktime is too far in the future, it should be rejected. If the locktime is a block height, it should be within the next `100000` blocks or the next few months. If the locktime is a timestamp, it should be within the next few years or a reasonable timeframe. If the locktime is too far in the future, it will be impossible to process, and it will fill the database with invalid transactions. The `bal-server` should not accept a transaction with a `locktime` of `0` if `0` is a special case. If the `locktime` is `0`, it should be processed immediately and not stored in the database. If `0` is treated as a special case, the server should not store it as a pending transaction. If the `locktime` is `0`, the transaction should be sent immediately or processed as a normal transaction without a timelock. If the locktime is `0`, it should be treated as a normal transaction and sent to the `bitcoind` node immediately. The server should not send a `0` locktime transaction to the `pusher` because it is not a pending transaction. The pusher should not process a `0` locktime transaction because it is not waiting for a specific time or block height. If the `locktime` is `0`, it should be handled in the `bal-server` and not in the `bal-pusher`. The server should not store the `0` locktime transaction in the database. If a `0` locktime transaction is sent, the server should not store it as a pending transaction but should send it to the `bitcoind` node or process it immediately. If the `0` locktime is a special case, the server should not treat it as a pending transaction and should not send it to the `pusher`. If the `locktime` is `0`, the `bal-server` should not send it to the `bitcoind` network. If the `0` locktime is a valid transaction, the server should not send it to the pusher. If the `0` locktime is a special case, it should be handled in the `bal-server` and not in the `bal-pusher`. If the `0` locktime is a special case, it should not be sent to the `pusher`. If the `0` locktime is a special case, the server should not treat it as a pending transaction. If the `0` locktime is a special case, the server should not process it in the `pu
|
10. **Locktime Reasonableness:** Locktime compared against blockchain height and median time with threshold-based distinction.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Regression Test Suite
|
||||||
|
|
||||||
|
| Test File | Tests | Coverage |
|
||||||
|
|-----------|-------|----------|
|
||||||
|
| `tests/sql_injection_tests.rs` | 3 | Parameterized queries, injection prevention |
|
||||||
|
| `tests/panic_regression_tests.rs` | 2 | Mutex poisoning recovery, NULL value handling |
|
||||||
|
| `tests/ssrf_tests.rs` | 4+ | URL validation, internal IP blocking |
|
||||||
|
| `tests/secret_leakage_tests.rs` | 3 | .gitignore, no tracked secrets, no hardcoded tokens |
|
||||||
|
| `tests/input_validation_tests.rs` | 4 | Address caching, network validation, txid hex validation |
|
||||||
|
| `tests/db_path_validation.rs` | 5 | Path traversal, forbidden dirs, symlinks, WAL pragma, valid paths |
|
||||||
|
| `src/validation.rs` (inline) | 8 | SSRF URL validation unit tests |
|
||||||
|
|||||||
@@ -8,58 +8,93 @@
|
|||||||
|
|
||||||
## Source Code References
|
## Source Code References
|
||||||
|
|
||||||
| Module/Component | File Path | Key Lines/Details |
|
| Module/Component | File Path | Key Details |
|
||||||
|---|---|---|
|
|---|---|---|
|
||||||
| Library | `src/lib.rs` | Exports `db` and `xpub` modules |
|
| Library | `src/lib.rs` | Exports `db`, `validation`, `xpub` modules |
|
||||||
| Database | `src/db.rs` | SQL schema, `execute_insert`, batched inserts |
|
| Database | `src/db.rs` | SQL schema, `open_db`, `execute_insert`, WAL mode, path validation |
|
||||||
| XPub/Address Derivation | `src/xpub.rs` | `parse_xpub`, `derive_address`, `get_descriptor`, BIP-84 |
|
| XPub/Address Derivation | `src/xpub.rs` | `new_address_from_xpub`, `get_bitcoincore_descriptor`, `calculate_fingerprint`, BIP-84 |
|
||||||
| HTTP Server | `src/bin/bal-server.rs` | Hyper + Tokio, routes, handlers, `pushtxs` logic |
|
| SSRF Validation | `src/validation.rs` | `is_valid_welist_url`, blocks private/internal IPs |
|
||||||
| Async Pusher | `src/bin/bal-pusher.rs` | ZMQ `hashblock`, RPC + Reqwest, `send_stats` |
|
| HTTP Server | `src/bin/bal-server.rs` | Actix-web 4.9.0, rate limiting, 7 routes, `Arc<Mutex<Connection>>` |
|
||||||
|
| Async Pusher | `src/bin/bal-pusher.rs` | ZMQ `hashblock`, RPC + Reqwest, Ed25519 signing, `calculate_stats` |
|
||||||
|
|
||||||
| Stats (broken) | `src/bin/bal-stats.rs.dontcompile` | Not compiled, incomplete HTML report generator |
|
| Script/Config | Path | Purpose |
|
||||||
| Release script | `make_release.sh` | Hardcoded token, `cargo install` |
|
|---|---|---|
|
||||||
|
| Release script | `make_release.sh` | Builds release, creates tag, uploads to Gitea (token from `.env`) |
|
||||||
| DB download script | `download_bal_db.sh` | `scp` from remote |
|
| DB download script | `download_bal_db.sh` | `scp` from remote |
|
||||||
| Server dev script | `bal-server.sh` | Sources `bal-server.env`, `cargo run` |
|
| Server dev script | `bal-server.sh` | Sources `bal-server.env`, `cargo run` |
|
||||||
| Pusher dev script | `bal-pusher.sh` | Sources `bal-pusher.env`, `cargo run` |
|
| Pusher dev script | `bal-pusher.sh` | Sources `bal-pusher.env`, `cargo run` |
|
||||||
| Send transaction script | `sendtx.sh` | `bitcoin-cli` wrapper |
|
| Send transaction script | `sendtx.sh` | `bitcoin-cli` wrapper for testing |
|
||||||
| Utility scripts | `lib.sh` | Colored echo functions |
|
| Utility scripts | `lib.sh` | Colored echo functions |
|
||||||
| Contrib (install) | `contrib/download_and_install_bal.sh` | Nginx, Certbot, systemd setup, xpub via argument |
|
| Contrib (install) | `contrib/download_and_install_bal.sh` | Nginx, Certbot, systemd setup |
|
||||||
| Contrib (install bitcoind) | `contrib/download_and_install_bitcoincore.sh` | Bitcoind download, GPG verify, systemd, config |
|
| Contrib (install bitcoind) | `contrib/download_and_install_bitcoincore.sh` | Bitcoind download, GPG verify, systemd, config |
|
||||||
| Contrib (install Tor) | `contrib/install_tor.sh` | Tor repository, `ControlPort 9051` || Systemd service | `bal-server.service` | Runs as `bal` user, `ProtectSystem`, `MemoryDenyWriteExecute` |
|
| Contrib (install Tor) | `contrib/install_tor.sh` | Tor repository, `ControlPort 9051` |
|
||||||
| Systemd service | `bitcoind.service` | `zmqpubhashblock` setup |
|
| Nginx template | `contrib/nginx/bal-server.conf` | TLS termination, security headers, rate limiting |
|
||||||
| Systemd service | `tbitcoind.service` | Testnet `bitcoind` |
|
| Dockerfile | `Dockerfile` | Multi-stage build from source, non-root user, tini, healthcheck |
|
||||||
|
| Dockerfile.release | `Dockerfile.release` | Download latest release from Gitea, SHA-256 verification |
|
||||||
|
|
||||||
|
| Systemd Service | File | Purpose |
|
||||||
|
|---|---|---|
|
||||||
|
| `bal-server.service` | `bal-server.service` | Runs as `bal` user, hardened |
|
||||||
|
| `bitcoind.service` | `bitcoind.service` | `zmqpubhashblock` setup for mainnet |
|
||||||
|
| `tbitcoind.service` | `tbitcoind.service` | Testnet `bitcoind` |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Dependency Map (from `Cargo.toml`)
|
## Dependency Map (from `Cargo.toml`)
|
||||||
|
|
||||||
|
### Core Dependencies
|
||||||
|
|
||||||
| Dependency | Version | Purpose |
|
| Dependency | Version | Purpose |
|
||||||
|---|---|---|
|
|---|---|---|
|
||||||
| `base64` | `0.22.1` | Encoding/decoding in `pushtxs` / xpub |
|
|
||||||
| `bs58` | `0.4.0` | Base58 encoding for Bitcoin addresses / xpubs |
|
|
||||||
| `bytes` | `1.2` | Byte handling for `hyper`/`reqwest` |
|
|
||||||
| `bitcoin` | `0.32.5` | Transaction parsing, `ScriptBuf`, `Address`, `Xpub`, `Transaction` |
|
| `bitcoin` | `0.32.5` | Transaction parsing, `ScriptBuf`, `Address`, `Xpub`, `Transaction` |
|
||||||
| `bitcoincore-rpc` | `0.19.0` | RPC client for `bitcoin-cli` methods (`sendrawtransaction`, `getblockchaininfo`) |
|
| `bitcoincore-rpc` | `0.19.0` | RPC client (`sendrawtransaction`, `getblockchaininfo`) |
|
||||||
| `bitcoincore-rpc-json` | `0.19.0` | JSON types for Bitcoin RPC responses |
|
| `bitcoincore-rpc-json` | `0.19.0` | JSON types for Bitcoin RPC responses |
|
||||||
| `byteorder` | `1.5.0` | Reading block timestamp from raw block header (big-endian) `u32` |
|
| `sqlite` | `0.34.0` | Direct SQLite C bindings, raw SQL queries |
|
||||||
| `confy` | `0.6.1` | Loading `.toml` configuration files (default config) |
|
| `serde` | `1.0.152` | Serialization (`derive` feature) |
|
||||||
| `chrono` | `0.4.40` | `Date` and `DateTime` handling for timestamps and `report` |
|
| `serde_json` | `1.0.116` | JSON parsing for HTTP request/response |
|
||||||
| `env_logger` | `0.11.5` | Log level configuration via `RUST_LOG` environment variable |
|
|
||||||
| `hex` | `0.4.3` | Hex encoding for transaction serialization and raw bytes |
|
|
||||||
| `hex-conservative` | `0.1.1` | Hex parsing (used for Bitcoin hex strings) |
|
|
||||||
| `hyper` | `1.3.1` | Async HTTP server (features: `http1`, `server`) |
|
|
||||||
| `hyper-util` | `0.1.3` | Hyper utilities, `TokioIo` |
|
|
||||||
| `http-body-util` | `0.1` | HTTP body collection and streaming utilities |
|
|
||||||
| `log` | `0.4.21` | Logging facade (used by `env_logger`) |
|
|
||||||
| `openssl` | `0.10.74` | TLS/SSL, `vendored` feature to avoid system dependency |
|
|
||||||
| `sha2` | `0.10.8` | SHA-256 hashing (used in transaction validation or address generation) |
|
|
||||||
| `serde` | `1.0.152` | Serialization of config objects and JSON responses (`derive` feature) |
|
|
||||||
| `serde_json` | `1.0.116` | JSON parsing for HTTP request bodies and API responses |
|
|
||||||
| `sqlite` | `0.34.0` | Direct SQLite C bindings, raw SQL queries, no ORM |
|
|
||||||
| `regex` | `1.10.4` | `RegExp` parsing for URL matching (e.g., `network` regex) in `bal-server` |
|
|
||||||
| `reqwest` | `0.12.24` | HTTP client (`json` + `socks` features) for `welist` stats POST |
|
|
||||||
| `tokio` | `1` | Async runtime (`rt`, `net`, `macros`, `rt-multi-thread`) |
|
| `tokio` | `1` | Async runtime (`rt`, `net`, `macros`, `rt-multi-thread`) |
|
||||||
| `zmq` | `0.10.0` | ZeroMQ for `hashblock`/`rawblock` notifications |
|
| `sha2` | `0.10.8` | SHA-256 hashing |
|
||||||
|
| `bs58` | `0.4.0` | Base58 encoding for xpubs |
|
||||||
|
| `hex` | `0.4.3` | Hex encoding for transaction serialization |
|
||||||
|
| `regex` | `1.10.4` | Regular expressions |
|
||||||
|
| `log` | `0.4.21` | Logging facade |
|
||||||
|
| `env_logger` | `0.11.5` | Log level via `RUST_LOG` |
|
||||||
|
| `url` | `2` | URL parsing for SSRF validation |
|
||||||
|
|
||||||
|
### Server-Only Dependencies (feature: `server`)
|
||||||
|
|
||||||
|
| Dependency | Version | Purpose |
|
||||||
|
|---|---|---|
|
||||||
|
| `actix-web` | `4.9.0` | Async HTTP server framework |
|
||||||
|
| `actix-governor` | `0.6.0` | Rate limiting middleware (token-bucket) |
|
||||||
|
| `actix-rt` | `2.10.0` | Actix async runtime |
|
||||||
|
| `chrono` | `0.4.40` | Date/Time handling for timestamps |
|
||||||
|
| `hex-conservative` | `0.1.1` | Hex parsing for Bitcoin hex strings |
|
||||||
|
|
||||||
|
### Pusher-Only Dependencies (feature: `pusher`)
|
||||||
|
|
||||||
|
| Dependency | Version | Purpose |
|
||||||
|
|---|---|---|
|
||||||
|
| `zmq` | `0.10.0` | ZeroMQ for `hashblock` notifications |
|
||||||
|
| `reqwest` | `0.12.24` | HTTP client (`json` + `socks` features) for `welist` stats POST |
|
||||||
|
| `byteorder` | `1.5.0` | Reading block timestamp from raw block header |
|
||||||
|
| `base64` | `0.22.1` | Encoding/decoding for Ed25519 signatures |
|
||||||
|
| `ed25519-dalek` | `2` | Ed25519 signing (`pem` + `pkcs8` features) |
|
||||||
|
| `bytes` | `1.2` | Byte handling |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Test Files
|
||||||
|
|
||||||
|
| Test File | Tests | Coverage |
|
||||||
|
|-----------|-------|----------|
|
||||||
|
| `tests/sql_injection_tests.rs` | 3 | SQL injection prevention |
|
||||||
|
| `tests/panic_regression_tests.rs` | 2 | Panic recovery, NULL handling |
|
||||||
|
| `tests/ssrf_tests.rs` | 4+ | SSRF URL validation |
|
||||||
|
| `tests/secret_leakage_tests.rs` | 3 | Secret protection, .gitignore |
|
||||||
|
| `tests/input_validation_tests.rs` | 4 | Input validation, address caching |
|
||||||
|
| `tests/db_path_validation.rs` | 5 | DB path validation, WAL mode |
|
||||||
|
| `tests/test_endpoints.sh` | Bash | Integration tests for HTTP endpoints |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -67,11 +102,9 @@
|
|||||||
|
|
||||||
| Existing File | Description | Replaced/Managed By KB |
|
| Existing File | Description | Replaced/Managed By KB |
|
||||||
|---|---|---|
|
|---|---|---|
|
||||||
| `README.md` | Installation, environment variables, ZMQ dependency | `07_deployment_and_ops.md` |
|
| `README.md` | Installation, env vars, Docker, per-network config | `07_deployment_and_ops.md` |
|
||||||
| `RPC.md` | API endpoint specification (HTTP methods, paths) | `05_api_reference.md` |
|
| `RPC.md` | API endpoint specification (HTTP methods, paths) | `05_api_reference.md` |
|
||||||
| `AGENTS.md` | Security guidelines, audit rules, baseline commands | `08_security_audit.md` |
|
| `AGENTS.md` | Security guidelines, audit rules, baseline commands | `08_security_audit.md` |
|
||||||
| `update` | Irrelevant saved conversation (Diesel/Axum) | Ignored, not mapped |
|
|
||||||
| `valid_txs` / `invalid_txs` | Logs of past transaction push results | `08_security_audit.md` (Information Leakage) |
|
|
||||||
| `Cargo.toml` | Dependency versions and features | `09_references_and_links.md` (Dependency Map) |
|
| `Cargo.toml` | Dependency versions and features | `09_references_and_links.md` (Dependency Map) |
|
||||||
| `bal-server.service` | `systemd` unit file | `07_deployment_and_ops.md` (Systemd) |
|
| `bal-server.service` | `systemd` unit file | `07_deployment_and_ops.md` (Systemd) |
|
||||||
| `bitcoind.service` | `systemd` unit for `bitcoin` node | `07_deployment_and_ops.md` (Systemd) |
|
| `bitcoind.service` | `systemd` unit for `bitcoin` node | `07_deployment_and_ops.md` (Systemd) |
|
||||||
@@ -81,14 +114,41 @@
|
|||||||
| `bal-server.sh` | Dev server startup script | `07_deployment_and_ops.md` (Bash Scripts) |
|
| `bal-server.sh` | Dev server startup script | `07_deployment_and_ops.md` (Bash Scripts) |
|
||||||
| `bal-pusher.sh` | Dev pusher startup script | `07_deployment_and_ops.md` (Bash Scripts) |
|
| `bal-pusher.sh` | Dev pusher startup script | `07_deployment_and_ops.md` (Bash Scripts) |
|
||||||
| `sendtx.sh` | Test transaction sender | `07_deployment_and_ops.md` (Bash Scripts) |
|
| `sendtx.sh` | Test transaction sender | `07_deployment_and_ops.md` (Bash Scripts) |
|
||||||
| `make_release.sh` | Release script with hardcoded secret | `08_security_audit.md` (Secret Leakage) |
|
| `make_release.sh` | Release script | `07_deployment_and_ops.md` (Bash Scripts) |
|
||||||
| `download_bal_db.sh` | `scp` from remote | `07_deployment_and_ops.md` (Bash Scripts) |
|
| `download_bal_db.sh` | `scp` from remote | `07_deployment_and_ops.md` (Bash Scripts) |
|
||||||
| `generate_keys.sh` | Generate public key from `private_key.pem` | `07_deployment_and_ops.md` (Bash Scripts) |
|
| `generate_keys.sh` | Generate public key from `privkey.pem` | `07_deployment_and_ops.md` (Bash Scripts) |
|
||||||
| `public_key.pem` | Ed25519 public key for stats verification | `05_api_reference.md` (GET `/.pub_key.pem` endpoint) |
|
| `public_key.pem` | Ed25519 public key for stats verification | `05_api_reference.md` (GET `/.pub_key.pem` endpoint) |
|
||||||
| `private_key.pem` / `privkey.pem` / `ec.key` / `chiave_privata.key` | Private keys for stats signing | `08_security_audit.md` (Secret Leakage) |
|
| `privkey.pem` | Private key for stats signing | `08_security_audit.md` (Secret Leakage) |
|
||||||
| `contrib/download_and_install_bal.sh` | Full deployment setup | `07_deployment_and_ops.md` (Nginx, SSL) and `08_security_audit.md` (Hardcoded Secret) |
|
| `contrib/download_and_install_bal.sh` | Full deployment setup | `07_deployment_and_ops.md` (Nginx, SSL) |
|
||||||
| `contrib/download_and_install_bitcoincore.sh` | Bitcoin Core install/verify | `07_deployment_and_ops.md` (Systemd) |
|
| `contrib/download_and_install_bitcoincore.sh` | Bitcoin Core install/verify | `07_deployment_and_ops.md` (Systemd) |
|
||||||
| `contrib/install_tor.sh` | Tor installation script | `07_deployment_and_ops.md` (Tor) |
|
| `contrib/install_tor.sh` | Tor installation script | `07_deployment_and_ops.md` (Tor) |
|
||||||
| `contrib` | Various helper scripts | `07_deployment_and_ops.md` |
|
| `contrib/nginx/bal-server.conf` | Nginx TLS config template | `07_deployment_and_ops.md` (Nginx) |
|
||||||
|
| `Dockerfile` | Multi-stage Docker build | `07_deployment_and_ops.md` (Docker) |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## Build and Release Profile
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[profile.release]
|
||||||
|
opt-level = "z" # Optimize for binary size
|
||||||
|
lto = true # Link-time optimization
|
||||||
|
codegen-units = 1 # Single codegen unit for maximum optimization
|
||||||
|
strip = true # Strip debug symbols
|
||||||
|
panic = "abort" # Abort on panic (smaller binary)
|
||||||
|
```
|
||||||
|
|
||||||
|
## Feature Flags
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[features]
|
||||||
|
default = ["server", "pusher"]
|
||||||
|
server = ["dep:actix-web", "dep:actix-governor", "dep:actix-rt", "dep:chrono", "dep:hex-conservative"]
|
||||||
|
pusher = ["dep:zmq", "dep:reqwest", "dep:byteorder", "dep:base64", "dep:ed25519-dalek"]
|
||||||
|
```
|
||||||
|
|
||||||
|
Build individual binaries:
|
||||||
|
```bash
|
||||||
|
cargo build --bin bal-server --features server
|
||||||
|
cargo build --bin bal-pusher --features pusher
|
||||||
|
```
|
||||||
|
|||||||
@@ -5,34 +5,33 @@ use bitcoin::Network;
|
|||||||
use bitcoincore_rpc::{Auth, Client, Error, RpcApi, bitcoin};
|
use bitcoincore_rpc::{Auth, Client, Error, RpcApi, bitcoin};
|
||||||
use bitcoincore_rpc_json::GetBlockchainInfoResult;
|
use bitcoincore_rpc_json::GetBlockchainInfoResult;
|
||||||
|
|
||||||
use byteorder::{LittleEndian, ReadBytesExt};
|
|
||||||
use ed25519_dalek::{Signer as _, SigningKey, pkcs8::DecodePrivateKey};
|
use ed25519_dalek::{Signer as _, SigningKey, pkcs8::DecodePrivateKey};
|
||||||
use log::{debug, error, info, trace, warn};
|
use log::{debug, error, info, trace, warn};
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use serde::Serialize;
|
use serde::Serialize;
|
||||||
use serde_json::json;
|
use serde_json::json;
|
||||||
use sqlite::{Connection, Value};
|
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::env;
|
use std::env;
|
||||||
use std::error::Error as StdError;
|
use std::error::Error as StdError;
|
||||||
use std::io::Cursor;
|
|
||||||
use std::str;
|
use std::str;
|
||||||
use std::{thread, time::Duration};
|
use std::{thread, time::Duration};
|
||||||
use zmq::{Context, DEALER, DONTWAIT, Socket};
|
use zmq::{Context, Socket};
|
||||||
|
|
||||||
use bal_server::db::open_db;
|
use bal_server::db::{calculate_and_upsert_stats, get_pending_txs, open_database};
|
||||||
use bal_server::validation::is_valid_welist_url;
|
use bal_server::validation::is_valid_welist_url;
|
||||||
use base64::{Engine as _, engine::general_purpose};
|
use base64::{Engine as _, engine::general_purpose};
|
||||||
use reqwest::Client as rClient;
|
use reqwest::Client as rClient;
|
||||||
use std::net::SocketAddr;
|
use std::net::SocketAddr;
|
||||||
use std::time::Instant;
|
|
||||||
use url::Url;
|
use url::Url;
|
||||||
|
|
||||||
const LOCKTIME_THRESHOLD: i64 = 5000000;
|
// BIP-65: locktime values below this are block heights, at or above are UNIX timestamps.
|
||||||
const VERSION: &str = "0.0.2";
|
const LOCKTIME_THRESHOLD: i64 = 500_000_000;
|
||||||
|
const VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||||
struct MyConfig {
|
struct MyConfig {
|
||||||
|
db_backend: String,
|
||||||
db_file: String,
|
db_file: String,
|
||||||
|
pg_dsn: String,
|
||||||
bitcoin_dir: String,
|
bitcoin_dir: String,
|
||||||
regtest: NetworkParams,
|
regtest: NetworkParams,
|
||||||
testnet: NetworkParams,
|
testnet: NetworkParams,
|
||||||
@@ -47,7 +46,9 @@ struct MyConfig {
|
|||||||
impl Default for MyConfig {
|
impl Default for MyConfig {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
MyConfig {
|
MyConfig {
|
||||||
|
db_backend: env::var("BAL_PUSHER_DB_BACKEND").unwrap_or("sqlite".to_string()),
|
||||||
db_file: env::var("BAL_PUSHER_DB_FILE").unwrap_or("bal.db".to_string()),
|
db_file: env::var("BAL_PUSHER_DB_FILE").unwrap_or("bal.db".to_string()),
|
||||||
|
pg_dsn: env::var("BAL_PUSHER_PG_DSN").unwrap_or_default(),
|
||||||
bitcoin_dir: env::var("BAL_PUSHER_BITCOIN_DIR").unwrap_or("".to_string()),
|
bitcoin_dir: env::var("BAL_PUSHER_BITCOIN_DIR").unwrap_or("".to_string()),
|
||||||
regtest: get_network_params_default(Network::Regtest),
|
regtest: get_network_params_default(Network::Regtest),
|
||||||
testnet: get_network_params_default(Network::Testnet),
|
testnet: get_network_params_default(Network::Testnet),
|
||||||
@@ -87,7 +88,7 @@ fn get_network_params(cfg: &MyConfig, network: Network) -> &NetworkParams {
|
|||||||
fn get_network_params_default(network: Network) -> NetworkParams {
|
fn get_network_params_default(network: Network) -> NetworkParams {
|
||||||
match network {
|
match network {
|
||||||
Network::Testnet => NetworkParams {
|
Network::Testnet => NetworkParams {
|
||||||
host: "http://i27.0.0.1".to_string(),
|
host: "http://127.0.0.1".to_string(),
|
||||||
port: 18332,
|
port: 18332,
|
||||||
dir_path: "testnet3/".to_string(),
|
dir_path: "testnet3/".to_string(),
|
||||||
db_field: "testnet".to_string(),
|
db_field: "testnet".to_string(),
|
||||||
@@ -97,7 +98,7 @@ fn get_network_params_default(network: Network) -> NetworkParams {
|
|||||||
zmq_listener: "tcp://127.0.0.1:23332".to_string(),
|
zmq_listener: "tcp://127.0.0.1:23332".to_string(),
|
||||||
},
|
},
|
||||||
Network::Testnet4 => NetworkParams {
|
Network::Testnet4 => NetworkParams {
|
||||||
host: "http://i27.0.0.1".to_string(),
|
host: "http://127.0.0.1".to_string(),
|
||||||
port: 48332,
|
port: 48332,
|
||||||
dir_path: "testnet4/".to_string(),
|
dir_path: "testnet4/".to_string(),
|
||||||
db_field: "testnet4".to_string(),
|
db_field: "testnet4".to_string(),
|
||||||
@@ -205,133 +206,83 @@ fn get_client(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
async fn main_result(cfg: &MyConfig, network_params: &NetworkParams) -> Result<(), Error> {
|
async fn main_result(cfg: &MyConfig, network_params: &NetworkParams) -> Result<(), Error> {
|
||||||
/*let url = args.next().expect("Usage: <rpc_url> <username> <password>");
|
|
||||||
let user = args.next().expect("no user given");
|
|
||||||
let pass = args.next().expect("no pass given");
|
|
||||||
*/
|
|
||||||
//let network = Network::Regtest
|
|
||||||
match get_client(network_params) {
|
match get_client(network_params) {
|
||||||
Ok((rpc, bcinfo)) => {
|
Ok((rpc, bcinfo)) => {
|
||||||
info!("connected");
|
info!("connected");
|
||||||
//let best_block_hash = rpc.get_best_block_hash()?;
|
|
||||||
//info!("best block hash: {}", best_block_hash);
|
|
||||||
//let bestblockcount = rpc.get_block_count()?;
|
|
||||||
//info!("best block height: {}", bestblockcount);
|
|
||||||
//let best_block_hash_by_height = rpc.get_block_hash(bestblockcount)?;
|
|
||||||
//info!("best block hash by height: {}", best_block_hash_by_height);
|
|
||||||
//assert_eq!(best_block_hash_by_height, best_block_hash);
|
|
||||||
//let from_block= std::cmp::max(0, bestblockcount - 11);
|
|
||||||
//let mut time_sum:u64=0;
|
|
||||||
//for i in from_block..bestblockcount{
|
|
||||||
// let hash = rpc.get_block_hash(i).unwrap();
|
|
||||||
// let block: bitcoin::Block = rpc.get_by_id(&hash).unwrap();
|
|
||||||
// time_sum += <u32 as Into<u64>>::into(block.header.time);
|
|
||||||
//}
|
|
||||||
//let average_time = time_sum/11;
|
|
||||||
info!("median time: {}", bcinfo.median_time);
|
info!("median time: {}", bcinfo.median_time);
|
||||||
//info!("height time: {}",bcinfo.median_time);
|
|
||||||
info!("blocks: {}", bcinfo.blocks);
|
info!("blocks: {}", bcinfo.blocks);
|
||||||
debug!("best block hash: {}", bcinfo.best_block_hash);
|
debug!("best block hash: {}", bcinfo.best_block_hash);
|
||||||
|
|
||||||
let average_time = bcinfo.median_time;
|
let average_time = bcinfo.median_time;
|
||||||
let db = match open_db(&cfg.db_file) {
|
|
||||||
Ok(c) => c,
|
let connection_string = match cfg.db_backend.as_str() {
|
||||||
|
"sqlite" => cfg.db_file.clone(),
|
||||||
|
"postgresql" => cfg.pg_dsn.clone(),
|
||||||
|
other => {
|
||||||
|
error!("Unknown DB backend: {}", other);
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let db = match open_database(&cfg.db_backend, &connection_string).await {
|
||||||
|
Ok(pool) => pool,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
error!("Fatal: {}", e);
|
error!("Fatal: {}", e);
|
||||||
std::process::exit(1);
|
std::process::exit(1);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
info!("db open {}", &cfg.db_file);
|
info!("db open {}", &connection_string);
|
||||||
|
|
||||||
let sqlquery = "SELECT * FROM tbl_tx WHERE network = :network AND status = :status AND ( locktime < :bestblock_height OR locktime > :locktime_threshold AND locktime < :bestblock_time);";
|
let pending_txs = match get_pending_txs(
|
||||||
let query_tx = match db.prepare(sqlquery) {
|
&db,
|
||||||
Ok(q) => q.into_iter(),
|
&network_params.db_field,
|
||||||
|
LOCKTIME_THRESHOLD,
|
||||||
|
bcinfo.blocks as i64,
|
||||||
|
average_time as i64,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
Ok(txs) => txs,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
warn!("tbl_tx not ready yet (tables may not exist): {}", e);
|
warn!("Failed to query pending transactions: {}", e);
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
trace!("query_tx: {}", sqlquery);
|
|
||||||
trace!(":locktime_threshold: {}", LOCKTIME_THRESHOLD);
|
|
||||||
trace!(":bestblock_time: {}", average_time);
|
|
||||||
trace!(":bestblock_height: {}", bcinfo.blocks);
|
|
||||||
trace!(":network: {}", network_params.db_field.clone());
|
|
||||||
trace!(":status: {}", 0);
|
|
||||||
//let query_tx = db.prepare("SELECT * FROM tbl_tx where status = :status").unwrap().into_iter();
|
|
||||||
let mut pushed_txs: Vec<String> = Vec::new();
|
let mut pushed_txs: Vec<String> = Vec::new();
|
||||||
let mut invalid_txs: std::collections::HashMap<String, String> = HashMap::new();
|
let mut invalid_txs: HashMap<String, String> = HashMap::new();
|
||||||
for row_result in match query_tx.bind::<&[(_, Value)]>(
|
|
||||||
&[
|
for row in &pending_txs {
|
||||||
(":locktime_threshold", LOCKTIME_THRESHOLD.into()),
|
let txid = &row.txid;
|
||||||
(":bestblock_time", (average_time as i64).into()),
|
let tx = &row.tx;
|
||||||
(":bestblock_height", (bcinfo.blocks as i64).into()),
|
let locktime = row.locktime;
|
||||||
(":network", network_params.db_field.clone().into()),
|
|
||||||
(":status", 0.into()),
|
|
||||||
][..],
|
|
||||||
) {
|
|
||||||
Ok(bound) => bound,
|
|
||||||
Err(e) => {
|
|
||||||
error!("Failed to bind query parameters: {}", e);
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
} {
|
|
||||||
let row = match row_result {
|
|
||||||
Ok(r) => r,
|
|
||||||
Err(e) => {
|
|
||||||
warn!("Failed to read row: {}", e);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
let tx = row.read::<&str, _>("tx");
|
|
||||||
let txid = row.read::<&str, _>("txid");
|
|
||||||
let locktime = row.read::<i64, _>("locktime");
|
|
||||||
info!("to be pushed: {}: {}", txid, locktime);
|
info!("to be pushed: {}: {}", txid, locktime);
|
||||||
match rpc.send_raw_transaction(tx) {
|
match rpc.send_raw_transaction(tx.as_str()) {
|
||||||
Ok(o) => {
|
Ok(o) => {
|
||||||
/*let mut file = OpenOptions::new()
|
|
||||||
.append(true) // Set the append option
|
|
||||||
.create(true) // Create the file if it doesn't exist
|
|
||||||
.open("valid_txs")?;
|
|
||||||
let data = format!("{}\t:\t{}\t:\t{}\n",txid,average_time,locktime);
|
|
||||||
file.write_all(data.as_bytes())?;
|
|
||||||
drop(file);
|
|
||||||
*/
|
|
||||||
info!("tx: {} pusshata PUSHED\n{}", txid, o);
|
info!("tx: {} pusshata PUSHED\n{}", txid, o);
|
||||||
pushed_txs.push(txid.to_string());
|
pushed_txs.push(txid.clone());
|
||||||
}
|
}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
/*let mut file = OpenOptions::new()
|
|
||||||
.append(true) // Set the append option
|
|
||||||
.create(true) // Create the file if it doesn't exist
|
|
||||||
.open("/home/bal/invalid_txs")?;
|
|
||||||
let data = format!("{}:\t{}\t:\t{}\t:\t{}\n",txid,err,average_time,locktime);
|
|
||||||
file.write_all(data.as_bytes())?;
|
|
||||||
drop(file);
|
|
||||||
*/
|
|
||||||
warn!("Error: {}\n{}", err, txid);
|
warn!("Error: {}\n{}", err, txid);
|
||||||
//store err in invalid_txs
|
invalid_txs.insert(txid.clone(), err.to_string());
|
||||||
invalid_txs.insert(txid.to_string(), err.to_string());
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
for txid in &pushed_txs {
|
for txid in &pushed_txs {
|
||||||
let sql = "UPDATE tbl_tx SET status = 1 WHERE txid = ?";
|
if let Err(e) = bal_server::db::update_tx_status(&db, txid, 1, None).await {
|
||||||
let mut stmt = db.prepare(sql).unwrap();
|
error!("Failed to update tx status: {}", e);
|
||||||
stmt.bind((1, Value::String(txid.clone()))).unwrap();
|
}
|
||||||
let _ = stmt.next();
|
|
||||||
}
|
}
|
||||||
for (txid, txerr) in &invalid_txs {
|
for (txid, txerr) in &invalid_txs {
|
||||||
let sql = "UPDATE tbl_tx SET status = 2, push_err = ? WHERE txid = ?";
|
if let Err(e) = bal_server::db::update_tx_status(&db, txid, 2, Some(txerr)).await {
|
||||||
let mut stmt = db.prepare(sql).unwrap();
|
error!("Failed to update tx status: {}", e);
|
||||||
stmt.bind((1, Value::String(txerr.clone()))).unwrap();
|
}
|
||||||
stmt.bind((2, Value::String(txid.clone()))).unwrap();
|
|
||||||
let _ = stmt.next();
|
|
||||||
}
|
}
|
||||||
if let Err(e) = send_stats_report(cfg, bcinfo).await {
|
if let Err(e) = send_stats_report(cfg, bcinfo).await {
|
||||||
error!("send_stats_report failed: {}", e);
|
error!("send_stats_report failed: {}", e);
|
||||||
}
|
}
|
||||||
if let Err(e) = calculate_stats(&db, network_params.db_field.clone()).await {
|
if let Err(e) = calculate_and_upsert_stats(&db, &network_params.db_field).await {
|
||||||
warn!("calculate_stats failed: {e}");
|
warn!("calculate_stats failed: {e}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -343,90 +294,8 @@ async fn main_result(cfg: &MyConfig, network_params: &NetworkParams) -> Result<(
|
|||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
async fn calculate_stats(db: &Connection, chain: String) -> Result<(), reqwest::Error> {
|
|
||||||
// Validate chain to prevent SQL injection via environment variable tampering
|
|
||||||
if !chain
|
|
||||||
.chars()
|
|
||||||
.all(|c| c.is_alphanumeric() || c == '-' || c == '_')
|
|
||||||
|| chain.is_empty()
|
|
||||||
{
|
|
||||||
error!("Invalid chain name: {chain}");
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
//let sql = "drop table if exists tbl_stats;";
|
|
||||||
let sql = format!("DELETE FROM tbl_stats WHERE chain = '{chain}';");
|
|
||||||
if let Err(err) = db.execute(&sql) {
|
|
||||||
error!("error deleting from tbl_stats where chain:{chain} error: {err}");
|
|
||||||
}
|
|
||||||
let sql = format!(
|
|
||||||
"INSERT INTO tbl_stats (
|
|
||||||
report_date, chain, totals, waiting, sent, failed,
|
|
||||||
waiting_profit, sent_profit, missed_profit, unique_inputs
|
|
||||||
)
|
|
||||||
VALUES (
|
|
||||||
CURRENT_TIMESTAMP,
|
|
||||||
'{chain}',
|
|
||||||
(SELECT COUNT(*) FROM tbl_tx WHERE network = '{chain}'),
|
|
||||||
(SELECT COUNT(*) FROM tbl_tx WHERE status = 0 AND network = '{chain}'),
|
|
||||||
(SELECT COUNT(*) FROM tbl_tx WHERE status = 1 AND network = '{chain}'),
|
|
||||||
(SELECT COUNT(*) FROM tbl_tx WHERE status = 2 AND network = '{chain}'),
|
|
||||||
(SELECT IFNULL(SUM(our_fees),0) FROM tbl_tx WHERE status = 0 AND network = '{chain}'),
|
|
||||||
(SELECT IFNULL(SUM(our_fees),0) FROM tbl_tx WHERE status = 1 AND network = '{chain}'),
|
|
||||||
(SELECT IFNULL(SUM(our_fees),0) FROM tbl_tx WHERE status = 2 AND network = '{chain}'),
|
|
||||||
(SELECT COUNT(DISTINCT tbl_inp.in_txid)
|
|
||||||
FROM tbl_inp
|
|
||||||
JOIN tbl_tx ON tbl_inp.txid = tbl_tx.txid
|
|
||||||
WHERE tbl_tx.status = 0 AND tbl_tx.network = '{chain}')
|
|
||||||
)
|
|
||||||
ON CONFLICT(chain) DO UPDATE SET
|
|
||||||
report_date = excluded.report_date,
|
|
||||||
totals = excluded.totals,
|
|
||||||
waiting = excluded.waiting,
|
|
||||||
sent = excluded.sent,
|
|
||||||
failed = excluded.failed,
|
|
||||||
waiting_profit = excluded.waiting_profit,
|
|
||||||
sent_profit = excluded.sent_profit,
|
|
||||||
missed_profit = excluded.missed_profit,
|
|
||||||
unique_inputs = excluded.unique_inputs;
|
|
||||||
"
|
|
||||||
);
|
|
||||||
|
|
||||||
/*
|
|
||||||
let sql = format!("CREATE TABLE tbl_stats AS
|
|
||||||
SELECT
|
|
||||||
CURRENT_TIMESTAMP AS report_date,
|
|
||||||
'{chain}' as chain,
|
|
||||||
(SELECT COUNT(*) FROM tbl_tx WHERE network ='{chain}') AS totals,
|
|
||||||
(SELECT COUNT(*) FROM tbl_tx WHERE status = 0 AND network ='{chain}') AS waiting,
|
|
||||||
(SELECT COUNT(*) FROM tbl_tx WHERE status = 1 AND network ='{chain}') AS sent,
|
|
||||||
(SELECT COUNT(*) FROM tbl_tx WHERE status = 2 AND network ='{chain}') AS failed,
|
|
||||||
(SELECT SUM(our_fees) FROM tbl_tx WHERE status = 0 AND network ='{chain}') AS waiting_profit,
|
|
||||||
(SELECT SUM(our_fees) OR 0 FROM tbl_tx WHERE status = 1 AND network ='{chain}') AS sent_profit,
|
|
||||||
(SELECT SUM(our_fees) FROM tbl_tx WHERE status = 2 AND network ='{chain}') AS missed_profit,
|
|
||||||
(SELECT COUNT(*) FROM tbl_inp JOIN tbl_tx ON(tbl_inp.txid = tbl_tx.txid) WHERE tbl_tx.status=0 AND tbl_tx.network ='{chain}') AS unique_inputs;
|
|
||||||
");
|
|
||||||
let sql = "UPDATE tbl_stats set
|
|
||||||
totals = (SELECT COUNT(*) FROM tbl_tx WHERE network ='{chain}'),
|
|
||||||
waiting = (SELECT COUNT(*) FROM tbl_tx WHERE status = 0 AND network ='{chain}'),
|
|
||||||
sent = (SELECT COUNT(*) FROM tbl_tx WHERE status = 1 AND network ='{chain}'),
|
|
||||||
failed = (SELECT COUNT(*) FROM tbl_tx WHERE status = 1 AND network ='{chain}'),
|
|
||||||
waiting_profit = (SELECT SUM(our_fees) FROM tbl_tx WHERE status = 0 AND network ='{chain}'),
|
|
||||||
sent_profit = (SELECT SUM(our_fees) FROM tbl_tx WHERE status = 0 AND network ='{chain}'),
|
|
||||||
missed_profit = (SELECT SUM(our_fees) FROM tbl_tx WHERE status = 0 AND network ='{chain}')
|
|
||||||
unique_inputs = (SELECT COUNT(*) FROM tbl_inp JOIN tbl_tx ON(tbl_inp.txid = tbl_tx.txid) WHERE tbl_tx.status=0 AND tbl_tx.network ='{chain}')
|
|
||||||
WHERE chain = '{chain}'
|
|
||||||
*/
|
|
||||||
if let Err(err) = db.execute(&sql) {
|
|
||||||
error!("error inserting creating stats table {err}");
|
|
||||||
} else {
|
|
||||||
info!("tbl_stats creation success");
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
/// Parse the `(host, port)` pair from a base URL like `https://host[:port]`.
|
/// Parse the `(host, port)` pair from a base URL like `https://host[:port]`.
|
||||||
///
|
|
||||||
/// Falls back to the scheme's well-known default port (443 for `https`,
|
|
||||||
/// 80 for plain `http`), or to 443 when the scheme is unknown.
|
|
||||||
fn parse_host_port(base_url: &str) -> Option<(String, u16)> {
|
fn parse_host_port(base_url: &str) -> Option<(String, u16)> {
|
||||||
let url = Url::parse(base_url).ok()?;
|
let url = Url::parse(base_url).ok()?;
|
||||||
let host = url
|
let host = url
|
||||||
@@ -439,8 +308,6 @@ fn parse_host_port(base_url: &str) -> Option<(String, u16)> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Resolve `host:port` and return the first IPv6 (AAAA) address, if any.
|
/// Resolve `host:port` and return the first IPv6 (AAAA) address, if any.
|
||||||
///
|
|
||||||
/// Returns `None` when the host has no IPv6 address.
|
|
||||||
async fn resolve_first_ipv6(host: &str, port: u16) -> Option<SocketAddr> {
|
async fn resolve_first_ipv6(host: &str, port: u16) -> Option<SocketAddr> {
|
||||||
use std::net::ToSocketAddrs;
|
use std::net::ToSocketAddrs;
|
||||||
let host = host.to_string();
|
let host = host.to_string();
|
||||||
@@ -455,14 +322,6 @@ async fn resolve_first_ipv6(host: &str, port: u16) -> Option<SocketAddr> {
|
|||||||
.flatten()
|
.flatten()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Build the HTTP client used for welist reports.
|
|
||||||
///
|
|
||||||
/// When `BAL_PUSHER_PREFER_IPV6` is truthy, the welist host is resolved and
|
|
||||||
/// the client is pinned to its first IPv6 address (the original hostname is
|
|
||||||
/// still used for the `Host` header and TLS SNI). This works around networks
|
|
||||||
/// where the IPv4 route to the welist host is broken while IPv6 works: the
|
|
||||||
/// default connector may otherwise pick the broken family and the request
|
|
||||||
/// stalls. When the variable is unset (the default), behavior is unchanged.
|
|
||||||
async fn welist_http_client(welist_url: &str) -> rClient {
|
async fn welist_http_client(welist_url: &str) -> rClient {
|
||||||
let prefer_ipv6 = env::var("BAL_PUSHER_PREFER_IPV6")
|
let prefer_ipv6 = env::var("BAL_PUSHER_PREFER_IPV6")
|
||||||
.unwrap_or("false".to_string())
|
.unwrap_or("false".to_string())
|
||||||
@@ -564,6 +423,15 @@ fn sign_message(private_key_path: &str, message: &str) -> String {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn parse_env(cfg: &mut MyConfig) {
|
fn parse_env(cfg: &mut MyConfig) {
|
||||||
|
if let Ok(value) = env::var("BAL_PUSHER_DB_BACKEND") {
|
||||||
|
cfg.db_backend = value;
|
||||||
|
}
|
||||||
|
if let Ok(value) = env::var("BAL_PUSHER_DB_FILE") {
|
||||||
|
cfg.db_file = value;
|
||||||
|
}
|
||||||
|
if let Ok(value) = env::var("BAL_PUSHER_PG_DSN") {
|
||||||
|
cfg.pg_dsn = value;
|
||||||
|
}
|
||||||
cfg.regtest = parse_env_netconfig(cfg, "regtest");
|
cfg.regtest = parse_env_netconfig(cfg, "regtest");
|
||||||
cfg.signet = parse_env_netconfig(cfg, "signet");
|
cfg.signet = parse_env_netconfig(cfg, "signet");
|
||||||
cfg.testnet = parse_env_netconfig(cfg, "testnet");
|
cfg.testnet = parse_env_netconfig(cfg, "testnet");
|
||||||
@@ -571,7 +439,6 @@ fn parse_env(cfg: &mut MyConfig) {
|
|||||||
drop(parse_env_netconfig(cfg, "bitcoin"));
|
drop(parse_env_netconfig(cfg, "bitcoin"));
|
||||||
}
|
}
|
||||||
fn parse_env_netconfig(cfg_lock: &mut MyConfig, chain: &str) -> NetworkParams {
|
fn parse_env_netconfig(cfg_lock: &mut MyConfig, chain: &str) -> NetworkParams {
|
||||||
//fn parse_env_netconfig(cfg_lock: &MutexGuard<MyConfig>, chain: &str) -> &NetworkParams{
|
|
||||||
let cfg = match chain {
|
let cfg = match chain {
|
||||||
"regtest" => &mut cfg_lock.regtest,
|
"regtest" => &mut cfg_lock.regtest,
|
||||||
"signet" => &mut cfg_lock.signet,
|
"signet" => &mut cfg_lock.signet,
|
||||||
@@ -609,85 +476,12 @@ fn parse_env_netconfig(cfg_lock: &mut MyConfig, chain: &str) -> NetworkParams {
|
|||||||
if let Ok(value) = env::var(format!("BAL_PUSHER_{}_RPC_PASSWORD", chain.to_uppercase())) {
|
if let Ok(value) = env::var(format!("BAL_PUSHER_{}_RPC_PASSWORD", chain.to_uppercase())) {
|
||||||
cfg.rpc_pass = value;
|
cfg.rpc_pass = value;
|
||||||
}
|
}
|
||||||
println!("BAL_PUSHER_{}_ZMQ_HASHBLOCK", chain.to_uppercase());
|
|
||||||
if let Ok(value) = env::var(format!("BAL_PUSHER_{}_ZMQ_HASHBLOCK", chain.to_uppercase())) {
|
if let Ok(value) = env::var(format!("BAL_PUSHER_{}_ZMQ_HASHBLOCK", chain.to_uppercase())) {
|
||||||
println!("value:{}", value);
|
|
||||||
cfg.zmq_listener = value;
|
cfg.zmq_listener = value;
|
||||||
}
|
}
|
||||||
cfg.clone()
|
cfg.clone()
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(dead_code)]
|
|
||||||
fn check_zmq_connection(endpoint: &str) -> bool {
|
|
||||||
trace!("check zmq connection");
|
|
||||||
let context = Context::new();
|
|
||||||
let socket = match context.socket(DEALER) {
|
|
||||||
Ok(sock) => sock,
|
|
||||||
Err(_) => return false,
|
|
||||||
};
|
|
||||||
|
|
||||||
if socket.connect(endpoint).is_err() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Try to send an empty message non-blocking
|
|
||||||
socket.send("", DONTWAIT).is_ok()
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add this struct to monitor connection health
|
|
||||||
#[allow(dead_code)]
|
|
||||||
struct ConnectionMonitor {
|
|
||||||
last_message_time: Instant,
|
|
||||||
timeout: Duration,
|
|
||||||
consecutive_timeouts: u32,
|
|
||||||
max_consecutive_timeouts: u32,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[allow(dead_code)]
|
|
||||||
impl ConnectionMonitor {
|
|
||||||
fn new(timeout_secs: u64, max_timeouts: u32) -> Self {
|
|
||||||
Self {
|
|
||||||
last_message_time: Instant::now(),
|
|
||||||
timeout: Duration::from_secs(timeout_secs),
|
|
||||||
consecutive_timeouts: 0,
|
|
||||||
max_consecutive_timeouts: max_timeouts,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn update(&mut self) {
|
|
||||||
self.last_message_time = Instant::now();
|
|
||||||
self.consecutive_timeouts = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
fn check_connection(&mut self) -> ConnectionStatus {
|
|
||||||
let elapsed = self.last_message_time.elapsed();
|
|
||||||
|
|
||||||
if elapsed > self.timeout {
|
|
||||||
self.consecutive_timeouts += 1;
|
|
||||||
|
|
||||||
if self.consecutive_timeouts >= self.max_consecutive_timeouts {
|
|
||||||
ConnectionStatus::Lost(elapsed)
|
|
||||||
} else {
|
|
||||||
ConnectionStatus::Warning(elapsed)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
ConnectionStatus::Healthy
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn reset(&mut self) {
|
|
||||||
self.consecutive_timeouts = 0;
|
|
||||||
self.last_message_time = Instant::now();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[allow(dead_code)]
|
|
||||||
enum ConnectionStatus {
|
|
||||||
Healthy,
|
|
||||||
Warning(Duration),
|
|
||||||
Lost(Duration),
|
|
||||||
}
|
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main() -> std::io::Result<()> {
|
async fn main() -> std::io::Result<()> {
|
||||||
env_logger::init();
|
env_logger::init();
|
||||||
@@ -747,15 +541,15 @@ async fn main() -> std::io::Result<()> {
|
|||||||
Ok(m) => m,
|
Ok(m) => m,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
consecutive_timeouts += 1;
|
consecutive_timeouts += 1;
|
||||||
if consecutive_timeouts == 1 {
|
if consecutive_timeouts.is_multiple_of(720) {
|
||||||
warn!("ZMQ recv timeout or error: {}, retrying...", e);
|
error!(
|
||||||
} else if consecutive_timeouts.is_multiple_of(12) {
|
|
||||||
warn!(
|
|
||||||
"No ZMQ messages for {}s ({} consecutive timeouts), is bitcoind ZMQ active on {}?",
|
"No ZMQ messages for {}s ({} consecutive timeouts), is bitcoind ZMQ active on {}?",
|
||||||
consecutive_timeouts * 5,
|
consecutive_timeouts * 5,
|
||||||
consecutive_timeouts,
|
consecutive_timeouts,
|
||||||
zmq_address
|
zmq_address
|
||||||
);
|
);
|
||||||
|
} else {
|
||||||
|
trace!("ZMQ recv timeout or error: {}, retrying...", e);
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -783,17 +577,6 @@ async fn main() -> std::io::Result<()> {
|
|||||||
thread::sleep(Duration::from_millis(100)); // Sleep for 100ms
|
thread::sleep(Duration::from_millis(100)); // Sleep for 100ms
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#[allow(dead_code)]
|
|
||||||
fn seq_to_str(seq: &[u8]) -> String {
|
|
||||||
if seq.len() == 4 {
|
|
||||||
let mut rdr = Cursor::new(seq);
|
|
||||||
let sequence = rdr
|
|
||||||
.read_u32::<LittleEndian>()
|
|
||||||
.expect("Failed to read integer");
|
|
||||||
return sequence.to_string();
|
|
||||||
}
|
|
||||||
"Unknown".to_string()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
use actix_governor::{Governor, GovernorConfigBuilder};
|
use actix_governor::{Governor, GovernorConfigBuilder, KeyExtractor, SimpleKeyExtractionError};
|
||||||
|
use actix_web::dev::ServiceRequest;
|
||||||
use actix_web::middleware;
|
use actix_web::middleware;
|
||||||
use actix_web::web::Bytes;
|
use actix_web::web::Bytes;
|
||||||
use actix_web::{App, HttpResponse, HttpServer, Responder, web};
|
use actix_web::{App, HttpResponse, HttpServer, Responder, web};
|
||||||
@@ -7,16 +8,16 @@ use chrono::Utc;
|
|||||||
use hex_conservative::FromHex;
|
use hex_conservative::FromHex;
|
||||||
use log::{debug, error, info, trace};
|
use log::{debug, error, info, trace};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use sqlite::State;
|
|
||||||
use sqlite::{Connection, Value};
|
|
||||||
use std::collections::{HashMap, HashSet};
|
use std::collections::{HashMap, HashSet};
|
||||||
use std::env;
|
use std::env;
|
||||||
use std::fs;
|
use std::fs;
|
||||||
use std::sync::Mutex;
|
use std::net::IpAddr;
|
||||||
|
use std::str::FromStr;
|
||||||
|
|
||||||
use bal_server::db::{
|
use bal_server::db::{
|
||||||
check_duplicate_txids, create_database, execute_insert, get_all_addresses_by_xpub,
|
DatabasePool, InsertInpData, InsertOutData, InsertTxData, check_duplicate_txids,
|
||||||
get_last_used_address_by_ip, get_next_address_index, insert_xpub, open_db, save_new_address,
|
create_database, get_all_addresses_by_xpub, get_last_used_address_by_ip,
|
||||||
|
get_next_address_index, get_stats, insert_xpub, open_database, save_new_address, search_tx,
|
||||||
};
|
};
|
||||||
use bal_server::xpub::new_address_from_xpub;
|
use bal_server::xpub::new_address_from_xpub;
|
||||||
|
|
||||||
@@ -56,7 +57,9 @@ struct MyConfig {
|
|||||||
info: String,
|
info: String,
|
||||||
bind_address: String,
|
bind_address: String,
|
||||||
bind_port: u16,
|
bind_port: u16,
|
||||||
|
db_backend: String,
|
||||||
db_file: String,
|
db_file: String,
|
||||||
|
pg_dsn: String,
|
||||||
pub_key_path: String,
|
pub_key_path: String,
|
||||||
expose_stats: bool,
|
expose_stats: bool,
|
||||||
}
|
}
|
||||||
@@ -71,7 +74,9 @@ impl Default for MyConfig {
|
|||||||
mainnet: NetConfig::default_network("bitcoin".to_string(), Network::Bitcoin),
|
mainnet: NetConfig::default_network("bitcoin".to_string(), Network::Bitcoin),
|
||||||
bind_address: "127.0.0.1".to_string(),
|
bind_address: "127.0.0.1".to_string(),
|
||||||
bind_port: 9137,
|
bind_port: 9137,
|
||||||
|
db_backend: "sqlite".to_string(),
|
||||||
db_file: "bal.db".to_string(),
|
db_file: "bal.db".to_string(),
|
||||||
|
pg_dsn: String::new(),
|
||||||
info: "Will Executor Server".to_string(),
|
info: "Will Executor Server".to_string(),
|
||||||
pub_key_path: "public_key.pem".to_string(),
|
pub_key_path: "public_key.pem".to_string(),
|
||||||
expose_stats: env::var("BAL_SERVER_EXPOSE_STATS")
|
expose_stats: env::var("BAL_SERVER_EXPOSE_STATS")
|
||||||
@@ -118,7 +123,7 @@ pub struct StatsResponse {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
#[allow(dead_code)]
|
#[expect(dead_code)]
|
||||||
struct ActixConfig {
|
struct ActixConfig {
|
||||||
max_body_size: usize,
|
max_body_size: usize,
|
||||||
timeout_secs: u64,
|
timeout_secs: u64,
|
||||||
@@ -128,6 +133,7 @@ struct ActixConfig {
|
|||||||
rate_limit_default: (u64, u32),
|
rate_limit_default: (u64, u32),
|
||||||
workers: usize,
|
workers: usize,
|
||||||
max_connections: usize,
|
max_connections: usize,
|
||||||
|
trusted_proxy: IpAddr,
|
||||||
}
|
}
|
||||||
|
|
||||||
fn parse_actix_config() -> ActixConfig {
|
fn parse_actix_config() -> ActixConfig {
|
||||||
@@ -188,11 +194,15 @@ fn parse_actix_config() -> ActixConfig {
|
|||||||
.unwrap_or("100".to_string())
|
.unwrap_or("100".to_string())
|
||||||
.parse::<usize>()
|
.parse::<usize>()
|
||||||
.unwrap_or(100),
|
.unwrap_or(100),
|
||||||
|
trusted_proxy: env::var("BAL_SERVER_TRUSTED_PROXY")
|
||||||
|
.unwrap_or_else(|_| "127.0.0.1".to_string())
|
||||||
|
.parse::<IpAddr>()
|
||||||
|
.unwrap_or(IpAddr::from_str("127.0.0.1").unwrap()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
struct AppState {
|
struct AppState {
|
||||||
db: Mutex<Connection>,
|
db: DatabasePool,
|
||||||
cfg: MyConfig,
|
cfg: MyConfig,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -217,9 +227,70 @@ async fn echo_version() -> impl Responder {
|
|||||||
HttpResponse::Ok().body(VERSION)
|
HttpResponse::Ok().body(VERSION)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn extract_real_ip(req: &actix_web::HttpRequest, trusted_proxy: IpAddr) -> String {
|
||||||
|
let peer_ip = req.peer_addr().map(|socket| socket.ip());
|
||||||
|
let connection_info = req.connection_info();
|
||||||
|
|
||||||
|
let ip = match peer_ip {
|
||||||
|
Some(peer) if peer == trusted_proxy => {
|
||||||
|
connection_info.realip_remote_addr().unwrap_or("unknown")
|
||||||
|
}
|
||||||
|
_ => connection_info.peer_addr().unwrap_or("unknown"),
|
||||||
|
};
|
||||||
|
|
||||||
|
debug!("client IP: {}", ip);
|
||||||
|
ip.to_string()
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
|
struct RealIpKeyExtractor;
|
||||||
|
|
||||||
|
impl KeyExtractor for RealIpKeyExtractor {
|
||||||
|
type Key = IpAddr;
|
||||||
|
type KeyExtractionError = SimpleKeyExtractionError<&'static str>;
|
||||||
|
|
||||||
|
fn extract(&self, req: &ServiceRequest) -> Result<Self::Key, Self::KeyExtractionError> {
|
||||||
|
let proxy_ip = req
|
||||||
|
.app_data::<web::Data<IpAddr>>()
|
||||||
|
.map(|ip| *ip.get_ref())
|
||||||
|
.unwrap_or_else(|| IpAddr::from_str("0.0.0.0").unwrap());
|
||||||
|
|
||||||
|
let peer_ip = req.peer_addr().map(|socket| socket.ip());
|
||||||
|
let connection_info = req.connection_info();
|
||||||
|
|
||||||
|
match peer_ip {
|
||||||
|
Some(peer) if peer == proxy_ip => connection_info
|
||||||
|
.realip_remote_addr()
|
||||||
|
.ok_or_else(|| {
|
||||||
|
SimpleKeyExtractionError::new("Could not extract real IP address from request")
|
||||||
|
})
|
||||||
|
.and_then(|str| {
|
||||||
|
str.parse::<IpAddr>().map_err(|_| {
|
||||||
|
SimpleKeyExtractionError::new(
|
||||||
|
"Could not extract real IP address from request",
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}),
|
||||||
|
_ => connection_info
|
||||||
|
.peer_addr()
|
||||||
|
.ok_or_else(|| {
|
||||||
|
SimpleKeyExtractionError::new("Could not extract peer IP address from request")
|
||||||
|
})
|
||||||
|
.and_then(|str| {
|
||||||
|
str.parse::<IpAddr>().map_err(|_| {
|
||||||
|
SimpleKeyExtractionError::new(
|
||||||
|
"Could not extract peer IP address from request",
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
async fn echo_info(
|
async fn echo_info(
|
||||||
path: web::Path<String>,
|
path: web::Path<String>,
|
||||||
data: web::Data<AppState>,
|
data: web::Data<AppState>,
|
||||||
|
proxy: web::Data<IpAddr>,
|
||||||
req: actix_web::HttpRequest,
|
req: actix_web::HttpRequest,
|
||||||
) -> impl Responder {
|
) -> impl Responder {
|
||||||
let param = path.into_inner();
|
let param = path.into_inner();
|
||||||
@@ -232,18 +303,7 @@ async fn echo_info(
|
|||||||
debug!("network disabled {}", param);
|
debug!("network disabled {}", param);
|
||||||
return HttpResponse::BadRequest().body("error");
|
return HttpResponse::BadRequest().body("error");
|
||||||
}
|
}
|
||||||
let remote_addr = req
|
let remote_addr = extract_real_ip(&req, **proxy);
|
||||||
.headers()
|
|
||||||
.get("X-Real-IP")
|
|
||||||
.and_then(|value| value.to_str().ok())
|
|
||||||
.and_then(|xff| xff.split(',').next())
|
|
||||||
.map(|ip| ip.trim().to_string())
|
|
||||||
.unwrap_or_else(|| {
|
|
||||||
req.connection_info()
|
|
||||||
.peer_addr()
|
|
||||||
.unwrap_or("unknown")
|
|
||||||
.to_string()
|
|
||||||
});
|
|
||||||
let address = match netconfig.xpub {
|
let address = match netconfig.xpub {
|
||||||
false => {
|
false => {
|
||||||
let address = netconfig.address.to_string();
|
let address = netconfig.address.to_string();
|
||||||
@@ -251,35 +311,26 @@ async fn echo_info(
|
|||||||
address
|
address
|
||||||
}
|
}
|
||||||
true => {
|
true => {
|
||||||
// Lock #1: fetch existing address OR atomically claim next index
|
if let Some(address) = get_last_used_address_by_ip(
|
||||||
let next_idx = {
|
&data.db,
|
||||||
let db = match data.db.lock() {
|
&netconfig.name,
|
||||||
Ok(g) => g,
|
&netconfig.address,
|
||||||
Err(_p) => {
|
&remote_addr,
|
||||||
error!("DB mutex poisoned in echo_info (lookup phase)");
|
)
|
||||||
return HttpResponse::InternalServerError().body("error");
|
.await
|
||||||
}
|
{
|
||||||
};
|
return HttpResponse::Ok().json(InfoResponse {
|
||||||
match get_last_used_address_by_ip(
|
address,
|
||||||
&db,
|
base_fee: netconfig.fixed_fee,
|
||||||
&netconfig.name,
|
chain: netconfig.network.to_string(),
|
||||||
&netconfig.address,
|
info: data.cfg.info.to_string(),
|
||||||
&remote_addr,
|
version: VERSION.to_string(),
|
||||||
) {
|
});
|
||||||
Some(address) => {
|
}
|
||||||
return HttpResponse::Ok().json(InfoResponse {
|
|
||||||
address,
|
let next_idx =
|
||||||
base_fee: netconfig.fixed_fee,
|
get_next_address_index(&data.db, &netconfig.name, &netconfig.address).await;
|
||||||
chain: netconfig.network.to_string(),
|
|
||||||
info: data.cfg.info.to_string(),
|
|
||||||
version: VERSION.to_string(),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
None => get_next_address_index(&db, &netconfig.name, &netconfig.address),
|
|
||||||
}
|
|
||||||
}; // lock released
|
|
||||||
|
|
||||||
// Derive address (CPU-bound, no lock held)
|
|
||||||
let derived =
|
let derived =
|
||||||
match new_address_from_xpub(&netconfig.address, next_idx.1, netconfig.network) {
|
match new_address_from_xpub(&netconfig.address, next_idx.1, netconfig.network) {
|
||||||
Ok(address) => address,
|
Ok(address) => address,
|
||||||
@@ -289,20 +340,10 @@ async fn echo_info(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// Lock #2: save the newly derived address
|
save_new_address(&data.db, next_idx.0, &derived.0, &derived.1, &remote_addr).await;
|
||||||
{
|
debug!("save new address {} {}", derived.0, derived.1);
|
||||||
let db = match data.db.lock() {
|
trace!("next {} {}", next_idx.0, next_idx.1);
|
||||||
Ok(g) => g,
|
derived.0
|
||||||
Err(_p) => {
|
|
||||||
error!("DB mutex poisoned in echo_info (save phase)");
|
|
||||||
return HttpResponse::InternalServerError().body("error");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
save_new_address(&db, next_idx.0, &derived.0, &derived.1, &remote_addr);
|
|
||||||
debug!("save new address {} {}", derived.0, derived.1);
|
|
||||||
trace!("next {} {}", next_idx.0, next_idx.1);
|
|
||||||
derived.0
|
|
||||||
} // lock released
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
let info = InfoResponse {
|
let info = InfoResponse {
|
||||||
@@ -336,90 +377,33 @@ async fn echo_stats(path: web::Path<String>, data: web::Data<AppState>) -> impl
|
|||||||
if !data.cfg.expose_stats {
|
if !data.cfg.expose_stats {
|
||||||
return HttpResponse::Forbidden().body("error");
|
return HttpResponse::Forbidden().body("error");
|
||||||
}
|
}
|
||||||
let mut stats: Vec<StatsResponse> = vec![];
|
|
||||||
let db = match data.db.lock() {
|
let stats_rows = match get_stats(&data.db, &netconfig.name).await {
|
||||||
Ok(g) => g,
|
Ok(rows) => rows,
|
||||||
Err(_p) => {
|
|
||||||
error!("DB mutex poisoned in echo_stats");
|
|
||||||
return HttpResponse::InternalServerError().body("error");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
let mut stmt = match db.prepare(
|
|
||||||
"SELECT report_date, chain, totals, waiting, sent, failed, waiting_profit, sent_profit, missed_profit, unique_inputs FROM tbl_stats WHERE chain = ?"
|
|
||||||
) {
|
|
||||||
Ok(s) => s,
|
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
error!("Failed to prepare stats query: {}", e);
|
error!("Failed to query stats: {}", e);
|
||||||
return HttpResponse::InternalServerError().body("error");
|
return HttpResponse::InternalServerError().body("error");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
if let Err(e) = stmt.bind((1, Value::String(netconfig.name.clone()))) {
|
|
||||||
error!("Failed to bind chain in stats query: {}", e);
|
let stats: Vec<StatsResponse> = stats_rows
|
||||||
return HttpResponse::InternalServerError().body("error");
|
.into_iter()
|
||||||
}
|
.map(|row| StatsResponse {
|
||||||
while let Ok(State::Row) = stmt.next() {
|
report_date: row.report_date,
|
||||||
let report_date = stmt.read("report_date").unwrap_or("0".to_string());
|
chain: row.chain,
|
||||||
let chain = stmt.read("chain").unwrap_or("?".to_string());
|
totals: row.totals,
|
||||||
let totals = stmt
|
waiting: row.waiting,
|
||||||
.read("totals")
|
sent: row.sent,
|
||||||
.unwrap_or("0".to_string())
|
failed: row.failed,
|
||||||
.parse::<i64>()
|
waiting_profit: row.waiting_profit,
|
||||||
.unwrap_or(0);
|
sent_profit: row.sent_profit,
|
||||||
let waiting = stmt
|
missed_profit: row.missed_profit,
|
||||||
.read("waiting")
|
unique_inputs: row.unique_inputs,
|
||||||
.unwrap_or("0".to_string())
|
})
|
||||||
.parse::<i64>()
|
.collect();
|
||||||
.unwrap_or(0);
|
|
||||||
let sent = stmt
|
debug!("echo stats reply for chain: {}", netconfig.name);
|
||||||
.read("sent")
|
HttpResponse::Ok().json(stats)
|
||||||
.unwrap_or("0".to_string())
|
|
||||||
.parse::<i64>()
|
|
||||||
.unwrap_or(0);
|
|
||||||
let failed = stmt
|
|
||||||
.read("failed")
|
|
||||||
.unwrap_or("0".to_string())
|
|
||||||
.parse::<i64>()
|
|
||||||
.unwrap_or(0);
|
|
||||||
let waiting_profit = stmt
|
|
||||||
.read("waiting_profit")
|
|
||||||
.unwrap_or("0".to_string())
|
|
||||||
.parse::<i64>()
|
|
||||||
.unwrap_or(0);
|
|
||||||
let sent_profit = stmt
|
|
||||||
.read("sent_profit")
|
|
||||||
.unwrap_or("0".to_string())
|
|
||||||
.parse::<i64>()
|
|
||||||
.unwrap_or(0);
|
|
||||||
let missed_profit = stmt
|
|
||||||
.read("missed_profit")
|
|
||||||
.unwrap_or("0".to_string())
|
|
||||||
.parse::<i64>()
|
|
||||||
.unwrap_or(0);
|
|
||||||
let unique_inputs = stmt
|
|
||||||
.read("unique_inputs")
|
|
||||||
.unwrap_or("0".to_string())
|
|
||||||
.parse::<i64>()
|
|
||||||
.unwrap_or(0);
|
|
||||||
stats.push(StatsResponse {
|
|
||||||
report_date,
|
|
||||||
chain,
|
|
||||||
totals,
|
|
||||||
waiting,
|
|
||||||
sent,
|
|
||||||
failed,
|
|
||||||
waiting_profit,
|
|
||||||
sent_profit,
|
|
||||||
missed_profit,
|
|
||||||
unique_inputs,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
match serde_json::to_string(&stats) {
|
|
||||||
Ok(json_data) => {
|
|
||||||
debug!("echo info reply: {}", json_data);
|
|
||||||
HttpResponse::Ok().json(stats)
|
|
||||||
}
|
|
||||||
Err(_err) => HttpResponse::InternalServerError().body("error"),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn echo_search(body: Bytes, data: web::Data<AppState>) -> impl Responder {
|
async fn echo_search(body: Bytes, data: web::Data<AppState>) -> impl Responder {
|
||||||
@@ -437,93 +421,42 @@ async fn echo_search(body: Bytes, data: web::Data<AppState>) -> impl Responder {
|
|||||||
return HttpResponse::BadRequest().body("error");
|
return HttpResponse::BadRequest().body("error");
|
||||||
}
|
}
|
||||||
|
|
||||||
let db = match data.db.lock() {
|
match search_tx(&data.db, strbody).await {
|
||||||
Ok(g) => g,
|
Ok(Some(row)) => {
|
||||||
Err(_p) => {
|
let mut response_data = HashMap::new();
|
||||||
error!("DB mutex poisoned in echo_search");
|
response_data.insert("status", row.status);
|
||||||
return HttpResponse::InternalServerError().body("error");
|
response_data.insert("tx", row.tx);
|
||||||
}
|
response_data.insert("our_address", row.our_address);
|
||||||
};
|
response_data.insert("our_fees", row.our_fees);
|
||||||
let mut statement = match db.prepare("SELECT * FROM tbl_tx WHERE txid = ? LIMIT 1") {
|
response_data.insert("time", row.reqid);
|
||||||
Ok(s) => s,
|
|
||||||
Err(e) => {
|
|
||||||
error!("Failed to prepare statement: {}", e);
|
|
||||||
return HttpResponse::InternalServerError().body("error");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
if let Err(e) = statement.bind((1, strbody)) {
|
|
||||||
error!("Failed to bind parameter: {}", e);
|
|
||||||
return HttpResponse::InternalServerError().body("error");
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Ok(State::Row) = statement.next() {
|
match serde_json::to_string(&response_data) {
|
||||||
let mut response_data = HashMap::new();
|
Ok(json_data) => {
|
||||||
match statement.read::<String, _>("status") {
|
debug!("echo search reply: {}", json_data);
|
||||||
Ok(value) => {
|
HttpResponse::Ok().json(&response_data)
|
||||||
response_data.insert("status", value);
|
}
|
||||||
}
|
Err(_) => HttpResponse::BadRequest().body("error"),
|
||||||
Err(e) => {
|
|
||||||
error!("Error reading status: {}", e);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
match statement.read::<String, _>("tx") {
|
Ok(None) => HttpResponse::BadRequest().body("error"),
|
||||||
Ok(value) => {
|
Err(e) => {
|
||||||
response_data.insert("tx", value);
|
error!("Failed to search tx: {}", e);
|
||||||
}
|
HttpResponse::InternalServerError().body("error")
|
||||||
Err(e) => {
|
|
||||||
error!("Error reading tx: {}", e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
match statement.read::<String, _>("our_address") {
|
|
||||||
Ok(value) => {
|
|
||||||
response_data.insert("our_address", value);
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
error!("Error reading address: {}", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
match statement.read::<String, _>("our_fees") {
|
|
||||||
Ok(value) => {
|
|
||||||
response_data.insert("our_fees", value);
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
error!("Error reading fees: {}", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
match statement.read::<String, _>("reqid") {
|
|
||||||
Ok(value) => {
|
|
||||||
response_data.insert("time", value);
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
error!("Error reading reqid: {}", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
match serde_json::to_string(&response_data) {
|
|
||||||
Ok(json_data) => {
|
|
||||||
debug!("echo search reply: {}", json_data);
|
|
||||||
HttpResponse::Ok().json(&response_data)
|
|
||||||
}
|
|
||||||
Err(_) => HttpResponse::BadRequest().body("error"),
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
HttpResponse::BadRequest().body("error")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Holds a transaction that has already been parsed and validated outside the DB lock.
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
struct ParsedTx {
|
struct ParsedTx {
|
||||||
txid: String,
|
txid: String,
|
||||||
wtxid: String,
|
wtxid: String,
|
||||||
ntxid: String,
|
ntxid: String,
|
||||||
raw_hex: String, // the original line
|
raw_hex: String,
|
||||||
locktime: String,
|
locktime: String,
|
||||||
inputs: Vec<(String, String)>, // (in_txid, in_vout)
|
inputs: Vec<(String, String)>,
|
||||||
outputs: Vec<(usize, String, u64)>, // (idx, script_pubkey, amount_sat)
|
outputs: Vec<(usize, String, u64)>,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parse all transactions from the request body **without** needing the DB lock.
|
|
||||||
/// Skips transactions that don't have a valid willexecutor output.
|
|
||||||
fn parse_request_transactions(
|
fn parse_request_transactions(
|
||||||
strbody: &str,
|
strbody: &str,
|
||||||
_req_time: i64,
|
_req_time: i64,
|
||||||
@@ -531,7 +464,6 @@ fn parse_request_transactions(
|
|||||||
known_addresses: &HashSet<String>,
|
known_addresses: &HashSet<String>,
|
||||||
) -> Vec<(ParsedTx, String, u64)> {
|
) -> Vec<(ParsedTx, String, u64)> {
|
||||||
let mut result: Vec<(ParsedTx, String, u64)> = Vec::new();
|
let mut result: Vec<(ParsedTx, String, u64)> = Vec::new();
|
||||||
let mut union_tx = true;
|
|
||||||
|
|
||||||
for line in strbody.split('\n') {
|
for line in strbody.split('\n') {
|
||||||
if line.is_empty() {
|
if line.is_empty() {
|
||||||
@@ -561,7 +493,6 @@ fn parse_request_transactions(
|
|||||||
let wtxid = tx.compute_wtxid();
|
let wtxid = tx.compute_wtxid();
|
||||||
let locktime = tx.lock_time.to_string();
|
let locktime = tx.lock_time.to_string();
|
||||||
|
|
||||||
// Collect inputs
|
|
||||||
let mut inputs: Vec<(String, String)> = Vec::with_capacity(tx.input.len());
|
let mut inputs: Vec<(String, String)> = Vec::with_capacity(tx.input.len());
|
||||||
for input in tx.input {
|
for input in tx.input {
|
||||||
inputs.push((
|
inputs.push((
|
||||||
@@ -570,7 +501,6 @@ fn parse_request_transactions(
|
|||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Collect outputs and find which one is ours + its amount
|
|
||||||
let mut outputs: Vec<(usize, String, u64)> = Vec::with_capacity(tx.output.len());
|
let mut outputs: Vec<(usize, String, u64)> = Vec::with_capacity(tx.output.len());
|
||||||
let mut found = false;
|
let mut found = false;
|
||||||
let mut our_address = String::new();
|
let mut our_address = String::new();
|
||||||
@@ -586,13 +516,25 @@ fn parse_request_transactions(
|
|||||||
netconfig.network,
|
netconfig.network,
|
||||||
) {
|
) {
|
||||||
Ok(addr) => addr.to_string(),
|
Ok(addr) => addr.to_string(),
|
||||||
Err(_) => continue, // skip un-decodable outputs
|
Err(_) => continue,
|
||||||
};
|
};
|
||||||
|
|
||||||
let expected_ours = if netconfig.xpub {
|
let expected_ours = if netconfig.xpub {
|
||||||
if known_addresses.contains(&address) {
|
if known_addresses.contains(&address) {
|
||||||
|
trace!(
|
||||||
|
"output {} address {} found in known_addresses (total: {})",
|
||||||
|
idx,
|
||||||
|
&address,
|
||||||
|
known_addresses.len()
|
||||||
|
);
|
||||||
address.clone()
|
address.clone()
|
||||||
} else {
|
} else {
|
||||||
|
trace!(
|
||||||
|
"output {} address {} NOT in known_addresses (total: {}), skipping",
|
||||||
|
idx,
|
||||||
|
&address,
|
||||||
|
known_addresses.len()
|
||||||
|
);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -604,6 +546,11 @@ fn parse_request_transactions(
|
|||||||
our_fees = amount;
|
our_fees = amount;
|
||||||
found = true;
|
found = true;
|
||||||
trace!("address and fees are correct {}: {}", our_address, our_fees);
|
trace!("address and fees are correct {}: {}", our_address, our_fees);
|
||||||
|
} else if address == expected_ours {
|
||||||
|
trace!(
|
||||||
|
"output {} address matches but amount {} < fixed_fee {}, skipping",
|
||||||
|
idx, amount, netconfig.fixed_fee
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -615,11 +562,6 @@ fn parse_request_transactions(
|
|||||||
trace!("willexecutor output not found for tx {}, skipping", txid);
|
trace!("willexecutor output not found for tx {}, skipping", txid);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if !union_tx {
|
|
||||||
// This is only used for SQL building later; we track it in the caller
|
|
||||||
} else {
|
|
||||||
union_tx = false;
|
|
||||||
}
|
|
||||||
result.push((
|
result.push((
|
||||||
ParsedTx {
|
ParsedTx {
|
||||||
txid,
|
txid,
|
||||||
@@ -669,26 +611,17 @@ async fn echo_push(
|
|||||||
};
|
};
|
||||||
|
|
||||||
// ===== PHASE 1: parse all transactions WITHOUT the DB lock =====
|
// ===== PHASE 1: parse all transactions WITHOUT the DB lock =====
|
||||||
let known_addresses: HashSet<String> = {
|
let known_addresses: HashSet<String> = if netconfig.xpub {
|
||||||
let db = match data.db.lock() {
|
match get_all_addresses_by_xpub(&data.db, &netconfig.address).await {
|
||||||
Ok(g) => g,
|
Ok(addrs) => addrs,
|
||||||
Err(_p) => {
|
Err(e) => {
|
||||||
error!("DB mutex poisoned acquiring addresses in echo_push");
|
error!("Failed to load addresses from xpub: {}", e);
|
||||||
return HttpResponse::InternalServerError().body("error");
|
return HttpResponse::InternalServerError().body("error");
|
||||||
}
|
}
|
||||||
};
|
|
||||||
if netconfig.xpub {
|
|
||||||
match get_all_addresses_by_xpub(&db, &netconfig.address) {
|
|
||||||
Ok(addrs) => addrs,
|
|
||||||
Err(e) => {
|
|
||||||
error!("Failed to load addresses from xpub: {}", e);
|
|
||||||
return HttpResponse::InternalServerError().body("error");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
HashSet::new()
|
|
||||||
}
|
}
|
||||||
}; // lock released here
|
} else {
|
||||||
|
HashSet::new()
|
||||||
|
};
|
||||||
|
|
||||||
// Parse all transactions (CPU-bound, no DB needed)
|
// Parse all transactions (CPU-bound, no DB needed)
|
||||||
let parsed = parse_request_transactions(strbody, req_time, netconfig, &known_addresses);
|
let parsed = parse_request_transactions(strbody, req_time, netconfig, &known_addresses);
|
||||||
@@ -699,134 +632,86 @@ async fn echo_push(
|
|||||||
let all_txids: Vec<String> = parsed.iter().map(|(p, _, _)| p.txid.clone()).collect();
|
let all_txids: Vec<String> = parsed.iter().map(|(p, _, _)| p.txid.clone()).collect();
|
||||||
|
|
||||||
// ===== PHASE 2: check duplicates in a single batch query =====
|
// ===== PHASE 2: check duplicates in a single batch query =====
|
||||||
let duplicates = {
|
let duplicates = match check_duplicate_txids(&data.db, &all_txids).await {
|
||||||
let db = match data.db.lock() {
|
Ok(dups) => dups,
|
||||||
Ok(g) => g,
|
Err(e) => {
|
||||||
Err(_p) => {
|
error!("Duplicate check failed: {}", e);
|
||||||
error!("DB mutex poisoned in echo_push duplicate check");
|
return HttpResponse::InternalServerError().body("error");
|
||||||
return HttpResponse::InternalServerError().body("error");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
match check_duplicate_txids(&db, &all_txids) {
|
|
||||||
Ok(dups) => dups,
|
|
||||||
Err(e) => {
|
|
||||||
error!("Duplicate check failed: {}", e);
|
|
||||||
return HttpResponse::InternalServerError().body("error");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}; // lock released here
|
};
|
||||||
|
|
||||||
let all_present = all_txids.iter().all(|t| duplicates.contains(t));
|
let all_present = all_txids.iter().all(|t| duplicates.contains(t));
|
||||||
if all_present {
|
if all_present {
|
||||||
return HttpResponse::Ok().body("already present");
|
return HttpResponse::Ok().body("already present");
|
||||||
}
|
}
|
||||||
|
|
||||||
// ===== PHASE 3: build insert statements and execute (single DB lock, minimal time) =====
|
// ===== PHASE 3: build insert data and execute (single transaction, minimal time) =====
|
||||||
|
let mut tx_data = Vec::new();
|
||||||
|
let mut inp_data = Vec::new();
|
||||||
|
let mut out_data = Vec::new();
|
||||||
|
|
||||||
|
for (parsed, our_address, our_fees) in &parsed {
|
||||||
|
if duplicates.contains(&parsed.txid) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
tx_data.push(InsertTxData {
|
||||||
|
txid: parsed.txid.clone(),
|
||||||
|
wtxid: parsed.wtxid.clone(),
|
||||||
|
ntxid: parsed.ntxid.clone(),
|
||||||
|
raw_hex: parsed.raw_hex.clone(),
|
||||||
|
locktime: parsed.locktime.clone(),
|
||||||
|
reqid: req_time.to_string(),
|
||||||
|
network: netconfig.name.clone(),
|
||||||
|
our_address: our_address.clone(),
|
||||||
|
our_fees: our_fees.to_string(),
|
||||||
|
});
|
||||||
|
|
||||||
|
for (in_txid, in_vout) in &parsed.inputs {
|
||||||
|
inp_data.push(InsertInpData {
|
||||||
|
txid: parsed.txid.clone(),
|
||||||
|
in_txid: in_txid.clone(),
|
||||||
|
in_vout: in_vout.clone(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
for (idx, script, amount) in &parsed.outputs {
|
||||||
|
out_data.push(InsertOutData {
|
||||||
|
txid: parsed.txid.clone(),
|
||||||
|
vout: i64::try_from(*idx).unwrap_or(-1),
|
||||||
|
script_pubkey: script.clone(),
|
||||||
|
amount: i64::try_from(*amount).unwrap_or(0),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if tx_data.is_empty() {
|
||||||
|
return HttpResponse::Ok().body("already present");
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Err(err) = bal_server::db::execute_insert(&data.db, &tx_data, &inp_data, &out_data).await
|
||||||
{
|
{
|
||||||
let db = match data.db.lock() {
|
error!("execute_insert failed: {}", err);
|
||||||
Ok(g) => g,
|
return HttpResponse::BadRequest().body("error");
|
||||||
Err(_p) => {
|
}
|
||||||
error!("DB mutex poisoned in echo_push insert phase");
|
|
||||||
return HttpResponse::InternalServerError().body("error");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
let sqltxshead = "INSERT INTO tbl_tx (txid, wtxid, ntxid, tx, locktime, reqid, network, our_address, our_fees)".to_string();
|
|
||||||
let mut sqltxs = String::new();
|
|
||||||
let sqlinpshead = "INSERT INTO tbl_inp (txid, in_txid, in_vout )".to_string();
|
|
||||||
let mut sqlinps = String::new();
|
|
||||||
let sqloutshead = "INSERT INTO tbl_out (txid, vout, script_pubkey, amount )".to_string();
|
|
||||||
let mut sqlouts = String::new();
|
|
||||||
let mut union_tx = true;
|
|
||||||
let mut union_inps = true;
|
|
||||||
let mut union_outs = true;
|
|
||||||
|
|
||||||
let mut ptx: Vec<(usize, Value)> = vec![];
|
|
||||||
let mut pinps: Vec<(usize, Value)> = vec![];
|
|
||||||
let mut pouts: Vec<(usize, Value)> = vec![];
|
|
||||||
let mut linenum = 1usize;
|
|
||||||
let mut lineinp = 1usize;
|
|
||||||
let mut lineout = 1usize;
|
|
||||||
|
|
||||||
for (parsed, our_address, our_fees) in &parsed {
|
|
||||||
if duplicates.contains(&parsed.txid) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if !union_tx {
|
|
||||||
sqltxs.push_str(" UNION ALL");
|
|
||||||
} else {
|
|
||||||
union_tx = false;
|
|
||||||
}
|
|
||||||
sqltxs.push_str(" SELECT ?, ?, ?, ?, ?, ?, ?, ?, ?");
|
|
||||||
ptx.push((linenum, Value::String(parsed.txid.clone())));
|
|
||||||
ptx.push((linenum + 1, Value::String(parsed.wtxid.clone())));
|
|
||||||
ptx.push((linenum + 2, Value::String(parsed.ntxid.clone())));
|
|
||||||
ptx.push((linenum + 3, Value::String(parsed.raw_hex.clone())));
|
|
||||||
ptx.push((linenum + 4, Value::String(parsed.locktime.clone())));
|
|
||||||
ptx.push((linenum + 5, Value::String(req_time.to_string())));
|
|
||||||
ptx.push((linenum + 6, Value::String(netconfig.name.clone())));
|
|
||||||
ptx.push((linenum + 7, Value::String(our_address.clone())));
|
|
||||||
ptx.push((linenum + 8, Value::String(our_fees.to_string())));
|
|
||||||
linenum += 9;
|
|
||||||
|
|
||||||
for (in_txid, in_vout) in &parsed.inputs {
|
|
||||||
if !union_inps {
|
|
||||||
sqlinps.push_str(" UNION ALL");
|
|
||||||
} else {
|
|
||||||
union_inps = false;
|
|
||||||
}
|
|
||||||
sqlinps.push_str(" SELECT ?, ?, ?");
|
|
||||||
pinps.push((lineinp, Value::String(parsed.txid.clone())));
|
|
||||||
pinps.push((lineinp + 1, Value::String(in_txid.clone())));
|
|
||||||
pinps.push((lineinp + 2, Value::String(in_vout.clone())));
|
|
||||||
lineinp += 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (idx, script, amount) in &parsed.outputs {
|
|
||||||
if !union_outs {
|
|
||||||
sqlouts.push_str(" UNION ALL");
|
|
||||||
} else {
|
|
||||||
union_outs = false;
|
|
||||||
}
|
|
||||||
sqlouts.push_str(" SELECT ?, ?, ?, ?");
|
|
||||||
pouts.push((lineout, Value::String(parsed.txid.clone())));
|
|
||||||
pouts.push((
|
|
||||||
lineout + 1,
|
|
||||||
Value::Integer(i64::try_from(*idx).unwrap_or(-1)),
|
|
||||||
));
|
|
||||||
pouts.push((lineout + 2, Value::String(script.clone())));
|
|
||||||
pouts.push((
|
|
||||||
lineout + 3,
|
|
||||||
Value::Integer(i64::try_from(*amount).unwrap_or(0)),
|
|
||||||
));
|
|
||||||
lineout += 4;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if sqltxs.is_empty() {
|
|
||||||
return HttpResponse::Ok().body("already present");
|
|
||||||
}
|
|
||||||
|
|
||||||
let sqltxs = format!("{}{};", sqltxshead, sqltxs);
|
|
||||||
let sqlinps = format!("{}{};", sqlinpshead, sqlinps);
|
|
||||||
let sqlouts = format!("{}{};", sqloutshead, sqlouts);
|
|
||||||
|
|
||||||
if let Err(err) = execute_insert(&db, sqltxs, ptx, sqlinps, pinps, sqlouts, pouts) {
|
|
||||||
error!("execute_insert failed: {}", err);
|
|
||||||
return HttpResponse::BadRequest().body("error");
|
|
||||||
}
|
|
||||||
} // lock released
|
|
||||||
|
|
||||||
HttpResponse::Ok().body("thx")
|
HttpResponse::Ok().body("thx")
|
||||||
}
|
}
|
||||||
|
|
||||||
fn parse_env(data: &MyConfig) -> MyConfig {
|
fn parse_env(data: &MyConfig) -> MyConfig {
|
||||||
let mut cfg = data.clone();
|
let mut cfg = data.clone();
|
||||||
|
if let Ok(value) = env::var("BAL_SERVER_DB_BACKEND") {
|
||||||
|
debug!("BAL_SERVER_DB_BACKEND: {}", value);
|
||||||
|
cfg.db_backend = value;
|
||||||
|
}
|
||||||
if let Ok(value) = env::var("BAL_SERVER_DB_FILE") {
|
if let Ok(value) = env::var("BAL_SERVER_DB_FILE") {
|
||||||
debug!("BAL_SERVER_DB_FILE: {}", value);
|
debug!("BAL_SERVER_DB_FILE: {}", value);
|
||||||
cfg.db_file = value;
|
cfg.db_file = value;
|
||||||
}
|
}
|
||||||
|
if let Ok(value) = env::var("BAL_SERVER_PG_DSN") {
|
||||||
|
debug!("BAL_SERVER_PG_DSN: {}", value);
|
||||||
|
cfg.pg_dsn = value;
|
||||||
|
}
|
||||||
if let Ok(value) = env::var("BAL_SERVER_BIND_ADDRESS") {
|
if let Ok(value) = env::var("BAL_SERVER_BIND_ADDRESS") {
|
||||||
debug!("BAL_SERVER_BIND_ADDRESS: {}", value);
|
debug!("BAL_SERVER_BIND_ADDRESS: {}", value);
|
||||||
cfg.bind_address = value;
|
cfg.bind_address = value;
|
||||||
@@ -879,10 +764,10 @@ fn parse_env_netconfig(cfg: &mut MyConfig, chain: &str) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn init_network(db: &Connection, cfg: &MyConfig) {
|
async fn init_network(pool: &DatabasePool, cfg: &MyConfig) {
|
||||||
for network in NETWORKS {
|
for network in NETWORKS {
|
||||||
let netconfig = cfg.get_net_config(network);
|
let netconfig = cfg.get_net_config(network);
|
||||||
insert_xpub(db, &netconfig.name.to_string(), &netconfig.address);
|
insert_xpub(pool, &netconfig.name.to_string(), &netconfig.address).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -893,41 +778,45 @@ async fn main() -> std::io::Result<()> {
|
|||||||
let actix_cfg = parse_actix_config();
|
let actix_cfg = parse_actix_config();
|
||||||
|
|
||||||
let cfg = parse_env(&cfg);
|
let cfg = parse_env(&cfg);
|
||||||
let db = match open_db(&cfg.db_file) {
|
|
||||||
Ok(c) => c,
|
let connection_string = match cfg.db_backend.as_str() {
|
||||||
|
"sqlite" => cfg.db_file.clone(),
|
||||||
|
"postgresql" => cfg.pg_dsn.clone(),
|
||||||
|
other => {
|
||||||
|
return Err(std::io::Error::other(format!(
|
||||||
|
"Unknown DB backend: {}",
|
||||||
|
other
|
||||||
|
)));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let db = match open_database(&cfg.db_backend, &connection_string).await {
|
||||||
|
Ok(pool) => pool,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
return Err(std::io::Error::other(e));
|
return Err(std::io::Error::other(e));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// Create database tables
|
// Create database tables
|
||||||
create_database(&db);
|
create_database(&db)
|
||||||
|
.await
|
||||||
|
.map_err(|e| std::io::Error::other(format!("Failed to create database: {}", e)))?;
|
||||||
|
|
||||||
// Initialize networks
|
// Initialize networks
|
||||||
init_network(&db, &cfg);
|
init_network(&db, &cfg).await;
|
||||||
|
|
||||||
let data = web::Data::new(AppState {
|
let data = web::Data::new(AppState {
|
||||||
db: Mutex::new(db),
|
db,
|
||||||
cfg: cfg.clone(),
|
cfg: cfg.clone(),
|
||||||
});
|
});
|
||||||
|
|
||||||
// Initialize networks
|
|
||||||
{
|
|
||||||
let db = data.db.lock().unwrap();
|
|
||||||
for network in NETWORKS {
|
|
||||||
let netconfig = data.cfg.get_net_config(network);
|
|
||||||
insert_xpub(&db, &netconfig.name.to_string(), &netconfig.address);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let bind_address = data.cfg.bind_address.clone();
|
let bind_address = data.cfg.bind_address.clone();
|
||||||
let bind_port = data.cfg.bind_port;
|
let bind_port = data.cfg.bind_port;
|
||||||
|
|
||||||
// Use a single global rate limiter with the most conservative settings (1 req/sec)
|
let governor_conf = GovernorConfigBuilder::default()
|
||||||
// Per-endpoint rate limiting requires advanced configuration with explicit types
|
.seconds_per_request(actix_cfg.rate_limit_pushtxs.0)
|
||||||
let governor_conf = GovernorConfigBuilder::const_default()
|
.burst_size(actix_cfg.rate_limit_pushtxs.1)
|
||||||
.seconds_per_request(actix_cfg.rate_limit_pushtxs.0) // Most restrictive: 1 req/sec
|
.key_extractor(RealIpKeyExtractor)
|
||||||
.burst_size(actix_cfg.rate_limit_pushtxs.1) // Burst: 3
|
|
||||||
.finish()
|
.finish()
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
@@ -937,6 +826,7 @@ async fn main() -> std::io::Result<()> {
|
|||||||
App::new()
|
App::new()
|
||||||
.app_data(web::PayloadConfig::default().limit(actix_cfg.max_body_size))
|
.app_data(web::PayloadConfig::default().limit(actix_cfg.max_body_size))
|
||||||
.app_data(data.clone())
|
.app_data(data.clone())
|
||||||
|
.app_data(web::Data::new(actix_cfg.trusted_proxy))
|
||||||
.wrap(middleware::Logger::default())
|
.wrap(middleware::Logger::default())
|
||||||
.wrap(middleware::Compress::default())
|
.wrap(middleware::Compress::default())
|
||||||
.wrap(Governor::new(&governor_conf))
|
.wrap(Governor::new(&governor_conf))
|
||||||
|
|||||||
411
src/db.rs
411
src/db.rs
@@ -1,411 +0,0 @@
|
|||||||
use log::{error, info, trace, warn};
|
|
||||||
use sqlite::{Connection, Error, State, Value};
|
|
||||||
use std::collections::HashSet;
|
|
||||||
use std::path::Path;
|
|
||||||
use std::thread;
|
|
||||||
use std::time::Duration;
|
|
||||||
|
|
||||||
/// Check which txids are already present in the database in a single batch query.
|
|
||||||
/// Returns a HashSet of txids that already exist (duplicates).
|
|
||||||
/// This is O(1) per query regardless of the number of txids, replacing the N+1 pattern.
|
|
||||||
pub fn check_duplicate_txids(db: &Connection, txids: &[String]) -> Result<HashSet<String>, Error> {
|
|
||||||
if txids.is_empty() {
|
|
||||||
return Ok(HashSet::new());
|
|
||||||
}
|
|
||||||
|
|
||||||
// Build a single query with all txids using IN clause placeholders
|
|
||||||
// SQLite supports up to 1000 parameters per statement, so we chunk for safety
|
|
||||||
let mut duplicates = HashSet::new();
|
|
||||||
let chunk_size = 500; // Safe chunk size for SQLite parameters
|
|
||||||
|
|
||||||
for chunk in txids.chunks(chunk_size) {
|
|
||||||
let placeholders = chunk.iter().map(|_| "?").collect::<Vec<_>>().join(",");
|
|
||||||
let sql = format!("SELECT txid FROM tbl_tx WHERE txid IN ({})", placeholders);
|
|
||||||
let mut stmt = db.prepare(sql)?;
|
|
||||||
|
|
||||||
for (i, txid) in chunk.iter().enumerate() {
|
|
||||||
stmt.bind((i + 1, Value::String(txid.clone())))?;
|
|
||||||
}
|
|
||||||
|
|
||||||
while let Ok(State::Row) = stmt.next() {
|
|
||||||
if let Ok(txid) = stmt.read::<String, _>("txid") {
|
|
||||||
duplicates.insert(txid);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(duplicates)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Validates and opens the SQLite database, enforcing security best practices:
|
|
||||||
/// - Path must not contain `..` (directory traversal).
|
|
||||||
/// - Absolute paths must not target known system directories.
|
|
||||||
/// - If the file exists, it must be a regular file (not a symlink or device).
|
|
||||||
/// - WAL journal mode is enabled for safe concurrent access.
|
|
||||||
/// - Synchronous is set to NORMAL for performance with safety.
|
|
||||||
///
|
|
||||||
/// Returns `Err` on validation failure or open error to prevent panics.
|
|
||||||
pub fn open_db(path: &str) -> Result<Connection, String> {
|
|
||||||
let p = Path::new(path);
|
|
||||||
|
|
||||||
// Prevent directory traversal
|
|
||||||
for component in p.components() {
|
|
||||||
if component == std::path::Component::ParentDir {
|
|
||||||
return Err("Database path may not contain '..'".to_string());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// If absolute, block known sensitive system directories
|
|
||||||
if p.is_absolute() {
|
|
||||||
let path_str = p.to_str().unwrap_or("");
|
|
||||||
let forbidden = [
|
|
||||||
"/etc", "/proc", "/sys", "/dev", "/usr", "/bin", "/sbin", "/lib", "/opt",
|
|
||||||
];
|
|
||||||
for prefix in &forbidden {
|
|
||||||
if path_str.starts_with(prefix) {
|
|
||||||
return Err(format!(
|
|
||||||
"Absolute database path under {} is forbidden",
|
|
||||||
prefix
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// If file exists, must be a regular file (not a symlink, device, etc.)
|
|
||||||
if p.exists() {
|
|
||||||
if p.is_symlink() {
|
|
||||||
return Err("Database path must not be a symlink".to_string());
|
|
||||||
}
|
|
||||||
let metadata = std::fs::metadata(p)
|
|
||||||
.map_err(|e| format!("Cannot access database file metadata: {}", e))?;
|
|
||||||
if !metadata.is_file() {
|
|
||||||
return Err(
|
|
||||||
"Database path must point to a regular file, not a directory or device".to_string(),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let conn = sqlite::open(path).map_err(|e| format!("Failed to open SQLite database: {}", e))?;
|
|
||||||
|
|
||||||
// Set busy timeout BEFORE WAL mode so SQLite waits instead of failing immediately.
|
|
||||||
// This handles the race where two processes (server + pusher) open the same DB
|
|
||||||
// and both try to enable WAL mode concurrently.
|
|
||||||
conn.execute("PRAGMA busy_timeout = 5000;")
|
|
||||||
.map_err(|e| format!("Failed to set busy_timeout: {}", e))?;
|
|
||||||
|
|
||||||
// Retry WAL mode up to 5 times (handles concurrent open from bal-pusher).
|
|
||||||
let mut wal_ok = false;
|
|
||||||
for attempt in 0..5 {
|
|
||||||
match conn.execute("PRAGMA journal_mode = WAL;") {
|
|
||||||
Ok(_) => {
|
|
||||||
wal_ok = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
warn!(
|
|
||||||
"WAL mode attempt {}/5 failed: {}, retrying in 100ms...",
|
|
||||||
attempt + 1,
|
|
||||||
e
|
|
||||||
);
|
|
||||||
thread::sleep(Duration::from_millis(100));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if !wal_ok {
|
|
||||||
// WAL might already be enabled by another process; this is not fatal.
|
|
||||||
warn!("Could not set WAL mode after retries — may already be enabled by another process");
|
|
||||||
}
|
|
||||||
|
|
||||||
conn.execute("PRAGMA synchronous = NORMAL;")
|
|
||||||
.map_err(|e| format!("Failed to set synchronous NORMAL: {}", e))?;
|
|
||||||
|
|
||||||
Ok(conn)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Loads all known addresses for a given xpub into a HashSet for fast
|
|
||||||
/// in-memory lookup during transaction validation (replaces N+1 query).
|
|
||||||
pub fn get_all_addresses_by_xpub(db: &Connection, xpub: &str) -> Result<HashSet<String>, Error> {
|
|
||||||
let mut stmt = db.prepare(
|
|
||||||
"SELECT a.address FROM tbl_address a JOIN tbl_xpub x ON a.xpub = x.id WHERE x.xpub = ?",
|
|
||||||
)?;
|
|
||||||
stmt.bind((1, Value::String(xpub.to_string())))?;
|
|
||||||
let mut addresses = HashSet::new();
|
|
||||||
while let Ok(State::Row) = stmt.next() {
|
|
||||||
match stmt.read::<String, _>("address") {
|
|
||||||
Ok(addr) => {
|
|
||||||
addresses.insert(addr);
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
error!("Failed to read address column: {}", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(addresses)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn create_database(db: &Connection) {
|
|
||||||
info!("database sanity check");
|
|
||||||
let _ = db.execute("CREATE TABLE IF NOT EXISTS tbl_tx (txid PRIMARY KEY, date_creation TIMESTAMP DEFAULT CURRENT_TIMESTAMP, date_update TIMESTAMP DEFAULT CURRENT_TIMESTAMP, wtxid, ntxid, tx, locktime integer, network, network_fees, reqid, our_fees, our_address, status integer DEFAULT 0);");
|
|
||||||
let _ = db.execute("ALTER TABLE tbl_tx ADD COLUMN push_err TEXT");
|
|
||||||
|
|
||||||
let _ = db.execute("CREATE TABLE IF NOT EXISTS tbl_inp(id, txid, in_txid, in_vout);");
|
|
||||||
let _ = db.execute("CREATE UNIQUE INDEX ON tbl_inp(txid,in_txid,in_vout);");
|
|
||||||
|
|
||||||
let _ =
|
|
||||||
db.execute("CREATE TABLE IF NOT EXISTS tbl_out(id, txid, script_pubkey, amount, vout);");
|
|
||||||
let _ = db.execute("CREATE UNIQUE INDEX ON tbl_out(txid, script_pubkey, amount, vout);");
|
|
||||||
|
|
||||||
let _ = db.execute("CREATE TABLE IF NOT EXISTS tbl_xpub (id INTEGER PRIMARY KEY , network TEXT, xpub TEXT, date_create TIMESTAMP DEFAULT CURRENT_TIMESTAMP,path_idx INTEGER DEFAULT -1);");
|
|
||||||
let _ = db.execute("CREATE UNIQUE INDEX idx_xpub ON tbl_xpub (network, xpub)");
|
|
||||||
let _ = db.execute("CREATE TABLE IF NOT EXISTS tbl_address (address TEXT PRIMARY_KEY, path TEXT NOT NULL, date_create TIMESTAMP DEFAULT CURRENT_TIMESTAMP, xpub INTEGER,remote_address TEXT);");
|
|
||||||
|
|
||||||
let _ = db.execute("CREATE TABLE IF NOT EXISTS tbl_stats (report_date TEXT, chain TEXT, totals INTEGER, waiting INTEGER, sent INTEGER, failed INTEGER, waiting_profit INTEGER, sent_profit INTEGER, missed_profit INTEGER, unique_inputs INTEGER);");
|
|
||||||
// UNIQUE index required for ON CONFLICT(chain) DO UPDATE in calculate_stats
|
|
||||||
let _ = db.execute("DROP INDEX IF EXISTS idx_stats_chain;");
|
|
||||||
let _ = db.execute("CREATE UNIQUE INDEX IF NOT EXISTS idx_stats_chain ON tbl_stats(chain);");
|
|
||||||
|
|
||||||
let _ = db.execute("UPDATE tbl_tx set network='bitcoin' where network='mainnet');");
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
pub fn get_xpub_id(db: &Connection, network: &String, xpub: &String) -> Option<i64>{
|
|
||||||
let mut stmt = db.prepare("SELECT * FROM tbl_xpub where network = ? and xpub = ?;").unwrap();
|
|
||||||
let _ = stmt.bind((1,Value::String(network.to_string()))).unwrap();
|
|
||||||
let _ = stmt.bind((2,Value::String(xpub.to_string()))).unwrap();
|
|
||||||
if let Ok(State::Row) = stmt.next(){
|
|
||||||
return Some(stmt.read::<i64, _>("id").unwrap());
|
|
||||||
} else {
|
|
||||||
return None;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
pub fn insert_xpub(db: &Connection, network: &str, xpub: &str) {
|
|
||||||
if !xpub.is_empty() {
|
|
||||||
trace!("going to insert: {} xpub:{}", network, xpub);
|
|
||||||
let mut stmt = match db.prepare("INSERT INTO tbl_xpub(network,xpub) VALUES(?, ?);") {
|
|
||||||
Ok(s) => s,
|
|
||||||
Err(e) => {
|
|
||||||
error!("Failed to prepare xpub insert statement: {}", e);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
if let Err(e) = stmt.bind((1, Value::String(network.to_string()))) {
|
|
||||||
error!("Failed to bind network parameter for xpub insert: {}", e);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if let Err(e) = stmt.bind((2, Value::String(xpub.to_string()))) {
|
|
||||||
error!("Failed to bind xpub parameter: {}", e);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if let Err(e) = stmt.next() {
|
|
||||||
error!("Failed to insert xpub: {}", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_last_used_address_by_ip(
|
|
||||||
db: &Connection,
|
|
||||||
network: &String,
|
|
||||||
xpub: &String,
|
|
||||||
address: &String,
|
|
||||||
) -> Option<String> {
|
|
||||||
let mut stmt = match db.prepare("SELECT tbl_address.address FROM tbl_xpub join tbl_address on(tbl_xpub.id = tbl_address.xpub) where tbl_xpub.network = ? and tbl_address.remote_address = ? and tbl_xpub.xpub = ? ORDER BY tbl_address.date_create DESC LIMIT 1;") {
|
|
||||||
Ok(s) => s,
|
|
||||||
Err(e) => {
|
|
||||||
error!("Failed to prepare address query: {}", e);
|
|
||||||
return None;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
if let Err(e) = stmt.bind((1, Value::String(network.to_string()))) {
|
|
||||||
error!("Failed to bind network parameter: {}", e);
|
|
||||||
return None;
|
|
||||||
}
|
|
||||||
if let Err(e) = stmt.bind((2, Value::String(address.to_string()))) {
|
|
||||||
error!("Failed to bind address parameter: {}", e);
|
|
||||||
return None;
|
|
||||||
}
|
|
||||||
if let Err(e) = stmt.bind((3, Value::String(xpub.to_string()))) {
|
|
||||||
error!("Failed to bind xpub parameter: {}", e);
|
|
||||||
return None;
|
|
||||||
}
|
|
||||||
if let Ok(State::Row) = stmt.next() {
|
|
||||||
match stmt.read::<String, _>("address") {
|
|
||||||
Ok(addr) => Some(addr),
|
|
||||||
Err(e) => {
|
|
||||||
error!("Failed to read address column: {}", e);
|
|
||||||
None
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
}
|
|
||||||
}
|
|
||||||
pub fn get_next_address_index(db: &Connection, network: &String, xpub: &String) -> (i64, i64) {
|
|
||||||
let mut stmt = match db.prepare("UPDATE tbl_xpub SET path_idx = path_idx + 1 WHERE network = ? and xpub= ? RETURNING path_idx,id;") {
|
|
||||||
Ok(s) => s,
|
|
||||||
Err(e) => {
|
|
||||||
error!("Failed to prepare xpub index update: {}", e);
|
|
||||||
return (0, 0);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
if let Err(e) = stmt.bind((1, Value::String(network.to_string()))) {
|
|
||||||
error!("Failed to bind network parameter: {}", e);
|
|
||||||
return (0, 0);
|
|
||||||
}
|
|
||||||
if let Err(e) = stmt.bind((2, Value::String(xpub.to_string()))) {
|
|
||||||
error!("Failed to bind xpub parameter: {}", e);
|
|
||||||
return (0, 0);
|
|
||||||
}
|
|
||||||
match stmt.next() {
|
|
||||||
Ok(State::Row) => match stmt.read::<i64, _>("path_idx") {
|
|
||||||
Ok(next) => match stmt.read::<i64, _>("id") {
|
|
||||||
Ok(id) => (id, next),
|
|
||||||
Err(e) => {
|
|
||||||
error!("Failed to read id column: {}", e);
|
|
||||||
(0, 0)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
Err(e) => {
|
|
||||||
error!("Failed to read path_idx column: {}", e);
|
|
||||||
(0, 0)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
Err(e) => {
|
|
||||||
error!("Failed to execute xpub index update: {}", e);
|
|
||||||
(0, 0)
|
|
||||||
}
|
|
||||||
Ok(State::Done) => (0, 0),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
pub fn save_new_address(
|
|
||||||
db: &Connection,
|
|
||||||
xpub: i64,
|
|
||||||
address: &String,
|
|
||||||
path: &String,
|
|
||||||
remote_addr: &String,
|
|
||||||
) {
|
|
||||||
let mut stmt = match db.prepare(
|
|
||||||
"INSERT INTO tbl_address(address,path,xpub,remote_address) VALUES(?,?,?,?);
|
|
||||||
",
|
|
||||||
) {
|
|
||||||
Ok(s) => s,
|
|
||||||
Err(e) => {
|
|
||||||
error!("Failed to prepare address insert statement: {}", e);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Err(e) = stmt.bind((1, Value::String(address.to_string()))) {
|
|
||||||
error!("Failed to bind address parameter: {}", e);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if let Err(e) = stmt.bind((2, Value::String(path.to_string()))) {
|
|
||||||
error!("Failed to bind path parameter: {}", e);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if let Err(e) = stmt.bind((3, Value::Integer(xpub))) {
|
|
||||||
error!("Failed to bind xpub parameter: {}", e);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if let Err(e) = stmt.bind((4, Value::String(remote_addr.to_string()))) {
|
|
||||||
error!("Failed to bind remote_addr parameter: {}", e);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Err(e) = stmt.next() {
|
|
||||||
error!("Failed to insert address: {}", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
pub fn execute_insert(
|
|
||||||
db: &Connection,
|
|
||||||
sqltxs: String,
|
|
||||||
ptx: Vec<(usize, Value)>,
|
|
||||||
sqlinp: String,
|
|
||||||
pinp: Vec<(usize, Value)>,
|
|
||||||
sqlout: String,
|
|
||||||
pout: Vec<(usize, Value)>,
|
|
||||||
) -> Result<(), Error> {
|
|
||||||
let _ = db.execute("BEGIN TRANSACTION");
|
|
||||||
let mut stmt = match db.prepare(sqltxs.as_str()) {
|
|
||||||
Ok(s) => s,
|
|
||||||
Err(err) => {
|
|
||||||
error!("error preparing sqltxs: {}", err);
|
|
||||||
let _ = db.execute("ROLLBACK");
|
|
||||||
return Err(err);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
if let Err(err) = stmt.bind::<&[(_, Value)]>(&ptx[..]) {
|
|
||||||
error!("error binding transaction parameters: {}", err);
|
|
||||||
let _ = db.execute("ROLLBACK");
|
|
||||||
return Err(err);
|
|
||||||
}
|
|
||||||
if let Err(err) = stmt.next() {
|
|
||||||
error!("error inserting transactions {}", err);
|
|
||||||
let _ = db.execute("ROLLBACK");
|
|
||||||
} else {
|
|
||||||
let mut stmt = match db.prepare(sqlinp.as_str()) {
|
|
||||||
Ok(s) => s,
|
|
||||||
Err(err) => {
|
|
||||||
error!("error preparing sqlinp: {}", err);
|
|
||||||
let _ = db.execute("ROLLBACK");
|
|
||||||
return Err(err);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
if let Err(err) = stmt.bind::<&[(_, Value)]>(&pinp[..]) {
|
|
||||||
error!("error binding inputs parameters {}", err);
|
|
||||||
let _ = db.execute("ROLLBACK");
|
|
||||||
return Err(err);
|
|
||||||
}
|
|
||||||
if let Err(err) = stmt.next() {
|
|
||||||
error!("error inserting inputs {}", err);
|
|
||||||
let _ = db.execute("ROLLBACK");
|
|
||||||
return Err(err);
|
|
||||||
} else {
|
|
||||||
let mut stmt = match db.prepare(sqlout.as_str()) {
|
|
||||||
Ok(s) => s,
|
|
||||||
Err(err) => {
|
|
||||||
error!("error preparing sqlout: {}", err);
|
|
||||||
let _ = db.execute("ROLLBACK");
|
|
||||||
return Err(err);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
if let Err(err) = stmt.bind::<&[(_, Value)]>(&pout[..]) {
|
|
||||||
error!("error binding outs parameters {}", err);
|
|
||||||
let _ = db.execute("ROLLBACK");
|
|
||||||
return Err(err);
|
|
||||||
}
|
|
||||||
if let Err(err) = stmt.next() {
|
|
||||||
error!("error inserting outs {}", err);
|
|
||||||
let _ = db.execute("ROLLBACK");
|
|
||||||
return Err(err);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
let _ = db.execute("COMMIT");
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
pub fn get_total_transaction_number(db: Connection, network: &String) -> Result<i64, Error> {
|
|
||||||
let mut stmt = db
|
|
||||||
.prepare("SELECT COUNT(*) as total_number FROM tbl_tx where network = ?;")
|
|
||||||
.map_err(|e| {
|
|
||||||
error!("Failed to prepare statement: {}", e);
|
|
||||||
e
|
|
||||||
})?;
|
|
||||||
if let Err(e) = stmt.bind((1, Value::String(network.to_string()))) {
|
|
||||||
error!("Failed to bind network parameter: {}", e);
|
|
||||||
return Err(e);
|
|
||||||
}
|
|
||||||
match stmt.next() {
|
|
||||||
Ok(State::Row) => match stmt.read::<i64, _>("total_number") {
|
|
||||||
Ok(val) => Ok(val),
|
|
||||||
Err(e) => {
|
|
||||||
error!("Failed to read total_number column: {}", e);
|
|
||||||
Err(e)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
Ok(sqlite::State::Done) => Ok(0),
|
|
||||||
Err(err) => {
|
|
||||||
error!("Failed to execute query: {}", err);
|
|
||||||
Err(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
868
src/db/mod.rs
Normal file
868
src/db/mod.rs
Normal file
@@ -0,0 +1,868 @@
|
|||||||
|
pub mod schema;
|
||||||
|
|
||||||
|
use log::{error, info, trace};
|
||||||
|
use sqlx::Row;
|
||||||
|
use std::collections::HashSet;
|
||||||
|
use std::path::Path;
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub enum DatabasePool {
|
||||||
|
SQLite(sqlx::SqlitePool),
|
||||||
|
PostgreSQL(sqlx::PgPool),
|
||||||
|
}
|
||||||
|
|
||||||
|
fn validate_sqlite_path(dsn: &str) -> Result<(), String> {
|
||||||
|
// Extract file path from DSN formats like "sqlite:path" or "file:path?mode=rwc"
|
||||||
|
let path_str = if let Some(rest) = dsn.strip_prefix("sqlite:") {
|
||||||
|
rest.split('?').next().unwrap_or(rest)
|
||||||
|
} else if let Some(rest) = dsn.strip_prefix("file:") {
|
||||||
|
rest.split('?').next().unwrap_or(rest)
|
||||||
|
} else {
|
||||||
|
dsn
|
||||||
|
};
|
||||||
|
|
||||||
|
// Skip validation for in-memory databases
|
||||||
|
if path_str == ":memory:" || path_str.is_empty() {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
let p = Path::new(path_str);
|
||||||
|
|
||||||
|
// Prevent directory traversal
|
||||||
|
for component in p.components() {
|
||||||
|
if component == std::path::Component::ParentDir {
|
||||||
|
return Err("Database path may not contain '..'".to_string());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If absolute, block known sensitive system directories
|
||||||
|
if p.is_absolute() {
|
||||||
|
let forbidden = [
|
||||||
|
"/etc", "/proc", "/sys", "/dev", "/usr", "/bin", "/sbin", "/lib", "/opt",
|
||||||
|
];
|
||||||
|
for prefix in &forbidden {
|
||||||
|
if path_str.starts_with(prefix) {
|
||||||
|
return Err(format!(
|
||||||
|
"Absolute database path under {} is forbidden",
|
||||||
|
prefix
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If file exists, must be a regular file (not a symlink, device, etc.)
|
||||||
|
if p.exists() {
|
||||||
|
if p.is_symlink() {
|
||||||
|
return Err("Database path must not be a symlink".to_string());
|
||||||
|
}
|
||||||
|
let metadata = std::fs::metadata(p)
|
||||||
|
.map_err(|e| format!("Cannot access database file metadata: {}", e))?;
|
||||||
|
if !metadata.is_file() {
|
||||||
|
return Err(
|
||||||
|
"Database path must point to a regular file, not a directory or device".to_string(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn open_database(backend: &str, connection_string: &str) -> Result<DatabasePool, String> {
|
||||||
|
match backend {
|
||||||
|
"sqlite" => {
|
||||||
|
validate_sqlite_path(connection_string)?;
|
||||||
|
let pool = sqlx::sqlite::SqlitePoolOptions::new()
|
||||||
|
.max_connections(1)
|
||||||
|
.connect(connection_string)
|
||||||
|
.await
|
||||||
|
.map_err(|e| format!("Failed to open SQLite database: {}", e))?;
|
||||||
|
sqlx::query("PRAGMA journal_mode=WAL")
|
||||||
|
.execute(&pool)
|
||||||
|
.await
|
||||||
|
.map_err(|e| format!("Failed to set WAL mode: {}", e))?;
|
||||||
|
sqlx::query("PRAGMA busy_timeout=5000")
|
||||||
|
.execute(&pool)
|
||||||
|
.await
|
||||||
|
.map_err(|e| format!("Failed to set busy_timeout: {}", e))?;
|
||||||
|
Ok(DatabasePool::SQLite(pool))
|
||||||
|
}
|
||||||
|
"postgresql" => {
|
||||||
|
let pool = sqlx::postgres::PgPoolOptions::new()
|
||||||
|
.max_connections(10)
|
||||||
|
.connect(connection_string)
|
||||||
|
.await
|
||||||
|
.map_err(|e| format!("Failed to open PostgreSQL database: {}", e))?;
|
||||||
|
Ok(DatabasePool::PostgreSQL(pool))
|
||||||
|
}
|
||||||
|
other => Err(format!("Unknown database backend: {}", other)),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn create_database(pool: &DatabasePool) -> Result<(), sqlx::Error> {
|
||||||
|
info!("database sanity check");
|
||||||
|
match pool {
|
||||||
|
DatabasePool::SQLite(p) => schema::create_sqlite_schema(p).await,
|
||||||
|
DatabasePool::PostgreSQL(p) => schema::create_pg_schema(p).await,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn check_duplicate_txids(
|
||||||
|
pool: &DatabasePool,
|
||||||
|
txids: &[String],
|
||||||
|
) -> Result<HashSet<String>, sqlx::Error> {
|
||||||
|
if txids.is_empty() {
|
||||||
|
return Ok(HashSet::new());
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut duplicates = HashSet::new();
|
||||||
|
let chunk_size = 500;
|
||||||
|
|
||||||
|
for chunk in txids.chunks(chunk_size) {
|
||||||
|
match pool {
|
||||||
|
DatabasePool::SQLite(p) => {
|
||||||
|
let placeholders: Vec<String> = chunk.iter().map(|_| "?".to_string()).collect();
|
||||||
|
let sql = format!(
|
||||||
|
"SELECT txid FROM tbl_tx WHERE txid IN ({})",
|
||||||
|
placeholders.join(",")
|
||||||
|
);
|
||||||
|
let mut query = sqlx::query(&sql);
|
||||||
|
for txid in chunk {
|
||||||
|
query = query.bind(txid);
|
||||||
|
}
|
||||||
|
let rows = query.fetch_all(p).await?;
|
||||||
|
for row in rows {
|
||||||
|
if let Ok(txid) = row.try_get::<String, _>("txid") {
|
||||||
|
duplicates.insert(txid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
DatabasePool::PostgreSQL(p) => {
|
||||||
|
let placeholders: Vec<String> = chunk
|
||||||
|
.iter()
|
||||||
|
.enumerate()
|
||||||
|
.map(|(i, _)| format!("${}", i + 1))
|
||||||
|
.collect();
|
||||||
|
let sql = format!(
|
||||||
|
"SELECT txid FROM tbl_tx WHERE txid IN ({})",
|
||||||
|
placeholders.join(",")
|
||||||
|
);
|
||||||
|
let mut query = sqlx::query(&sql);
|
||||||
|
for txid in chunk {
|
||||||
|
query = query.bind(txid);
|
||||||
|
}
|
||||||
|
let rows = query.fetch_all(p).await?;
|
||||||
|
for row in rows {
|
||||||
|
if let Ok(txid) = row.try_get::<String, _>("txid") {
|
||||||
|
duplicates.insert(txid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(duplicates)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_all_addresses_by_xpub(
|
||||||
|
pool: &DatabasePool,
|
||||||
|
xpub: &str,
|
||||||
|
) -> Result<HashSet<String>, sqlx::Error> {
|
||||||
|
let mut addresses = HashSet::new();
|
||||||
|
|
||||||
|
trace!("get_all_addresses_by_xpub: querying for xpub={}", xpub);
|
||||||
|
|
||||||
|
match pool {
|
||||||
|
DatabasePool::SQLite(p) => {
|
||||||
|
let rows = sqlx::query(
|
||||||
|
"SELECT a.address FROM tbl_address a JOIN tbl_xpub x ON a.xpub = x.id WHERE x.xpub = ?",
|
||||||
|
)
|
||||||
|
.bind(xpub)
|
||||||
|
.fetch_all(p)
|
||||||
|
.await?;
|
||||||
|
trace!(
|
||||||
|
"get_all_addresses_by_xpub: SQLite returned {} rows",
|
||||||
|
rows.len()
|
||||||
|
);
|
||||||
|
for row in rows {
|
||||||
|
if let Ok(addr) = row.try_get::<String, _>("address") {
|
||||||
|
trace!("get_all_addresses_by_xpub: address={}", &addr);
|
||||||
|
addresses.insert(addr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
DatabasePool::PostgreSQL(p) => {
|
||||||
|
let rows = sqlx::query(
|
||||||
|
"SELECT a.address FROM tbl_address a JOIN tbl_xpub x ON a.xpub = x.id WHERE x.xpub = $1",
|
||||||
|
)
|
||||||
|
.bind(xpub)
|
||||||
|
.fetch_all(p)
|
||||||
|
.await?;
|
||||||
|
trace!(
|
||||||
|
"get_all_addresses_by_xpub: PostgreSQL returned {} rows",
|
||||||
|
rows.len()
|
||||||
|
);
|
||||||
|
for row in rows {
|
||||||
|
if let Ok(addr) = row.try_get::<String, _>("address") {
|
||||||
|
trace!("get_all_addresses_by_xpub: address={}", &addr);
|
||||||
|
addresses.insert(addr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
trace!(
|
||||||
|
"get_all_addresses_by_xpub: returning {} addresses",
|
||||||
|
addresses.len()
|
||||||
|
);
|
||||||
|
Ok(addresses)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn insert_xpub(pool: &DatabasePool, network: &str, xpub: &str) {
|
||||||
|
if xpub.is_empty() {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
trace!("going to insert: {} xpub:{}", network, xpub);
|
||||||
|
|
||||||
|
match pool {
|
||||||
|
DatabasePool::SQLite(p) => {
|
||||||
|
if let Err(e) =
|
||||||
|
sqlx::query("INSERT OR IGNORE INTO tbl_xpub(network, xpub) VALUES(?, ?)")
|
||||||
|
.bind(network)
|
||||||
|
.bind(xpub)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
error!("Failed to insert xpub: {}", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
DatabasePool::PostgreSQL(p) => {
|
||||||
|
if let Err(e) = sqlx::query(
|
||||||
|
"INSERT INTO tbl_xpub(network, xpub) VALUES($1, $2) ON CONFLICT DO NOTHING",
|
||||||
|
)
|
||||||
|
.bind(network)
|
||||||
|
.bind(xpub)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
error!("Failed to insert xpub: {}", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_last_used_address_by_ip(
|
||||||
|
pool: &DatabasePool,
|
||||||
|
network: &str,
|
||||||
|
xpub: &str,
|
||||||
|
address: &str,
|
||||||
|
) -> Option<String> {
|
||||||
|
match pool {
|
||||||
|
DatabasePool::SQLite(p) => {
|
||||||
|
let result = sqlx::query(
|
||||||
|
"SELECT tbl_address.address FROM tbl_xpub JOIN tbl_address ON(tbl_xpub.id = tbl_address.xpub) WHERE tbl_xpub.network = ? AND tbl_address.remote_address = ? AND tbl_xpub.xpub = ? ORDER BY tbl_address.date_create DESC LIMIT 1",
|
||||||
|
)
|
||||||
|
.bind(network)
|
||||||
|
.bind(address)
|
||||||
|
.bind(xpub)
|
||||||
|
.fetch_optional(p)
|
||||||
|
.await;
|
||||||
|
|
||||||
|
match result {
|
||||||
|
Ok(Some(row)) => row.try_get::<String, _>("address").ok(),
|
||||||
|
Ok(None) => None,
|
||||||
|
Err(e) => {
|
||||||
|
error!("Failed to query last used address: {}", e);
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
DatabasePool::PostgreSQL(p) => {
|
||||||
|
let result = sqlx::query(
|
||||||
|
"SELECT tbl_address.address FROM tbl_xpub JOIN tbl_address ON(tbl_xpub.id = tbl_address.xpub) WHERE tbl_xpub.network = $1 AND tbl_address.remote_address = $2 AND tbl_xpub.xpub = $3 ORDER BY tbl_address.date_create DESC LIMIT 1",
|
||||||
|
)
|
||||||
|
.bind(network)
|
||||||
|
.bind(address)
|
||||||
|
.bind(xpub)
|
||||||
|
.fetch_optional(p)
|
||||||
|
.await;
|
||||||
|
|
||||||
|
match result {
|
||||||
|
Ok(Some(row)) => row.try_get::<String, _>("address").ok(),
|
||||||
|
Ok(None) => None,
|
||||||
|
Err(e) => {
|
||||||
|
error!("Failed to query last used address: {}", e);
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_next_address_index(pool: &DatabasePool, network: &str, xpub: &str) -> (i64, i64) {
|
||||||
|
match pool {
|
||||||
|
DatabasePool::SQLite(p) => {
|
||||||
|
let result = sqlx::query(
|
||||||
|
"UPDATE tbl_xpub SET path_idx = path_idx + 1 WHERE network = ? AND xpub = ? RETURNING path_idx, id",
|
||||||
|
)
|
||||||
|
.bind(network)
|
||||||
|
.bind(xpub)
|
||||||
|
.fetch_optional(p)
|
||||||
|
.await;
|
||||||
|
|
||||||
|
match result {
|
||||||
|
Ok(Some(row)) => {
|
||||||
|
let idx = row.try_get::<i64, _>("path_idx").unwrap_or(0);
|
||||||
|
let id = row.try_get::<i64, _>("id").unwrap_or(0);
|
||||||
|
(id, idx)
|
||||||
|
}
|
||||||
|
Ok(None) => (0, 0),
|
||||||
|
Err(e) => {
|
||||||
|
error!("Failed to get next address index: {}", e);
|
||||||
|
(0, 0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
DatabasePool::PostgreSQL(p) => {
|
||||||
|
let result = sqlx::query(
|
||||||
|
"UPDATE tbl_xpub SET path_idx = path_idx + 1 WHERE network = $1 AND xpub = $2 RETURNING path_idx, id",
|
||||||
|
)
|
||||||
|
.bind(network)
|
||||||
|
.bind(xpub)
|
||||||
|
.fetch_optional(p)
|
||||||
|
.await;
|
||||||
|
|
||||||
|
match result {
|
||||||
|
Ok(Some(row)) => {
|
||||||
|
let idx = row.try_get::<i32, _>("path_idx").unwrap_or(0) as i64;
|
||||||
|
let id = row.try_get::<i32, _>("id").unwrap_or(0) as i64;
|
||||||
|
(id, idx)
|
||||||
|
}
|
||||||
|
Ok(None) => (0, 0),
|
||||||
|
Err(e) => {
|
||||||
|
error!("Failed to get next address index: {}", e);
|
||||||
|
(0, 0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn save_new_address(
|
||||||
|
pool: &DatabasePool,
|
||||||
|
xpub: i64,
|
||||||
|
address: &str,
|
||||||
|
path: &str,
|
||||||
|
remote_addr: &str,
|
||||||
|
) {
|
||||||
|
match pool {
|
||||||
|
DatabasePool::SQLite(p) => {
|
||||||
|
if let Err(e) = sqlx::query(
|
||||||
|
"INSERT INTO tbl_address(address, path, xpub, remote_address) VALUES(?, ?, ?, ?)",
|
||||||
|
)
|
||||||
|
.bind(address)
|
||||||
|
.bind(path)
|
||||||
|
.bind(xpub)
|
||||||
|
.bind(remote_addr)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
error!("Failed to save address: {}", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
DatabasePool::PostgreSQL(p) => {
|
||||||
|
if let Err(e) = sqlx::query(
|
||||||
|
"INSERT INTO tbl_address(address, path, xpub, remote_address) VALUES($1, $2, $3, $4)",
|
||||||
|
)
|
||||||
|
.bind(address)
|
||||||
|
.bind(path)
|
||||||
|
.bind(xpub as i32)
|
||||||
|
.bind(remote_addr)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
error!("Failed to save address: {}", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct InsertTxData {
|
||||||
|
pub txid: String,
|
||||||
|
pub wtxid: String,
|
||||||
|
pub ntxid: String,
|
||||||
|
pub raw_hex: String,
|
||||||
|
pub locktime: String,
|
||||||
|
pub reqid: String,
|
||||||
|
pub network: String,
|
||||||
|
pub our_address: String,
|
||||||
|
pub our_fees: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct InsertInpData {
|
||||||
|
pub txid: String,
|
||||||
|
pub in_txid: String,
|
||||||
|
pub in_vout: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct InsertOutData {
|
||||||
|
pub txid: String,
|
||||||
|
pub vout: i64,
|
||||||
|
pub script_pubkey: String,
|
||||||
|
pub amount: i64,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn execute_insert(
|
||||||
|
pool: &DatabasePool,
|
||||||
|
txs: &[InsertTxData],
|
||||||
|
inps: &[InsertInpData],
|
||||||
|
outs: &[InsertOutData],
|
||||||
|
) -> Result<(), sqlx::Error> {
|
||||||
|
match pool {
|
||||||
|
DatabasePool::SQLite(p) => {
|
||||||
|
let mut tx = p.begin().await?;
|
||||||
|
|
||||||
|
for item in txs {
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO tbl_tx (txid, wtxid, ntxid, tx, locktime, reqid, network, our_address, our_fees) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)"
|
||||||
|
)
|
||||||
|
.bind(&item.txid)
|
||||||
|
.bind(&item.wtxid)
|
||||||
|
.bind(&item.ntxid)
|
||||||
|
.bind(&item.raw_hex)
|
||||||
|
.bind(&item.locktime)
|
||||||
|
.bind(&item.reqid)
|
||||||
|
.bind(&item.network)
|
||||||
|
.bind(&item.our_address)
|
||||||
|
.bind(&item.our_fees)
|
||||||
|
.execute(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
for item in inps {
|
||||||
|
sqlx::query("INSERT INTO tbl_inp (txid, in_txid, in_vout) VALUES (?, ?, ?)")
|
||||||
|
.bind(&item.txid)
|
||||||
|
.bind(&item.in_txid)
|
||||||
|
.bind(&item.in_vout)
|
||||||
|
.execute(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
for item in outs {
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO tbl_out (txid, vout, script_pubkey, amount) VALUES (?, ?, ?, ?)",
|
||||||
|
)
|
||||||
|
.bind(&item.txid)
|
||||||
|
.bind(item.vout)
|
||||||
|
.bind(&item.script_pubkey)
|
||||||
|
.bind(item.amount)
|
||||||
|
.execute(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
tx.commit().await?;
|
||||||
|
}
|
||||||
|
DatabasePool::PostgreSQL(p) => {
|
||||||
|
let mut tx = p.begin().await?;
|
||||||
|
|
||||||
|
for item in txs {
|
||||||
|
let locktime_i64: i64 = item.locktime.parse().unwrap_or(0);
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO tbl_tx (txid, wtxid, ntxid, tx, locktime, reqid, network, our_address, our_fees) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)"
|
||||||
|
)
|
||||||
|
.bind(&item.txid)
|
||||||
|
.bind(&item.wtxid)
|
||||||
|
.bind(&item.ntxid)
|
||||||
|
.bind(&item.raw_hex)
|
||||||
|
.bind(locktime_i64)
|
||||||
|
.bind(&item.reqid)
|
||||||
|
.bind(&item.network)
|
||||||
|
.bind(&item.our_address)
|
||||||
|
.bind(&item.our_fees)
|
||||||
|
.execute(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
for item in inps {
|
||||||
|
let in_vout_i32: i32 = item.in_vout.parse().unwrap_or(0);
|
||||||
|
sqlx::query("INSERT INTO tbl_inp (txid, in_txid, in_vout) VALUES ($1, $2, $3)")
|
||||||
|
.bind(&item.txid)
|
||||||
|
.bind(&item.in_txid)
|
||||||
|
.bind(in_vout_i32)
|
||||||
|
.execute(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
for item in outs {
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO tbl_out (txid, vout, script_pubkey, amount) VALUES ($1, $2, $3, $4)",
|
||||||
|
)
|
||||||
|
.bind(&item.txid)
|
||||||
|
.bind(item.vout as i32)
|
||||||
|
.bind(&item.script_pubkey)
|
||||||
|
.bind(item.amount.to_string())
|
||||||
|
.execute(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
tx.commit().await?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_total_transaction_number(
|
||||||
|
pool: &DatabasePool,
|
||||||
|
network: &str,
|
||||||
|
) -> Result<i64, sqlx::Error> {
|
||||||
|
match pool {
|
||||||
|
DatabasePool::SQLite(p) => {
|
||||||
|
let row = sqlx::query("SELECT COUNT(*) as total_number FROM tbl_tx WHERE network = ?")
|
||||||
|
.bind(network)
|
||||||
|
.fetch_one(p)
|
||||||
|
.await?;
|
||||||
|
Ok(row.try_get::<i64, _>("total_number").unwrap_or(0))
|
||||||
|
}
|
||||||
|
DatabasePool::PostgreSQL(p) => {
|
||||||
|
let row = sqlx::query("SELECT COUNT(*) as total_number FROM tbl_tx WHERE network = $1")
|
||||||
|
.bind(network)
|
||||||
|
.fetch_one(p)
|
||||||
|
.await?;
|
||||||
|
Ok(row.try_get::<i64, _>("total_number").unwrap_or(0))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn update_tx_status(
|
||||||
|
pool: &DatabasePool,
|
||||||
|
txid: &str,
|
||||||
|
status: i32,
|
||||||
|
push_err: Option<&str>,
|
||||||
|
) -> Result<(), sqlx::Error> {
|
||||||
|
match pool {
|
||||||
|
DatabasePool::SQLite(p) => {
|
||||||
|
if let Some(err) = push_err {
|
||||||
|
sqlx::query("UPDATE tbl_tx SET status = ?, push_err = ? WHERE txid = ?")
|
||||||
|
.bind(status)
|
||||||
|
.bind(err)
|
||||||
|
.bind(txid)
|
||||||
|
.execute(p)
|
||||||
|
.await?;
|
||||||
|
} else {
|
||||||
|
sqlx::query("UPDATE tbl_tx SET status = ? WHERE txid = ?")
|
||||||
|
.bind(status)
|
||||||
|
.bind(txid)
|
||||||
|
.execute(p)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
DatabasePool::PostgreSQL(p) => {
|
||||||
|
if let Some(err) = push_err {
|
||||||
|
sqlx::query("UPDATE tbl_tx SET status = $1, push_err = $2 WHERE txid = $3")
|
||||||
|
.bind(status)
|
||||||
|
.bind(err)
|
||||||
|
.bind(txid)
|
||||||
|
.execute(p)
|
||||||
|
.await?;
|
||||||
|
} else {
|
||||||
|
sqlx::query("UPDATE tbl_tx SET status = $1 WHERE txid = $2")
|
||||||
|
.bind(status)
|
||||||
|
.bind(txid)
|
||||||
|
.execute(p)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct TxRow {
|
||||||
|
pub txid: String,
|
||||||
|
pub tx: String,
|
||||||
|
pub locktime: i64,
|
||||||
|
pub network: String,
|
||||||
|
pub status: i64,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_pending_txs(
|
||||||
|
pool: &DatabasePool,
|
||||||
|
network: &str,
|
||||||
|
locktime_threshold: i64,
|
||||||
|
bestblock_height: i64,
|
||||||
|
bestblock_time: i64,
|
||||||
|
) -> Result<Vec<TxRow>, sqlx::Error> {
|
||||||
|
let mut results = Vec::new();
|
||||||
|
|
||||||
|
match pool {
|
||||||
|
DatabasePool::SQLite(p) => {
|
||||||
|
let rows = sqlx::query(
|
||||||
|
"SELECT txid, tx, locktime, network, status FROM tbl_tx WHERE network = ? AND status = 0 AND (locktime < ? OR (locktime > ? AND locktime < ?))",
|
||||||
|
)
|
||||||
|
.bind(network)
|
||||||
|
.bind(bestblock_height)
|
||||||
|
.bind(locktime_threshold)
|
||||||
|
.bind(bestblock_time)
|
||||||
|
.fetch_all(p)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
for row in rows {
|
||||||
|
results.push(TxRow {
|
||||||
|
txid: row.try_get("txid")?,
|
||||||
|
tx: row.try_get("tx")?,
|
||||||
|
locktime: row.try_get("locktime")?,
|
||||||
|
network: row.try_get("network")?,
|
||||||
|
status: row.try_get("status")?,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
DatabasePool::PostgreSQL(p) => {
|
||||||
|
let rows = sqlx::query(
|
||||||
|
"SELECT txid, tx, locktime, network, status FROM tbl_tx WHERE network = $1 AND status = 0 AND (locktime < $2 OR (locktime > $3 AND locktime < $4))",
|
||||||
|
)
|
||||||
|
.bind(network)
|
||||||
|
.bind(bestblock_height)
|
||||||
|
.bind(locktime_threshold)
|
||||||
|
.bind(bestblock_time)
|
||||||
|
.fetch_all(p)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
for row in rows {
|
||||||
|
results.push(TxRow {
|
||||||
|
txid: row.try_get("txid")?,
|
||||||
|
tx: row.try_get("tx")?,
|
||||||
|
locktime: row.try_get::<i64, _>("locktime").unwrap_or(0),
|
||||||
|
network: row.try_get("network")?,
|
||||||
|
status: row.try_get::<i32, _>("status").unwrap_or(0) as i64,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(results)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct StatsRow {
|
||||||
|
pub report_date: String,
|
||||||
|
pub chain: String,
|
||||||
|
pub totals: i64,
|
||||||
|
pub waiting: i64,
|
||||||
|
pub sent: i64,
|
||||||
|
pub failed: i64,
|
||||||
|
pub waiting_profit: i64,
|
||||||
|
pub sent_profit: i64,
|
||||||
|
pub missed_profit: i64,
|
||||||
|
pub unique_inputs: i64,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn get_stats(pool: &DatabasePool, chain: &str) -> Result<Vec<StatsRow>, sqlx::Error> {
|
||||||
|
let mut results = Vec::new();
|
||||||
|
|
||||||
|
match pool {
|
||||||
|
DatabasePool::SQLite(p) => {
|
||||||
|
let rows = sqlx::query(
|
||||||
|
"SELECT report_date, chain, totals, waiting, sent, failed, waiting_profit, sent_profit, missed_profit, unique_inputs FROM tbl_stats WHERE chain = ?",
|
||||||
|
)
|
||||||
|
.bind(chain)
|
||||||
|
.fetch_all(p)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
for row in rows {
|
||||||
|
results.push(StatsRow {
|
||||||
|
report_date: row.try_get("report_date").unwrap_or_default(),
|
||||||
|
chain: row.try_get("chain").unwrap_or_default(),
|
||||||
|
totals: row.try_get("totals").unwrap_or(0),
|
||||||
|
waiting: row.try_get("waiting").unwrap_or(0),
|
||||||
|
sent: row.try_get("sent").unwrap_or(0),
|
||||||
|
failed: row.try_get("failed").unwrap_or(0),
|
||||||
|
waiting_profit: row.try_get("waiting_profit").unwrap_or(0),
|
||||||
|
sent_profit: row.try_get("sent_profit").unwrap_or(0),
|
||||||
|
missed_profit: row.try_get("missed_profit").unwrap_or(0),
|
||||||
|
unique_inputs: row.try_get("unique_inputs").unwrap_or(0),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
DatabasePool::PostgreSQL(p) => {
|
||||||
|
let rows = sqlx::query(
|
||||||
|
"SELECT report_date, chain, totals, waiting, sent, failed, waiting_profit, sent_profit, missed_profit, unique_inputs FROM tbl_stats WHERE chain = $1",
|
||||||
|
)
|
||||||
|
.bind(chain)
|
||||||
|
.fetch_all(p)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
for row in rows {
|
||||||
|
results.push(StatsRow {
|
||||||
|
report_date: row.try_get("report_date").unwrap_or_default(),
|
||||||
|
chain: row.try_get("chain").unwrap_or_default(),
|
||||||
|
totals: row.try_get::<i32, _>("totals").unwrap_or(0) as i64,
|
||||||
|
waiting: row.try_get::<i32, _>("waiting").unwrap_or(0) as i64,
|
||||||
|
sent: row.try_get::<i32, _>("sent").unwrap_or(0) as i64,
|
||||||
|
failed: row.try_get::<i32, _>("failed").unwrap_or(0) as i64,
|
||||||
|
waiting_profit: row.try_get::<i32, _>("waiting_profit").unwrap_or(0) as i64,
|
||||||
|
sent_profit: row.try_get::<i32, _>("sent_profit").unwrap_or(0) as i64,
|
||||||
|
missed_profit: row.try_get::<i32, _>("missed_profit").unwrap_or(0) as i64,
|
||||||
|
unique_inputs: row.try_get::<i32, _>("unique_inputs").unwrap_or(0) as i64,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(results)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct SearchTxRow {
|
||||||
|
pub status: String,
|
||||||
|
pub tx: String,
|
||||||
|
pub our_address: String,
|
||||||
|
pub our_fees: String,
|
||||||
|
pub reqid: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn search_tx(
|
||||||
|
pool: &DatabasePool,
|
||||||
|
txid: &str,
|
||||||
|
) -> Result<Option<SearchTxRow>, sqlx::Error> {
|
||||||
|
match pool {
|
||||||
|
DatabasePool::SQLite(p) => {
|
||||||
|
let result = sqlx::query("SELECT * FROM tbl_tx WHERE txid = ? LIMIT 1")
|
||||||
|
.bind(txid)
|
||||||
|
.fetch_optional(p)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(result.map(|row| SearchTxRow {
|
||||||
|
status: row.try_get::<i64, _>("status").unwrap_or(0).to_string(),
|
||||||
|
tx: row.try_get::<String, _>("tx").unwrap_or_default(),
|
||||||
|
our_address: row.try_get::<String, _>("our_address").unwrap_or_default(),
|
||||||
|
our_fees: row.try_get::<String, _>("our_fees").unwrap_or_default(),
|
||||||
|
reqid: row.try_get::<String, _>("reqid").unwrap_or_default(),
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
DatabasePool::PostgreSQL(p) => {
|
||||||
|
let result = sqlx::query("SELECT * FROM tbl_tx WHERE txid = $1 LIMIT 1")
|
||||||
|
.bind(txid)
|
||||||
|
.fetch_optional(p)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(result.map(|row| SearchTxRow {
|
||||||
|
status: row.try_get::<i32, _>("status").unwrap_or(0).to_string(),
|
||||||
|
tx: row.try_get::<String, _>("tx").unwrap_or_default(),
|
||||||
|
our_address: row.try_get::<String, _>("our_address").unwrap_or_default(),
|
||||||
|
our_fees: row.try_get::<String, _>("our_fees").unwrap_or_default(),
|
||||||
|
reqid: row.try_get::<String, _>("reqid").unwrap_or_default(),
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn calculate_and_upsert_stats(
|
||||||
|
pool: &DatabasePool,
|
||||||
|
chain: &str,
|
||||||
|
) -> Result<(), sqlx::Error> {
|
||||||
|
if !chain
|
||||||
|
.chars()
|
||||||
|
.all(|c| c.is_alphanumeric() || c == '-' || c == '_')
|
||||||
|
|| chain.is_empty()
|
||||||
|
{
|
||||||
|
error!("Invalid chain name: {chain}");
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
match pool {
|
||||||
|
DatabasePool::SQLite(p) => {
|
||||||
|
sqlx::query("DELETE FROM tbl_stats WHERE chain = ?")
|
||||||
|
.bind(chain)
|
||||||
|
.execute(p)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO tbl_stats (
|
||||||
|
report_date, chain, totals, waiting, sent, failed,
|
||||||
|
waiting_profit, sent_profit, missed_profit, unique_inputs
|
||||||
|
)
|
||||||
|
SELECT
|
||||||
|
CURRENT_TIMESTAMP,
|
||||||
|
?,
|
||||||
|
(SELECT COUNT(*) FROM tbl_tx WHERE network = ?),
|
||||||
|
(SELECT COUNT(*) FROM tbl_tx WHERE status = 0 AND network = ?),
|
||||||
|
(SELECT COUNT(*) FROM tbl_tx WHERE status = 1 AND network = ?),
|
||||||
|
(SELECT COUNT(*) FROM tbl_tx WHERE status = 2 AND network = ?),
|
||||||
|
(SELECT IFNULL(SUM(our_fees),0) FROM tbl_tx WHERE status = 0 AND network = ?),
|
||||||
|
(SELECT IFNULL(SUM(our_fees),0) FROM tbl_tx WHERE status = 1 AND network = ?),
|
||||||
|
(SELECT IFNULL(SUM(our_fees),0) FROM tbl_tx WHERE status = 2 AND network = ?),
|
||||||
|
(SELECT COUNT(DISTINCT tbl_inp.in_txid)
|
||||||
|
FROM tbl_inp
|
||||||
|
JOIN tbl_tx ON tbl_inp.txid = tbl_tx.txid
|
||||||
|
WHERE tbl_tx.status = 0 AND tbl_tx.network = ?)
|
||||||
|
ON CONFLICT(chain) DO UPDATE SET
|
||||||
|
report_date = excluded.report_date,
|
||||||
|
totals = excluded.totals,
|
||||||
|
waiting = excluded.waiting,
|
||||||
|
sent = excluded.sent,
|
||||||
|
failed = excluded.failed,
|
||||||
|
waiting_profit = excluded.waiting_profit,
|
||||||
|
sent_profit = excluded.sent_profit,
|
||||||
|
missed_profit = excluded.missed_profit,
|
||||||
|
unique_inputs = excluded.unique_inputs",
|
||||||
|
)
|
||||||
|
.bind(chain)
|
||||||
|
.bind(chain)
|
||||||
|
.bind(chain)
|
||||||
|
.bind(chain)
|
||||||
|
.bind(chain)
|
||||||
|
.bind(chain)
|
||||||
|
.bind(chain)
|
||||||
|
.bind(chain)
|
||||||
|
.bind(chain)
|
||||||
|
.execute(p)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
DatabasePool::PostgreSQL(p) => {
|
||||||
|
sqlx::query("DELETE FROM tbl_stats WHERE chain = $1")
|
||||||
|
.bind(chain)
|
||||||
|
.execute(p)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO tbl_stats (
|
||||||
|
report_date, chain, totals, waiting, sent, failed,
|
||||||
|
waiting_profit, sent_profit, missed_profit, unique_inputs
|
||||||
|
)
|
||||||
|
SELECT
|
||||||
|
CURRENT_TIMESTAMP,
|
||||||
|
$1,
|
||||||
|
(SELECT COUNT(*) FROM tbl_tx WHERE network = $1),
|
||||||
|
(SELECT COUNT(*) FROM tbl_tx WHERE status = 0 AND network = $1),
|
||||||
|
(SELECT COUNT(*) FROM tbl_tx WHERE status = 1 AND network = $1),
|
||||||
|
(SELECT COUNT(*) FROM tbl_tx WHERE status = 2 AND network = $1),
|
||||||
|
(SELECT COALESCE(SUM(CAST(our_fees AS BIGINT)),0) FROM tbl_tx WHERE status = 0 AND network = $1),
|
||||||
|
(SELECT COALESCE(SUM(CAST(our_fees AS BIGINT)),0) FROM tbl_tx WHERE status = 1 AND network = $1),
|
||||||
|
(SELECT COALESCE(SUM(CAST(our_fees AS BIGINT)),0) FROM tbl_tx WHERE status = 2 AND network = $1),
|
||||||
|
(SELECT COUNT(DISTINCT tbl_inp.in_txid)
|
||||||
|
FROM tbl_inp
|
||||||
|
JOIN tbl_tx ON tbl_inp.txid = tbl_tx.txid
|
||||||
|
WHERE tbl_tx.status = 0 AND tbl_tx.network = $1)
|
||||||
|
ON CONFLICT(chain) DO UPDATE SET
|
||||||
|
report_date = excluded.report_date,
|
||||||
|
totals = excluded.totals,
|
||||||
|
waiting = excluded.waiting,
|
||||||
|
sent = excluded.sent,
|
||||||
|
failed = excluded.failed,
|
||||||
|
waiting_profit = excluded.waiting_profit,
|
||||||
|
sent_profit = excluded.sent_profit,
|
||||||
|
missed_profit = excluded.missed_profit,
|
||||||
|
unique_inputs = excluded.unique_inputs",
|
||||||
|
)
|
||||||
|
.bind(chain)
|
||||||
|
.execute(p)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
info!("tbl_stats creation success");
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
240
src/db/schema.rs
Normal file
240
src/db/schema.rs
Normal file
@@ -0,0 +1,240 @@
|
|||||||
|
use sqlx::{PgPool, SqlitePool};
|
||||||
|
|
||||||
|
pub async fn create_sqlite_schema(pool: &SqlitePool) -> Result<(), sqlx::Error> {
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE TABLE IF NOT EXISTS tbl_tx (
|
||||||
|
txid TEXT PRIMARY KEY,
|
||||||
|
date_creation TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
date_update TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
wtxid TEXT,
|
||||||
|
ntxid TEXT,
|
||||||
|
tx TEXT,
|
||||||
|
locktime INTEGER,
|
||||||
|
network TEXT,
|
||||||
|
network_fees TEXT,
|
||||||
|
reqid TEXT,
|
||||||
|
our_fees TEXT,
|
||||||
|
our_address TEXT,
|
||||||
|
status INTEGER DEFAULT 0
|
||||||
|
)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
let _ = sqlx::query("ALTER TABLE tbl_tx ADD COLUMN push_err TEXT")
|
||||||
|
.execute(pool)
|
||||||
|
.await;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE TABLE IF NOT EXISTS tbl_inp (
|
||||||
|
id INTEGER,
|
||||||
|
txid TEXT,
|
||||||
|
in_txid TEXT,
|
||||||
|
in_vout INTEGER
|
||||||
|
)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE UNIQUE INDEX IF NOT EXISTS idx_inp_unique ON tbl_inp(txid, in_txid, in_vout)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE TABLE IF NOT EXISTS tbl_out (
|
||||||
|
id INTEGER,
|
||||||
|
txid TEXT,
|
||||||
|
script_pubkey TEXT,
|
||||||
|
amount TEXT,
|
||||||
|
vout INTEGER
|
||||||
|
)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE UNIQUE INDEX IF NOT EXISTS idx_out_unique ON tbl_out(txid, script_pubkey, amount, vout)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE TABLE IF NOT EXISTS tbl_xpub (
|
||||||
|
id INTEGER PRIMARY KEY,
|
||||||
|
network TEXT,
|
||||||
|
xpub TEXT,
|
||||||
|
date_create TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
path_idx INTEGER DEFAULT -1
|
||||||
|
)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query("CREATE UNIQUE INDEX IF NOT EXISTS idx_xpub ON tbl_xpub(network, xpub)")
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE TABLE IF NOT EXISTS tbl_address (
|
||||||
|
address TEXT PRIMARY KEY,
|
||||||
|
path TEXT NOT NULL,
|
||||||
|
date_create TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
xpub INTEGER,
|
||||||
|
remote_address TEXT
|
||||||
|
)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE TABLE IF NOT EXISTS tbl_stats (
|
||||||
|
report_date TEXT,
|
||||||
|
chain TEXT,
|
||||||
|
totals INTEGER,
|
||||||
|
waiting INTEGER,
|
||||||
|
sent INTEGER,
|
||||||
|
failed INTEGER,
|
||||||
|
waiting_profit INTEGER,
|
||||||
|
sent_profit INTEGER,
|
||||||
|
missed_profit INTEGER,
|
||||||
|
unique_inputs INTEGER
|
||||||
|
)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query("DROP INDEX IF EXISTS idx_stats_chain")
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
sqlx::query("CREATE UNIQUE INDEX IF NOT EXISTS idx_stats_chain ON tbl_stats(chain)")
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query("UPDATE tbl_tx SET network='bitcoin' WHERE network='mainnet'")
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn create_pg_schema(pool: &PgPool) -> Result<(), sqlx::Error> {
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE TABLE IF NOT EXISTS tbl_tx (
|
||||||
|
txid TEXT PRIMARY KEY,
|
||||||
|
date_creation TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
date_update TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
wtxid TEXT,
|
||||||
|
ntxid TEXT,
|
||||||
|
tx TEXT,
|
||||||
|
locktime BIGINT,
|
||||||
|
network TEXT,
|
||||||
|
network_fees TEXT,
|
||||||
|
reqid TEXT,
|
||||||
|
our_fees TEXT,
|
||||||
|
our_address TEXT,
|
||||||
|
status INTEGER DEFAULT 0,
|
||||||
|
push_err TEXT
|
||||||
|
)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
// Migrate pre-existing deployments where locktime was created as INTEGER.
|
||||||
|
// nLockTime is a u32 (up to 4_294_967_295); INTEGER (i32) cannot hold
|
||||||
|
// timestamp-based locktimes after 2038-01-19.
|
||||||
|
let _ = sqlx::query("ALTER TABLE tbl_tx ALTER COLUMN locktime TYPE BIGINT")
|
||||||
|
.execute(pool)
|
||||||
|
.await;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE TABLE IF NOT EXISTS tbl_inp (
|
||||||
|
id SERIAL PRIMARY KEY,
|
||||||
|
txid TEXT,
|
||||||
|
in_txid TEXT,
|
||||||
|
in_vout INTEGER
|
||||||
|
)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE UNIQUE INDEX IF NOT EXISTS idx_inp_unique ON tbl_inp(txid, in_txid, in_vout)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE TABLE IF NOT EXISTS tbl_out (
|
||||||
|
id SERIAL PRIMARY KEY,
|
||||||
|
txid TEXT,
|
||||||
|
script_pubkey TEXT,
|
||||||
|
amount TEXT,
|
||||||
|
vout INTEGER
|
||||||
|
)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE UNIQUE INDEX IF NOT EXISTS idx_out_unique ON tbl_out(txid, script_pubkey, amount, vout)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE TABLE IF NOT EXISTS tbl_xpub (
|
||||||
|
id SERIAL PRIMARY KEY,
|
||||||
|
network TEXT,
|
||||||
|
xpub TEXT,
|
||||||
|
date_create TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
path_idx INTEGER DEFAULT -1
|
||||||
|
)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query("CREATE UNIQUE INDEX IF NOT EXISTS idx_xpub ON tbl_xpub(network, xpub)")
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE TABLE IF NOT EXISTS tbl_address (
|
||||||
|
address TEXT PRIMARY KEY,
|
||||||
|
path TEXT NOT NULL,
|
||||||
|
date_create TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
xpub INTEGER,
|
||||||
|
remote_address TEXT
|
||||||
|
)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE TABLE IF NOT EXISTS tbl_stats (
|
||||||
|
report_date TEXT,
|
||||||
|
chain TEXT,
|
||||||
|
totals INTEGER,
|
||||||
|
waiting INTEGER,
|
||||||
|
sent INTEGER,
|
||||||
|
failed INTEGER,
|
||||||
|
waiting_profit INTEGER,
|
||||||
|
sent_profit INTEGER,
|
||||||
|
missed_profit INTEGER,
|
||||||
|
unique_inputs INTEGER
|
||||||
|
)",
|
||||||
|
)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query("CREATE UNIQUE INDEX IF NOT EXISTS idx_stats_chain ON tbl_stats(chain)")
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
sqlx::query("UPDATE tbl_tx SET network='bitcoin' WHERE network='mainnet'")
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
@@ -148,12 +148,12 @@ pub fn calculate_fingerprint(tpub: &str) -> Result<String, String> {
|
|||||||
fn base58check_decode(s: &str) -> Result<Vec<u8>, String> {
|
fn base58check_decode(s: &str) -> Result<Vec<u8>, String> {
|
||||||
let data = bs58::decode(s).into_vec().map_err(|e| e.to_string())?;
|
let data = bs58::decode(s).into_vec().map_err(|e| e.to_string())?;
|
||||||
if data.len() < 4 {
|
if data.len() < 4 {
|
||||||
return Err("Data troppo corta".to_string());
|
return Err("Data too short".to_string());
|
||||||
}
|
}
|
||||||
let (payload, checksum) = data.split_at(data.len() - 4);
|
let (payload, checksum) = data.split_at(data.len() - 4);
|
||||||
let hash = Sha256::digest(Sha256::digest(payload));
|
let hash = Sha256::digest(Sha256::digest(payload));
|
||||||
if hash[0..4] != checksum[..] {
|
if hash[0..4] != checksum[..] {
|
||||||
return Err("Checksum invalido".to_string());
|
return Err("Invalid checksum".to_string());
|
||||||
}
|
}
|
||||||
Ok(payload.to_vec())
|
Ok(payload.to_vec())
|
||||||
}
|
}
|
||||||
@@ -168,7 +168,7 @@ fn convert_to(zpub: &str, prefix: BS58Prefix) -> Result<String, String> {
|
|||||||
let mut data = base58check_decode(zpub)?;
|
let mut data = base58check_decode(zpub)?;
|
||||||
|
|
||||||
if data.len() < 4 {
|
if data.len() < 4 {
|
||||||
return Err("Non è una zpub valida.".to_string());
|
return Err("Not a valid zpub".to_string());
|
||||||
}
|
}
|
||||||
data.splice(
|
data.splice(
|
||||||
0..4,
|
0..4,
|
||||||
@@ -207,7 +207,7 @@ pub fn new_address_from_xpub(
|
|||||||
fn main() -> Result<(), Box<dyn std::error::Error>>{
|
fn main() -> Result<(), Box<dyn std::error::Error>>{
|
||||||
match convert_to(zpub,BS58Prefix::Tpub) {
|
match convert_to(zpub,BS58Prefix::Tpub) {
|
||||||
Ok(tpub) => println!("XPUB: {}", tpub),
|
Ok(tpub) => println!("XPUB: {}", tpub),
|
||||||
Err(e) => eprintln!("Errore: {}", e),
|
Err(e) => eprintln!("Error: {}", e),
|
||||||
}
|
}
|
||||||
let fingerprint = base58check_encode(&calculate_fingerprint(zpub));
|
let fingerprint = base58check_encode(&calculate_fingerprint(zpub));
|
||||||
println!("ZPUB: {}, FINGERPRINT: {}",zpub,fingerprint);
|
println!("ZPUB: {}, FINGERPRINT: {}",zpub,fingerprint);
|
||||||
|
|||||||
@@ -1,15 +1,62 @@
|
|||||||
use bal_server::db::open_db;
|
use bal_server::db::{DatabasePool, create_database, open_database};
|
||||||
use sqlite::State;
|
use sqlx::Row;
|
||||||
use std::fs;
|
|
||||||
|
|
||||||
#[test]
|
#[tokio::test]
|
||||||
fn test_open_db_blocks_traversal() {
|
async fn test_open_database_sqlite() {
|
||||||
let res = open_db("../etc/passwd");
|
let pool = open_database("sqlite", "sqlite::memory:").await;
|
||||||
|
assert!(pool.is_ok(), "Opening SQLite in-memory should succeed");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_open_database_invalid_backend() {
|
||||||
|
let pool = open_database("oracle", "connection_string").await;
|
||||||
|
assert!(pool.is_err(), "Unknown backend should fail");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_create_database_sqlite() {
|
||||||
|
let pool = open_database("sqlite", "sqlite::memory:").await.unwrap();
|
||||||
|
let result = create_database(&pool).await;
|
||||||
|
assert!(result.is_ok(), "Creating SQLite schema should succeed");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_create_database_is_idempotent() {
|
||||||
|
let pool = open_database("sqlite", "sqlite::memory:").await.unwrap();
|
||||||
|
create_database(&pool).await.unwrap();
|
||||||
|
let result = create_database(&pool).await;
|
||||||
|
assert!(
|
||||||
|
result.is_ok(),
|
||||||
|
"Creating schema twice should succeed (idempotent)"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_sqlite_wal_mode() {
|
||||||
|
let tmp_path = std::env::temp_dir().join("tmp_test_wal_mode.db");
|
||||||
|
let path_str = tmp_path.to_str().unwrap();
|
||||||
|
let _ = std::fs::remove_file(&tmp_path);
|
||||||
|
let dsn = format!("sqlite:{}?mode=rwc", path_str);
|
||||||
|
let pool = open_database("sqlite", &dsn).await.unwrap();
|
||||||
|
if let DatabasePool::SQLite(p) = &pool {
|
||||||
|
let row = sqlx::query("PRAGMA journal_mode")
|
||||||
|
.fetch_one(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
let mode: String = row.try_get(0).unwrap();
|
||||||
|
assert_eq!(mode, "wal", "SQLite journal mode should be WAL");
|
||||||
|
}
|
||||||
|
drop(pool);
|
||||||
|
let _ = std::fs::remove_file(&tmp_path);
|
||||||
|
let _ = std::fs::remove_file(format!("{}-shm", path_str));
|
||||||
|
let _ = std::fs::remove_file(format!("{}-wal", path_str));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_open_database_blocks_traversal() {
|
||||||
|
let res = open_database("sqlite", "sqlite:../etc/passwd").await;
|
||||||
assert!(res.is_err(), "Path with '..' should be rejected");
|
assert!(res.is_err(), "Path with '..' should be rejected");
|
||||||
let err = match res {
|
let err = res.err().unwrap();
|
||||||
Err(e) => e,
|
|
||||||
Ok(_) => panic!("Expected error for traversal path"),
|
|
||||||
};
|
|
||||||
assert!(
|
assert!(
|
||||||
err.contains("'..'"),
|
err.contains("'..'"),
|
||||||
"Error should mention directory traversal: {}",
|
"Error should mention directory traversal: {}",
|
||||||
@@ -17,15 +64,17 @@ fn test_open_db_blocks_traversal() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[tokio::test]
|
||||||
fn test_open_db_blocks_forbidden_absolute() {
|
async fn test_open_database_blocks_forbidden_absolute() {
|
||||||
for path in ["/etc/passwd", "/proc/self/mem", "/dev/null", "/usr/bin/ls"] {
|
for path in [
|
||||||
let res = open_db(path);
|
"sqlite:/etc/passwd",
|
||||||
|
"sqlite:/proc/self/mem",
|
||||||
|
"sqlite:/dev/null",
|
||||||
|
"sqlite:/usr/bin/ls",
|
||||||
|
] {
|
||||||
|
let res = open_database("sqlite", path).await;
|
||||||
assert!(res.is_err(), "Absolute path {} should be rejected", path);
|
assert!(res.is_err(), "Absolute path {} should be rejected", path);
|
||||||
let err = match res {
|
let err = res.err().unwrap();
|
||||||
Err(e) => e,
|
|
||||||
Ok(_) => panic!("Expected error for forbidden path {}", path),
|
|
||||||
};
|
|
||||||
assert!(
|
assert!(
|
||||||
err.contains("forbidden"),
|
err.contains("forbidden"),
|
||||||
"Error should mention forbidden prefix: {}",
|
"Error should mention forbidden prefix: {}",
|
||||||
@@ -34,59 +83,26 @@ fn test_open_db_blocks_forbidden_absolute() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[tokio::test]
|
||||||
fn test_open_db_allows_relative() {
|
async fn test_open_database_rejects_symlink() {
|
||||||
let test_path = "tmp_test_bal.db";
|
let tmp_dir = std::env::temp_dir();
|
||||||
let _ = fs::remove_file(test_path);
|
let real = tmp_dir.join("tmp_test_real_symlink.db");
|
||||||
let res = open_db(test_path);
|
let link = tmp_dir.join("tmp_test_link_symlink.db");
|
||||||
assert!(res.is_ok(), "Valid relative path should be allowed");
|
let _ = std::fs::remove_file(&real);
|
||||||
let db = res.unwrap();
|
let _ = std::fs::remove_file(&link);
|
||||||
drop(db);
|
std::fs::File::create(&real).unwrap();
|
||||||
let _ = fs::remove_file(test_path);
|
std::os::unix::fs::symlink(&real, &link).unwrap();
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
let dsn = format!("sqlite:{}?mode=rwc", link.to_str().unwrap());
|
||||||
fn test_open_db_wal_pragmas_set() {
|
let res = open_database("sqlite", &dsn).await;
|
||||||
let test_path = "tmp_test_wal.db";
|
|
||||||
let _ = fs::remove_file(test_path);
|
|
||||||
let _ = fs::remove_file(format!("{}-shm", test_path));
|
|
||||||
let _ = fs::remove_file(format!("{}-wal", test_path));
|
|
||||||
|
|
||||||
let db = open_db(test_path).expect("Should open DB");
|
|
||||||
let mut stmt = db.prepare("PRAGMA journal_mode;").unwrap();
|
|
||||||
if let Ok(State::Row) = stmt.next() {
|
|
||||||
let mode: String = stmt.read(0).unwrap();
|
|
||||||
assert_eq!(mode, "wal", "SQLite journal mode should be WAL");
|
|
||||||
} else {
|
|
||||||
panic!("Could not read journal_mode pragma");
|
|
||||||
}
|
|
||||||
|
|
||||||
let _ = fs::remove_file(test_path);
|
|
||||||
let _ = fs::remove_file(format!("{}-shm", test_path));
|
|
||||||
let _ = fs::remove_file(format!("{}-wal", test_path));
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_open_db_rejects_symlink() {
|
|
||||||
let real = "tmp_test_real.db";
|
|
||||||
let link = "tmp_test_link.db";
|
|
||||||
let _ = fs::remove_file(real);
|
|
||||||
let _ = fs::remove_file(link);
|
|
||||||
fs::File::create(real).unwrap();
|
|
||||||
std::os::unix::fs::symlink(real, link).unwrap();
|
|
||||||
|
|
||||||
let res = open_db(link);
|
|
||||||
assert!(res.is_err(), "Symlink DB path should be rejected");
|
assert!(res.is_err(), "Symlink DB path should be rejected");
|
||||||
let err = match res {
|
let err = res.err().unwrap();
|
||||||
Err(e) => e,
|
|
||||||
Ok(_) => panic!("Expected error for symlink"),
|
|
||||||
};
|
|
||||||
assert!(
|
assert!(
|
||||||
err.contains("symlink"),
|
err.contains("symlink"),
|
||||||
"Error should mention symlink: {}",
|
"Error should mention symlink: {}",
|
||||||
err
|
err
|
||||||
);
|
);
|
||||||
|
|
||||||
let _ = fs::remove_file(real);
|
let _ = std::fs::remove_file(&real);
|
||||||
let _ = fs::remove_file(link);
|
let _ = std::fs::remove_file(&link);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,60 +1,48 @@
|
|||||||
use bal_server::db::{get_all_addresses_by_xpub, open_db};
|
use bal_server::db::{DatabasePool, create_database, get_all_addresses_by_xpub, open_database};
|
||||||
use sqlite::Value;
|
|
||||||
|
|
||||||
fn setup_db_with_xpub() -> sqlite::Connection {
|
async fn setup_db_with_xpub() -> DatabasePool {
|
||||||
let db = open_db(":memory:").unwrap();
|
let pool = open_database("sqlite", "sqlite::memory:").await.unwrap();
|
||||||
let _ = db.execute(
|
create_database(&pool).await.unwrap();
|
||||||
"CREATE TABLE tbl_xpub (id INTEGER PRIMARY KEY, network TEXT, xpub TEXT, path_idx INTEGER DEFAULT -1);"
|
|
||||||
);
|
if let DatabasePool::SQLite(p) = &pool {
|
||||||
let _ = db.execute(
|
sqlx::query("INSERT INTO tbl_xpub(id, network, xpub) VALUES(1, 'testnet', 'tpub_test')")
|
||||||
"CREATE TABLE tbl_address (address TEXT PRIMARY KEY, path TEXT, xpub INTEGER, remote_address TEXT);"
|
.execute(p)
|
||||||
);
|
.await
|
||||||
// Insert test xpub
|
|
||||||
let mut stmt = db
|
|
||||||
.prepare("INSERT INTO tbl_xpub(id, network, xpub) VALUES(?, ?, ?);")
|
|
||||||
.unwrap();
|
|
||||||
stmt.bind((1, Value::Integer(1))).unwrap();
|
|
||||||
stmt.bind((2, Value::String("testnet".to_string())))
|
|
||||||
.unwrap();
|
|
||||||
stmt.bind((3, Value::String("tpub_test".to_string())))
|
|
||||||
.unwrap();
|
|
||||||
let _ = stmt.next();
|
|
||||||
drop(stmt);
|
|
||||||
// Insert test addresses
|
|
||||||
for addr in ["addr1", "addr2", "addr3"] {
|
|
||||||
let mut stmt = db
|
|
||||||
.prepare("INSERT INTO tbl_address(address, path, xpub) VALUES(?, ?, ?);")
|
|
||||||
.unwrap();
|
.unwrap();
|
||||||
stmt.bind((1, Value::String(addr.to_string()))).unwrap();
|
|
||||||
stmt.bind((2, Value::String("m/0/1".to_string()))).unwrap();
|
for addr in ["addr1", "addr2", "addr3"] {
|
||||||
stmt.bind((3, Value::Integer(1))).unwrap();
|
sqlx::query("INSERT INTO tbl_address(address, path, xpub) VALUES(?, 'm/0/1', 1)")
|
||||||
let _ = stmt.next();
|
.bind(addr)
|
||||||
drop(stmt);
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
db
|
|
||||||
|
pool
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[tokio::test]
|
||||||
fn test_get_all_addresses_by_xpub_returns_known() {
|
async fn test_get_all_addresses_by_xpub_returns_known() {
|
||||||
let db = setup_db_with_xpub();
|
let pool = setup_db_with_xpub().await;
|
||||||
let addresses = get_all_addresses_by_xpub(&db, "tpub_test").unwrap();
|
let addresses = get_all_addresses_by_xpub(&pool, "tpub_test").await.unwrap();
|
||||||
assert!(addresses.contains("addr1"));
|
assert!(addresses.contains("addr1"));
|
||||||
assert!(addresses.contains("addr2"));
|
assert!(addresses.contains("addr2"));
|
||||||
assert!(addresses.contains("addr3"));
|
assert!(addresses.contains("addr3"));
|
||||||
assert_eq!(addresses.len(), 3);
|
assert_eq!(addresses.len(), 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[tokio::test]
|
||||||
fn test_get_all_addresses_by_xpub_empty_for_missing() {
|
async fn test_get_all_addresses_by_xpub_empty_for_missing() {
|
||||||
let db = setup_db_with_xpub();
|
let pool = setup_db_with_xpub().await;
|
||||||
let addresses = get_all_addresses_by_xpub(&db, "tpub_nonexistent").unwrap();
|
let addresses = get_all_addresses_by_xpub(&pool, "tpub_nonexistent")
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
assert!(addresses.is_empty());
|
assert!(addresses.is_empty());
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_network_unknown_returns_404() {
|
fn test_network_unknown_returns_404() {
|
||||||
// This is a code-level check; the actual HTTP test requires actix-web setup.
|
|
||||||
// Verify that the NETWORKS constant includes the expected set.
|
|
||||||
let networks = ["bitcoin", "testnet", "testnet4", "signet", "regtest"];
|
let networks = ["bitcoin", "testnet", "testnet4", "signet", "regtest"];
|
||||||
for n in networks {
|
for n in networks {
|
||||||
assert!(networks.contains(&n), "{} should be a valid network", n);
|
assert!(networks.contains(&n), "{} should be a valid network", n);
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
use sqlite::Connection;
|
use sqlx::Row;
|
||||||
use std::collections::HashMap;
|
|
||||||
use std::sync::{Arc, Mutex};
|
use std::sync::{Arc, Mutex};
|
||||||
use std::thread;
|
use std::thread;
|
||||||
|
|
||||||
@@ -8,39 +7,44 @@ fn test_mutex_poisoning_recovery() {
|
|||||||
let data = Arc::new(Mutex::new(0));
|
let data = Arc::new(Mutex::new(0));
|
||||||
let c = data.clone();
|
let c = data.clone();
|
||||||
let handle = thread::spawn(move || {
|
let handle = thread::spawn(move || {
|
||||||
let _guard = c.lock(); // Acquire lock
|
let _guard = c.lock();
|
||||||
panic!("test panic"); // Panic while holding the lock
|
panic!("test panic");
|
||||||
// _guard is dropped during panic unwinding, poisoning the mutex
|
|
||||||
});
|
});
|
||||||
let result = handle.join();
|
let result = handle.join();
|
||||||
assert!(result.is_err()); // Thread panicked
|
assert!(result.is_err());
|
||||||
|
|
||||||
// Recovery: the same pattern used in bal-server.rs
|
|
||||||
let guard = match data.lock() {
|
let guard = match data.lock() {
|
||||||
Ok(g) => g,
|
Ok(g) => g,
|
||||||
Err(p) => {
|
Err(p) => p.into_inner(),
|
||||||
p.into_inner() // Should not panic
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
assert_eq!(*guard, 0);
|
assert_eq!(*guard, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[tokio::test]
|
||||||
fn test_db_null_unwrap_or() {
|
async fn test_db_null_unwrap_or() {
|
||||||
let db = Connection::open(":memory:").unwrap();
|
let pool = bal_server::db::open_database("sqlite", "sqlite::memory:")
|
||||||
let _ = db.execute(
|
.await
|
||||||
"CREATE TABLE test_stats (report_date TEXT, chain TEXT, totals TEXT, waiting TEXT);",
|
.unwrap();
|
||||||
);
|
if let bal_server::db::DatabasePool::SQLite(p) = &pool {
|
||||||
let _ =
|
sqlx::query(
|
||||||
db.execute("INSERT INTO test_stats (report_date, chain) VALUES ('2024-01-01', 'testnet');");
|
"CREATE TABLE test_stats (report_date TEXT, chain TEXT, totals TEXT, waiting TEXT);",
|
||||||
|
)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
let mut found_value = None;
|
sqlx::query("INSERT INTO test_stats (report_date, chain) VALUES ('2024-01-01', 'testnet')")
|
||||||
let _ = db.iterate("SELECT * FROM test_stats;", |pairs| {
|
.execute(p)
|
||||||
let row: HashMap<_, _> = pairs.iter().map(|(k, v)| (k.to_string(), *v)).collect();
|
.await
|
||||||
let totals = row["totals"].unwrap_or("0").to_string();
|
.unwrap();
|
||||||
found_value = Some(totals);
|
|
||||||
true
|
|
||||||
});
|
|
||||||
|
|
||||||
assert_eq!(found_value.unwrap(), "0");
|
let row = sqlx::query("SELECT * FROM test_stats")
|
||||||
|
.fetch_one(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let totals: Option<String> = row.try_get("totals").unwrap_or(None);
|
||||||
|
let totals_value = totals.unwrap_or_else(|| "0".to_string());
|
||||||
|
assert_eq!(totals_value, "0");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
335
tests/postgresql_integration.rs
Normal file
335
tests/postgresql_integration.rs
Normal file
@@ -0,0 +1,335 @@
|
|||||||
|
use bal_server::db::{
|
||||||
|
DatabasePool, calculate_and_upsert_stats, check_duplicate_txids, create_database,
|
||||||
|
get_all_addresses_by_xpub, get_next_address_index, get_pending_txs, get_stats, insert_xpub,
|
||||||
|
open_database, save_new_address, search_tx, update_tx_status,
|
||||||
|
};
|
||||||
|
use sqlx::Row;
|
||||||
|
|
||||||
|
fn pg_dsn() -> Option<String> {
|
||||||
|
std::env::var("BAL_TEST_PG_DSN").ok()
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn setup_pg() -> Option<DatabasePool> {
|
||||||
|
let dsn = pg_dsn()?;
|
||||||
|
let pool = open_database("postgresql", &dsn).await.ok()?;
|
||||||
|
// Drop and recreate schema for clean test
|
||||||
|
if let DatabasePool::PostgreSQL(p) = &pool {
|
||||||
|
sqlx::query("DROP SCHEMA public CASCADE; CREATE SCHEMA public")
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.ok()?;
|
||||||
|
}
|
||||||
|
create_database(&pool).await.ok()?;
|
||||||
|
Some(pool)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_pg_open_database() {
|
||||||
|
let Some(dsn) = pg_dsn() else {
|
||||||
|
eprintln!("skipped: BAL_TEST_PG_DSN not set");
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
let pool = open_database("postgresql", &dsn).await;
|
||||||
|
assert!(
|
||||||
|
pool.is_ok(),
|
||||||
|
"Opening PostgreSQL should succeed: {:?}",
|
||||||
|
pool.err()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_pg_create_schema() {
|
||||||
|
let Some(pool) = setup_pg().await else {
|
||||||
|
eprintln!("skipped: PostgreSQL not available");
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
// Second call should also succeed (idempotent)
|
||||||
|
let result = create_database(&pool).await;
|
||||||
|
assert!(
|
||||||
|
result.is_ok(),
|
||||||
|
"Creating PG schema twice should be idempotent: {:?}",
|
||||||
|
result.err()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_pg_insert_xpub() {
|
||||||
|
let Some(pool) = setup_pg().await else {
|
||||||
|
eprintln!("skipped: PostgreSQL not available");
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
insert_xpub(&pool, "testnet", "tpub_test123").await;
|
||||||
|
insert_xpub(&pool, "testnet", "tpub_test123").await; // duplicate should be ignored
|
||||||
|
|
||||||
|
if let DatabasePool::PostgreSQL(p) = &pool {
|
||||||
|
let row = sqlx::query("SELECT COUNT(*) as cnt FROM tbl_xpub WHERE xpub = 'tpub_test123'")
|
||||||
|
.fetch_one(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
let count: i64 = row.try_get("cnt").unwrap();
|
||||||
|
assert_eq!(count, 1, "INSERT OR IGNORE should prevent duplicates");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_pg_get_next_address_index() {
|
||||||
|
let Some(pool) = setup_pg().await else {
|
||||||
|
eprintln!("skipped: PostgreSQL not available");
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
insert_xpub(&pool, "testnet", "tpub_addr_test").await;
|
||||||
|
let (id, idx) = get_next_address_index(&pool, "testnet", "tpub_addr_test").await;
|
||||||
|
assert!(id > 0, "Should return valid xpub id, got {}", id);
|
||||||
|
assert_eq!(idx, 0, "First index should be 0, got {}", idx);
|
||||||
|
|
||||||
|
let (id2, idx2) = get_next_address_index(&pool, "testnet", "tpub_addr_test").await;
|
||||||
|
assert_eq!(id, id2, "xpub id should be stable");
|
||||||
|
assert_eq!(idx2, 1, "Second index should be 1, got {}", idx2);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_pg_save_and_get_address() {
|
||||||
|
let Some(pool) = setup_pg().await else {
|
||||||
|
eprintln!("skipped: PostgreSQL not available");
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
insert_xpub(&pool, "testnet", "tpub_addr_test2").await;
|
||||||
|
let (xpub_id, _idx) = get_next_address_index(&pool, "testnet", "tpub_addr_test2").await;
|
||||||
|
save_new_address(&pool, xpub_id, "tb1qtestaddr", "m/0/0", "1.2.3.4").await;
|
||||||
|
|
||||||
|
let addrs = get_all_addresses_by_xpub(&pool, "tpub_addr_test2")
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
assert!(
|
||||||
|
addrs.contains("tb1qtestaddr"),
|
||||||
|
"Should find saved address: {:?}",
|
||||||
|
addrs
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_pg_check_duplicate_txids() {
|
||||||
|
let Some(pool) = setup_pg().await else {
|
||||||
|
eprintln!("skipped: PostgreSQL not available");
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Insert a transaction first via raw SQL (to have a txid to check)
|
||||||
|
if let DatabasePool::PostgreSQL(p) = &pool {
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO tbl_tx (txid, wtxid, ntxid, tx, locktime, network, status)
|
||||||
|
VALUES ('txid_dup_test', 'wtx1', 'ntx1', 'rawtx', 100, 'testnet', 0)",
|
||||||
|
)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
let dups = check_duplicate_txids(
|
||||||
|
&pool,
|
||||||
|
&["txid_dup_test".to_string(), "txid_new".to_string()],
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
assert!(
|
||||||
|
dups.contains("txid_dup_test"),
|
||||||
|
"Should detect existing txid"
|
||||||
|
);
|
||||||
|
assert!(
|
||||||
|
!dups.contains("txid_new"),
|
||||||
|
"Should not report non-existing txid"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_pg_search_tx() {
|
||||||
|
let Some(pool) = setup_pg().await else {
|
||||||
|
eprintln!("skipped: PostgreSQL not available");
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
|
if let DatabasePool::PostgreSQL(p) = &pool {
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO tbl_tx (txid, wtxid, ntxid, tx, locktime, network, status, our_address, our_fees, reqid)
|
||||||
|
VALUES ('txid_search', 'wtx', 'ntx', 'rawhex', 500, 'testnet', 1, 'tb1ouraddr', '0.0001', 'req123')"
|
||||||
|
)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
let result = search_tx(&pool, "txid_search").await.unwrap();
|
||||||
|
assert!(result.is_some(), "Should find the transaction");
|
||||||
|
let row = result.unwrap();
|
||||||
|
assert_eq!(row.status, "1", "Status should be read as string '1'");
|
||||||
|
assert_eq!(row.tx, "rawhex");
|
||||||
|
assert_eq!(row.our_address, "tb1ouraddr");
|
||||||
|
assert_eq!(row.our_fees, "0.0001");
|
||||||
|
assert_eq!(row.reqid, "req123");
|
||||||
|
|
||||||
|
let not_found = search_tx(&pool, "txid_nonexistent").await.unwrap();
|
||||||
|
assert!(not_found.is_none(), "Should return None for missing txid");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_pg_update_tx_status() {
|
||||||
|
let Some(pool) = setup_pg().await else {
|
||||||
|
eprintln!("skipped: PostgreSQL not available");
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
|
if let DatabasePool::PostgreSQL(p) = &pool {
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO tbl_tx (txid, wtxid, ntxid, tx, locktime, network, status)
|
||||||
|
VALUES ('txid_status', 'wtx', 'ntx', 'raw', 100, 'testnet', 0)",
|
||||||
|
)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
update_tx_status(&pool, "txid_status", 1, None)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
if let DatabasePool::PostgreSQL(p) = &pool {
|
||||||
|
let row = sqlx::query("SELECT status FROM tbl_tx WHERE txid = 'txid_status'")
|
||||||
|
.fetch_one(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
let status: i64 = row.try_get("status").unwrap();
|
||||||
|
assert_eq!(status, 1, "Status should be updated to 1");
|
||||||
|
}
|
||||||
|
|
||||||
|
update_tx_status(&pool, "txid_status", 2, Some("test error"))
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
if let DatabasePool::PostgreSQL(p) = &pool {
|
||||||
|
let row = sqlx::query("SELECT status, push_err FROM tbl_tx WHERE txid = 'txid_status'")
|
||||||
|
.fetch_one(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
let status: i64 = row.try_get("status").unwrap();
|
||||||
|
let push_err: Option<String> = row.try_get("push_err").unwrap();
|
||||||
|
assert_eq!(status, 2);
|
||||||
|
assert_eq!(push_err.as_deref(), Some("test error"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_pg_get_pending_txs() {
|
||||||
|
let Some(pool) = setup_pg().await else {
|
||||||
|
eprintln!("skipped: PostgreSQL not available");
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
|
if let DatabasePool::PostgreSQL(p) = &pool {
|
||||||
|
// Insert pending tx (status=0, locktime < height)
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO tbl_tx (txid, wtxid, ntxid, tx, locktime, network, status)
|
||||||
|
VALUES ('pending1', 'w', 'n', 'rawtx1', 100, 'testnet', 0)",
|
||||||
|
)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
// Insert already pushed tx (status=1)
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO tbl_tx (txid, wtxid, ntxid, tx, locktime, network, status)
|
||||||
|
VALUES ('pushed1', 'w', 'n', 'rawtx2', 100, 'testnet', 1)",
|
||||||
|
)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
let txs = get_pending_txs(&pool, "testnet", 5000000, 200, 1000)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
assert_eq!(txs.len(), 1, "Should only return pending txs");
|
||||||
|
assert_eq!(txs[0].txid, "pending1");
|
||||||
|
assert_eq!(txs[0].tx, "rawtx1");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_pg_stats() {
|
||||||
|
let Some(pool) = setup_pg().await else {
|
||||||
|
eprintln!("skipped: PostgreSQL not available");
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Insert test data
|
||||||
|
if let DatabasePool::PostgreSQL(p) = &pool {
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO tbl_tx (txid, wtxid, ntxid, tx, locktime, network, status, our_fees)
|
||||||
|
VALUES
|
||||||
|
('stx1', 'w', 'n', 'r', 100, 'testnet', 0, '0.0001'),
|
||||||
|
('stx2', 'w', 'n', 'r', 100, 'testnet', 1, '0.0002'),
|
||||||
|
('stx3', 'w', 'n', 'r', 100, 'testnet', 2, '0.0003')",
|
||||||
|
)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
calculate_and_upsert_stats(&pool, "testnet").await.unwrap();
|
||||||
|
|
||||||
|
let stats = get_stats(&pool, "testnet").await.unwrap();
|
||||||
|
assert_eq!(stats.len(), 1, "Should have one stats row");
|
||||||
|
assert_eq!(stats[0].totals, 3);
|
||||||
|
assert_eq!(stats[0].waiting, 1);
|
||||||
|
assert_eq!(stats[0].sent, 1);
|
||||||
|
assert_eq!(stats[0].failed, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn test_pg_sql_injection_via_push_err() {
|
||||||
|
let Some(pool) = setup_pg().await else {
|
||||||
|
eprintln!("skipped: PostgreSQL not available");
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
|
if let DatabasePool::PostgreSQL(p) = &pool {
|
||||||
|
sqlx::query(
|
||||||
|
"CREATE TABLE test_inject (txid TEXT PRIMARY KEY, status INTEGER, push_err TEXT)",
|
||||||
|
)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
sqlx::query("INSERT INTO test_inject (txid, status, push_err) VALUES ($1, $2, $3)")
|
||||||
|
.bind("dummy")
|
||||||
|
.bind(0_i64)
|
||||||
|
.bind("")
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let malicious = "'; DROP TABLE test_inject; --";
|
||||||
|
sqlx::query("UPDATE test_inject SET status = 2, push_err = $1 WHERE txid = $2")
|
||||||
|
.bind(malicious)
|
||||||
|
.bind("dummy")
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let row = sqlx::query("SELECT status, push_err FROM test_inject WHERE txid = 'dummy'")
|
||||||
|
.fetch_one(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
let status: i64 = row.try_get("status").unwrap();
|
||||||
|
let push_err: String = row.try_get("push_err").unwrap();
|
||||||
|
assert_eq!(status, 2);
|
||||||
|
assert_eq!(push_err, malicious);
|
||||||
|
|
||||||
|
// Table should still exist
|
||||||
|
let cnt = sqlx::query("SELECT COUNT(*) as cnt FROM test_inject")
|
||||||
|
.fetch_one(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
let count: i64 = cnt.try_get("cnt").unwrap();
|
||||||
|
assert_eq!(count, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,137 +1,136 @@
|
|||||||
use sqlite::{Connection, Value};
|
use bal_server::db::{DatabasePool, open_database};
|
||||||
|
use sqlx::Row;
|
||||||
|
|
||||||
#[test]
|
async fn setup_db() -> DatabasePool {
|
||||||
fn test_sql_injection_via_push_err_update() {
|
open_database("sqlite", "sqlite::memory:").await.unwrap()
|
||||||
// Create an in-memory database and the required table
|
|
||||||
let db = Connection::open(":memory:").unwrap();
|
|
||||||
let _ =
|
|
||||||
db.execute("CREATE TABLE tbl_tx (txid TEXT PRIMARY KEY, status INTEGER, push_err TEXT);");
|
|
||||||
|
|
||||||
// Insert a dummy transaction
|
|
||||||
let mut stmt = db
|
|
||||||
.prepare("INSERT INTO tbl_tx (txid, status, push_err) VALUES (?, ?, ?);")
|
|
||||||
.unwrap();
|
|
||||||
stmt.bind((1, Value::String("dummy_txid".to_string())))
|
|
||||||
.unwrap();
|
|
||||||
stmt.bind((2, Value::Integer(0))).unwrap();
|
|
||||||
stmt.bind((3, Value::String("".to_string()))).unwrap();
|
|
||||||
let _ = stmt.next();
|
|
||||||
drop(stmt);
|
|
||||||
|
|
||||||
// Malicious error payload containing a single quote (SQL injection attempt)
|
|
||||||
let malicious_error = "'; DROP TABLE tbl_tx; --";
|
|
||||||
let txid = "dummy_txid";
|
|
||||||
|
|
||||||
// Execute the fixed query using parameter binding (safe)
|
|
||||||
let sql = "UPDATE tbl_tx SET status = 2, push_err = ? WHERE txid = ?";
|
|
||||||
let mut stmt = db.prepare(sql).unwrap();
|
|
||||||
stmt.bind((1, Value::String(malicious_error.to_string())))
|
|
||||||
.unwrap();
|
|
||||||
stmt.bind((2, Value::String(txid.to_string()))).unwrap();
|
|
||||||
let _ = stmt.next();
|
|
||||||
|
|
||||||
// Verify the table still exists and the row was updated correctly
|
|
||||||
let mut check = db
|
|
||||||
.prepare("SELECT status, push_err FROM tbl_tx WHERE txid = ?;")
|
|
||||||
.unwrap();
|
|
||||||
check
|
|
||||||
.bind((1, Value::String("dummy_txid".to_string())))
|
|
||||||
.unwrap();
|
|
||||||
assert!(check.next().unwrap() == sqlite::State::Row);
|
|
||||||
let status: i64 = check.read("status").unwrap();
|
|
||||||
let push_err: String = check.read("push_err").unwrap();
|
|
||||||
assert_eq!(status, 2);
|
|
||||||
assert_eq!(push_err, malicious_error);
|
|
||||||
|
|
||||||
// Ensure no second row was created (injection would have failed or produced extra rows)
|
|
||||||
let mut count_stmt = db.prepare("SELECT COUNT(*) FROM tbl_tx;").unwrap();
|
|
||||||
assert!(count_stmt.next().unwrap() == sqlite::State::Row);
|
|
||||||
let count: i64 = count_stmt.read(0).unwrap();
|
|
||||||
assert_eq!(count, 1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[tokio::test]
|
||||||
fn test_sql_injection_via_txid_update() {
|
async fn test_sql_injection_via_push_err_update() {
|
||||||
let db = Connection::open(":memory:").unwrap();
|
let pool = setup_db().await;
|
||||||
let _ = db.execute("CREATE TABLE tbl_tx (txid TEXT PRIMARY KEY, status INTEGER);");
|
if let DatabasePool::SQLite(p) = &pool {
|
||||||
|
sqlx::query("CREATE TABLE tbl_tx (txid TEXT PRIMARY KEY, status INTEGER, push_err TEXT);")
|
||||||
// Insert multiple dummy transactions
|
.execute(p)
|
||||||
for i in 0..3 {
|
.await
|
||||||
let mut stmt = db
|
|
||||||
.prepare("INSERT INTO tbl_tx (txid, status) VALUES (?, ?);")
|
|
||||||
.unwrap();
|
.unwrap();
|
||||||
stmt.bind((1, Value::String(format!("txid_{}", i))))
|
|
||||||
.unwrap();
|
|
||||||
stmt.bind((2, Value::Integer(0))).unwrap();
|
|
||||||
let _ = stmt.next();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Malicious txid payload
|
sqlx::query("INSERT INTO tbl_tx (txid, status, push_err) VALUES (?, ?, ?)")
|
||||||
let malicious_txid = "' OR '1'='1";
|
.bind("dummy_txid")
|
||||||
|
.bind(0_i64)
|
||||||
// The fixed query parameterizes the txid, so this should only update zero rows
|
.bind("")
|
||||||
let sql = "UPDATE tbl_tx SET status = 1 WHERE txid = ?";
|
.execute(p)
|
||||||
let mut stmt = db.prepare(sql).unwrap();
|
.await
|
||||||
stmt.bind((1, Value::String(malicious_txid.to_string())))
|
|
||||||
.unwrap();
|
|
||||||
let _ = stmt.next();
|
|
||||||
|
|
||||||
// Verify no rows were updated (status should still be 0 for all)
|
|
||||||
for i in 0..3 {
|
|
||||||
let mut check = db
|
|
||||||
.prepare("SELECT status FROM tbl_tx WHERE txid = ?;")
|
|
||||||
.unwrap();
|
.unwrap();
|
||||||
check
|
|
||||||
.bind((1, Value::String(format!("txid_{}", i))))
|
let malicious_error = "'; DROP TABLE tbl_tx; --";
|
||||||
|
let txid = "dummy_txid";
|
||||||
|
|
||||||
|
sqlx::query("UPDATE tbl_tx SET status = 2, push_err = ? WHERE txid = ?")
|
||||||
|
.bind(malicious_error)
|
||||||
|
.bind(txid)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
assert!(check.next().unwrap() == sqlite::State::Row);
|
|
||||||
let status: i64 = check.read("status").unwrap();
|
let row = sqlx::query("SELECT status, push_err FROM tbl_tx WHERE txid = ?")
|
||||||
assert_eq!(
|
.bind("dummy_txid")
|
||||||
status, 0,
|
.fetch_one(p)
|
||||||
"Row txid_{} should not be updated by malicious txid",
|
.await
|
||||||
i
|
.unwrap();
|
||||||
);
|
|
||||||
|
let status: i64 = row.try_get("status").unwrap();
|
||||||
|
let push_err: String = row.try_get("push_err").unwrap();
|
||||||
|
assert_eq!(status, 2);
|
||||||
|
assert_eq!(push_err, malicious_error);
|
||||||
|
|
||||||
|
let row = sqlx::query("SELECT COUNT(*) as cnt FROM tbl_tx")
|
||||||
|
.fetch_one(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
let count: i64 = row.try_get("cnt").unwrap();
|
||||||
|
assert_eq!(count, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[tokio::test]
|
||||||
fn test_sql_injection_via_txid_with_comment() {
|
async fn test_sql_injection_via_txid_update() {
|
||||||
let db = Connection::open(":memory:").unwrap();
|
let pool = setup_db().await;
|
||||||
let _ = db.execute("CREATE TABLE tbl_tx (txid TEXT PRIMARY KEY, status INTEGER);");
|
if let DatabasePool::SQLite(p) = &pool {
|
||||||
|
sqlx::query("CREATE TABLE tbl_tx (txid TEXT PRIMARY KEY, status INTEGER);")
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
let mut stmt = db
|
for i in 0..3 {
|
||||||
.prepare("INSERT INTO tbl_tx (txid, status) VALUES (?, ?);")
|
sqlx::query("INSERT INTO tbl_tx (txid, status) VALUES (?, ?)")
|
||||||
.unwrap();
|
.bind(format!("txid_{}", i))
|
||||||
stmt.bind((1, Value::String("safe_txid".to_string())))
|
.bind(0_i64)
|
||||||
.unwrap();
|
.execute(p)
|
||||||
stmt.bind((2, Value::Integer(0))).unwrap();
|
.await
|
||||||
let _ = stmt.next();
|
.unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
// Another common injection pattern
|
let malicious_txid = "' OR '1'='1";
|
||||||
let malicious_txid = "safe_txid'; UPDATE tbl_tx SET status = 99; --";
|
|
||||||
|
|
||||||
let sql = "UPDATE tbl_tx SET status = 1 WHERE txid = ?";
|
sqlx::query("UPDATE tbl_tx SET status = 1 WHERE txid = ?")
|
||||||
let mut stmt = db.prepare(sql).unwrap();
|
.bind(malicious_txid)
|
||||||
stmt.bind((1, Value::String(malicious_txid.to_string())))
|
.execute(p)
|
||||||
.unwrap();
|
.await
|
||||||
let _ = stmt.next();
|
.unwrap();
|
||||||
|
|
||||||
// Verify the original row was NOT updated (because it was looking for the full malicious string)
|
for i in 0..3 {
|
||||||
// and no rows have status 99 (the injected update did not execute)
|
let row = sqlx::query("SELECT status FROM tbl_tx WHERE txid = ?")
|
||||||
let mut check = db
|
.bind(format!("txid_{}", i))
|
||||||
.prepare("SELECT status FROM tbl_tx WHERE txid = ?;")
|
.fetch_one(p)
|
||||||
.unwrap();
|
.await
|
||||||
check
|
.unwrap();
|
||||||
.bind((1, Value::String("safe_txid".to_string())))
|
let status: i64 = row.try_get("status").unwrap();
|
||||||
.unwrap();
|
assert_eq!(
|
||||||
assert!(check.next().unwrap() == sqlite::State::Row);
|
status, 0,
|
||||||
let status: i64 = check.read("status").unwrap();
|
"Row txid_{} should not be updated by malicious txid",
|
||||||
assert_eq!(status, 0, "Original row should not be updated");
|
i
|
||||||
|
);
|
||||||
let mut count_stmt = db
|
}
|
||||||
.prepare("SELECT COUNT(*) FROM tbl_tx WHERE status = 99;")
|
}
|
||||||
.unwrap();
|
}
|
||||||
assert!(count_stmt.next().unwrap() == sqlite::State::Row);
|
|
||||||
let count: i64 = count_stmt.read(0).unwrap();
|
#[tokio::test]
|
||||||
assert_eq!(count, 0, "No rows should have status 99");
|
async fn test_sql_injection_via_txid_with_comment() {
|
||||||
|
let pool = setup_db().await;
|
||||||
|
if let DatabasePool::SQLite(p) = &pool {
|
||||||
|
sqlx::query("CREATE TABLE tbl_tx (txid TEXT PRIMARY KEY, status INTEGER);")
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
sqlx::query("INSERT INTO tbl_tx (txid, status) VALUES (?, ?)")
|
||||||
|
.bind("safe_txid")
|
||||||
|
.bind(0_i64)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let malicious_txid = "safe_txid'; UPDATE tbl_tx SET status = 99; --";
|
||||||
|
|
||||||
|
sqlx::query("UPDATE tbl_tx SET status = 1 WHERE txid = ?")
|
||||||
|
.bind(malicious_txid)
|
||||||
|
.execute(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let row = sqlx::query("SELECT status FROM tbl_tx WHERE txid = ?")
|
||||||
|
.bind("safe_txid")
|
||||||
|
.fetch_one(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
let status: i64 = row.try_get("status").unwrap();
|
||||||
|
assert_eq!(status, 0, "Original row should not be updated");
|
||||||
|
|
||||||
|
let row = sqlx::query("SELECT COUNT(*) as cnt FROM tbl_tx WHERE status = 99")
|
||||||
|
.fetch_one(p)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
let count: i64 = row.try_get("cnt").unwrap();
|
||||||
|
assert_eq!(count, 0, "No rows should have status 99");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
287
tests/test_endpoints.sh
Executable file
287
tests/test_endpoints.sh
Executable file
@@ -0,0 +1,287 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# tests/test_endpoints.sh — Integration tests for bal-server endpoints
|
||||||
|
# Usage: ./tests/test_endpoints.sh <base_url>
|
||||||
|
# Example: ./tests/test_endpoints.sh http://127.0.0.1:9133
|
||||||
|
# Returns 0 if all tests pass, 1 otherwise
|
||||||
|
|
||||||
|
set -uo pipefail
|
||||||
|
|
||||||
|
BASE_URL="${1:?Usage: $0 <base_url>}"
|
||||||
|
|
||||||
|
# Delay between requests to avoid rate limiter (actix-governor)
|
||||||
|
DELAY=1.0
|
||||||
|
PASS=0
|
||||||
|
FAIL=0
|
||||||
|
TOTAL=0
|
||||||
|
|
||||||
|
# Colors
|
||||||
|
RED='\033[0;31m'
|
||||||
|
GREEN='\033[0;32m'
|
||||||
|
YELLOW='\033[1;33m'
|
||||||
|
NC='\033[0m'
|
||||||
|
|
||||||
|
# Known network for testing (must be enabled in server config)
|
||||||
|
TEST_NETWORK="regtest"
|
||||||
|
|
||||||
|
# A valid 64-char hex txid that does NOT exist in the database
|
||||||
|
NONEXISTENT_TXID="551dc4841830e457b0932b81eb458a00f87e5342b70333bb92df7475d6ca90f4"
|
||||||
|
|
||||||
|
# A valid raw transaction hex (minimal valid tx for testing)
|
||||||
|
VALID_TX_HEX="020000000100000000000000000000000000000000000000000000000000000000000000000000000000ffffffff0100f2052a0100000043410496b538e853519c726a2c91e61ec112f826d36b0c8080a01e2894d24b051f05e0f03ed7790b09fd327518756ff2a55ecee44b5e08d76f994a7c5f3ffcac88bac"
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# Helpers
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
|
||||||
|
log_pass() {
|
||||||
|
PASS=$((PASS + 1))
|
||||||
|
TOTAL=$((TOTAL + 1))
|
||||||
|
echo -e " ${GREEN}PASS${NC} $1"
|
||||||
|
}
|
||||||
|
|
||||||
|
log_fail() {
|
||||||
|
FAIL=$((FAIL + 1))
|
||||||
|
TOTAL=$((TOTAL + 1))
|
||||||
|
echo -e " ${RED}FAIL${NC} $1"
|
||||||
|
if [ -n "${2:-}" ]; then
|
||||||
|
echo -e " Expected: ${YELLOW}$2${NC}"
|
||||||
|
echo -e " Got: ${YELLOW}$3${NC}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# Perform a GET request with rate-limit delay, split into BODY and STATUS
|
||||||
|
curl_get() {
|
||||||
|
sleep "$DELAY"
|
||||||
|
local resp
|
||||||
|
resp=$(curl -s -w "\n%{http_code}" "$@")
|
||||||
|
BODY=$(echo "$resp" | sed '$d')
|
||||||
|
STATUS=$(echo "$resp" | tail -1)
|
||||||
|
}
|
||||||
|
|
||||||
|
# Perform a POST request with rate-limit delay, split into BODY and STATUS
|
||||||
|
curl_post() {
|
||||||
|
sleep "$DELAY"
|
||||||
|
local resp
|
||||||
|
resp=$(curl -s -w "\n%{http_code}" "$@")
|
||||||
|
BODY=$(echo "$resp" | sed '$d')
|
||||||
|
STATUS=$(echo "$resp" | tail -1)
|
||||||
|
}
|
||||||
|
|
||||||
|
assert_status() {
|
||||||
|
local expected="$1" actual="$2" name="$3"
|
||||||
|
if [ "$actual" = "$expected" ]; then
|
||||||
|
log_pass "$name (HTTP $actual)"
|
||||||
|
else
|
||||||
|
log_fail "$name" "HTTP $expected" "HTTP $actual"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
assert_body_contains() {
|
||||||
|
local pattern="$1" body="$2" name="$3"
|
||||||
|
if echo "$body" | grep -q "$pattern"; then
|
||||||
|
log_pass "$name (contains '$pattern')"
|
||||||
|
else
|
||||||
|
log_fail "$name" "body contains '$pattern'" "body: '$(echo "$body" | head -c 80)'"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
assert_body_not_empty() {
|
||||||
|
local body="$1" name="$2"
|
||||||
|
if [ -n "$body" ]; then
|
||||||
|
log_pass "$name (non-empty response)"
|
||||||
|
else
|
||||||
|
log_fail "$name" "non-empty body" "empty body"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
assert_json_valid() {
|
||||||
|
local body="$1" name="$2"
|
||||||
|
if echo "$body" | jq . >/dev/null 2>&1; then
|
||||||
|
log_pass "$name (valid JSON)"
|
||||||
|
else
|
||||||
|
log_fail "$name" "valid JSON" "invalid JSON: $(echo "$body" | head -c 100)"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
assert_json_has_key() {
|
||||||
|
local key="$1" body="$2" name="$3"
|
||||||
|
if echo "$body" | jq -e ".$key" >/dev/null 2>&1; then
|
||||||
|
log_pass "$name (has key '$key')"
|
||||||
|
else
|
||||||
|
log_fail "$name" "JSON has key '$key'" "key not found"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# 1. GET /
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[1] GET /${NC}"
|
||||||
|
curl_get "$BASE_URL/"
|
||||||
|
assert_status "200" "$STATUS" "GET / returns 200"
|
||||||
|
assert_body_not_empty "$BODY" "GET / returns non-empty body"
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# 2. GET /.pub_key.pem
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[2] GET /.pub_key.pem${NC}"
|
||||||
|
curl_get "$BASE_URL/.pub_key.pem"
|
||||||
|
assert_status "200" "$STATUS" "GET /.pub_key.pem returns 200"
|
||||||
|
assert_body_contains "BEGIN PUBLIC KEY" "$BODY" "GET /.pub_key.pem contains PEM header"
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# 3. GET /version
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[3] GET /version${NC}"
|
||||||
|
curl_get "$BASE_URL/version"
|
||||||
|
assert_status "200" "$STATUS" "GET /version returns 200"
|
||||||
|
assert_body_not_empty "$BODY" "GET /version returns non-empty body"
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# 4. GET /{network}/info
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[4] GET /$TEST_NETWORK/info${NC}"
|
||||||
|
curl_get "$BASE_URL/$TEST_NETWORK/info"
|
||||||
|
assert_status "200" "$STATUS" "GET /$TEST_NETWORK/info returns 200"
|
||||||
|
assert_json_valid "$BODY" "GET /$TEST_NETWORK/info returns valid JSON"
|
||||||
|
assert_json_has_key "chain" "$BODY" "GET /$TEST_NETWORK/info has 'chain' key"
|
||||||
|
assert_json_has_key "address" "$BODY" "GET /$TEST_NETWORK/info has 'address' key"
|
||||||
|
assert_json_has_key "base_fee" "$BODY" "GET /$TEST_NETWORK/info has 'base_fee' key"
|
||||||
|
assert_json_has_key "info" "$BODY" "GET /$TEST_NETWORK/info has 'info' key"
|
||||||
|
assert_json_has_key "version" "$BODY" "GET /$TEST_NETWORK/info has 'version' key"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[4b] GET /invalidnet/info${NC}"
|
||||||
|
curl_get "$BASE_URL/invalidnet/info"
|
||||||
|
assert_status "404" "$STATUS" "GET /invalidnet/info returns 404"
|
||||||
|
assert_body_contains "Unknown network" "$BODY" "GET /invalidnet/info body says 'Unknown network'"
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# 5. GET /{network}/stats
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[5] GET /$TEST_NETWORK/stats${NC}"
|
||||||
|
curl_get "$BASE_URL/$TEST_NETWORK/stats"
|
||||||
|
assert_status "200" "$STATUS" "GET /$TEST_NETWORK/stats returns 200"
|
||||||
|
assert_json_valid "$BODY" "GET /$TEST_NETWORK/stats returns valid JSON"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[5b] GET /invalidnet/stats${NC}"
|
||||||
|
curl_get "$BASE_URL/invalidnet/stats"
|
||||||
|
assert_status "404" "$STATUS" "GET /invalidnet/stats returns 404"
|
||||||
|
assert_body_contains "Unknown network" "$BODY" "GET /invalidnet/stats body says 'Unknown network'"
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# 6. POST /searchtx
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[6] POST /searchtx — empty body${NC}"
|
||||||
|
curl_post -X POST -d "" "$BASE_URL/searchtx"
|
||||||
|
assert_status "400" "$STATUS" "POST /searchtx empty body returns 400"
|
||||||
|
assert_body_contains "Invalid txid" "$BODY" "POST /searchtx empty body says 'Invalid txid'"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[6b] POST /searchtx — short txid${NC}"
|
||||||
|
curl_post -X POST -d "abc123" "$BASE_URL/searchtx"
|
||||||
|
assert_status "400" "$STATUS" "POST /searchtx short txid returns 400"
|
||||||
|
assert_body_contains "Invalid txid" "$BODY" "POST /searchtx short txid says 'Invalid txid'"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[6c] POST /searchtx — non-hex txid${NC}"
|
||||||
|
curl_post -X POST -d "zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz" "$BASE_URL/searchtx"
|
||||||
|
assert_status "400" "$STATUS" "POST /searchtx non-hex txid returns 400"
|
||||||
|
assert_body_contains "Invalid txid" "$BODY" "POST /searchtx non-hex txid says 'Invalid txid'"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[6d] POST /searchtx — nonexistent valid hex txid${NC}"
|
||||||
|
curl_post -X POST -d "$NONEXISTENT_TXID" "$BASE_URL/searchtx"
|
||||||
|
# When txid is valid hex but not in DB: either 200 with empty JSON or 404
|
||||||
|
if [ "$STATUS" = "200" ] || [ "$STATUS" = "404" ]; then
|
||||||
|
log_pass "POST /searchtx nonexistent txid returns HTTP $STATUS (expected)"
|
||||||
|
else
|
||||||
|
log_fail "POST /searchtx nonexistent txid" "HTTP 200 or 404" "HTTP $STATUS"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Verify Content-Type is application/json for successful searchtx responses
|
||||||
|
if [ "$STATUS" = "200" ]; then
|
||||||
|
CONTENT_TYPE=$(curl -s -D - --max-time 3 -X POST -d "$NONEXISTENT_TXID" "$BASE_URL/searchtx" 2>/dev/null | grep -i "^content-type:" | tr -d '\r')
|
||||||
|
if echo "$CONTENT_TYPE" | grep -q "application/json"; then
|
||||||
|
log_pass "POST /searchtx Content-Type is application/json"
|
||||||
|
else
|
||||||
|
log_fail "POST /searchtx Content-Type" "application/json" "$CONTENT_TYPE"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[6e] POST /searchtx — binary non-UTF8 body${NC}"
|
||||||
|
curl_post -X POST --data-binary $'\xff\xfe\xfd' "$BASE_URL/searchtx"
|
||||||
|
assert_status "400" "$STATUS" "POST /searchtx binary body returns 400"
|
||||||
|
assert_body_contains "Invalid UTF-8 body" "$BODY" "POST /searchtx binary body says 'Invalid UTF-8 body'"
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# 7. POST /{network}/pushtxs
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[7] POST /invalidnet/pushtxs${NC}"
|
||||||
|
curl_post -X POST -d "" "$BASE_URL/invalidnet/pushtxs"
|
||||||
|
assert_status "404" "$STATUS" "POST /invalidnet/pushtxs returns 404"
|
||||||
|
assert_body_contains "Unknown network" "$BODY" "POST /invalidnet/pushtxs body says 'Unknown network'"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[7b] POST /$TEST_NETWORK/pushtxs — empty body${NC}"
|
||||||
|
curl_post -X POST -d "" "$BASE_URL/$TEST_NETWORK/pushtxs"
|
||||||
|
assert_status "200" "$STATUS" "POST /$TEST_NETWORK/pushtxs empty body returns 200"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[7c] POST /$TEST_NETWORK/pushtxs — valid hex tx${NC}"
|
||||||
|
curl_post -X POST -d "$VALID_TX_HEX" "$BASE_URL/$TEST_NETWORK/pushtxs"
|
||||||
|
# Server returns 200 with "thx" or "already present" or "Bad data received"
|
||||||
|
if [ "$STATUS" = "200" ]; then
|
||||||
|
if echo "$BODY" | grep -qE "^(thx|already present|Bad data received)$"; then
|
||||||
|
log_pass "POST /$TEST_NETWORK/pushtxs valid hex returns HTTP 200 with '$BODY'"
|
||||||
|
else
|
||||||
|
log_pass "POST /$TEST_NETWORK/pushtxs valid hex returns HTTP 200 (body: $(echo "$BODY" | head -c 50))"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
log_fail "POST /$TEST_NETWORK/pushtxs valid hex" "HTTP 200" "HTTP $STATUS"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[7d] POST /$TEST_NETWORK/pushtxs — non-hex garbage${NC}"
|
||||||
|
curl_post -X POST -d "not-a-transaction" "$BASE_URL/$TEST_NETWORK/pushtxs"
|
||||||
|
assert_status "200" "$STATUS" "POST /$TEST_NETWORK/pushtxs garbage returns 200"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[7e] POST /$TEST_NETWORK/pushtxs — binary non-UTF8 body${NC}"
|
||||||
|
curl_post -X POST --data-binary $'\xff\xfe\xfd' "$BASE_URL/$TEST_NETWORK/pushtxs"
|
||||||
|
# Invalid UTF-8 should be rejected
|
||||||
|
if [ "$STATUS" = "400" ]; then
|
||||||
|
assert_body_contains "Invalid UTF-8 body" "$BODY" "POST /$TEST_NETWORK/pushtxs binary body says 'Invalid UTF-8 body'"
|
||||||
|
else
|
||||||
|
# Server may accept binary as latin-1 and skip invalid lines gracefully
|
||||||
|
log_pass "POST /$TEST_NETWORK/pushtxs binary body returns HTTP $STATUS (skipped gracefully)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# 8. GET on unknown routes
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
echo ""
|
||||||
|
echo -e "${YELLOW}[8] GET /nonexistent${NC}"
|
||||||
|
curl_get "$BASE_URL/nonexistent"
|
||||||
|
assert_status "404" "$STATUS" "GET /nonexistent returns 404"
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
# Summary
|
||||||
|
# ─────────────────────────────────────────────
|
||||||
|
echo ""
|
||||||
|
echo "========================================="
|
||||||
|
echo -e "Results: ${GREEN}$PASS passed${NC}, ${RED}$FAIL failed${NC} ($TOTAL total)"
|
||||||
|
echo "========================================="
|
||||||
|
|
||||||
|
if [ "$FAIL" -gt 0 ]; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
exit 0
|
||||||
Reference in New Issue
Block a user