forked from firefart/gosocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
connection.go
85 lines (75 loc) · 1.65 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
package socks
import (
"context"
"fmt"
"io"
"time"
)
// connectionRead reads all data from a connection
func connectionRead(ctx context.Context, conn io.ReadCloser, timeout time.Duration) ([]byte, error) {
var ret []byte
ctxTimeout, cancel := context.WithTimeout(ctx, timeout)
defer cancel()
readDone := make(chan bool, 1)
errChannel := make(chan error, 1)
defer close(readDone)
defer close(errChannel)
go func() {
bufLen := 1024
for {
buf := make([]byte, bufLen)
i, err := conn.Read(buf)
if err != nil {
errChannel <- err
return
}
ret = append(ret, buf[:i]...)
if i < bufLen {
readDone <- true
return
}
}
}()
select {
case <-ctxTimeout.Done():
return nil, fmt.Errorf("timeout when reading on connection")
case err := <-errChannel:
return nil, err
case <-readDone:
return ret, nil
}
}
// connectionWrite makes sure to write all data to a connection
func connectionWrite(ctx context.Context, conn io.WriteCloser, data []byte, timeout time.Duration) error {
ctxTimeout, cancel := context.WithTimeout(ctx, timeout)
defer cancel()
writeDone := make(chan bool, 1)
errChannel := make(chan error, 1)
defer close(writeDone)
defer close(errChannel)
go func() {
toWriteLeft := len(data)
written := 0
var err error
for {
written, err = conn.Write(data[written:toWriteLeft])
if err != nil {
errChannel <- err
return
}
if written == toWriteLeft {
writeDone <- true
return
}
toWriteLeft -= written
}
}()
select {
case <-ctxTimeout.Done():
return fmt.Errorf("timeout when writing to connection")
case err := <-errChannel:
return err
case <-writeDone:
return nil
}
}