-
Notifications
You must be signed in to change notification settings - Fork 335
/
utils.go
235 lines (206 loc) · 5.79 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
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
// Copyright (C) 2020-2021, IrineSistiana
//
// This file is part of mosdns.
//
// mosdns is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// mosdns is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package utils
import (
"context"
"crypto/ecdsa"
"crypto/elliptic"
"crypto/rand"
"crypto/tls"
"crypto/x509"
"crypto/x509/pkix"
"encoding/binary"
"encoding/pem"
"fmt"
"github.com/IrineSistiana/mosdns/v3/dispatcher/handler"
"github.com/IrineSistiana/mosdns/v3/dispatcher/pkg/pool"
"github.com/miekg/dns"
"math/big"
"net"
"os"
"regexp"
"strings"
"time"
"unsafe"
)
// GetIPFromAddr returns net.IP from net.Addr.
// Will return nil if no ip address can be parsed.
func GetIPFromAddr(addr net.Addr) (ip net.IP) {
switch v := addr.(type) {
case *net.TCPAddr:
return v.IP
case *net.UDPAddr:
return v.IP
case *net.IPNet:
return v.IP
case *net.IPAddr:
return v.IP
default:
return parseIPFromAddr(addr.String())
}
}
// SplitSchemeAndHost splits addr to protocol and host.
func SplitSchemeAndHost(addr string) (protocol, host string) {
if protocol, host, ok := SplitString2(addr, "://"); ok {
return protocol, host
} else {
return "", addr
}
}
func parseIPFromAddr(s string) net.IP {
ipStr, _, err := net.SplitHostPort(s)
if err != nil {
return nil
}
return net.ParseIP(ipStr)
}
// GetMsgKey unpacks m and set its id to salt.
func GetMsgKey(m *dns.Msg, salt uint16) (string, error) {
wireMsg, err := m.Pack()
if err != nil {
return "", err
}
wireMsg[0] = byte(salt >> 8)
wireMsg[1] = byte(salt)
return BytesToStringUnsafe(wireMsg), nil
}
// GetMsgKeyWithBytesSalt unpacks m and appends salt to the string.
func GetMsgKeyWithBytesSalt(m *dns.Msg, salt []byte) (string, error) {
wireMsg, buf, err := pool.PackBuffer(m)
if err != nil {
return "", err
}
defer buf.Release()
wireMsg[0] = 0
wireMsg[1] = 0
sb := new(strings.Builder)
sb.Grow(len(wireMsg) + len(salt))
sb.Write(wireMsg)
sb.Write(salt)
return sb.String(), nil
}
// GetMsgKeyWithInt64Salt unpacks m and appends salt to the string.
func GetMsgKeyWithInt64Salt(m *dns.Msg, salt int64) (string, error) {
b := make([]byte, 8)
binary.BigEndian.PutUint64(b, uint64(salt))
return GetMsgKeyWithBytesSalt(m, b)
}
// BytesToStringUnsafe converts bytes to string.
func BytesToStringUnsafe(b []byte) string {
return *(*string)(unsafe.Pointer(&b))
}
// LoadCertPool reads and loads certificates in certs.
func LoadCertPool(certs []string) (*x509.CertPool, error) {
rootCAs := x509.NewCertPool()
for _, cert := range certs {
b, err := os.ReadFile(cert)
if err != nil {
return nil, err
}
if ok := rootCAs.AppendCertsFromPEM(b); !ok {
return nil, fmt.Errorf("no certificate was successfully parsed in %s", cert)
}
}
return rootCAs, nil
}
// GenerateCertificate generates an ecdsa certificate with given dnsName.
// This should only use in test.
func GenerateCertificate(dnsName string) (cert tls.Certificate, err error) {
key, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
if err != nil {
return
}
//serial number
serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 128)
serialNumber, err := rand.Int(rand.Reader, serialNumberLimit)
if err != nil {
err = fmt.Errorf("generate serial number: %w", err)
return
}
template := x509.Certificate{
SerialNumber: serialNumber,
Subject: pkix.Name{CommonName: dnsName},
DNSNames: []string{dnsName},
NotBefore: time.Now(),
NotAfter: time.Now().AddDate(10, 0, 0),
KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
BasicConstraintsValid: true,
}
certDER, err := x509.CreateCertificate(rand.Reader, &template, &template, &key.PublicKey, key)
if err != nil {
return
}
b, err := x509.MarshalPKCS8PrivateKey(key)
if err != nil {
return
}
keyPEM := pem.EncodeToMemory(&pem.Block{Type: "EC PRIVATE KEY", Bytes: b})
certPEM := pem.EncodeToMemory(&pem.Block{Type: "CERTIFICATE", Bytes: certDER})
return tls.X509KeyPair(certPEM, keyPEM)
}
var charBlockExpr = regexp.MustCompile("\\S+")
// SplitLineReg extracts words from s by using regexp "\S+".
func SplitLineReg(s string) []string {
return charBlockExpr.FindAllString(s, -1)
}
// SplitLine removes all spaces " " and extracts words from s.
func SplitLine(s string) []string {
t := strings.Split(s, " ")
t2 := t[:0]
for _, sub := range t {
if sub != "" {
t2 = append(t2, sub)
}
}
return t2
}
// RemoveComment removes comment after "symbol".
func RemoveComment(s, symbol string) string {
if i := strings.Index(s, symbol); i >= 0 {
return s[:i]
}
return s
}
//SplitString2 split s to two parts by given symbol
func SplitString2(s, symbol string) (s1 string, s2 string, ok bool) {
if len(symbol) == 0 {
return "", s, true
}
if i := strings.Index(s, symbol); i >= 0 {
return s[:i], s[i+len(symbol):], true
}
return "", "", false
}
func BoolLogic(ctx context.Context, qCtx *handler.Context, fs []handler.Matcher, logicalAND bool) (matched bool, err error) {
if len(fs) == 0 {
return false, nil
}
for _, m := range fs {
matched, err = m.Match(ctx, qCtx)
if err != nil {
return false, err
}
if matched && !logicalAND {
return true, nil
}
if !matched && logicalAND {
return false, nil
}
}
return matched, nil
}