host_solaris.go 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. package host
  2. import (
  3. "bufio"
  4. "bytes"
  5. "context"
  6. "fmt"
  7. "io/ioutil"
  8. "os"
  9. "os/exec"
  10. "regexp"
  11. "runtime"
  12. "strconv"
  13. "strings"
  14. "time"
  15. "github.com/shirou/gopsutil/internal/common"
  16. )
  17. func Info() (*InfoStat, error) {
  18. return InfoWithContext(context.Background())
  19. }
  20. func InfoWithContext(ctx context.Context) (*InfoStat, error) {
  21. result := &InfoStat{
  22. OS: runtime.GOOS,
  23. }
  24. hostname, err := os.Hostname()
  25. if err != nil {
  26. return nil, err
  27. }
  28. result.Hostname = hostname
  29. // Parse versions from output of `uname(1)`
  30. uname, err := exec.LookPath("/usr/bin/uname")
  31. if err != nil {
  32. return nil, err
  33. }
  34. out, err := invoke.CommandWithContext(ctx, uname, "-srv")
  35. if err != nil {
  36. return nil, err
  37. }
  38. fields := strings.Fields(string(out))
  39. if len(fields) >= 1 {
  40. result.PlatformFamily = fields[0]
  41. }
  42. if len(fields) >= 2 {
  43. result.KernelVersion = fields[1]
  44. }
  45. if len(fields) == 3 {
  46. result.PlatformVersion = fields[2]
  47. }
  48. // Find distribution name from /etc/release
  49. fh, err := os.Open("/etc/release")
  50. if err != nil {
  51. return nil, err
  52. }
  53. defer fh.Close()
  54. sc := bufio.NewScanner(fh)
  55. if sc.Scan() {
  56. line := strings.TrimSpace(sc.Text())
  57. switch {
  58. case strings.HasPrefix(line, "SmartOS"):
  59. result.Platform = "SmartOS"
  60. case strings.HasPrefix(line, "OpenIndiana"):
  61. result.Platform = "OpenIndiana"
  62. case strings.HasPrefix(line, "OmniOS"):
  63. result.Platform = "OmniOS"
  64. case strings.HasPrefix(line, "Open Storage"):
  65. result.Platform = "NexentaStor"
  66. case strings.HasPrefix(line, "Solaris"):
  67. result.Platform = "Solaris"
  68. case strings.HasPrefix(line, "Oracle Solaris"):
  69. result.Platform = "Solaris"
  70. default:
  71. result.Platform = strings.Fields(line)[0]
  72. }
  73. }
  74. switch result.Platform {
  75. case "SmartOS":
  76. // If everything works, use the current zone ID as the HostID if present.
  77. zonename, err := exec.LookPath("/usr/bin/zonename")
  78. if err == nil {
  79. out, err := invoke.CommandWithContext(ctx, zonename)
  80. if err == nil {
  81. sc := bufio.NewScanner(bytes.NewReader(out))
  82. for sc.Scan() {
  83. line := sc.Text()
  84. // If we're in the global zone, rely on the hostname.
  85. if line == "global" {
  86. hostname, err := os.Hostname()
  87. if err == nil {
  88. result.HostID = hostname
  89. }
  90. } else {
  91. result.HostID = strings.TrimSpace(line)
  92. break
  93. }
  94. }
  95. }
  96. }
  97. }
  98. // If HostID is still empty, use hostid(1), which can lie to callers but at
  99. // this point there are no hardware facilities available. This behavior
  100. // matches that of other supported OSes.
  101. if result.HostID == "" {
  102. hostID, err := exec.LookPath("/usr/bin/hostid")
  103. if err == nil {
  104. out, err := invoke.CommandWithContext(ctx, hostID)
  105. if err == nil {
  106. sc := bufio.NewScanner(bytes.NewReader(out))
  107. for sc.Scan() {
  108. line := sc.Text()
  109. result.HostID = strings.TrimSpace(line)
  110. break
  111. }
  112. }
  113. }
  114. }
  115. // Find the boot time and calculate uptime relative to it
  116. bootTime, err := BootTime()
  117. if err != nil {
  118. return nil, err
  119. }
  120. result.BootTime = bootTime
  121. result.Uptime = uptimeSince(bootTime)
  122. // Count number of processes based on the number of entries in /proc
  123. dirs, err := ioutil.ReadDir("/proc")
  124. if err != nil {
  125. return nil, err
  126. }
  127. result.Procs = uint64(len(dirs))
  128. return result, nil
  129. }
  130. var kstatMatch = regexp.MustCompile(`([^\s]+)[\s]+([^\s]*)`)
  131. func BootTime() (uint64, error) {
  132. return BootTimeWithContext(context.Background())
  133. }
  134. func BootTimeWithContext(ctx context.Context) (uint64, error) {
  135. kstat, err := exec.LookPath("/usr/bin/kstat")
  136. if err != nil {
  137. return 0, err
  138. }
  139. out, err := invoke.CommandWithContext(ctx, kstat, "-p", "unix:0:system_misc:boot_time")
  140. if err != nil {
  141. return 0, err
  142. }
  143. kstats := kstatMatch.FindAllStringSubmatch(string(out), -1)
  144. if len(kstats) != 1 {
  145. return 0, fmt.Errorf("expected 1 kstat, found %d", len(kstats))
  146. }
  147. return strconv.ParseUint(kstats[0][2], 10, 64)
  148. }
  149. func Uptime() (uint64, error) {
  150. return UptimeWithContext(context.Background())
  151. }
  152. func UptimeWithContext(ctx context.Context) (uint64, error) {
  153. bootTime, err := BootTime()
  154. if err != nil {
  155. return 0, err
  156. }
  157. return uptimeSince(bootTime), nil
  158. }
  159. func uptimeSince(since uint64) uint64 {
  160. return uint64(time.Now().Unix()) - since
  161. }
  162. func Users() ([]UserStat, error) {
  163. return UsersWithContext(context.Background())
  164. }
  165. func UsersWithContext(ctx context.Context) ([]UserStat, error) {
  166. return []UserStat{}, common.ErrNotImplementedError
  167. }
  168. func SensorsTemperatures() ([]TemperatureStat, error) {
  169. return SensorsTemperaturesWithContext(context.Background())
  170. }
  171. func SensorsTemperaturesWithContext(ctx context.Context) ([]TemperatureStat, error) {
  172. return []TemperatureStat{}, common.ErrNotImplementedError
  173. }
  174. func Virtualization() (string, string, error) {
  175. return VirtualizationWithContext(context.Background())
  176. }
  177. func VirtualizationWithContext(ctx context.Context) (string, string, error) {
  178. return "", "", common.ErrNotImplementedError
  179. }
  180. func KernelVersion() (string, error) {
  181. return KernelVersionWithContext(context.Background())
  182. }
  183. func KernelVersionWithContext(ctx context.Context) (string, error) {
  184. // Parse versions from output of `uname(1)`
  185. uname, err := exec.LookPath("/usr/bin/uname")
  186. if err != nil {
  187. return "", err
  188. }
  189. out, err := invoke.CommandWithContext(ctx, uname, "-srv")
  190. if err != nil {
  191. return "", err
  192. }
  193. fields := strings.Fields(string(out))
  194. if len(fields) >= 2 {
  195. return fields[1], nil
  196. }
  197. return "", fmt.Errorf("could not get kernel version")
  198. }
  199. func PlatformInformation() (platform string, family string, version string, err error) {
  200. return PlatformInformationWithContext(context.Background())
  201. }
  202. func PlatformInformationWithContext(ctx context.Context) (platform string, family string, version string, err error) {
  203. /* This is not finished yet at all. Please contribute! */
  204. version, err = KernelVersion()
  205. if err != nil {
  206. return "", "", "", err
  207. }
  208. return "solaris", "solaris", version, nil
  209. }