-
Notifications
You must be signed in to change notification settings - Fork 200
/
packetgen.go
129 lines (102 loc) · 4.04 KB
/
packetgen.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
// MIT License
// Copyright (c) [2022] [Bohdan Ivashko (https://github.com/Arriven)]
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package job
import (
"context"
"fmt"
"time"
"github.com/google/uuid"
"go.uber.org/zap"
"github.com/Arriven/db1000n/src/core/packetgen"
"github.com/Arriven/db1000n/src/job/config"
"github.com/Arriven/db1000n/src/utils"
"github.com/Arriven/db1000n/src/utils/metrics"
"github.com/Arriven/db1000n/src/utils/templates"
)
type packetgenJobConfig struct {
BasicJobConfig
Packet *templates.MapStruct
Connection packetgen.ConnectionConfig
}
func packetgenJob(ctx context.Context, logger *zap.Logger, globalConfig *GlobalConfig, args config.Args) (data any, err error) {
ctx, cancel := context.WithCancel(ctx)
defer cancel()
jobConfig, err := parsePacketgenArgs(ctx, logger, globalConfig, args)
if err != nil {
return nil, fmt.Errorf("error parsing job config: %w", err)
}
backoffController := utils.BackoffController{BackoffConfig: utils.NonNilOrDefault(jobConfig.Backoff, globalConfig.Backoff)}
trafficMonitor := metrics.Default.NewWriter(metrics.Traffic, uuid.New().String())
go trafficMonitor.Update(ctx, time.Second)
for jobConfig.Next(ctx) {
err := sendPacket(ctx, logger, jobConfig, trafficMonitor)
if err != nil {
logger.Debug("error sending packet", zap.Error(err), zap.Any("args", args))
utils.Sleep(ctx, backoffController.Increment().GetTimeout())
} else {
backoffController.Reset()
}
}
return nil, nil
}
func sendPacket(ctx context.Context, logger *zap.Logger, jobConfig *packetgenJobConfig, trafficMonitor *metrics.Writer) error {
conn, err := packetgen.OpenConnection(jobConfig.Connection)
if err != nil {
return err
}
for jobConfig.Next(ctx) {
packetConfigRaw := jobConfig.Packet.Execute(logger, ctx)
logger.Debug("rendered packet config template", zap.Reflect("config", packetConfigRaw))
var packetConfig packetgen.PacketConfig
if err := utils.Decode(packetConfigRaw, &packetConfig); err != nil {
return err
}
packet, err := packetConfig.Build()
if err != nil {
return err
}
n, err := conn.Write(packet)
if err != nil {
return err
}
trafficMonitor.Add(uint64(n))
}
return nil
}
func parsePacketgenArgs(ctx context.Context, logger *zap.Logger, globalConfig *GlobalConfig, args config.Args) (tpl *packetgenJobConfig, err error) {
var jobConfig struct {
BasicJobConfig
Packet map[string]any
Connection packetgen.ConnectionConfig
}
if err = ParseConfig(&jobConfig, args, *globalConfig); err != nil {
return nil, fmt.Errorf("error parsing job config: %w", err)
}
packetTpl, err := templates.ParseMapStruct(jobConfig.Packet)
if err != nil {
return nil, fmt.Errorf("error parsing packet: %w", err)
}
if globalConfig.ProxyURLs != "" && jobConfig.Connection.Args["protocol"] == "tcp" {
jobConfig.Connection.Args["proxy_urls"] = templates.ParseAndExecute(logger, globalConfig.ProxyURLs, ctx)
}
return &packetgenJobConfig{
BasicJobConfig: jobConfig.BasicJobConfig,
Packet: packetTpl,
Connection: jobConfig.Connection,
}, nil
}