-
Notifications
You must be signed in to change notification settings - Fork 159
/
ntp.go
118 lines (104 loc) · 2.96 KB
/
ntp.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
/*
* NETCAP - Traffic Analysis Framework
* Copyright (c) 2017 Philipp Mieden <dreadl0ck [at] protonmail [dot] ch>
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
package types
import (
"encoding/hex"
"strconv"
"strings"
"github.com/prometheus/client_golang/prometheus"
)
var fieldsNTP = []string{
"Timestamp",
"LeapIndicator",
"Version",
"Mode",
"Stratum",
"Poll",
"Precision",
"RootDelay",
"RootDispersion",
"ReferenceID",
"ReferenceTimestamp",
"OriginTimestamp",
"ReceiveTimestamp",
"TransmitTimestamp",
"ExtensionBytes",
"SrcIP",
"DstIP",
"SrcPort",
"DstPort",
}
func (n NTP) CSVHeader() []string {
return filter(fieldsNTP)
}
func (n NTP) CSVRecord() []string {
// prevent accessing nil pointer
if n.Context == nil {
n.Context = &PacketContext{}
}
return filter([]string{
formatTimestamp(n.Timestamp),
formatInt32(n.LeapIndicator), // int32
formatInt32(n.Version), // int32
formatInt32(n.Mode), // int32
formatInt32(n.Stratum), // int32
formatInt32(n.Poll), // int32
formatInt32(n.Precision), // int32
strconv.FormatUint(uint64(n.RootDelay), 10), // uint32
strconv.FormatUint(uint64(n.RootDispersion), 10), // uint32
strconv.FormatUint(uint64(n.ReferenceID), 10), // uint32
strconv.FormatUint(uint64(n.ReferenceTimestamp), 10), // uint64
strconv.FormatUint(uint64(n.OriginTimestamp), 10), // uint64
strconv.FormatUint(uint64(n.ReceiveTimestamp), 10), // uint64
strconv.FormatUint(uint64(n.TransmitTimestamp), 10), // uint64
hex.EncodeToString(n.ExtensionBytes), // []byte
n.Context.SrcIP,
n.Context.DstIP,
n.Context.SrcPort,
n.Context.DstPort,
})
}
func (n NTP) Time() string {
return n.Timestamp
}
func (u NTP) JSON() (string, error) {
return jsonMarshaler.MarshalToString(&u)
}
var ntpMetric = prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: strings.ToLower(Type_NC_NTP.String()),
Help: Type_NC_NTP.String() + " audit records",
},
fieldsNTP[1:],
)
func init() {
prometheus.MustRegister(ntpMetric)
}
func (a NTP) Inc() {
ntpMetric.WithLabelValues(a.CSVRecord()[1:]...).Inc()
}
func (a *NTP) SetPacketContext(ctx *PacketContext) {
a.Context = ctx
}
func (a NTP) Src() string {
if a.Context != nil {
return a.Context.SrcIP
}
return ""
}
func (a NTP) Dst() string {
if a.Context != nil {
return a.Context.DstIP
}
return ""
}