X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=src%2Fcall.go;h=c52fc419ecafe6a75e45afaf9a14e99bd8c5a6ee;hb=655146e4ee2bde72c9e8daa1361010fefe016df9;hp=1635b3042c77036b697421b601e821dc8dcaf176;hpb=561313b1994a8fadac5152bbdc7a980881fd93e0;p=nncp.git diff --git a/src/call.go b/src/call.go index 1635b30..c52fc41 100644 --- a/src/call.go +++ b/src/call.go @@ -1,6 +1,6 @@ /* NNCP -- Node to Node copy, utilities for store-and-forward data exchange -Copyright (C) 2016-2021 Sergey Matveev +Copyright (C) 2016-2022 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,9 +18,13 @@ along with this program. If not, see . package nncp import ( + "errors" + "fmt" "net" + "os" "time" + "github.com/dustin/go-humanize" "github.com/gorhill/cronexpr" ) @@ -34,6 +38,8 @@ type Call struct { OnlineDeadline time.Duration MaxOnlineTime time.Duration WhenTxExists bool + NoCK bool + MCDIgnore bool AutoToss bool AutoTossDoSeen bool @@ -41,6 +47,7 @@ type Call struct { AutoTossNoFreq bool AutoTossNoExec bool AutoTossNoTrns bool + AutoTossNoArea bool } func (ctx *Ctx) CallNode( @@ -51,23 +58,43 @@ func (ctx *Ctx) CallNode( rxRate, txRate int, onlineDeadline, maxOnlineTime time.Duration, listOnly bool, - onlyPkts map[[32]byte]bool, + noCK bool, + onlyPkts map[[MTHSize]byte]bool, ) (isGood bool) { for _, addr := range addrs { - sds := SDS{"node": node.Id, "addr": addr} - ctx.LogD("call", sds, "dialing") + les := LEs{{"Node", node.Id}, {"Addr", addr}} + ctx.LogD("calling", les, func(les LEs) string { + return fmt.Sprintf("Calling %s (%s)", node.Name, addr) + }) var conn ConnDeadlined var err error if addr[0] == '|' { conn, err = NewPipeConn(addr[1:]) + } else if addr == UCSPITCPClient { + ucspiConn := UCSPIConn{R: os.NewFile(6, "R"), W: os.NewFile(7, "W")} + if ucspiConn.R == nil { + err = errors.New("no 6 file descriptor") + } + if ucspiConn.W == nil { + err = errors.New("no 7 file descriptor") + } + conn = ucspiConn + addr = UCSPITCPRemoteAddr() + if addr == "" { + addr = UCSPITCPClient + } } else { conn, err = net.Dial("tcp", addr) } if err != nil { - ctx.LogD("call", SdsAdd(sds, SDS{"err": err}), "dialing") + ctx.LogD("calling", append(les, LE{"Err", err}), func(les LEs) string { + return fmt.Sprintf("Calling %s (%s)", node.Name, addr) + }) continue } - ctx.LogD("call", sds, "connected") + ctx.LogD("call-connected", les, func(les LEs) string { + return fmt.Sprintf("Connected %s (%s)", node.Name, addr) + }) state := SPState{ Ctx: ctx, Node: node, @@ -78,25 +105,42 @@ func (ctx *Ctx) CallNode( rxRate: rxRate, txRate: txRate, listOnly: listOnly, + NoCK: noCK, onlyPkts: onlyPkts, } if err = state.StartI(conn); err == nil { - ctx.LogI("call-start", sds, "connected") + ctx.LogI("call-started", les, func(les LEs) string { + return fmt.Sprintf("Connection to %s (%s)", node.Name, addr) + }) state.Wait() - ctx.LogI("call-finish", SDS{ - "node": state.Node.Id, - "duration": int64(state.Duration.Seconds()), - "rxbytes": state.RxBytes, - "txbytes": state.TxBytes, - "rxspeed": state.RxSpeed, - "txspeed": state.TxSpeed, - }, "") + ctx.LogI("call-finished", append( + les, + LE{"Duration", int64(state.Duration.Seconds())}, + LE{"RxBytes", state.RxBytes}, + LE{"RxSpeed", state.RxSpeed}, + LE{"TxBytes", state.TxBytes}, + LE{"TxSpeed", state.TxSpeed}, + ), func(les LEs) string { + return fmt.Sprintf( + "Finished call with %s (%d:%d:%d): %s received (%s/sec), %s transferred (%s/sec)", + node.Name, + int(state.Duration.Hours()), + int(state.Duration.Minutes()), + int(state.Duration.Seconds())%60, + humanize.IBytes(uint64(state.RxBytes)), + humanize.IBytes(uint64(state.RxSpeed)), + humanize.IBytes(uint64(state.TxBytes)), + humanize.IBytes(uint64(state.TxSpeed)), + ) + }) isGood = true - conn.Close() // #nosec G104 + conn.Close() break } else { - ctx.LogE("call-start", sds, err, "") - conn.Close() // #nosec G104 + ctx.LogE("call-started", les, err, func(les LEs) string { + return fmt.Sprintf("Connection to %s (%s)", node.Name, addr) + }) + conn.Close() } } return