Files
Charon/docs/plans/current_spec.md

46 KiB
Raw Blame History

Expose Build Version to Users - Implementation Plan

Date: January 30, 2026
Status: 📋 READY FOR IMPLEMENTATION
Goal: Enable nightly build users to easily report their exact version for bug triage


Executive Summary

This plan details how to expose build version information (including SHA, build date) to users via:

  1. A backend /health endpoint (already exists, already exposes version)
  2. A frontend UI footer display (already implemented in Layout.tsx)

Finding: The version exposure is already fully implemented. This document confirms the existing implementation and identifies minor enhancements.


1. Backend Analysis

1.1 Version Package

File: backend/internal/version/version.go

package version

const Name = "Charon"

var (
    Version   = "0.3.0"      // Overwritten via ldflags at build time
    BuildTime = "unknown"    // Overwritten via ldflags at build time
    GitCommit = "unknown"    // Overwritten via ldflags at build time
)

func Full() string {
    if BuildTime != "unknown" && GitCommit != "unknown" {
        return Version + " (commit: " + GitCommit + ", built: " + BuildTime + ")"
    }
    return Version
}

Status: Already has Version, BuildTime, and GitCommit variables that are injected at build time.

1.2 Health Handler

File: backend/internal/api/handlers/health_handler.go

func HealthHandler(c *gin.Context) {
    c.JSON(http.StatusOK, gin.H{
        "status":      "ok",
        "service":     version.Name,
        "version":     version.Version,
        "git_commit":  version.GitCommit,
        "build_time":  version.BuildTime,
        "internal_ip": getLocalIP(),
    })
}

Status: Already exposes version, git_commit, and build_time in /health endpoint.

1.3 Build Time Injection (Dockerfile)

File: Dockerfile

ARG VERSION=dev
ARG VCS_REF=unknown
ARG BUILD_DATE=unknown

# ldflags injection:
-X github.com/Wikid82/charon/backend/internal/version.Version=${VERSION}
-X github.com/Wikid82/charon/backend/internal/version.GitCommit=${VCS_REF}
-X github.com/Wikid82/charon/backend/internal/version.BuildTime=${BUILD_DATE}

Status: Dockerfile accepts VERSION, VCS_REF, and BUILD_DATE build args and injects them via ldflags.


2. Build Pipeline Analysis

2.1 Nightly Build Workflow

File: .github/workflows/nightly-build.yml

build-args: |
  VERSION=nightly-${{ github.sha }}

Current State:

  • VERSION is passed as nightly-${{ github.sha }} (full 40-char SHA)
  • VCS_REF is NOT passed (will default to "unknown")
  • BUILD_DATE is NOT passed (will default to "unknown")

Expected Response from /health for nightly builds:

{
  "status": "ok",
  "service": "Charon",
  "version": "nightly-abc123def456...",  // Full SHA (not ideal)
  "git_commit": "unknown",                // Missing!
  "build_time": "unknown"                 // Missing!
}

Update .github/workflows/nightly-build.yml to pass all build args:

build-args: |
  VERSION=nightly-${{ github.sha }}
  VCS_REF=${{ github.sha }}
  BUILD_DATE=${{ github.event.head_commit.timestamp || github.event.repository.pushed_at }}

Or more reliably with a timestamp step:

- name: Set build date
  id: build_date
  run: echo "date=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT

# Then in build-push-action:
build-args: |
  VERSION=nightly-${{ github.sha }}
  VCS_REF=${{ github.sha }}
  BUILD_DATE=${{ steps.build_date.outputs.date }}

3. Frontend Analysis

3.1 Health API Client

File: frontend/src/api/health.ts

export interface HealthResponse {
  status: string;
  service: string;
  version: string;
  git_commit: string;
  build_time: string;
}

export const checkHealth = async (): Promise<HealthResponse> => {
  const { data } = await client.get<HealthResponse>('/health');
  return data;
};

Status: Already fetches version, git_commit, and build_time from backend.

File: frontend/src/components/Layout.tsx

const { data: health } = useQuery({
  queryKey: ['health'],
  queryFn: checkHealth,
  staleTime: 1000 * 60 * 60, // 1 hour
});

// In sidebar footer (lines 293-302):
<div className="text-xs text-gray-500 dark:text-gray-500 text-center mb-2 flex flex-col gap-0.5">
  <span>Version {health?.version || 'dev'}</span>
  {health?.git_commit && health.git_commit !== 'unknown' && (
    <span className="text-[10px] opacity-75 font-mono">
      ({health.git_commit.substring(0, 7)})
    </span>
  )}
</div>

Status: Already displays version and short commit hash in sidebar footer.

Display behavior:

  • Shows: Version nightly-abc123def456... (full SHA from VERSION)
  • Shows: (abc1234) only if git_commit is set (currently "unknown" for nightly)

4. Gap Analysis

Component Status Issue
Backend version package Complete None
Backend health handler Complete None
Dockerfile ldflags Complete None
Nightly workflow ⚠️ Incomplete Missing VCS_REF and BUILD_DATE
Frontend API client Complete None
Frontend UI display Complete None

5. Implementation Tasks

Task 1: Update Nightly Build Workflow (REQUIRED)

File: .github/workflows/nightly-build.yml
Lines: ~137-139 (build-args section)

Change:

# FROM:
build-args: |
  VERSION=nightly-${{ github.sha }}

# TO:
build-args: |
  VERSION=nightly-${{ github.sha }}
  VCS_REF=${{ github.sha }}
  BUILD_DATE=${{ github.event.head_commit.timestamp }}

Alternative with reliable timestamp:

