-
Notifications
You must be signed in to change notification settings - Fork 5
/
utils.go
182 lines (152 loc) · 3.54 KB
/
utils.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
package tcpip
import (
"bytes"
"crypto/sha256"
"crypto/tls"
"encoding/binary"
"encoding/hex"
"io"
"log"
"math/rand"
"net"
)
type LocalIpMacAddr struct {
LocalMacAddr []byte
LocalIpAddr []byte
Index int
}
func GetLocalIpAddr(ifname string) [4]byte {
localif, err := getLocalIpAddr(ifname)
if err != nil {
log.Fatalf("Get local interface info is err : %v", err)
}
ipaddr := [4]byte{
localif.LocalIpAddr[0],
localif.LocalIpAddr[1],
localif.LocalIpAddr[2],
localif.LocalIpAddr[3],
}
return ipaddr
}
// ローカルのmacアドレスとIPを返す
func getLocalIpAddr(ifname string) (localif LocalIpMacAddr, err error) {
nif, err := net.InterfaceByName(ifname)
if err != nil {
return localif, err
}
localif.LocalMacAddr = nif.HardwareAddr
localif.Index = nif.Index
addrs, err := nif.Addrs()
if err != nil {
return localif, err
}
for _, addr := range addrs {
//if ipnet, ok := addr.(*net.IPNet); ok && !ipnet.IP.IsLoopback() {
if ipnet, ok := addr.(*net.IPNet); ok {
if ipnet.IP.To4() != nil {
localif.LocalIpAddr = ipnet.IP.To4()
}
}
}
return localif, nil
}
func GetLocalInterface(ifname string) (localif LocalIpMacAddr, err error) {
return getLocalIpAddr(ifname)
}
// https://www.ipa.go.jp/security/rfc/RFC5246-08JA.html
func randomByte(num int) []byte {
b := make([]byte, num)
rand.Read(b)
return b
}
func RandomByte(num int) []byte {
return randomByte(num)
}
// クライアント側で利用可能な暗号スイートのリストを返す
func getChipersList() []byte {
var b []byte
// https://pkg.go.dev/crypto/tls#CipherSuites
cipher := tls.CipherSuites()
for _, v := range cipher {
b = append(b, UintTo2byte(v.ID)...)
}
return b
}
func readByteNum(packet []byte, offset, n int64) []byte {
r := bytes.NewReader(packet)
sr := io.NewSectionReader(r, offset, n)
buf := make([]byte, n)
_, err := sr.Read(buf)
if err != nil {
log.Fatalf("read byte err : %v\n", err)
}
return buf
}
func noRandomByte(length int) []byte {
b := make([]byte, length)
for i := 0; i < length; i++ {
b[i] = 0x00
}
return b
}
func getNonce(i, length int) []byte {
b := make([]byte, length)
binary.BigEndian.PutUint64(b, uint64(i))
return b
}
// TLS1.3用
// https://tex2e.github.io/rfc-translater/html/rfc8446.html
// シーケンス番号とwrite_ivをxorした値がnonceになる
func getXORNonce(seqnum, writeiv []byte) []byte {
nonce := make([]byte, len(writeiv))
copy(nonce, writeiv)
for i, b := range seqnum {
nonce[4+i] ^= b
}
return nonce
}
func strtoByte(str string) []byte {
b, _ := hex.DecodeString(str)
return b
}
func StrtoByte(str string) []byte {
b, _ := hex.DecodeString(str)
return b
}
func ReadClientCertificate() tls.Certificate {
cert, err := tls.LoadX509KeyPair("debug/client.pem", "debug/client-key.pem")
if err != nil {
log.Fatal(err)
}
return cert
}
func WriteHash(message []byte) []byte {
hasher := sha256.New()
hasher.Write(message)
return hasher.Sum(nil)
}
// zeroSource is an io.Reader that returns an unlimited number of zero bytes.
type zeroSource struct{}
func (zeroSource) Read(b []byte) (n int, err error) {
for i := range b {
b[i] = 0
}
return len(b), nil
}
func extendArrByZero(data []byte, to int) []byte {
var extend []byte
for i := 0; i < to-len(data); i++ {
extend = append(extend, 0x00)
}
extend = append(extend, data...)
return extend
}
func AddPaddingFrame(data []byte, to int) []byte {
var extend []byte
for i := 0; i <= to; i++ {
extend = append(extend, 0x00)
}
data = append(data, extend...)
//extend = append(extend, data...)
return extend
}