-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtypes.go
216 lines (190 loc) · 4.33 KB
/
types.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
package main
import (
_ "bytes"
_ "code.google.com/p/go-bit/bit"
"code.google.com/p/gopacket"
"code.google.com/p/gopacket/layers"
_ "encoding/gob"
_ "github.com/BurntSushi/toml"
"github.com/jphackworth/kestrel/tun"
"net"
"sync"
"time"
)
const (
CryptoAuth_addUser_INVALID_AUTHTYPE = -1
CryptoAuth_addUser_OUT_OF_SPACE = -2
CryptoAuth_addUser_DUPLICATE = -3
CryptoAuth_addUser_INVALID_IP = -4
CryptoAuth_NEW = 0
CryptoAuth_HANDSHAKE1 = 1
CryptoAuth_ConnectToMePacket = 1
CryptoAuth_HANDSHAKE2 = 2
CryptoAuth_HelloPacket = 2
CryptoAuth_HANDSHAKE3 = 3
CryptoAuth_KeyPacket = 3
CryptoAuth_ESTABLISHED = 4
CryptoAuth_AuthenticatedPacket = 4
CryptoAuth_STATE_COUNT = 5
)
type ServerInfo struct {
//Conn *net.UDPConn
Server *UDPServer
TunDevice *tun.Tun
Peers []PeerInfo
}
type PeerInfo struct {
PublicAddress *net.IPAddr
CjdnsAddress *net.IPAddr
Conn *net.UDPConn
Password []byte
PublicKey []byte
SharedKey []byte
}
// type CryptoAuth struct {
// }
// type TCPHeader struct {
// Source uint16
// Destination uint16
// SeqNum uint32
// AckNum uint32
// DataOffset uint8 // 4 bits
// Reserved uint8 // 3 bits
// ECN uint8 // 3 bits
// Ctrl uint8 // 6 bits
// Window uint16
// Checksum uint16 // Kernel will set this if it's 0
// Urgent uint16
// Options []TCPOption
// }
// type CryptoAuthHeader struct {
// State uint8
// Challenge [3]byte
// Nonce [6]byte
// PermPublicKey [8]byte
// Authenticator [4]byte
// TempPublicKey [8]byte
// Content []byte
// }
// type CryptoAuthHeader struct {
// State uint8
// Challenge [3]uint8
// Nonce [6]uint8
// PermPublicKey [8]uint8
// Authenticator [4]uint8 // shared secret?
// TempPublicKey [8]uint8
// }
// type CryptoAuthPacket struct {
// Header CryptoAuthHeader
// }
// type CryptoAuthChallengeHeader struct {
// Type uint8
// Lookup [7]uint8
// }
// type CryptoAuthType struct {
// }
// type CryptoAuthHeader1 struct {
// State uint32
// Challenge uint64
// Nonce [24]uint8
// PermPublicKey [32]uint8
// Authenticator [16]uint8
// TempPublicKey [32]uint8
// Content []byte
// }
type TomlConfig struct {
Server ServerConfig
}
type ServerConfig struct {
Listen string `toml:"listen"`
Device string `toml:"device"`
PublicKey string `toml:"public_key"`
PrivateKey string `toml:"private_key"`
IPv6 string `toml:"ipv6"`
}
type UDPServer struct {
Conn *net.UDPConn
}
type Router struct {
Iface *tun.Tun
UDPListener *net.UDPConn
Config *ServerConfig
BufSz int
}
type PeerName string
type UDPPacket struct {
Name PeerName
Packet []byte
Sender *net.UDPAddr
}
type UDPSender interface {
Send([]byte) error
Shutdown() error
}
type Connection interface {
Local() *Peer
Remote() *Peer
RemoteTCPAddr() string
Established() bool
Shutdown()
}
type ForwardedFrame struct {
srcPeer *Peer
dstPeer *Peer
frame []byte
}
type Peer struct {
sync.RWMutex
Name PeerName
NameByte []byte
UID uint64
version uint64
localRefCount uint64
connections map[PeerName]Connection
}
type RemoteConnection struct {
local *Peer
remote *Peer
remoteTCPAddr string
}
type LocalConnection struct {
remoteUDPAddr *net.UDPAddr
established bool
stackFrag bool
effectivePMTU int
SessionKey *[32]byte
heartbeat *time.Ticker
fetchAll *time.Ticker
fragTest *time.Ticker
forwardChan chan<- *ForwardedFrame
forwardChanDF chan<- *ForwardedFrame
stopForward chan<- interface{}
stopForwardDF chan<- interface{}
verifyPMTU chan<- int
//Decryptor Decryptor
Router *Router
UID uint64
shutdown bool
//queryChan chan<- *ConnectionInteraction
}
type SimpleUDPSender struct {
conn *LocalConnection
udpConn *net.UDPConn
}
type RawUDPSender struct {
ipBuf gopacket.SerializeBuffer
opts gopacket.SerializeOptions
udpHeader *layers.UDP
socket *net.IPConn
conn *LocalConnection
}
type PacketSource interface {
ReadPacket() ([]byte, error)
}
type PacketSink interface {
WritePacket([]byte) error
}
type PacketSourceSink interface {
PacketSource
PacketSink
}