mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-02 22:35:59 +00:00
posture: ignore not found serial errors
This commit is contained in:
parent
86c8ab7502
commit
b2d11995c9
@ -8,7 +8,6 @@
|
|||||||
package posture
|
package posture
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
@ -31,17 +30,17 @@ func getByteFromSmbiosStructure(s *smbios.Structure, specOffset int) uint8 {
|
|||||||
|
|
||||||
// getStringFromSmbiosStructure retrieves a string at the given specOffset.
|
// getStringFromSmbiosStructure retrieves a string at the given specOffset.
|
||||||
// Returns an empty string if no string was present.
|
// Returns an empty string if no string was present.
|
||||||
func getStringFromSmbiosStructure(s *smbios.Structure, specOffset int) (string, error) {
|
func getStringFromSmbiosStructure(s *smbios.Structure, specOffset int) string {
|
||||||
index := getByteFromSmbiosStructure(s, specOffset)
|
index := getByteFromSmbiosStructure(s, specOffset)
|
||||||
|
|
||||||
if index == 0 || int(index) > len(s.Strings) {
|
if index == 0 || int(index) > len(s.Strings) {
|
||||||
return "", errors.New("specified offset does not exist in smbios structure")
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
str := s.Strings[index-1]
|
str := s.Strings[index-1]
|
||||||
trimmed := strings.TrimSpace(str)
|
trimmed := strings.TrimSpace(str)
|
||||||
|
|
||||||
return trimmed, nil
|
return trimmed
|
||||||
}
|
}
|
||||||
|
|
||||||
// Product Table (Type 1) structure
|
// Product Table (Type 1) structure
|
||||||
@ -71,7 +70,6 @@ func init() {
|
|||||||
validTables = append(validTables, table)
|
validTables = append(validTables, table)
|
||||||
}
|
}
|
||||||
numOfTables = len(validTables)
|
numOfTables = len(validTables)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// serialFromSmbiosStructure extracts a serial number from a product,
|
// serialFromSmbiosStructure extracts a serial number from a product,
|
||||||
@ -86,14 +84,7 @@ func serialFromSmbiosStructure(s *smbios.Structure) (string, error) {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
serial, err := getStringFromSmbiosStructure(s, serialNumberOffset)
|
serial := getStringFromSmbiosStructure(s, serialNumberOffset)
|
||||||
if err != nil {
|
|
||||||
return "", fmt.Errorf(
|
|
||||||
"failed to get serial from %s table: %w",
|
|
||||||
idToTableName[int(s.Header.Type)],
|
|
||||||
err,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return serial, nil
|
return serial, nil
|
||||||
}
|
}
|
||||||
@ -125,9 +116,11 @@ func GetSerialNumbers(logf logger.Logf) ([]string, error) {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if serial != "" {
|
||||||
serials = append(serials, serial)
|
serials = append(serials, serial)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
err = multierr.New(errs...)
|
err = multierr.New(errs...)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user