BUGFIX: /dev/sdb not accessible inside container
This commit is contained in:
@@ -1,252 +1,198 @@
|
|||||||
# BUGFIX: Storage Scan — System Disk Detection & FSType in Container
|
# BUGFIX: /dev/sdb not accessible inside container
|
||||||
|
|
||||||
**Affects:** v0.11.0, `internal/storage/scan_linux.go`
|
## Problem
|
||||||
**Root cause:** Controller runs in a Docker container. Even with `--privileged`, `lsblk` reports mount points from the container's mount namespace (not host), and often can't probe filesystem types due to missing udev/blkid cache.
|
|
||||||
|
|
||||||
## Bug 1: System disk (sda) shows as available
|
`FormatAndMount` fails with `stat /dev/sdb: no such file or directory` because block device nodes
|
||||||
|
don't exist inside the container's `/dev`.
|
||||||
|
|
||||||
### Current broken logic
|
Even with `privileged: true`, Docker creates its own tmpfs at `/dev` with minimal device nodes.
|
||||||
```go
|
The explicit `- /dev:/dev` volume mount in docker-compose.yml is silently overridden by Docker's
|
||||||
if part.MountPoint == "/" || part.MountPoint == "/boot" || part.MountPoint == "/boot/efi" {
|
internal `/dev` tmpfs setup — `docker inspect` shows no bind mount for `/dev`.
|
||||||
isSystem = true
|
|
||||||
}
|
## Root Cause
|
||||||
|
|
||||||
|
Docker always creates a fresh tmpfs for `/dev` inside containers. The `privileged: true` flag
|
||||||
|
relaxes cgroup device access (the kernel allows I/O to any device), but doesn't populate `/dev`
|
||||||
|
with all host device nodes. The bind mount `- /dev:/dev` conflicts with Docker's own `/dev`
|
||||||
|
management and gets silently dropped.
|
||||||
|
|
||||||
|
## Fix
|
||||||
|
|
||||||
|
Mount host `/dev` at a **different path** inside the container. The device nodes at `/host-dev/sdb`
|
||||||
|
are real block devices that the kernel will allow I/O to (because `privileged: true`).
|
||||||
|
|
||||||
|
### 1. docker-compose.yml change
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
volumes:
|
||||||
|
# ...existing...
|
||||||
|
# Block devices — mounted at /host-dev (can't override Docker's /dev)
|
||||||
|
- /dev:/host-dev:rw
|
||||||
```
|
```
|
||||||
Inside the container, sda2 (host's `/`) shows mounted at `/opt/docker/felhom-controller/data` (bind mount), not `/`. So `isSystem` stays false → sda appears in AvailableDisks.
|
|
||||||
|
|
||||||
### Fix: Parse host's fstab + blkid to detect system disk
|
Change `- /dev:/dev` to `- /dev:/host-dev:rw`
|
||||||
|
|
||||||
The host's fstab is mounted at `/host-fstab` inside the container. Parse it to find which devices/UUIDs are used for `/`, `/boot`, `/boot/efi`, and `swap`. Then resolve UUIDs to device paths via `blkid`, and mark their parent disks as system disks.
|
### 2. Go code: Add host device path constant
|
||||||
|
|
||||||
|
In `internal/storage/` package (e.g., `format_linux.go` or a new `paths.go`):
|
||||||
|
|
||||||
```go
|
```go
|
||||||
// getSystemDiskNames returns the set of parent disk names (e.g., "sda")
|
const (
|
||||||
// that contain system partitions (/, /boot, /boot/efi, swap).
|
// HostDevPath is where the host's /dev is mounted inside the container.
|
||||||
func getSystemDiskNames() map[string]bool {
|
// Docker overrides /dev with its own tmpfs, so we mount at /host-dev.
|
||||||
systemDisks := map[string]bool{}
|
HostDevPath = "/host-dev"
|
||||||
|
|
||||||
// Step 1: Parse /host-fstab for system mount points
|
// HostFstabPath is where the host's /etc/fstab is mounted.
|
||||||
fstabPath := "/host-fstab"
|
HostFstabPath = "/host-fstab"
|
||||||
if _, err := os.Stat(fstabPath); err != nil {
|
)
|
||||||
// Fallback: try /etc/fstab (if not containerized or different mount)
|
|
||||||
fstabPath = "/etc/fstab"
|
|
||||||
}
|
|
||||||
|
|
||||||
data, err := os.ReadFile(fstabPath)
|
|
||||||
if err != nil {
|
|
||||||
return systemDisks // Can't read fstab, return empty (safe default: nothing excluded)
|
|
||||||
}
|
|
||||||
|
|
||||||
// System mount points we care about
|
|
||||||
systemMounts := map[string]bool{"/": true, "/boot": true, "/boot/efi": true}
|
|
||||||
|
|
||||||
var systemUUIDs []string
|
|
||||||
var systemDevices []string
|
|
||||||
|
|
||||||
for _, line := range strings.Split(string(data), "\n") {
|
|
||||||
line = strings.TrimSpace(line)
|
|
||||||
if line == "" || strings.HasPrefix(line, "#") {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
fields := strings.Fields(line)
|
|
||||||
if len(fields) < 3 {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
source := fields[0]
|
|
||||||
mountPoint := fields[1]
|
|
||||||
fsType := fields[2]
|
|
||||||
|
|
||||||
isSystemEntry := systemMounts[mountPoint] || fsType == "swap"
|
|
||||||
if !isSystemEntry {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if strings.HasPrefix(source, "UUID=") {
|
|
||||||
systemUUIDs = append(systemUUIDs, strings.TrimPrefix(source, "UUID="))
|
|
||||||
} else if strings.HasPrefix(source, "/dev/") {
|
|
||||||
systemDevices = append(systemDevices, source)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Step 2: Resolve UUIDs to device paths via blkid
|
|
||||||
for _, uuid := range systemUUIDs {
|
|
||||||
out, err := exec.Command("blkid", "-U", uuid).Output()
|
|
||||||
if err == nil {
|
|
||||||
devPath := strings.TrimSpace(string(out)) // e.g., "/dev/sda2"
|
|
||||||
systemDevices = append(systemDevices, devPath)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Step 3: Extract parent disk names from device paths
|
|
||||||
for _, devPath := range systemDevices {
|
|
||||||
diskName := partitionToParentDisk(devPath)
|
|
||||||
if diskName != "" {
|
|
||||||
systemDisks[diskName] = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return systemDisks
|
|
||||||
}
|
|
||||||
|
|
||||||
// partitionToParentDisk extracts parent disk name from a partition device path.
|
// HostDevicePath converts a standard device path to the container-accessible path.
|
||||||
// "/dev/sda2" → "sda", "/dev/nvme0n1p2" → "nvme0n1"
|
// "/dev/sdb" → "/host-dev/sdb"
|
||||||
func partitionToParentDisk(devPath string) string {
|
// "/dev/sdb1" → "/host-dev/sdb1"
|
||||||
name := filepath.Base(devPath) // "sda2"
|
func HostDevicePath(devPath string) string {
|
||||||
|
if strings.HasPrefix(devPath, "/dev/") {
|
||||||
// NVMe: nvme0n1p2 → nvme0n1
|
return HostDevPath + "/" + strings.TrimPrefix(devPath, "/dev/")
|
||||||
if strings.Contains(name, "nvme") {
|
|
||||||
if idx := strings.LastIndex(name, "p"); idx > 0 {
|
|
||||||
candidate := name[:idx]
|
|
||||||
// Verify it's actually a partition number after 'p'
|
|
||||||
if _, err := strconv.Atoi(name[idx+1:]); err == nil {
|
|
||||||
return candidate
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return name
|
|
||||||
}
|
}
|
||||||
|
return devPath
|
||||||
// Standard: sda2 → sda, sdb1 → sdb
|
|
||||||
return strings.TrimRight(name, "0123456789")
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Then in `ScanDisks()`, replace the mount-point-based detection:
|
### 3. Update all device operations to use HostDevicePath()
|
||||||
|
|
||||||
|
In `format_linux.go` (or wherever FormatAndMount is):
|
||||||
|
|
||||||
```go
|
```go
|
||||||
func ScanDisks() (*ScanResult, error) {
|
// Validation — check device exists
|
||||||
// ... lsblk parsing as before ...
|
hostDev := HostDevicePath(req.DevicePath) // "/dev/sdb" → "/host-dev/sdb"
|
||||||
|
if _, err := os.Stat(hostDev); err != nil {
|
||||||
// Get system disk names from host fstab
|
return fmt.Errorf("device not found: %s", req.DevicePath)
|
||||||
systemDiskNames := getSystemDiskNames()
|
|
||||||
|
|
||||||
for _, dev := range parsed.BlockDevices {
|
|
||||||
if dev.Type != "disk" { continue }
|
|
||||||
|
|
||||||
// ... build BlockDevice as before ...
|
|
||||||
|
|
||||||
// Check if this is a system disk (from fstab analysis)
|
|
||||||
isSystem := systemDiskNames[dev.Name]
|
|
||||||
|
|
||||||
// Also check if any partition is currently mounted (fallback safety)
|
|
||||||
anyMounted := false
|
|
||||||
for _, child := range dev.Children {
|
|
||||||
// ... as before ...
|
|
||||||
if part.MountPoint != "" {
|
|
||||||
anyMounted = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bd.Mounted = anyMounted || isSystem
|
|
||||||
|
|
||||||
if isSystem || anyMounted {
|
|
||||||
result.SystemDisks = append(result.SystemDisks, bd)
|
|
||||||
} else {
|
|
||||||
result.AvailableDisks = append(result.AvailableDisks, bd)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Partition — use host device path
|
||||||
|
cmd := exec.Command("sfdisk", hostDev)
|
||||||
|
|
||||||
|
// Format — use host device path
|
||||||
|
cmd := exec.Command("mkfs.ext4", "-F", "-L", label, HostDevicePath(partPath))
|
||||||
|
|
||||||
|
// blkid — use host device path
|
||||||
|
cmd := exec.Command("blkid", "-o", "value", "-s", "UUID", HostDevicePath(partPath))
|
||||||
|
|
||||||
|
// mount — use host device path for source, real path for target
|
||||||
|
cmd := exec.Command("mount", HostDevicePath(partPath), mountPath)
|
||||||
```
|
```
|
||||||
|
|
||||||
## Bug 2: "nincs fájlrendszer" for all partitions
|
### 4. Update ScanDisks blkid enrichment
|
||||||
|
|
||||||
### Current broken logic
|
In `scan_linux.go`, the `enrichWithBlkid` function and `getSystemDiskNames` function
|
||||||
`lsblk` inside a container often returns `null` for `fstype` because it relies on udev/blkid cache that's incomplete in the container's environment.
|
use `blkid` which scans `/dev` by default. Update to scan `/host-dev`:
|
||||||
|
|
||||||
### Fix: Enrich with blkid
|
|
||||||
|
|
||||||
After lsblk parsing, run `blkid` to get filesystem types for all partitions. `blkid` directly probes the device (works in privileged containers):
|
|
||||||
|
|
||||||
```go
|
```go
|
||||||
// enrichWithBlkid fills in missing FSType, UUID, and Label from blkid.
|
// enrichWithBlkid — run blkid on /host-dev to get filesystem info
|
||||||
func enrichWithBlkid(disks []BlockDevice) {
|
func enrichWithBlkid(disks []BlockDevice) {
|
||||||
// Run blkid once for all devices
|
// blkid by default scans /dev — we need it to scan /host-dev
|
||||||
|
// Option 1: Run blkid with explicit device paths from /host-dev
|
||||||
|
// Option 2: Run blkid -o export and it will find devices from /proc/partitions
|
||||||
|
|
||||||
|
// blkid -o export still works because it reads /proc/partitions (kernel-level)
|
||||||
|
// and then probes the devices. With privileged mode, it can probe via /proc.
|
||||||
|
// BUT the DEVNAME in output will say /dev/sdb1, not /host-dev/sdb1.
|
||||||
|
// That's fine — we match by device name anyway.
|
||||||
out, err := exec.Command("blkid", "-o", "export").Output()
|
out, err := exec.Command("blkid", "-o", "export").Output()
|
||||||
if err != nil {
|
// ... parsing as before, matching by /dev/xxx paths ...
|
||||||
return // Best-effort; lsblk data still usable
|
}
|
||||||
}
|
|
||||||
|
// For getSystemDiskNames, blkid -U <uuid> returns /dev/xxx paths which is correct
|
||||||
// Parse blkid output — blocks separated by blank lines:
|
// for fstab parsing (fstab uses /dev/xxx paths too).
|
||||||
// DEVNAME=/dev/sda1
|
// No changes needed there — it's just resolving UUIDs to device names.
|
||||||
// UUID=XXXX-YYYY
|
```
|
||||||
// TYPE=vfat
|
|
||||||
// ...
|
**Note:** `blkid -o export` may not find devices if it can only see Docker's minimal `/dev`.
|
||||||
blkidMap := parseBlkidExport(out)
|
In that case, enumerate `/host-dev/sd*` explicitly:
|
||||||
|
|
||||||
|
```go
|
||||||
|
func enrichWithBlkid(disks []BlockDevice) {
|
||||||
for i := range disks {
|
for i := range disks {
|
||||||
for j := range disks[i].Partitions {
|
for j := range disks[i].Partitions {
|
||||||
p := &disks[i].Partitions[j]
|
p := &disks[i].Partitions[j]
|
||||||
if info, ok := blkidMap[p.Path]; ok {
|
hostPath := HostDevicePath(p.Path) // "/host-dev/sdb1"
|
||||||
if p.FSType == "" {
|
|
||||||
p.FSType = info.FSType
|
// Probe individually
|
||||||
}
|
if fstype, err := exec.Command("blkid", "-o", "value", "-s", "TYPE", hostPath).Output(); err == nil {
|
||||||
if p.UUID == "" {
|
p.FSType = strings.TrimSpace(string(fstype))
|
||||||
p.UUID = info.UUID
|
}
|
||||||
}
|
if uuid, err := exec.Command("blkid", "-o", "value", "-s", "UUID", hostPath).Output(); err == nil {
|
||||||
if p.Label == "" {
|
p.UUID = strings.TrimSpace(string(uuid))
|
||||||
p.Label = info.Label
|
}
|
||||||
}
|
if label, err := exec.Command("blkid", "-o", "value", "-s", "LABEL", hostPath).Output(); err == nil {
|
||||||
|
p.Label = strings.TrimSpace(string(label))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type blkidInfo struct {
|
|
||||||
FSType string
|
|
||||||
UUID string
|
|
||||||
Label string
|
|
||||||
}
|
|
||||||
|
|
||||||
func parseBlkidExport(data []byte) map[string]blkidInfo {
|
|
||||||
result := map[string]blkidInfo{}
|
|
||||||
|
|
||||||
blocks := strings.Split(string(data), "\n\n")
|
|
||||||
for _, block := range blocks {
|
|
||||||
var devName string
|
|
||||||
info := blkidInfo{}
|
|
||||||
for _, line := range strings.Split(strings.TrimSpace(block), "\n") {
|
|
||||||
parts := strings.SplitN(line, "=", 2)
|
|
||||||
if len(parts) != 2 { continue }
|
|
||||||
key, val := parts[0], parts[1]
|
|
||||||
switch key {
|
|
||||||
case "DEVNAME":
|
|
||||||
devName = val
|
|
||||||
case "TYPE":
|
|
||||||
info.FSType = val
|
|
||||||
case "UUID":
|
|
||||||
info.UUID = val
|
|
||||||
case "LABEL":
|
|
||||||
info.Label = val
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if devName != "" {
|
|
||||||
result[devName] = info
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Call `enrichWithBlkid()` at the end of `ScanDisks()` on both `AvailableDisks` and `SystemDisks`.
|
### 5. fstab writing — use real /dev paths
|
||||||
|
|
||||||
## UI impact
|
When writing to fstab, use UUID-based entries (already the plan), so no /dev path needed:
|
||||||
|
```
|
||||||
|
UUID=<uuid> /mnt/hdd_1 ext4 defaults,nofail,noatime 0 2
|
||||||
|
```
|
||||||
|
|
||||||
After these fixes:
|
The UUID is obtained from `blkid` using the `/host-dev/sdb1` path, but the UUID itself
|
||||||
- sda will appear in `SystemDisks` (shown grayed out with "Rendszermeghajtó" label, or hidden entirely)
|
is filesystem-level and doesn't depend on device path.
|
||||||
- sdb will be the only entry in `AvailableDisks`
|
|
||||||
- sda partitions will show: sda1 (vfat, /boot/efi), sda2 (ext4, /), sda3 (swap)
|
|
||||||
- sdb1 will correctly show "(nincs fájlrendszer)" since it genuinely has none
|
|
||||||
|
|
||||||
## Template update
|
### 6. mount command — needs special handling
|
||||||
|
|
||||||
If SystemDisks are currently shown alongside AvailableDisks (both selectable), the template should either:
|
`mount /host-dev/sdb1 /mnt/hdd_1` should work because `/host-dev/sdb1` is a real block
|
||||||
- **Option A:** Hide system disks entirely — simpler, less confusion
|
device node (same major:minor as the host's `/dev/sdb1`). The kernel doesn't care about
|
||||||
- **Option B:** Show them grayed out with a "Rendszermeghajtó — nem választható" badge
|
the path — it uses the device numbers.
|
||||||
|
|
||||||
Recommended: **Option A** — only show AvailableDisks. The user doesn't need to see sda at all.
|
However, `mount` may also accept UUID directly:
|
||||||
|
```go
|
||||||
|
exec.Command("mount", "UUID="+uuid, mountPath)
|
||||||
|
```
|
||||||
|
This is even better — no device path needed at all. But it requires the kernel to find
|
||||||
|
the device, which should work since the device is visible in `/proc/partitions`.
|
||||||
|
|
||||||
## Files modified
|
**Recommended:** Use the device path approach (`mount /host-dev/sdb1 /mnt/hdd_1`) as
|
||||||
- `controller/internal/storage/scan_linux.go` — `getSystemDiskNames()`, `partitionToParentDisk()`, `enrichWithBlkid()`, `parseBlkidExport()`, updated `ScanDisks()`
|
it's more explicit and debuggable.
|
||||||
|
|
||||||
## Testing
|
### 7. Also update docker-setup.sh
|
||||||
1. After fix: scan page shows only sdb (931.5 GB, HD710 PRO, sdb1 no filesystem)
|
|
||||||
2. sda is no longer listed
|
If `docker-setup.sh` generates the controller compose file, update the `/dev` mount:
|
||||||
3. If you temporarily disconnect the USB HDD: scan shows "Nem található inicializálható meghajtó"
|
|
||||||
|
```bash
|
||||||
|
# Was:
|
||||||
|
echo " - /dev:/dev" >> "$compose_file"
|
||||||
|
# Now:
|
||||||
|
echo " - /dev:/host-dev:rw" >> "$compose_file"
|
||||||
|
```
|
||||||
|
|
||||||
|
Check in `docker-setup.sh` whether all necessary packages are deployed during installation (rsync, etc.)
|
||||||
|
|
||||||
|
### 8. Update documentation
|
||||||
|
|
||||||
|
Update CONTEXT.md, CHANGELOG.md, README.md
|
||||||
|
|
||||||
|
## Summary of changes
|
||||||
|
|
||||||
|
| File | Change |
|
||||||
|
|------|--------|
|
||||||
|
| `controller/docker-compose.yml` | `/dev:/dev` → `/dev:/host-dev:rw` |
|
||||||
|
| `controller/internal/storage/format_linux.go` | Use `HostDevicePath()` for all device operations |
|
||||||
|
| `controller/internal/storage/scan_linux.go` | Use `HostDevicePath()` for `blkid` probing |
|
||||||
|
| `controller/internal/storage/paths.go` (NEW) | `HostDevPath`, `HostFstabPath`, `HostDevicePath()` |
|
||||||
|
| `scripts/docker-setup.sh` | Update compose generation |
|
||||||
|
|
||||||
|
## Quick test after fix
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Rebuild + redeploy controller
|
||||||
|
# Then verify:
|
||||||
|
docker exec felhom-controller ls -la /host-dev/sd*
|
||||||
|
# Should show: /host-dev/sda, /host-dev/sda1, sda2, sda3, /host-dev/sdb, /host-dev/sdb1
|
||||||
|
|
||||||
|
# Try format (from UI or manually):
|
||||||
|
docker exec felhom-controller blkid /host-dev/sdb1
|
||||||
|
# Should work (empty output = no filesystem, which is correct for unformatted)
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user