cpu_freebsd.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. package cpu
  2. import (
  3. "context"
  4. "fmt"
  5. "os/exec"
  6. "reflect"
  7. "regexp"
  8. "strconv"
  9. "strings"
  10. "unsafe"
  11. "github.com/shirou/gopsutil/internal/common"
  12. "golang.org/x/sys/unix"
  13. )
  14. var ClocksPerSec = float64(128)
  15. var cpuMatch = regexp.MustCompile(`^CPU:`)
  16. var originMatch = regexp.MustCompile(`Origin\s*=\s*"(.+)"\s+Id\s*=\s*(.+)\s+Family\s*=\s*(.+)\s+Model\s*=\s*(.+)\s+Stepping\s*=\s*(.+)`)
  17. var featuresMatch = regexp.MustCompile(`Features=.+<(.+)>`)
  18. var featuresMatch2 = regexp.MustCompile(`Features2=[a-f\dx]+<(.+)>`)
  19. var cpuEnd = regexp.MustCompile(`^Trying to mount root`)
  20. var cpuCores = regexp.MustCompile(`FreeBSD/SMP: (\d*) package\(s\) x (\d*) core\(s\)`)
  21. var cpuTimesSize int
  22. var emptyTimes cpuTimes
  23. func init() {
  24. getconf, err := exec.LookPath("/usr/bin/getconf")
  25. if err != nil {
  26. return
  27. }
  28. out, err := invoke.Command(getconf, "CLK_TCK")
  29. // ignore errors
  30. if err == nil {
  31. i, err := strconv.ParseFloat(strings.TrimSpace(string(out)), 64)
  32. if err == nil {
  33. ClocksPerSec = float64(i)
  34. }
  35. }
  36. }
  37. func timeStat(name string, t *cpuTimes) *TimesStat {
  38. return &TimesStat{
  39. User: float64(t.User) / ClocksPerSec,
  40. Nice: float64(t.Nice) / ClocksPerSec,
  41. System: float64(t.Sys) / ClocksPerSec,
  42. Idle: float64(t.Idle) / ClocksPerSec,
  43. Irq: float64(t.Intr) / ClocksPerSec,
  44. CPU: name,
  45. }
  46. }
  47. func Times(percpu bool) ([]TimesStat, error) {
  48. return TimesWithContext(context.Background(), percpu)
  49. }
  50. func TimesWithContext(ctx context.Context, percpu bool) ([]TimesStat, error) {
  51. if percpu {
  52. buf, err := unix.SysctlRaw("kern.cp_times")
  53. if err != nil {
  54. return nil, err
  55. }
  56. // We can't do this in init due to the conflict with cpu.init()
  57. if cpuTimesSize == 0 {
  58. cpuTimesSize = int(reflect.TypeOf(cpuTimes{}).Size())
  59. }
  60. ncpus := len(buf) / cpuTimesSize
  61. ret := make([]TimesStat, 0, ncpus)
  62. for i := 0; i < ncpus; i++ {
  63. times := (*cpuTimes)(unsafe.Pointer(&buf[i*cpuTimesSize]))
  64. if *times == emptyTimes {
  65. // CPU not present
  66. continue
  67. }
  68. ret = append(ret, *timeStat(fmt.Sprintf("cpu%d", len(ret)), times))
  69. }
  70. return ret, nil
  71. }
  72. buf, err := unix.SysctlRaw("kern.cp_time")
  73. if err != nil {
  74. return nil, err
  75. }
  76. times := (*cpuTimes)(unsafe.Pointer(&buf[0]))
  77. return []TimesStat{*timeStat("cpu-total", times)}, nil
  78. }
  79. // Returns only one InfoStat on FreeBSD. The information regarding core
  80. // count, however is accurate and it is assumed that all InfoStat attributes
  81. // are the same across CPUs.
  82. func Info() ([]InfoStat, error) {
  83. return InfoWithContext(context.Background())
  84. }
  85. func InfoWithContext(ctx context.Context) ([]InfoStat, error) {
  86. const dmesgBoot = "/var/run/dmesg.boot"
  87. c, num, err := parseDmesgBoot(dmesgBoot)
  88. if err != nil {
  89. return nil, err
  90. }
  91. var u32 uint32
  92. if u32, err = unix.SysctlUint32("hw.clockrate"); err != nil {
  93. return nil, err
  94. }
  95. c.Mhz = float64(u32)
  96. if u32, err = unix.SysctlUint32("hw.ncpu"); err != nil {
  97. return nil, err
  98. }
  99. c.Cores = int32(u32)
  100. if c.ModelName, err = unix.Sysctl("hw.model"); err != nil {
  101. return nil, err
  102. }
  103. ret := make([]InfoStat, num)
  104. for i := 0; i < num; i++ {
  105. ret[i] = c
  106. }
  107. return ret, nil
  108. }
  109. func parseDmesgBoot(fileName string) (InfoStat, int, error) {
  110. c := InfoStat{}
  111. lines, _ := common.ReadLines(fileName)
  112. cpuNum := 1 // default cpu num is 1
  113. for _, line := range lines {
  114. if matches := cpuEnd.FindStringSubmatch(line); matches != nil {
  115. break
  116. } else if matches := originMatch.FindStringSubmatch(line); matches != nil {
  117. c.VendorID = matches[1]
  118. c.Family = matches[3]
  119. c.Model = matches[4]
  120. t, err := strconv.ParseInt(matches[5], 10, 32)
  121. if err != nil {
  122. return c, 0, fmt.Errorf("unable to parse FreeBSD CPU stepping information from %q: %v", line, err)
  123. }
  124. c.Stepping = int32(t)
  125. } else if matches := featuresMatch.FindStringSubmatch(line); matches != nil {
  126. for _, v := range strings.Split(matches[1], ",") {
  127. c.Flags = append(c.Flags, strings.ToLower(v))
  128. }
  129. } else if matches := featuresMatch2.FindStringSubmatch(line); matches != nil {
  130. for _, v := range strings.Split(matches[1], ",") {
  131. c.Flags = append(c.Flags, strings.ToLower(v))
  132. }
  133. } else if matches := cpuCores.FindStringSubmatch(line); matches != nil {
  134. t, err := strconv.ParseInt(matches[1], 10, 32)
  135. if err != nil {
  136. return c, 0, fmt.Errorf("unable to parse FreeBSD CPU Nums from %q: %v", line, err)
  137. }
  138. cpuNum = int(t)
  139. t2, err := strconv.ParseInt(matches[2], 10, 32)
  140. if err != nil {
  141. return c, 0, fmt.Errorf("unable to parse FreeBSD CPU cores from %q: %v", line, err)
  142. }
  143. c.Cores = int32(t2)
  144. }
  145. }
  146. return c, cpuNum, nil
  147. }