-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpollon.go
185 lines (165 loc) · 3.64 KB
/
pollon.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
// Copyright 2015 Sorint.lab
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied
// See the License for the specific language governing permissions and
// limitations under the License.
package pollon
import (
"fmt"
"io"
"net"
"sync"
"time"
)
type ConfData struct {
DestAddr *net.TCPAddr
}
type Proxy struct {
C chan ConfData
listener *net.TCPListener
confMutex sync.Mutex
destAddr *net.TCPAddr
closeConns chan struct{}
stop chan struct{}
endCh chan error
connMutex sync.Mutex
keepAlive bool
keepAliveIdle time.Duration
keepAliveCount int
keepAliveInterval time.Duration
}
func NewProxy(listener *net.TCPListener) (*Proxy, error) {
return &Proxy{
C: make(chan ConfData),
listener: listener,
closeConns: make(chan struct{}),
stop: make(chan struct{}),
endCh: make(chan error),
connMutex: sync.Mutex{},
}, nil
}
func (p *Proxy) proxyConn(conn *net.TCPConn) {
p.connMutex.Lock()
closeConns := p.closeConns
destAddr := p.destAddr
p.connMutex.Unlock()
defer func() {
log.Printf("closing source connection: %v", conn)
conn.Close()
}()
defer conn.Close()
if destAddr == nil {
return
}
var d net.Dialer
d.Cancel = closeConns
destConnInterface, err := d.Dial("tcp", destAddr.String())
if err != nil {
conn.Close()
return
}
destConn := destConnInterface.(*net.TCPConn)
defer func() {
log.Printf("closing destination connection: %v", destConn)
destConn.Close()
}()
var wg sync.WaitGroup
end := make(chan bool)
wg.Add(1)
go func() {
defer wg.Done()
n, err := io.Copy(destConn, conn)
if err != nil {
}
conn.Close()
destConn.CloseRead()
log.Printf("ending. copied %d bytes from source to dest", n)
}()
wg.Add(1)
go func() {
defer wg.Done()
n, err := io.Copy(conn, destConn)
if err != nil {
}
destConn.Close()
conn.CloseRead()
log.Printf("ending. copied %d bytes from dest to source", n)
}()
go func() {
wg.Wait()
end <- true
}()
select {
case <-end:
log.Printf("all io copy goroutines done")
return
case <-closeConns:
log.Printf("closing all connections")
return
}
}
func (p *Proxy) confCheck() {
for {
select {
case <-p.stop:
return
case confData := <-p.C:
if confData.DestAddr.String() != p.destAddr.String() {
p.connMutex.Lock()
close(p.closeConns)
p.closeConns = make(chan struct{})
p.destAddr = confData.DestAddr
p.connMutex.Unlock()
}
}
}
}
func (p *Proxy) accepter() {
for {
conn, err := p.listener.AcceptTCP()
if err != nil {
p.endCh <- fmt.Errorf("accept error: %v", err)
return
}
if p.keepAlive {
if err := p.SetupKeepAlive(conn); err != nil {
p.endCh <- fmt.Errorf("setKeepAlive error: %v", err)
return
}
}
go p.proxyConn(conn)
}
}
func (p *Proxy) Stop() {
p.endCh <- nil
}
func (p *Proxy) Start() error {
go p.confCheck()
go p.accepter()
err := <-p.endCh
close(p.stop)
if err != nil {
return fmt.Errorf("proxy error: %v", err)
}
return nil
}
func (p *Proxy) SetKeepAlive(keepalive bool) {
p.keepAlive = keepalive
}
func (p *Proxy) SetKeepAliveIdle(d time.Duration) {
p.keepAliveIdle = d
}
func (p *Proxy) SetKeepAliveCount(n int) {
p.keepAliveCount = n
}
func (p *Proxy) SetKeepAliveInterval(d time.Duration) {
p.keepAliveInterval = d
}