# Add step before build-push-action:
- name: Set build metadata
  id: build_meta
  run: |
    echo "date=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
    echo "short_sha=${GITHUB_SHA::7}" >> $GITHUB_OUTPUT

# Update build-args:
build-args: |
  VERSION=nightly-${{ steps.build_meta.outputs.short_sha }}
  VCS_REF=${{ github.sha }}
  BUILD_DATE=${{ steps.build_meta.outputs.date }}

Task 2: (OPTIONAL) Improve Version Display Format

If a shorter nightly version is preferred (e.g., nightly-abc1234 instead of full SHA):

Option A: Use short SHA in workflow (recommended):

VERSION=nightly-${GITHUB_SHA::7}

Option B: Truncate in frontend (already partially done for git_commit display)


6. Expected Result After Implementation

/health Response:

{
  "status": "ok",
  "service": "Charon",
  "version": "nightly-abc1234",
  "git_commit": "abc1234def5678901234567890abcdef12345678",
  "build_time": "2026-01-30T09:00:00Z",
  "internal_ip": "172.17.0.2"
}
Version nightly-abc1234
(abc1234)

7. Files to Modify

File Line(s) Change
.github/workflows/nightly-build.yml 137-139 Add VCS_REF and BUILD_DATE build-args

No Changes Required:

  • backend/internal/version/version.go - Already complete
  • backend/internal/api/handlers/health_handler.go - Already complete
  • frontend/src/api/health.ts - Already complete
  • frontend/src/components/Layout.tsx - Already complete
  • Dockerfile - Already complete

8. Testing Verification

After implementation, verify with:

# 1. Build with test args
docker build --build-arg VERSION=nightly-test123 \
             --build-arg VCS_REF=abc123def456 \
             --build-arg BUILD_DATE=2026-01-30T09:00:00Z \
             -t charon:test .

# 2. Run container
docker run -d -p 8080:8080 charon:test

# 3. Check health endpoint
curl http://localhost:8080/health | jq

# Expected output:
# {
#   "status": "ok",
#   "service": "Charon",
#   "version": "nightly-test123",
#   "git_commit": "abc123def456",
#   "build_time": "2026-01-30T09:00:00Z",
#   ...
# }

9. Summary

The version exposure feature is 90% complete. The only missing piece is passing VCS_REF and BUILD_DATE in the nightly build workflow. A single file change (.github/workflows/nightly-build.yml) will complete the implementation.

Component Lines of Code Effort
Workflow fix ~3 lines 5 min
Testing N/A 10 min
Total ~3 lines 15 min
2. Docker Run (One Command)
3. Alternative: GitHub Container Registry

Code Sample:

services:
  charon:
    image: wikid82/charon:latest
    container_name: charon
    restart: unless-stopped

Verdict: Zero mention of standalone binaries, native installation, or platform-specific installers.


3. Distribution Method

Source: docs/getting-started.md (Lines 1-150)

Supported Installation:

  • Docker Hub: wikid82/charon:latest
  • GitHub Container Registry: ghcr.io/wikid82/charon:latest

Migration Commands:

docker exec charon /app/charon migrate

Verdict: All documentation assumes Docker runtime.


4. GoReleaser Configuration ⚠️

Source: .goreleaser.yaml (Lines 1-122)

Current Build Targets:

builds:
  - id: linux
    goos: [linux]
    goarch: [amd64, arm64]
  
  - id: windows
    goos: [windows]
    goarch: [amd64]
  
  - id: darwin
    goos: [darwin]
    goarch: [amd64, arm64]

Observations:

  • Builds binaries for linux, windows, darwin
  • Creates archives (.tar.gz, .zip)
  • Generates Debian/RPM packages
  • These artifacts are never referenced in user documentation
  • No installation instructions for standalone binaries

Verdict: Unnecessary build targets creating unused artifacts.


5. Release Workflow Analysis

Source: .github/workflows/release-goreleaser.yml

What Gets Published:

  1. Docker images (multi-platform: linux/amd64, linux/arm64)
  2. SBOM (Software Bill of Materials)
  3. SLSA provenance attestation
  4. Cryptographic signatures (Cosign)
  5. ⚠️ Standalone binaries (unused)
  6. ⚠️ Archives (.tar.gz, .zip - unused)
  7. ⚠️ Debian/RPM packages (unused)

Verdict: Docker images are the primary (and only documented) distribution method.


6. Dockerfile Base Image

Source: Dockerfile (Lines 1-50)

# renovate: datasource=docker depName=debian versioning=docker
ARG CADDY_IMAGE=debian:trixie-slim@sha256:...

Verdict: Debian-based Linux container. No Windows/macOS container images exist.


7. User Base & Use Cases

Source: ARCHITECTURE.md

Target Audience:

"Simplify website and application hosting for home users and small teams"

Deployment Model:

"Monolithic architecture packaged as a single Docker container"

Verdict: Docker-first design with no enterprise/cloud-native multi-platform requirements.


Current Issue: Disk Space Implementation

Original Problem:

// backend/internal/models/systemmetrics.go
func UpdateDiskMetrics(db *gorm.DB) error {
    // TODO: Cross-platform disk space implementation
    // Currently hardcoded to "/" for Linux
    // Need platform detection for Windows (C:\) and macOS
}

Why This Is Complex:

  • Windows uses drive letters (C:\, D:\)
  • macOS uses /System/Volumes/Data
  • Windows requires golang.org/x/sys/windows syscalls
  • macOS requires golang.org/x/sys/unix with special mount handling
  • Testing requires platform-specific CI runners

