process_darwin.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647
  1. // +build darwin
  2. package process
  3. import (
  4. "bytes"
  5. "context"
  6. "encoding/binary"
  7. "fmt"
  8. "os/exec"
  9. "strconv"
  10. "strings"
  11. "time"
  12. "unsafe"
  13. "github.com/shirou/gopsutil/cpu"
  14. "github.com/shirou/gopsutil/internal/common"
  15. "github.com/shirou/gopsutil/net"
  16. "golang.org/x/sys/unix"
  17. )
  18. // copied from sys/sysctl.h
  19. const (
  20. CTLKern = 1 // "high kernel": proc, limits
  21. KernProc = 14 // struct: process entries
  22. KernProcPID = 1 // by process id
  23. KernProcProc = 8 // only return procs
  24. KernProcAll = 0 // everything
  25. KernProcPathname = 12 // path to executable
  26. )
  27. const (
  28. ClockTicks = 100 // C.sysconf(C._SC_CLK_TCK)
  29. )
  30. type _Ctype_struct___0 struct {
  31. Pad uint64
  32. }
  33. // MemoryInfoExStat is different between OSes
  34. type MemoryInfoExStat struct {
  35. }
  36. type MemoryMapsStat struct {
  37. }
  38. func Pids() ([]int32, error) {
  39. return PidsWithContext(context.Background())
  40. }
  41. func PidsWithContext(ctx context.Context) ([]int32, error) {
  42. var ret []int32
  43. pids, err := callPsWithContext(ctx, "pid", 0, false)
  44. if err != nil {
  45. return ret, err
  46. }
  47. for _, pid := range pids {
  48. v, err := strconv.Atoi(pid[0])
  49. if err != nil {
  50. return ret, err
  51. }
  52. ret = append(ret, int32(v))
  53. }
  54. return ret, nil
  55. }
  56. func (p *Process) Ppid() (int32, error) {
  57. return p.PpidWithContext(context.Background())
  58. }
  59. func (p *Process) PpidWithContext(ctx context.Context) (int32, error) {
  60. r, err := callPsWithContext(ctx, "ppid", p.Pid, false)
  61. if err != nil {
  62. return 0, err
  63. }
  64. v, err := strconv.Atoi(r[0][0])
  65. if err != nil {
  66. return 0, err
  67. }
  68. return int32(v), err
  69. }
  70. func (p *Process) Name() (string, error) {
  71. return p.NameWithContext(context.Background())
  72. }
  73. func (p *Process) NameWithContext(ctx context.Context) (string, error) {
  74. k, err := p.getKProc()
  75. if err != nil {
  76. return "", err
  77. }
  78. return common.IntToString(k.Proc.P_comm[:]), nil
  79. }
  80. func (p *Process) Tgid() (int32, error) {
  81. return 0, common.ErrNotImplementedError
  82. }
  83. func (p *Process) Exe() (string, error) {
  84. return p.ExeWithContext(context.Background())
  85. }
  86. func (p *Process) ExeWithContext(ctx context.Context) (string, error) {
  87. lsof_bin, err := exec.LookPath("lsof")
  88. if err != nil {
  89. return "", err
  90. }
  91. awk_bin, err := exec.LookPath("awk")
  92. if err != nil {
  93. return "", err
  94. }
  95. sed_bin, err := exec.LookPath("sed")
  96. if err != nil {
  97. return "", err
  98. }
  99. lsof := exec.CommandContext(ctx, lsof_bin, "-p", strconv.Itoa(int(p.Pid)), "-Fpfn")
  100. awk := exec.CommandContext(ctx, awk_bin, "NR==5{print}")
  101. sed := exec.CommandContext(ctx, sed_bin, "s/n\\//\\//")
  102. output, _, err := common.Pipeline(lsof, awk, sed)
  103. if err != nil {
  104. return "", err
  105. }
  106. ret := strings.TrimSpace(string(output))
  107. return ret, nil
  108. }
  109. // Cmdline returns the command line arguments of the process as a string with
  110. // each argument separated by 0x20 ascii character.
  111. func (p *Process) Cmdline() (string, error) {
  112. return p.CmdlineWithContext(context.Background())
  113. }
  114. func (p *Process) CmdlineWithContext(ctx context.Context) (string, error) {
  115. r, err := callPsWithContext(ctx, "command", p.Pid, false)
  116. if err != nil {
  117. return "", err
  118. }
  119. return strings.Join(r[0], " "), err
  120. }
  121. // CmdlineSlice returns the command line arguments of the process as a slice with each
  122. // element being an argument. Because of current deficiencies in the way that the command
  123. // line arguments are found, single arguments that have spaces in the will actually be
  124. // reported as two separate items. In order to do something better CGO would be needed
  125. // to use the native darwin functions.
  126. func (p *Process) CmdlineSlice() ([]string, error) {
  127. return p.CmdlineSliceWithContext(context.Background())
  128. }
  129. func (p *Process) CmdlineSliceWithContext(ctx context.Context) ([]string, error) {
  130. r, err := callPsWithContext(ctx, "command", p.Pid, false)
  131. if err != nil {
  132. return nil, err
  133. }
  134. return r[0], err
  135. }
  136. func (p *Process) CreateTime() (int64, error) {
  137. return p.CreateTimeWithContext(context.Background())
  138. }
  139. func (p *Process) CreateTimeWithContext(ctx context.Context) (int64, error) {
  140. r, err := callPsWithContext(ctx, "etime", p.Pid, false)
  141. if err != nil {
  142. return 0, err
  143. }
  144. elapsedSegments := strings.Split(strings.Replace(r[0][0], "-", ":", 1), ":")
  145. var elapsedDurations []time.Duration
  146. for i := len(elapsedSegments) - 1; i >= 0; i-- {
  147. p, err := strconv.ParseInt(elapsedSegments[i], 10, 0)
  148. if err != nil {
  149. return 0, err
  150. }
  151. elapsedDurations = append(elapsedDurations, time.Duration(p))
  152. }
  153. var elapsed = time.Duration(elapsedDurations[0]) * time.Second
  154. if len(elapsedDurations) > 1 {
  155. elapsed += time.Duration(elapsedDurations[1]) * time.Minute
  156. }
  157. if len(elapsedDurations) > 2 {
  158. elapsed += time.Duration(elapsedDurations[2]) * time.Hour
  159. }
  160. if len(elapsedDurations) > 3 {
  161. elapsed += time.Duration(elapsedDurations[3]) * time.Hour * 24
  162. }
  163. start := time.Now().Add(-elapsed)
  164. return start.Unix() * 1000, nil
  165. }
  166. func (p *Process) Cwd() (string, error) {
  167. return p.CwdWithContext(context.Background())
  168. }
  169. func (p *Process) CwdWithContext(ctx context.Context) (string, error) {
  170. return "", common.ErrNotImplementedError
  171. }
  172. func (p *Process) Parent() (*Process, error) {
  173. return p.ParentWithContext(context.Background())
  174. }
  175. func (p *Process) ParentWithContext(ctx context.Context) (*Process, error) {
  176. rr, err := common.CallLsofWithContext(ctx, invoke, p.Pid, "-FR")
  177. if err != nil {
  178. return nil, err
  179. }
  180. for _, r := range rr {
  181. if strings.HasPrefix(r, "p") { // skip if process
  182. continue
  183. }
  184. l := string(r)
  185. v, err := strconv.Atoi(strings.Replace(l, "R", "", 1))
  186. if err != nil {
  187. return nil, err
  188. }
  189. return NewProcess(int32(v))
  190. }
  191. return nil, fmt.Errorf("could not find parent line")
  192. }
  193. func (p *Process) Status() (string, error) {
  194. return p.StatusWithContext(context.Background())
  195. }
  196. func (p *Process) StatusWithContext(ctx context.Context) (string, error) {
  197. r, err := callPsWithContext(ctx, "state", p.Pid, false)
  198. if err != nil {
  199. return "", err
  200. }
  201. return r[0][0], err
  202. }
  203. func (p *Process) Uids() ([]int32, error) {
  204. return p.UidsWithContext(context.Background())
  205. }
  206. func (p *Process) UidsWithContext(ctx context.Context) ([]int32, error) {
  207. k, err := p.getKProc()
  208. if err != nil {
  209. return nil, err
  210. }
  211. // See: http://unix.superglobalmegacorp.com/Net2/newsrc/sys/ucred.h.html
  212. userEffectiveUID := int32(k.Eproc.Ucred.UID)
  213. return []int32{userEffectiveUID}, nil
  214. }
  215. func (p *Process) Gids() ([]int32, error) {
  216. return p.GidsWithContext(context.Background())
  217. }
  218. func (p *Process) GidsWithContext(ctx context.Context) ([]int32, error) {
  219. k, err := p.getKProc()
  220. if err != nil {
  221. return nil, err
  222. }
  223. gids := make([]int32, 0, 3)
  224. gids = append(gids, int32(k.Eproc.Pcred.P_rgid), int32(k.Eproc.Ucred.Ngroups), int32(k.Eproc.Pcred.P_svgid))
  225. return gids, nil
  226. }
  227. func (p *Process) Terminal() (string, error) {
  228. return p.TerminalWithContext(context.Background())
  229. }
  230. func (p *Process) TerminalWithContext(ctx context.Context) (string, error) {
  231. return "", common.ErrNotImplementedError
  232. /*
  233. k, err := p.getKProc()
  234. if err != nil {
  235. return "", err
  236. }
  237. ttyNr := uint64(k.Eproc.Tdev)
  238. termmap, err := getTerminalMap()
  239. if err != nil {
  240. return "", err
  241. }
  242. return termmap[ttyNr], nil
  243. */
  244. }
  245. func (p *Process) Nice() (int32, error) {
  246. return p.NiceWithContext(context.Background())
  247. }
  248. func (p *Process) NiceWithContext(ctx context.Context) (int32, error) {
  249. k, err := p.getKProc()
  250. if err != nil {
  251. return 0, err
  252. }
  253. return int32(k.Proc.P_nice), nil
  254. }
  255. func (p *Process) IOnice() (int32, error) {
  256. return p.IOniceWithContext(context.Background())
  257. }
  258. func (p *Process) IOniceWithContext(ctx context.Context) (int32, error) {
  259. return 0, common.ErrNotImplementedError
  260. }
  261. func (p *Process) Rlimit() ([]RlimitStat, error) {
  262. return p.RlimitWithContext(context.Background())
  263. }
  264. func (p *Process) RlimitWithContext(ctx context.Context) ([]RlimitStat, error) {
  265. var rlimit []RlimitStat
  266. return rlimit, common.ErrNotImplementedError
  267. }
  268. func (p *Process) RlimitUsage(gatherUsed bool) ([]RlimitStat, error) {
  269. return p.RlimitUsageWithContext(context.Background(), gatherUsed)
  270. }
  271. func (p *Process) RlimitUsageWithContext(ctx context.Context, gatherUsed bool) ([]RlimitStat, error) {
  272. var rlimit []RlimitStat
  273. return rlimit, common.ErrNotImplementedError
  274. }
  275. func (p *Process) IOCounters() (*IOCountersStat, error) {
  276. return p.IOCountersWithContext(context.Background())
  277. }
  278. func (p *Process) IOCountersWithContext(ctx context.Context) (*IOCountersStat, error) {
  279. return nil, common.ErrNotImplementedError
  280. }
  281. func (p *Process) NumCtxSwitches() (*NumCtxSwitchesStat, error) {
  282. return p.NumCtxSwitchesWithContext(context.Background())
  283. }
  284. func (p *Process) NumCtxSwitchesWithContext(ctx context.Context) (*NumCtxSwitchesStat, error) {
  285. return nil, common.ErrNotImplementedError
  286. }
  287. func (p *Process) NumFDs() (int32, error) {
  288. return p.NumFDsWithContext(context.Background())
  289. }
  290. func (p *Process) NumFDsWithContext(ctx context.Context) (int32, error) {
  291. return 0, common.ErrNotImplementedError
  292. }
  293. func (p *Process) NumThreads() (int32, error) {
  294. return p.NumThreadsWithContext(context.Background())
  295. }
  296. func (p *Process) NumThreadsWithContext(ctx context.Context) (int32, error) {
  297. r, err := callPsWithContext(ctx, "utime,stime", p.Pid, true)
  298. if err != nil {
  299. return 0, err
  300. }
  301. return int32(len(r)), nil
  302. }
  303. func (p *Process) Threads() (map[int32]*cpu.TimesStat, error) {
  304. return p.ThreadsWithContext(context.Background())
  305. }
  306. func (p *Process) ThreadsWithContext(ctx context.Context) (map[int32]*cpu.TimesStat, error) {
  307. ret := make(map[int32]*cpu.TimesStat)
  308. return ret, common.ErrNotImplementedError
  309. }
  310. func convertCPUTimes(s string) (ret float64, err error) {
  311. var t int
  312. var _tmp string
  313. if strings.Contains(s, ":") {
  314. _t := strings.Split(s, ":")
  315. hour, err := strconv.Atoi(_t[0])
  316. if err != nil {
  317. return ret, err
  318. }
  319. t += hour * 60 * 100
  320. _tmp = _t[1]
  321. } else {
  322. _tmp = s
  323. }
  324. _t := strings.Split(_tmp, ".")
  325. if err != nil {
  326. return ret, err
  327. }
  328. h, err := strconv.Atoi(_t[0])
  329. t += h * 100
  330. h, err = strconv.Atoi(_t[1])
  331. t += h
  332. return float64(t) / ClockTicks, nil
  333. }
  334. func (p *Process) Times() (*cpu.TimesStat, error) {
  335. return p.TimesWithContext(context.Background())
  336. }
  337. func (p *Process) TimesWithContext(ctx context.Context) (*cpu.TimesStat, error) {
  338. r, err := callPsWithContext(ctx, "utime,stime", p.Pid, false)
  339. if err != nil {
  340. return nil, err
  341. }
  342. utime, err := convertCPUTimes(r[0][0])
  343. if err != nil {
  344. return nil, err
  345. }
  346. stime, err := convertCPUTimes(r[0][1])
  347. if err != nil {
  348. return nil, err
  349. }
  350. ret := &cpu.TimesStat{
  351. CPU: "cpu",
  352. User: utime,
  353. System: stime,
  354. }
  355. return ret, nil
  356. }
  357. func (p *Process) CPUAffinity() ([]int32, error) {
  358. return p.CPUAffinityWithContext(context.Background())
  359. }
  360. func (p *Process) CPUAffinityWithContext(ctx context.Context) ([]int32, error) {
  361. return nil, common.ErrNotImplementedError
  362. }
  363. func (p *Process) MemoryInfo() (*MemoryInfoStat, error) {
  364. return p.MemoryInfoWithContext(context.Background())
  365. }
  366. func (p *Process) MemoryInfoWithContext(ctx context.Context) (*MemoryInfoStat, error) {
  367. r, err := callPsWithContext(ctx, "rss,vsize,pagein", p.Pid, false)
  368. if err != nil {
  369. return nil, err
  370. }
  371. rss, err := strconv.Atoi(r[0][0])
  372. if err != nil {
  373. return nil, err
  374. }
  375. vms, err := strconv.Atoi(r[0][1])
  376. if err != nil {
  377. return nil, err
  378. }
  379. pagein, err := strconv.Atoi(r[0][2])
  380. if err != nil {
  381. return nil, err
  382. }
  383. ret := &MemoryInfoStat{
  384. RSS: uint64(rss) * 1024,
  385. VMS: uint64(vms) * 1024,
  386. Swap: uint64(pagein),
  387. }
  388. return ret, nil
  389. }
  390. func (p *Process) MemoryInfoEx() (*MemoryInfoExStat, error) {
  391. return p.MemoryInfoExWithContext(context.Background())
  392. }
  393. func (p *Process) MemoryInfoExWithContext(ctx context.Context) (*MemoryInfoExStat, error) {
  394. return nil, common.ErrNotImplementedError
  395. }
  396. func (p *Process) Children() ([]*Process, error) {
  397. return p.ChildrenWithContext(context.Background())
  398. }
  399. func (p *Process) ChildrenWithContext(ctx context.Context) ([]*Process, error) {
  400. pids, err := common.CallPgrepWithContext(ctx, invoke, p.Pid)
  401. if err != nil {
  402. return nil, err
  403. }
  404. ret := make([]*Process, 0, len(pids))
  405. for _, pid := range pids {
  406. np, err := NewProcess(pid)
  407. if err != nil {
  408. return nil, err
  409. }
  410. ret = append(ret, np)
  411. }
  412. return ret, nil
  413. }
  414. func (p *Process) OpenFiles() ([]OpenFilesStat, error) {
  415. return p.OpenFilesWithContext(context.Background())
  416. }
  417. func (p *Process) OpenFilesWithContext(ctx context.Context) ([]OpenFilesStat, error) {
  418. return nil, common.ErrNotImplementedError
  419. }
  420. func (p *Process) Connections() ([]net.ConnectionStat, error) {
  421. return p.ConnectionsWithContext(context.Background())
  422. }
  423. func (p *Process) ConnectionsWithContext(ctx context.Context) ([]net.ConnectionStat, error) {
  424. return net.ConnectionsPid("all", p.Pid)
  425. }
  426. func (p *Process) NetIOCounters(pernic bool) ([]net.IOCountersStat, error) {
  427. return p.NetIOCountersWithContext(context.Background(), pernic)
  428. }
  429. func (p *Process) NetIOCountersWithContext(ctx context.Context, pernic bool) ([]net.IOCountersStat, error) {
  430. return nil, common.ErrNotImplementedError
  431. }
  432. func (p *Process) IsRunning() (bool, error) {
  433. return p.IsRunningWithContext(context.Background())
  434. }
  435. func (p *Process) IsRunningWithContext(ctx context.Context) (bool, error) {
  436. return true, common.ErrNotImplementedError
  437. }
  438. func (p *Process) MemoryMaps(grouped bool) (*[]MemoryMapsStat, error) {
  439. return p.MemoryMapsWithContext(context.Background(), grouped)
  440. }
  441. func (p *Process) MemoryMapsWithContext(ctx context.Context, grouped bool) (*[]MemoryMapsStat, error) {
  442. var ret []MemoryMapsStat
  443. return &ret, common.ErrNotImplementedError
  444. }
  445. func Processes() ([]*Process, error) {
  446. return ProcessesWithContext(context.Background())
  447. }
  448. func ProcessesWithContext(ctx context.Context) ([]*Process, error) {
  449. results := []*Process{}
  450. mib := []int32{CTLKern, KernProc, KernProcAll, 0}
  451. buf, length, err := common.CallSyscall(mib)
  452. if err != nil {
  453. return results, err
  454. }
  455. // get kinfo_proc size
  456. k := KinfoProc{}
  457. procinfoLen := int(unsafe.Sizeof(k))
  458. count := int(length / uint64(procinfoLen))
  459. // parse buf to procs
  460. for i := 0; i < count; i++ {
  461. b := buf[i*procinfoLen : i*procinfoLen+procinfoLen]
  462. k, err := parseKinfoProc(b)
  463. if err != nil {
  464. continue
  465. }
  466. p, err := NewProcess(int32(k.Proc.P_pid))
  467. if err != nil {
  468. continue
  469. }
  470. results = append(results, p)
  471. }
  472. return results, nil
  473. }
  474. func parseKinfoProc(buf []byte) (KinfoProc, error) {
  475. var k KinfoProc
  476. br := bytes.NewReader(buf)
  477. err := common.Read(br, binary.LittleEndian, &k)
  478. if err != nil {
  479. return k, err
  480. }
  481. return k, nil
  482. }
  483. // Returns a proc as defined here:
  484. // http://unix.superglobalmegacorp.com/Net2/newsrc/sys/kinfo_proc.h.html
  485. func (p *Process) getKProc() (*KinfoProc, error) {
  486. return p.getKProcWithContext(context.Background())
  487. }
  488. func (p *Process) getKProcWithContext(ctx context.Context) (*KinfoProc, error) {
  489. mib := []int32{CTLKern, KernProc, KernProcPID, p.Pid}
  490. procK := KinfoProc{}
  491. length := uint64(unsafe.Sizeof(procK))
  492. buf := make([]byte, length)
  493. _, _, syserr := unix.Syscall6(
  494. unix.SYS___SYSCTL,
  495. uintptr(unsafe.Pointer(&mib[0])),
  496. uintptr(len(mib)),
  497. uintptr(unsafe.Pointer(&buf[0])),
  498. uintptr(unsafe.Pointer(&length)),
  499. 0,
  500. 0)
  501. if syserr != 0 {
  502. return nil, syserr
  503. }
  504. k, err := parseKinfoProc(buf)
  505. if err != nil {
  506. return nil, err
  507. }
  508. return &k, nil
  509. }
  510. func NewProcess(pid int32) (*Process, error) {
  511. p := &Process{Pid: pid}
  512. return p, nil
  513. }
  514. // call ps command.
  515. // Return value deletes Header line(you must not input wrong arg).
  516. // And splited by Space. Caller have responsibility to manage.
  517. // If passed arg pid is 0, get information from all process.
  518. func callPsWithContext(ctx context.Context, arg string, pid int32, threadOption bool) ([][]string, error) {
  519. bin, err := exec.LookPath("ps")
  520. if err != nil {
  521. return [][]string{}, err
  522. }
  523. var cmd []string
  524. if pid == 0 { // will get from all processes.
  525. cmd = []string{"-ax", "-o", arg}
  526. } else if threadOption {
  527. cmd = []string{"-x", "-o", arg, "-M", "-p", strconv.Itoa(int(pid))}
  528. } else {
  529. cmd = []string{"-x", "-o", arg, "-p", strconv.Itoa(int(pid))}
  530. }
  531. out, err := invoke.CommandWithContext(ctx, bin, cmd...)
  532. if err != nil {
  533. return [][]string{}, err
  534. }
  535. lines := strings.Split(string(out), "\n")
  536. var ret [][]string
  537. for _, l := range lines[1:] {
  538. var lr []string
  539. for _, r := range strings.Split(l, " ") {
  540. if r == "" {
  541. continue
  542. }
  543. lr = append(lr, strings.TrimSpace(r))
  544. }
  545. if len(lr) != 0 {
  546. ret = append(ret, lr)
  547. }
  548. }
  549. return ret, nil
  550. }