-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsend.go
255 lines (232 loc) · 5.61 KB
/
send.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
package goperf
import (
"crypto/rand"
"encoding/binary"
"flag"
"fmt"
"math"
"math/big"
"net"
"strconv"
"strings"
"sync"
"time"
"golang.org/x/net/proxy"
)
var (
fProxyPorts = flag.String("proxyports", "10000", "Proxy ports array for sending traffic to(10000,10001,10002).")
fDestPort = flag.Int("destport", 10001, "Dest port.")
socks = flag.Bool("socks", false, "Proxy type of the target, either 'direct' or 'socks'.")
fAmount = flag.Int("amount", 1, "Amount of traffic to send, in GB.")
fConcurrency = flag.Int("concurrency", 1, "Number of concurrect connections for benchmark.")
fProxyIp = flag.String("proxyip", "10.2.155.242", "Proxy IP to listen on.")
fDestIps = flag.String("destips", "127.0.0.1", "Dest IPs to Access.")
proxyPortType = flag.Bool("multiport", false, "test type,default is single proxy port,true multi proxy port.")
user = flag.String("user", "admin", "socks5 proxy user.")
pwd = flag.String("pwd", "123456", "socks5 proxy pwd.")
)
func makeConnection() ([]net.Conn, error) {
destIps := strings.Split(*fDestIps, ",")
conns := make([]net.Conn, 0, 3)
if *socks {
var err error
proxyPort := 10000
proxyPorts := strings.Split(*fProxyPorts, ",")
if *proxyPortType {
proxyPort, err = strconv.Atoi(proxyPorts[0])
if err != nil {
panic(err)
}
} else {
min, err := strconv.Atoi(proxyPorts[0])
if err != nil {
panic(err)
}
max, err := strconv.Atoi(proxyPorts[len(proxyPorts)-1])
if err != nil {
panic(err)
}
proxyPort = int(RangeRand(int64(min), int64(max)))
}
dialer, err := proxy.SOCKS5("tcp4", fmt.Sprintf("%s:%d", *fProxyIp, proxyPort), &proxy.Auth{User: *user, Password: *pwd}, proxy.Direct)
if err != nil {
return nil, err
}
for _, item := range destIps {
destIp := item
conn, err := dialer.Dial("tcp4", fmt.Sprintf("%s:%d", destIp, *fDestPort))
if err != nil {
panic(err)
}
conns = append(conns, conn)
}
return conns, nil
} else {
lAddr := &net.TCPAddr{}
var err error
//本地地址 ipaddr是本地外网IP
if !*testType {
lAddr = nil
} else {
lAddr, err = net.ResolveTCPAddr("tcp4", *flocalIp+":"+strconv.Itoa(*flocalPort))
if err != nil {
panic(err)
}
}
//destIp:="127.0.0.1"
for _, item := range destIps {
destIp := item
conn, err := net.DialTCP("tcp4", lAddr, &net.TCPAddr{
IP: net.ParseIP(destIp),
Port: *fDestPort,
})
if err != nil {
panic(err)
}
conns = append(conns, conn)
}
return conns, nil
}
}
// 生成区间[-m, n]的安全随机数
func RangeRand(min, max int64) int64 {
if min > max {
panic("the min is greater than max!")
}
if min < 0 {
f64Min := math.Abs(float64(min))
i64Min := int64(f64Min)
result, _ := rand.Int(rand.Reader, big.NewInt(max+1+i64Min))
return result.Int64() - i64Min
} else {
result, _ := rand.Int(rand.Reader, big.NewInt(max-min+1))
return min + result.Int64()
}
}
func Client() {
if !*testType {
Concurrency()
}
if *testType {
IOPS()
}
}
//并发
func Concurrency() {
var wg sync.WaitGroup
var threeWg sync.WaitGroup
startTime := time.Now().Unix()
for i := 0; i < *fConcurrency; i++ {
wg.Add(1)
go func() {
buf := make([]byte, *buffer)
rand.Read(buf)
conns, err := makeConnection()
if err != nil {
panic(err)
}
for _, item := range conns {
conn := item
threeWg.Add(1)
go func() {
var connWg sync.WaitGroup
connWg.Add(2)
go func() {
_, err := conn.Write(buf)
if err != nil {
panic(err)
}
connWg.Done()
}()
go func() {
totalBytes := *buffer
for {
var count uint64
if err := binary.Read(conn, binary.BigEndian, &count); err != nil {
panic(err)
}
if count >= uint64(totalBytes) {
break
}
}
connWg.Done()
}()
connWg.Wait()
if !*keepAlive {
conn.Close()
}
threeWg.Done()
}()
}
threeWg.Wait()
wg.Done()
}()
}
wg.Wait()
endTime := time.Now().Unix()
elapsed := endTime - startTime
if elapsed == 0 {
fmt.Println("Finished in 0 second. Too fast for benchmark.")
return
}
speed := int64(*fConcurrency) / elapsed
fmt.Println("send:", *buffer, "B of data sent through", *fConcurrency, "connections in", elapsed, "seconds, with speed", speed, "op/s.")
}
//吞吐量
func IOPS() {
const BufSize = 128 * 1024
var wg sync.WaitGroup
startTime := time.Now().Unix()
for i := 0; i < *fConcurrency; i++ {
wg.Add(1)
go func() {
buf := make([]byte, BufSize)
rand.Read(buf)
conns, err := makeConnection()
if err != nil {
panic(err)
}
var connWg sync.WaitGroup
connWg.Add(2)
go func() {
totalBytes := int64(*fAmount) * 1024 * 1024 * 1024
for totalBytes > 0 {
_, err := conns[0].Write(buf)
if err != nil {
panic(err)
}
totalBytes -= BufSize
}
connWg.Done()
}()
go func() {
totalBytes := int64(*fAmount) * 1024 * 1024 * 1024
for {
var count uint64
if err := binary.Read(conns[0], binary.BigEndian, &count); err != nil {
panic(err)
}
if count >= uint64(totalBytes) {
break
}
}
connWg.Done()
}()
connWg.Wait()
if !*keepAlive {
conns[0].Close()
}
wg.Done()
}()
}
wg.Wait()
endTime := time.Now().Unix()
elapsed := endTime - startTime
if elapsed == 0 {
fmt.Println("Finished in 0 second. Too fast for benchmark.")
return
}
dataAmount := uint64(*fConcurrency) * uint64(*fAmount)
speed := dataAmount * 1024 / uint64(elapsed)
fmt.Println("send:", dataAmount, "GB of data sent through", *fConcurrency, "connections in", elapsed, "seconds, with speed", speed, "MB/s.")
}