host_freebsd.go 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. // +build freebsd
  2. package host
  3. import (
  4. "bytes"
  5. "context"
  6. "encoding/binary"
  7. "io/ioutil"
  8. "os"
  9. "runtime"
  10. "strings"
  11. "sync/atomic"
  12. "syscall"
  13. "time"
  14. "unsafe"
  15. "github.com/shirou/gopsutil/internal/common"
  16. "github.com/shirou/gopsutil/process"
  17. "golang.org/x/sys/unix"
  18. )
  19. const (
  20. UTNameSize = 16 /* see MAXLOGNAME in <sys/param.h> */
  21. UTLineSize = 8
  22. UTHostSize = 16
  23. )
  24. func Info() (*InfoStat, error) {
  25. return InfoWithContext(context.Background())
  26. }
  27. func InfoWithContext(ctx context.Context) (*InfoStat, error) {
  28. ret := &InfoStat{
  29. OS: runtime.GOOS,
  30. PlatformFamily: "freebsd",
  31. }
  32. hostname, err := os.Hostname()
  33. if err == nil {
  34. ret.Hostname = hostname
  35. }
  36. platform, family, version, err := PlatformInformation()
  37. if err == nil {
  38. ret.Platform = platform
  39. ret.PlatformFamily = family
  40. ret.PlatformVersion = version
  41. ret.KernelVersion = version
  42. }
  43. system, role, err := Virtualization()
  44. if err == nil {
  45. ret.VirtualizationSystem = system
  46. ret.VirtualizationRole = role
  47. }
  48. boot, err := BootTime()
  49. if err == nil {
  50. ret.BootTime = boot
  51. ret.Uptime = uptime(boot)
  52. }
  53. procs, err := process.Pids()
  54. if err == nil {
  55. ret.Procs = uint64(len(procs))
  56. }
  57. hostid, err := unix.Sysctl("kern.hostuuid")
  58. if err == nil && hostid != "" {
  59. ret.HostID = strings.ToLower(hostid)
  60. }
  61. return ret, nil
  62. }
  63. // cachedBootTime must be accessed via atomic.Load/StoreUint64
  64. var cachedBootTime uint64
  65. func BootTime() (uint64, error) {
  66. return BootTimeWithContext(context.Background())
  67. }
  68. func BootTimeWithContext(ctx context.Context) (uint64, error) {
  69. t := atomic.LoadUint64(&cachedBootTime)
  70. if t != 0 {
  71. return t, nil
  72. }
  73. buf, err := unix.SysctlRaw("kern.boottime")
  74. if err != nil {
  75. return 0, err
  76. }
  77. tv := *(*syscall.Timeval)(unsafe.Pointer((&buf[0])))
  78. atomic.StoreUint64(&cachedBootTime, uint64(tv.Sec))
  79. return t, nil
  80. }
  81. func uptime(boot uint64) uint64 {
  82. return uint64(time.Now().Unix()) - boot
  83. }
  84. func Uptime() (uint64, error) {
  85. return UptimeWithContext(context.Background())
  86. }
  87. func UptimeWithContext(ctx context.Context) (uint64, error) {
  88. boot, err := BootTime()
  89. if err != nil {
  90. return 0, err
  91. }
  92. return uptime(boot), nil
  93. }
  94. func Users() ([]UserStat, error) {
  95. return UsersWithContext(context.Background())
  96. }
  97. func UsersWithContext(ctx context.Context) ([]UserStat, error) {
  98. utmpfile := "/var/run/utx.active"
  99. if !common.PathExists(utmpfile) {
  100. utmpfile = "/var/run/utmp" // before 9.0
  101. return getUsersFromUtmp(utmpfile)
  102. }
  103. var ret []UserStat
  104. file, err := os.Open(utmpfile)
  105. if err != nil {
  106. return ret, err
  107. }
  108. defer file.Close()
  109. buf, err := ioutil.ReadAll(file)
  110. if err != nil {
  111. return ret, err
  112. }
  113. entrySize := sizeOfUtmpx
  114. count := len(buf) / entrySize
  115. for i := 0; i < count; i++ {
  116. b := buf[i*sizeOfUtmpx : (i+1)*sizeOfUtmpx]
  117. var u Utmpx
  118. br := bytes.NewReader(b)
  119. err := binary.Read(br, binary.LittleEndian, &u)
  120. if err != nil || u.Type != 4 {
  121. continue
  122. }
  123. sec := (binary.LittleEndian.Uint32(u.Tv.Sec[:])) / 2 // TODO:
  124. user := UserStat{
  125. User: common.IntToString(u.User[:]),
  126. Terminal: common.IntToString(u.Line[:]),
  127. Host: common.IntToString(u.Host[:]),
  128. Started: int(sec),
  129. }
  130. ret = append(ret, user)
  131. }
  132. return ret, nil
  133. }
  134. func PlatformInformation() (string, string, string, error) {
  135. return PlatformInformationWithContext(context.Background())
  136. }
  137. func PlatformInformationWithContext(ctx context.Context) (string, string, string, error) {
  138. platform, err := unix.Sysctl("kern.ostype")
  139. if err != nil {
  140. return "", "", "", err
  141. }
  142. version, err := unix.Sysctl("kern.osrelease")
  143. if err != nil {
  144. return "", "", "", err
  145. }
  146. return strings.ToLower(platform), "", strings.ToLower(version), nil
  147. }
  148. func Virtualization() (string, string, error) {
  149. return VirtualizationWithContext(context.Background())
  150. }
  151. func VirtualizationWithContext(ctx context.Context) (string, string, error) {
  152. return "", "", common.ErrNotImplementedError
  153. }
  154. // before 9.0
  155. func getUsersFromUtmp(utmpfile string) ([]UserStat, error) {
  156. var ret []UserStat
  157. file, err := os.Open(utmpfile)
  158. if err != nil {
  159. return ret, err
  160. }
  161. defer file.Close()
  162. buf, err := ioutil.ReadAll(file)
  163. if err != nil {
  164. return ret, err
  165. }
  166. u := Utmp{}
  167. entrySize := int(unsafe.Sizeof(u))
  168. count := len(buf) / entrySize
  169. for i := 0; i < count; i++ {
  170. b := buf[i*entrySize : i*entrySize+entrySize]
  171. var u Utmp
  172. br := bytes.NewReader(b)
  173. err := binary.Read(br, binary.LittleEndian, &u)
  174. if err != nil || u.Time == 0 {
  175. continue
  176. }
  177. user := UserStat{
  178. User: common.IntToString(u.Name[:]),
  179. Terminal: common.IntToString(u.Line[:]),
  180. Host: common.IntToString(u.Host[:]),
  181. Started: int(u.Time),
  182. }
  183. ret = append(ret, user)
  184. }
  185. return ret, nil
  186. }
  187. func SensorsTemperatures() ([]TemperatureStat, error) {
  188. return SensorsTemperaturesWithContext(context.Background())
  189. }
  190. func SensorsTemperaturesWithContext(ctx context.Context) ([]TemperatureStat, error) {
  191. return []TemperatureStat{}, common.ErrNotImplementedError
  192. }
  193. func KernelVersion() (string, error) {
  194. return KernelVersionWithContext(context.Background())
  195. }
  196. func KernelVersionWithContext(ctx context.Context) (string, error) {
  197. _, _, version, err := PlatformInformation()
  198. return version, err
  199. }