Why This Is Unnecessary:

  • Charon only runs in Linux containers (Debian base image)
  • The host OS (Windows/macOS) is irrelevant - Docker abstracts it
  • The disk space check should monitor /app/data (container filesystem)

Old Plan Context (Now Superseded)

Previous Problem Description

The GetAvailableSpace() method in backend/internal/services/backup_service.go (lines 363-394) used Unix-specific syscalls that blocked Windows cross-compilation. This was mistakenly interpreted as requiring platform-specific implementations.

Why The Problem Was Misunderstood

  • Assumption: Users need to run Charon natively on Windows/macOS
  • Reality: Charon is Docker-only, runs in Linux containers regardless of host OS
  • Root Cause: GoReleaser configured to build unused Windows/macOS binaries

Simple Solution: Remove Unnecessary Build Targets

Changes to .goreleaser.yaml:

builds:
  - id: linux
    dir: backend
    main: ./cmd/api
    binary: charon
    env:
      - CGO_ENABLED=0
    goos:
      - linux
    goarch:
      - amd64
      - arm64
    ldflags:
      - -s -w
      - -X github.com/Wikid82/charon/backend/internal/version.Version={{.Version}}
      - -X github.com/Wikid82/charon/backend/internal/version.GitCommit={{.Commit}}
      - -X github.com/Wikid82/charon/backend/internal/version.BuildTime={{.Date}}

archives:
  - formats:
      - tar.gz
    id: linux
    ids:
      - linux
    name_template: >-
      {{ .ProjectName }}_
      {{- .Version }}_
      {{- .Os }}_
      {{- .Arch }}
    files:
      - LICENSE
      - README.md

nfpms:
  - id: packages
    ids:
      - linux
    package_name: charon
    vendor: Charon
    homepage: https://github.com/Wikid82/charon
    maintainer: Wikid82
    description: "Charon - A powerful reverse proxy manager"
    license: MIT
    formats:
      - deb
      - rpm

Removals:

  • windows build ID (lines 23-35)
  • darwin build ID (lines 37-51)
  • Windows archive format

Benefits:

  • Faster CI builds (no cross-compilation overhead)
  • Smaller release artifacts
  • Clearer distribution model (Docker-only)
  • Reduced maintenance burden
  • No platform-specific disk space code needed

Simplified Disk Space Implementation

File: backend/internal/services/backup_service.go

Current Implementation (already Linux-compatible):

func (s *BackupService) GetAvailableSpace() (int64, error) {
    var stat syscall.Statfs_t
    if err := syscall.Statfs(s.BackupDir, &stat); err != nil {
        return 0, fmt.Errorf("failed to get disk space: %w", err)
    }
    
    bsize := stat.Bsize
    bavail := stat.Bavail
    
    if bsize < 0 {
        return 0, fmt.Errorf("invalid block size %d", bsize)
    }
    
    if bavail > uint64(math.MaxInt64) {
        return math.MaxInt64, nil
    }
    
    available := int64(bavail) * int64(bsize)
    return available, nil
}

Recommended Change: Monitor /app/data instead of / for more accurate container volume metrics:

func (s *BackupService) GetAvailableSpace() (int64, error) {
    // Monitor the container data volume (or fallback to root)
    dataPath := "/app/data"
    
    var stat syscall.Statfs_t
    if err := syscall.Statfs(dataPath, &stat); err != nil {
        // Fallback to root filesystem if data mount doesn't exist
        if err := syscall.Statfs("/", &stat); err != nil {
            return 0, fmt.Errorf("failed to get disk space: %w", err)
        }
    }
    
    // Existing overflow protection logic...
    bsize := stat.Bsize
    bavail := stat.Bavail
    
    if bsize < 0 {
        return 0, fmt.Errorf("invalid block size %d", bsize)
    }
    
    if bavail > uint64(math.MaxInt64) {
        return math.MaxInt64, nil
    }
    
    available := int64(bavail) * int64(bsize)
    return available, nil
}

