c9de193a9d
Docker always creates a fresh tmpfs at /dev, silently dropping any /dev:/dev bind mount. Block devices must be accessed via /host-dev where the host /dev is actually mounted. Changes: - docker-compose.yml: /dev:/dev → /dev:/host-dev:rw - safety.go: add HostDevPath constant + HostDevicePath() helper - format_linux.go: all device ops (stat, sfdisk, partprobe, mkfs.ext4, blkid) use HostDevicePath() to resolve /dev/sdb → /host-dev/sdb - safety_linux.go: IsSystemDisk() stats device via /host-dev - scan_linux.go: enrichWithBlkid() probes each partition individually via /host-dev/sdXN instead of batch blkid -o export (which can't find devices when /dev is Docker's minimal tmpfs) Fixes "stat /dev/sdb: no such file or directory" in FormatAndMount. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
182 lines
5.4 KiB
Go
182 lines
5.4 KiB
Go
//go:build linux
|
|
|
|
package storage
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
// FormatAndMount formats a disk/partition and mounts it.
|
|
// Progress updates are sent on the progress channel.
|
|
// Returns the final mount path on success.
|
|
func FormatAndMount(req FormatRequest, progress chan<- FormatProgress) (string, error) {
|
|
send := func(step, msg string, pct int) {
|
|
progress <- FormatProgress{Step: step, Message: msg, Percent: pct}
|
|
}
|
|
fail := func(step, msg string, err error) error {
|
|
errStr := ""
|
|
if err != nil {
|
|
errStr = err.Error()
|
|
}
|
|
progress <- FormatProgress{Step: "error", Message: msg, Error: errStr, Percent: 0}
|
|
return fmt.Errorf("%s: %w", msg, err)
|
|
}
|
|
|
|
mountPath := "/mnt/" + req.MountName
|
|
|
|
// --- Step 1: Validate ---
|
|
send("validating", "Eszköz ellenőrzése...", 5)
|
|
|
|
if err := ValidateMountName(req.MountName); err != nil {
|
|
return "", fail("validating", "Érvénytelen csatlakoztatási név", err)
|
|
}
|
|
if _, err := os.Stat(HostDevicePath(req.DevicePath)); err != nil {
|
|
return "", fail("validating", "Az eszköz nem létezik: "+req.DevicePath, err)
|
|
}
|
|
|
|
isSystem, err := IsSystemDisk(req.DevicePath)
|
|
if err != nil {
|
|
return "", fail("validating", "Rendszermeghajtó ellenőrzése sikertelen", err)
|
|
}
|
|
if isSystem {
|
|
return "", fail("validating", "Ez a rendszermeghajtó — nem formázható!", fmt.Errorf("device is system disk"))
|
|
}
|
|
|
|
mounted, err := IsDeviceMounted(req.DevicePath)
|
|
if err != nil {
|
|
return "", fail("validating", "Csatlakoztatási állapot ellenőrzése sikertelen", err)
|
|
}
|
|
if mounted {
|
|
return "", fail("validating", "Az eszköz már csatlakoztatva van", fmt.Errorf("device already mounted"))
|
|
}
|
|
|
|
inUse, err := IsMountPathInUse(mountPath)
|
|
if err != nil {
|
|
return "", fail("validating", "Csatlakoztatási útvonal ellenőrzése sikertelen", err)
|
|
}
|
|
if inUse {
|
|
return "", fail("validating", "A csatlakoztatási útvonal már használatban van: "+mountPath, fmt.Errorf("mount path in use"))
|
|
}
|
|
|
|
send("validating", "Ellenőrzés kész", 10)
|
|
|
|
// --- Step 2: Partition (if requested) ---
|
|
partDev := req.DevicePath
|
|
if req.CreatePartition {
|
|
send("partitioning", "Partíció létrehozása...", 15)
|
|
|
|
sfdiskInput := "label: gpt\n,,,L\n"
|
|
cmd := exec.Command("sfdisk", HostDevicePath(req.DevicePath))
|
|
cmd.Stdin = strings.NewReader(sfdiskInput)
|
|
if out, err := cmd.CombinedOutput(); err != nil {
|
|
return "", fail("partitioning", "Partícionálás sikertelen: "+string(out), err)
|
|
}
|
|
|
|
_ = exec.Command("partprobe", HostDevicePath(req.DevicePath)).Run()
|
|
time.Sleep(2 * time.Second)
|
|
|
|
partDev = req.DevicePath + "1"
|
|
if strings.Contains(req.DevicePath, "nvme") {
|
|
partDev = req.DevicePath + "p1"
|
|
}
|
|
if _, err := os.Stat(HostDevicePath(partDev)); err != nil {
|
|
return "", fail("partitioning", "Partíció nem található a létrehozás után: "+partDev, err)
|
|
}
|
|
|
|
send("partitioning", "Partíció létrehozva: "+partDev, 25)
|
|
}
|
|
|
|
// --- Step 3: Format ---
|
|
send("formatting", "Fájlrendszer formázása (ext4)...", 30)
|
|
|
|
label := req.Label
|
|
if label == "" {
|
|
label = req.MountName
|
|
}
|
|
if len(label) > 16 {
|
|
label = label[:16]
|
|
}
|
|
|
|
mkfsCmd := exec.Command("mkfs.ext4", "-L", label, "-F", HostDevicePath(partDev))
|
|
var mkfsOut bytes.Buffer
|
|
mkfsCmd.Stdout = &mkfsOut
|
|
mkfsCmd.Stderr = &mkfsOut
|
|
if err := mkfsCmd.Run(); err != nil {
|
|
return "", fail("formatting", "Formázás sikertelen: "+mkfsOut.String(), err)
|
|
}
|
|
|
|
send("formatting", "Formázás kész", 60)
|
|
|
|
// --- Step 4: Mount ---
|
|
send("mounting", "Csatlakoztatás: "+mountPath+"...", 65)
|
|
|
|
if err := os.MkdirAll(mountPath, 0755); err != nil {
|
|
return "", fail("mounting", "Csatlakoztatási mappa nem hozható létre: "+mountPath, err)
|
|
}
|
|
|
|
uuidOut, err := exec.Command("blkid", "-s", "UUID", "-o", "value", HostDevicePath(partDev)).Output()
|
|
if err != nil {
|
|
return "", fail("mounting", "UUID lekérése sikertelen", err)
|
|
}
|
|
uuid := strings.TrimSpace(string(uuidOut))
|
|
if uuid == "" {
|
|
return "", fail("mounting", "UUID üres a formázás után", fmt.Errorf("empty UUID"))
|
|
}
|
|
|
|
// Backup fstab (non-fatal)
|
|
_ = BackupFstab(FstabPath)
|
|
|
|
if err := AppendFstabEntry(FstabPath, uuid, mountPath, "ext4", "defaults,nofail,noatime"); err != nil {
|
|
return "", fail("mounting", "fstab bejegyzés hozzáadása sikertelen", err)
|
|
}
|
|
|
|
if out, err := exec.Command("mount", mountPath).CombinedOutput(); err != nil {
|
|
return "", fail("mounting", "Csatlakoztatás sikertelen: "+string(out), err)
|
|
}
|
|
|
|
send("mounting", "Csatlakoztatva: "+mountPath, 80)
|
|
|
|
// --- Step 5: Permissions + subdirs ---
|
|
send("permissions", "Mappák létrehozása és jogosultságok beállítása...", 85)
|
|
|
|
_ = exec.Command("chown", "1000:1000", mountPath).Run()
|
|
|
|
for _, subdir := range []string{"storage", "Dokumentumok"} {
|
|
dir := filepath.Join(mountPath, subdir)
|
|
if err := os.MkdirAll(dir, 0755); err == nil {
|
|
_ = exec.Command("chown", "1000:1000", dir).Run()
|
|
}
|
|
}
|
|
|
|
send("done", "Meghajtó sikeresen inicializálva: "+mountPath, 100)
|
|
|
|
return mountPath, nil
|
|
}
|
|
|
|
// GetDeviceUUID returns the UUID of a block device/partition.
|
|
func GetDeviceUUID(devicePath string) (string, error) {
|
|
out, err := exec.Command("blkid", "-s", "UUID", "-o", "value", HostDevicePath(devicePath)).Output()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return strings.TrimSpace(string(out)), nil
|
|
}
|
|
|
|
// ReadFstab reads the current fstab content.
|
|
func ReadFstab() (string, error) {
|
|
data, err := os.ReadFile(FstabPath)
|
|
if err != nil {
|
|
data, err = os.ReadFile("/etc/fstab")
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
}
|
|
return string(data), nil
|
|
}
|