host_darwin.go 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. // +build darwin
  2. package host
  3. import (
  4. "bytes"
  5. "context"
  6. "encoding/binary"
  7. "io/ioutil"
  8. "os"
  9. "os/exec"
  10. "runtime"
  11. "strconv"
  12. "strings"
  13. "sync/atomic"
  14. "time"
  15. "unsafe"
  16. "github.com/shirou/gopsutil/internal/common"
  17. "github.com/shirou/gopsutil/process"
  18. )
  19. // from utmpx.h
  20. const USER_PROCESS = 7
  21. func Info() (*InfoStat, error) {
  22. return InfoWithContext(context.Background())
  23. }
  24. func InfoWithContext(ctx context.Context) (*InfoStat, error) {
  25. ret := &InfoStat{
  26. OS: runtime.GOOS,
  27. PlatformFamily: "darwin",
  28. }
  29. hostname, err := os.Hostname()
  30. if err == nil {
  31. ret.Hostname = hostname
  32. }
  33. uname, err := exec.LookPath("uname")
  34. if err == nil {
  35. out, err := invoke.CommandWithContext(ctx, uname, "-r")
  36. if err == nil {
  37. ret.KernelVersion = strings.ToLower(strings.TrimSpace(string(out)))
  38. }
  39. }
  40. platform, family, pver, err := PlatformInformation()
  41. if err == nil {
  42. ret.Platform = platform
  43. ret.PlatformFamily = family
  44. ret.PlatformVersion = pver
  45. }
  46. system, role, err := Virtualization()
  47. if err == nil {
  48. ret.VirtualizationSystem = system
  49. ret.VirtualizationRole = role
  50. }
  51. boot, err := BootTime()
  52. if err == nil {
  53. ret.BootTime = boot
  54. ret.Uptime = uptime(boot)
  55. }
  56. procs, err := process.Pids()
  57. if err == nil {
  58. ret.Procs = uint64(len(procs))
  59. }
  60. values, err := common.DoSysctrlWithContext(ctx, "kern.uuid")
  61. if err == nil && len(values) == 1 && values[0] != "" {
  62. ret.HostID = strings.ToLower(values[0])
  63. }
  64. return ret, nil
  65. }
  66. // cachedBootTime must be accessed via atomic.Load/StoreUint64
  67. var cachedBootTime uint64
  68. func BootTime() (uint64, error) {
  69. return BootTimeWithContext(context.Background())
  70. }
  71. func BootTimeWithContext(ctx context.Context) (uint64, error) {
  72. t := atomic.LoadUint64(&cachedBootTime)
  73. if t != 0 {
  74. return t, nil
  75. }
  76. values, err := common.DoSysctrlWithContext(ctx, "kern.boottime")
  77. if err != nil {
  78. return 0, err
  79. }
  80. // ex: { sec = 1392261637, usec = 627534 } Thu Feb 13 12:20:37 2014
  81. v := strings.Replace(values[2], ",", "", 1)
  82. boottime, err := strconv.ParseInt(v, 10, 64)
  83. if err != nil {
  84. return 0, err
  85. }
  86. t = uint64(boottime)
  87. atomic.StoreUint64(&cachedBootTime, t)
  88. return t, nil
  89. }
  90. func uptime(boot uint64) uint64 {
  91. return uint64(time.Now().Unix()) - boot
  92. }
  93. func Uptime() (uint64, error) {
  94. return UptimeWithContext(context.Background())
  95. }
  96. func UptimeWithContext(ctx context.Context) (uint64, error) {
  97. boot, err := BootTime()
  98. if err != nil {
  99. return 0, err
  100. }
  101. return uptime(boot), nil
  102. }
  103. func Users() ([]UserStat, error) {
  104. return UsersWithContext(context.Background())
  105. }
  106. func UsersWithContext(ctx context.Context) ([]UserStat, error) {
  107. utmpfile := "/var/run/utmpx"
  108. var ret []UserStat
  109. file, err := os.Open(utmpfile)
  110. if err != nil {
  111. return ret, err
  112. }
  113. defer file.Close()
  114. buf, err := ioutil.ReadAll(file)
  115. if err != nil {
  116. return ret, err
  117. }
  118. u := Utmpx{}
  119. entrySize := int(unsafe.Sizeof(u))
  120. count := len(buf) / entrySize
  121. for i := 0; i < count; i++ {
  122. b := buf[i*entrySize : i*entrySize+entrySize]
  123. var u Utmpx
  124. br := bytes.NewReader(b)
  125. err := binary.Read(br, binary.LittleEndian, &u)
  126. if err != nil {
  127. continue
  128. }
  129. if u.Type != USER_PROCESS {
  130. continue
  131. }
  132. user := UserStat{
  133. User: common.IntToString(u.User[:]),
  134. Terminal: common.IntToString(u.Line[:]),
  135. Host: common.IntToString(u.Host[:]),
  136. Started: int(u.Tv.Sec),
  137. }
  138. ret = append(ret, user)
  139. }
  140. return ret, nil
  141. }
  142. func PlatformInformation() (string, string, string, error) {
  143. return PlatformInformationWithContext(context.Background())
  144. }
  145. func PlatformInformationWithContext(ctx context.Context) (string, string, string, error) {
  146. platform := ""
  147. family := ""
  148. pver := ""
  149. sw_vers, err := exec.LookPath("sw_vers")
  150. if err != nil {
  151. return "", "", "", err
  152. }
  153. uname, err := exec.LookPath("uname")
  154. if err != nil {
  155. return "", "", "", err
  156. }
  157. out, err := invoke.CommandWithContext(ctx, uname, "-s")
  158. if err == nil {
  159. platform = strings.ToLower(strings.TrimSpace(string(out)))
  160. }
  161. out, err = invoke.CommandWithContext(ctx, sw_vers, "-productVersion")
  162. if err == nil {
  163. pver = strings.ToLower(strings.TrimSpace(string(out)))
  164. }
  165. return platform, family, pver, nil
  166. }
  167. func Virtualization() (string, string, error) {
  168. return VirtualizationWithContext(context.Background())
  169. }
  170. func VirtualizationWithContext(ctx context.Context) (string, string, error) {
  171. return "", "", common.ErrNotImplementedError
  172. }
  173. func KernelVersion() (string, error) {
  174. return KernelVersionWithContext(context.Background())
  175. }
  176. func KernelVersionWithContext(ctx context.Context) (string, error) {
  177. _, _, version, err := PlatformInformation()
  178. return version, err
  179. }
  180. func SensorsTemperatures() ([]TemperatureStat, error) {
  181. return SensorsTemperaturesWithContext(context.Background())
  182. }
  183. func SensorsTemperaturesWithContext(ctx context.Context) ([]TemperatureStat, error) {
  184. return []TemperatureStat{}, common.ErrNotImplementedError
  185. }