net_openbsd.go 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. // +build openbsd
  2. package net
  3. import (
  4. "context"
  5. "errors"
  6. "fmt"
  7. "os/exec"
  8. "regexp"
  9. "strconv"
  10. "strings"
  11. "syscall"
  12. "github.com/shirou/gopsutil/internal/common"
  13. )
  14. var portMatch = regexp.MustCompile(`(.*)\.(\d+)$`)
  15. func ParseNetstat(output string, mode string,
  16. iocs map[string]IOCountersStat) error {
  17. lines := strings.Split(output, "\n")
  18. exists := make([]string, 0, len(lines)-1)
  19. columns := 6
  20. if mode == "ind" {
  21. columns = 10
  22. }
  23. for _, line := range lines {
  24. values := strings.Fields(line)
  25. if len(values) < 1 || values[0] == "Name" {
  26. continue
  27. }
  28. if common.StringsHas(exists, values[0]) {
  29. // skip if already get
  30. continue
  31. }
  32. if len(values) < columns {
  33. continue
  34. }
  35. base := 1
  36. // sometimes Address is ommitted
  37. if len(values) < columns {
  38. base = 0
  39. }
  40. parsed := make([]uint64, 0, 8)
  41. var vv []string
  42. if mode == "inb" {
  43. vv = []string{
  44. values[base+3], // BytesRecv
  45. values[base+4], // BytesSent
  46. }
  47. } else {
  48. vv = []string{
  49. values[base+3], // Ipkts
  50. values[base+4], // Ierrs
  51. values[base+5], // Opkts
  52. values[base+6], // Oerrs
  53. values[base+8], // Drops
  54. }
  55. }
  56. for _, target := range vv {
  57. if target == "-" {
  58. parsed = append(parsed, 0)
  59. continue
  60. }
  61. t, err := strconv.ParseUint(target, 10, 64)
  62. if err != nil {
  63. return err
  64. }
  65. parsed = append(parsed, t)
  66. }
  67. exists = append(exists, values[0])
  68. n, present := iocs[values[0]]
  69. if !present {
  70. n = IOCountersStat{Name: values[0]}
  71. }
  72. if mode == "inb" {
  73. n.BytesRecv = parsed[0]
  74. n.BytesSent = parsed[1]
  75. } else {
  76. n.PacketsRecv = parsed[0]
  77. n.Errin = parsed[1]
  78. n.PacketsSent = parsed[2]
  79. n.Errout = parsed[3]
  80. n.Dropin = parsed[4]
  81. n.Dropout = parsed[4]
  82. }
  83. iocs[n.Name] = n
  84. }
  85. return nil
  86. }
  87. func IOCounters(pernic bool) ([]IOCountersStat, error) {
  88. return IOCountersWithContext(context.Background(), pernic)
  89. }
  90. func IOCountersWithContext(ctx context.Context, pernic bool) ([]IOCountersStat, error) {
  91. netstat, err := exec.LookPath("netstat")
  92. if err != nil {
  93. return nil, err
  94. }
  95. out, err := invoke.CommandWithContext(ctx, netstat, "-inb")
  96. if err != nil {
  97. return nil, err
  98. }
  99. out2, err := invoke.CommandWithContext(ctx, netstat, "-ind")
  100. if err != nil {
  101. return nil, err
  102. }
  103. iocs := make(map[string]IOCountersStat)
  104. lines := strings.Split(string(out), "\n")
  105. ret := make([]IOCountersStat, 0, len(lines)-1)
  106. err = ParseNetstat(string(out), "inb", iocs)
  107. if err != nil {
  108. return nil, err
  109. }
  110. err = ParseNetstat(string(out2), "ind", iocs)
  111. if err != nil {
  112. return nil, err
  113. }
  114. for _, ioc := range iocs {
  115. ret = append(ret, ioc)
  116. }
  117. if pernic == false {
  118. return getIOCountersAll(ret)
  119. }
  120. return ret, nil
  121. }
  122. // NetIOCountersByFile is an method which is added just a compatibility for linux.
  123. func IOCountersByFile(pernic bool, filename string) ([]IOCountersStat, error) {
  124. return IOCountersByFileWithContext(context.Background(), pernic, filename)
  125. }
  126. func IOCountersByFileWithContext(ctx context.Context, pernic bool, filename string) ([]IOCountersStat, error) {
  127. return IOCounters(pernic)
  128. }
  129. func FilterCounters() ([]FilterStat, error) {
  130. return FilterCountersWithContext(context.Background())
  131. }
  132. func FilterCountersWithContext(ctx context.Context) ([]FilterStat, error) {
  133. return nil, errors.New("NetFilterCounters not implemented for openbsd")
  134. }
  135. // NetProtoCounters returns network statistics for the entire system
  136. // If protocols is empty then all protocols are returned, otherwise
  137. // just the protocols in the list are returned.
  138. // Not Implemented for OpenBSD
  139. func ProtoCounters(protocols []string) ([]ProtoCountersStat, error) {
  140. return ProtoCountersWithContext(context.Background(), protocols)
  141. }
  142. func ProtoCountersWithContext(ctx context.Context, protocols []string) ([]ProtoCountersStat, error) {
  143. return nil, errors.New("NetProtoCounters not implemented for openbsd")
  144. }
  145. func parseNetstatLine(line string) (ConnectionStat, error) {
  146. f := strings.Fields(line)
  147. if len(f) < 5 {
  148. return ConnectionStat{}, fmt.Errorf("wrong line,%s", line)
  149. }
  150. var netType, netFamily uint32
  151. switch f[0] {
  152. case "tcp":
  153. netType = syscall.SOCK_STREAM
  154. netFamily = syscall.AF_INET
  155. case "udp":
  156. netType = syscall.SOCK_DGRAM
  157. netFamily = syscall.AF_INET
  158. case "tcp6":
  159. netType = syscall.SOCK_STREAM
  160. netFamily = syscall.AF_INET6
  161. case "udp6":
  162. netType = syscall.SOCK_DGRAM
  163. netFamily = syscall.AF_INET6
  164. default:
  165. return ConnectionStat{}, fmt.Errorf("unknown type, %s", f[0])
  166. }
  167. laddr, raddr, err := parseNetstatAddr(f[3], f[4], netFamily)
  168. if err != nil {
  169. return ConnectionStat{}, fmt.Errorf("failed to parse netaddr, %s %s", f[3], f[4])
  170. }
  171. n := ConnectionStat{
  172. Fd: uint32(0), // not supported
  173. Family: uint32(netFamily),
  174. Type: uint32(netType),
  175. Laddr: laddr,
  176. Raddr: raddr,
  177. Pid: int32(0), // not supported
  178. }
  179. if len(f) == 6 {
  180. n.Status = f[5]
  181. }
  182. return n, nil
  183. }
  184. func parseNetstatAddr(local string, remote string, family uint32) (laddr Addr, raddr Addr, err error) {
  185. parse := func(l string) (Addr, error) {
  186. matches := portMatch.FindStringSubmatch(l)
  187. if matches == nil {
  188. return Addr{}, fmt.Errorf("wrong addr, %s", l)
  189. }
  190. host := matches[1]
  191. port := matches[2]
  192. if host == "*" {
  193. switch family {
  194. case syscall.AF_INET:
  195. host = "0.0.0.0"
  196. case syscall.AF_INET6:
  197. host = "::"
  198. default:
  199. return Addr{}, fmt.Errorf("unknown family, %d", family)
  200. }
  201. }
  202. lport, err := strconv.Atoi(port)
  203. if err != nil {
  204. return Addr{}, err
  205. }
  206. return Addr{IP: host, Port: uint32(lport)}, nil
  207. }
  208. laddr, err = parse(local)
  209. if remote != "*.*" { // remote addr exists
  210. raddr, err = parse(remote)
  211. if err != nil {
  212. return laddr, raddr, err
  213. }
  214. }
  215. return laddr, raddr, err
  216. }
  217. // Return a list of network connections opened.
  218. func Connections(kind string) ([]ConnectionStat, error) {
  219. return ConnectionsWithContext(context.Background(), kind)
  220. }
  221. func ConnectionsWithContext(ctx context.Context, kind string) ([]ConnectionStat, error) {
  222. var ret []ConnectionStat
  223. args := []string{"-na"}
  224. switch strings.ToLower(kind) {
  225. default:
  226. fallthrough
  227. case "":
  228. fallthrough
  229. case "all":
  230. fallthrough
  231. case "inet":
  232. // nothing to add
  233. case "inet4":
  234. args = append(args, "-finet")
  235. case "inet6":
  236. args = append(args, "-finet6")
  237. case "tcp":
  238. args = append(args, "-ptcp")
  239. case "tcp4":
  240. args = append(args, "-ptcp", "-finet")
  241. case "tcp6":
  242. args = append(args, "-ptcp", "-finet6")
  243. case "udp":
  244. args = append(args, "-pudp")
  245. case "udp4":
  246. args = append(args, "-pudp", "-finet")
  247. case "udp6":
  248. args = append(args, "-pudp", "-finet6")
  249. case "unix":
  250. return ret, common.ErrNotImplementedError
  251. }
  252. netstat, err := exec.LookPath("netstat")
  253. if err != nil {
  254. return nil, err
  255. }
  256. out, err := invoke.CommandWithContext(ctx, netstat, args...)
  257. if err != nil {
  258. return nil, err
  259. }
  260. lines := strings.Split(string(out), "\n")
  261. for _, line := range lines {
  262. if !(strings.HasPrefix(line, "tcp") || strings.HasPrefix(line, "udp")) {
  263. continue
  264. }
  265. n, err := parseNetstatLine(line)
  266. if err != nil {
  267. continue
  268. }
  269. ret = append(ret, n)
  270. }
  271. return ret, nil
  272. }