Rationale:

  • Monitors /app/data (user's persistent volume)
  • Falls back to / if volume not mounted
  • No platform detection needed
  • Works in all Docker environments (Linux host, macOS Docker Desktop, Windows WSL2)

Decision Matrix

Approach Pros Cons Recommendation
Remove Windows/macOS targets Aligns with actual architecture
Faster CI builds
Simpler codebase
No cross-platform complexity
⚠️ Can't distribute standalone binaries (never documented anyway) RECOMMENDED
Keep all platforms ⚠️ "Future-proofs" for potential pivot Wastes CI resources
Adds complexity
Misleads users
No documented use case
NOT RECOMMENDED

Implementation Tasks

Task 1: Update GoReleaser Configuration

File: .goreleaser.yaml
Changes:

  • Remove windows and darwin build definitions
  • Remove Windows archive format (zip)
  • Keep only linux/amd64 and linux/arm64
  • Update nfpms to reference only linux build ID

Estimated Effort: 15 minutes


Task 2: Remove Zig Cross-Compilation from CI

File: .github/workflows/release-goreleaser.yml
Changes:

  • Remove Install Cross-Compilation Tools (Zig) step (lines 52-56)
  • No longer needed for Linux-only builds

Estimated Effort: 5 minutes


Task 3: Simplify Disk Metrics (Optional Enhancement)

File: backend/internal/models/systemmetrics.go
Changes:

  • Update UpdateDiskMetrics() to monitor /app/data instead of /
  • Add fallback to / if data volume not mounted
  • Update comments to clarify Docker-only scope

Estimated Effort: 10 minutes


Task 4: Update Documentation

Files:

  • ARCHITECTURE.md - Add note about Docker-only distribution in "Build & Release Process" section
  • CONTRIBUTING.md - Remove any Windows/macOS build instructions

Estimated Effort: 10 minutes


Validation Checklist

After implementation:

  • CI release workflow completes successfully
  • Docker images build for linux/amd64 and linux/arm64
  • No Windows/macOS binaries in GitHub releases
  • backend/internal/services/backup_service.go still compiles
  • E2E tests pass against built image
  • Documentation reflects Docker-only distribution model

Future Considerations

If standalone binary distribution is needed in the future:

  1. Revisit Architecture:

    • Extract backend into CLI tool
    • Bundle frontend as embedded assets
    • Provide platform-specific installers (.exe, .dmg, .deb)
  2. Update Documentation:

    • Add installation guides for each platform
    • Provide troubleshooting for native installs
  3. Re-add Build Targets:

    • Restore windows and darwin in .goreleaser.yaml
    • Implement platform detection for disk metrics with build tags
    • Add CI runners for each platform (Windows Server, macOS)

Current Priority: None. Docker-only distribution meets all documented use cases.


Conclusion

Charon is explicitly designed, documented, and distributed as a Docker-only application. The Windows and macOS build targets in GoReleaser serve no purpose and should be removed.

Recommended Next Steps:

  1. Remove unused build targets from .goreleaser.yaml
  2. Remove Zig cross-compilation step from release workflow
  3. (Optional) Update disk metrics to monitor /app/data volume
  4. Update documentation to clarify Docker-only scope
  5. Proceed with simplified implementation (no platform detection needed)

Plan Status: Ready for Implementation
Confidence Level: High (100% - all evidence aligns)
Risk Assessment: Low (removing unused features)
Total Estimated Effort: 40 minutes (configuration changes + testing)


Archived: Old Plan (Platform-Specific Build Tags)

The previous plan assumed cross-platform binary support was needed and proposed implementing platform-specific disk space checks using build tags. This approach is no longer necessary given the Docker-only distribution model.

Key Insight from Research:

  • Charon runs in Linux containers regardless of host OS
  • Windows/macOS users run Docker Desktop (which uses Linux VMs internally)
  • The container always sees a Linux filesystem
  • No platform detection needed

Historical Context:

}

// Safe to convert now
availBlocks := int64(bavail)
blockSize := int64(bsize)

// Check for multiplication overflow
if availBlocks > 0 && blockSize > math.MaxInt64/availBlocks {
	return math.MaxInt64, nil
}

return availBlocks * blockSize, nil

}


**Key Points:**
- Preserves existing overflow protection logic
- Maintains gosec compliance (G115)
- No functional changes from current implementation

---

### Phase 3: Windows Implementation

#### File: `backup_service_disk_windows.go`

