smart.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. package smart
  2. import (
  3. "errors"
  4. "fmt"
  5. "os"
  6. "path/filepath"
  7. "strings"
  8. "github.com/anatol/smart.go"
  9. )
  10. // SMART data structure for SATA disks
  11. type SATAAttrData struct {
  12. Id uint8
  13. Name string
  14. Type int
  15. RawVal uint64
  16. Current uint8
  17. Worst uint8
  18. }
  19. type SMARTData struct {
  20. ModelNumber string
  21. SerialNumber string
  22. Size uint64
  23. Temperature int
  24. /* NVME specific fields */
  25. NVMENameSpace []smart.NvmeIdentNamespace
  26. PowerOnHours uint64
  27. PowerCycles uint64
  28. UnsafeShutdowns uint64
  29. MediaErrors uint64
  30. /* SATA specific fields */
  31. SATAAttrs []*SATAAttrData
  32. }
  33. // Get SMART data of a particular disk / device
  34. func GetSMARTData(disk string) (*SMARTData, error) {
  35. if !strings.HasPrefix(disk, "/dev/") {
  36. disk = filepath.Join("/dev", disk)
  37. }
  38. //Check if the disk exists
  39. if _, err := os.Stat(disk); os.IsNotExist(err) {
  40. return nil, fmt.Errorf("disk %s does not exist", disk)
  41. }
  42. // Check if the disk is NVMe or SATA
  43. isNVMe := strings.HasPrefix(disk, "/dev/nvme")
  44. isSATA := strings.HasPrefix(disk, "/dev/sd")
  45. // If the disk is not NVMe or SATA, return an error
  46. if !isNVMe && !isSATA {
  47. return nil, fmt.Errorf("disk %s is not an NVMe or SATA disk", disk)
  48. }
  49. if isNVMe {
  50. return getNVMESMART(disk)
  51. } else if isSATA {
  52. return getSATASMART(disk)
  53. }
  54. return nil, errors.New("unsupported disk type")
  55. }
  56. func getSATASMART(diskpath string) (*SMARTData, error) {
  57. dev, err := smart.OpenSata(diskpath)
  58. if err != nil {
  59. return nil, err
  60. }
  61. defer dev.Close()
  62. c, err := dev.Identify()
  63. if err != nil {
  64. return nil, err
  65. }
  66. sm, err := dev.ReadSMARTData()
  67. if err != nil {
  68. return nil, err
  69. }
  70. _, capacity, _, _, _ := c.Capacity()
  71. sataAttrs := []*SATAAttrData{}
  72. for _, attr := range sm.Attrs {
  73. thisAttrID := attr.Id
  74. thisAttrName := attr.Name
  75. thisAttrType := attr.Type
  76. thisAttrRawVal := attr.ValueRaw
  77. val, low, high, _, err := attr.ParseAsTemperature()
  78. if err != nil {
  79. continue
  80. }
  81. fmt.Println("Temperature: ", val, low, high)
  82. thisAttrData := SATAAttrData{
  83. Id: thisAttrID,
  84. Name: thisAttrName,
  85. Type: thisAttrType,
  86. RawVal: thisAttrRawVal,
  87. Current: attr.Current,
  88. Worst: attr.Worst,
  89. }
  90. sataAttrs = append(sataAttrs, &thisAttrData)
  91. }
  92. smartData := SMARTData{
  93. ModelNumber: c.ModelNumber(),
  94. SerialNumber: c.SerialNumber(),
  95. Size: capacity,
  96. SATAAttrs: sataAttrs,
  97. }
  98. return &smartData, nil
  99. }
  100. func getNVMESMART(diskpath string) (*SMARTData, error) {
  101. dev, err := smart.OpenNVMe(diskpath)
  102. if err != nil {
  103. return nil, err
  104. }
  105. defer dev.Close()
  106. c, nss, err := dev.Identify()
  107. if err != nil {
  108. return nil, err
  109. }
  110. sm, _ := dev.ReadSMART()
  111. smartData := SMARTData{
  112. ModelNumber: c.ModelNumber(),
  113. SerialNumber: c.SerialNumber(),
  114. Size: c.Tnvmcap.Val[0],
  115. Temperature: int(sm.Temperature),
  116. PowerOnHours: sm.PowerOnHours.Val[0],
  117. PowerCycles: sm.PowerCycles.Val[0],
  118. UnsafeShutdowns: sm.UnsafeShutdowns.Val[0],
  119. MediaErrors: sm.MediaErrors.Val[0],
  120. NVMENameSpace: nss,
  121. }
  122. return &smartData, nil
  123. }