-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpingser.go
278 lines (242 loc) · 4.5 KB
/
pingser.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
package pingser
import (
"errors"
"fmt"
"net"
"os"
"syscall"
"time"
"golang.org/x/net/icmp"
"golang.org/x/net/ipv4"
)
var (
ipv4Proto string = "ip4:icmp"
defaultDelay time.Duration = time.Millisecond * 100
)
var (
ErrNoConnection = errors.New("icmp no connection")
)
type Packet struct {
ID int
Seq int
Data []byte
Src net.Addr
}
type Pingser struct {
done chan struct{}
conn *icmp.PacketConn
id int
isServerMod bool
// client mode uses these
sequence int
addr string
ipaddr net.Addr
// OnRecv is called when Pingser receives and processes a packet
OnRecv func(*Packet)
}
func NewClient(addr string) (*Pingser, error) {
client := &Pingser{
id: getid(),
done: make(chan struct{}),
addr: addr,
}
return client, client.resolve()
}
func NewServer() *Pingser {
return &Pingser{
id: getid(),
done: make(chan struct{}),
isServerMod: true,
}
}
func (p *Pingser) Listen() error {
conn, err := icmp.ListenPacket(ipv4Proto, "")
if err != nil {
return err
}
p.conn = conn
return nil
}
func (p *Pingser) Run() error {
if p.conn == nil {
return ErrNoConnection
}
recvCh := make(chan *Packet, 5)
defer close(recvCh)
go func() {
defer p.Close()
if err := p.recvICMP(recvCh); err != nil {
return
}
}()
for {
select {
case <-p.done:
return nil
case pkt := <-recvCh:
if p.OnRecv != nil {
p.OnRecv(pkt)
}
}
}
}
func (p *Pingser) Send(data []byte, replyPkt ...*Packet) error {
if p.conn == nil {
return ErrNoConnection
}
var (
body *icmp.Echo
ipaddr net.Addr
)
if !p.isServerMod {
body = &icmp.Echo{
ID: p.id,
Seq: p.sequence,
Data: data,
}
ipaddr = p.ipaddr
} else {
if len(replyPkt) <= 0 {
return errors.New("the 'pkt' parameter is missing from server mode")
}
body = &icmp.Echo{
ID: replyPkt[0].ID,
Seq: replyPkt[0].Seq,
Data: data,
}
ipaddr = replyPkt[0].Src
}
return p.sendICMP(body, ipaddr)
}
func (p *Pingser) Close() {
open := true
select {
case _, open = <-p.done:
default:
}
if open {
close(p.done)
}
if p.conn != nil {
p.conn.Close()
}
}
func (p *Pingser) sendICMP(body icmp.MessageBody, toaddr net.Addr) error {
msg := &icmp.Message{
Type: ipv4.ICMPTypeEcho,
Code: 0,
Body: body,
}
if p.isServerMod {
msg.Type = ipv4.ICMPTypeEchoReply
}
msgData, err := msg.Marshal(nil)
if err != nil {
return err
}
if _, err := p.conn.WriteTo(msgData, toaddr); err != nil {
if neterr, ok := err.(*net.OpError); ok {
if neterr.Err == syscall.ENOBUFS {
return nil
}
}
return err
}
if !p.isServerMod {
p.sequence++
if p.sequence > 65535 {
p.sequence = 0
}
}
return nil
}
func (p *Pingser) recvICMP(recv chan<- *Packet) error {
delay := defaultDelay
for {
select {
case <-p.done:
return nil
default:
if err := p.conn.SetReadDeadline(time.Now().Add(delay)); err != nil {
return err
}
// TODO data size
data := make([]byte, 1024)
n, srcaddr, err := p.conn.ReadFrom(data)
if err != nil {
if neterr, ok := err.(*net.OpError); ok {
if neterr.Timeout() {
// Read timeout
delay = time.Second
continue
}
}
return err
} else {
delay = defaultDelay
}
if n <= 0 {
continue
}
pkt, err := p.processPacket(data[:])
if err != nil || pkt == nil {
fmt.Printf("recvIcmp - processPacket error:%s\n", err)
continue
}
pkt.Src = srcaddr
select {
case <-p.done:
return nil
case recv <- pkt:
}
}
}
}
func (p *Pingser) processPacket(bytes []byte) (*Packet, error) {
var (
m *icmp.Message
err error
)
if m, err = icmp.ParseMessage(ipv4.ICMPTypeEcho.Protocol(), bytes); err != nil {
return nil, fmt.Errorf("error parsing icmp message: %w", err)
}
if p.isServerMod {
if m.Type != ipv4.ICMPTypeEcho {
return nil, nil
}
} else {
if m.Type != ipv4.ICMPTypeEchoReply {
return nil, nil
}
}
switch pkt := m.Body.(type) {
case *icmp.Echo:
if !p.isServerMod && !p.matchID(pkt.ID) {
return nil, nil
}
return &Packet{
ID: pkt.ID,
Seq: pkt.Seq,
Data: pkt.Data,
}, nil
default:
return nil, fmt.Errorf("invalid ICMP echo reply; type: '%T', '%v'", pkt, pkt)
}
}
func (p *Pingser) resolve() error {
if len(p.addr) == 0 {
return errors.New("addr cannot be empty")
}
ipaddr, err := net.ResolveIPAddr("ip", p.addr)
if err != nil {
return err
}
p.ipaddr = ipaddr
return nil
}
func (p *Pingser) matchID(ID int) bool {
return ID == p.id
}
func getid() int {
return os.Getpid() & 0xffff
}