2014-05-12 11:10:28 +08:00
|
|
|
// +build windows
|
|
|
|
|
2014-12-30 21:09:05 +08:00
|
|
|
package net
|
2014-05-12 11:10:28 +08:00
|
|
|
|
|
|
|
import (
|
2014-05-16 10:33:35 +08:00
|
|
|
"net"
|
|
|
|
"os"
|
|
|
|
"syscall"
|
|
|
|
"unsafe"
|
2014-11-27 09:18:15 +08:00
|
|
|
|
2015-10-19 23:04:57 +08:00
|
|
|
"github.com/shirou/gopsutil/internal/common"
|
2014-05-12 11:10:28 +08:00
|
|
|
)
|
|
|
|
|
2014-05-16 11:21:17 +08:00
|
|
|
var (
|
2014-05-16 15:59:46 +08:00
|
|
|
modiphlpapi = syscall.NewLazyDLL("iphlpapi.dll")
|
2014-05-16 11:21:17 +08:00
|
|
|
procGetExtendedTcpTable = modiphlpapi.NewProc("GetExtendedTcpTable")
|
|
|
|
procGetExtendedUdpTable = modiphlpapi.NewProc("GetExtendedUdpTable")
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2014-08-16 02:05:26 +08:00
|
|
|
TCPTableBasicListener = iota
|
|
|
|
TCPTableBasicConnections
|
|
|
|
TCPTableBasicAll
|
|
|
|
TCPTableOwnerPIDListener
|
|
|
|
TCPTableOwnerPIDConnections
|
|
|
|
TCPTableOwnerPIDAll
|
|
|
|
TCPTableOwnerModuleListener
|
|
|
|
TCPTableOwnerModuleConnections
|
|
|
|
TCPTableOwnerModuleAll
|
2014-05-16 11:21:17 +08:00
|
|
|
)
|
|
|
|
|
2014-05-12 11:10:28 +08:00
|
|
|
func NetIOCounters(pernic bool) ([]NetIOCountersStat, error) {
|
2014-05-16 10:33:35 +08:00
|
|
|
ifs, err := net.Interfaces()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
ai, err := getAdapterList()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var ret []NetIOCountersStat
|
|
|
|
|
|
|
|
for _, ifi := range ifs {
|
|
|
|
name := ifi.Name
|
|
|
|
for ; ai != nil; ai = ai.Next {
|
2014-11-27 21:28:05 +08:00
|
|
|
name = common.BytePtrToString(&ai.Description[0])
|
2014-05-16 10:33:35 +08:00
|
|
|
c := NetIOCountersStat{
|
|
|
|
Name: name,
|
|
|
|
}
|
|
|
|
|
|
|
|
row := syscall.MibIfRow{Index: ai.Index}
|
|
|
|
e := syscall.GetIfEntry(&row)
|
|
|
|
if e != nil {
|
|
|
|
return nil, os.NewSyscallError("GetIfEntry", e)
|
|
|
|
}
|
|
|
|
c.BytesSent = uint64(row.OutOctets)
|
|
|
|
c.BytesRecv = uint64(row.InOctets)
|
|
|
|
c.PacketsSent = uint64(row.OutUcastPkts)
|
|
|
|
c.PacketsRecv = uint64(row.InUcastPkts)
|
|
|
|
c.Errin = uint64(row.InErrors)
|
|
|
|
c.Errout = uint64(row.OutErrors)
|
|
|
|
c.Dropin = uint64(row.InDiscards)
|
|
|
|
c.Dropout = uint64(row.OutDiscards)
|
|
|
|
|
|
|
|
ret = append(ret, c)
|
|
|
|
}
|
|
|
|
}
|
2015-01-01 20:29:25 +08:00
|
|
|
|
|
|
|
if pernic == false {
|
|
|
|
return getNetIOCountersAll(ret)
|
|
|
|
}
|
2014-05-16 10:33:35 +08:00
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
2014-05-16 11:21:17 +08:00
|
|
|
// Return a list of network connections opened by a process
|
|
|
|
func NetConnections(kind string) ([]NetConnectionStat, error) {
|
|
|
|
var ret []NetConnectionStat
|
|
|
|
|
2014-11-27 09:18:15 +08:00
|
|
|
return ret, common.NotImplementedError
|
2014-05-16 11:21:17 +08:00
|
|
|
}
|
|
|
|
|
2014-05-16 10:33:35 +08:00
|
|
|
// borrowed from src/pkg/net/interface_windows.go
|
|
|
|
func getAdapterList() (*syscall.IpAdapterInfo, error) {
|
|
|
|
b := make([]byte, 1000)
|
|
|
|
l := uint32(len(b))
|
|
|
|
a := (*syscall.IpAdapterInfo)(unsafe.Pointer(&b[0]))
|
|
|
|
err := syscall.GetAdaptersInfo(a, &l)
|
|
|
|
if err == syscall.ERROR_BUFFER_OVERFLOW {
|
|
|
|
b = make([]byte, l)
|
|
|
|
a = (*syscall.IpAdapterInfo)(unsafe.Pointer(&b[0]))
|
|
|
|
err = syscall.GetAdaptersInfo(a, &l)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, os.NewSyscallError("GetAdaptersInfo", err)
|
|
|
|
}
|
|
|
|
return a, nil
|
2014-05-12 11:10:28 +08:00
|
|
|
}
|