```go
//go:build windows

package services

import (
	"fmt"
	"math"
	"path/filepath"
	"strings"

	"golang.org/x/sys/windows"
)

// getAvailableSpace returns the available disk space in bytes for the given directory.
// Windows implementation using GetDiskFreeSpaceExW with long path support.
func getAvailableSpace(dir string) (int64, error) {
	// Normalize path for Windows
	cleanPath := filepath.Clean(dir)
	
	// Handle long paths (>260 chars) by prepending \\?\ prefix
	// This enables paths up to 32,767 characters on Windows
	if len(cleanPath) > 260 && !strings.HasPrefix(cleanPath, `\\?\`) {
		// Convert to absolute path first
		absPath, err := filepath.Abs(cleanPath)
		if err != nil {
			return 0, fmt.Errorf("failed to resolve absolute path for '%s': %w", dir, err)
		}
		// Add long path prefix
		cleanPath = `\\?\` + absPath
	}
	
	// Convert to UTF-16 for Windows API
	utf16Ptr, err := windows.UTF16PtrFromString(cleanPath)
	if err != nil {
		return 0, fmt.Errorf("failed to convert path '%s' to UTF16: %w", dir, err)
	}

	var freeBytesAvailable, totalBytes, totalFreeBytes uint64
	err = windows.GetDiskFreeSpaceEx(
		utf16Ptr,
		&freeBytesAvailable,
		&totalBytes,
		&totalFreeBytes,
	)
	if err != nil {
		return 0, fmt.Errorf("failed to get disk space for path '%s': %w", dir, err)
	}

	// freeBytesAvailable already accounts for quotas and user restrictions
	// Check if value exceeds max int64
	if freeBytesAvailable > uint64(math.MaxInt64) {
		return math.MaxInt64, nil
	}

	return int64(freeBytesAvailable), nil
}

Key Points:

  1. API Choice: GetDiskFreeSpaceEx vs GetDiskFreeSpace

    • GetDiskFreeSpaceEx respects disk quotas (correct behavior)
    • Returns bytes directly (no block size calculation needed)
    • Supports paths > 260 characters with proper handling
  2. Path Handling:

    • Converts Go string to UTF-16 (Windows native format)
    • Handles Unicode paths correctly
    • Windows Long Path Support: For paths > 260 characters, automatically prepends \\?\ prefix
    • Normalizes forward slashes to backslashes for Windows API compatibility
  3. Overflow Protection:

    • Maintains same logic as Unix version
    • Caps at math.MaxInt64 for consistency
  4. Return Value:

    • Uses freeBytesAvailable (not totalFreeBytes)
    • Correctly accounts for user quotas and restrictions

Phase 4: Refactor Main File

File: backup_service.go

Modification:

// BEFORE (lines 363-394): Direct implementation

// AFTER: Delegate to platform-specific function
func (s *BackupService) GetAvailableSpace() (int64, error) {
	return getAvailableSpace(s.BackupDir)
}

Changes:

  1. Remove var stat syscall.Statfs_t and all calculation logic
  2. Replace with single call to platform-specific getAvailableSpace()
  3. Platform selection handled at compile-time via build tags

Benefits:

  • Simplified main file
  • No runtime conditionals
  • Zero performance overhead
  • Same API for all callers

Phase 5: Dependency Management

5.1 Add Windows Dependency

Command:

cd backend
go get golang.org/x/sys/windows@latest
go mod tidy

Expected go.mod Change:

require (
    // ... existing deps ...
    golang.org/x/sys v0.40.0  // existing
)

Note: golang.org/x/sys is already present in go.mod (line 95), but we need to ensure windows subpackage is available. It's part of the same module, so no new direct dependency needed.

5.2 Verify Build Tags

Test Matrix:

# Test Unix build
GOOS=linux GOARCH=amd64 go build ./cmd/api

# Test Darwin build
GOOS=darwin GOARCH=arm64 go build ./cmd/api

# Test Windows build (this currently fails)
GOOS=windows GOARCH=amd64 go build ./cmd/api

Phase 6: Testing Strategy

6.1 Unit Tests

New Test Files:

backend/internal/services/
├── backup_service_disk_unix_test.go
└── backup_service_disk_windows_test.go

Unix Test (backup_service_disk_unix_test.go):

//go:build unix

package services

import (
	"os"
	"testing"

	"github.com/stretchr/testify/assert"
	"github.com/stretchr/testify/require"
)

func TestGetAvailableSpace_Unix(t *testing.T) {
	// Test with temp directory
	tmpDir := t.TempDir()
	
	space, err := getAvailableSpace(tmpDir)
	require.NoError(t, err)
	assert.Greater(t, space, int64(0), "Available space should be positive")
	
	// Test with invalid directory
	space, err = getAvailableSpace("/nonexistent/path")
	assert.Error(t, err)
	assert.Equal(t, int64(0), space)
}

func TestGetAvailableSpace_UnixRootFS(t *testing.T) {
	// Test with root filesystem
	space, err := getAvailableSpace("/")
	require.NoError(t, err)
	assert.Greater(t, space, int64(0))
}

func TestGetAvailableSpace_UnixPermissionDenied(t *testing.T) {
	// Test permission denied scenario
	// Try to stat a path we definitely don't have access to
	if os.Getuid() == 0 {
		t.Skip("Test requires non-root user")
	}
	
	// Most Unix systems have restricted directories
	restrictedPaths := []string{"/root", "/lost+found"}
	
	for _, path := range restrictedPaths {
		if _, err := os.Stat(path); os.IsNotExist(err) {
			continue // Path doesn't exist on this system
		}
		
		space, err := getAvailableSpace(path)
		if err != nil {
			// Expected: permission denied
			assert.Contains(t, err.Error(), "failed to get disk space")
			assert.Equal(t, int64(0), space)
			return // Test passed
		}
	}
	
	t.Skip("No restricted paths found to test permission denial")
}

func TestGetAvailableSpace_UnixSymlink(t *testing.T) {
	// Test symlink resolution - statfs follows symlinks
	tmpDir := t.TempDir()
	targetDir := filepath.Join(tmpDir, "target")
	symlinkPath := filepath.Join(tmpDir, "link")
	
	err := os.Mkdir(targetDir, 0755)
	require.NoError(t, err)
	
	err = os.Symlink(targetDir, symlinkPath)
	require.NoError(t, err)
	
	// Should follow symlink and return space for target
	space, err := getAvailableSpace(symlinkPath)
	require.NoError(t, err)
	assert.Greater(t, space, int64(0))
	
	// Compare with direct target query (should match filesystem)
	targetSpace, err := getAvailableSpace(targetDir)
	require.NoError(t, err)
	assert.Equal(t, targetSpace, space, "Symlink should resolve to same filesystem")
}

Windows Test (backup_service_disk_windows_test.go):

//go:build windows

package services

import (
	"os"
	"testing"

	"github.com/stretchr/testify/assert"
	"github.com/stretchr/testify/require"
)

func TestGetAvailableSpace_Windows(t *testing.T) {
	// Test with temp directory
	tmpDir := t.TempDir()
	
	space, err := getAvailableSpace(tmpDir)
	require.NoError(t, err)
	assert.Greater(t, space, int64(0), "Available space should be positive")
	
	// Test with C: drive (usually exists on Windows)
	space, err = getAvailableSpace("C:\\")
	require.NoError(t, err)
	assert.Greater(t, space, int64(0))
}

func TestGetAvailableSpace_WindowsInvalidPath(t *testing.T) {
	// Test with invalid drive letter
	space, err := getAvailableSpace("Z:\\nonexistent\\path")
	// May error or return 0 depending on Windows version
	if err != nil {
		assert.Equal(t, int64(0), space)
	}
}

func TestGetAvailableSpace_WindowsLongPath(t *testing.T) {
	// Test long path handling (>260 characters)
	tmpBase := t.TempDir()
	
	// Create a deeply nested directory structure to exceed MAX_PATH
	longPath := tmpBase
	for i := 0; i < 20; i++ {
		longPath = filepath.Join(longPath, "verylongdirectorynamewithlotsofcharacters")
	}
	
	err := os.MkdirAll(longPath, 0755)
	require.NoError(t, err, "Should create long path with \\\\?\\ prefix support")
	
	// Test disk space check on long path
	space, err := getAvailableSpace(longPath)
	require.NoError(t, err, "Should query disk space for paths >260 chars")
	assert.Greater(t, space, int64(0), "Available space should be positive")
}

func TestGetAvailableSpace_WindowsUnicodePath(t *testing.T) {
	// Test Unicode path handling to ensure UTF-16 conversion works correctly
	tmpBase := t.TempDir()
	
	// Create directory with Unicode characters (emoji, CJK, Arabic)
	unicodeDirName := "test_🚀_测试_اختبار"
	unicodePath := filepath.Join(tmpBase, unicodeDirName)
	
	err := os.Mkdir(unicodePath, 0755)
	require.NoError(t, err, "Should create directory with Unicode name")
	
	// Test disk space check on Unicode path
	space, err := getAvailableSpace(unicodePath)
	require.NoError(t, err, "Should handle Unicode path names")
	assert.Greater(t, space, int64(0), "Available space should be positive")
}

func TestGetAvailableSpace_WindowsPermissionDenied(t *testing.T) {
	// Test permission denied scenario
	// On Windows, system directories like C:\System Volume Information
	// typically deny access to non-admin users
	space, err := getAvailableSpace("C:\\System Volume Information")
	if err != nil {
		// Expected: access denied error
		assert.Contains(t, err.Error(), "failed to get disk space")
		assert.Equal(t, int64(0), space)
	} else {
		// If no error (running as admin), space should still be valid
		assert.GreaterOrEqual(t, space, int64(0))
	}
}

6.2 Integration Testing

Existing Tests Impact:

  • backend/internal/services/backup_service_test.go should work unchanged
  • If tests mock disk space, update mocks to use new signature
  • Add CI matrix testing for Windows builds

CI/CD Testing:

Add platform-specific test matrix to ensure all implementations are validated:

# .github/workflows/go-tests.yml
name: Go Tests

on:
  pull_request:
    paths:
      - 'backend/**/*.go'
      - 'backend/go.mod'
      - 'backend/go.sum'
  push:
    branches:
      - main

jobs:
  test-cross-platform:
    name: Test on ${{ matrix.os }}
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
        go-version: ['1.25.6']
    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - name: Set up Go
        uses: actions/setup-go@v5
        with:
          go-version: ${{ matrix.go-version }}
          cache: true
          cache-dependency-path: backend/go.sum

      - name: Run platform-specific tests
        working-directory: backend
        run: |
          go test -v -race -coverprofile=coverage.txt -covermode=atomic ./internal/services/...

      - name: Upload coverage
        uses: codecov/codecov-action@v4
        with:
          files: ./backend/coverage.txt
          flags: ${{ matrix.os }}
          token: ${{ secrets.CODECOV_TOKEN }}

  verify-cross-compilation:
    name: Cross-compile for ${{ matrix.goos }}/${{ matrix.goarch }}
    runs-on: ubuntu-latest
    strategy:
      matrix:
        include:
          - goos: linux
            goarch: amd64
          - goos: linux
            goarch: arm64
          - goos: darwin
            goarch: amd64
          - goos: darwin
            goarch: arm64
          - goos: windows
            goarch: amd64
    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - name: Set up Go
        uses: actions/setup-go@v5
        with:
          go-version: '1.25.6'

      - name: Build for ${{ matrix.goos }}/${{ matrix.goarch }}
        working-directory: backend
        env:
          GOOS: ${{ matrix.goos }}
          GOARCH: ${{ matrix.goarch }}
          CGO_ENABLED: 0
        run: |
          go build -v -o /tmp/charon-${{ matrix.goos }}-${{ matrix.goarch }} ./cmd/api

6.3 Manual Testing Checklist

Unix/Linux:

  • Backup creation succeeds with sufficient space
  • Backup creation fails gracefully with insufficient space
  • Log messages show correct available space

Windows:

  • Binary compiles successfully
  • Same functionality as Unix version
  • Handles UNC paths (\server\share)
  • Respects disk quotas

Phase 7: Documentation Updates

7.1 Code Documentation

File-level comments:

// backup_service_disk_unix.go
// Platform-specific implementation of disk space queries for Unix-like systems.
// This file is compiled only on Linux, macOS, BSD, and other Unix variants.

// backup_service_disk_windows.go
// Platform-specific implementation of disk space queries for Windows.
// Uses Win32 API GetDiskFreeSpaceEx to query filesystem statistics.

7.2 Architecture Documentation

Update ARCHITECTURE.md:

  • Add section on platform-specific implementations
  • Document build tag strategy
  • List platform-specific files

Update docs/development/building.md (if exists):

  • Cross-compilation requirements
  • Platform-specific testing instructions

7.3 Developer Guidance

Create docs/development/platform-specific-code.md:

# Platform-Specific Code Guidelines

## When to Use Build Tags

Use build tags when:
- Accessing OS-specific APIs (syscalls, Win32, etc.)
- Functionality differs by platform
- No cross-platform abstraction exists

## Build Tag Reference

- `//go:build unix` - Linux, macOS, BSD, Solaris
- `//go:build windows` - Windows
- `//go:build darwin` - macOS only
- `//go:build linux` - Linux only

