// main.go package main import ( "bufio" "context" "crypto/hmac" "crypto/sha256" "encoding/hex" "flag" "fmt" "io" "mime" "net" "net/http" "net/url" "os" "os/exec" "os/signal" "path/filepath" "runtime" "strconv" "strings" "sync" "syscall" "time" "github.com/dutchcoders/go-clamd" // ClamAV integration "github.com/go-redis/redis/v8" // Redis integration "github.com/patrickmn/go-cache" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promhttp" "github.com/shirou/gopsutil/cpu" "github.com/shirou/gopsutil/disk" "github.com/shirou/gopsutil/host" "github.com/shirou/gopsutil/mem" "github.com/sirupsen/logrus" "github.com/spf13/viper" ) // parseSize converts a human-readable size string to bytes func parseSize(sizeStr string) (int64, error) { sizeStr = strings.TrimSpace(sizeStr) if len(sizeStr) < 2 { return 0, fmt.Errorf("invalid size: %s", sizeStr) } unit := sizeStr[len(sizeStr)-2:] valueStr := sizeStr[:len(sizeStr)-2] value, err := strconv.Atoi(valueStr) if err != nil { return 0, fmt.Errorf("invalid size value: %s", valueStr) } switch strings.ToUpper(unit) { case "KB": return int64(value) * 4, nil case "MB": return int64(value) * 1024 * 1024, nil case "GB": return int64(value) * 1024 * 1024 * 1024, nil case "TB": return int64(value) * 1024 * 1024 * 1024 * 1024, nil default: return 0, fmt.Errorf("unknown size unit: %s", unit) } } // parseTTL converts a human-readable TTL string to a time.Duration func parseTTL(ttlStr string) (time.Duration, error) { ttlStr = strings.TrimSpace(ttlStr) if len(ttlStr) < 2 { return 0, fmt.Errorf("invalid TTL: %s", ttlStr) } unit := ttlStr[len(ttlStr)-1:] valueStr := ttlStr[:len(ttlStr)-1] value, err := strconv.Atoi(valueStr) if err != nil { return 0, fmt.Errorf("invalid TTL value: %s", valueStr) } switch strings.ToUpper(unit) { case "D": return time.Duration(value) * 24 * time.Hour, nil case "M": return time.Duration(value) * 30 * 24 * time.Hour, nil case "Y": return time.Duration(value) * 365 * 24 * time.Hour, nil default: return 0, fmt.Errorf("unknown TTL unit: %s", unit) } } // Configuration structures type ServerConfig struct { ListenPort string `mapstructure:"ListenPort"` UnixSocket bool `mapstructure:"UnixSocket"` StoragePath string `mapstructure:"StoragePath"` LogLevel string `mapstructure:"LogLevel"` LogFile string `mapstructure:"LogFile"` MetricsEnabled bool `mapstructure:"MetricsEnabled"` MetricsPort string `mapstructure:"MetricsPort"` FileTTL string `mapstructure:"FileTTL"` MinFreeBytes string `mapstructure:"MinFreeBytes"` DeduplicationEnabled bool `mapstructure:"DeduplicationEnabled"` MinFreeByte string `mapstructure:"MinFreeByte"` AutoAdjustWorkers bool `mapstructure:"AutoAdjustWorkers"` } type TimeoutConfig struct { ReadTimeout string `mapstructure:"ReadTimeout"` WriteTimeout string `mapstructure:"WriteTimeout"` IdleTimeout string `mapstructure:"IdleTimeout"` } type SecurityConfig struct { Secret string `mapstructure:"Secret"` } type VersioningConfig struct { EnableVersioning bool `mapstructure:"EnableVersioning"` MaxVersions int `mapstructure:"MaxVersions"` } type UploadsConfig struct { ResumableUploadsEnabled bool `mapstructure:"ResumableUploadsEnabled"` ChunkedUploadsEnabled bool `mapstructure:"ChunkedUploadsEnabled"` ChunkSize string `mapstructure:"ChunkSize"` AllowedExtensions []string `mapstructure:"AllowedExtensions"` } type ClamAVConfig struct { ClamAVEnabled bool `mapstructure:"ClamAVEnabled"` ClamAVSocket string `mapstructure:"ClamAVSocket"` NumScanWorkers int `mapstructure:"NumScanWorkers"` ScanFileExtensions []string `mapstructure:"ScanFileExtensions"` } type RedisConfig struct { RedisEnabled bool `mapstructure:"RedisEnabled"` RedisDBIndex int `mapstructure:"RedisDBIndex"` RedisAddr string `mapstructure:"RedisAddr"` RedisPassword string `mapstructure:"RedisPassword"` RedisHealthCheckInterval string `mapstructure:"RedisHealthCheckInterval"` } type WorkersConfig struct { NumWorkers int `mapstructure:"NumWorkers"` UploadQueueSize int `mapstructure:"UploadQueueSize"` } type FileConfig struct { FileRevision int `mapstructure:"FileRevision"` } type ISOConfig struct { Enabled bool `mapstructure:"enabled"` Size string `mapstructure:"size"` MountPoint string `mapstructure:"mountpoint"` Charset string `mapstructure:"charset"` } type Config struct { Server ServerConfig `mapstructure:"server"` Timeouts TimeoutConfig `mapstructure:"timeouts"` Security SecurityConfig `mapstructure:"security"` Versioning VersioningConfig `mapstructure:"versioning"` Uploads UploadsConfig `mapstructure:"uploads"` ClamAV ClamAVConfig `mapstructure:"clamav"` Redis RedisConfig `mapstructure:"redis"` Workers WorkersConfig `mapstructure:"workers"` File FileConfig `mapstructure:"file"` ISO ISOConfig `mapstructure:"iso"` } type UploadTask struct { AbsFilename string Request *http.Request Result chan error } type ScanTask struct { AbsFilename string Result chan error } type NetworkEvent struct { Type string Details string } var ( conf Config versionString string = "v2.0-dev" log = logrus.New() uploadQueue chan UploadTask networkEvents chan NetworkEvent fileInfoCache *cache.Cache clamClient *clamd.Clamd redisClient *redis.Client redisConnected bool mu sync.RWMutex uploadDuration prometheus.Histogram uploadErrorsTotal prometheus.Counter uploadsTotal prometheus.Counter downloadDuration prometheus.Histogram downloadsTotal prometheus.Counter downloadErrorsTotal prometheus.Counter memoryUsage prometheus.Gauge cpuUsage prometheus.Gauge activeConnections prometheus.Gauge requestsTotal *prometheus.CounterVec goroutines prometheus.Gauge uploadSizeBytes prometheus.Histogram downloadSizeBytes prometheus.Histogram scanQueue chan ScanTask ScanWorkers = 5 ) const ( MinFreeBytes = 1 << 30 ) var bufferPool = sync.Pool{ New: func() interface{} { return make([]byte, 32*1024) }, } const maxConcurrentOperations = 10 var semaphore = make(chan struct{}, maxConcurrentOperations) func main() { setDefaults() var configFile string flag.StringVar(&configFile, "config", "./config.toml", "Path to configuration file \"config.toml\".") flag.Parse() err := readConfig(configFile, &conf) if err != nil { log.Fatalf("Error reading config: %v", err) } log.Info("Configuration loaded successfully.") initializeWorkerSettings(&conf.Server, &conf.Workers, &conf.ClamAV) if conf.ISO.Enabled { err = verifyAndCreateISOContainer() if err != nil { log.Fatalf("ISO container verification failed: %v", err) } } fileInfoCache = cache.New(5*time.Minute, 10*time.Minute) err = os.MkdirAll(conf.Server.StoragePath, os.ModePerm) if err != nil { log.Fatalf("Error creating store directory: %v", err) } log.WithField("directory", conf.Server.StoragePath).Info("Store directory is ready") err = checkFreeSpaceWithRetry(conf.Server.StoragePath, 3, 5*time.Second) if err != nil { log.Fatalf("Insufficient free space: %v", err) } setupLogging() logSystemInfo() initMetrics() log.Info("Prometheus metrics initialized.") uploadQueue = make(chan UploadTask, conf.Workers.UploadQueueSize) scanQueue = make(chan ScanTask, conf.Workers.UploadQueueSize) networkEvents = make(chan NetworkEvent, 100) log.Info("Upload, scan, and network event channels initialized.") ctx, cancel := context.WithCancel(context.Background()) defer cancel() go monitorNetwork(ctx) go handleNetworkEvents(ctx) go updateSystemMetrics(ctx) if conf.ClamAV.ClamAVEnabled { clamClient, err = initClamAV(conf.ClamAV.ClamAVSocket) if err != nil { log.WithError(err).Warn("ClamAV client initialization failed. Continuing without ClamAV.") } else { log.Info("ClamAV client initialized successfully.") } } if conf.Redis.RedisEnabled { initRedis() } initializeUploadWorkerPool(ctx, &conf.Workers) if conf.ClamAV.ClamAVEnabled && clamClient != nil { initializeScanWorkerPool(ctx) } if conf.Redis.RedisEnabled && redisClient != nil { go MonitorRedisHealth(ctx, redisClient, parseDuration(conf.Redis.RedisHealthCheckInterval)) } router := setupRouter() fileTTL, err := parseTTL(conf.Server.FileTTL) if err != nil { log.Fatalf("Invalid FileTTL: %v", err) } go runFileCleaner(ctx, conf.Server.StoragePath, fileTTL) readTimeout, err := time.ParseDuration(conf.Timeouts.ReadTimeout) if err != nil { log.Fatalf("Invalid ReadTimeout: %v", err) } writeTimeout, err := time.ParseDuration(conf.Timeouts.WriteTimeout) if err != nil { log.Fatalf("Invalid WriteTimeout: %v", err) } idleTimeout, err := time.ParseDuration(conf.Timeouts.IdleTimeout) if err != nil { log.Fatalf("Invalid IdleTimeout: %v", err) } server := &http.Server{ Addr: ":" + conf.Server.ListenPort, Handler: router, ReadTimeout: readTimeout, WriteTimeout: writeTimeout, IdleTimeout: idleTimeout, } if conf.Server.MetricsEnabled { go func() { http.Handle("/metrics", promhttp.Handler()) log.Infof("Metrics server started on port %s", conf.Server.MetricsPort) if err := http.ListenAndServe(":"+conf.Server.MetricsPort, nil); err != nil { log.Fatalf("Metrics server failed: %v", err) } }() } setupGracefulShutdown(server, cancel) if conf.Server.AutoAdjustWorkers { go monitorWorkerPerformance(ctx, &conf.Server, &conf.Workers, &conf.ClamAV) } log.Infof("Starting HMAC file server %s...", versionString) if conf.Server.UnixSocket { if err := os.RemoveAll(conf.Server.ListenPort); err != nil { log.Fatalf("Failed to remove existing Unix socket: %v", err) } listener, err := net.Listen("unix", conf.Server.ListenPort) if err != nil { log.Fatalf("Failed to listen on Unix socket %s: %v", conf.Server.ListenPort, err) } defer listener.Close() if err := server.Serve(listener); err != nil && err != http.ErrServerClosed { log.Fatalf("Server failed: %v", err) } } else { if err := server.ListenAndServe(); err != nil && err != http.ErrServerClosed { log.Fatalf("Server failed: %v", err) } } } func max(a, b int) int { if a > b { return a } return b } func autoAdjustWorkers() (int, int) { v, _ := mem.VirtualMemory() cpuCores, _ := cpu.Counts(true) numWorkers := cpuCores * 2 if v.Available < 2*1024*1024*1024 { numWorkers = max(numWorkers/2, 1) } queueSize := numWorkers * 10 log.Infof("Auto-adjusting workers: NumWorkers=%d, UploadQueueSize=%d", numWorkers, queueSize) return numWorkers, queueSize } func initializeWorkerSettings(server *ServerConfig, workers *WorkersConfig, clamav *ClamAVConfig) { if server.AutoAdjustWorkers { numWorkers, queueSize := autoAdjustWorkers() workers.NumWorkers = numWorkers workers.UploadQueueSize = queueSize clamav.NumScanWorkers = max(numWorkers/2, 1) log.Infof("AutoAdjustWorkers enabled: NumWorkers=%d, UploadQueueSize=%d, NumScanWorkers=%d", workers.NumWorkers, workers.UploadQueueSize, clamav.NumScanWorkers) } else { log.Infof("Manual configuration in effect: NumWorkers=%d, UploadQueueSize=%d, NumScanWorkers=%d", workers.NumWorkers, workers.UploadQueueSize, clamav.NumScanWorkers) } } func monitorWorkerPerformance(ctx context.Context, server *ServerConfig, w *WorkersConfig, clamav *ClamAVConfig) { ticker := time.NewTicker(5 * time.Minute) defer ticker.Stop() for { select { case <-ctx.Done(): log.Info("Stopping worker performance monitor.") return case <-ticker.C: if server.AutoAdjustWorkers { numWorkers, queueSize := autoAdjustWorkers() w.NumWorkers = numWorkers w.UploadQueueSize = queueSize clamav.NumScanWorkers = max(numWorkers/2, 1) log.Infof("Re-adjusted workers: NumWorkers=%d, UploadQueueSize=%d, NumScanWorkers=%d", w.NumWorkers, w.UploadQueueSize, clamav.NumScanWorkers) } } } } func readConfig(configFilename string, conf *Config) error { viper.SetConfigFile(configFilename) viper.SetConfigType("toml") viper.AutomaticEnv() viper.SetEnvPrefix("HMAC") if err := viper.ReadInConfig(); err != nil { return fmt.Errorf("error reading config file: %w", err) } if err := viper.Unmarshal(conf); err != nil { return fmt.Errorf("unable to decode into struct: %w", err) } if err := validateConfig(conf); err != nil { return fmt.Errorf("configuration validation failed: %w", err) } conf.Server.DeduplicationEnabled = viper.GetBool("deduplication.Enabled") return nil } func setDefaults() { viper.SetDefault("server.ListenPort", "8080") viper.SetDefault("server.UnixSocket", false) viper.SetDefault("server.StoragePath", "./uploads") viper.SetDefault("server.LogLevel", "info") viper.SetDefault("server.LogFile", "") viper.SetDefault("server.MetricsEnabled", true) viper.SetDefault("server.MetricsPort", "9090") viper.SetDefault("server.FileTTL", "8760h") viper.SetDefault("server.MinFreeBytes", 100<<20) viper.SetDefault("server.AutoAdjustWorkers", true) _, err := parseTTL("1D") if err != nil { log.Warnf("Failed to parse TTL: %v", err) } viper.SetDefault("timeouts.ReadTimeout", "4800s") viper.SetDefault("timeouts.WriteTimeout", "4800s") viper.SetDefault("timeouts.IdleTimeout", "4800s") viper.SetDefault("security.Secret", "changeme") viper.SetDefault("versioning.EnableVersioning", false) viper.SetDefault("versioning.MaxVersions", 1) viper.SetDefault("uploads.ResumableUploadsEnabled", true) viper.SetDefault("uploads.ChunkedUploadsEnabled", true) viper.SetDefault("uploads.ChunkSize", "8192") viper.SetDefault("uploads.AllowedExtensions", []string{ ".txt", ".pdf", ".png", ".jpg", ".jpeg", ".gif", ".bmp", ".tiff", ".svg", ".webp", ".wav", ".mp4", ".avi", ".mkv", ".mov", ".wmv", ".flv", ".webm", ".mpeg", ".mpg", ".m4v", ".3gp", ".3g2", ".mp3", ".ogg", }) viper.SetDefault("clamav.ClamAVEnabled", true) viper.SetDefault("clamav.ClamAVSocket", "/var/run/clamav/clamd.ctl") viper.SetDefault("clamav.NumScanWorkers", 2) viper.SetDefault("redis.RedisEnabled", true) viper.SetDefault("redis.RedisAddr", "localhost:6379") viper.SetDefault("redis.RedisPassword", "") viper.SetDefault("redis.RedisDBIndex", 0) viper.SetDefault("redis.RedisHealthCheckInterval", "120s") viper.SetDefault("workers.NumWorkers", 4) viper.SetDefault("workers.UploadQueueSize", 50) viper.SetDefault("deduplication.Enabled", true) viper.SetDefault("iso.Enabled", true) viper.SetDefault("iso.Size", "1GB") viper.SetDefault("iso.MountPoint", "/mnt/iso") viper.SetDefault("iso.Charset", "utf-8") } func validateConfig(conf *Config) error { if conf.Server.ListenPort == "" { return fmt.Errorf("ListenPort must be set") } if conf.Security.Secret == "" { return fmt.Errorf("secret must be set") } if conf.Server.StoragePath == "" { return fmt.Errorf("StoragePath must be set") } if conf.Server.FileTTL == "" { return fmt.Errorf("FileTTL must be set") } if _, err := time.ParseDuration(conf.Timeouts.ReadTimeout); err != nil { return fmt.Errorf("invalid ReadTimeout: %v", err) } if _, err := time.ParseDuration(conf.Timeouts.WriteTimeout); err != nil { return fmt.Errorf("invalid WriteTimeout: %v", err) } if _, err := time.ParseDuration(conf.Timeouts.IdleTimeout); err != nil { return fmt.Errorf("invalid IdleTimeout: %v", err) } if conf.Redis.RedisEnabled { if conf.Redis.RedisAddr == "" { return fmt.Errorf("RedisAddr must be set when Redis is enabled") } } if conf.ISO.Enabled { if conf.ISO.Size == "" { return fmt.Errorf("ISO size must be set") } if conf.ISO.MountPoint == "" { return fmt.Errorf("ISO mount point must be set") } if conf.ISO.Charset == "" { return fmt.Errorf("ISO charset must be set") } } return nil } func setupLogging() { level, err := logrus.ParseLevel(conf.Server.LogLevel) if err != nil { log.Fatalf("Invalid log level: %s", conf.Server.LogLevel) } log.SetLevel(level) if conf.Server.LogFile != "" { logFile, err := os.OpenFile(conf.Server.LogFile, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666) if err != nil { log.Fatalf("Failed to open log file: %v", err) } log.SetOutput(io.MultiWriter(os.Stdout, logFile)) } else { log.SetOutput(os.Stdout) } log.SetFormatter(&logrus.TextFormatter{ FullTimestamp: true, }) } func logSystemInfo() { log.Info("========================================") log.Infof(" HMAC File Server - %s ", versionString) log.Info(" Secure File Handling with HMAC Auth ") log.Info("========================================") log.Info("Features: Prometheus Metrics, Chunked Uploads, ClamAV Scanning") log.Info("Build Date: 2024-10-28") log.Infof("Operating System: %s", runtime.GOOS) log.Infof("Architecture: %s", runtime.GOARCH) log.Infof("Number of CPUs: %d", runtime.NumCPU()) log.Infof("Go Version: %s", runtime.Version()) v, _ := mem.VirtualMemory() log.Infof("Total Memory: %v MB", v.Total/1024/1024) log.Infof("Free Memory: %v MB", v.Free/1024/1024) log.Infof("Used Memory: %v MB", v.Used/1024/1024) cpuInfo, _ := cpu.Info() for _, info := range cpuInfo { log.Infof("CPU Model: %s, Cores: %d, Mhz: %f", info.ModelName, info.Cores, info.Mhz) } partitions, _ := disk.Partitions(false) for _, partition := range partitions { usage, _ := disk.Usage(partition.Mountpoint) log.Infof("Disk Mountpoint: %s, Total: %v GB, Free: %v GB, Used: %v GB", partition.Mountpoint, usage.Total/1024/1024/1024, usage.Free/1024/1024/1024, usage.Used/1024/1024/1024) } hInfo, _ := host.Info() log.Infof("Hostname: %s", hInfo.Hostname) log.Infof("Uptime: %v seconds", hInfo.Uptime) log.Infof("Boot Time: %v", time.Unix(int64(hInfo.BootTime), 0)) log.Infof("Platform: %s", hInfo.Platform) log.Infof("Platform Family: %s", hInfo.PlatformFamily) log.Infof("Platform Version: %s", hInfo.PlatformVersion) log.Infof("Kernel Version: %s", hInfo.KernelVersion) } func initMetrics() { uploadDuration = prometheus.NewHistogram(prometheus.HistogramOpts{Namespace: "hmac", Name: "file_server_upload_duration_seconds", Help: "Histogram of file upload duration."}) uploadErrorsTotal = prometheus.NewCounter(prometheus.CounterOpts{Namespace: "hmac", Name: "file_server_upload_errors_total", Help: "Total number of file upload errors."}) uploadsTotal = prometheus.NewCounter(prometheus.CounterOpts{Namespace: "hmac", Name: "file_server_uploads_total", Help: "Total number of successful file uploads."}) downloadDuration = prometheus.NewHistogram(prometheus.HistogramOpts{Namespace: "hmac", Name: "file_server_download_duration_seconds", Help: "Histogram of file download duration."}) downloadsTotal = prometheus.NewCounter(prometheus.CounterOpts{Namespace: "hmac", Name: "file_server_downloads_total", Help: "Total number of successful file downloads."}) downloadErrorsTotal = prometheus.NewCounter(prometheus.CounterOpts{Namespace: "hmac", Name: "file_server_download_errors_total", Help: "Total number of file download errors."}) memoryUsage = prometheus.NewGauge(prometheus.GaugeOpts{Namespace: "hmac", Name: "memory_usage_bytes", Help: "Current memory usage in bytes."}) cpuUsage = prometheus.NewGauge(prometheus.GaugeOpts{Namespace: "hmac", Name: "cpu_usage_percent", Help: "CPU usage as a percentage."}) activeConnections = prometheus.NewGauge(prometheus.GaugeOpts{Namespace: "hmac", Name: "active_connections_total", Help: "Total number of active connections."}) requestsTotal = prometheus.NewCounterVec(prometheus.CounterOpts{Namespace: "hmac", Name: "http_requests_total", Help: "Total HTTP requests."}, []string{"method", "path"}) goroutines = prometheus.NewGauge(prometheus.GaugeOpts{Namespace: "hmac", Name: "goroutines_count", Help: "Number of goroutines."}) uploadSizeBytes = prometheus.NewHistogram(prometheus.HistogramOpts{Namespace: "hmac", Name: "file_server_upload_size_bytes", Help: "Histogram of uploaded file sizes."}) downloadSizeBytes = prometheus.NewHistogram(prometheus.HistogramOpts{Namespace: "hmac", Name: "file_server_download_size_bytes", Help: "Histogram of downloaded file sizes."}) if conf.Server.MetricsEnabled { prometheus.MustRegister(uploadDuration, uploadErrorsTotal, uploadsTotal) prometheus.MustRegister(downloadDuration, downloadsTotal, downloadErrorsTotal) prometheus.MustRegister(memoryUsage, cpuUsage, activeConnections, requestsTotal, goroutines, uploadSizeBytes, downloadSizeBytes) } } func updateSystemMetrics(ctx context.Context) { ticker := time.NewTicker(10 * time.Second) defer ticker.Stop() for { select { case <-ctx.Done(): return case <-ticker.C: v, _ := mem.VirtualMemory() memoryUsage.Set(float64(v.Used) / float64(v.Total) * 100) c, _ := cpu.Percent(0, false) if len(c) > 0 { cpuUsage.Set(c[0]) } goroutines.Set(float64(runtime.NumGoroutine())) } } } func fileExists(filePath string) (bool, int64) { if cachedInfo, found := fileInfoCache.Get(filePath); found { if info, ok := cachedInfo.(os.FileInfo); ok { return !info.IsDir(), info.Size() } } fileInfo, err := os.Stat(filePath) if os.IsNotExist(err) { return false, 0 } else if err != nil { log.Error("Error checking file existence:", err) return false, 0 } fileInfoCache.Set(filePath, fileInfo, cache.DefaultExpiration) return !fileInfo.IsDir(), fileInfo.Size() } func isExtensionAllowed(filename string) bool { if len(conf.Uploads.AllowedExtensions) == 0 { return true } ext := strings.ToLower(filepath.Ext(filename)) for _, allowedExt := range conf.Uploads.AllowedExtensions { if strings.ToLower(allowedExt) == ext { return true } } return false } func versionFile(absFilename string) error { versionDir := absFilename + "_versions" err := os.MkdirAll(versionDir, os.ModePerm) if err != nil { return fmt.Errorf("failed to create version directory: %v", err) } timestamp := time.Now().Format("20060102-150405") versionedFilename := filepath.Join(versionDir, filepath.Base(absFilename)+"."+timestamp) err = os.Rename(absFilename, versionedFilename) if err != nil { return fmt.Errorf("failed to version the file: %v", err) } log.WithFields(logrus.Fields{ "original": absFilename, "versioned_as": versionedFilename, }).Info("Versioned old file") return cleanupOldVersions(versionDir) } func cleanupOldVersions(versionDir string) error { files, err := os.ReadDir(versionDir) if err != nil { return fmt.Errorf("failed to list version files: %v", err) } if conf.Versioning.MaxVersions > 0 && len(files) > conf.Versioning.MaxVersions { excessFiles := len(files) - conf.Versioning.MaxVersions for i := 0; i < excessFiles; i++ { err := os.Remove(filepath.Join(versionDir, files[i].Name())) if err != nil { return fmt.Errorf("failed to remove old version: %v", err) } log.WithField("file", files[i].Name()).Info("Removed old version") } } return nil } func processUpload(task UploadTask) error { log.Infof("Started processing upload for file: %s", task.AbsFilename) semaphore <- struct{}{} defer func() { <-semaphore }() absFilename := task.AbsFilename tempFilename := absFilename + ".tmp" r := task.Request log.Infof("Processing upload for file: %s", absFilename) startTime := time.Now() if conf.Uploads.ChunkedUploadsEnabled { chunkSize, err := parseSize(conf.Uploads.ChunkSize) if err != nil { log.WithFields(logrus.Fields{"file": tempFilename, "error": err}).Error("Error parsing chunk size") uploadDuration.Observe(time.Since(startTime).Seconds()) return err } err = handleChunkedUpload(tempFilename, r, int(chunkSize)) if err != nil { uploadDuration.Observe(time.Since(startTime).Seconds()) log.WithFields(logrus.Fields{"file": tempFilename, "error": err}).Error("Failed to handle chunked upload") return err } } else { err := createFile(tempFilename, r) if err != nil { log.WithFields(logrus.Fields{"file": tempFilename, "error": err}).Error("Error creating file") uploadDuration.Observe(time.Since(startTime).Seconds()) return err } } if clamClient != nil && shouldScanFile(absFilename) { err := scanFileWithClamAV(tempFilename) if err != nil { log.WithFields(logrus.Fields{"file": tempFilename, "error": err}).Warn("ClamAV detected a virus or scan failed") os.Remove(tempFilename) uploadErrorsTotal.Inc() return err } log.Infof("ClamAV scan passed for file: %s", tempFilename) } else { log.Warn("ClamAV is not available or file extension not in scan list. Proceeding without virus scan.") } if conf.Versioning.EnableVersioning { existing, _ := fileExists(absFilename) if existing { log.Infof("File %s exists. Initiating versioning.", absFilename) err := versionFile(absFilename) if err != nil { log.WithFields(logrus.Fields{"file": absFilename, "error": err}).Error("Error versioning file") os.Remove(tempFilename) return err } log.Infof("File versioned successfully: %s", absFilename) } } err := os.Rename(tempFilename, absFilename) defer func() { if err != nil { os.Remove(tempFilename) } }() if err != nil { os.Remove(tempFilename) return fmt.Errorf("failed to move file to final destination: %w", err) } log.Infof("File moved to final destination: %s", absFilename) // Gajim and Dino do not require a callback or acknowledgement beyond HTTP success. callbackURL := r.Header.Get("Callback-URL") if callbackURL != "" { log.Warnf("Callback-URL provided (%s) but not needed. Ignoring.", callbackURL) // We do not block or wait, just ignore. } if conf.Server.DeduplicationEnabled { err = handleDeduplication(context.Background(), absFilename) if err != nil { log.WithError(err).Error("Deduplication failed") uploadErrorsTotal.Inc() return err } log.Infof("Deduplication handled successfully for file: %s", absFilename) } if conf.ISO.Enabled { err = handleISOContainer(absFilename) if err != nil { log.WithError(err).Error("ISO container handling failed") uploadErrorsTotal.Inc() return err } log.Infof("ISO container handled successfully for file: %s", absFilename) } log.WithFields(logrus.Fields{"file": absFilename}).Info("File uploaded and processed successfully") uploadDuration.Observe(time.Since(startTime).Seconds()) uploadsTotal.Inc() log.Infof("Finished processing upload for file: %s", task.AbsFilename) return nil } func createFile(tempFilename string, r *http.Request) error { startTime := time.Now() err := os.MkdirAll(filepath.Dir(tempFilename), 0755) if err != nil { return err } file, err := os.OpenFile(tempFilename, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0644) if err != nil { log.WithFields(logrus.Fields{"file": tempFilename, "error": err}).Error("Error creating file") uploadDuration.Observe(time.Since(startTime).Seconds()) return err } defer file.Close() bufWriter := bufio.NewWriter(file) defer bufWriter.Flush() bufPtr := bufferPool.Get().(*[]byte) defer bufferPool.Put(bufPtr) _, err = io.CopyBuffer(bufWriter, r.Body, *bufPtr) if err != nil { return err } return nil } func shouldScanFile(filename string) bool { ext := strings.ToLower(filepath.Ext(filename)) for _, scanExt := range conf.ClamAV.ScanFileExtensions { if strings.ToLower(scanExt) == ext { return true } } return false } func uploadWorker(ctx context.Context, workerID int) { log.Infof("Upload worker %d started.", workerID) defer log.Infof("Upload worker %d stopped.", workerID) for { select { case <-ctx.Done(): return case task, ok := <-uploadQueue: if !ok { return } log.Infof("Worker %d processing file: %s", workerID, task.AbsFilename) err := processUpload(task) if err != nil { log.Errorf("Worker %d failed to process file %s: %v", workerID, task.AbsFilename, err) } else { log.Infof("Worker %d successfully processed file: %s", workerID, task.AbsFilename) } task.Result <- err } } } func initializeUploadWorkerPool(ctx context.Context, w *WorkersConfig) { for i := 0; i < w.NumWorkers; i++ { go uploadWorker(ctx, i) log.Infof("Upload worker %d started.", i) } log.Infof("Initialized %d upload workers", w.NumWorkers) } func scanWorker(ctx context.Context, workerID int) { log.WithField("worker_id", workerID).Info("Scan worker started") for { select { case <-ctx.Done(): log.WithField("worker_id", workerID).Info("Scan worker stopping") return case task, ok := <-scanQueue: if !ok { log.WithField("worker_id", workerID).Info("Scan queue closed") return } log.WithFields(logrus.Fields{"worker_id": workerID, "file": task.AbsFilename}).Info("Processing scan task") err := scanFileWithClamAV(task.AbsFilename) if err != nil { log.WithFields(logrus.Fields{"worker_id": workerID, "file": task.AbsFilename, "error": err}).Error("Failed to scan file") } else { log.WithFields(logrus.Fields{"worker_id": workerID, "file": task.AbsFilename}).Info("Successfully scanned file") } task.Result <- err close(task.Result) } } } func initializeScanWorkerPool(ctx context.Context) { for i := 0; i < conf.ClamAV.NumScanWorkers; i++ { go scanWorker(ctx, i) } log.Infof("Initialized %d scan workers", conf.ClamAV.NumScanWorkers) } func setupRouter() http.Handler { mux := http.NewServeMux() mux.HandleFunc("/", handleRequest) if conf.Server.MetricsEnabled { mux.Handle("/metrics", promhttp.Handler()) } handler := loggingMiddleware(mux) handler = recoveryMiddleware(handler) handler = corsMiddleware(handler) return handler } func loggingMiddleware(next http.Handler) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { requestsTotal.WithLabelValues(r.Method, r.URL.Path).Inc() next.ServeHTTP(w, r) }) } func recoveryMiddleware(next http.Handler) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { defer func() { if rec := recover(); rec != nil { log.WithFields(logrus.Fields{"method": r.Method, "url": r.URL.String(), "error": rec}).Error("Panic recovered in handler") http.Error(w, "Internal Server Error", http.StatusInternalServerError) } }() next.ServeHTTP(w, r) }) } func corsMiddleware(next http.Handler) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { w.Header().Set("Access-Control-Allow-Origin", "*") w.Header().Set("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, OPTIONS") w.Header().Set("Access-Control-Allow-Headers", "Content-Type, Authorization") if r.Method == "OPTIONS" { w.WriteHeader(http.StatusOK) return } next.ServeHTTP(w, r) }) } func handleRequest(w http.ResponseWriter, r *http.Request) { if r.Method == http.MethodPost && strings.Contains(r.Header.Get("Content-Type"), "multipart/form-data") { absFilename, err := sanitizeFilePath(conf.Server.StoragePath, strings.TrimPrefix(r.URL.Path, "/")) if err != nil { log.WithError(err).Error("Invalid file path") http.Error(w, "Invalid file path", http.StatusBadRequest) return } err = handleMultipartUpload(w, r, absFilename) if err != nil { log.WithError(err).Error("Failed to handle multipart upload") http.Error(w, "Failed to handle multipart upload", http.StatusInternalServerError) return } w.WriteHeader(http.StatusCreated) return } clientIP := r.Header.Get("X-Real-IP") if clientIP == "" { clientIP = r.Header.Get("X-Forwarded-For") } if clientIP == "" { host, _, err := net.SplitHostPort(r.RemoteAddr) if err != nil { log.WithError(err).Warn("Failed to parse RemoteAddr") clientIP = r.RemoteAddr } else { clientIP = host } } log.WithFields(logrus.Fields{"method": r.Method, "url": r.URL.String(), "remote": clientIP}).Info("Incoming request") p := r.URL.Path a, err := url.ParseQuery(r.URL.RawQuery) if err != nil { log.Warn("Failed to parse query parameters") http.Error(w, "Internal Server Error", http.StatusInternalServerError) return } fileStorePath := strings.TrimPrefix(p, "/") if fileStorePath == "" || fileStorePath == "/" { log.Warn("Access to root directory is forbidden") http.Error(w, "Forbidden", http.StatusForbidden) return } else if fileStorePath[0] == '/' { fileStorePath = fileStorePath[1:] } absFilename, err := sanitizeFilePath(conf.Server.StoragePath, fileStorePath) if err != nil { log.WithFields(logrus.Fields{"file": fileStorePath, "error": err}).Warn("Invalid file path") http.Error(w, "Invalid file path", http.StatusBadRequest) return } switch r.Method { case http.MethodPut: handleUpload(w, r, absFilename, fileStorePath, a) case http.MethodHead, http.MethodGet: handleDownload(w, r, absFilename, fileStorePath) case http.MethodOptions: w.Header().Set("Allow", "OPTIONS, GET, PUT, HEAD") return default: log.WithField("method", r.Method).Warn("Invalid HTTP method for upload directory") http.Error(w, "Method Not Allowed", http.StatusMethodNotAllowed) return } } // handleUpload handles PUT requests for file uploads func handleUpload(w http.ResponseWriter, r *http.Request, absFilename, fileStorePath string, a url.Values) { log.Infof("Using storage path: %s", conf.Server.StoragePath) // HMAC validation var protocolVersion string if a.Get("v2") != "" { protocolVersion = "v2" } else if a.Get("token") != "" { protocolVersion = "token" } else if a.Get("v") != "" { protocolVersion = "v" } else { log.Warn("No HMAC attached to URL.") http.Error(w, "No HMAC attached to URL. Expecting 'v', 'v2', or 'token' parameter as MAC", http.StatusForbidden) return } mac := hmac.New(sha256.New, []byte(conf.Security.Secret)) if protocolVersion == "v" { mac.Write([]byte(fileStorePath + "\x20" + strconv.FormatInt(r.ContentLength, 10))) } else { contentType := mime.TypeByExtension(filepath.Ext(fileStorePath)) if contentType == "" { contentType = "application/octet-stream" } mac.Write([]byte(fileStorePath + "\x00" + strconv.FormatInt(r.ContentLength, 10) + "\x00" + contentType)) } calculatedMAC := mac.Sum(nil) providedMACHex := a.Get(protocolVersion) providedMAC, err := hex.DecodeString(providedMACHex) if err != nil { log.Warn("Invalid MAC encoding") http.Error(w, "Invalid MAC encoding", http.StatusForbidden) return } if !hmac.Equal(calculatedMAC, providedMAC) { log.Warn("Invalid MAC") http.Error(w, "Invalid MAC", http.StatusForbidden) return } if !isExtensionAllowed(fileStorePath) { log.Warn("Invalid file extension") http.Error(w, "Invalid file extension", http.StatusBadRequest) uploadErrorsTotal.Inc() return } minFreeBytes, err := parseSize(conf.Server.MinFreeBytes) if err != nil { log.Fatalf("Invalid MinFreeBytes: %v", err) } err = checkStorageSpace(conf.Server.StoragePath, minFreeBytes) if err != nil { log.Warn("Not enough free space") http.Error(w, "Not enough free space", http.StatusInsufficientStorage) uploadErrorsTotal.Inc() return } // Check for Callback-URL header callbackURL := r.Header.Get("Callback-URL") if callbackURL != "" { log.Warnf("Callback-URL provided (%s) but not needed. Ignoring.", callbackURL) // Do not perform any callback actions } // Enqueue the upload task result := make(chan error) task := UploadTask{ AbsFilename: absFilename, Request: r, Result: result, } log.Debug("Attempting to enqueue upload task") select { case uploadQueue <- task: log.Debug("Upload task enqueued successfully") default: log.Warn("Upload queue is full.") http.Error(w, "Server busy. Try again later.", http.StatusServiceUnavailable) uploadErrorsTotal.Inc() return } log.Debug("Waiting for upload task to complete") err = <-result if err != nil { log.Errorf("Upload failed: %v", err) http.Error(w, fmt.Sprintf("Upload failed: %v", err), http.StatusInternalServerError) return } log.Debug("Upload task completed successfully") // Respond with 201 Created on successful upload w.WriteHeader(http.StatusCreated) log.Infof("Responded with 201 Created for file: %s", absFilename) } func handleDownload(w http.ResponseWriter, r *http.Request, absFilename, fileStorePath string) { fileInfo, err := getFileInfo(absFilename) if err != nil { log.WithError(err).Error("Failed to get file information") http.Error(w, "Not Found", http.StatusNotFound) downloadErrorsTotal.Inc() return } else if fileInfo.IsDir() { log.Warn("Directory listing forbidden") http.Error(w, "Forbidden", http.StatusForbidden) downloadErrorsTotal.Inc() return } contentType := mime.TypeByExtension(filepath.Ext(fileStorePath)) if contentType == "" { contentType = "application/octet-stream" } w.Header().Set("Content-Type", contentType) if conf.Uploads.ResumableUploadsEnabled { handleResumableDownload(absFilename, w, r, fileInfo.Size()) return } if r.Method == http.MethodHead { w.Header().Set("Content-Length", strconv.FormatInt(fileInfo.Size(), 10)) downloadsTotal.Inc() return } else { startTime := time.Now() log.Infof("Initiating download for file: %s", absFilename) http.ServeFile(w, r, absFilename) downloadDuration.Observe(time.Since(startTime).Seconds()) downloadSizeBytes.Observe(float64(fileInfo.Size())) downloadsTotal.Inc() log.Infof("File downloaded successfully: %s", absFilename) return } } func scanFileWithClamAV(filePath string) error { log.WithField("file", filePath).Info("Scanning file with ClamAV") scanResultChan, err := clamClient.ScanFile(filePath) if err != nil { log.WithError(err).Error("Failed to initiate ClamAV scan") return fmt.Errorf("failed to initiate ClamAV scan: %w", err) } scanResult := <-scanResultChan if scanResult == nil { log.Error("Failed to receive scan result from ClamAV") return fmt.Errorf("failed to receive scan result") } switch scanResult.Status { case clamd.RES_OK: log.WithField("file", filePath).Info("ClamAV scan passed") return nil case clamd.RES_FOUND: log.WithFields(logrus.Fields{"file": filePath, "description": scanResult.Description}).Warn("ClamAV detected a virus") return fmt.Errorf("virus detected: %s", scanResult.Description) default: log.WithFields(logrus.Fields{"file": filePath, "status": scanResult.Status, "description": scanResult.Description}).Warn("ClamAV scan returned unexpected status") return fmt.Errorf("unexpected ClamAV status: %s", scanResult.Description) } } func initClamAV(socket string) (*clamd.Clamd, error) { if socket == "" { log.Error("ClamAV socket path not configured.") return nil, fmt.Errorf("ClamAV socket path not configured") } clamClient := clamd.NewClamd("unix:" + socket) err := clamClient.Ping() if err != nil { log.Errorf("Failed to connect to ClamAV at %s: %v", socket, err) return nil, fmt.Errorf("failed to connect to ClamAV: %w", err) } log.Info("Connected to ClamAV successfully.") return clamClient, nil } func handleResumableDownload(absFilename string, w http.ResponseWriter, r *http.Request, fileSize int64) { rangeHeader := r.Header.Get("Range") if rangeHeader == "" { startTime := time.Now() http.ServeFile(w, r, absFilename) downloadDuration.Observe(time.Since(startTime).Seconds()) downloadSizeBytes.Observe(float64(fileSize)) downloadsTotal.Inc() return } ranges := strings.Split(strings.TrimPrefix(rangeHeader, "bytes="), "-") if len(ranges) != 2 { http.Error(w, "Invalid Range", http.StatusRequestedRangeNotSatisfiable) downloadErrorsTotal.Inc() return } start, err := strconv.ParseInt(ranges[0], 10, 64) if err != nil { http.Error(w, "Invalid Range", http.StatusRequestedRangeNotSatisfiable) downloadErrorsTotal.Inc() return } end := fileSize - 1 if ranges[1] != "" { end, err = strconv.ParseInt(ranges[1], 10, 64) if err != nil || end >= fileSize { http.Error(w, "Invalid Range", http.StatusRequestedRangeNotSatisfiable) downloadErrorsTotal.Inc() return } } w.Header().Set("Content-Range", fmt.Sprintf("bytes %d-%d/%d", start, end, fileSize)) w.Header().Set("Content-Length", strconv.FormatInt(end-start+1, 10)) w.Header().Set("Accept-Ranges", "bytes") w.WriteHeader(http.StatusPartialContent) file, err := os.Open(absFilename) if err != nil { http.Error(w, "Internal Server Error", http.StatusInternalServerError) downloadErrorsTotal.Inc() return } defer file.Close() _, err = file.Seek(start, 0) if err != nil { http.Error(w, "Internal Server Error", http.StatusInternalServerError) downloadErrorsTotal.Inc() return } buffer := make([]byte, 32*1024) remaining := end - start + 1 startTime := time.Now() for remaining > 0 { if int64(len(buffer)) > remaining { buffer = buffer[:remaining] } n, err := file.Read(buffer) if n > 0 { if _, writeErr := w.Write(buffer[:n]); writeErr != nil { log.WithError(writeErr).Error("Failed to write to response") downloadErrorsTotal.Inc() return } remaining -= int64(n) } if err != nil { if err != io.EOF { log.WithError(err).Error("Error reading file during resumable download") http.Error(w, "Internal Server Error", http.StatusInternalServerError) downloadErrorsTotal.Inc() } break } } downloadDuration.Observe(time.Since(startTime).Seconds()) downloadSizeBytes.Observe(float64(end - start + 1)) downloadsTotal.Inc() } func handleChunkedUpload(tempFilename string, r *http.Request, chunkSize int) error { log.WithField("file", tempFilename).Info("Handling chunked upload to temporary file") absDirectory := filepath.Dir(tempFilename) err := os.MkdirAll(absDirectory, os.ModePerm) if err != nil { return fmt.Errorf("failed to create directory: %v", err) } targetFile, err := os.OpenFile(tempFilename, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0644) if err != nil { return fmt.Errorf("failed to open file: %v", err) } defer targetFile.Close() writer := bufio.NewWriterSize(targetFile, chunkSize) buffer := make([]byte, chunkSize) totalBytes := int64(0) for { n, err := r.Body.Read(buffer) if err != nil && err != io.EOF { return fmt.Errorf("failed to read request body: %v", err) } if n == 0 { break } _, err = writer.Write(buffer[:n]) if err != nil { return fmt.Errorf("failed to write to file: %v", err) } totalBytes += int64(n) } err = writer.Flush() if err != nil { return fmt.Errorf("failed to flush writer: %v", err) } log.WithFields(logrus.Fields{"temp_file": tempFilename, "total_bytes": totalBytes}).Info("Chunked upload completed successfully") uploadSizeBytes.Observe(float64(totalBytes)) return nil } func getFileInfo(absFilename string) (os.FileInfo, error) { if cachedInfo, found := fileInfoCache.Get(absFilename); found { if info, ok := cachedInfo.(os.FileInfo); ok { return info, nil } } fileInfo, err := os.Stat(absFilename) if err != nil { return nil, err } fileInfoCache.Set(absFilename, fileInfo, cache.DefaultExpiration) return fileInfo, nil } func monitorNetwork(ctx context.Context) { currentIP := getCurrentIPAddress() for { select { case <-ctx.Done(): log.Info("Stopping network monitor.") return case <-time.After(10 * time.Second): newIP := getCurrentIPAddress() if newIP != currentIP && newIP != "" { currentIP = newIP select { case networkEvents <- NetworkEvent{Type: "IP_CHANGE", Details: currentIP}: log.WithField("new_ip", currentIP).Info("Queued IP_CHANGE event") default: log.Warn("Network event channel full. Dropping IP_CHANGE event.") } } } } } func handleNetworkEvents(ctx context.Context) { for { select { case <-ctx.Done(): log.Info("Stopping network event handler.") return case event, ok := <-networkEvents: if !ok { log.Info("Network events channel closed.") return } switch event.Type { case "IP_CHANGE": log.WithField("new_ip", event.Details).Info("Network change detected") } } } } func getCurrentIPAddress() string { interfaces, err := net.Interfaces() if err != nil { log.WithError(err).Error("Failed to get network interfaces") return "" } for _, iface := range interfaces { if iface.Flags&net.FlagUp == 0 || iface.Flags&net.FlagLoopback != 0 { continue } addrs, err := iface.Addrs() if err != nil { log.WithError(err).Errorf("Failed to get addresses for interface %s", iface.Name) continue } for _, addr := range addrs { if ipnet, ok := addr.(*net.IPNet); ok && ipnet.IP.IsGlobalUnicast() && ipnet.IP.To4() != nil { return ipnet.IP.String() } } } return "" } func setupGracefulShutdown(server *http.Server, cancel context.CancelFunc) { quit := make(chan os.Signal, 1) signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM) go func() { sig := <-quit log.Infof("Received signal %s. Initiating shutdown...", sig) ctxShutdown, shutdownCancel := context.WithTimeout(context.Background(), 30*time.Second) defer shutdownCancel() if err := server.Shutdown(ctxShutdown); err != nil { log.Errorf("Server shutdown failed: %v", err) } else { log.Info("Server shutdown gracefully.") } cancel() close(uploadQueue) log.Info("Upload queue closed.") close(scanQueue) log.Info("Scan queue closed.") close(networkEvents) log.Info("Network events channel closed.") log.Info("Shutdown process completed. Exiting application.") os.Exit(0) }() } func initRedis() { if !conf.Redis.RedisEnabled { log.Info("Redis is disabled in configuration.") return } redisClient = redis.NewClient(&redis.Options{ Addr: conf.Redis.RedisAddr, Password: conf.Redis.RedisPassword, DB: conf.Redis.RedisDBIndex, }) ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second) defer cancel() _, err := redisClient.Ping(ctx).Result() if err != nil { log.Fatalf("Failed to connect to Redis: %v", err) } log.Info("Connected to Redis successfully") mu.Lock() redisConnected = true mu.Unlock() } func MonitorRedisHealth(ctx context.Context, client *redis.Client, checkInterval time.Duration) { ticker := time.NewTicker(checkInterval) defer ticker.Stop() for { select { case <-ctx.Done(): log.Info("Stopping Redis health monitor.") return case <-ticker.C: err := client.Ping(ctx).Err() mu.Lock() if err != nil { if redisConnected { log.Errorf("Redis health check failed: %v", err) } redisConnected = false } else { if (!redisConnected) { log.Info("Redis reconnected successfully") } redisConnected = true log.Debug("Redis health check succeeded.") } mu.Unlock() } } } func parseDuration(durationStr string) time.Duration { duration, err := time.ParseDuration(durationStr) if err != nil { log.WithError(err).Warn("Invalid duration format, using default 30s") return 30 * time.Second } return duration } func runFileCleaner(ctx context.Context, storeDir string, ttl time.Duration) { ticker := time.NewTicker(1 * time.Hour) defer ticker.Stop() for { select { case <-ctx.Done(): log.Info("Stopping file cleaner.") return case <-ticker.C: now := time.Now() err := filepath.Walk(storeDir, func(path string, info os.FileInfo, err error) error { if err != nil { return err } if info.IsDir() { return nil } if now.Sub(info.ModTime()) > ttl { err := os.Remove(path) if err != nil { log.WithError(err).Errorf("Failed to remove expired file: %s", path) } else { log.Infof("Removed expired file: %s", path) } } return nil }) if err != nil { log.WithError(err).Error("Error cleaning files") } } } } func DeduplicateFiles(storeDir string) error { hashMap := make(map[string]string) var mu sync.Mutex var wg sync.WaitGroup fileChan := make(chan string, 100) numWorkers := 10 for i := 0; i < numWorkers; i++ { wg.Add(1) go func() { defer wg.Done() for filePath := range fileChan { hash, err := computeFileHash(filePath) if err != nil { logrus.WithError(err).Errorf("Failed to compute hash for %s", filePath) continue } mu.Lock() original, exists := hashMap[hash] if !exists { hashMap[hash] = filePath mu.Unlock() continue } mu.Unlock() err = os.Remove(filePath) if err != nil { logrus.WithError(err).Errorf("Failed to remove duplicate file %s", filePath) continue } err = os.Link(original, filePath) if err != nil { logrus.WithError(err).Errorf("Failed to create hard link from %s to %s", original, filePath) continue } logrus.Infof("Removed duplicate %s and linked to %s", filePath, original) } }() } err := filepath.Walk(storeDir, func(path string, info os.FileInfo, err error) error { if err != nil { logrus.WithError(err).Errorf("Error accessing path %s", path) return nil } if !info.Mode().IsRegular() { return nil } fileChan <- path return nil }) if err != nil { return fmt.Errorf("error walking path %s: %w", storeDir, err) } close(fileChan) wg.Wait() return nil } func computeFileHash(filePath string) (string, error) { file, err := os.Open(filePath) if err != nil { return "", fmt.Errorf("unable to open file %s: %w", filePath, err) } defer file.Close() hasher := sha256.New() if _, err := io.Copy(hasher, file); err != nil { return "", fmt.Errorf("error hashing file %s: %w", filePath, err) } return hex.EncodeToString(hasher.Sum(nil)), nil } func handleMultipartUpload(w http.ResponseWriter, r *http.Request, absFilename string) error { err := r.ParseMultipartForm(32 << 20) if err != nil { log.WithError(err).Error("Failed to parse multipart form") http.Error(w, "Failed to parse multipart form", http.StatusBadRequest) return err } file, handler, err := r.FormFile("file") if err != nil { log.WithError(err).Error("Failed to retrieve file from form data") http.Error(w, "Failed to retrieve file from form data", http.StatusBadRequest) return err } defer file.Close() if !isExtensionAllowed(handler.Filename) { log.WithFields(logrus.Fields{"filename": handler.Filename, "extension": filepath.Ext(handler.Filename)}).Warn("Attempted upload with disallowed file extension") http.Error(w, "Disallowed file extension. Allowed: "+strings.Join(conf.Uploads.AllowedExtensions, ", "), http.StatusForbidden) uploadErrorsTotal.Inc() return fmt.Errorf("disallowed file extension") } tempFilename := absFilename + ".tmp" tempFile, err := os.OpenFile(tempFilename, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0666) if err != nil { log.WithError(err).Error("Failed to create temporary file") http.Error(w, "Failed to create temporary file", http.StatusInternalServerError) return err } defer tempFile.Close() _, err = io.Copy(tempFile, file) if err != nil { log.WithError(err).Error("Failed to copy uploaded file to temporary file") http.Error(w, "Failed to copy uploaded file", http.StatusInternalServerError) return err } if clamClient != nil { err := scanFileWithClamAV(tempFilename) if err != nil { log.WithFields(logrus.Fields{"file": tempFilename, "error": err}).Warn("ClamAV detected a virus") os.Remove(tempFilename) uploadErrorsTotal.Inc() return err } } if conf.Versioning.EnableVersioning { existing, _ := fileExists(absFilename) if existing { err := versionFile(absFilename) if err != nil { log.WithFields(logrus.Fields{"file": absFilename, "error": err}).Error("Error versioning file") os.Remove(tempFilename) return err } } } err = os.Rename(tempFilename, absFilename) if err != nil { os.Remove(tempFilename) return fmt.Errorf("failed to move file to final destination: %w", err) } log.WithField("file", absFilename).Info("File uploaded and scanned successfully") uploadsTotal.Inc() return nil } func sanitizeFilePath(baseDir, filePath string) (string, error) { absBaseDir, err := filepath.Abs(baseDir) if err != nil { return "", fmt.Errorf("failed to resolve base directory: %w", err) } absFilePath, err := filepath.Abs(filepath.Join(absBaseDir, filePath)) if err != nil { return "", fmt.Errorf("failed to resolve file path: %w", err) } if !strings.HasPrefix(absFilePath, absBaseDir) { return "", fmt.Errorf("invalid file path: %s", filePath) } return absFilePath, nil } func checkStorageSpace(storagePath string, minFreeBytes int64) error { var stat syscall.Statfs_t err := syscall.Statfs(storagePath, &stat) if err != nil { return fmt.Errorf("failed to get filesystem stats: %w", err) } availableBytes := stat.Bavail * uint64(stat.Bsize) if int64(availableBytes) < minFreeBytes { return fmt.Errorf("not enough free space: %d available, %d required", availableBytes, minFreeBytes) } return nil } func handleDeduplication(ctx context.Context, absFilename string) error { checksum, err := computeSHA256(ctx, absFilename) if err != nil { log.Errorf("Failed to compute SHA256 for %s: %v", absFilename, err) return fmt.Errorf("checksum computation failed: %w", err) } log.Debugf("Computed checksum for %s: %s", absFilename, checksum) existingPath, err := redisClient.Get(ctx, checksum).Result() if err != nil { if err == redis.Nil { err = redisClient.Set(ctx, checksum, absFilename, 0).Err() if err != nil { log.Errorf("Redis error setting checksum %s: %v", checksum, err) return fmt.Errorf("redis error: %w", err) } log.Infof("Stored new checksum %s for file %s", checksum, absFilename) return nil } log.Errorf("Redis error fetching checksum %s: %v", checksum, err) return fmt.Errorf("redis error: %w", err) } if existingPath != absFilename { if _, err := os.Stat(existingPath); os.IsNotExist(err) { log.Errorf("Existing file for checksum %s not found at %s", checksum, existingPath) return fmt.Errorf("existing file not found: %w", err) } err = os.Link(existingPath, absFilename) if err != nil { log.Errorf("Failed linking %s to %s: %v", existingPath, absFilename, err) return fmt.Errorf("failed link: %w", err) } log.Infof("Created hard link for duplicate file %s -> %s", absFilename, existingPath) } else { log.Infof("File %s already exists with same checksum", absFilename) } return nil } func computeSHA256(ctx context.Context, filePath string) (string, error) { if filePath == "" { return "", fmt.Errorf("computeSHA256: filePath cannot be empty") } file, err := os.Open(filePath) if err != nil { log.Errorf("Failed to open file for checksum: %v", err) return "", fmt.Errorf("failed to open file: %w", err) } defer file.Close() hasher := sha256.New() reader := bufio.NewReader(file) buffer := make([]byte, 4096) for { select { case <-ctx.Done(): return "", fmt.Errorf("operation cancelled") default: n, err := reader.Read(buffer) if n > 0 { if _, wErr := hasher.Write(buffer[:n]); wErr != nil { return "", fmt.Errorf("hasher write error: %w", wErr) } } if err != nil { if err == io.EOF { sum := hex.EncodeToString(hasher.Sum(nil)) log.Debugf("Checksum computed: %s", sum) return sum, nil } return "", fmt.Errorf("read error: %w", err) } } } } func checkFreeSpaceWithRetry(path string, retries int, delay time.Duration) error { for i := 0; i < retries; i++ { if err := checkStorageSpace(path, MinFreeBytes); err != nil { log.Warnf("Free space check failed (attempt %d/%d): %v", i+1, retries, err) time.Sleep(delay) continue } return nil } return fmt.Errorf("insufficient free space after %d attempts", retries) } func CreateISOContainer(files []string, isoPath string, size string, charset string) error { args := []string{"-o", isoPath, "-V", "ISO_CONTAINER", "-J", "-R", "-input-charset", charset} args = append(args, files...) cmd := exec.Command("genisoimage", args...) cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr return cmd.Run() } func MountISOContainer(isoPath string, mountPoint string) error { if err := os.MkdirAll(mountPoint, os.ModePerm); err != nil { return fmt.Errorf("failed to create mount point: %w", err) } var output []byte var err error for i := 0; i < 3; i++ { cmd := exec.Command("mount", "-o", "loop,ro", isoPath, mountPoint) output, err = cmd.CombinedOutput() if err == nil { log.Infof("ISO container mounted at %s", mountPoint) return nil } log.Warnf("Mount attempt %d failed: %v, output: %s", i+1, err, string(output)) time.Sleep(2 * time.Second) } return fmt.Errorf("failed to mount ISO: %w, output: %s", err, string(output)) } func UnmountISOContainer(mountPoint string) error { cmd := exec.Command("umount", mountPoint) cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr return cmd.Run() } func handleISOContainer(absFilename string) error { isoPath := filepath.Join(conf.ISO.MountPoint, "container.iso") err := CreateISOContainer([]string{absFilename}, isoPath, conf.ISO.Size, conf.ISO.Charset) if err != nil { return fmt.Errorf("failed to create ISO container: %w", err) } if err := os.MkdirAll(conf.ISO.MountPoint, os.ModePerm); err != nil { return fmt.Errorf("failed to create mount point: %w", err) } err = MountISOContainer(isoPath, conf.ISO.MountPoint) if err != nil { return fmt.Errorf("failed to mount ISO container: %w", err) } err = UnmountISOContainer(conf.ISO.MountPoint) if err != nil { return fmt.Errorf("failed to unmount ISO: %w", err) } return nil } func verifyAndCreateISOContainer() error { isoPath := filepath.Join(conf.ISO.MountPoint, "container.iso") if exists, _ := fileExists(isoPath); !exists { log.Infof("ISO container does not exist, creating at %s", isoPath) files := []string{conf.Server.StoragePath} err := CreateISOContainer(files, isoPath, conf.ISO.Size, conf.ISO.Charset) if err != nil { return fmt.Errorf("failed to create ISO: %w", err) } log.Infof("ISO container created at %s", isoPath) } err := verifyISOFile(isoPath) if err != nil { files := []string{conf.Server.StoragePath} err = handleCorruptedISOFile(isoPath, files, conf.ISO.Size, conf.ISO.Charset) if err != nil { return fmt.Errorf("failed to handle corrupted ISO: %w", err) } } if err := os.MkdirAll(conf.ISO.MountPoint, os.ModePerm); err != nil { return fmt.Errorf("failed to create mount point: %w", err) } err = MountISOContainer(isoPath, conf.ISO.MountPoint) if err != nil { return fmt.Errorf("failed to mount ISO: %w", err) } log.Infof("ISO container mounted at %s", conf.ISO.MountPoint) return nil } func verifyISOFile(isoPath string) error { cmd := exec.Command("isoinfo", "-i", isoPath, "-d") output, err := cmd.CombinedOutput() if err != nil { return fmt.Errorf("failed to verify ISO: %w, output: %s", err, string(output)) } return nil } func handleCorruptedISOFile(isoPath string, files []string, size string, charset string) error { log.Warnf("ISO file %s corrupted. Recreating...", isoPath) err := CreateISOContainer(files, isoPath, size, charset) if err != nil { return fmt.Errorf("failed to recreate ISO: %w", err) } return nil }