-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathclient.go
253 lines (231 loc) · 6.76 KB
/
client.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
/*
Copyright 2019 NetFoundry Inc.
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
https://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 main
import (
"fmt"
"html"
"math"
"math/rand"
"os"
"os/signal"
"strconv"
"strings"
"syscall"
"time"
"github.com/openziti/sdk-golang/ziti"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
func RandomPingData(n int) string {
var set = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
slice := make([]rune, n)
for i := range slice {
slice[i] = set[rand.Intn(len(set))]
}
return string(slice)
}
func (psession *ping_session) getStddev() {
var sum float64
var sqavg float64
for index, elem := range psession.roundtrip {
sum += math.Pow(elem-psession.avgrt, 2)
if index == len(psession.roundtrip)-1 {
sqavg = sum / float64(len(psession.roundtrip))
}
}
psession.stddv = math.Sqrt(sqavg)
}
func (psession *ping_session) getMinMaxAvg() {
var sum float64
var avg float64
var max float64
var min float64
for index, elem := range psession.roundtrip {
sum += elem
if index == 0 {
min = elem
max = elem
}
if elem < min {
min = elem
}
if elem > max {
max = elem
}
if index == len(psession.roundtrip)-1 {
avg = sum / float64(len(psession.roundtrip))
}
}
psession.avgrt = avg
psession.maxrt = max
psession.minrt = min
}
func (psession *ping_session) finish() {
fmt.Printf("\n--- %+v ping statistics ---", psession.identity)
fmt.Printf("\n%+v packets transmitted and %+v packets received, %.2f%+v packet loss\n", psession.psent, psession.prec, (1.0-(float32(psession.prec)/float32(psession.psent)))*100.00, html.EscapeString("%"))
psession.getMinMaxAvg()
psession.getStddev()
fmt.Printf("round-trip min/max/avg/stddev %.3f/%.3f/%.3f/%.3f ms\n", psession.minrt, psession.maxrt, psession.avgrt, psession.stddv)
}
type ping_session struct {
roundtrip []float64
psent int
prec int
identity string
avgrt float64
maxrt float64
minrt float64
stddv float64
}
// clientCmd represents the client command
var clientCmd = &cobra.Command{
Use: "client",
Short: "zping client command",
Long: `This command runs zping in client mode which generates ziti probe
messages which are sent to a specified ziti endpoint running zping
in server mode`,
Run: func(cmd *cobra.Command, args []string) {
sflag, _ := cmd.Flags().GetString("service")
cflag, _ := cmd.Flags().GetString("config")
iflag, _ := cmd.Flags().GetString("identity")
lflag, err := cmd.Flags().GetInt("length")
if (err != nil) || (lflag <= 0) || (lflag > 1500) {
fmt.Fprintf(os.Stderr, "-l,--length needs to be an integer in range 1-1500\n")
os.Exit(2)
}
tflag, err := cmd.Flags().GetInt("time-out")
if (err != nil) || (tflag < 0) || (tflag > 65535) {
fmt.Fprintf(os.Stderr, "-t, --time-out needs to be an integer in range 0-65535\n")
os.Exit(2)
}
nflag, err := cmd.Flags().GetInt("number")
if (err != nil) || (nflag < 0) || (nflag > 65535) {
fmt.Fprintf(os.Stderr, "-n, --number needs to be an integer in range 0-65535\n")
os.Exit(2)
}
var context ziti.Context
var service string
var identity string
var seq string
var finite bool
if nflag > 0 {
finite = true
} else {
finite = false
}
if len(sflag) > 0 {
service = sflag
} else {
service = "ziti-ping"
}
if len(iflag) == 0 {
fmt.Fprintf(os.Stderr, "missing required argument/flag -i\n")
os.Exit(2)
} else {
identity = iflag
}
psession := &ping_session{
roundtrip: []float64{},
psent: 1,
prec: 0,
identity: identity,
avgrt: 0.0,
maxrt: 0.0,
minrt: 0.0,
stddv: 0.0,
}
if len(cflag) > 0 {
file := cflag
configFile, err := ziti.NewConfigFromFile(file)
if err != nil {
logrus.WithError(err).Error("Error loading config file")
os.Exit(1)
}
context, err = ziti.NewContext(configFile)
if err != nil {
panic(err)
}
} else {
panic("a config file is required")
}
c := make(chan os.Signal)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
go func() {
<-c
psession.finish()
os.Exit(1)
}()
dialOptions := &ziti.DialOptions{
Identity: identity,
ConnectTimeout: 1 * time.Minute,
//AppData: []byte("hi there"),
}
//dial ziti service with options specified in dialOptions
conn, err := context.DialWithOptions(service, dialOptions)
if err != nil {
logrus.WithError(err).Error("Error dialing service")
os.Exit(1)
}
fmt.Printf("\nSending %+v byte pings to %+v:\n\n", lflag, identity)
for {
//Generate a random payload of length -l
stringData := RandomPingData(lflag - (len(strconv.Itoa(psession.psent)) + 1))
pingData := strconv.Itoa(psession.psent) + ":" + stringData
//Get timestamp at ping send
start := time.Now()
//send ping message into ziti connection
input := []byte(pingData)
if _, err := conn.Write(input); err != nil {
logrus.WithError(err).Error("Error Writing to Server")
_ = conn.Close()
psession.finish()
os.Exit(1)
}
buf := make([]byte, 1500)
//read ping response from ziti connection
n, err := conn.Read(buf)
if err != nil {
logrus.WithError(err).Error("Error Reading from Server")
_ = conn.Close()
psession.finish()
os.Exit(1)
}
recData := string(buf[:n])
recBytes := len(buf[:n])
//get timestamp at receipt of response from hosting identity
ms := time.Since(start).Seconds() * 1000
psession.roundtrip = append(psession.roundtrip, ms)
seq = strings.Split(recData, ":")[0]
if recData == pingData {
//increments valid responses received
fmt.Printf("%+v bytes from %+v: ziti_seq=%+v time=%.3fms\n", recBytes, psession.identity, seq, ms)
psession.prec, _ = strconv.Atoi(seq)
}
time.Sleep(time.Duration(tflag) * time.Second)
if finite && (psession.psent == nflag) {
psession.finish()
break
}
psession.psent++
}
},
}
func init() {
rootCmd.AddCommand(clientCmd)
clientCmd.Flags().StringP("service", "s", "ziti-ping", "Name of Service")
clientCmd.Flags().StringP("config", "c", "", "Name of config file")
clientCmd.Flags().StringP("identity", "i", "", "Name of remote identity")
clientCmd.Flags().IntP("length", "l", 100, "Length of data to send")
clientCmd.Flags().IntP("time-out", "t", 2, "delay in seconds between ping attempts")
clientCmd.Flags().IntP("number", "n", 0, "number of pings to send, default is 0 for continuous")
}