net_unix.go 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. // +build freebsd darwin
  2. package net
  3. import (
  4. "context"
  5. "strings"
  6. "github.com/shirou/gopsutil/internal/common"
  7. )
  8. // Return a list of network connections opened.
  9. func Connections(kind string) ([]ConnectionStat, error) {
  10. return ConnectionsWithContext(context.Background(), kind)
  11. }
  12. func ConnectionsWithContext(ctx context.Context, kind string) ([]ConnectionStat, error) {
  13. return ConnectionsPid(kind, 0)
  14. }
  15. // Return a list of network connections opened returning at most `max`
  16. // connections for each running process.
  17. func ConnectionsMax(kind string, max int) ([]ConnectionStat, error) {
  18. return ConnectionsMaxWithContext(context.Background(), kind, max)
  19. }
  20. func ConnectionsMaxWithContext(ctx context.Context, kind string, max int) ([]ConnectionStat, error) {
  21. return []ConnectionStat{}, common.ErrNotImplementedError
  22. }
  23. // Return a list of network connections opened by a process.
  24. func ConnectionsPid(kind string, pid int32) ([]ConnectionStat, error) {
  25. return ConnectionsPidWithContext(context.Background(), kind, pid)
  26. }
  27. func ConnectionsPidWithContext(ctx context.Context, kind string, pid int32) ([]ConnectionStat, error) {
  28. var ret []ConnectionStat
  29. args := []string{"-i"}
  30. switch strings.ToLower(kind) {
  31. default:
  32. fallthrough
  33. case "":
  34. fallthrough
  35. case "all":
  36. fallthrough
  37. case "inet":
  38. args = append(args, "tcp", "-i", "udp")
  39. case "inet4":
  40. args = append(args, "4")
  41. case "inet6":
  42. args = append(args, "6")
  43. case "tcp":
  44. args = append(args, "tcp")
  45. case "tcp4":
  46. args = append(args, "4tcp")
  47. case "tcp6":
  48. args = append(args, "6tcp")
  49. case "udp":
  50. args = append(args, "udp")
  51. case "udp4":
  52. args = append(args, "6udp")
  53. case "udp6":
  54. args = append(args, "6udp")
  55. case "unix":
  56. args = []string{"-U"}
  57. }
  58. r, err := common.CallLsofWithContext(ctx, invoke, pid, args...)
  59. if err != nil {
  60. return nil, err
  61. }
  62. for _, rr := range r {
  63. if strings.HasPrefix(rr, "COMMAND") {
  64. continue
  65. }
  66. n, err := parseNetLine(rr)
  67. if err != nil {
  68. continue
  69. }
  70. ret = append(ret, n)
  71. }
  72. return ret, nil
  73. }
  74. // Return up to `max` network connections opened by a process.
  75. func ConnectionsPidMax(kind string, pid int32, max int) ([]ConnectionStat, error) {
  76. return ConnectionsPidMaxWithContext(context.Background(), kind, pid, max)
  77. }
  78. func ConnectionsPidMaxWithContext(ctx context.Context, kind string, pid int32, max int) ([]ConnectionStat, error) {
  79. return []ConnectionStat{}, common.ErrNotImplementedError
  80. }