process_openbsd.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. // +build openbsd
  2. package process
  3. import (
  4. "C"
  5. "bytes"
  6. "context"
  7. "encoding/binary"
  8. "strings"
  9. "unsafe"
  10. cpu "github.com/shirou/gopsutil/cpu"
  11. "github.com/shirou/gopsutil/internal/common"
  12. mem "github.com/shirou/gopsutil/mem"
  13. net "github.com/shirou/gopsutil/net"
  14. "golang.org/x/sys/unix"
  15. )
  16. // MemoryInfoExStat is different between OSes
  17. type MemoryInfoExStat struct {
  18. }
  19. type MemoryMapsStat struct {
  20. }
  21. func Pids() ([]int32, error) {
  22. return PidsWithContext(context.Background())
  23. }
  24. func PidsWithContext(ctx context.Context) ([]int32, error) {
  25. var ret []int32
  26. procs, err := Processes()
  27. if err != nil {
  28. return ret, nil
  29. }
  30. for _, p := range procs {
  31. ret = append(ret, p.Pid)
  32. }
  33. return ret, nil
  34. }
  35. func (p *Process) Ppid() (int32, error) {
  36. return p.PpidWithContext(context.Background())
  37. }
  38. func (p *Process) PpidWithContext(ctx context.Context) (int32, error) {
  39. k, err := p.getKProc()
  40. if err != nil {
  41. return 0, err
  42. }
  43. return k.Ppid, nil
  44. }
  45. func (p *Process) Name() (string, error) {
  46. return p.NameWithContext(context.Background())
  47. }
  48. func (p *Process) NameWithContext(ctx context.Context) (string, error) {
  49. k, err := p.getKProc()
  50. if err != nil {
  51. return "", err
  52. }
  53. return common.IntToString(k.Comm[:]), nil
  54. }
  55. func (p *Process) Tgid() (int32, error) {
  56. return 0, common.ErrNotImplementedError
  57. }
  58. func (p *Process) Exe() (string, error) {
  59. return p.ExeWithContext(context.Background())
  60. }
  61. func (p *Process) ExeWithContext(ctx context.Context) (string, error) {
  62. return "", common.ErrNotImplementedError
  63. }
  64. func (p *Process) CmdlineSlice() ([]string, error) {
  65. return p.CmdlineSliceWithContext(context.Background())
  66. }
  67. func (p *Process) CmdlineSliceWithContext(ctx context.Context) ([]string, error) {
  68. mib := []int32{CTLKern, KernProcArgs, p.Pid, KernProcArgv}
  69. buf, _, err := common.CallSyscall(mib)
  70. if err != nil {
  71. return nil, err
  72. }
  73. argc := 0
  74. argvp := unsafe.Pointer(&buf[0])
  75. argv := *(**C.char)(unsafe.Pointer(argvp))
  76. size := unsafe.Sizeof(argv)
  77. var strParts []string
  78. for argv != nil {
  79. strParts = append(strParts, C.GoString(argv))
  80. argc++
  81. argv = *(**C.char)(unsafe.Pointer(uintptr(argvp) + uintptr(argc)*size))
  82. }
  83. return strParts, nil
  84. }
  85. func (p *Process) Cmdline() (string, error) {
  86. return p.CmdlineWithContext(context.Background())
  87. }
  88. func (p *Process) CmdlineWithContext(ctx context.Context) (string, error) {
  89. argv, err := p.CmdlineSlice()
  90. if err != nil {
  91. return "", err
  92. }
  93. return strings.Join(argv, " "), nil
  94. }
  95. func (p *Process) CreateTime() (int64, error) {
  96. return p.CreateTimeWithContext(context.Background())
  97. }
  98. func (p *Process) CreateTimeWithContext(ctx context.Context) (int64, error) {
  99. return 0, common.ErrNotImplementedError
  100. }
  101. func (p *Process) Cwd() (string, error) {
  102. return p.CwdWithContext(context.Background())
  103. }
  104. func (p *Process) CwdWithContext(ctx context.Context) (string, error) {
  105. return "", common.ErrNotImplementedError
  106. }
  107. func (p *Process) Parent() (*Process, error) {
  108. return p.ParentWithContext(context.Background())
  109. }
  110. func (p *Process) ParentWithContext(ctx context.Context) (*Process, error) {
  111. return p, common.ErrNotImplementedError
  112. }
  113. func (p *Process) Status() (string, error) {
  114. return p.StatusWithContext(context.Background())
  115. }
  116. func (p *Process) StatusWithContext(ctx context.Context) (string, error) {
  117. k, err := p.getKProc()
  118. if err != nil {
  119. return "", err
  120. }
  121. var s string
  122. switch k.Stat {
  123. case SIDL:
  124. case SRUN:
  125. case SONPROC:
  126. s = "R"
  127. case SSLEEP:
  128. s = "S"
  129. case SSTOP:
  130. s = "T"
  131. case SDEAD:
  132. s = "Z"
  133. }
  134. return s, nil
  135. }
  136. func (p *Process) Uids() ([]int32, error) {
  137. return p.UidsWithContext(context.Background())
  138. }
  139. func (p *Process) UidsWithContext(ctx context.Context) ([]int32, error) {
  140. k, err := p.getKProc()
  141. if err != nil {
  142. return nil, err
  143. }
  144. uids := make([]int32, 0, 3)
  145. uids = append(uids, int32(k.Ruid), int32(k.Uid), int32(k.Svuid))
  146. return uids, nil
  147. }
  148. func (p *Process) Gids() ([]int32, error) {
  149. return p.GidsWithContext(context.Background())
  150. }
  151. func (p *Process) GidsWithContext(ctx context.Context) ([]int32, error) {
  152. k, err := p.getKProc()
  153. if err != nil {
  154. return nil, err
  155. }
  156. gids := make([]int32, 0, 3)
  157. gids = append(gids, int32(k.Rgid), int32(k.Ngroups), int32(k.Svgid))
  158. return gids, nil
  159. }
  160. func (p *Process) Terminal() (string, error) {
  161. return p.TerminalWithContext(context.Background())
  162. }
  163. func (p *Process) TerminalWithContext(ctx context.Context) (string, error) {
  164. k, err := p.getKProc()
  165. if err != nil {
  166. return "", err
  167. }
  168. ttyNr := uint64(k.Tdev)
  169. termmap, err := getTerminalMap()
  170. if err != nil {
  171. return "", err
  172. }
  173. return termmap[ttyNr], nil
  174. }
  175. func (p *Process) Nice() (int32, error) {
  176. return p.NiceWithContext(context.Background())
  177. }
  178. func (p *Process) NiceWithContext(ctx context.Context) (int32, error) {
  179. k, err := p.getKProc()
  180. if err != nil {
  181. return 0, err
  182. }
  183. return int32(k.Nice), nil
  184. }
  185. func (p *Process) IOnice() (int32, error) {
  186. return p.IOniceWithContext(context.Background())
  187. }
  188. func (p *Process) IOniceWithContext(ctx context.Context) (int32, error) {
  189. return 0, common.ErrNotImplementedError
  190. }
  191. func (p *Process) Rlimit() ([]RlimitStat, error) {
  192. return p.RlimitWithContext(context.Background())
  193. }
  194. func (p *Process) RlimitWithContext(ctx context.Context) ([]RlimitStat, error) {
  195. var rlimit []RlimitStat
  196. return rlimit, common.ErrNotImplementedError
  197. }
  198. func (p *Process) RlimitUsage(gatherUsed bool) ([]RlimitStat, error) {
  199. return p.RlimitUsageWithContext(context.Background(), gatherUsed)
  200. }
  201. func (p *Process) RlimitUsageWithContext(ctx context.Context, gatherUsed bool) ([]RlimitStat, error) {
  202. var rlimit []RlimitStat
  203. return rlimit, common.ErrNotImplementedError
  204. }
  205. func (p *Process) IOCounters() (*IOCountersStat, error) {
  206. return p.IOCountersWithContext(context.Background())
  207. }
  208. func (p *Process) IOCountersWithContext(ctx context.Context) (*IOCountersStat, error) {
  209. k, err := p.getKProc()
  210. if err != nil {
  211. return nil, err
  212. }
  213. return &IOCountersStat{
  214. ReadCount: uint64(k.Uru_inblock),
  215. WriteCount: uint64(k.Uru_oublock),
  216. }, nil
  217. }
  218. func (p *Process) NumCtxSwitches() (*NumCtxSwitchesStat, error) {
  219. return p.NumCtxSwitchesWithContext(context.Background())
  220. }
  221. func (p *Process) NumCtxSwitchesWithContext(ctx context.Context) (*NumCtxSwitchesStat, error) {
  222. return nil, common.ErrNotImplementedError
  223. }
  224. func (p *Process) NumFDs() (int32, error) {
  225. return p.NumFDsWithContext(context.Background())
  226. }
  227. func (p *Process) NumFDsWithContext(ctx context.Context) (int32, error) {
  228. return 0, common.ErrNotImplementedError
  229. }
  230. func (p *Process) NumThreads() (int32, error) {
  231. return p.NumThreadsWithContext(context.Background())
  232. }
  233. func (p *Process) NumThreadsWithContext(ctx context.Context) (int32, error) {
  234. /* not supported, just return 1 */
  235. return 1, nil
  236. }
  237. func (p *Process) Threads() (map[int32]*cpu.TimesStat, error) {
  238. return p.ThreadsWithContext(context.Background())
  239. }
  240. func (p *Process) ThreadsWithContext(ctx context.Context) (map[int32]*cpu.TimesStat, error) {
  241. ret := make(map[int32]*cpu.TimesStat)
  242. return ret, common.ErrNotImplementedError
  243. }
  244. func (p *Process) Times() (*cpu.TimesStat, error) {
  245. return p.TimesWithContext(context.Background())
  246. }
  247. func (p *Process) TimesWithContext(ctx context.Context) (*cpu.TimesStat, error) {
  248. k, err := p.getKProc()
  249. if err != nil {
  250. return nil, err
  251. }
  252. return &cpu.TimesStat{
  253. CPU: "cpu",
  254. User: float64(k.Uutime_sec) + float64(k.Uutime_usec)/1000000,
  255. System: float64(k.Ustime_sec) + float64(k.Ustime_usec)/1000000,
  256. }, nil
  257. }
  258. func (p *Process) CPUAffinity() ([]int32, error) {
  259. return p.CPUAffinityWithContext(context.Background())
  260. }
  261. func (p *Process) CPUAffinityWithContext(ctx context.Context) ([]int32, error) {
  262. return nil, common.ErrNotImplementedError
  263. }
  264. func (p *Process) MemoryInfo() (*MemoryInfoStat, error) {
  265. return p.MemoryInfoWithContext(context.Background())
  266. }
  267. func (p *Process) MemoryInfoWithContext(ctx context.Context) (*MemoryInfoStat, error) {
  268. k, err := p.getKProc()
  269. if err != nil {
  270. return nil, err
  271. }
  272. pageSize, err := mem.GetPageSize()
  273. if err != nil {
  274. return nil, err
  275. }
  276. return &MemoryInfoStat{
  277. RSS: uint64(k.Vm_rssize) * pageSize,
  278. VMS: uint64(k.Vm_tsize) + uint64(k.Vm_dsize) +
  279. uint64(k.Vm_ssize),
  280. }, nil
  281. }
  282. func (p *Process) MemoryInfoEx() (*MemoryInfoExStat, error) {
  283. return p.MemoryInfoExWithContext(context.Background())
  284. }
  285. func (p *Process) MemoryInfoExWithContext(ctx context.Context) (*MemoryInfoExStat, error) {
  286. return nil, common.ErrNotImplementedError
  287. }
  288. func (p *Process) Children() ([]*Process, error) {
  289. return p.ChildrenWithContext(context.Background())
  290. }
  291. func (p *Process) ChildrenWithContext(ctx context.Context) ([]*Process, error) {
  292. pids, err := common.CallPgrepWithContext(ctx, invoke, p.Pid)
  293. if err != nil {
  294. return nil, err
  295. }
  296. ret := make([]*Process, 0, len(pids))
  297. for _, pid := range pids {
  298. np, err := NewProcess(pid)
  299. if err != nil {
  300. return nil, err
  301. }
  302. ret = append(ret, np)
  303. }
  304. return ret, nil
  305. }
  306. func (p *Process) OpenFiles() ([]OpenFilesStat, error) {
  307. return p.OpenFilesWithContext(context.Background())
  308. }
  309. func (p *Process) OpenFilesWithContext(ctx context.Context) ([]OpenFilesStat, error) {
  310. return nil, common.ErrNotImplementedError
  311. }
  312. func (p *Process) Connections() ([]net.ConnectionStat, error) {
  313. return p.ConnectionsWithContext(context.Background())
  314. }
  315. func (p *Process) ConnectionsWithContext(ctx context.Context) ([]net.ConnectionStat, error) {
  316. return nil, common.ErrNotImplementedError
  317. }
  318. func (p *Process) NetIOCounters(pernic bool) ([]net.IOCountersStat, error) {
  319. return p.NetIOCountersWithContext(context.Background(), pernic)
  320. }
  321. func (p *Process) NetIOCountersWithContext(ctx context.Context, pernic bool) ([]net.IOCountersStat, error) {
  322. return nil, common.ErrNotImplementedError
  323. }
  324. func (p *Process) IsRunning() (bool, error) {
  325. return p.IsRunningWithContext(context.Background())
  326. }
  327. func (p *Process) IsRunningWithContext(ctx context.Context) (bool, error) {
  328. return true, common.ErrNotImplementedError
  329. }
  330. func (p *Process) MemoryMaps(grouped bool) (*[]MemoryMapsStat, error) {
  331. return p.MemoryMapsWithContext(context.Background(), grouped)
  332. }
  333. func (p *Process) MemoryMapsWithContext(ctx context.Context, grouped bool) (*[]MemoryMapsStat, error) {
  334. var ret []MemoryMapsStat
  335. return &ret, common.ErrNotImplementedError
  336. }
  337. func Processes() ([]*Process, error) {
  338. return ProcessesWithContext(context.Background())
  339. }
  340. func ProcessesWithContext(ctx context.Context) ([]*Process, error) {
  341. results := []*Process{}
  342. buf, length, err := CallKernProcSyscall(KernProcAll, 0)
  343. if err != nil {
  344. return results, err
  345. }
  346. // get kinfo_proc size
  347. count := int(length / uint64(sizeOfKinfoProc))
  348. // parse buf to procs
  349. for i := 0; i < count; i++ {
  350. b := buf[i*sizeOfKinfoProc : (i+1)*sizeOfKinfoProc]
  351. k, err := parseKinfoProc(b)
  352. if err != nil {
  353. continue
  354. }
  355. p, err := NewProcess(int32(k.Pid))
  356. if err != nil {
  357. continue
  358. }
  359. results = append(results, p)
  360. }
  361. return results, nil
  362. }
  363. func parseKinfoProc(buf []byte) (KinfoProc, error) {
  364. var k KinfoProc
  365. br := bytes.NewReader(buf)
  366. err := common.Read(br, binary.LittleEndian, &k)
  367. return k, err
  368. }
  369. func (p *Process) getKProc() (*KinfoProc, error) {
  370. return p.getKProcWithContext(context.Background())
  371. }
  372. func (p *Process) getKProcWithContext(ctx context.Context) (*KinfoProc, error) {
  373. buf, length, err := CallKernProcSyscall(KernProcPID, p.Pid)
  374. if err != nil {
  375. return nil, err
  376. }
  377. if length != sizeOfKinfoProc {
  378. return nil, err
  379. }
  380. k, err := parseKinfoProc(buf)
  381. if err != nil {
  382. return nil, err
  383. }
  384. return &k, nil
  385. }
  386. func NewProcess(pid int32) (*Process, error) {
  387. p := &Process{Pid: pid}
  388. return p, nil
  389. }
  390. func CallKernProcSyscall(op int32, arg int32) ([]byte, uint64, error) {
  391. return CallKernProcSyscallWithContext(context.Background(), op, arg)
  392. }
  393. func CallKernProcSyscallWithContext(ctx context.Context, op int32, arg int32) ([]byte, uint64, error) {
  394. mib := []int32{CTLKern, KernProc, op, arg, sizeOfKinfoProc, 0}
  395. mibptr := unsafe.Pointer(&mib[0])
  396. miblen := uint64(len(mib))
  397. length := uint64(0)
  398. _, _, err := unix.Syscall6(
  399. unix.SYS___SYSCTL,
  400. uintptr(mibptr),
  401. uintptr(miblen),
  402. 0,
  403. uintptr(unsafe.Pointer(&length)),
  404. 0,
  405. 0)
  406. if err != 0 {
  407. return nil, length, err
  408. }
  409. count := int32(length / uint64(sizeOfKinfoProc))
  410. mib = []int32{CTLKern, KernProc, op, arg, sizeOfKinfoProc, count}
  411. mibptr = unsafe.Pointer(&mib[0])
  412. miblen = uint64(len(mib))
  413. // get proc info itself
  414. buf := make([]byte, length)
  415. _, _, err = unix.Syscall6(
  416. unix.SYS___SYSCTL,
  417. uintptr(mibptr),
  418. uintptr(miblen),
  419. uintptr(unsafe.Pointer(&buf[0])),
  420. uintptr(unsafe.Pointer(&length)),
  421. 0,
  422. 0)
  423. if err != 0 {
  424. return buf, length, err
  425. }
  426. return buf, length, nil
  427. }