-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathconnection.go
170 lines (144 loc) · 3.59 KB
/
connection.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
package remotedialer
import (
"context"
"io"
"net"
"time"
"github.com/rancher/remotedialer/metrics"
"github.com/sirupsen/logrus"
)
type connection struct {
err error
writeDeadline time.Time
backPressure *backPressure
buffer *readBuffer
addr addr
session *Session
connID int64
}
func newConnection(connID int64, session *Session, proto, address string) *connection {
c := &connection{
addr: addr{
proto: proto,
address: address,
},
connID: connID,
session: session,
}
c.backPressure = newBackPressure(c)
c.buffer = newReadBuffer(connID, c.backPressure)
metrics.IncSMTotalAddConnectionsForWS(session.clientKey, proto, address)
return c
}
func (c *connection) tunnelClose(err error) {
c.writeErr(err)
c.doTunnelClose(err)
}
func (c *connection) doTunnelClose(err error) {
if c.err != nil {
return
}
metrics.IncSMTotalRemoveConnectionsForWS(c.session.clientKey, c.addr.Network(), c.addr.String())
c.err = err
if c.err == nil {
c.err = io.ErrClosedPipe
}
c.buffer.Close(c.err)
}
func (c *connection) OnData(r io.Reader) error {
if PrintTunnelData {
defer func() {
logrus.Debugf("ONDATA [%d] %s", c.connID, c.buffer.Status())
}()
}
return c.buffer.Offer(r)
}
func (c *connection) Close() error {
c.session.closeConnection(c.connID, io.EOF)
c.backPressure.Close()
return nil
}
func (c *connection) Read(b []byte) (int, error) {
n, err := c.buffer.Read(b)
metrics.AddSMTotalReceiveBytesOnWS(c.session.clientKey, float64(n))
if PrintTunnelData {
logrus.Debugf("READ [%d] %s %d %v", c.connID, c.buffer.Status(), n, err)
}
return n, err
}
func (c *connection) Write(b []byte) (int, error) {
if c.err != nil {
return 0, io.ErrClosedPipe
}
ctx, cancel := context.WithCancel(context.Background())
if !c.writeDeadline.IsZero() {
ctx, cancel = context.WithDeadline(ctx, c.writeDeadline)
go func(ctx context.Context) {
select {
case <-ctx.Done():
if ctx.Err() == context.DeadlineExceeded {
c.Close()
}
return
}
}(ctx)
}
c.backPressure.Wait(cancel)
msg := newMessage(c.connID, b)
metrics.AddSMTotalTransmitBytesOnWS(c.session.clientKey, float64(len(msg.Bytes())))
return c.session.writeMessage(c.writeDeadline, msg)
}
func (c *connection) OnPause() {
c.backPressure.OnPause()
}
func (c *connection) OnResume() {
c.backPressure.OnResume()
}
func (c *connection) Pause() {
msg := newPause(c.connID)
_, _ = c.session.writeMessage(c.writeDeadline, msg)
}
func (c *connection) Resume() {
msg := newResume(c.connID)
_, _ = c.session.writeMessage(c.writeDeadline, msg)
}
func (c *connection) writeErr(err error) {
if err != nil {
msg := newErrorMessage(c.connID, err)
metrics.AddSMTotalTransmitErrorBytesOnWS(c.session.clientKey, float64(len(msg.Bytes())))
deadline := time.Now().Add(SendErrorTimeout)
if _, err2 := c.session.writeMessage(deadline, msg); err2 != nil {
logrus.Warnf("[%d] encountered error %q while writing error %q to close remotedialer", c.connID, err2, err)
}
}
}
func (c *connection) LocalAddr() net.Addr {
return c.addr
}
func (c *connection) RemoteAddr() net.Addr {
return c.addr
}
func (c *connection) SetDeadline(t time.Time) error {
if err := c.SetReadDeadline(t); err != nil {
return err
}
return c.SetWriteDeadline(t)
}
func (c *connection) SetReadDeadline(t time.Time) error {
c.buffer.deadline = t
return nil
}
func (c *connection) SetWriteDeadline(t time.Time) error {
c.writeDeadline = t
return nil
}
type addr struct {
proto string
address string
}
func (a addr) Network() string {
return a.proto
}
func (a addr) String() string {
return a.address
}