mirror of
https://github.com/nxtrace/NTrace-core.git
synced 2025-08-12 06:26:39 +00:00
329 lines
7.2 KiB
Go
329 lines
7.2 KiB
Go
package trace
|
||
|
||
import (
|
||
"log"
|
||
"math/rand"
|
||
"net"
|
||
"strconv"
|
||
"sync"
|
||
"time"
|
||
|
||
"github.com/google/gopacket"
|
||
"github.com/google/gopacket/layers"
|
||
"github.com/nxtrace/NTrace-core/util"
|
||
"golang.org/x/net/context"
|
||
"golang.org/x/net/icmp"
|
||
"golang.org/x/net/ipv4"
|
||
"golang.org/x/sync/semaphore"
|
||
)
|
||
|
||
type UDPTracer struct {
|
||
Config
|
||
wg sync.WaitGroup
|
||
res Result
|
||
ctx context.Context
|
||
inflightRequest map[int]chan Hop
|
||
inflightRequestLock sync.Mutex
|
||
|
||
icmp net.PacketConn
|
||
|
||
final int
|
||
finalLock sync.Mutex
|
||
|
||
sem *semaphore.Weighted
|
||
fetchLock sync.Mutex
|
||
}
|
||
|
||
func (t *UDPTracer) Execute() (*Result, error) {
|
||
if len(t.res.Hops) > 0 {
|
||
return &t.res, ErrTracerouteExecuted
|
||
}
|
||
|
||
var err error
|
||
t.icmp, err = icmp.ListenPacket("ip4:icmp", t.SrcAddr)
|
||
if err != nil {
|
||
return &t.res, err
|
||
}
|
||
defer t.icmp.Close()
|
||
|
||
var cancel context.CancelFunc
|
||
t.ctx, cancel = context.WithCancel(context.Background())
|
||
defer cancel()
|
||
t.inflightRequest = make(map[int]chan Hop)
|
||
t.final = -1
|
||
|
||
go t.listenICMP()
|
||
|
||
t.sem = semaphore.NewWeighted(int64(t.ParallelRequests))
|
||
for ttl := t.BeginHop; ttl <= t.MaxHops; ttl++ {
|
||
// 如果到达最终跳,则退出
|
||
if t.final != -1 && ttl > t.final {
|
||
break
|
||
}
|
||
for i := 0; i < t.NumMeasurements; i++ {
|
||
t.wg.Add(1)
|
||
go t.send(ttl)
|
||
<-time.After(time.Millisecond * time.Duration(t.Config.PacketInterval))
|
||
}
|
||
if t.RealtimePrinter != nil {
|
||
// 对于实时模式,应该按照TTL进行并发请求
|
||
t.wg.Wait()
|
||
t.RealtimePrinter(&t.res, ttl-1)
|
||
}
|
||
<-time.After(time.Millisecond * time.Duration(t.Config.TTLInterval))
|
||
}
|
||
go func() {
|
||
if t.AsyncPrinter != nil {
|
||
for {
|
||
t.AsyncPrinter(&t.res)
|
||
time.Sleep(200 * time.Millisecond)
|
||
}
|
||
}
|
||
}()
|
||
// 如果是表格模式,则一次性并发请求
|
||
if t.AsyncPrinter != nil {
|
||
t.wg.Wait()
|
||
}
|
||
t.res.reduce(t.final)
|
||
|
||
return &t.res, nil
|
||
}
|
||
|
||
func (t *UDPTracer) listenICMP() {
|
||
lc := NewPacketListener(t.icmp, t.ctx)
|
||
go lc.Start()
|
||
for {
|
||
select {
|
||
case <-t.ctx.Done():
|
||
return
|
||
case msg := <-lc.Messages:
|
||
if msg.N == nil {
|
||
continue
|
||
}
|
||
rm, err := icmp.ParseMessage(1, msg.Msg[:*msg.N])
|
||
if err != nil {
|
||
log.Println(err)
|
||
continue
|
||
}
|
||
switch rm.Type {
|
||
case ipv4.ICMPTypeTimeExceeded:
|
||
t.handleICMPMessage(msg, rm.Body.(*icmp.TimeExceeded).Data)
|
||
case ipv4.ICMPTypeDestinationUnreachable:
|
||
t.handleICMPMessage(msg, rm.Body.(*icmp.DstUnreach).Data)
|
||
default:
|
||
// log.Println("received icmp message of unknown type", rm.Type)
|
||
}
|
||
}
|
||
}
|
||
|
||
}
|
||
|
||
func (t *UDPTracer) handleICMPMessage(msg ReceivedMessage, data []byte) {
|
||
header, err := util.GetICMPResponsePayload(data)
|
||
if err != nil {
|
||
return
|
||
}
|
||
srcPort := util.GetUDPSrcPort(header)
|
||
t.inflightRequestLock.Lock()
|
||
defer t.inflightRequestLock.Unlock()
|
||
ch, ok := t.inflightRequest[int(srcPort)]
|
||
if !ok {
|
||
return
|
||
}
|
||
ch <- Hop{
|
||
Success: true,
|
||
Address: msg.Peer,
|
||
}
|
||
}
|
||
|
||
var cachedLocalPort int
|
||
|
||
func (t *UDPTracer) getUDPConn(try int) (net.IP, int, net.PacketConn, error) {
|
||
srcIP, _ := util.LocalIPPort(t.DestIP)
|
||
var ipString string
|
||
if srcIP == nil {
|
||
ipString = ""
|
||
} else {
|
||
ipString = srcIP.String()
|
||
}
|
||
|
||
// Check environment variable to decide caching behavior
|
||
if util.GetenvDefault("NEXTTRACE_RANDOMPORT", "") == "" {
|
||
// Use cached random port logic
|
||
if cachedLocalPort == 0 {
|
||
// First time: listen on a random port
|
||
udpConn, err := net.ListenPacket("udp", ipString+":0")
|
||
if err != nil {
|
||
if try > 3 {
|
||
log.Fatal(err)
|
||
}
|
||
return srcIP, 0, nil, err
|
||
}
|
||
cachedLocalPort = udpConn.LocalAddr().(*net.UDPAddr).Port
|
||
// Close the initial connection after obtaining the port
|
||
udpConn.Close()
|
||
}
|
||
// Use the cached local port to establish a new connection
|
||
udpConn, err := net.ListenPacket("udp", ipString+":"+strconv.Itoa(cachedLocalPort))
|
||
if err != nil {
|
||
return srcIP, cachedLocalPort, nil, err
|
||
}
|
||
return srcIP, cachedLocalPort, udpConn, nil
|
||
} else {
|
||
// Without caching: create a new connection each time using a new random port
|
||
udpConn, err := net.ListenPacket("udp", ipString+":0")
|
||
if err != nil {
|
||
return srcIP, 0, nil, err
|
||
}
|
||
localPort := udpConn.LocalAddr().(*net.UDPAddr).Port
|
||
return srcIP, localPort, udpConn, nil
|
||
}
|
||
}
|
||
|
||
func (t *UDPTracer) send(ttl int) error {
|
||
err := t.sem.Acquire(context.Background(), 1)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
defer t.sem.Release(1)
|
||
|
||
defer t.wg.Done()
|
||
if t.final != -1 && ttl > t.final {
|
||
return nil
|
||
}
|
||
|
||
srcIP, srcPort, udpConn, err := t.getUDPConn(0)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
defer udpConn.Close()
|
||
|
||
//var payload []byte
|
||
//if t.Quic {
|
||
// payload = GenerateQuicPayloadWithRandomIds()
|
||
//} else {
|
||
ipHeader := &layers.IPv4{
|
||
SrcIP: srcIP,
|
||
DstIP: t.DestIP,
|
||
Protocol: layers.IPProtocolUDP,
|
||
TTL: uint8(ttl),
|
||
}
|
||
|
||
udpHeader := &layers.UDP{
|
||
SrcPort: layers.UDPPort(srcPort),
|
||
DstPort: layers.UDPPort(t.DestPort),
|
||
}
|
||
_ = udpHeader.SetNetworkLayerForChecksum(ipHeader)
|
||
buf := gopacket.NewSerializeBuffer()
|
||
opts := gopacket.SerializeOptions{
|
||
ComputeChecksums: true,
|
||
FixLengths: true,
|
||
}
|
||
|
||
desiredPayloadSize := t.Config.PktSize
|
||
if desiredPayloadSize-8 > 0 {
|
||
desiredPayloadSize -= 8
|
||
}
|
||
payload := make([]byte, desiredPayloadSize)
|
||
// 设置随机种子
|
||
rand.Seed(time.Now().UnixNano())
|
||
|
||
// 填充随机数
|
||
for i := range payload {
|
||
payload[i] = byte(rand.Intn(256))
|
||
}
|
||
//copy(buf.Bytes(), payload)
|
||
|
||
if err := gopacket.SerializeLayers(buf, opts, udpHeader, gopacket.Payload(payload)); err != nil {
|
||
return err
|
||
}
|
||
|
||
//payload = buf.Bytes()
|
||
//}
|
||
|
||
err = ipv4.NewPacketConn(udpConn).SetTTL(ttl)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
|
||
start := time.Now()
|
||
if _, err := udpConn.WriteTo(buf.Bytes(), &net.UDPAddr{IP: t.DestIP, Port: t.DestPort}); err != nil {
|
||
return err
|
||
}
|
||
|
||
// 在对inflightRequest进行写操作的时候应该加锁保护,以免多个goroutine协程试图同时写入造成panic
|
||
t.inflightRequestLock.Lock()
|
||
hopCh := make(chan Hop, 1)
|
||
t.inflightRequest[srcPort] = hopCh
|
||
t.inflightRequestLock.Unlock()
|
||
defer func() {
|
||
t.inflightRequestLock.Lock()
|
||
close(hopCh)
|
||
delete(t.inflightRequest, srcPort)
|
||
t.inflightRequestLock.Unlock()
|
||
}()
|
||
|
||
go func() {
|
||
reply := make([]byte, 1500)
|
||
_, peer, err := udpConn.ReadFrom(reply)
|
||
if err != nil {
|
||
// probably because we closed the connection
|
||
return
|
||
}
|
||
hopCh <- Hop{
|
||
Success: true,
|
||
Address: &net.IPAddr{IP: peer.(*net.UDPAddr).IP},
|
||
}
|
||
}()
|
||
|
||
select {
|
||
case <-t.ctx.Done():
|
||
return nil
|
||
case h := <-hopCh:
|
||
rtt := time.Since(start)
|
||
if t.final != -1 && ttl > t.final {
|
||
return nil
|
||
}
|
||
if addr, ok := h.Address.(*net.IPAddr); ok && addr.IP.Equal(t.DestIP) {
|
||
t.finalLock.Lock()
|
||
if t.final == -1 || ttl < t.final {
|
||
t.final = ttl
|
||
}
|
||
t.finalLock.Unlock()
|
||
} else if addr, ok := h.Address.(*net.UDPAddr); ok && addr.IP.Equal(t.DestIP) {
|
||
t.finalLock.Lock()
|
||
if t.final == -1 || ttl < t.final {
|
||
t.final = ttl
|
||
}
|
||
t.finalLock.Unlock()
|
||
}
|
||
|
||
h.TTL = ttl
|
||
h.RTT = rtt
|
||
|
||
t.fetchLock.Lock()
|
||
defer t.fetchLock.Unlock()
|
||
err := h.fetchIPData(t.Config)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
|
||
t.res.add(h)
|
||
|
||
case <-time.After(t.Timeout):
|
||
if t.final != -1 && ttl > t.final {
|
||
return nil
|
||
}
|
||
|
||
t.res.add(Hop{
|
||
Success: false,
|
||
Address: nil,
|
||
TTL: ttl,
|
||
RTT: 0,
|
||
Error: ErrHopLimitTimeout,
|
||
})
|
||
}
|
||
|
||
return nil
|
||
}
|