-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
util.go
100 lines (93 loc) · 2.31 KB
/
util.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
// Copyright (c) 2016-present Cloud <[email protected]>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of version 3 of the GNU General Public
// License as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package brook
import (
"crypto/sha256"
"errors"
"hash"
"net"
"net/url"
"time"
"github.com/txthinking/socks5"
)
func ErrorReply(r *socks5.Request, c *net.TCPConn, e error) error {
var p *socks5.Reply
if r.Atyp == socks5.ATYPIPv4 || r.Atyp == socks5.ATYPDomain {
p = socks5.NewReply(socks5.RepConnectionRefused, socks5.ATYPIPv4, net.IPv4zero, []byte{0x00, 0x00})
} else {
p = socks5.NewReply(socks5.RepConnectionRefused, socks5.ATYPIPv6, net.IPv6zero, []byte{0x00, 0x00})
}
if _, err := p.WriteTo(c); err != nil {
return err
}
return e
}
func GetAddressFromURL(s string) (string, error) {
u, err := url.Parse(s)
if err != nil {
return "", err
}
if _, _, err := net.SplitHostPort(u.Host); err == nil {
return u.Host, nil
}
return net.JoinHostPort(u.Host, "80"), nil
}
func Conn2Conn(c, rc net.Conn, bufsize, timeout int) {
go func() {
bf := make([]byte, bufsize)
for {
if timeout != 0 {
if err := rc.SetDeadline(time.Now().Add(time.Duration(timeout) * time.Second)); err != nil {
return
}
}
i, err := rc.Read(bf)
if err != nil {
return
}
if _, err := c.Write(bf[0:i]); err != nil {
return
}
}
}()
bf := make([]byte, bufsize)
for {
if timeout != 0 {
if err := c.SetDeadline(time.Now().Add(time.Duration(timeout) * time.Second)); err != nil {
return
}
}
i, err := c.Read(bf)
if err != nil {
return
}
if _, err := rc.Write(bf[0:i]); err != nil {
return
}
}
return
}
func SHA256Bytes(s []byte) ([]byte, error) {
var h hash.Hash
h = sha256.New()
n, err := h.Write(s)
if err != nil {
return nil, err
}
if n != len(s) {
return nil, errors.New("Write length error")
}
r := h.Sum(nil)
return r, nil
}