net.go 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. package net
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "net"
  7. "strconv"
  8. "strings"
  9. "syscall"
  10. "github.com/shirou/gopsutil/internal/common"
  11. )
  12. var invoke common.Invoker = common.Invoke{}
  13. type IOCountersStat struct {
  14. Name string `json:"name"` // interface name
  15. BytesSent uint64 `json:"bytesSent"` // number of bytes sent
  16. BytesRecv uint64 `json:"bytesRecv"` // number of bytes received
  17. PacketsSent uint64 `json:"packetsSent"` // number of packets sent
  18. PacketsRecv uint64 `json:"packetsRecv"` // number of packets received
  19. Errin uint64 `json:"errin"` // total number of errors while receiving
  20. Errout uint64 `json:"errout"` // total number of errors while sending
  21. Dropin uint64 `json:"dropin"` // total number of incoming packets which were dropped
  22. Dropout uint64 `json:"dropout"` // total number of outgoing packets which were dropped (always 0 on OSX and BSD)
  23. Fifoin uint64 `json:"fifoin"` // total number of FIFO buffers errors while receiving
  24. Fifoout uint64 `json:"fifoout"` // total number of FIFO buffers errors while sending
  25. }
  26. // Addr is implemented compatibility to psutil
  27. type Addr struct {
  28. IP string `json:"ip"`
  29. Port uint32 `json:"port"`
  30. }
  31. type ConnectionStat struct {
  32. Fd uint32 `json:"fd"`
  33. Family uint32 `json:"family"`
  34. Type uint32 `json:"type"`
  35. Laddr Addr `json:"localaddr"`
  36. Raddr Addr `json:"remoteaddr"`
  37. Status string `json:"status"`
  38. Uids []int32 `json:"uids"`
  39. Pid int32 `json:"pid"`
  40. }
  41. // System wide stats about different network protocols
  42. type ProtoCountersStat struct {
  43. Protocol string `json:"protocol"`
  44. Stats map[string]int64 `json:"stats"`
  45. }
  46. // NetInterfaceAddr is designed for represent interface addresses
  47. type InterfaceAddr struct {
  48. Addr string `json:"addr"`
  49. }
  50. type InterfaceStat struct {
  51. MTU int `json:"mtu"` // maximum transmission unit
  52. Name string `json:"name"` // e.g., "en0", "lo0", "eth0.100"
  53. HardwareAddr string `json:"hardwareaddr"` // IEEE MAC-48, EUI-48 and EUI-64 form
  54. Flags []string `json:"flags"` // e.g., FlagUp, FlagLoopback, FlagMulticast
  55. Addrs []InterfaceAddr `json:"addrs"`
  56. }
  57. type FilterStat struct {
  58. ConnTrackCount int64 `json:"conntrackCount"`
  59. ConnTrackMax int64 `json:"conntrackMax"`
  60. }
  61. var constMap = map[string]int{
  62. "unix": syscall.AF_UNIX,
  63. "TCP": syscall.SOCK_STREAM,
  64. "UDP": syscall.SOCK_DGRAM,
  65. "IPv4": syscall.AF_INET,
  66. "IPv6": syscall.AF_INET6,
  67. }
  68. func (n IOCountersStat) String() string {
  69. s, _ := json.Marshal(n)
  70. return string(s)
  71. }
  72. func (n ConnectionStat) String() string {
  73. s, _ := json.Marshal(n)
  74. return string(s)
  75. }
  76. func (n ProtoCountersStat) String() string {
  77. s, _ := json.Marshal(n)
  78. return string(s)
  79. }
  80. func (a Addr) String() string {
  81. s, _ := json.Marshal(a)
  82. return string(s)
  83. }
  84. func (n InterfaceStat) String() string {
  85. s, _ := json.Marshal(n)
  86. return string(s)
  87. }
  88. func (n InterfaceAddr) String() string {
  89. s, _ := json.Marshal(n)
  90. return string(s)
  91. }
  92. func Interfaces() ([]InterfaceStat, error) {
  93. return InterfacesWithContext(context.Background())
  94. }
  95. func InterfacesWithContext(ctx context.Context) ([]InterfaceStat, error) {
  96. is, err := net.Interfaces()
  97. if err != nil {
  98. return nil, err
  99. }
  100. ret := make([]InterfaceStat, 0, len(is))
  101. for _, ifi := range is {
  102. var flags []string
  103. if ifi.Flags&net.FlagUp != 0 {
  104. flags = append(flags, "up")
  105. }
  106. if ifi.Flags&net.FlagBroadcast != 0 {
  107. flags = append(flags, "broadcast")
  108. }
  109. if ifi.Flags&net.FlagLoopback != 0 {
  110. flags = append(flags, "loopback")
  111. }
  112. if ifi.Flags&net.FlagPointToPoint != 0 {
  113. flags = append(flags, "pointtopoint")
  114. }
  115. if ifi.Flags&net.FlagMulticast != 0 {
  116. flags = append(flags, "multicast")
  117. }
  118. r := InterfaceStat{
  119. Name: ifi.Name,
  120. MTU: ifi.MTU,
  121. HardwareAddr: ifi.HardwareAddr.String(),
  122. Flags: flags,
  123. }
  124. addrs, err := ifi.Addrs()
  125. if err == nil {
  126. r.Addrs = make([]InterfaceAddr, 0, len(addrs))
  127. for _, addr := range addrs {
  128. r.Addrs = append(r.Addrs, InterfaceAddr{
  129. Addr: addr.String(),
  130. })
  131. }
  132. }
  133. ret = append(ret, r)
  134. }
  135. return ret, nil
  136. }
  137. func getIOCountersAll(n []IOCountersStat) ([]IOCountersStat, error) {
  138. r := IOCountersStat{
  139. Name: "all",
  140. }
  141. for _, nic := range n {
  142. r.BytesRecv += nic.BytesRecv
  143. r.PacketsRecv += nic.PacketsRecv
  144. r.Errin += nic.Errin
  145. r.Dropin += nic.Dropin
  146. r.BytesSent += nic.BytesSent
  147. r.PacketsSent += nic.PacketsSent
  148. r.Errout += nic.Errout
  149. r.Dropout += nic.Dropout
  150. }
  151. return []IOCountersStat{r}, nil
  152. }
  153. func parseNetLine(line string) (ConnectionStat, error) {
  154. f := strings.Fields(line)
  155. if len(f) < 8 {
  156. return ConnectionStat{}, fmt.Errorf("wrong line,%s", line)
  157. }
  158. if len(f) == 8 {
  159. f = append(f, f[7])
  160. f[7] = "unix"
  161. }
  162. pid, err := strconv.Atoi(f[1])
  163. if err != nil {
  164. return ConnectionStat{}, err
  165. }
  166. fd, err := strconv.Atoi(strings.Trim(f[3], "u"))
  167. if err != nil {
  168. return ConnectionStat{}, fmt.Errorf("unknown fd, %s", f[3])
  169. }
  170. netFamily, ok := constMap[f[4]]
  171. if !ok {
  172. return ConnectionStat{}, fmt.Errorf("unknown family, %s", f[4])
  173. }
  174. netType, ok := constMap[f[7]]
  175. if !ok {
  176. return ConnectionStat{}, fmt.Errorf("unknown type, %s", f[7])
  177. }
  178. var laddr, raddr Addr
  179. if f[7] == "unix" {
  180. laddr.IP = f[8]
  181. } else {
  182. laddr, raddr, err = parseNetAddr(f[8])
  183. if err != nil {
  184. return ConnectionStat{}, fmt.Errorf("failed to parse netaddr, %s", f[8])
  185. }
  186. }
  187. n := ConnectionStat{
  188. Fd: uint32(fd),
  189. Family: uint32(netFamily),
  190. Type: uint32(netType),
  191. Laddr: laddr,
  192. Raddr: raddr,
  193. Pid: int32(pid),
  194. }
  195. if len(f) == 10 {
  196. n.Status = strings.Trim(f[9], "()")
  197. }
  198. return n, nil
  199. }
  200. func parseNetAddr(line string) (laddr Addr, raddr Addr, err error) {
  201. parse := func(l string) (Addr, error) {
  202. host, port, err := net.SplitHostPort(l)
  203. if err != nil {
  204. return Addr{}, fmt.Errorf("wrong addr, %s", l)
  205. }
  206. lport, err := strconv.Atoi(port)
  207. if err != nil {
  208. return Addr{}, err
  209. }
  210. return Addr{IP: host, Port: uint32(lport)}, nil
  211. }
  212. addrs := strings.Split(line, "->")
  213. if len(addrs) == 0 {
  214. return laddr, raddr, fmt.Errorf("wrong netaddr, %s", line)
  215. }
  216. laddr, err = parse(addrs[0])
  217. if len(addrs) == 2 { // remote addr exists
  218. raddr, err = parse(addrs[1])
  219. if err != nil {
  220. return laddr, raddr, err
  221. }
  222. }
  223. return laddr, raddr, err
  224. }