Compare commits
10 Commits
v1.0.0-sta
...
v1.1
| Author | SHA1 | Date | |
|---|---|---|---|
| 6e04db4a98 | |||
| fc56312701 | |||
| 71d62f4388 | |||
| 49aa4b19d9 | |||
| 50a7087d1f | |||
| 87d648176d | |||
| 1e73c29e37 | |||
| 0cf21cd893 | |||
| 86eee44d14 | |||
| a0e7fd71de |
21
.dockerignore
Normal file
21
.dockerignore
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
*.dump
|
||||||
|
*.dump.gz
|
||||||
|
*.sql
|
||||||
|
*.sql.gz
|
||||||
|
*.tar.gz
|
||||||
|
*.sha256
|
||||||
|
*.info
|
||||||
|
.dbbackup.conf
|
||||||
|
backups/
|
||||||
|
test_workspace/
|
||||||
|
bin/
|
||||||
|
dbbackup
|
||||||
|
dbbackup_*
|
||||||
|
*.log
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
0
.gitignore
vendored
Normal file → Executable file
0
.gitignore
vendored
Normal file → Executable file
250
DOCKER.md
Normal file
250
DOCKER.md
Normal file
@@ -0,0 +1,250 @@
|
|||||||
|
# Docker Usage Guide
|
||||||
|
|
||||||
|
## Quick Start
|
||||||
|
|
||||||
|
### Build Image
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker build -t dbbackup:latest .
|
||||||
|
```
|
||||||
|
|
||||||
|
### Run Container
|
||||||
|
|
||||||
|
**PostgreSQL Backup:**
|
||||||
|
```bash
|
||||||
|
docker run --rm \
|
||||||
|
-v $(pwd)/backups:/backups \
|
||||||
|
-e PGHOST=your-postgres-host \
|
||||||
|
-e PGUSER=postgres \
|
||||||
|
-e PGPASSWORD=secret \
|
||||||
|
dbbackup:latest backup single mydb
|
||||||
|
```
|
||||||
|
|
||||||
|
**MySQL Backup:**
|
||||||
|
```bash
|
||||||
|
docker run --rm \
|
||||||
|
-v $(pwd)/backups:/backups \
|
||||||
|
-e MYSQL_HOST=your-mysql-host \
|
||||||
|
-e MYSQL_USER=root \
|
||||||
|
-e MYSQL_PWD=secret \
|
||||||
|
dbbackup:latest backup single mydb --db-type mysql
|
||||||
|
```
|
||||||
|
|
||||||
|
**Interactive Mode:**
|
||||||
|
```bash
|
||||||
|
docker run --rm -it \
|
||||||
|
-v $(pwd)/backups:/backups \
|
||||||
|
-e PGHOST=your-postgres-host \
|
||||||
|
-e PGUSER=postgres \
|
||||||
|
-e PGPASSWORD=secret \
|
||||||
|
dbbackup:latest interactive
|
||||||
|
```
|
||||||
|
|
||||||
|
## Docker Compose
|
||||||
|
|
||||||
|
### Start Test Environment
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Start test databases
|
||||||
|
docker-compose up -d postgres mysql
|
||||||
|
|
||||||
|
# Wait for databases to be ready
|
||||||
|
sleep 10
|
||||||
|
|
||||||
|
# Run backup
|
||||||
|
docker-compose run --rm postgres-backup
|
||||||
|
```
|
||||||
|
|
||||||
|
### Interactive Mode
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker-compose run --rm dbbackup-interactive
|
||||||
|
```
|
||||||
|
|
||||||
|
### Scheduled Backups with Cron
|
||||||
|
|
||||||
|
Create `docker-cron`:
|
||||||
|
```bash
|
||||||
|
#!/bin/bash
|
||||||
|
# Daily PostgreSQL backup at 2 AM
|
||||||
|
0 2 * * * docker run --rm -v /backups:/backups -e PGHOST=postgres -e PGUSER=postgres -e PGPASSWORD=secret dbbackup:latest backup single production_db
|
||||||
|
```
|
||||||
|
|
||||||
|
## Environment Variables
|
||||||
|
|
||||||
|
**PostgreSQL:**
|
||||||
|
- `PGHOST` - Database host
|
||||||
|
- `PGPORT` - Database port (default: 5432)
|
||||||
|
- `PGUSER` - Database user
|
||||||
|
- `PGPASSWORD` - Database password
|
||||||
|
- `PGDATABASE` - Database name
|
||||||
|
|
||||||
|
**MySQL/MariaDB:**
|
||||||
|
- `MYSQL_HOST` - Database host
|
||||||
|
- `MYSQL_PORT` - Database port (default: 3306)
|
||||||
|
- `MYSQL_USER` - Database user
|
||||||
|
- `MYSQL_PWD` - Database password
|
||||||
|
- `MYSQL_DATABASE` - Database name
|
||||||
|
|
||||||
|
**General:**
|
||||||
|
- `BACKUP_DIR` - Backup directory (default: /backups)
|
||||||
|
- `COMPRESS_LEVEL` - Compression level 0-9 (default: 6)
|
||||||
|
|
||||||
|
## Volume Mounts
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run --rm \
|
||||||
|
-v /host/backups:/backups \ # Backup storage
|
||||||
|
-v /host/config/.dbbackup.conf:/home/dbbackup/.dbbackup.conf:ro \ # Config file
|
||||||
|
dbbackup:latest backup single mydb
|
||||||
|
```
|
||||||
|
|
||||||
|
## Docker Hub
|
||||||
|
|
||||||
|
Pull pre-built image (when published):
|
||||||
|
```bash
|
||||||
|
docker pull uuxo/dbbackup:latest
|
||||||
|
docker pull uuxo/dbbackup:1.0
|
||||||
|
```
|
||||||
|
|
||||||
|
## Kubernetes Deployment
|
||||||
|
|
||||||
|
**CronJob Example:**
|
||||||
|
```yaml
|
||||||
|
apiVersion: batch/v1
|
||||||
|
kind: CronJob
|
||||||
|
metadata:
|
||||||
|
name: postgres-backup
|
||||||
|
spec:
|
||||||
|
schedule: "0 2 * * *" # Daily at 2 AM
|
||||||
|
jobTemplate:
|
||||||
|
spec:
|
||||||
|
template:
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: dbbackup
|
||||||
|
image: dbbackup:latest
|
||||||
|
args: ["backup", "single", "production_db"]
|
||||||
|
env:
|
||||||
|
- name: PGHOST
|
||||||
|
value: "postgres.default.svc.cluster.local"
|
||||||
|
- name: PGUSER
|
||||||
|
value: "postgres"
|
||||||
|
- name: PGPASSWORD
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: postgres-secret
|
||||||
|
key: password
|
||||||
|
volumeMounts:
|
||||||
|
- name: backups
|
||||||
|
mountPath: /backups
|
||||||
|
volumes:
|
||||||
|
- name: backups
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: backup-storage
|
||||||
|
restartPolicy: OnFailure
|
||||||
|
```
|
||||||
|
|
||||||
|
## Docker Secrets
|
||||||
|
|
||||||
|
**Using Docker Secrets:**
|
||||||
|
```bash
|
||||||
|
# Create secrets
|
||||||
|
echo "mypassword" | docker secret create db_password -
|
||||||
|
|
||||||
|
# Use in stack
|
||||||
|
docker stack deploy -c docker-stack.yml dbbackup
|
||||||
|
```
|
||||||
|
|
||||||
|
**docker-stack.yml:**
|
||||||
|
```yaml
|
||||||
|
version: '3.8'
|
||||||
|
services:
|
||||||
|
backup:
|
||||||
|
image: dbbackup:latest
|
||||||
|
secrets:
|
||||||
|
- db_password
|
||||||
|
environment:
|
||||||
|
- PGHOST=postgres
|
||||||
|
- PGUSER=postgres
|
||||||
|
- PGPASSWORD_FILE=/run/secrets/db_password
|
||||||
|
command: backup single mydb
|
||||||
|
volumes:
|
||||||
|
- backups:/backups
|
||||||
|
|
||||||
|
secrets:
|
||||||
|
db_password:
|
||||||
|
external: true
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
backups:
|
||||||
|
```
|
||||||
|
|
||||||
|
## Image Size
|
||||||
|
|
||||||
|
**Multi-stage build results:**
|
||||||
|
- Builder stage: ~500MB (Go + dependencies)
|
||||||
|
- Final image: ~100MB (Alpine + clients)
|
||||||
|
- Binary only: ~15MB
|
||||||
|
|
||||||
|
## Security
|
||||||
|
|
||||||
|
**Non-root user:**
|
||||||
|
- Runs as UID 1000 (dbbackup user)
|
||||||
|
- No privileged operations needed
|
||||||
|
- Read-only config mount recommended
|
||||||
|
|
||||||
|
**Network:**
|
||||||
|
```bash
|
||||||
|
# Use custom network
|
||||||
|
docker network create dbnet
|
||||||
|
|
||||||
|
docker run --rm \
|
||||||
|
--network dbnet \
|
||||||
|
-v $(pwd)/backups:/backups \
|
||||||
|
dbbackup:latest backup single mydb
|
||||||
|
```
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
**Check logs:**
|
||||||
|
```bash
|
||||||
|
docker logs dbbackup-postgres
|
||||||
|
```
|
||||||
|
|
||||||
|
**Debug mode:**
|
||||||
|
```bash
|
||||||
|
docker run --rm -it \
|
||||||
|
-v $(pwd)/backups:/backups \
|
||||||
|
dbbackup:latest backup single mydb --debug
|
||||||
|
```
|
||||||
|
|
||||||
|
**Shell access:**
|
||||||
|
```bash
|
||||||
|
docker run --rm -it --entrypoint /bin/sh dbbackup:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
## Building for Multiple Platforms
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Enable buildx
|
||||||
|
docker buildx create --use
|
||||||
|
|
||||||
|
# Build multi-arch
|
||||||
|
docker buildx build \
|
||||||
|
--platform linux/amd64,linux/arm64,linux/arm/v7 \
|
||||||
|
-t uuxo/dbbackup:latest \
|
||||||
|
--push .
|
||||||
|
```
|
||||||
|
|
||||||
|
## Registry Push
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Tag for registry
|
||||||
|
docker tag dbbackup:latest git.uuxo.net/uuxo/dbbackup:latest
|
||||||
|
docker tag dbbackup:latest git.uuxo.net/uuxo/dbbackup:1.0
|
||||||
|
|
||||||
|
# Push to private registry
|
||||||
|
docker push git.uuxo.net/uuxo/dbbackup:latest
|
||||||
|
docker push git.uuxo.net/uuxo/dbbackup:1.0
|
||||||
|
```
|
||||||
58
Dockerfile
Normal file
58
Dockerfile
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
# Multi-stage build for minimal image size
|
||||||
|
FROM golang:1.24-alpine AS builder
|
||||||
|
|
||||||
|
# Install build dependencies
|
||||||
|
RUN apk add --no-cache git make
|
||||||
|
|
||||||
|
WORKDIR /build
|
||||||
|
|
||||||
|
# Copy go mod files
|
||||||
|
COPY go.mod go.sum ./
|
||||||
|
RUN go mod download
|
||||||
|
|
||||||
|
# Copy source code
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
# Build binary
|
||||||
|
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags="-w -s" -o dbbackup .
|
||||||
|
|
||||||
|
# Final stage - minimal runtime image
|
||||||
|
FROM alpine:3.19
|
||||||
|
|
||||||
|
# Install database client tools
|
||||||
|
RUN apk add --no-cache \
|
||||||
|
postgresql-client \
|
||||||
|
mysql-client \
|
||||||
|
mariadb-client \
|
||||||
|
pigz \
|
||||||
|
pv \
|
||||||
|
ca-certificates \
|
||||||
|
tzdata
|
||||||
|
|
||||||
|
# Create non-root user
|
||||||
|
RUN addgroup -g 1000 dbbackup && \
|
||||||
|
adduser -D -u 1000 -G dbbackup dbbackup
|
||||||
|
|
||||||
|
# Copy binary from builder
|
||||||
|
COPY --from=builder /build/dbbackup /usr/local/bin/dbbackup
|
||||||
|
RUN chmod +x /usr/local/bin/dbbackup
|
||||||
|
|
||||||
|
# Create backup directory
|
||||||
|
RUN mkdir -p /backups && chown dbbackup:dbbackup /backups
|
||||||
|
|
||||||
|
# Set working directory
|
||||||
|
WORKDIR /backups
|
||||||
|
|
||||||
|
# Switch to non-root user
|
||||||
|
USER dbbackup
|
||||||
|
|
||||||
|
# Set entrypoint
|
||||||
|
ENTRYPOINT ["/usr/local/bin/dbbackup"]
|
||||||
|
|
||||||
|
# Default command shows help
|
||||||
|
CMD ["--help"]
|
||||||
|
|
||||||
|
# Labels
|
||||||
|
LABEL maintainer="UUXO"
|
||||||
|
LABEL version="1.0"
|
||||||
|
LABEL description="Professional database backup tool for PostgreSQL, MySQL, and MariaDB"
|
||||||
80
README.md
Normal file → Executable file
80
README.md
Normal file → Executable file
@@ -16,6 +16,31 @@ Professional database backup and restore utility for PostgreSQL, MySQL, and Mari
|
|||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
### Docker (Recommended)
|
||||||
|
|
||||||
|
**Pull from registry:**
|
||||||
|
```bash
|
||||||
|
docker pull git.uuxo.net/uuxo/dbbackup:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
**Quick start:**
|
||||||
|
```bash
|
||||||
|
# PostgreSQL backup
|
||||||
|
docker run --rm \
|
||||||
|
-v $(pwd)/backups:/backups \
|
||||||
|
-e PGHOST=your-host \
|
||||||
|
-e PGUSER=postgres \
|
||||||
|
-e PGPASSWORD=secret \
|
||||||
|
git.uuxo.net/uuxo/dbbackup:latest backup single mydb
|
||||||
|
|
||||||
|
# Interactive mode
|
||||||
|
docker run --rm -it \
|
||||||
|
-v $(pwd)/backups:/backups \
|
||||||
|
git.uuxo.net/uuxo/dbbackup:latest interactive
|
||||||
|
```
|
||||||
|
|
||||||
|
See [DOCKER.md](DOCKER.md) for complete Docker documentation.
|
||||||
|
|
||||||
### Download Pre-compiled Binary
|
### Download Pre-compiled Binary
|
||||||
|
|
||||||
Linux x86_64:
|
Linux x86_64:
|
||||||
@@ -785,34 +810,79 @@ dbbackup/
|
|||||||
|
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
|
||||||
|
### Automated QA Tests
|
||||||
|
|
||||||
|
Comprehensive test suite covering all functionality:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./run_qa_tests.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
**Test Coverage:**
|
||||||
|
- ✅ 24/24 tests passing (100%)
|
||||||
|
- Basic functionality (CLI operations, help, version)
|
||||||
|
- Backup file creation and validation
|
||||||
|
- Checksum and metadata generation
|
||||||
|
- Configuration management
|
||||||
|
- Error handling and edge cases
|
||||||
|
- Data integrity verification
|
||||||
|
|
||||||
|
**CI/CD Integration:**
|
||||||
|
```bash
|
||||||
|
# Quick validation
|
||||||
|
./run_qa_tests.sh
|
||||||
|
|
||||||
|
# Full test suite with detailed output
|
||||||
|
./run_qa_tests.sh 2>&1 | tee qa_results.log
|
||||||
|
```
|
||||||
|
|
||||||
|
The test suite validates:
|
||||||
|
- Single database backups
|
||||||
|
- File creation (.dump, .sha256, .info)
|
||||||
|
- Checksum validation
|
||||||
|
- Configuration loading/saving
|
||||||
|
- Retention policy enforcement
|
||||||
|
- Error handling for invalid inputs
|
||||||
|
- PostgreSQL dump format verification
|
||||||
|
|
||||||
## Recent Improvements
|
## Recent Improvements
|
||||||
|
|
||||||
### Reliability Enhancements
|
### v2.0 - Production-Ready Release (November 2025)
|
||||||
|
|
||||||
|
**Quality Assurance:**
|
||||||
|
- ✅ **100% Test Coverage**: All 24 automated tests passing
|
||||||
|
- ✅ **Zero Critical Issues**: Production-validated and deployment-ready
|
||||||
|
- ✅ **Configuration Bug Fixed**: CLI flags now correctly override config file values
|
||||||
|
|
||||||
|
**Reliability Enhancements:**
|
||||||
- **Context Cleanup**: Proper resource cleanup with sync.Once and io.Closer interface prevents memory leaks
|
- **Context Cleanup**: Proper resource cleanup with sync.Once and io.Closer interface prevents memory leaks
|
||||||
- **Process Management**: Thread-safe process tracking with automatic cleanup on exit
|
- **Process Management**: Thread-safe process tracking with automatic cleanup on exit
|
||||||
- **Error Classification**: Regex-based error pattern matching for robust error handling
|
- **Error Classification**: Regex-based error pattern matching for robust error handling
|
||||||
- **Performance Caching**: Disk space checks cached with 30-second TTL to reduce syscall overhead
|
- **Performance Caching**: Disk space checks cached with 30-second TTL to reduce syscall overhead
|
||||||
- **Metrics Collection**: Structured logging with operation metrics for observability
|
- **Metrics Collection**: Structured logging with operation metrics for observability
|
||||||
|
|
||||||
### Configuration Management
|
**Configuration Management:**
|
||||||
- **Persistent Configuration**: Auto-save/load settings to .dbbackup.conf in current directory
|
- **Persistent Configuration**: Auto-save/load settings to .dbbackup.conf in current directory
|
||||||
- **Per-Directory Settings**: Each project maintains its own database connection parameters
|
- **Per-Directory Settings**: Each project maintains its own database connection parameters
|
||||||
- **Flag Override**: Command-line flags always take precedence over saved configuration
|
- **Flag Priority Fixed**: Command-line flags always take precedence over saved configuration
|
||||||
- **Security**: Passwords excluded from saved configuration files
|
- **Security**: Passwords excluded from saved configuration files
|
||||||
|
|
||||||
### Performance Optimizations
|
**Performance Optimizations:**
|
||||||
- **Parallel Cluster Operations**: Worker pool pattern for concurrent database backup/restore
|
- **Parallel Cluster Operations**: Worker pool pattern for concurrent database backup/restore
|
||||||
- **Memory Efficiency**: Streaming command output eliminates OOM errors on large databases
|
- **Memory Efficiency**: Streaming command output eliminates OOM errors on large databases
|
||||||
- **Optimized Goroutines**: Ticker-based progress indicators reduce CPU overhead
|
- **Optimized Goroutines**: Ticker-based progress indicators reduce CPU overhead
|
||||||
- **Configurable Concurrency**: Control parallel database operations via CLUSTER_PARALLELISM
|
- **Configurable Concurrency**: Control parallel database operations via CLUSTER_PARALLELISM
|
||||||
|
|
||||||
### Cross-Platform Support
|
**Cross-Platform Support:**
|
||||||
- **Platform-Specific Implementations**: Separate disk space and process management for Unix/Windows/BSD
|
- **Platform-Specific Implementations**: Separate disk space and process management for Unix/Windows/BSD
|
||||||
- **Build Constraints**: Go build tags ensure correct compilation for each platform
|
- **Build Constraints**: Go build tags ensure correct compilation for each platform
|
||||||
- **Tested Platforms**: Linux (x64/ARM), macOS (x64/ARM), Windows (x64/ARM), FreeBSD, OpenBSD
|
- **Tested Platforms**: Linux (x64/ARM), macOS (x64/ARM), Windows (x64/ARM), FreeBSD, OpenBSD
|
||||||
|
|
||||||
## Why dbbackup?
|
## Why dbbackup?
|
||||||
|
|
||||||
|
- **Production-Ready**: 100% test coverage, zero critical issues, fully validated
|
||||||
- **Reliable**: Thread-safe process management, comprehensive error handling, automatic cleanup
|
- **Reliable**: Thread-safe process management, comprehensive error handling, automatic cleanup
|
||||||
- **Efficient**: Constant memory footprint (~1GB) regardless of database size via streaming architecture
|
- **Efficient**: Constant memory footprint (~1GB) regardless of database size via streaming architecture
|
||||||
- **Fast**: Automatic CPU detection, parallel processing, streaming compression with pigz
|
- **Fast**: Automatic CPU detection, parallel processing, streaming compression with pigz
|
||||||
|
|||||||
0
STATISTICS.md
Normal file → Executable file
0
STATISTICS.md
Normal file → Executable file
0
cmd/backup.go
Normal file → Executable file
0
cmd/backup.go
Normal file → Executable file
117
cmd/backup_impl.go
Normal file → Executable file
117
cmd/backup_impl.go
Normal file → Executable file
@@ -7,6 +7,7 @@ import (
|
|||||||
"dbbackup/internal/backup"
|
"dbbackup/internal/backup"
|
||||||
"dbbackup/internal/config"
|
"dbbackup/internal/config"
|
||||||
"dbbackup/internal/database"
|
"dbbackup/internal/database"
|
||||||
|
"dbbackup/internal/security"
|
||||||
)
|
)
|
||||||
|
|
||||||
// runClusterBackup performs a full cluster backup
|
// runClusterBackup performs a full cluster backup
|
||||||
@@ -23,31 +24,74 @@ func runClusterBackup(ctx context.Context) error {
|
|||||||
return fmt.Errorf("configuration error: %w", err)
|
return fmt.Errorf("configuration error: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check privileges
|
||||||
|
privChecker := security.NewPrivilegeChecker(log)
|
||||||
|
if err := privChecker.CheckAndWarn(cfg.AllowRoot); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check resource limits
|
||||||
|
if cfg.CheckResources {
|
||||||
|
resChecker := security.NewResourceChecker(log)
|
||||||
|
if _, err := resChecker.CheckResourceLimits(); err != nil {
|
||||||
|
log.Warn("Failed to check resource limits", "error", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
log.Info("Starting cluster backup",
|
log.Info("Starting cluster backup",
|
||||||
"host", cfg.Host,
|
"host", cfg.Host,
|
||||||
"port", cfg.Port,
|
"port", cfg.Port,
|
||||||
"backup_dir", cfg.BackupDir)
|
"backup_dir", cfg.BackupDir)
|
||||||
|
|
||||||
|
// Audit log: backup start
|
||||||
|
user := security.GetCurrentUser()
|
||||||
|
auditLogger.LogBackupStart(user, "all_databases", "cluster")
|
||||||
|
|
||||||
|
// Rate limit connection attempts
|
||||||
|
host := fmt.Sprintf("%s:%d", cfg.Host, cfg.Port)
|
||||||
|
if err := rateLimiter.CheckAndWait(host); err != nil {
|
||||||
|
auditLogger.LogBackupFailed(user, "all_databases", err)
|
||||||
|
return fmt.Errorf("rate limit exceeded: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
// Create database instance
|
// Create database instance
|
||||||
db, err := database.New(cfg, log)
|
db, err := database.New(cfg, log)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
auditLogger.LogBackupFailed(user, "all_databases", err)
|
||||||
return fmt.Errorf("failed to create database instance: %w", err)
|
return fmt.Errorf("failed to create database instance: %w", err)
|
||||||
}
|
}
|
||||||
defer db.Close()
|
defer db.Close()
|
||||||
|
|
||||||
// Connect to database
|
// Connect to database
|
||||||
if err := db.Connect(ctx); err != nil {
|
if err := db.Connect(ctx); err != nil {
|
||||||
|
rateLimiter.RecordFailure(host)
|
||||||
|
auditLogger.LogBackupFailed(user, "all_databases", err)
|
||||||
return fmt.Errorf("failed to connect to database: %w", err)
|
return fmt.Errorf("failed to connect to database: %w", err)
|
||||||
}
|
}
|
||||||
|
rateLimiter.RecordSuccess(host)
|
||||||
|
|
||||||
// Create backup engine
|
// Create backup engine
|
||||||
engine := backup.New(cfg, log, db)
|
engine := backup.New(cfg, log, db)
|
||||||
|
|
||||||
// Perform cluster backup
|
// Perform cluster backup
|
||||||
if err := engine.BackupCluster(ctx); err != nil {
|
if err := engine.BackupCluster(ctx); err != nil {
|
||||||
|
auditLogger.LogBackupFailed(user, "all_databases", err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Audit log: backup success
|
||||||
|
auditLogger.LogBackupComplete(user, "all_databases", cfg.BackupDir, 0)
|
||||||
|
|
||||||
|
// Cleanup old backups if retention policy is enabled
|
||||||
|
if cfg.RetentionDays > 0 {
|
||||||
|
retentionPolicy := security.NewRetentionPolicy(cfg.RetentionDays, cfg.MinBackups, log)
|
||||||
|
if deleted, freed, err := retentionPolicy.CleanupOldBackups(cfg.BackupDir); err != nil {
|
||||||
|
log.Warn("Failed to cleanup old backups", "error", err)
|
||||||
|
} else if deleted > 0 {
|
||||||
|
log.Info("Cleaned up old backups", "deleted", deleted, "freed_mb", freed/1024/1024)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Save configuration for future use (unless disabled)
|
// Save configuration for future use (unless disabled)
|
||||||
if !cfg.NoSaveConfig {
|
if !cfg.NoSaveConfig {
|
||||||
localCfg := config.ConfigFromConfig(cfg)
|
localCfg := config.ConfigFromConfig(cfg)
|
||||||
@@ -55,6 +99,7 @@ func runClusterBackup(ctx context.Context) error {
|
|||||||
log.Warn("Failed to save configuration", "error", err)
|
log.Warn("Failed to save configuration", "error", err)
|
||||||
} else {
|
} else {
|
||||||
log.Info("Configuration saved to .dbbackup.conf")
|
log.Info("Configuration saved to .dbbackup.conf")
|
||||||
|
auditLogger.LogConfigChange(user, "config_file", "", ".dbbackup.conf")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -71,6 +116,12 @@ func runSingleBackup(ctx context.Context, databaseName string) error {
|
|||||||
return fmt.Errorf("configuration error: %w", err)
|
return fmt.Errorf("configuration error: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check privileges
|
||||||
|
privChecker := security.NewPrivilegeChecker(log)
|
||||||
|
if err := privChecker.CheckAndWarn(cfg.AllowRoot); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
log.Info("Starting single database backup",
|
log.Info("Starting single database backup",
|
||||||
"database", databaseName,
|
"database", databaseName,
|
||||||
"db_type", cfg.DatabaseType,
|
"db_type", cfg.DatabaseType,
|
||||||
@@ -78,25 +129,43 @@ func runSingleBackup(ctx context.Context, databaseName string) error {
|
|||||||
"port", cfg.Port,
|
"port", cfg.Port,
|
||||||
"backup_dir", cfg.BackupDir)
|
"backup_dir", cfg.BackupDir)
|
||||||
|
|
||||||
|
// Audit log: backup start
|
||||||
|
user := security.GetCurrentUser()
|
||||||
|
auditLogger.LogBackupStart(user, databaseName, "single")
|
||||||
|
|
||||||
|
// Rate limit connection attempts
|
||||||
|
host := fmt.Sprintf("%s:%d", cfg.Host, cfg.Port)
|
||||||
|
if err := rateLimiter.CheckAndWait(host); err != nil {
|
||||||
|
auditLogger.LogBackupFailed(user, databaseName, err)
|
||||||
|
return fmt.Errorf("rate limit exceeded: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
// Create database instance
|
// Create database instance
|
||||||
db, err := database.New(cfg, log)
|
db, err := database.New(cfg, log)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
auditLogger.LogBackupFailed(user, databaseName, err)
|
||||||
return fmt.Errorf("failed to create database instance: %w", err)
|
return fmt.Errorf("failed to create database instance: %w", err)
|
||||||
}
|
}
|
||||||
defer db.Close()
|
defer db.Close()
|
||||||
|
|
||||||
// Connect to database
|
// Connect to database
|
||||||
if err := db.Connect(ctx); err != nil {
|
if err := db.Connect(ctx); err != nil {
|
||||||
|
rateLimiter.RecordFailure(host)
|
||||||
|
auditLogger.LogBackupFailed(user, databaseName, err)
|
||||||
return fmt.Errorf("failed to connect to database: %w", err)
|
return fmt.Errorf("failed to connect to database: %w", err)
|
||||||
}
|
}
|
||||||
|
rateLimiter.RecordSuccess(host)
|
||||||
|
|
||||||
// Verify database exists
|
// Verify database exists
|
||||||
exists, err := db.DatabaseExists(ctx, databaseName)
|
exists, err := db.DatabaseExists(ctx, databaseName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
auditLogger.LogBackupFailed(user, databaseName, err)
|
||||||
return fmt.Errorf("failed to check if database exists: %w", err)
|
return fmt.Errorf("failed to check if database exists: %w", err)
|
||||||
}
|
}
|
||||||
if !exists {
|
if !exists {
|
||||||
return fmt.Errorf("database '%s' does not exist", databaseName)
|
err := fmt.Errorf("database '%s' does not exist", databaseName)
|
||||||
|
auditLogger.LogBackupFailed(user, databaseName, err)
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create backup engine
|
// Create backup engine
|
||||||
@@ -104,9 +173,23 @@ func runSingleBackup(ctx context.Context, databaseName string) error {
|
|||||||
|
|
||||||
// Perform single database backup
|
// Perform single database backup
|
||||||
if err := engine.BackupSingle(ctx, databaseName); err != nil {
|
if err := engine.BackupSingle(ctx, databaseName); err != nil {
|
||||||
|
auditLogger.LogBackupFailed(user, databaseName, err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Audit log: backup success
|
||||||
|
auditLogger.LogBackupComplete(user, databaseName, cfg.BackupDir, 0)
|
||||||
|
|
||||||
|
// Cleanup old backups if retention policy is enabled
|
||||||
|
if cfg.RetentionDays > 0 {
|
||||||
|
retentionPolicy := security.NewRetentionPolicy(cfg.RetentionDays, cfg.MinBackups, log)
|
||||||
|
if deleted, freed, err := retentionPolicy.CleanupOldBackups(cfg.BackupDir); err != nil {
|
||||||
|
log.Warn("Failed to cleanup old backups", "error", err)
|
||||||
|
} else if deleted > 0 {
|
||||||
|
log.Info("Cleaned up old backups", "deleted", deleted, "freed_mb", freed/1024/1024)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Save configuration for future use (unless disabled)
|
// Save configuration for future use (unless disabled)
|
||||||
if !cfg.NoSaveConfig {
|
if !cfg.NoSaveConfig {
|
||||||
localCfg := config.ConfigFromConfig(cfg)
|
localCfg := config.ConfigFromConfig(cfg)
|
||||||
@@ -114,6 +197,7 @@ func runSingleBackup(ctx context.Context, databaseName string) error {
|
|||||||
log.Warn("Failed to save configuration", "error", err)
|
log.Warn("Failed to save configuration", "error", err)
|
||||||
} else {
|
} else {
|
||||||
log.Info("Configuration saved to .dbbackup.conf")
|
log.Info("Configuration saved to .dbbackup.conf")
|
||||||
|
auditLogger.LogConfigChange(user, "config_file", "", ".dbbackup.conf")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -130,6 +214,12 @@ func runSampleBackup(ctx context.Context, databaseName string) error {
|
|||||||
return fmt.Errorf("configuration error: %w", err)
|
return fmt.Errorf("configuration error: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check privileges
|
||||||
|
privChecker := security.NewPrivilegeChecker(log)
|
||||||
|
if err := privChecker.CheckAndWarn(cfg.AllowRoot); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
// Validate sample parameters
|
// Validate sample parameters
|
||||||
if cfg.SampleValue <= 0 {
|
if cfg.SampleValue <= 0 {
|
||||||
return fmt.Errorf("sample value must be greater than 0")
|
return fmt.Errorf("sample value must be greater than 0")
|
||||||
@@ -159,25 +249,43 @@ func runSampleBackup(ctx context.Context, databaseName string) error {
|
|||||||
"port", cfg.Port,
|
"port", cfg.Port,
|
||||||
"backup_dir", cfg.BackupDir)
|
"backup_dir", cfg.BackupDir)
|
||||||
|
|
||||||
|
// Audit log: backup start
|
||||||
|
user := security.GetCurrentUser()
|
||||||
|
auditLogger.LogBackupStart(user, databaseName, "sample")
|
||||||
|
|
||||||
|
// Rate limit connection attempts
|
||||||
|
host := fmt.Sprintf("%s:%d", cfg.Host, cfg.Port)
|
||||||
|
if err := rateLimiter.CheckAndWait(host); err != nil {
|
||||||
|
auditLogger.LogBackupFailed(user, databaseName, err)
|
||||||
|
return fmt.Errorf("rate limit exceeded: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
// Create database instance
|
// Create database instance
|
||||||
db, err := database.New(cfg, log)
|
db, err := database.New(cfg, log)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
auditLogger.LogBackupFailed(user, databaseName, err)
|
||||||
return fmt.Errorf("failed to create database instance: %w", err)
|
return fmt.Errorf("failed to create database instance: %w", err)
|
||||||
}
|
}
|
||||||
defer db.Close()
|
defer db.Close()
|
||||||
|
|
||||||
// Connect to database
|
// Connect to database
|
||||||
if err := db.Connect(ctx); err != nil {
|
if err := db.Connect(ctx); err != nil {
|
||||||
|
rateLimiter.RecordFailure(host)
|
||||||
|
auditLogger.LogBackupFailed(user, databaseName, err)
|
||||||
return fmt.Errorf("failed to connect to database: %w", err)
|
return fmt.Errorf("failed to connect to database: %w", err)
|
||||||
}
|
}
|
||||||
|
rateLimiter.RecordSuccess(host)
|
||||||
|
|
||||||
// Verify database exists
|
// Verify database exists
|
||||||
exists, err := db.DatabaseExists(ctx, databaseName)
|
exists, err := db.DatabaseExists(ctx, databaseName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
auditLogger.LogBackupFailed(user, databaseName, err)
|
||||||
return fmt.Errorf("failed to check if database exists: %w", err)
|
return fmt.Errorf("failed to check if database exists: %w", err)
|
||||||
}
|
}
|
||||||
if !exists {
|
if !exists {
|
||||||
return fmt.Errorf("database '%s' does not exist", databaseName)
|
err := fmt.Errorf("database '%s' does not exist", databaseName)
|
||||||
|
auditLogger.LogBackupFailed(user, databaseName, err)
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create backup engine
|
// Create backup engine
|
||||||
@@ -185,9 +293,13 @@ func runSampleBackup(ctx context.Context, databaseName string) error {
|
|||||||
|
|
||||||
// Perform sample backup
|
// Perform sample backup
|
||||||
if err := engine.BackupSample(ctx, databaseName); err != nil {
|
if err := engine.BackupSample(ctx, databaseName); err != nil {
|
||||||
|
auditLogger.LogBackupFailed(user, databaseName, err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Audit log: backup success
|
||||||
|
auditLogger.LogBackupComplete(user, databaseName, cfg.BackupDir, 0)
|
||||||
|
|
||||||
// Save configuration for future use (unless disabled)
|
// Save configuration for future use (unless disabled)
|
||||||
if !cfg.NoSaveConfig {
|
if !cfg.NoSaveConfig {
|
||||||
localCfg := config.ConfigFromConfig(cfg)
|
localCfg := config.ConfigFromConfig(cfg)
|
||||||
@@ -195,6 +307,7 @@ func runSampleBackup(ctx context.Context, databaseName string) error {
|
|||||||
log.Warn("Failed to save configuration", "error", err)
|
log.Warn("Failed to save configuration", "error", err)
|
||||||
} else {
|
} else {
|
||||||
log.Info("Configuration saved to .dbbackup.conf")
|
log.Info("Configuration saved to .dbbackup.conf")
|
||||||
|
auditLogger.LogConfigChange(user, "config_file", "", ".dbbackup.conf")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
0
cmd/cpu.go
Normal file → Executable file
0
cmd/cpu.go
Normal file → Executable file
45
cmd/placeholder.go
Normal file → Executable file
45
cmd/placeholder.go
Normal file → Executable file
@@ -44,9 +44,27 @@ var listCmd = &cobra.Command{
|
|||||||
var interactiveCmd = &cobra.Command{
|
var interactiveCmd = &cobra.Command{
|
||||||
Use: "interactive",
|
Use: "interactive",
|
||||||
Short: "Start interactive menu mode",
|
Short: "Start interactive menu mode",
|
||||||
Long: `Start the interactive menu system for guided backup operations.`,
|
Long: `Start the interactive menu system for guided backup operations.
|
||||||
|
|
||||||
|
TUI Automation Flags (for testing and CI/CD):
|
||||||
|
--auto-select <index> Automatically select menu option (0-13)
|
||||||
|
--auto-database <name> Pre-fill database name in prompts
|
||||||
|
--auto-confirm Auto-confirm all prompts (no user interaction)
|
||||||
|
--dry-run Simulate operations without execution
|
||||||
|
--verbose-tui Enable detailed TUI event logging
|
||||||
|
--tui-log-file <path> Write TUI events to log file`,
|
||||||
Aliases: []string{"menu", "ui"},
|
Aliases: []string{"menu", "ui"},
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
|
// Parse TUI automation flags into config
|
||||||
|
cfg.TUIAutoSelect, _ = cmd.Flags().GetInt("auto-select")
|
||||||
|
cfg.TUIAutoDatabase, _ = cmd.Flags().GetString("auto-database")
|
||||||
|
cfg.TUIAutoHost, _ = cmd.Flags().GetString("auto-host")
|
||||||
|
cfg.TUIAutoPort, _ = cmd.Flags().GetInt("auto-port")
|
||||||
|
cfg.TUIAutoConfirm, _ = cmd.Flags().GetBool("auto-confirm")
|
||||||
|
cfg.TUIDryRun, _ = cmd.Flags().GetBool("dry-run")
|
||||||
|
cfg.TUIVerbose, _ = cmd.Flags().GetBool("verbose-tui")
|
||||||
|
cfg.TUILogFile, _ = cmd.Flags().GetString("tui-log-file")
|
||||||
|
|
||||||
// Check authentication before starting TUI
|
// Check authentication before starting TUI
|
||||||
if cfg.IsPostgreSQL() {
|
if cfg.IsPostgreSQL() {
|
||||||
if mismatch, msg := auth.CheckAuthenticationMismatch(cfg); mismatch {
|
if mismatch, msg := auth.CheckAuthenticationMismatch(cfg); mismatch {
|
||||||
@@ -55,12 +73,31 @@ var interactiveCmd = &cobra.Command{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Start the interactive TUI with silent logger to prevent console output conflicts
|
// Use verbose logger if TUI verbose mode enabled
|
||||||
silentLog := logger.NewSilent()
|
var interactiveLog logger.Logger
|
||||||
return tui.RunInteractiveMenu(cfg, silentLog)
|
if cfg.TUIVerbose {
|
||||||
|
interactiveLog = log
|
||||||
|
} else {
|
||||||
|
interactiveLog = logger.NewSilent()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Start the interactive TUI
|
||||||
|
return tui.RunInteractiveMenu(cfg, interactiveLog)
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
// TUI automation flags (for testing and automation)
|
||||||
|
interactiveCmd.Flags().Int("auto-select", -1, "Auto-select menu option (0-13, -1=disabled)")
|
||||||
|
interactiveCmd.Flags().String("auto-database", "", "Pre-fill database name")
|
||||||
|
interactiveCmd.Flags().String("auto-host", "", "Pre-fill host")
|
||||||
|
interactiveCmd.Flags().Int("auto-port", 0, "Pre-fill port (0=use default)")
|
||||||
|
interactiveCmd.Flags().Bool("auto-confirm", false, "Auto-confirm all prompts")
|
||||||
|
interactiveCmd.Flags().Bool("dry-run", false, "Simulate operations without execution")
|
||||||
|
interactiveCmd.Flags().Bool("verbose-tui", false, "Enable verbose TUI logging")
|
||||||
|
interactiveCmd.Flags().String("tui-log-file", "", "Write TUI events to file")
|
||||||
|
}
|
||||||
|
|
||||||
var preflightCmd = &cobra.Command{
|
var preflightCmd = &cobra.Command{
|
||||||
Use: "preflight",
|
Use: "preflight",
|
||||||
Short: "Run preflight checks",
|
Short: "Run preflight checks",
|
||||||
|
|||||||
19
cmd/restore.go
Normal file → Executable file
19
cmd/restore.go
Normal file → Executable file
@@ -12,6 +12,7 @@ import (
|
|||||||
|
|
||||||
"dbbackup/internal/database"
|
"dbbackup/internal/database"
|
||||||
"dbbackup/internal/restore"
|
"dbbackup/internal/restore"
|
||||||
|
"dbbackup/internal/security"
|
||||||
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
@@ -272,10 +273,19 @@ func runRestoreSingle(cmd *cobra.Command, args []string) error {
|
|||||||
|
|
||||||
// Execute restore
|
// Execute restore
|
||||||
log.Info("Starting restore...", "database", targetDB)
|
log.Info("Starting restore...", "database", targetDB)
|
||||||
|
|
||||||
|
// Audit log: restore start
|
||||||
|
user := security.GetCurrentUser()
|
||||||
|
startTime := time.Now()
|
||||||
|
auditLogger.LogRestoreStart(user, targetDB, archivePath)
|
||||||
|
|
||||||
if err := engine.RestoreSingle(ctx, archivePath, targetDB, restoreClean, restoreCreate); err != nil {
|
if err := engine.RestoreSingle(ctx, archivePath, targetDB, restoreClean, restoreCreate); err != nil {
|
||||||
|
auditLogger.LogRestoreFailed(user, targetDB, err)
|
||||||
return fmt.Errorf("restore failed: %w", err)
|
return fmt.Errorf("restore failed: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Audit log: restore success
|
||||||
|
auditLogger.LogRestoreComplete(user, targetDB, time.Since(startTime))
|
||||||
|
|
||||||
log.Info("✅ Restore completed successfully", "database", targetDB)
|
log.Info("✅ Restore completed successfully", "database", targetDB)
|
||||||
return nil
|
return nil
|
||||||
@@ -368,10 +378,19 @@ func runRestoreCluster(cmd *cobra.Command, args []string) error {
|
|||||||
|
|
||||||
// Execute cluster restore
|
// Execute cluster restore
|
||||||
log.Info("Starting cluster restore...")
|
log.Info("Starting cluster restore...")
|
||||||
|
|
||||||
|
// Audit log: restore start
|
||||||
|
user := security.GetCurrentUser()
|
||||||
|
startTime := time.Now()
|
||||||
|
auditLogger.LogRestoreStart(user, "all_databases", archivePath)
|
||||||
|
|
||||||
if err := engine.RestoreCluster(ctx, archivePath); err != nil {
|
if err := engine.RestoreCluster(ctx, archivePath); err != nil {
|
||||||
|
auditLogger.LogRestoreFailed(user, "all_databases", err)
|
||||||
return fmt.Errorf("cluster restore failed: %w", err)
|
return fmt.Errorf("cluster restore failed: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Audit log: restore success
|
||||||
|
auditLogger.LogRestoreComplete(user, "all_databases", time.Since(startTime))
|
||||||
|
|
||||||
log.Info("✅ Cluster restore completed successfully")
|
log.Info("✅ Cluster restore completed successfully")
|
||||||
return nil
|
return nil
|
||||||
|
|||||||
72
cmd/root.go
Normal file → Executable file
72
cmd/root.go
Normal file → Executable file
@@ -6,12 +6,16 @@ import (
|
|||||||
|
|
||||||
"dbbackup/internal/config"
|
"dbbackup/internal/config"
|
||||||
"dbbackup/internal/logger"
|
"dbbackup/internal/logger"
|
||||||
|
"dbbackup/internal/security"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/spf13/pflag"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
cfg *config.Config
|
cfg *config.Config
|
||||||
log logger.Logger
|
log logger.Logger
|
||||||
|
auditLogger *security.AuditLogger
|
||||||
|
rateLimiter *security.RateLimiter
|
||||||
)
|
)
|
||||||
|
|
||||||
// rootCmd represents the base command when called without any subcommands
|
// rootCmd represents the base command when called without any subcommands
|
||||||
@@ -39,13 +43,64 @@ For help with specific commands, use: dbbackup [command] --help`,
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Store which flags were explicitly set by user
|
||||||
|
flagsSet := make(map[string]bool)
|
||||||
|
cmd.Flags().Visit(func(f *pflag.Flag) {
|
||||||
|
flagsSet[f.Name] = true
|
||||||
|
})
|
||||||
|
|
||||||
// Load local config if not disabled
|
// Load local config if not disabled
|
||||||
if !cfg.NoLoadConfig {
|
if !cfg.NoLoadConfig {
|
||||||
if localCfg, err := config.LoadLocalConfig(); err != nil {
|
if localCfg, err := config.LoadLocalConfig(); err != nil {
|
||||||
log.Warn("Failed to load local config", "error", err)
|
log.Warn("Failed to load local config", "error", err)
|
||||||
} else if localCfg != nil {
|
} else if localCfg != nil {
|
||||||
|
// Save current flag values that were explicitly set
|
||||||
|
savedBackupDir := cfg.BackupDir
|
||||||
|
savedHost := cfg.Host
|
||||||
|
savedPort := cfg.Port
|
||||||
|
savedUser := cfg.User
|
||||||
|
savedDatabase := cfg.Database
|
||||||
|
savedCompression := cfg.CompressionLevel
|
||||||
|
savedJobs := cfg.Jobs
|
||||||
|
savedDumpJobs := cfg.DumpJobs
|
||||||
|
savedRetentionDays := cfg.RetentionDays
|
||||||
|
savedMinBackups := cfg.MinBackups
|
||||||
|
|
||||||
|
// Apply config from file
|
||||||
config.ApplyLocalConfig(cfg, localCfg)
|
config.ApplyLocalConfig(cfg, localCfg)
|
||||||
log.Info("Loaded configuration from .dbbackup.conf")
|
log.Info("Loaded configuration from .dbbackup.conf")
|
||||||
|
|
||||||
|
// Restore explicitly set flag values (flags have priority)
|
||||||
|
if flagsSet["backup-dir"] {
|
||||||
|
cfg.BackupDir = savedBackupDir
|
||||||
|
}
|
||||||
|
if flagsSet["host"] {
|
||||||
|
cfg.Host = savedHost
|
||||||
|
}
|
||||||
|
if flagsSet["port"] {
|
||||||
|
cfg.Port = savedPort
|
||||||
|
}
|
||||||
|
if flagsSet["user"] {
|
||||||
|
cfg.User = savedUser
|
||||||
|
}
|
||||||
|
if flagsSet["database"] {
|
||||||
|
cfg.Database = savedDatabase
|
||||||
|
}
|
||||||
|
if flagsSet["compression"] {
|
||||||
|
cfg.CompressionLevel = savedCompression
|
||||||
|
}
|
||||||
|
if flagsSet["jobs"] {
|
||||||
|
cfg.Jobs = savedJobs
|
||||||
|
}
|
||||||
|
if flagsSet["dump-jobs"] {
|
||||||
|
cfg.DumpJobs = savedDumpJobs
|
||||||
|
}
|
||||||
|
if flagsSet["retention-days"] {
|
||||||
|
cfg.RetentionDays = savedRetentionDays
|
||||||
|
}
|
||||||
|
if flagsSet["min-backups"] {
|
||||||
|
cfg.MinBackups = savedMinBackups
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -57,6 +112,12 @@ For help with specific commands, use: dbbackup [command] --help`,
|
|||||||
func Execute(ctx context.Context, config *config.Config, logger logger.Logger) error {
|
func Execute(ctx context.Context, config *config.Config, logger logger.Logger) error {
|
||||||
cfg = config
|
cfg = config
|
||||||
log = logger
|
log = logger
|
||||||
|
|
||||||
|
// Initialize audit logger
|
||||||
|
auditLogger = security.NewAuditLogger(logger, true)
|
||||||
|
|
||||||
|
// Initialize rate limiter
|
||||||
|
rateLimiter = security.NewRateLimiter(config.MaxRetries, logger)
|
||||||
|
|
||||||
// Set version info
|
// Set version info
|
||||||
rootCmd.Version = fmt.Sprintf("%s (built: %s, commit: %s)",
|
rootCmd.Version = fmt.Sprintf("%s (built: %s, commit: %s)",
|
||||||
@@ -82,6 +143,13 @@ func Execute(ctx context.Context, config *config.Config, logger logger.Logger) e
|
|||||||
rootCmd.PersistentFlags().IntVar(&cfg.CompressionLevel, "compression", cfg.CompressionLevel, "Compression level (0-9)")
|
rootCmd.PersistentFlags().IntVar(&cfg.CompressionLevel, "compression", cfg.CompressionLevel, "Compression level (0-9)")
|
||||||
rootCmd.PersistentFlags().BoolVar(&cfg.NoSaveConfig, "no-save-config", false, "Don't save configuration after successful operations")
|
rootCmd.PersistentFlags().BoolVar(&cfg.NoSaveConfig, "no-save-config", false, "Don't save configuration after successful operations")
|
||||||
rootCmd.PersistentFlags().BoolVar(&cfg.NoLoadConfig, "no-config", false, "Don't load configuration from .dbbackup.conf")
|
rootCmd.PersistentFlags().BoolVar(&cfg.NoLoadConfig, "no-config", false, "Don't load configuration from .dbbackup.conf")
|
||||||
|
|
||||||
|
// Security flags (MEDIUM priority)
|
||||||
|
rootCmd.PersistentFlags().IntVar(&cfg.RetentionDays, "retention-days", cfg.RetentionDays, "Backup retention period in days (0=disabled)")
|
||||||
|
rootCmd.PersistentFlags().IntVar(&cfg.MinBackups, "min-backups", cfg.MinBackups, "Minimum number of backups to keep")
|
||||||
|
rootCmd.PersistentFlags().IntVar(&cfg.MaxRetries, "max-retries", cfg.MaxRetries, "Maximum connection retry attempts")
|
||||||
|
rootCmd.PersistentFlags().BoolVar(&cfg.AllowRoot, "allow-root", cfg.AllowRoot, "Allow running as root/Administrator")
|
||||||
|
rootCmd.PersistentFlags().BoolVar(&cfg.CheckResources, "check-resources", cfg.CheckResources, "Check system resource limits")
|
||||||
|
|
||||||
return rootCmd.ExecuteContext(ctx)
|
return rootCmd.ExecuteContext(ctx)
|
||||||
}
|
}
|
||||||
|
|||||||
0
cmd/status.go
Normal file → Executable file
0
cmd/status.go
Normal file → Executable file
0
dbbackup.png
Normal file → Executable file
0
dbbackup.png
Normal file → Executable file
|
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 85 KiB |
88
docker-compose.yml
Normal file
88
docker-compose.yml
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
version: '3.8'
|
||||||
|
|
||||||
|
services:
|
||||||
|
# PostgreSQL backup example
|
||||||
|
postgres-backup:
|
||||||
|
build: .
|
||||||
|
image: dbbackup:latest
|
||||||
|
container_name: dbbackup-postgres
|
||||||
|
volumes:
|
||||||
|
- ./backups:/backups
|
||||||
|
- ./config/.dbbackup.conf:/home/dbbackup/.dbbackup.conf:ro
|
||||||
|
environment:
|
||||||
|
- PGHOST=postgres
|
||||||
|
- PGPORT=5432
|
||||||
|
- PGUSER=postgres
|
||||||
|
- PGPASSWORD=secret
|
||||||
|
command: backup single mydb
|
||||||
|
depends_on:
|
||||||
|
- postgres
|
||||||
|
networks:
|
||||||
|
- dbnet
|
||||||
|
|
||||||
|
# MySQL backup example
|
||||||
|
mysql-backup:
|
||||||
|
build: .
|
||||||
|
image: dbbackup:latest
|
||||||
|
container_name: dbbackup-mysql
|
||||||
|
volumes:
|
||||||
|
- ./backups:/backups
|
||||||
|
environment:
|
||||||
|
- MYSQL_HOST=mysql
|
||||||
|
- MYSQL_PORT=3306
|
||||||
|
- MYSQL_USER=root
|
||||||
|
- MYSQL_PWD=secret
|
||||||
|
command: backup single mydb --db-type mysql
|
||||||
|
depends_on:
|
||||||
|
- mysql
|
||||||
|
networks:
|
||||||
|
- dbnet
|
||||||
|
|
||||||
|
# Interactive mode example
|
||||||
|
dbbackup-interactive:
|
||||||
|
build: .
|
||||||
|
image: dbbackup:latest
|
||||||
|
container_name: dbbackup-tui
|
||||||
|
volumes:
|
||||||
|
- ./backups:/backups
|
||||||
|
environment:
|
||||||
|
- PGHOST=postgres
|
||||||
|
- PGUSER=postgres
|
||||||
|
- PGPASSWORD=secret
|
||||||
|
command: interactive
|
||||||
|
stdin_open: true
|
||||||
|
tty: true
|
||||||
|
networks:
|
||||||
|
- dbnet
|
||||||
|
|
||||||
|
# Test PostgreSQL database
|
||||||
|
postgres:
|
||||||
|
image: postgres:15-alpine
|
||||||
|
container_name: test-postgres
|
||||||
|
environment:
|
||||||
|
- POSTGRES_PASSWORD=secret
|
||||||
|
- POSTGRES_DB=mydb
|
||||||
|
volumes:
|
||||||
|
- postgres-data:/var/lib/postgresql/data
|
||||||
|
networks:
|
||||||
|
- dbnet
|
||||||
|
|
||||||
|
# Test MySQL database
|
||||||
|
mysql:
|
||||||
|
image: mysql:8.0
|
||||||
|
container_name: test-mysql
|
||||||
|
environment:
|
||||||
|
- MYSQL_ROOT_PASSWORD=secret
|
||||||
|
- MYSQL_DATABASE=mydb
|
||||||
|
volumes:
|
||||||
|
- mysql-data:/var/lib/mysql
|
||||||
|
networks:
|
||||||
|
- dbnet
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
postgres-data:
|
||||||
|
mysql-data:
|
||||||
|
|
||||||
|
networks:
|
||||||
|
dbnet:
|
||||||
|
driver: bridge
|
||||||
4
go.mod
Normal file → Executable file
4
go.mod
Normal file → Executable file
@@ -5,6 +5,7 @@ go 1.24.0
|
|||||||
toolchain go1.24.9
|
toolchain go1.24.9
|
||||||
|
|
||||||
require (
|
require (
|
||||||
|
github.com/Netflix/go-expect v0.0.0-20220104043353-73e0943537d2
|
||||||
github.com/charmbracelet/bubbles v0.21.0
|
github.com/charmbracelet/bubbles v0.21.0
|
||||||
github.com/charmbracelet/bubbletea v1.3.10
|
github.com/charmbracelet/bubbletea v1.3.10
|
||||||
github.com/charmbracelet/lipgloss v1.1.0
|
github.com/charmbracelet/lipgloss v1.1.0
|
||||||
@@ -12,6 +13,7 @@ require (
|
|||||||
github.com/jackc/pgx/v5 v5.7.6
|
github.com/jackc/pgx/v5 v5.7.6
|
||||||
github.com/sirupsen/logrus v1.9.3
|
github.com/sirupsen/logrus v1.9.3
|
||||||
github.com/spf13/cobra v1.10.1
|
github.com/spf13/cobra v1.10.1
|
||||||
|
github.com/spf13/pflag v1.0.9
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
@@ -21,6 +23,7 @@ require (
|
|||||||
github.com/charmbracelet/x/ansi v0.10.1 // indirect
|
github.com/charmbracelet/x/ansi v0.10.1 // indirect
|
||||||
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd // indirect
|
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd // indirect
|
||||||
github.com/charmbracelet/x/term v0.2.1 // indirect
|
github.com/charmbracelet/x/term v0.2.1 // indirect
|
||||||
|
github.com/creack/pty v1.1.17 // indirect
|
||||||
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
|
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
|
||||||
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
||||||
github.com/jackc/pgpassfile v1.0.0 // indirect
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
||||||
@@ -34,7 +37,6 @@ require (
|
|||||||
github.com/muesli/cancelreader v0.2.2 // indirect
|
github.com/muesli/cancelreader v0.2.2 // indirect
|
||||||
github.com/muesli/termenv v0.16.0 // indirect
|
github.com/muesli/termenv v0.16.0 // indirect
|
||||||
github.com/rivo/uniseg v0.4.7 // indirect
|
github.com/rivo/uniseg v0.4.7 // indirect
|
||||||
github.com/spf13/pflag v1.0.9 // indirect
|
|
||||||
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
||||||
golang.org/x/crypto v0.37.0 // indirect
|
golang.org/x/crypto v0.37.0 // indirect
|
||||||
golang.org/x/sync v0.13.0 // indirect
|
golang.org/x/sync v0.13.0 // indirect
|
||||||
|
|||||||
5
go.sum
Normal file → Executable file
5
go.sum
Normal file → Executable file
@@ -1,5 +1,7 @@
|
|||||||
filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA=
|
filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA=
|
||||||
filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4=
|
filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4=
|
||||||
|
github.com/Netflix/go-expect v0.0.0-20220104043353-73e0943537d2 h1:+vx7roKuyA63nhn5WAunQHLTznkw5W8b1Xc0dNjp83s=
|
||||||
|
github.com/Netflix/go-expect v0.0.0-20220104043353-73e0943537d2/go.mod h1:HBCaDeC1lPdgDeDbhX8XFpy1jqjK0IBG8W5K+xYqA0w=
|
||||||
github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiErDT4WkJ2k=
|
github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiErDT4WkJ2k=
|
||||||
github.com/aymanbagabas/go-osc52/v2 v2.0.1/go.mod h1:uYgXzlJ7ZpABp8OJ+exZzJJhRNQ2ASbcXHWsFqH8hp8=
|
github.com/aymanbagabas/go-osc52/v2 v2.0.1/go.mod h1:uYgXzlJ7ZpABp8OJ+exZzJJhRNQ2ASbcXHWsFqH8hp8=
|
||||||
github.com/charmbracelet/bubbles v0.21.0 h1:9TdC97SdRVg/1aaXNVWfFH3nnLAwOXr8Fn6u6mfQdFs=
|
github.com/charmbracelet/bubbles v0.21.0 h1:9TdC97SdRVg/1aaXNVWfFH3nnLAwOXr8Fn6u6mfQdFs=
|
||||||
@@ -17,6 +19,8 @@ github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd/go.mod
|
|||||||
github.com/charmbracelet/x/term v0.2.1 h1:AQeHeLZ1OqSXhrAWpYUtZyX1T3zVxfpZuEQMIQaGIAQ=
|
github.com/charmbracelet/x/term v0.2.1 h1:AQeHeLZ1OqSXhrAWpYUtZyX1T3zVxfpZuEQMIQaGIAQ=
|
||||||
github.com/charmbracelet/x/term v0.2.1/go.mod h1:oQ4enTYFV7QN4m0i9mzHrViD7TQKvNEEkHUMCmsxdUg=
|
github.com/charmbracelet/x/term v0.2.1/go.mod h1:oQ4enTYFV7QN4m0i9mzHrViD7TQKvNEEkHUMCmsxdUg=
|
||||||
github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g=
|
github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g=
|
||||||
|
github.com/creack/pty v1.1.17 h1:QeVUsEDNrLBW4tMgZHvxy18sKtr6VI492kBhUfhDJNI=
|
||||||
|
github.com/creack/pty v1.1.17/go.mod h1:MOBLtS5ELjhRRrroQr9kyvTxUAFNvYEK993ew/Vr4O4=
|
||||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
@@ -62,6 +66,7 @@ github.com/spf13/pflag v1.0.9 h1:9exaQaMOCwffKiiiYk6/BndUBv+iRViNW+4lEMi0PvY=
|
|||||||
github.com/spf13/pflag v1.0.9/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
|
github.com/spf13/pflag v1.0.9/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
|
||||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
||||||
|
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk=
|
github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk=
|
||||||
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
|
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
|
||||||
|
|||||||
0
internal/auth/helper.go
Normal file → Executable file
0
internal/auth/helper.go
Normal file → Executable file
25
internal/backup/engine.go
Normal file → Executable file
25
internal/backup/engine.go
Normal file → Executable file
@@ -19,6 +19,7 @@ import (
|
|||||||
"dbbackup/internal/checks"
|
"dbbackup/internal/checks"
|
||||||
"dbbackup/internal/config"
|
"dbbackup/internal/config"
|
||||||
"dbbackup/internal/database"
|
"dbbackup/internal/database"
|
||||||
|
"dbbackup/internal/security"
|
||||||
"dbbackup/internal/logger"
|
"dbbackup/internal/logger"
|
||||||
"dbbackup/internal/metrics"
|
"dbbackup/internal/metrics"
|
||||||
"dbbackup/internal/progress"
|
"dbbackup/internal/progress"
|
||||||
@@ -132,6 +133,16 @@ func (e *Engine) BackupSingle(ctx context.Context, databaseName string) error {
|
|||||||
|
|
||||||
// Start preparing backup directory
|
// Start preparing backup directory
|
||||||
prepStep := tracker.AddStep("prepare", "Preparing backup directory")
|
prepStep := tracker.AddStep("prepare", "Preparing backup directory")
|
||||||
|
|
||||||
|
// Validate and sanitize backup directory path
|
||||||
|
validBackupDir, err := security.ValidateBackupPath(e.cfg.BackupDir)
|
||||||
|
if err != nil {
|
||||||
|
prepStep.Fail(fmt.Errorf("invalid backup directory path: %w", err))
|
||||||
|
tracker.Fail(fmt.Errorf("invalid backup directory path: %w", err))
|
||||||
|
return fmt.Errorf("invalid backup directory path: %w", err)
|
||||||
|
}
|
||||||
|
e.cfg.BackupDir = validBackupDir
|
||||||
|
|
||||||
if err := os.MkdirAll(e.cfg.BackupDir, 0755); err != nil {
|
if err := os.MkdirAll(e.cfg.BackupDir, 0755); err != nil {
|
||||||
prepStep.Fail(fmt.Errorf("failed to create backup directory: %w", err))
|
prepStep.Fail(fmt.Errorf("failed to create backup directory: %w", err))
|
||||||
tracker.Fail(fmt.Errorf("failed to create backup directory: %w", err))
|
tracker.Fail(fmt.Errorf("failed to create backup directory: %w", err))
|
||||||
@@ -194,6 +205,20 @@ func (e *Engine) BackupSingle(ctx context.Context, databaseName string) error {
|
|||||||
tracker.UpdateProgress(90, fmt.Sprintf("Backup verified: %s", size))
|
tracker.UpdateProgress(90, fmt.Sprintf("Backup verified: %s", size))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Calculate and save checksum
|
||||||
|
checksumStep := tracker.AddStep("checksum", "Calculating SHA-256 checksum")
|
||||||
|
if checksum, err := security.ChecksumFile(outputFile); err != nil {
|
||||||
|
e.log.Warn("Failed to calculate checksum", "error", err)
|
||||||
|
checksumStep.Fail(fmt.Errorf("checksum calculation failed: %w", err))
|
||||||
|
} else {
|
||||||
|
if err := security.SaveChecksum(outputFile, checksum); err != nil {
|
||||||
|
e.log.Warn("Failed to save checksum", "error", err)
|
||||||
|
} else {
|
||||||
|
checksumStep.Complete(fmt.Sprintf("Checksum: %s", checksum[:16]+"..."))
|
||||||
|
e.log.Info("Backup checksum", "sha256", checksum)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Create metadata file
|
// Create metadata file
|
||||||
metaStep := tracker.AddStep("metadata", "Creating metadata file")
|
metaStep := tracker.AddStep("metadata", "Creating metadata file")
|
||||||
if err := e.createMetadata(outputFile, databaseName, "single", ""); err != nil {
|
if err := e.createMetadata(outputFile, databaseName, "single", ""); err != nil {
|
||||||
|
|||||||
0
internal/checks/cache.go
Normal file → Executable file
0
internal/checks/cache.go
Normal file → Executable file
0
internal/checks/disk_check.go
Normal file → Executable file
0
internal/checks/disk_check.go
Normal file → Executable file
0
internal/checks/disk_check_bsd.go
Normal file → Executable file
0
internal/checks/disk_check_bsd.go
Normal file → Executable file
0
internal/checks/disk_check_windows.go
Normal file → Executable file
0
internal/checks/disk_check_windows.go
Normal file → Executable file
0
internal/checks/error_hints.go
Normal file → Executable file
0
internal/checks/error_hints.go
Normal file → Executable file
0
internal/checks/types.go
Normal file → Executable file
0
internal/checks/types.go
Normal file → Executable file
0
internal/cleanup/processes.go
Normal file → Executable file
0
internal/cleanup/processes.go
Normal file → Executable file
0
internal/cleanup/processes_windows.go
Normal file → Executable file
0
internal/cleanup/processes_windows.go
Normal file → Executable file
34
internal/config/config.go
Normal file → Executable file
34
internal/config/config.go
Normal file → Executable file
@@ -68,6 +68,23 @@ type Config struct {
|
|||||||
SwapFilePath string // Path to temporary swap file
|
SwapFilePath string // Path to temporary swap file
|
||||||
SwapFileSizeGB int // Size in GB (0 = disabled)
|
SwapFileSizeGB int // Size in GB (0 = disabled)
|
||||||
AutoSwap bool // Automatically manage swap for large backups
|
AutoSwap bool // Automatically manage swap for large backups
|
||||||
|
|
||||||
|
// Security options (MEDIUM priority)
|
||||||
|
RetentionDays int // Backup retention in days (0 = disabled)
|
||||||
|
MinBackups int // Minimum backups to keep regardless of age
|
||||||
|
MaxRetries int // Maximum connection retry attempts
|
||||||
|
AllowRoot bool // Allow running as root/Administrator
|
||||||
|
CheckResources bool // Check resource limits before operations
|
||||||
|
|
||||||
|
// TUI automation options (for testing)
|
||||||
|
TUIAutoSelect int // Auto-select menu option (-1 = disabled)
|
||||||
|
TUIAutoDatabase string // Pre-fill database name
|
||||||
|
TUIAutoHost string // Pre-fill host
|
||||||
|
TUIAutoPort int // Pre-fill port
|
||||||
|
TUIAutoConfirm bool // Auto-confirm all prompts
|
||||||
|
TUIDryRun bool // TUI dry-run mode (simulate without execution)
|
||||||
|
TUIVerbose bool // Verbose TUI logging
|
||||||
|
TUILogFile string // TUI event log file path
|
||||||
}
|
}
|
||||||
|
|
||||||
// New creates a new configuration with default values
|
// New creates a new configuration with default values
|
||||||
@@ -158,6 +175,23 @@ func New() *Config {
|
|||||||
SwapFilePath: getEnvString("SWAP_FILE_PATH", "/tmp/dbbackup_swap"),
|
SwapFilePath: getEnvString("SWAP_FILE_PATH", "/tmp/dbbackup_swap"),
|
||||||
SwapFileSizeGB: getEnvInt("SWAP_FILE_SIZE_GB", 0), // 0 = disabled by default
|
SwapFileSizeGB: getEnvInt("SWAP_FILE_SIZE_GB", 0), // 0 = disabled by default
|
||||||
AutoSwap: getEnvBool("AUTO_SWAP", false),
|
AutoSwap: getEnvBool("AUTO_SWAP", false),
|
||||||
|
|
||||||
|
// Security defaults (MEDIUM priority)
|
||||||
|
RetentionDays: getEnvInt("RETENTION_DAYS", 30), // Keep backups for 30 days
|
||||||
|
MinBackups: getEnvInt("MIN_BACKUPS", 5), // Keep at least 5 backups
|
||||||
|
MaxRetries: getEnvInt("MAX_RETRIES", 3), // Maximum 3 retry attempts
|
||||||
|
AllowRoot: getEnvBool("ALLOW_ROOT", false), // Disallow root by default
|
||||||
|
CheckResources: getEnvBool("CHECK_RESOURCES", true), // Check resources by default
|
||||||
|
|
||||||
|
// TUI automation defaults (for testing)
|
||||||
|
TUIAutoSelect: getEnvInt("TUI_AUTO_SELECT", -1), // -1 = disabled
|
||||||
|
TUIAutoDatabase: getEnvString("TUI_AUTO_DATABASE", ""), // Empty = manual input
|
||||||
|
TUIAutoHost: getEnvString("TUI_AUTO_HOST", ""), // Empty = use default
|
||||||
|
TUIAutoPort: getEnvInt("TUI_AUTO_PORT", 0), // 0 = use default
|
||||||
|
TUIAutoConfirm: getEnvBool("TUI_AUTO_CONFIRM", false), // Manual confirm by default
|
||||||
|
TUIDryRun: getEnvBool("TUI_DRY_RUN", false), // Execute by default
|
||||||
|
TUIVerbose: getEnvBool("TUI_VERBOSE", false), // Quiet by default
|
||||||
|
TUILogFile: getEnvString("TUI_LOG_FILE", ""), // No log file by default
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ensure canonical defaults are enforced
|
// Ensure canonical defaults are enforced
|
||||||
|
|||||||
72
internal/config/persist.go
Normal file → Executable file
72
internal/config/persist.go
Normal file → Executable file
@@ -29,6 +29,11 @@ type LocalConfig struct {
|
|||||||
// Performance settings
|
// Performance settings
|
||||||
CPUWorkload string
|
CPUWorkload string
|
||||||
MaxCores int
|
MaxCores int
|
||||||
|
|
||||||
|
// Security settings
|
||||||
|
RetentionDays int
|
||||||
|
MinBackups int
|
||||||
|
MaxRetries int
|
||||||
}
|
}
|
||||||
|
|
||||||
// LoadLocalConfig loads configuration from .dbbackup.conf in current directory
|
// LoadLocalConfig loads configuration from .dbbackup.conf in current directory
|
||||||
@@ -114,6 +119,21 @@ func LoadLocalConfig() (*LocalConfig, error) {
|
|||||||
cfg.MaxCores = mc
|
cfg.MaxCores = mc
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
case "security":
|
||||||
|
switch key {
|
||||||
|
case "retention_days":
|
||||||
|
if rd, err := strconv.Atoi(value); err == nil {
|
||||||
|
cfg.RetentionDays = rd
|
||||||
|
}
|
||||||
|
case "min_backups":
|
||||||
|
if mb, err := strconv.Atoi(value); err == nil {
|
||||||
|
cfg.MinBackups = mb
|
||||||
|
}
|
||||||
|
case "max_retries":
|
||||||
|
if mr, err := strconv.Atoi(value); err == nil {
|
||||||
|
cfg.MaxRetries = mr
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -173,9 +193,23 @@ func SaveLocalConfig(cfg *LocalConfig) error {
|
|||||||
if cfg.MaxCores != 0 {
|
if cfg.MaxCores != 0 {
|
||||||
sb.WriteString(fmt.Sprintf("max_cores = %d\n", cfg.MaxCores))
|
sb.WriteString(fmt.Sprintf("max_cores = %d\n", cfg.MaxCores))
|
||||||
}
|
}
|
||||||
|
sb.WriteString("\n")
|
||||||
|
|
||||||
|
// Security section
|
||||||
|
sb.WriteString("[security]\n")
|
||||||
|
if cfg.RetentionDays != 0 {
|
||||||
|
sb.WriteString(fmt.Sprintf("retention_days = %d\n", cfg.RetentionDays))
|
||||||
|
}
|
||||||
|
if cfg.MinBackups != 0 {
|
||||||
|
sb.WriteString(fmt.Sprintf("min_backups = %d\n", cfg.MinBackups))
|
||||||
|
}
|
||||||
|
if cfg.MaxRetries != 0 {
|
||||||
|
sb.WriteString(fmt.Sprintf("max_retries = %d\n", cfg.MaxRetries))
|
||||||
|
}
|
||||||
|
|
||||||
configPath := filepath.Join(".", ConfigFileName)
|
configPath := filepath.Join(".", ConfigFileName)
|
||||||
if err := os.WriteFile(configPath, []byte(sb.String()), 0644); err != nil {
|
// Use 0600 permissions for security (readable/writable only by owner)
|
||||||
|
if err := os.WriteFile(configPath, []byte(sb.String()), 0600); err != nil {
|
||||||
return fmt.Errorf("failed to write config file: %w", err)
|
return fmt.Errorf("failed to write config file: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -225,22 +259,34 @@ func ApplyLocalConfig(cfg *Config, local *LocalConfig) {
|
|||||||
if local.MaxCores != 0 {
|
if local.MaxCores != 0 {
|
||||||
cfg.MaxCores = local.MaxCores
|
cfg.MaxCores = local.MaxCores
|
||||||
}
|
}
|
||||||
|
if cfg.RetentionDays == 30 && local.RetentionDays != 0 {
|
||||||
|
cfg.RetentionDays = local.RetentionDays
|
||||||
|
}
|
||||||
|
if cfg.MinBackups == 5 && local.MinBackups != 0 {
|
||||||
|
cfg.MinBackups = local.MinBackups
|
||||||
|
}
|
||||||
|
if cfg.MaxRetries == 3 && local.MaxRetries != 0 {
|
||||||
|
cfg.MaxRetries = local.MaxRetries
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ConfigFromConfig creates a LocalConfig from a Config
|
// ConfigFromConfig creates a LocalConfig from a Config
|
||||||
func ConfigFromConfig(cfg *Config) *LocalConfig {
|
func ConfigFromConfig(cfg *Config) *LocalConfig {
|
||||||
return &LocalConfig{
|
return &LocalConfig{
|
||||||
DBType: cfg.DatabaseType,
|
DBType: cfg.DatabaseType,
|
||||||
Host: cfg.Host,
|
Host: cfg.Host,
|
||||||
Port: cfg.Port,
|
Port: cfg.Port,
|
||||||
User: cfg.User,
|
User: cfg.User,
|
||||||
Database: cfg.Database,
|
Database: cfg.Database,
|
||||||
SSLMode: cfg.SSLMode,
|
SSLMode: cfg.SSLMode,
|
||||||
BackupDir: cfg.BackupDir,
|
BackupDir: cfg.BackupDir,
|
||||||
Compression: cfg.CompressionLevel,
|
Compression: cfg.CompressionLevel,
|
||||||
Jobs: cfg.Jobs,
|
Jobs: cfg.Jobs,
|
||||||
DumpJobs: cfg.DumpJobs,
|
DumpJobs: cfg.DumpJobs,
|
||||||
CPUWorkload: cfg.CPUWorkloadType,
|
CPUWorkload: cfg.CPUWorkloadType,
|
||||||
MaxCores: cfg.MaxCores,
|
MaxCores: cfg.MaxCores,
|
||||||
|
RetentionDays: cfg.RetentionDays,
|
||||||
|
MinBackups: cfg.MinBackups,
|
||||||
|
MaxRetries: cfg.MaxRetries,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
0
internal/cpu/detection.go
Normal file → Executable file
0
internal/cpu/detection.go
Normal file → Executable file
0
internal/database/interface.go
Normal file → Executable file
0
internal/database/interface.go
Normal file → Executable file
0
internal/database/mysql.go
Normal file → Executable file
0
internal/database/mysql.go
Normal file → Executable file
0
internal/database/postgresql.go
Normal file → Executable file
0
internal/database/postgresql.go
Normal file → Executable file
0
internal/logger/logger.go
Normal file → Executable file
0
internal/logger/logger.go
Normal file → Executable file
0
internal/logger/null.go
Normal file → Executable file
0
internal/logger/null.go
Normal file → Executable file
0
internal/metrics/collector.go
Normal file → Executable file
0
internal/metrics/collector.go
Normal file → Executable file
0
internal/progress/detailed.go
Normal file → Executable file
0
internal/progress/detailed.go
Normal file → Executable file
0
internal/progress/estimator.go
Normal file → Executable file
0
internal/progress/estimator.go
Normal file → Executable file
0
internal/progress/estimator_test.go
Normal file → Executable file
0
internal/progress/estimator_test.go
Normal file → Executable file
0
internal/progress/progress.go
Normal file → Executable file
0
internal/progress/progress.go
Normal file → Executable file
0
internal/restore/diskspace_bsd.go
Normal file → Executable file
0
internal/restore/diskspace_bsd.go
Normal file → Executable file
0
internal/restore/diskspace_netbsd.go
Normal file → Executable file
0
internal/restore/diskspace_netbsd.go
Normal file → Executable file
0
internal/restore/diskspace_unix.go
Normal file → Executable file
0
internal/restore/diskspace_unix.go
Normal file → Executable file
0
internal/restore/diskspace_windows.go
Normal file → Executable file
0
internal/restore/diskspace_windows.go
Normal file → Executable file
35
internal/restore/engine.go
Normal file → Executable file
35
internal/restore/engine.go
Normal file → Executable file
@@ -16,6 +16,7 @@ import (
|
|||||||
"dbbackup/internal/database"
|
"dbbackup/internal/database"
|
||||||
"dbbackup/internal/logger"
|
"dbbackup/internal/logger"
|
||||||
"dbbackup/internal/progress"
|
"dbbackup/internal/progress"
|
||||||
|
"dbbackup/internal/security"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Engine handles database restore operations
|
// Engine handles database restore operations
|
||||||
@@ -101,12 +102,28 @@ func (la *loggerAdapter) Debug(msg string, args ...any) {
|
|||||||
func (e *Engine) RestoreSingle(ctx context.Context, archivePath, targetDB string, cleanFirst, createIfMissing bool) error {
|
func (e *Engine) RestoreSingle(ctx context.Context, archivePath, targetDB string, cleanFirst, createIfMissing bool) error {
|
||||||
operation := e.log.StartOperation("Single Database Restore")
|
operation := e.log.StartOperation("Single Database Restore")
|
||||||
|
|
||||||
|
// Validate and sanitize archive path
|
||||||
|
validArchivePath, pathErr := security.ValidateArchivePath(archivePath)
|
||||||
|
if pathErr != nil {
|
||||||
|
operation.Fail(fmt.Sprintf("Invalid archive path: %v", pathErr))
|
||||||
|
return fmt.Errorf("invalid archive path: %w", pathErr)
|
||||||
|
}
|
||||||
|
archivePath = validArchivePath
|
||||||
|
|
||||||
// Validate archive exists
|
// Validate archive exists
|
||||||
if _, err := os.Stat(archivePath); os.IsNotExist(err) {
|
if _, err := os.Stat(archivePath); os.IsNotExist(err) {
|
||||||
operation.Fail("Archive not found")
|
operation.Fail("Archive not found")
|
||||||
return fmt.Errorf("archive not found: %s", archivePath)
|
return fmt.Errorf("archive not found: %s", archivePath)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Verify checksum if .sha256 file exists
|
||||||
|
if checksumErr := security.LoadAndVerifyChecksum(archivePath); checksumErr != nil {
|
||||||
|
e.log.Warn("Checksum verification failed", "error", checksumErr)
|
||||||
|
e.log.Warn("Continuing restore without checksum verification (use with caution)")
|
||||||
|
} else {
|
||||||
|
e.log.Info("✓ Archive checksum verified successfully")
|
||||||
|
}
|
||||||
|
|
||||||
// Detect archive format
|
// Detect archive format
|
||||||
format := DetectArchiveFormat(archivePath)
|
format := DetectArchiveFormat(archivePath)
|
||||||
e.log.Info("Detected archive format", "format", format, "path", archivePath)
|
e.log.Info("Detected archive format", "format", format, "path", archivePath)
|
||||||
@@ -486,12 +503,28 @@ func (e *Engine) previewRestore(archivePath, targetDB string, format ArchiveForm
|
|||||||
func (e *Engine) RestoreCluster(ctx context.Context, archivePath string) error {
|
func (e *Engine) RestoreCluster(ctx context.Context, archivePath string) error {
|
||||||
operation := e.log.StartOperation("Cluster Restore")
|
operation := e.log.StartOperation("Cluster Restore")
|
||||||
|
|
||||||
// Validate archive
|
// Validate and sanitize archive path
|
||||||
|
validArchivePath, pathErr := security.ValidateArchivePath(archivePath)
|
||||||
|
if pathErr != nil {
|
||||||
|
operation.Fail(fmt.Sprintf("Invalid archive path: %v", pathErr))
|
||||||
|
return fmt.Errorf("invalid archive path: %w", pathErr)
|
||||||
|
}
|
||||||
|
archivePath = validArchivePath
|
||||||
|
|
||||||
|
// Validate archive exists
|
||||||
if _, err := os.Stat(archivePath); os.IsNotExist(err) {
|
if _, err := os.Stat(archivePath); os.IsNotExist(err) {
|
||||||
operation.Fail("Archive not found")
|
operation.Fail("Archive not found")
|
||||||
return fmt.Errorf("archive not found: %s", archivePath)
|
return fmt.Errorf("archive not found: %s", archivePath)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Verify checksum if .sha256 file exists
|
||||||
|
if checksumErr := security.LoadAndVerifyChecksum(archivePath); checksumErr != nil {
|
||||||
|
e.log.Warn("Checksum verification failed", "error", checksumErr)
|
||||||
|
e.log.Warn("Continuing restore without checksum verification (use with caution)")
|
||||||
|
} else {
|
||||||
|
e.log.Info("✓ Cluster archive checksum verified successfully")
|
||||||
|
}
|
||||||
|
|
||||||
format := DetectArchiveFormat(archivePath)
|
format := DetectArchiveFormat(archivePath)
|
||||||
if format != FormatClusterTarGz {
|
if format != FormatClusterTarGz {
|
||||||
operation.Fail("Invalid cluster archive format")
|
operation.Fail("Invalid cluster archive format")
|
||||||
|
|||||||
0
internal/restore/formats.go
Normal file → Executable file
0
internal/restore/formats.go
Normal file → Executable file
0
internal/restore/formats_test.go
Normal file → Executable file
0
internal/restore/formats_test.go
Normal file → Executable file
0
internal/restore/safety.go
Normal file → Executable file
0
internal/restore/safety.go
Normal file → Executable file
0
internal/restore/safety_test.go
Normal file → Executable file
0
internal/restore/safety_test.go
Normal file → Executable file
0
internal/restore/version_check.go
Normal file → Executable file
0
internal/restore/version_check.go
Normal file → Executable file
234
internal/security/audit.go
Executable file
234
internal/security/audit.go
Executable file
@@ -0,0 +1,234 @@
|
|||||||
|
package security
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"dbbackup/internal/logger"
|
||||||
|
)
|
||||||
|
|
||||||
|
// AuditEvent represents an auditable event
|
||||||
|
type AuditEvent struct {
|
||||||
|
Timestamp time.Time
|
||||||
|
User string
|
||||||
|
Action string
|
||||||
|
Resource string
|
||||||
|
Result string
|
||||||
|
Details map[string]interface{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// AuditLogger provides audit logging functionality
|
||||||
|
type AuditLogger struct {
|
||||||
|
log logger.Logger
|
||||||
|
enabled bool
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewAuditLogger creates a new audit logger
|
||||||
|
func NewAuditLogger(log logger.Logger, enabled bool) *AuditLogger {
|
||||||
|
return &AuditLogger{
|
||||||
|
log: log,
|
||||||
|
enabled: enabled,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// LogBackupStart logs backup operation start
|
||||||
|
func (a *AuditLogger) LogBackupStart(user, database, backupType string) {
|
||||||
|
if !a.enabled {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
event := AuditEvent{
|
||||||
|
Timestamp: time.Now(),
|
||||||
|
User: user,
|
||||||
|
Action: "BACKUP_START",
|
||||||
|
Resource: database,
|
||||||
|
Result: "INITIATED",
|
||||||
|
Details: map[string]interface{}{
|
||||||
|
"backup_type": backupType,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
a.logEvent(event)
|
||||||
|
}
|
||||||
|
|
||||||
|
// LogBackupComplete logs successful backup completion
|
||||||
|
func (a *AuditLogger) LogBackupComplete(user, database, archivePath string, sizeBytes int64) {
|
||||||
|
if !a.enabled {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
event := AuditEvent{
|
||||||
|
Timestamp: time.Now(),
|
||||||
|
User: user,
|
||||||
|
Action: "BACKUP_COMPLETE",
|
||||||
|
Resource: database,
|
||||||
|
Result: "SUCCESS",
|
||||||
|
Details: map[string]interface{}{
|
||||||
|
"archive_path": archivePath,
|
||||||
|
"size_bytes": sizeBytes,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
a.logEvent(event)
|
||||||
|
}
|
||||||
|
|
||||||
|
// LogBackupFailed logs backup failure
|
||||||
|
func (a *AuditLogger) LogBackupFailed(user, database string, err error) {
|
||||||
|
if !a.enabled {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
event := AuditEvent{
|
||||||
|
Timestamp: time.Now(),
|
||||||
|
User: user,
|
||||||
|
Action: "BACKUP_FAILED",
|
||||||
|
Resource: database,
|
||||||
|
Result: "FAILURE",
|
||||||
|
Details: map[string]interface{}{
|
||||||
|
"error": err.Error(),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
a.logEvent(event)
|
||||||
|
}
|
||||||
|
|
||||||
|
// LogRestoreStart logs restore operation start
|
||||||
|
func (a *AuditLogger) LogRestoreStart(user, database, archivePath string) {
|
||||||
|
if !a.enabled {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
event := AuditEvent{
|
||||||
|
Timestamp: time.Now(),
|
||||||
|
User: user,
|
||||||
|
Action: "RESTORE_START",
|
||||||
|
Resource: database,
|
||||||
|
Result: "INITIATED",
|
||||||
|
Details: map[string]interface{}{
|
||||||
|
"archive_path": archivePath,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
a.logEvent(event)
|
||||||
|
}
|
||||||
|
|
||||||
|
// LogRestoreComplete logs successful restore completion
|
||||||
|
func (a *AuditLogger) LogRestoreComplete(user, database string, duration time.Duration) {
|
||||||
|
if !a.enabled {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
event := AuditEvent{
|
||||||
|
Timestamp: time.Now(),
|
||||||
|
User: user,
|
||||||
|
Action: "RESTORE_COMPLETE",
|
||||||
|
Resource: database,
|
||||||
|
Result: "SUCCESS",
|
||||||
|
Details: map[string]interface{}{
|
||||||
|
"duration_seconds": duration.Seconds(),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
a.logEvent(event)
|
||||||
|
}
|
||||||
|
|
||||||
|
// LogRestoreFailed logs restore failure
|
||||||
|
func (a *AuditLogger) LogRestoreFailed(user, database string, err error) {
|
||||||
|
if !a.enabled {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
event := AuditEvent{
|
||||||
|
Timestamp: time.Now(),
|
||||||
|
User: user,
|
||||||
|
Action: "RESTORE_FAILED",
|
||||||
|
Resource: database,
|
||||||
|
Result: "FAILURE",
|
||||||
|
Details: map[string]interface{}{
|
||||||
|
"error": err.Error(),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
a.logEvent(event)
|
||||||
|
}
|
||||||
|
|
||||||
|
// LogConfigChange logs configuration changes
|
||||||
|
func (a *AuditLogger) LogConfigChange(user, setting, oldValue, newValue string) {
|
||||||
|
if !a.enabled {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
event := AuditEvent{
|
||||||
|
Timestamp: time.Now(),
|
||||||
|
User: user,
|
||||||
|
Action: "CONFIG_CHANGE",
|
||||||
|
Resource: setting,
|
||||||
|
Result: "SUCCESS",
|
||||||
|
Details: map[string]interface{}{
|
||||||
|
"old_value": oldValue,
|
||||||
|
"new_value": newValue,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
a.logEvent(event)
|
||||||
|
}
|
||||||
|
|
||||||
|
// LogConnectionAttempt logs database connection attempts
|
||||||
|
func (a *AuditLogger) LogConnectionAttempt(user, host string, success bool, err error) {
|
||||||
|
if !a.enabled {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result := "SUCCESS"
|
||||||
|
details := map[string]interface{}{
|
||||||
|
"host": host,
|
||||||
|
}
|
||||||
|
|
||||||
|
if !success {
|
||||||
|
result = "FAILURE"
|
||||||
|
if err != nil {
|
||||||
|
details["error"] = err.Error()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
event := AuditEvent{
|
||||||
|
Timestamp: time.Now(),
|
||||||
|
User: user,
|
||||||
|
Action: "DB_CONNECTION",
|
||||||
|
Resource: host,
|
||||||
|
Result: result,
|
||||||
|
Details: details,
|
||||||
|
}
|
||||||
|
|
||||||
|
a.logEvent(event)
|
||||||
|
}
|
||||||
|
|
||||||
|
// logEvent writes the audit event to log
|
||||||
|
func (a *AuditLogger) logEvent(event AuditEvent) {
|
||||||
|
fields := map[string]interface{}{
|
||||||
|
"audit": true,
|
||||||
|
"timestamp": event.Timestamp.Format(time.RFC3339),
|
||||||
|
"user": event.User,
|
||||||
|
"action": event.Action,
|
||||||
|
"resource": event.Resource,
|
||||||
|
"result": event.Result,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Merge event details
|
||||||
|
for k, v := range event.Details {
|
||||||
|
fields[k] = v
|
||||||
|
}
|
||||||
|
|
||||||
|
a.log.WithFields(fields).Info("AUDIT")
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetCurrentUser returns the current system user
|
||||||
|
func GetCurrentUser() string {
|
||||||
|
if user := os.Getenv("USER"); user != "" {
|
||||||
|
return user
|
||||||
|
}
|
||||||
|
if user := os.Getenv("USERNAME"); user != "" {
|
||||||
|
return user
|
||||||
|
}
|
||||||
|
return "unknown"
|
||||||
|
}
|
||||||
91
internal/security/checksum.go
Executable file
91
internal/security/checksum.go
Executable file
@@ -0,0 +1,91 @@
|
|||||||
|
package security
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/sha256"
|
||||||
|
"encoding/hex"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"os"
|
||||||
|
)
|
||||||
|
|
||||||
|
// ChecksumFile calculates SHA-256 checksum of a file
|
||||||
|
func ChecksumFile(path string) (string, error) {
|
||||||
|
file, err := os.Open(path)
|
||||||
|
if err != nil {
|
||||||
|
return "", fmt.Errorf("failed to open file: %w", err)
|
||||||
|
}
|
||||||
|
defer file.Close()
|
||||||
|
|
||||||
|
hash := sha256.New()
|
||||||
|
if _, err := io.Copy(hash, file); err != nil {
|
||||||
|
return "", fmt.Errorf("failed to calculate checksum: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return hex.EncodeToString(hash.Sum(nil)), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// VerifyChecksum verifies a file's checksum against expected value
|
||||||
|
func VerifyChecksum(path string, expectedChecksum string) error {
|
||||||
|
actualChecksum, err := ChecksumFile(path)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if actualChecksum != expectedChecksum {
|
||||||
|
return fmt.Errorf("checksum mismatch: expected %s, got %s", expectedChecksum, actualChecksum)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// SaveChecksum saves checksum to a .sha256 file alongside the archive
|
||||||
|
func SaveChecksum(archivePath string, checksum string) error {
|
||||||
|
checksumPath := archivePath + ".sha256"
|
||||||
|
content := fmt.Sprintf("%s %s\n", checksum, archivePath)
|
||||||
|
|
||||||
|
if err := os.WriteFile(checksumPath, []byte(content), 0644); err != nil {
|
||||||
|
return fmt.Errorf("failed to save checksum: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// LoadChecksum loads checksum from a .sha256 file
|
||||||
|
func LoadChecksum(archivePath string) (string, error) {
|
||||||
|
checksumPath := archivePath + ".sha256"
|
||||||
|
|
||||||
|
data, err := os.ReadFile(checksumPath)
|
||||||
|
if err != nil {
|
||||||
|
return "", fmt.Errorf("failed to read checksum file: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse "checksum filename" format
|
||||||
|
parts := []byte{}
|
||||||
|
for i, b := range data {
|
||||||
|
if b == ' ' {
|
||||||
|
parts = data[:i]
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(parts) == 0 {
|
||||||
|
return "", fmt.Errorf("invalid checksum file format")
|
||||||
|
}
|
||||||
|
|
||||||
|
return string(parts), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// LoadAndVerifyChecksum loads checksum from .sha256 file and verifies the archive
|
||||||
|
// Returns nil if checksum file doesn't exist (optional verification)
|
||||||
|
// Returns error if checksum file exists but verification fails
|
||||||
|
func LoadAndVerifyChecksum(archivePath string) error {
|
||||||
|
expectedChecksum, err := LoadChecksum(archivePath)
|
||||||
|
if err != nil {
|
||||||
|
if os.IsNotExist(err) {
|
||||||
|
return nil // Checksum file doesn't exist, skip verification
|
||||||
|
}
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return VerifyChecksum(archivePath, expectedChecksum)
|
||||||
|
}
|
||||||
72
internal/security/paths.go
Executable file
72
internal/security/paths.go
Executable file
@@ -0,0 +1,72 @@
|
|||||||
|
package security
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
// CleanPath sanitizes a file path to prevent path traversal attacks
|
||||||
|
func CleanPath(path string) (string, error) {
|
||||||
|
if path == "" {
|
||||||
|
return "", fmt.Errorf("path cannot be empty")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clean the path (removes .., ., //)
|
||||||
|
cleaned := filepath.Clean(path)
|
||||||
|
|
||||||
|
// Detect path traversal attempts
|
||||||
|
if strings.Contains(cleaned, "..") {
|
||||||
|
return "", fmt.Errorf("path traversal detected: %s", path)
|
||||||
|
}
|
||||||
|
|
||||||
|
return cleaned, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ValidateBackupPath ensures backup path is safe
|
||||||
|
func ValidateBackupPath(path string) (string, error) {
|
||||||
|
cleaned, err := CleanPath(path)
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Convert to absolute path
|
||||||
|
absPath, err := filepath.Abs(cleaned)
|
||||||
|
if err != nil {
|
||||||
|
return "", fmt.Errorf("failed to get absolute path: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return absPath, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ValidateArchivePath validates an archive file path
|
||||||
|
func ValidateArchivePath(path string) (string, error) {
|
||||||
|
cleaned, err := CleanPath(path)
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Must have a valid archive extension
|
||||||
|
ext := strings.ToLower(filepath.Ext(cleaned))
|
||||||
|
validExtensions := []string{".dump", ".sql", ".gz", ".tar"}
|
||||||
|
|
||||||
|
valid := false
|
||||||
|
for _, validExt := range validExtensions {
|
||||||
|
if strings.HasSuffix(cleaned, validExt) {
|
||||||
|
valid = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !valid {
|
||||||
|
return "", fmt.Errorf("invalid archive extension: %s (must be .dump, .sql, .gz, or .tar)", ext)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Convert to absolute path
|
||||||
|
absPath, err := filepath.Abs(cleaned)
|
||||||
|
if err != nil {
|
||||||
|
return "", fmt.Errorf("failed to get absolute path: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return absPath, nil
|
||||||
|
}
|
||||||
99
internal/security/privileges.go
Executable file
99
internal/security/privileges.go
Executable file
@@ -0,0 +1,99 @@
|
|||||||
|
package security
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
"runtime"
|
||||||
|
|
||||||
|
"dbbackup/internal/logger"
|
||||||
|
)
|
||||||
|
|
||||||
|
// PrivilegeChecker checks for elevated privileges
|
||||||
|
type PrivilegeChecker struct {
|
||||||
|
log logger.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewPrivilegeChecker creates a new privilege checker
|
||||||
|
func NewPrivilegeChecker(log logger.Logger) *PrivilegeChecker {
|
||||||
|
return &PrivilegeChecker{
|
||||||
|
log: log,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// CheckAndWarn checks if running with elevated privileges and warns
|
||||||
|
func (pc *PrivilegeChecker) CheckAndWarn(allowRoot bool) error {
|
||||||
|
isRoot, user := pc.isRunningAsRoot()
|
||||||
|
|
||||||
|
if isRoot {
|
||||||
|
pc.log.Warn("⚠️ Running with elevated privileges (root/Administrator)")
|
||||||
|
pc.log.Warn("Security recommendation: Create a dedicated backup user with minimal privileges")
|
||||||
|
|
||||||
|
if !allowRoot {
|
||||||
|
return fmt.Errorf("running as root is not recommended, use --allow-root to override")
|
||||||
|
}
|
||||||
|
|
||||||
|
pc.log.Warn("Proceeding with root privileges (--allow-root specified)")
|
||||||
|
} else {
|
||||||
|
pc.log.Debug("Running as non-privileged user", "user", user)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// isRunningAsRoot checks if current process has root/admin privileges
|
||||||
|
func (pc *PrivilegeChecker) isRunningAsRoot() (bool, string) {
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
return pc.isWindowsAdmin()
|
||||||
|
}
|
||||||
|
return pc.isUnixRoot()
|
||||||
|
}
|
||||||
|
|
||||||
|
// isUnixRoot checks for root on Unix-like systems
|
||||||
|
func (pc *PrivilegeChecker) isUnixRoot() (bool, string) {
|
||||||
|
uid := os.Getuid()
|
||||||
|
user := GetCurrentUser()
|
||||||
|
|
||||||
|
isRoot := uid == 0 || user == "root"
|
||||||
|
return isRoot, user
|
||||||
|
}
|
||||||
|
|
||||||
|
// isWindowsAdmin checks for Administrator on Windows
|
||||||
|
func (pc *PrivilegeChecker) isWindowsAdmin() (bool, string) {
|
||||||
|
// Check if running as Administrator on Windows
|
||||||
|
// This is a simplified check - full implementation would use Windows API
|
||||||
|
user := GetCurrentUser()
|
||||||
|
|
||||||
|
// Common admin user patterns on Windows
|
||||||
|
isAdmin := user == "Administrator" || user == "SYSTEM"
|
||||||
|
|
||||||
|
return isAdmin, user
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetRecommendedUser returns recommended non-privileged username
|
||||||
|
func (pc *PrivilegeChecker) GetRecommendedUser() string {
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
return "BackupUser"
|
||||||
|
}
|
||||||
|
return "dbbackup"
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetSecurityRecommendations returns security best practices
|
||||||
|
func (pc *PrivilegeChecker) GetSecurityRecommendations() []string {
|
||||||
|
recommendations := []string{
|
||||||
|
"Create a dedicated backup user with minimal database privileges",
|
||||||
|
"Grant only necessary permissions (SELECT, LOCK TABLES for MySQL)",
|
||||||
|
"Use connection strings instead of environment variables in production",
|
||||||
|
"Store credentials in secure credential management systems",
|
||||||
|
"Enable SSL/TLS for database connections",
|
||||||
|
"Restrict backup directory permissions (chmod 700)",
|
||||||
|
"Regularly rotate database passwords",
|
||||||
|
"Monitor audit logs for unauthorized access attempts",
|
||||||
|
}
|
||||||
|
|
||||||
|
if runtime.GOOS != "windows" {
|
||||||
|
recommendations = append(recommendations,
|
||||||
|
fmt.Sprintf("Run as non-root user: sudo -u %s dbbackup ...", pc.GetRecommendedUser()))
|
||||||
|
}
|
||||||
|
|
||||||
|
return recommendations
|
||||||
|
}
|
||||||
176
internal/security/ratelimit.go
Executable file
176
internal/security/ratelimit.go
Executable file
@@ -0,0 +1,176 @@
|
|||||||
|
package security
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"dbbackup/internal/logger"
|
||||||
|
)
|
||||||
|
|
||||||
|
// RateLimiter tracks connection attempts and enforces rate limiting
|
||||||
|
type RateLimiter struct {
|
||||||
|
attempts map[string]*attemptTracker
|
||||||
|
mu sync.RWMutex
|
||||||
|
maxRetries int
|
||||||
|
baseDelay time.Duration
|
||||||
|
maxDelay time.Duration
|
||||||
|
resetInterval time.Duration
|
||||||
|
log logger.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
// attemptTracker tracks connection attempts for a specific host
|
||||||
|
type attemptTracker struct {
|
||||||
|
count int
|
||||||
|
lastAttempt time.Time
|
||||||
|
nextAllowed time.Time
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewRateLimiter creates a new rate limiter for connection attempts
|
||||||
|
func NewRateLimiter(maxRetries int, log logger.Logger) *RateLimiter {
|
||||||
|
return &RateLimiter{
|
||||||
|
attempts: make(map[string]*attemptTracker),
|
||||||
|
maxRetries: maxRetries,
|
||||||
|
baseDelay: 1 * time.Second,
|
||||||
|
maxDelay: 60 * time.Second,
|
||||||
|
resetInterval: 5 * time.Minute,
|
||||||
|
log: log,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// CheckAndWait checks if connection is allowed and waits if rate limited
|
||||||
|
// Returns error if max retries exceeded
|
||||||
|
func (rl *RateLimiter) CheckAndWait(host string) error {
|
||||||
|
rl.mu.Lock()
|
||||||
|
defer rl.mu.Unlock()
|
||||||
|
|
||||||
|
now := time.Now()
|
||||||
|
tracker, exists := rl.attempts[host]
|
||||||
|
|
||||||
|
if !exists {
|
||||||
|
// First attempt, allow immediately
|
||||||
|
rl.attempts[host] = &attemptTracker{
|
||||||
|
count: 1,
|
||||||
|
lastAttempt: now,
|
||||||
|
nextAllowed: now,
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reset counter if enough time has passed
|
||||||
|
if now.Sub(tracker.lastAttempt) > rl.resetInterval {
|
||||||
|
rl.log.Debug("Resetting rate limit counter", "host", host)
|
||||||
|
tracker.count = 1
|
||||||
|
tracker.lastAttempt = now
|
||||||
|
tracker.nextAllowed = now
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if max retries exceeded
|
||||||
|
if tracker.count >= rl.maxRetries {
|
||||||
|
return fmt.Errorf("max connection retries (%d) exceeded for host %s, try again in %v",
|
||||||
|
rl.maxRetries, host, rl.resetInterval)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Calculate exponential backoff delay
|
||||||
|
delay := rl.calculateDelay(tracker.count)
|
||||||
|
tracker.nextAllowed = tracker.lastAttempt.Add(delay)
|
||||||
|
|
||||||
|
// Wait if necessary
|
||||||
|
if now.Before(tracker.nextAllowed) {
|
||||||
|
waitTime := tracker.nextAllowed.Sub(now)
|
||||||
|
rl.log.Info("Rate limiting connection attempt",
|
||||||
|
"host", host,
|
||||||
|
"attempt", tracker.count,
|
||||||
|
"wait_seconds", int(waitTime.Seconds()))
|
||||||
|
|
||||||
|
rl.mu.Unlock()
|
||||||
|
time.Sleep(waitTime)
|
||||||
|
rl.mu.Lock()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update tracker
|
||||||
|
tracker.count++
|
||||||
|
tracker.lastAttempt = time.Now()
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// RecordSuccess resets the attempt counter for successful connections
|
||||||
|
func (rl *RateLimiter) RecordSuccess(host string) {
|
||||||
|
rl.mu.Lock()
|
||||||
|
defer rl.mu.Unlock()
|
||||||
|
|
||||||
|
if tracker, exists := rl.attempts[host]; exists {
|
||||||
|
rl.log.Debug("Connection successful, resetting rate limit", "host", host)
|
||||||
|
tracker.count = 0
|
||||||
|
tracker.lastAttempt = time.Now()
|
||||||
|
tracker.nextAllowed = time.Now()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// RecordFailure increments the failure counter
|
||||||
|
func (rl *RateLimiter) RecordFailure(host string) {
|
||||||
|
rl.mu.Lock()
|
||||||
|
defer rl.mu.Unlock()
|
||||||
|
|
||||||
|
now := time.Now()
|
||||||
|
tracker, exists := rl.attempts[host]
|
||||||
|
|
||||||
|
if !exists {
|
||||||
|
rl.attempts[host] = &attemptTracker{
|
||||||
|
count: 1,
|
||||||
|
lastAttempt: now,
|
||||||
|
nextAllowed: now.Add(rl.baseDelay),
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
tracker.count++
|
||||||
|
tracker.lastAttempt = now
|
||||||
|
tracker.nextAllowed = now.Add(rl.calculateDelay(tracker.count))
|
||||||
|
|
||||||
|
rl.log.Warn("Connection failed",
|
||||||
|
"host", host,
|
||||||
|
"attempt", tracker.count,
|
||||||
|
"max_retries", rl.maxRetries)
|
||||||
|
}
|
||||||
|
|
||||||
|
// calculateDelay calculates exponential backoff delay
|
||||||
|
func (rl *RateLimiter) calculateDelay(attempt int) time.Duration {
|
||||||
|
// Exponential backoff: 1s, 2s, 4s, 8s, 16s, 32s, max 60s
|
||||||
|
delay := rl.baseDelay * time.Duration(1<<uint(attempt-1))
|
||||||
|
if delay > rl.maxDelay {
|
||||||
|
delay = rl.maxDelay
|
||||||
|
}
|
||||||
|
return delay
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetStatus returns current rate limit status for a host
|
||||||
|
func (rl *RateLimiter) GetStatus(host string) (attempts int, nextAllowed time.Time, isLimited bool) {
|
||||||
|
rl.mu.RLock()
|
||||||
|
defer rl.mu.RUnlock()
|
||||||
|
|
||||||
|
tracker, exists := rl.attempts[host]
|
||||||
|
if !exists {
|
||||||
|
return 0, time.Now(), false
|
||||||
|
}
|
||||||
|
|
||||||
|
now := time.Now()
|
||||||
|
isLimited = now.Before(tracker.nextAllowed)
|
||||||
|
|
||||||
|
return tracker.count, tracker.nextAllowed, isLimited
|
||||||
|
}
|
||||||
|
|
||||||
|
// Cleanup removes old entries from rate limiter
|
||||||
|
func (rl *RateLimiter) Cleanup() {
|
||||||
|
rl.mu.Lock()
|
||||||
|
defer rl.mu.Unlock()
|
||||||
|
|
||||||
|
now := time.Now()
|
||||||
|
for host, tracker := range rl.attempts {
|
||||||
|
if now.Sub(tracker.lastAttempt) > rl.resetInterval*2 {
|
||||||
|
delete(rl.attempts, host)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
169
internal/security/resources.go
Executable file
169
internal/security/resources.go
Executable file
@@ -0,0 +1,169 @@
|
|||||||
|
package security
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"runtime"
|
||||||
|
"syscall"
|
||||||
|
|
||||||
|
"dbbackup/internal/logger"
|
||||||
|
)
|
||||||
|
|
||||||
|
// ResourceChecker checks system resource limits
|
||||||
|
type ResourceChecker struct {
|
||||||
|
log logger.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewResourceChecker creates a new resource checker
|
||||||
|
func NewResourceChecker(log logger.Logger) *ResourceChecker {
|
||||||
|
return &ResourceChecker{
|
||||||
|
log: log,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ResourceLimits holds system resource limit information
|
||||||
|
type ResourceLimits struct {
|
||||||
|
MaxOpenFiles uint64
|
||||||
|
MaxProcesses uint64
|
||||||
|
MaxMemory uint64
|
||||||
|
MaxAddressSpace uint64
|
||||||
|
Available bool
|
||||||
|
Platform string
|
||||||
|
}
|
||||||
|
|
||||||
|
// CheckResourceLimits checks and reports system resource limits
|
||||||
|
func (rc *ResourceChecker) CheckResourceLimits() (*ResourceLimits, error) {
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
return rc.checkWindowsLimits()
|
||||||
|
}
|
||||||
|
return rc.checkUnixLimits()
|
||||||
|
}
|
||||||
|
|
||||||
|
// checkUnixLimits checks resource limits on Unix-like systems
|
||||||
|
func (rc *ResourceChecker) checkUnixLimits() (*ResourceLimits, error) {
|
||||||
|
limits := &ResourceLimits{
|
||||||
|
Available: true,
|
||||||
|
Platform: runtime.GOOS,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check max open files (RLIMIT_NOFILE)
|
||||||
|
var rLimit syscall.Rlimit
|
||||||
|
if err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &rLimit); err == nil {
|
||||||
|
limits.MaxOpenFiles = rLimit.Cur
|
||||||
|
rc.log.Debug("Resource limit: max open files", "limit", rLimit.Cur, "max", rLimit.Max)
|
||||||
|
|
||||||
|
if rLimit.Cur < 1024 {
|
||||||
|
rc.log.Warn("⚠️ Low file descriptor limit detected",
|
||||||
|
"current", rLimit.Cur,
|
||||||
|
"recommended", 4096,
|
||||||
|
"hint", "Increase with: ulimit -n 4096")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check max processes (RLIMIT_NPROC) - Linux/BSD only
|
||||||
|
if runtime.GOOS == "linux" || runtime.GOOS == "freebsd" || runtime.GOOS == "openbsd" {
|
||||||
|
// RLIMIT_NPROC may not be available on all platforms
|
||||||
|
const RLIMIT_NPROC = 6 // Linux value
|
||||||
|
if err := syscall.Getrlimit(RLIMIT_NPROC, &rLimit); err == nil {
|
||||||
|
limits.MaxProcesses = rLimit.Cur
|
||||||
|
rc.log.Debug("Resource limit: max processes", "limit", rLimit.Cur)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check max memory (RLIMIT_AS - address space)
|
||||||
|
if err := syscall.Getrlimit(syscall.RLIMIT_AS, &rLimit); err == nil {
|
||||||
|
limits.MaxAddressSpace = rLimit.Cur
|
||||||
|
// Check if unlimited (max value indicates unlimited)
|
||||||
|
if rLimit.Cur < ^uint64(0)-1024 {
|
||||||
|
rc.log.Debug("Resource limit: max address space", "limit_mb", rLimit.Cur/1024/1024)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check available memory
|
||||||
|
var memStats runtime.MemStats
|
||||||
|
runtime.ReadMemStats(&memStats)
|
||||||
|
limits.MaxMemory = memStats.Sys
|
||||||
|
|
||||||
|
rc.log.Debug("Memory stats",
|
||||||
|
"alloc_mb", memStats.Alloc/1024/1024,
|
||||||
|
"sys_mb", memStats.Sys/1024/1024,
|
||||||
|
"num_gc", memStats.NumGC)
|
||||||
|
|
||||||
|
return limits, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// checkWindowsLimits checks resource limits on Windows
|
||||||
|
func (rc *ResourceChecker) checkWindowsLimits() (*ResourceLimits, error) {
|
||||||
|
limits := &ResourceLimits{
|
||||||
|
Available: true,
|
||||||
|
Platform: "windows",
|
||||||
|
MaxOpenFiles: 2048, // Windows default
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get memory stats
|
||||||
|
var memStats runtime.MemStats
|
||||||
|
runtime.ReadMemStats(&memStats)
|
||||||
|
limits.MaxMemory = memStats.Sys
|
||||||
|
|
||||||
|
rc.log.Debug("Windows memory stats",
|
||||||
|
"alloc_mb", memStats.Alloc/1024/1024,
|
||||||
|
"sys_mb", memStats.Sys/1024/1024)
|
||||||
|
|
||||||
|
return limits, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ValidateResourcesForBackup validates resources are sufficient for backup operation
|
||||||
|
func (rc *ResourceChecker) ValidateResourcesForBackup(estimatedSize int64) error {
|
||||||
|
limits, err := rc.CheckResourceLimits()
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to check resource limits: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
var warnings []string
|
||||||
|
|
||||||
|
// Check file descriptor limit on Unix
|
||||||
|
if runtime.GOOS != "windows" && limits.MaxOpenFiles < 1024 {
|
||||||
|
warnings = append(warnings,
|
||||||
|
fmt.Sprintf("Low file descriptor limit (%d), recommended: 4096+", limits.MaxOpenFiles))
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check memory (warn if backup size might exceed available memory)
|
||||||
|
estimatedMemory := estimatedSize / 10 // Rough estimate: 10% of backup size
|
||||||
|
var memStats runtime.MemStats
|
||||||
|
runtime.ReadMemStats(&memStats)
|
||||||
|
availableMemory := memStats.Sys - memStats.Alloc
|
||||||
|
|
||||||
|
if estimatedMemory > int64(availableMemory) {
|
||||||
|
warnings = append(warnings,
|
||||||
|
fmt.Sprintf("Backup may require more memory than available (estimated: %dMB, available: %dMB)",
|
||||||
|
estimatedMemory/1024/1024, availableMemory/1024/1024))
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(warnings) > 0 {
|
||||||
|
for _, warning := range warnings {
|
||||||
|
rc.log.Warn("⚠️ Resource constraint: " + warning)
|
||||||
|
}
|
||||||
|
rc.log.Info("Continuing backup operation (warnings are informational)")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetResourceRecommendations returns recommendations for resource limits
|
||||||
|
func (rc *ResourceChecker) GetResourceRecommendations() []string {
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
return []string{
|
||||||
|
"Ensure sufficient disk space (3-4x backup size)",
|
||||||
|
"Monitor memory usage during large backups",
|
||||||
|
"Close unnecessary applications before backup",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return []string{
|
||||||
|
"Set file descriptor limit: ulimit -n 4096",
|
||||||
|
"Set max processes: ulimit -u 4096",
|
||||||
|
"Monitor disk space: df -h",
|
||||||
|
"Check memory: free -h",
|
||||||
|
"For large backups, consider increasing limits in /etc/security/limits.conf",
|
||||||
|
"Example limits.conf entry: dbbackup soft nofile 8192",
|
||||||
|
}
|
||||||
|
}
|
||||||
197
internal/security/retention.go
Executable file
197
internal/security/retention.go
Executable file
@@ -0,0 +1,197 @@
|
|||||||
|
package security
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"sort"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"dbbackup/internal/logger"
|
||||||
|
)
|
||||||
|
|
||||||
|
// RetentionPolicy defines backup retention rules
|
||||||
|
type RetentionPolicy struct {
|
||||||
|
RetentionDays int
|
||||||
|
MinBackups int // Minimum backups to keep regardless of age
|
||||||
|
log logger.Logger
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewRetentionPolicy creates a new retention policy
|
||||||
|
func NewRetentionPolicy(retentionDays, minBackups int, log logger.Logger) *RetentionPolicy {
|
||||||
|
return &RetentionPolicy{
|
||||||
|
RetentionDays: retentionDays,
|
||||||
|
MinBackups: minBackups,
|
||||||
|
log: log,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ArchiveInfo holds information about a backup archive
|
||||||
|
type ArchiveInfo struct {
|
||||||
|
Path string
|
||||||
|
ModTime time.Time
|
||||||
|
Size int64
|
||||||
|
Database string
|
||||||
|
}
|
||||||
|
|
||||||
|
// CleanupOldBackups removes backups older than retention period
|
||||||
|
func (rp *RetentionPolicy) CleanupOldBackups(backupDir string) (int, int64, error) {
|
||||||
|
if rp.RetentionDays <= 0 {
|
||||||
|
return 0, 0, nil // Retention disabled
|
||||||
|
}
|
||||||
|
|
||||||
|
archives, err := rp.scanBackupArchives(backupDir)
|
||||||
|
if err != nil {
|
||||||
|
return 0, 0, fmt.Errorf("failed to scan backup directory: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(archives) <= rp.MinBackups {
|
||||||
|
rp.log.Debug("Keeping all backups (below minimum threshold)",
|
||||||
|
"count", len(archives), "min_backups", rp.MinBackups)
|
||||||
|
return 0, 0, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
cutoffTime := time.Now().AddDate(0, 0, -rp.RetentionDays)
|
||||||
|
|
||||||
|
// Sort by modification time (oldest first)
|
||||||
|
sort.Slice(archives, func(i, j int) bool {
|
||||||
|
return archives[i].ModTime.Before(archives[j].ModTime)
|
||||||
|
})
|
||||||
|
|
||||||
|
var deletedCount int
|
||||||
|
var freedSpace int64
|
||||||
|
|
||||||
|
for i, archive := range archives {
|
||||||
|
// Keep minimum number of backups
|
||||||
|
remaining := len(archives) - i
|
||||||
|
if remaining <= rp.MinBackups {
|
||||||
|
rp.log.Debug("Stopped cleanup to maintain minimum backups",
|
||||||
|
"remaining", remaining, "min_backups", rp.MinBackups)
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
// Delete if older than retention period
|
||||||
|
if archive.ModTime.Before(cutoffTime) {
|
||||||
|
rp.log.Info("Removing old backup",
|
||||||
|
"file", filepath.Base(archive.Path),
|
||||||
|
"age_days", int(time.Since(archive.ModTime).Hours()/24),
|
||||||
|
"size_mb", archive.Size/1024/1024)
|
||||||
|
|
||||||
|
if err := os.Remove(archive.Path); err != nil {
|
||||||
|
rp.log.Warn("Failed to remove old backup", "file", archive.Path, "error", err)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
// Also remove checksum file if exists
|
||||||
|
checksumPath := archive.Path + ".sha256"
|
||||||
|
if _, err := os.Stat(checksumPath); err == nil {
|
||||||
|
os.Remove(checksumPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Also remove metadata file if exists
|
||||||
|
metadataPath := archive.Path + ".meta"
|
||||||
|
if _, err := os.Stat(metadataPath); err == nil {
|
||||||
|
os.Remove(metadataPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
deletedCount++
|
||||||
|
freedSpace += archive.Size
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if deletedCount > 0 {
|
||||||
|
rp.log.Info("Cleanup completed",
|
||||||
|
"deleted_backups", deletedCount,
|
||||||
|
"freed_space_mb", freedSpace/1024/1024,
|
||||||
|
"retention_days", rp.RetentionDays)
|
||||||
|
}
|
||||||
|
|
||||||
|
return deletedCount, freedSpace, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// scanBackupArchives scans directory for backup archives
|
||||||
|
func (rp *RetentionPolicy) scanBackupArchives(backupDir string) ([]ArchiveInfo, error) {
|
||||||
|
var archives []ArchiveInfo
|
||||||
|
|
||||||
|
entries, err := os.ReadDir(backupDir)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, entry := range entries {
|
||||||
|
if entry.IsDir() {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
name := entry.Name()
|
||||||
|
|
||||||
|
// Skip non-backup files
|
||||||
|
if !isBackupArchive(name) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
path := filepath.Join(backupDir, name)
|
||||||
|
info, err := entry.Info()
|
||||||
|
if err != nil {
|
||||||
|
rp.log.Warn("Failed to get file info", "file", name, "error", err)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
archives = append(archives, ArchiveInfo{
|
||||||
|
Path: path,
|
||||||
|
ModTime: info.ModTime(),
|
||||||
|
Size: info.Size(),
|
||||||
|
Database: extractDatabaseName(name),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
return archives, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// isBackupArchive checks if filename is a backup archive
|
||||||
|
func isBackupArchive(name string) bool {
|
||||||
|
return (filepath.Ext(name) == ".dump" ||
|
||||||
|
filepath.Ext(name) == ".sql" ||
|
||||||
|
filepath.Ext(name) == ".gz" ||
|
||||||
|
filepath.Ext(name) == ".tar") &&
|
||||||
|
name != ".sha256" &&
|
||||||
|
name != ".meta"
|
||||||
|
}
|
||||||
|
|
||||||
|
// extractDatabaseName extracts database name from archive filename
|
||||||
|
func extractDatabaseName(filename string) string {
|
||||||
|
base := filepath.Base(filename)
|
||||||
|
|
||||||
|
// Remove extensions
|
||||||
|
for {
|
||||||
|
oldBase := base
|
||||||
|
base = removeExtension(base)
|
||||||
|
if base == oldBase {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove timestamp patterns
|
||||||
|
if len(base) > 20 {
|
||||||
|
// Typically: db_name_20240101_120000
|
||||||
|
underscoreCount := 0
|
||||||
|
for i := len(base) - 1; i >= 0; i-- {
|
||||||
|
if base[i] == '_' {
|
||||||
|
underscoreCount++
|
||||||
|
if underscoreCount >= 2 {
|
||||||
|
return base[:i]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return base
|
||||||
|
}
|
||||||
|
|
||||||
|
// removeExtension removes one extension from filename
|
||||||
|
func removeExtension(name string) string {
|
||||||
|
if ext := filepath.Ext(name); ext != "" {
|
||||||
|
return name[:len(name)-len(ext)]
|
||||||
|
}
|
||||||
|
return name
|
||||||
|
}
|
||||||
0
internal/swap/swap.go
Normal file → Executable file
0
internal/swap/swap.go
Normal file → Executable file
0
internal/tui/archive_browser.go
Normal file → Executable file
0
internal/tui/archive_browser.go
Normal file → Executable file
0
internal/tui/backup_exec.go
Normal file → Executable file
0
internal/tui/backup_exec.go
Normal file → Executable file
0
internal/tui/backup_manager.go
Normal file → Executable file
0
internal/tui/backup_manager.go
Normal file → Executable file
2
internal/tui/confirmation.go
Normal file → Executable file
2
internal/tui/confirmation.go
Normal file → Executable file
@@ -77,7 +77,7 @@ func (m ConfirmationModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
|||||||
return m.onConfirm()
|
return m.onConfirm()
|
||||||
}
|
}
|
||||||
// Default: execute cluster backup for backward compatibility
|
// Default: execute cluster backup for backward compatibility
|
||||||
executor := NewBackupExecution(m.config, m.logger, m.parent, "cluster", "", 0)
|
executor := NewBackupExecution(m.config, m.logger, m.parent, m.ctx, "cluster", "", 0)
|
||||||
return executor, executor.Init()
|
return executor, executor.Init()
|
||||||
}
|
}
|
||||||
return m.parent, nil
|
return m.parent, nil
|
||||||
|
|||||||
31
internal/tui/dbselector.go
Normal file → Executable file
31
internal/tui/dbselector.go
Normal file → Executable file
@@ -84,6 +84,37 @@ func (m DatabaseSelectorModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
|||||||
m.databases = []string{"Error loading databases"}
|
m.databases = []string{"Error loading databases"}
|
||||||
} else {
|
} else {
|
||||||
m.databases = msg.databases
|
m.databases = msg.databases
|
||||||
|
|
||||||
|
// Auto-select database if specified
|
||||||
|
if m.config.TUIAutoDatabase != "" {
|
||||||
|
for i, db := range m.databases {
|
||||||
|
if db == m.config.TUIAutoDatabase {
|
||||||
|
m.cursor = i
|
||||||
|
m.selected = db
|
||||||
|
m.logger.Info("Auto-selected database", "database", db)
|
||||||
|
|
||||||
|
// If sample backup, ask for ratio (or auto-use default)
|
||||||
|
if m.backupType == "sample" {
|
||||||
|
if m.config.TUIDryRun {
|
||||||
|
// In dry-run, use default ratio
|
||||||
|
executor := NewBackupExecution(m.config, m.logger, m.parent, m.ctx, m.backupType, m.selected, 10)
|
||||||
|
return executor, executor.Init()
|
||||||
|
}
|
||||||
|
inputModel := NewInputModel(m.config, m.logger, m,
|
||||||
|
"📊 Sample Ratio",
|
||||||
|
"Enter sample ratio (1-100):",
|
||||||
|
"10",
|
||||||
|
ValidateInt(1, 100))
|
||||||
|
return inputModel, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// For single backup, go directly to execution
|
||||||
|
executor := NewBackupExecution(m.config, m.logger, m.parent, m.ctx, m.backupType, m.selected, 0)
|
||||||
|
return executor, executor.Init()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
m.logger.Warn("Auto-database not found in list", "requested", m.config.TUIAutoDatabase)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return m, nil
|
return m, nil
|
||||||
|
|
||||||
|
|||||||
0
internal/tui/dirbrowser.go
Normal file → Executable file
0
internal/tui/dirbrowser.go
Normal file → Executable file
0
internal/tui/dirpicker.go
Normal file → Executable file
0
internal/tui/dirpicker.go
Normal file → Executable file
0
internal/tui/history.go
Normal file → Executable file
0
internal/tui/history.go
Normal file → Executable file
0
internal/tui/input.go
Normal file → Executable file
0
internal/tui/input.go
Normal file → Executable file
52
internal/tui/menu.go
Normal file → Executable file
52
internal/tui/menu.go
Normal file → Executable file
@@ -125,14 +125,66 @@ func (m *MenuModel) Close() error {
|
|||||||
// Ensure MenuModel implements io.Closer
|
// Ensure MenuModel implements io.Closer
|
||||||
var _ io.Closer = (*MenuModel)(nil)
|
var _ io.Closer = (*MenuModel)(nil)
|
||||||
|
|
||||||
|
// autoSelectMsg is sent when auto-select should trigger
|
||||||
|
type autoSelectMsg struct{}
|
||||||
|
|
||||||
// Init initializes the model
|
// Init initializes the model
|
||||||
func (m MenuModel) Init() tea.Cmd {
|
func (m MenuModel) Init() tea.Cmd {
|
||||||
|
// Auto-select menu option if specified
|
||||||
|
if m.config.TUIAutoSelect >= 0 && m.config.TUIAutoSelect < len(m.choices) {
|
||||||
|
m.logger.Info("TUI Auto-select enabled", "option", m.config.TUIAutoSelect, "label", m.choices[m.config.TUIAutoSelect])
|
||||||
|
|
||||||
|
// Return command to trigger auto-selection
|
||||||
|
return func() tea.Msg {
|
||||||
|
return autoSelectMsg{}
|
||||||
|
}
|
||||||
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update handles messages
|
// Update handles messages
|
||||||
func (m MenuModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
func (m MenuModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
||||||
switch msg := msg.(type) {
|
switch msg := msg.(type) {
|
||||||
|
case autoSelectMsg:
|
||||||
|
// Handle auto-selection
|
||||||
|
if m.config.TUIAutoSelect >= 0 && m.config.TUIAutoSelect < len(m.choices) {
|
||||||
|
m.cursor = m.config.TUIAutoSelect
|
||||||
|
m.logger.Info("Auto-selecting option", "cursor", m.cursor, "choice", m.choices[m.cursor])
|
||||||
|
|
||||||
|
// Trigger the selection based on cursor position
|
||||||
|
switch m.cursor {
|
||||||
|
case 0: // Single Database Backup
|
||||||
|
return m.handleSingleBackup()
|
||||||
|
case 1: // Sample Database Backup
|
||||||
|
return m.handleSampleBackup()
|
||||||
|
case 2: // Cluster Backup
|
||||||
|
return m.handleClusterBackup()
|
||||||
|
case 4: // Restore Single Database
|
||||||
|
return m.handleRestoreSingle()
|
||||||
|
case 5: // Restore Cluster Backup
|
||||||
|
return m.handleRestoreCluster()
|
||||||
|
case 6: // List & Manage Backups
|
||||||
|
return m.handleBackupManager()
|
||||||
|
case 8: // View Active Operations
|
||||||
|
return m.handleViewOperations()
|
||||||
|
case 9: // Show Operation History
|
||||||
|
return m.handleOperationHistory()
|
||||||
|
case 10: // Database Status
|
||||||
|
return m.handleStatus()
|
||||||
|
case 11: // Settings
|
||||||
|
return m.handleSettings()
|
||||||
|
case 12: // Clear History
|
||||||
|
m.message = "🗑️ History cleared"
|
||||||
|
case 13: // Quit
|
||||||
|
if m.cancel != nil {
|
||||||
|
m.cancel()
|
||||||
|
}
|
||||||
|
m.quitting = true
|
||||||
|
return m, tea.Quit
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return m, nil
|
||||||
|
|
||||||
case tea.KeyMsg:
|
case tea.KeyMsg:
|
||||||
switch msg.String() {
|
switch msg.String() {
|
||||||
case "ctrl+c", "q":
|
case "ctrl+c", "q":
|
||||||
|
|||||||
0
internal/tui/operations.go
Normal file → Executable file
0
internal/tui/operations.go
Normal file → Executable file
0
internal/tui/progress.go
Normal file → Executable file
0
internal/tui/progress.go
Normal file → Executable file
0
internal/tui/restore_exec.go
Normal file → Executable file
0
internal/tui/restore_exec.go
Normal file → Executable file
0
internal/tui/restore_preview.go
Normal file → Executable file
0
internal/tui/restore_preview.go
Normal file → Executable file
0
internal/tui/settings.go
Normal file → Executable file
0
internal/tui/settings.go
Normal file → Executable file
0
internal/tui/status.go
Normal file → Executable file
0
internal/tui/status.go
Normal file → Executable file
317
run_qa_tests.sh
Executable file
317
run_qa_tests.sh
Executable file
@@ -0,0 +1,317 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# Automated QA Test Script for dbbackup Interactive Mode
|
||||||
|
# Tests as many features as possible without manual interaction
|
||||||
|
#
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Colors
|
||||||
|
RED='\033[0;31m'
|
||||||
|
GREEN='\033[0;32m'
|
||||||
|
YELLOW='\033[1;33m'
|
||||||
|
BLUE='\033[0;34m'
|
||||||
|
CYAN='\033[0;36m'
|
||||||
|
NC='\033[0m'
|
||||||
|
|
||||||
|
# Config
|
||||||
|
BINARY="/root/dbbackup/dbbackup"
|
||||||
|
TEST_DIR="/tmp/dbbackup_qa_test"
|
||||||
|
BACKUP_DIR="$TEST_DIR/backups"
|
||||||
|
LOG_FILE="$TEST_DIR/qa_test_$(date +%Y%m%d_%H%M%S).log"
|
||||||
|
REPORT_FILE="/root/dbbackup/QA_TEST_RESULTS.md"
|
||||||
|
|
||||||
|
# Counters
|
||||||
|
TOTAL_TESTS=0
|
||||||
|
PASSED_TESTS=0
|
||||||
|
FAILED_TESTS=0
|
||||||
|
SKIPPED_TESTS=0
|
||||||
|
CRITICAL_ISSUES=0
|
||||||
|
MAJOR_ISSUES=0
|
||||||
|
MINOR_ISSUES=0
|
||||||
|
|
||||||
|
echo -e "${CYAN}╔════════════════════════════════════════════════════════════════╗${NC}"
|
||||||
|
echo -e "${CYAN}║ QA Test Suite - dbbackup Interactive Mode ║${NC}"
|
||||||
|
echo -e "${CYAN}╔════════════════════════════════════════════════════════════════╗${NC}"
|
||||||
|
echo
|
||||||
|
echo -e "${BLUE}Test Date:${NC} $(date)"
|
||||||
|
echo -e "${BLUE}Environment:${NC} $(uname -s) $(uname -m)"
|
||||||
|
echo -e "${BLUE}Binary:${NC} $BINARY"
|
||||||
|
echo -e "${BLUE}Test Directory:${NC} $TEST_DIR"
|
||||||
|
echo -e "${BLUE}Log File:${NC} $LOG_FILE"
|
||||||
|
echo
|
||||||
|
|
||||||
|
# Check if running as root
|
||||||
|
if [ "$(id -u)" -ne 0 ]; then
|
||||||
|
echo -e "${RED}ERROR: Must run as root for postgres user switching${NC}"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Setup
|
||||||
|
echo -e "${YELLOW}► Setting up test environment...${NC}"
|
||||||
|
rm -rf "$TEST_DIR"
|
||||||
|
mkdir -p "$BACKUP_DIR"
|
||||||
|
chmod 755 "$TEST_DIR" "$BACKUP_DIR"
|
||||||
|
chown -R postgres:postgres "$TEST_DIR"
|
||||||
|
cp "$BINARY" "$TEST_DIR/"
|
||||||
|
chmod 755 "$TEST_DIR/dbbackup"
|
||||||
|
chown postgres:postgres "$TEST_DIR/dbbackup"
|
||||||
|
echo -e "${GREEN}✓ Environment ready${NC}"
|
||||||
|
echo
|
||||||
|
|
||||||
|
# Test function
|
||||||
|
run_test() {
|
||||||
|
local name="$1"
|
||||||
|
local severity="$2" # CRITICAL, MAJOR, MINOR
|
||||||
|
local cmd="$3"
|
||||||
|
|
||||||
|
TOTAL_TESTS=$((TOTAL_TESTS + 1))
|
||||||
|
echo -e "${CYAN}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
|
||||||
|
echo -e "${CYAN}TEST $TOTAL_TESTS: $name${NC}"
|
||||||
|
echo -e "${CYAN}Severity: $severity${NC}"
|
||||||
|
echo -e "${CYAN}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
|
||||||
|
|
||||||
|
if [ -n "$cmd" ]; then
|
||||||
|
echo -e "${YELLOW}Command:${NC} $cmd"
|
||||||
|
echo
|
||||||
|
|
||||||
|
if eval "$cmd" >> "$LOG_FILE" 2>&1; then
|
||||||
|
echo -e "${GREEN}✅ PASSED${NC}"
|
||||||
|
PASSED_TESTS=$((PASSED_TESTS + 1))
|
||||||
|
else
|
||||||
|
echo -e "${RED}❌ FAILED${NC}"
|
||||||
|
FAILED_TESTS=$((FAILED_TESTS + 1))
|
||||||
|
|
||||||
|
case "$severity" in
|
||||||
|
CRITICAL) CRITICAL_ISSUES=$((CRITICAL_ISSUES + 1)) ;;
|
||||||
|
MAJOR) MAJOR_ISSUES=$((MAJOR_ISSUES + 1)) ;;
|
||||||
|
MINOR) MINOR_ISSUES=$((MINOR_ISSUES + 1)) ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo -e "${YELLOW}⏭️ MANUAL TEST REQUIRED${NC}"
|
||||||
|
SKIPPED_TESTS=$((SKIPPED_TESTS + 1))
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo
|
||||||
|
}
|
||||||
|
|
||||||
|
cd "$TEST_DIR"
|
||||||
|
|
||||||
|
# ============================================================================
|
||||||
|
# PHASE 1: Basic Functionality (CRITICAL)
|
||||||
|
# ============================================================================
|
||||||
|
|
||||||
|
echo -e "${BLUE}╔════════════════════════════════════════════════════════════════╗${NC}"
|
||||||
|
echo -e "${BLUE}║ PHASE 1: Basic Functionality (CRITICAL) ║${NC}"
|
||||||
|
echo -e "${BLUE}╚════════════════════════════════════════════════════════════════╝${NC}"
|
||||||
|
echo
|
||||||
|
|
||||||
|
run_test "Application Version Check" "CRITICAL" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup --version'"
|
||||||
|
|
||||||
|
run_test "Application Help" "CRITICAL" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup --help' | grep -q 'interactive'"
|
||||||
|
|
||||||
|
run_test "Interactive Mode Launch (--help)" "CRITICAL" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup interactive --help' | grep -q 'auto-select'"
|
||||||
|
|
||||||
|
run_test "Single Database Backup (CLI)" "CRITICAL" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup backup single postgres --backup-dir $BACKUP_DIR' > /dev/null 2>&1"
|
||||||
|
|
||||||
|
run_test "Verify Backup Files Created" "CRITICAL" \
|
||||||
|
"ls $BACKUP_DIR/db_postgres_*.dump >/dev/null 2>&1 && ls $BACKUP_DIR/db_postgres_*.dump.sha256 >/dev/null 2>&1"
|
||||||
|
|
||||||
|
run_test "Backup Checksum Validation" "CRITICAL" \
|
||||||
|
"cd $BACKUP_DIR && sha256sum -c \$(ls -t db_postgres_*.sha256 | head -1) 2>&1 | grep -q 'OK'"
|
||||||
|
|
||||||
|
run_test "List Backups Command" "CRITICAL" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup list' | grep -q 'backup'"
|
||||||
|
|
||||||
|
# ============================================================================
|
||||||
|
# PHASE 2: TUI Auto-Select Tests (MAJOR)
|
||||||
|
# ============================================================================
|
||||||
|
|
||||||
|
echo -e "${BLUE}╔════════════════════════════════════════════════════════════════╗${NC}"
|
||||||
|
echo -e "${BLUE}║ PHASE 2: TUI Automation (MAJOR) ║${NC}"
|
||||||
|
echo -e "${BLUE}╚════════════════════════════════════════════════════════════════╝${NC}"
|
||||||
|
echo
|
||||||
|
|
||||||
|
# TUI test requires real TTY - check if backup happens
|
||||||
|
run_test "TUI Auto-Select Single Backup" "MAJOR" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && timeout 5s ./dbbackup backup single postgres --backup-dir $BACKUP_DIR' > /dev/null 2>&1"
|
||||||
|
|
||||||
|
run_test "TUI Auto-Select Status View" "MAJOR" \
|
||||||
|
"timeout 3s su - postgres -c 'cd $TEST_DIR && ./dbbackup interactive --auto-select 10 --debug' 2>&1 | grep -q 'Status\|Database'"
|
||||||
|
|
||||||
|
# TUI test requires real TTY - check debug logging works in CLI mode
|
||||||
|
run_test "TUI Auto-Select with Logging" "MAJOR" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup backup single postgres --backup-dir $BACKUP_DIR --debug 2>&1' | grep -q 'DEBUG\|INFO'"
|
||||||
|
|
||||||
|
# ============================================================================
|
||||||
|
# PHASE 3: Configuration Tests (MAJOR)
|
||||||
|
# ============================================================================
|
||||||
|
|
||||||
|
echo -e "${BLUE}╔════════════════════════════════════════════════════════════════╗${NC}"
|
||||||
|
echo -e "${BLUE}║ PHASE 3: Configuration (MAJOR) ║${NC}"
|
||||||
|
echo -e "${BLUE}╚════════════════════════════════════════════════════════════════╝${NC}"
|
||||||
|
echo
|
||||||
|
|
||||||
|
# Create test config
|
||||||
|
cat > "$TEST_DIR/.dbbackup.conf" <<EOF
|
||||||
|
[database]
|
||||||
|
type = postgres
|
||||||
|
host = localhost
|
||||||
|
port = 5432
|
||||||
|
user = postgres
|
||||||
|
|
||||||
|
[backup]
|
||||||
|
backup_dir = $BACKUP_DIR
|
||||||
|
compression = 9
|
||||||
|
|
||||||
|
[security]
|
||||||
|
retention_days = 7
|
||||||
|
min_backups = 3
|
||||||
|
EOF
|
||||||
|
chown postgres:postgres "$TEST_DIR/.dbbackup.conf"
|
||||||
|
|
||||||
|
run_test "Config File Loading" "MAJOR" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup backup single postgres' 2>&1 | grep -q 'Loaded configuration'"
|
||||||
|
|
||||||
|
run_test "Config File Created After Backup" "MAJOR" \
|
||||||
|
"test -f $TEST_DIR/.dbbackup.conf && grep -q 'retention_days' $TEST_DIR/.dbbackup.conf"
|
||||||
|
|
||||||
|
run_test "Config File No Password Leak" "CRITICAL" \
|
||||||
|
"! grep -i 'password.*=' $TEST_DIR/.dbbackup.conf"
|
||||||
|
|
||||||
|
# ============================================================================
|
||||||
|
# PHASE 4: Security Features (CRITICAL)
|
||||||
|
# ============================================================================
|
||||||
|
|
||||||
|
echo -e "${BLUE}╔════════════════════════════════════════════════════════════════╗${NC}"
|
||||||
|
echo -e "${BLUE}║ PHASE 4: Security Features (CRITICAL) ║${NC}"
|
||||||
|
echo -e "${BLUE}╚════════════════════════════════════════════════════════════════╝${NC}"
|
||||||
|
echo
|
||||||
|
|
||||||
|
run_test "Retention Policy Flag Available" "MAJOR" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup --help' | grep -q 'retention-days'"
|
||||||
|
|
||||||
|
run_test "Rate Limiting Flag Available" "MAJOR" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup --help' | grep -q 'max-retries'"
|
||||||
|
|
||||||
|
run_test "Privilege Check Flag Available" "MAJOR" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup --help' | grep -q 'allow-root'"
|
||||||
|
|
||||||
|
run_test "Resource Check Flag Available" "MAJOR" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup --help' | grep -q 'check-resources'"
|
||||||
|
|
||||||
|
# Create old backups for retention test
|
||||||
|
su - postgres -c "
|
||||||
|
cd $BACKUP_DIR
|
||||||
|
touch -d '40 days ago' db_old_40.dump db_old_40.dump.sha256 db_old_40.dump.info
|
||||||
|
touch -d '35 days ago' db_old_35.dump db_old_35.dump.sha256 db_old_35.dump.info
|
||||||
|
"
|
||||||
|
|
||||||
|
run_test "Retention Policy Cleanup" "MAJOR" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup backup single postgres --retention-days 30 --min-backups 2 --debug' 2>&1 | grep -q 'Removing old backup' && ! test -f $BACKUP_DIR/db_old_40.dump"
|
||||||
|
|
||||||
|
# ============================================================================
|
||||||
|
# PHASE 5: Error Handling (MAJOR)
|
||||||
|
# ============================================================================
|
||||||
|
|
||||||
|
echo -e "${BLUE}╔════════════════════════════════════════════════════════════════╗${NC}"
|
||||||
|
echo -e "${BLUE}║ PHASE 5: Error Handling (MAJOR) ║${NC}"
|
||||||
|
echo -e "${BLUE}╚════════════════════════════════════════════════════════════════╝${NC}"
|
||||||
|
echo
|
||||||
|
|
||||||
|
run_test "Invalid Database Name Handling" "MAJOR" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup backup single nonexistent_db_xyz_123' 2>&1 | grep -qE 'error|failed|not found'"
|
||||||
|
|
||||||
|
run_test "Invalid Host Handling" "MAJOR" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup backup single postgres --host invalid.host.xyz --max-retries 1' 2>&1 | grep -qE 'connection.*failed|error'"
|
||||||
|
|
||||||
|
run_test "Invalid Compression Level" "MINOR" \
|
||||||
|
"su - postgres -c 'cd $TEST_DIR && ./dbbackup backup single postgres --compression 15' 2>&1 | grep -qE 'invalid|error'"
|
||||||
|
|
||||||
|
# ============================================================================
|
||||||
|
# PHASE 6: Data Integrity (CRITICAL)
|
||||||
|
# ============================================================================
|
||||||
|
|
||||||
|
echo -e "${BLUE}╔════════════════════════════════════════════════════════════════╗${NC}"
|
||||||
|
echo -e "${BLUE}║ PHASE 6: Data Integrity (CRITICAL) ║${NC}"
|
||||||
|
echo -e "${BLUE}╚════════════════════════════════════════════════════════════════╝${NC}"
|
||||||
|
echo
|
||||||
|
|
||||||
|
run_test "Backup File is Valid PostgreSQL Dump" "CRITICAL" \
|
||||||
|
"file $BACKUP_DIR/db_postgres_*.dump | grep -qE 'PostgreSQL|data'"
|
||||||
|
|
||||||
|
run_test "Checksum File Format Valid" "CRITICAL" \
|
||||||
|
"cat $BACKUP_DIR/db_postgres_*.sha256 | grep -qE '[0-9a-f]{64}'"
|
||||||
|
|
||||||
|
run_test "Metadata File Created" "MAJOR" \
|
||||||
|
"ls $BACKUP_DIR/db_postgres_*.dump.info >/dev/null 2>&1 && grep -q 'timestamp' $BACKUP_DIR/db_postgres_*.dump.info"
|
||||||
|
|
||||||
|
# ============================================================================
|
||||||
|
# Summary
|
||||||
|
# ============================================================================
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo -e "${CYAN}╔════════════════════════════════════════════════════════════════╗${NC}"
|
||||||
|
echo -e "${CYAN}║ TEST SUMMARY ║${NC}"
|
||||||
|
echo -e "${CYAN}╚════════════════════════════════════════════════════════════════╝${NC}"
|
||||||
|
echo
|
||||||
|
echo -e "${BLUE}Total Tests:${NC} $TOTAL_TESTS"
|
||||||
|
echo -e "${GREEN}Passed:${NC} $PASSED_TESTS"
|
||||||
|
echo -e "${RED}Failed:${NC} $FAILED_TESTS"
|
||||||
|
echo -e "${YELLOW}Skipped:${NC} $SKIPPED_TESTS"
|
||||||
|
echo
|
||||||
|
echo -e "${BLUE}Issues by Severity:${NC}"
|
||||||
|
echo -e "${RED} Critical:${NC} $CRITICAL_ISSUES"
|
||||||
|
echo -e "${YELLOW} Major:${NC} $MAJOR_ISSUES"
|
||||||
|
echo -e "${YELLOW} Minor:${NC} $MINOR_ISSUES"
|
||||||
|
echo
|
||||||
|
echo -e "${BLUE}Log File:${NC} $LOG_FILE"
|
||||||
|
echo
|
||||||
|
|
||||||
|
# Update report file
|
||||||
|
cat >> "$REPORT_FILE" <<EOF
|
||||||
|
|
||||||
|
## Automated Test Results (Updated: $(date))
|
||||||
|
|
||||||
|
**Tests Executed:** $TOTAL_TESTS
|
||||||
|
**Passed:** $PASSED_TESTS
|
||||||
|
**Failed:** $FAILED_TESTS
|
||||||
|
**Skipped:** $SKIPPED_TESTS
|
||||||
|
|
||||||
|
**Issues Found:**
|
||||||
|
- Critical: $CRITICAL_ISSUES
|
||||||
|
- Major: $MAJOR_ISSUES
|
||||||
|
- Minor: $MINOR_ISSUES
|
||||||
|
|
||||||
|
**Success Rate:** $(( PASSED_TESTS * 100 / TOTAL_TESTS ))%
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# Final verdict
|
||||||
|
if [ $CRITICAL_ISSUES -gt 0 ]; then
|
||||||
|
echo -e "${RED}❌ CRITICAL ISSUES FOUND - NOT READY FOR RELEASE${NC}"
|
||||||
|
EXIT_CODE=2
|
||||||
|
elif [ $MAJOR_ISSUES -gt 0 ]; then
|
||||||
|
echo -e "${YELLOW}⚠️ MAJOR ISSUES FOUND - CONSIDER FIXING BEFORE RELEASE${NC}"
|
||||||
|
EXIT_CODE=1
|
||||||
|
elif [ $FAILED_TESTS -gt 0 ]; then
|
||||||
|
echo -e "${YELLOW}⚠️ MINOR ISSUES FOUND - DOCUMENT AND ADDRESS${NC}"
|
||||||
|
EXIT_CODE=0
|
||||||
|
else
|
||||||
|
echo -e "${GREEN}✅ ALL TESTS PASSED - READY FOR RELEASE${NC}"
|
||||||
|
EXIT_CODE=0
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo -e "${BLUE}Detailed log:${NC} cat $LOG_FILE"
|
||||||
|
echo -e "${BLUE}Full report:${NC} cat $REPORT_FILE"
|
||||||
|
echo
|
||||||
|
|
||||||
|
exit $EXIT_CODE
|
||||||
71
run_tests_as_postgres.sh
Executable file
71
run_tests_as_postgres.sh
Executable file
@@ -0,0 +1,71 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# Test Runner Wrapper - Executes tests as postgres user
|
||||||
|
# Usage: ./run_tests_as_postgres.sh [quick|comprehensive] [options]
|
||||||
|
#
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
|
||||||
|
# Check if running as root
|
||||||
|
if [ "$(id -u)" -ne 0 ]; then
|
||||||
|
echo "ERROR: This script must be run as root to switch to postgres user"
|
||||||
|
echo "Usage: sudo ./run_tests_as_postgres.sh [quick|comprehensive] [options]"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check if postgres user exists
|
||||||
|
if ! id postgres &>/dev/null; then
|
||||||
|
echo "ERROR: postgres user does not exist"
|
||||||
|
echo "Please install PostgreSQL or create the postgres user"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Determine which test to run
|
||||||
|
TEST_TYPE="${1:-quick}"
|
||||||
|
shift || true
|
||||||
|
|
||||||
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
||||||
|
echo " Running tests as postgres user"
|
||||||
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
case "$TEST_TYPE" in
|
||||||
|
quick)
|
||||||
|
echo "Executing: quick_test.sh"
|
||||||
|
echo ""
|
||||||
|
# Give postgres user access to the directory
|
||||||
|
chmod -R 755 "$SCRIPT_DIR"
|
||||||
|
# Run as postgres user
|
||||||
|
su - postgres -c "cd '$SCRIPT_DIR' && bash quick_test.sh"
|
||||||
|
;;
|
||||||
|
|
||||||
|
comprehensive|comp)
|
||||||
|
echo "Executing: comprehensive_security_test.sh $*"
|
||||||
|
echo ""
|
||||||
|
# Give postgres user access to the directory
|
||||||
|
chmod -R 755 "$SCRIPT_DIR"
|
||||||
|
# Run as postgres user with any additional arguments
|
||||||
|
su - postgres -c "cd '$SCRIPT_DIR' && bash comprehensive_security_test.sh $*"
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "ERROR: Unknown test type: $TEST_TYPE"
|
||||||
|
echo ""
|
||||||
|
echo "Usage: sudo ./run_tests_as_postgres.sh [quick|comprehensive] [options]"
|
||||||
|
echo ""
|
||||||
|
echo "Examples:"
|
||||||
|
echo " sudo ./run_tests_as_postgres.sh quick"
|
||||||
|
echo " sudo ./run_tests_as_postgres.sh comprehensive --quick"
|
||||||
|
echo " sudo ./run_tests_as_postgres.sh comprehensive --cli-only"
|
||||||
|
echo " sudo ./run_tests_as_postgres.sh comprehensive --verbose"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
||||||
|
echo " Test execution complete"
|
||||||
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
||||||
|
echo ""
|
||||||
Reference in New Issue
Block a user