This repository has been archived by the owner on May 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
agent_transaction.go
135 lines (119 loc) · 2.79 KB
/
agent_transaction.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
package ice
import (
"errors"
"net"
"time"
"go.uber.org/zap"
"gortc.io/stun"
)
type transactionID [stun.TransactionIDSize]byte
func (t transactionID) AddTo(m *stun.Message) error {
m.TransactionID = t
return nil
}
// agentTransaction represents transaction in progress.
//
// Concurrent access is invalid.
type agentTransaction struct {
checklist int
pair pairKey
priority int
nominate bool
id transactionID
start time.Time
rto time.Duration
deadline time.Time
raw []byte
attempt int
maxAttempts int
}
func (t *agentTransaction) setDeadline(now time.Time) {
t.deadline = now.Add(time.Duration(t.attempt) * t.rto)
}
// handleTimeout handles maximum attempts reached state for transaction,
// updating the pair states to failed.
func (a *Agent) handleTimeout(t *agentTransaction) error {
a.mux.Lock()
p, ok := a.getPair(t.checklist, t.pair)
if !ok {
a.mux.Unlock()
return errors.New("no pair found")
}
cl := a.set[t.checklist]
for i := range cl.Triggered {
if samePair(&cl.Triggered[i], p) {
cl.Triggered[i].State = PairFailed
}
}
for i := range cl.Pairs {
if samePair(&cl.Pairs[i], p) {
cl.Pairs[i].State = PairFailed
}
}
a.mux.Unlock()
return nil
}
// retry re-sends same binding request to associated candidate.
func (a *Agent) retry(t *agentTransaction) {
a.mux.Lock()
p, ok := a.getPair(t.checklist, t.pair)
a.mux.Unlock()
if !ok {
a.log.Warn("failed to pick pair for retry")
return
}
c, ok := a.localCandidateByAddr(p.Local.Addr)
if !ok {
a.log.Warn("failed to pick local candidate for retry")
return
}
udpAddr := &net.UDPAddr{
IP: p.Remote.Addr.IP,
Port: p.Remote.Addr.Port,
}
_, err := c.conn.WriteTo(t.raw, udpAddr)
if err != nil {
a.log.Error("failed to write", zap.Error(err))
}
}
const defaultTransactionCap = 30
// collect handles transaction timeouts, performing retry or updating the
// pair state if max attempts reached.
func (a *Agent) collect(now time.Time) {
toHandle := make([]*agentTransaction, 0, defaultTransactionCap)
toDelete := make([]transactionID, 0, defaultTransactionCap)
a.tMux.Lock()
for id, t := range a.t {
if !t.deadline.After(now) {
toDelete = append(toDelete, id)
toHandle = append(toHandle, t)
}
}
for _, id := range toDelete {
delete(a.t, id)
}
a.tMux.Unlock()
if len(toHandle) == 0 {
return
}
toRetry := make([]*agentTransaction, 0, defaultTransactionCap)
for _, t := range toHandle {
if t.attempt < t.maxAttempts {
t.attempt++
t.setDeadline(now)
toRetry = append(toRetry, t)
continue
}
if err := a.handleTimeout(t); err != nil {
a.log.Error("failed to handle timeout", zap.Error(err))
}
}
a.tMux.Lock()
for _, t := range toRetry {
a.t[t.id] = t
}
a.tMux.Unlock()
for _, t := range toRetry {
a.retry(t)
}
}