host_openbsd.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. // +build openbsd
  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. "time"
  14. "unsafe"
  15. "github.com/shirou/gopsutil/internal/common"
  16. "github.com/shirou/gopsutil/process"
  17. )
  18. const (
  19. UTNameSize = 32 /* see MAXLOGNAME in <sys/param.h> */
  20. UTLineSize = 8
  21. UTHostSize = 16
  22. )
  23. func Info() (*InfoStat, error) {
  24. return InfoWithContext(context.Background())
  25. }
  26. func InfoWithContext(ctx context.Context) (*InfoStat, error) {
  27. ret := &InfoStat{
  28. OS: runtime.GOOS,
  29. PlatformFamily: "openbsd",
  30. }
  31. hostname, err := os.Hostname()
  32. if err == nil {
  33. ret.Hostname = hostname
  34. }
  35. platform, family, version, err := PlatformInformation()
  36. if err == nil {
  37. ret.Platform = platform
  38. ret.PlatformFamily = family
  39. ret.PlatformVersion = version
  40. }
  41. system, role, err := Virtualization()
  42. if err == nil {
  43. ret.VirtualizationSystem = system
  44. ret.VirtualizationRole = role
  45. }
  46. procs, err := process.Pids()
  47. if err == nil {
  48. ret.Procs = uint64(len(procs))
  49. }
  50. boot, err := BootTime()
  51. if err == nil {
  52. ret.BootTime = boot
  53. ret.Uptime = uptime(boot)
  54. }
  55. return ret, nil
  56. }
  57. func BootTime() (uint64, error) {
  58. return BootTimeWithContext(context.Background())
  59. }
  60. func BootTimeWithContext(ctx context.Context) (uint64, error) {
  61. val, err := common.DoSysctrl("kern.boottime")
  62. if err != nil {
  63. return 0, err
  64. }
  65. boottime, err := strconv.ParseUint(val[0], 10, 64)
  66. if err != nil {
  67. return 0, err
  68. }
  69. return boottime, nil
  70. }
  71. func uptime(boot uint64) uint64 {
  72. return uint64(time.Now().Unix()) - boot
  73. }
  74. func Uptime() (uint64, error) {
  75. return UptimeWithContext(context.Background())
  76. }
  77. func UptimeWithContext(ctx context.Context) (uint64, error) {
  78. boot, err := BootTime()
  79. if err != nil {
  80. return 0, err
  81. }
  82. return uptime(boot), nil
  83. }
  84. func PlatformInformation() (string, string, string, error) {
  85. return PlatformInformationWithContext(context.Background())
  86. }
  87. func PlatformInformationWithContext(ctx context.Context) (string, string, string, error) {
  88. platform := ""
  89. family := ""
  90. version := ""
  91. uname, err := exec.LookPath("uname")
  92. if err != nil {
  93. return "", "", "", err
  94. }
  95. out, err := invoke.CommandWithContext(ctx, uname, "-s")
  96. if err == nil {
  97. platform = strings.ToLower(strings.TrimSpace(string(out)))
  98. }
  99. out, err = invoke.CommandWithContext(ctx, uname, "-r")
  100. if err == nil {
  101. version = strings.ToLower(strings.TrimSpace(string(out)))
  102. }
  103. return platform, family, version, nil
  104. }
  105. func Virtualization() (string, string, error) {
  106. return VirtualizationWithContext(context.Background())
  107. }
  108. func VirtualizationWithContext(ctx context.Context) (string, string, error) {
  109. return "", "", common.ErrNotImplementedError
  110. }
  111. func Users() ([]UserStat, error) {
  112. return UsersWithContext(context.Background())
  113. }
  114. func UsersWithContext(ctx context.Context) ([]UserStat, error) {
  115. var ret []UserStat
  116. utmpfile := "/var/run/utmp"
  117. file, err := os.Open(utmpfile)
  118. if err != nil {
  119. return ret, err
  120. }
  121. defer file.Close()
  122. buf, err := ioutil.ReadAll(file)
  123. if err != nil {
  124. return ret, err
  125. }
  126. u := Utmp{}
  127. entrySize := int(unsafe.Sizeof(u))
  128. count := len(buf) / entrySize
  129. for i := 0; i < count; i++ {
  130. b := buf[i*entrySize : i*entrySize+entrySize]
  131. var u Utmp
  132. br := bytes.NewReader(b)
  133. err := binary.Read(br, binary.LittleEndian, &u)
  134. if err != nil || u.Time == 0 {
  135. continue
  136. }
  137. user := UserStat{
  138. User: common.IntToString(u.Name[:]),
  139. Terminal: common.IntToString(u.Line[:]),
  140. Host: common.IntToString(u.Host[:]),
  141. Started: int(u.Time),
  142. }
  143. ret = append(ret, user)
  144. }
  145. return ret, nil
  146. }
  147. func SensorsTemperatures() ([]TemperatureStat, error) {
  148. return SensorsTemperaturesWithContext(context.Background())
  149. }
  150. func SensorsTemperaturesWithContext(ctx context.Context) ([]TemperatureStat, error) {
  151. return []TemperatureStat{}, common.ErrNotImplementedError
  152. }
  153. func KernelVersion() (string, error) {
  154. return KernelVersionWithContext(context.Background())
  155. }
  156. func KernelVersionWithContext(ctx context.Context) (string, error) {
  157. _, _, version, err := PlatformInformation()
  158. return version, err
  159. }