## File Naming Convention

Pattern: `{feature}_{platform}.go`
Examples:
- `backup_service_disk_unix.go`
- `backup_service_disk_windows.go`

Phase 8: Configuration Updates

8.1 Codecov Configuration

Current codecov.yml (line 15-31):

ignore:
  - "**/*_test.go"
  - "**/testdata/**"
  - "**/mocks/**"

No changes needed:

  • Platform-specific files are production code
  • Should be included in coverage
  • Tests run on each platform will cover respective implementation

Rationale:

  • Unix tests run on Linux CI runners → cover *_unix.go
  • Windows tests run on Windows CI runners → cover *_windows.go
  • Combined coverage shows full platform coverage

8.2 .gitignore Updates

Current .gitignore: No changes needed for source files.

Verify exclusions:

# Already covered:
*.test
*.out
backend/bin/

8.3 Linter Configuration

Verify gopls/staticcheck:

  • Build tags are standard Go feature
  • No linter configuration changes needed
  • GoReleaser will compile each platform separately

Build Validation

Pre-Merge Checklist

Compilation Tests:

# Unix targets
GOOS=linux GOARCH=amd64 go build -o /dev/null ./backend/cmd/api
GOOS=darwin GOARCH=arm64 go build -o /dev/null ./backend/cmd/api

