123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- package netstat
- import (
- "encoding/json"
- "errors"
- "log"
- "net/http"
- "os"
- "os/exec"
- "path/filepath"
- "runtime"
- "strconv"
- "strings"
- "time"
- "imuslab.com/zoraxy/mod/utils"
- )
- // Float stat store the change of RX and TX
- type FlowStat struct {
- RX int64
- TX int64
- }
- // A new type of FloatStat that save the raw value from rx tx
- type RawFlowStat struct {
- RX int64
- TX int64
- }
- type NetStatBuffers struct {
- StatRecordCount int //No. of record number to keep
- PreviousStat *RawFlowStat //The value of the last instance of netstats
- Stats []*FlowStat //Statistic of the flow
- StopChan chan bool //Channel to stop the ticker
- EventTicker *time.Ticker //Ticker for event logging
- }
- // Get a new network statistic buffers
- func NewNetStatBuffer(recordCount int) (*NetStatBuffers, error) {
- //Get the initial measurements of netstats
- rx, tx, err := GetNetworkInterfaceStats()
- if err != nil {
- return nil, err
- }
- currnetNetSpec := RawFlowStat{
- RX: rx,
- TX: tx,
- }
- //Flood fill the stats with 0
- initialStats := []*FlowStat{}
- for i := 0; i < recordCount; i++ {
- initialStats = append(initialStats, &FlowStat{
- RX: 0,
- TX: 0,
- })
- }
- //Setup a timer to get the value from NIC accumulation stats
- ticker := time.NewTicker(time.Second)
- //Setup a stop channel
- stopCh := make(chan bool)
- thisNetBuffer := NetStatBuffers{
- StatRecordCount: recordCount,
- PreviousStat: &currnetNetSpec,
- Stats: initialStats,
- StopChan: stopCh,
- EventTicker: ticker,
- }
- // Update the buffer every second
- go func(n *NetStatBuffers) {
- for {
- select {
- case <-stopCh:
- return
- case <-ticker.C:
- // Get the latest network interface stats
- rx, tx, err := GetNetworkInterfaceStats()
- if err != nil {
- // Log the error, but don't stop the buffer
- log.Printf("Failed to get network interface stats: %v", err)
- continue
- }
- //Calculate the difference between this and last values
- drx := rx - n.PreviousStat.RX
- dtx := tx - n.PreviousStat.TX
- // Push the new stats to the buffer
- newStat := &FlowStat{
- RX: drx,
- TX: dtx,
- }
- //Set current rx tx as the previous rxtx
- n.PreviousStat = &RawFlowStat{
- RX: rx,
- TX: tx,
- }
- newStats := n.Stats[1:]
- newStats = append(newStats, newStat)
- n.Stats = newStats
- }
- }
- }(&thisNetBuffer)
- return &thisNetBuffer, nil
- }
- func (n *NetStatBuffers) HandleGetBufferedNetworkInterfaceStats(w http.ResponseWriter, r *http.Request) {
- arr, _ := utils.GetPara(r, "array")
- if arr == "true" {
- //Restructure it into array
- rx := []int{}
- tx := []int{}
- for _, state := range n.Stats {
- rx = append(rx, int(state.RX))
- tx = append(tx, int(state.TX))
- }
- type info struct {
- Rx []int
- Tx []int
- }
- js, _ := json.Marshal(info{
- Rx: rx,
- Tx: tx,
- })
- utils.SendJSONResponse(w, string(js))
- } else {
- js, _ := json.Marshal(n.Stats)
- utils.SendJSONResponse(w, string(js))
- }
- }
- func (n *NetStatBuffers) Close() {
- n.StopChan <- true
- n.EventTicker.Stop()
- }
- func HandleGetNetworkInterfaceStats(w http.ResponseWriter, r *http.Request) {
- rx, tx, err := GetNetworkInterfaceStats()
- if err != nil {
- utils.SendErrorResponse(w, err.Error())
- return
- }
- currnetNetSpec := struct {
- RX int64
- TX int64
- }{
- rx,
- tx,
- }
- js, _ := json.Marshal(currnetNetSpec)
- utils.SendJSONResponse(w, string(js))
- }
- // Get network interface stats, return accumulated rx bits, tx bits and error if any
- func GetNetworkInterfaceStats() (int64, int64, error) {
- if runtime.GOOS == "windows" {
- cmd := exec.Command("wmic", "path", "Win32_PerfRawData_Tcpip_NetworkInterface", "Get", "BytesReceivedPersec,BytesSentPersec,BytesTotalPersec")
- out, err := cmd.Output()
- if err != nil {
- return 0, 0, err
- }
- //Filter out the first line
- lines := strings.Split(strings.ReplaceAll(string(out), "\r\n", "\n"), "\n")
- if len(lines) >= 2 && len(lines[1]) >= 0 {
- dataLine := lines[1]
- for strings.Contains(dataLine, " ") {
- dataLine = strings.ReplaceAll(dataLine, " ", " ")
- }
- dataLine = strings.TrimSpace(dataLine)
- info := strings.Split(dataLine, " ")
- if len(info) < 3 {
- return 0, 0, errors.New("Invalid wmic results")
- }
- rxString := info[0]
- txString := info[1]
- rx := int64(0)
- tx := int64(0)
- if s, err := strconv.ParseInt(rxString, 10, 64); err == nil {
- rx = s
- }
- if s, err := strconv.ParseInt(txString, 10, 64); err == nil {
- tx = s
- }
- //log.Println(rx, tx)
- return rx * 4, tx * 4, nil
- } else {
- //Invalid data
- return 0, 0, errors.New("Invalid wmic results")
- }
- } else if runtime.GOOS == "linux" {
- allIfaceRxByteFiles, err := filepath.Glob("/sys/class/net/*/statistics/rx_bytes")
- if err != nil {
- //Permission denied
- return 0, 0, errors.New("Access denied")
- }
- if len(allIfaceRxByteFiles) == 0 {
- return 0, 0, errors.New("No valid iface found")
- }
- rxSum := int64(0)
- txSum := int64(0)
- for _, rxByteFile := range allIfaceRxByteFiles {
- rxBytes, err := os.ReadFile(rxByteFile)
- if err == nil {
- rxBytesInt, err := strconv.Atoi(strings.TrimSpace(string(rxBytes)))
- if err == nil {
- rxSum += int64(rxBytesInt)
- }
- }
- //Usually the tx_bytes file is nearby it. Read it as well
- txByteFile := filepath.Join(filepath.Dir(rxByteFile), "tx_bytes")
- txBytes, err := os.ReadFile(txByteFile)
- if err == nil {
- txBytesInt, err := strconv.Atoi(strings.TrimSpace(string(txBytes)))
- if err == nil {
- txSum += int64(txBytesInt)
- }
- }
- }
- //Return value as bits
- return rxSum * 8, txSum * 8, nil
- } else if runtime.GOOS == "darwin" {
- cmd := exec.Command("netstat", "-ib") //get data from netstat -ib
- out, err := cmd.Output()
- if err != nil {
- return 0, 0, err
- }
- outStrs := string(out) //byte array to multi-line string
- for _, outStr := range strings.Split(strings.TrimSuffix(outStrs, "\n"), "\n") { //foreach multi-line string
- if strings.HasPrefix(outStr, "en") { //search for ethernet interface
- if strings.Contains(outStr, "<Link#") { //search for the link with <Link#?>
- outStrSplit := strings.Fields(outStr) //split by white-space
- rxSum, errRX := strconv.Atoi(outStrSplit[6]) //received bytes sum
- if errRX != nil {
- return 0, 0, errRX
- }
- txSum, errTX := strconv.Atoi(outStrSplit[9]) //transmitted bytes sum
- if errTX != nil {
- return 0, 0, errTX
- }
- return int64(rxSum) * 8, int64(txSum) * 8, nil
- }
- }
- }
- return 0, 0, nil //no ethernet adapters with en*/<Link#*>
- }
- return 0, 0, errors.New("Platform not supported")
- }
|