package collector import ( "bee/audit/internal/schema" "log/slog" "os/exec" "regexp" "strconv" "strings" ) func collectPSUs() []schema.HardwarePowerSupply { // ipmitool requires /dev/ipmi0 — not available on non-server hardware out, err := exec.Command("ipmitool", "fru", "print").Output() if err != nil { slog.Info("psu: ipmitool unavailable, skipping", "err", err) return nil } psus := parseFRU(string(out)) if sdrOut, err := exec.Command("ipmitool", "sdr").Output(); err == nil { mergePSUSDR(psus, parsePSUSDR(string(sdrOut))) } slog.Info("psu: collected", "count", len(psus)) return psus } // parseFRU parses ipmitool fru print output. // Each FRU record starts with "FRU Device Description : (ID )" // followed by indented key: value lines. func parseFRU(output string) []schema.HardwarePowerSupply { var psus []schema.HardwarePowerSupply slot := 0 for _, block := range splitFRUBlocks(output) { psu, ok := parseFRUBlock(block, slot) if !ok { continue } psus = append(psus, psu) slot++ } return psus } func splitFRUBlocks(output string) []string { var blocks []string var cur strings.Builder for _, line := range strings.Split(output, "\n") { if strings.HasPrefix(line, "FRU Device Description") { if cur.Len() > 0 { blocks = append(blocks, cur.String()) cur.Reset() } } cur.WriteString(line) cur.WriteByte('\n') } if cur.Len() > 0 { blocks = append(blocks, cur.String()) } return blocks } func parseFRUBlock(block string, slotIdx int) (schema.HardwarePowerSupply, bool) { fields := map[string]string{} header := "" for _, line := range strings.Split(block, "\n") { if strings.HasPrefix(line, "FRU Device Description") { header = line continue } idx := strings.Index(line, " : ") if idx < 0 { continue } key := strings.TrimSpace(line[:idx]) val := strings.TrimSpace(line[idx+3:]) fields[key] = val } // Only process PSU FRU records headerLower := strings.ToLower(header) if !strings.Contains(headerLower, "psu") && !strings.Contains(headerLower, "power supply") && !strings.Contains(headerLower, "power_supply") { return schema.HardwarePowerSupply{}, false } present := true psu := schema.HardwarePowerSupply{Present: &present} slotStr := strconv.Itoa(slotIdx) psu.Slot = &slotStr if v := cleanDMIValue(fields["Board Product"]); v != "" { psu.Model = &v } if v := cleanDMIValue(fields["Board Mfg"]); v != "" { psu.Vendor = &v } if v := cleanDMIValue(fields["Board Serial"]); v != "" { psu.SerialNumber = &v } if v := cleanDMIValue(fields["Board Part Number"]); v != "" { psu.PartNumber = &v } if v := cleanDMIValue(fields["Board Extra"]); v != "" { psu.Firmware = &v } // wattage: some vendors put it in product name e.g. "PSU 800W" if psu.Model != nil { if w := parseWattage(*psu.Model); w > 0 { psu.WattageW = &w } } status := statusOK psu.Status = &status return psu, true } type psuSDR struct { slot int status string reason string inputPowerW *float64 outputPowerW *float64 inputVoltage *float64 temperatureC *float64 healthPct *float64 } var psuSlotRe = regexp.MustCompile(`(?i)\bpsu?\s*([0-9]+)\b|\bps\s*([0-9]+)\b`) func parsePSUSDR(raw string) map[int]psuSDR { out := map[int]psuSDR{} for _, line := range strings.Split(raw, "\n") { fields := splitSDRFields(line) if len(fields) < 3 { continue } name := fields[0] value := fields[1] state := strings.ToLower(fields[2]) slot, ok := parsePSUSlot(name) if !ok { continue } entry := out[slot] entry.slot = slot if entry.status == "" { entry.status = statusOK } if state != "" && state != "ok" && state != "ns" { entry.status = statusCritical entry.reason = "PSU sensor reported non-OK state: " + state } lowerName := strings.ToLower(name) switch { case strings.Contains(lowerName, "input power"): entry.inputPowerW = parseFloatPtr(value) case strings.Contains(lowerName, "output power"): entry.outputPowerW = parseFloatPtr(value) case strings.Contains(lowerName, "input voltage"), strings.Contains(lowerName, "ac input"): entry.inputVoltage = parseFloatPtr(value) case strings.Contains(lowerName, "temp"): entry.temperatureC = parseFloatPtr(value) case strings.Contains(lowerName, "health"), strings.Contains(lowerName, "remaining life"), strings.Contains(lowerName, "life remaining"): entry.healthPct = parsePercentPtr(value) } out[slot] = entry } return out } func mergePSUSDR(psus []schema.HardwarePowerSupply, sdr map[int]psuSDR) { for i := range psus { slotIdx, err := strconv.Atoi(derefPSUSlot(psus[i].Slot)) if err != nil { continue } entry, ok := sdr[slotIdx+1] if !ok { continue } if entry.inputPowerW != nil { psus[i].InputPowerW = entry.inputPowerW } if entry.outputPowerW != nil { psus[i].OutputPowerW = entry.outputPowerW } if entry.inputVoltage != nil { psus[i].InputVoltage = entry.inputVoltage } if entry.temperatureC != nil { psus[i].TemperatureC = entry.temperatureC } if entry.healthPct != nil { psus[i].LifeRemainingPct = entry.healthPct lifeUsed := 100 - *entry.healthPct psus[i].LifeUsedPct = &lifeUsed } if entry.status != "" { psus[i].Status = &entry.status } if entry.reason != "" { psus[i].ErrorDescription = &entry.reason } if psus[i].Status != nil && *psus[i].Status == statusOK { if (entry.inputPowerW == nil && entry.outputPowerW == nil && entry.inputVoltage == nil) && entry.status == "" { unknown := statusUnknown psus[i].Status = &unknown } } } } func splitSDRFields(line string) []string { parts := strings.Split(line, "|") out := make([]string, 0, len(parts)) for _, part := range parts { part = strings.TrimSpace(part) if part != "" { out = append(out, part) } } return out } func parsePSUSlot(name string) (int, bool) { m := psuSlotRe.FindStringSubmatch(strings.ToLower(name)) if len(m) == 0 { return 0, false } for _, group := range m[1:] { if group == "" { continue } n, err := strconv.Atoi(group) if err == nil && n > 0 { return n, true } } return 0, false } func parseFloatPtr(raw string) *float64 { raw = strings.TrimSpace(raw) if raw == "" || strings.EqualFold(raw, "na") { return nil } for _, field := range strings.Fields(raw) { n, err := strconv.ParseFloat(strings.TrimSpace(field), 64) if err == nil { return &n } } return nil } func derefPSUSlot(slot *string) string { if slot == nil { return "" } return *slot } // parseWattage extracts wattage from strings like "PSU 800W", "1200W PLATINUM". func parseWattage(s string) int { s = strings.ToUpper(s) for _, part := range strings.Fields(s) { part = strings.TrimSuffix(part, "W") if n, err := strconv.Atoi(part); err == nil && n > 0 && n <= 5000 { return n } } return 0 }