# Windows target (currently fails)
GOOS=windows GOARCH=amd64 go build -o /dev/null ./backend/cmd/api

Post-Implementation: All three commands should succeed with exit code 0.

Unit Test Validation:

# Run on each platform
go test ./backend/internal/services/... -v

# Expected output includes:
# - TestGetAvailableSpace_Unix (on Unix)
# - TestGetAvailableSpace_Windows (on Windows)

GoReleaser Integration

.goreleaser.yaml (lines 23-35):

- id: windows
  dir: backend
  main: ./cmd/api
  binary: charon
  env:
    - CGO_ENABLED=0  # ✅ Maintained: static binary
  goos:
    - windows
  goarch:
    - amd64

Expected Behavior After Fix:

  • GoReleaser snapshot builds succeed
  • Windows binary in dist/windows_windows_amd64_v1/
  • Binary size similar to Linux/Darwin variants

Risk Assessment & Mitigation

Risks

Risk Likelihood Impact Mitigation
Windows API fails on network drives Medium Medium Document UNC path limitations, add error handling
Path encoding issues (Unicode) Low Medium UTF-16 conversion with error handling
Quota calculation differs Low Low Use freeBytesAvailable (quota-aware)
Missing test coverage on Windows Medium Low Add CI Windows runner for tests
Breaking existing Unix behavior Low High Preserve existing logic byte-for-byte

Rollback Plan

If Windows implementation causes issues:

  1. Revert to Unix-only with build tag exclusion:
    //go:build !windows
    
  2. Update GoReleaser to skip Windows target temporarily
  3. File issue to investigate Windows-specific failures

Revert Complexity: Low (isolated files, no API changes)


Timeline & Effort Estimate

Breakdown

Phase Task Effort Dependencies
1 File structure refactoring 30 min None
2 Unix implementation 15 min Phase 1
3 Windows implementation 1 hour Phase 1, research
4 Main file refactor 15 min Phase 2, 3
5 Dependency management 10 min None
6 Unit tests (both platforms) 1.5 hours Phase 2, 3
7 Documentation 45 min Phase 4
8 Configuration updates 15 min Phase 6
Total ~4.5 hours

Milestones

  • M1: Unix implementation compiles (Phase 1-2)
  • M2: Windows implementation compiles (Phase 3)
  • M3: All platforms compile successfully (Phase 4-5)
  • M4: Tests pass on Unix (Phase 6)
  • M5: Tests pass on Windows (Phase 6)
  • M6: Documentation complete (Phase 7)
  • M7: Ready for merge (Phase 8)

Success Criteria

Functional Requirements

  • GOOS=windows GOARCH=amd64 go build succeeds without errors
  • GetAvailableSpace() returns accurate values on Windows
  • Existing Unix behavior unchanged (byte-for-byte identical)
  • All existing tests pass without modification
  • New platform-specific tests added and passing

Non-Functional Requirements

  • Zero runtime performance overhead (compile-time selection)
  • No new external dependencies (uses existing golang.org/x/sys)
  • Codecov shows >85% coverage for new files
  • GoReleaser nightly builds include Windows binaries
  • Documentation updated for platform-specific code patterns

Quality Gates

  • No gosec findings on new code
  • staticcheck passes on all platforms
  • golangci-lint passes
  • No breaking API changes
  • Windows binary size < 50MB (similar to Linux)

Known Limitations & Platform-Specific Behavior

Disk Quotas

Windows:

  • GetDiskFreeSpaceEx respects user disk quotas configured via NTFS
  • freeBytesAvailable reflects quota-limited space (correct behavior)
  • If user has 10GB quota on 100GB volume with 50GB free, returns ~10GB

Unix:

  • syscall.Statfs returns filesystem-level statistics
  • Does NOT account for user quotas set via quota, edquota, or XFS project quotas
  • Returns physical available space regardless of quota limits
  • Recommendation: For quota-aware backups on Unix, implement separate quota checking via quotactl() syscall (future enhancement)

Mount Points and Virtual Filesystems

Both Platforms:

  • Query operates on the filesystem containing the path, not the path's parent
  • If backup dir is /mnt/backup on separate mount, returns that mount's space
  • Virtual filesystems (tmpfs, ramfs, procfs) return valid stats but may not reflect persistent storage

Unix Specific:

  • /proc, /sys, /dev return non-zero space (virtual filesystems)
  • Network mounts (NFS, CIFS) return remote filesystem stats (may be stale)
  • Bind mounts resolve to underlying filesystem

Windows Specific:

  • UNC paths (\\server\share) supported but require network access
  • Mounted volumes (NTFS junctions, symbolic links) follow to target
  • Drive letters always resolve to root of volume

Unix:

  • syscall.Statfs follows symlinks to target directory
  • If /backup/mnt/external/backup, queries /mnt/external filesystem
  • Broken symlinks return error ("no such file or directory")

Windows:

  • GetDiskFreeSpaceEx follows junction points and symbolic links
  • Reparse points (directory symlinks) resolve to target volume
  • Hard links not applicable to directories (Windows limitation)

Path Length Limits

Unix:

  • No practical path length limit on modern systems (Linux: 4096 bytes, macOS: 1024 bytes)
  • Individual filename component limit: 255 bytes

Windows:

  • Legacy applications: MAX_PATH = 260 characters (including drive and null terminator)
  • Long path support: Up to 32,767 characters with \\?\ prefix (handled automatically in our implementation)
  • Registry requirement: Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem\LongPathsEnabled = 1 (Windows 10 1607+)
  • Limitation: Some third-party backup tools may not support long paths

Error Handling Edge Cases

Permission Denied:

  • Unix: Returns syscall.EACCES wrapped in error
  • Windows: Returns syscall.ERROR_ACCESS_DENIED wrapped in error
  • Behavior: Backup creation should fail gracefully with clear error message

Path Does Not Exist:

  • Unix: Returns syscall.ENOENT
  • Windows: Returns syscall.ERROR_FILE_NOT_FOUND or ERROR_PATH_NOT_FOUND
  • Behavior: Create parent directories before calling space check

Network Timeouts:

  • Both platforms: Network filesystem queries can hang indefinitely
  • Mitigation: Document that network paths may cause slow backup starts
  • Future: Add timeout context to space check calls

Overflow and Large Filesystems

Both Platforms:

  • Cap return value at math.MaxInt64 (9,223,372,036,854,775,807 bytes ≈ 8 exabytes)
  • Filesystems larger than 8EB report max value (edge case, unlikely until 2030s)
  • Block size calculation protected against multiplication overflow

Concurrent Access

Both Platforms:

  • Space check is a snapshot at query time, not transactional
  • Available space may decrease between check and backup write
  • Mitigation: Pre-flight check provides best-effort validation; backup write handles actual out-of-space errors

Future Enhancements

Out of Scope (This PR)

  1. UNC Path Support: Full support for Windows network paths (\\server\share)

    • Current implementation supports basic UNC paths via Win32 API
    • Advanced scenarios (DFS, mapped drives) deferred
  2. Disk Quota Management: Proactive quota warnings

    • Could add separate endpoint for quota information
    • Requires additional Win32 API calls
  3. Real-time Space Monitoring: Filesystem watcher for space changes

    • Would require platform-specific event listeners
    • Significant scope expansion
  4. Cross-Platform Backup Restoration: Handling Windows vs Unix path separators in archives

    • Archive format already uses forward slashes (zip standard)
    • No changes needed for basic compatibility

Technical Debt

None identified. This implementation:

  • Follows Go best practices for platform-specific code
  • Uses standard library and official golang.org/x extensions
  • Maintains backward compatibility
  • Adds no unnecessary complexity

References

Go Documentation

Windows API

Similar Implementations

  • Go stdlib: os.Stat() uses build tags for platform-specific Sys() implementation
  • Docker: Uses golang.org/x/sys for platform-specific volume operations
  • Prometheus: Platform-specific collectors via build tags

Project Files

  • GoReleaser config: .goreleaser.yaml (lines 23-35)
  • Nightly CI: .github/workflows/nightly-build.yml (lines 268-285)
  • Backend go.mod: backend/go.mod (line 95: golang.org/x/sys v0.40.0)

Appendix: Build Tag Examples in Codebase

Current Usage (from analysis):

  • backend/integration/*_test.go - Use //go:build integration for integration tests
  • backend/internal/api/handlers/security_handler_test_fixed.go - Uses build tags

Pattern Established: Build tags are already in use for test isolation. This PR extends the pattern to platform-specific production code.


Implementation Order

Recommended Sequence:

  1. Create backup_service_disk_unix.go (copy existing logic)
  2. Test Unix compilation: GOOS=linux go build
  3. Create backup_service_disk_windows.go (new implementation)
  4. Test Windows compilation: GOOS=windows go build
  5. Refactor backup_service.go to delegate
  6. Add unit tests for both platforms
  7. Update documentation
  8. Verify GoReleaser builds all targets

Critical Path: Phase 3 (Windows implementation) is the longest and most complex. Start research on Win32 API early.


Plan Version: 1.1 Created: 2026-01-30 Updated: 2026-01-30 Author: Planning Agent Status: Ready for Implementation


Plan Revision History

v1.1 (2026-01-30)

  • Added Windows long path support with \\?\ prefix for paths > 260 characters
  • Removed unused syscall and unsafe imports from Windows implementation
  • Added missing test cases: long paths, Unicode paths, permission denied, symlinks
  • Added detailed CI/CD matrix configuration with actual workflow YAML
  • Documented limitations: quotas, mount points, symlinks, path lengths
  • Enhanced error messages with path context in all error returns
  • Removed out-of-scope sections: GoReleaser v2 migration, SQLite driver changes (separate issue)

v1.0 (2026-01-30)

  • Initial plan for cross-platform disk space check implementation

Out of Scope

The following items are explicitly excluded from this implementation plan and may be addressed in separate issues:

1. GoReleaser v1 → v2 Migration

  • Rationale: Cross-platform disk space check is independent of release tooling
  • Status: Tracked in separate issue for GoReleaser configuration updates
  • Priority: Can be addressed after disk space check implementation

2. SQLite Driver Migration

  • Rationale: Database driver choice is independent of disk space queries
  • Status: Current CGO-based SQLite driver works for all platforms
  • Priority: Performance optimization, not a blocking issue for Windows compilation

3. Nightly Build CI/CD Issues

  • Rationale: CI/CD pipeline fixes are separate from source code changes
  • Status: Tracked in separate workflow configuration issues
  • Priority: Can be addressed in parallel or after implementation