-
Notifications
You must be signed in to change notification settings - Fork 410
/
peer.go
509 lines (462 loc) · 14.9 KB
/
peer.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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
// Copyright 2015-2019 HenryLee. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package erpc
import (
"crypto/tls"
"fmt"
"net"
"sync"
"time"
"github.com/andeya/erpc/v7/codec"
"github.com/andeya/erpc/v7/kcp"
"github.com/andeya/erpc/v7/quic"
"github.com/andeya/goutil"
"github.com/andeya/goutil/coarsetime"
"github.com/andeya/goutil/errors"
)
type (
// BasePeer peer with the common method set
BasePeer interface {
// Close closes peer.
Close() (err error)
// CountSession returns the number of sessions.
CountSession() int
// GetSession gets the session by id.
GetSession(sessionID string) (Session, bool)
// RangeSession ranges all sessions. If fn returns false, stop traversing.
RangeSession(fn func(sess Session) bool)
// SetTLSConfig sets the TLS config.
SetTLSConfig(tlsConfig *tls.Config)
// SetTLSConfigFromFile sets the TLS config from file.
SetTLSConfigFromFile(tlsCertFile, tlsKeyFile string, insecureSkipVerifyForClient ...bool) error
// TLSConfig returns the TLS config.
TLSConfig() *tls.Config
// PluginContainer returns the global plugin container.
PluginContainer() *PluginContainer
}
// EarlyPeer the communication peer that has just been created
EarlyPeer interface {
BasePeer
// Router returns the root router of call or push handlers.
Router() *Router
// SubRoute adds handler group.
SubRoute(pathPrefix string, plugin ...Plugin) *SubRouter
// RouteCall registers CALL handlers, and returns the paths.
RouteCall(ctrlStructOrPoolFunc interface{}, plugin ...Plugin) []string
// RouteCallFunc registers CALL handler, and returns the path.
RouteCallFunc(callHandleFunc interface{}, plugin ...Plugin) string
// RoutePush registers PUSH handlers, and returns the paths.
RoutePush(ctrlStructOrPoolFunc interface{}, plugin ...Plugin) []string
// RoutePushFunc registers PUSH handler, and returns the path.
RoutePushFunc(pushHandleFunc interface{}, plugin ...Plugin) string
// SetUnknownCall sets the default handler, which is called when no handler for CALL is found.
SetUnknownCall(fn func(UnknownCallCtx) (interface{}, *Status), plugin ...Plugin)
// SetUnknownPush sets the default handler, which is called when no handler for PUSH is found.
SetUnknownPush(fn func(UnknownPushCtx) *Status, plugin ...Plugin)
}
// Peer the communication peer which is server or client role
Peer interface {
EarlyPeer
// ListenAndServe turns on the listening service.
ListenAndServe(protoFunc ...ProtoFunc) error
// Dial connects with the peer of the destination address.
Dial(addr string, protoFunc ...ProtoFunc) (Session, *Status)
// ServeConn serves the connection and returns a session.
// NOTE:
// Not support automatically redials after disconnection;
// Not check TLS;
// Execute the PostAcceptPlugin plugins.
ServeConn(conn net.Conn, protoFunc ...ProtoFunc) (Session, *Status)
}
)
var (
_ BasePeer = new(peer)
_ EarlyPeer = new(peer)
_ Peer = new(peer)
)
type peer struct {
router *Router
pluginContainer *PluginContainer
sessHub *SessionHub
closeCh chan struct{}
defaultSessionAge time.Duration // Default session max age, if less than or equal to 0, no time limit
defaultContextAge time.Duration // Default CALL or PUSH context max age, if less than or equal to 0, no time limit
tlsConfig *tls.Config
slowCometDuration time.Duration
timeNow func() int64
mu sync.Mutex
network string
defaultBodyCodec byte
printDetail bool
countTime bool
// only for server role
listenAddr net.Addr
listeners map[net.Listener]struct{}
// only for client role
dialer *Dialer
}
// NewPeer creates a new peer.
func NewPeer(cfg PeerConfig, globalLeftPlugin ...Plugin) Peer {
doPrintPid()
pluginContainer := newPluginContainer()
pluginContainer.AppendLeft(globalLeftPlugin...)
pluginContainer.preNewPeer(&cfg)
if err := cfg.check(); err != nil {
Fatalf("%v", err)
}
var p = &peer{
router: newRouter(pluginContainer),
pluginContainer: pluginContainer,
sessHub: newSessionHub(),
defaultSessionAge: cfg.DefaultSessionAge,
defaultContextAge: cfg.DefaultContextAge,
closeCh: make(chan struct{}),
slowCometDuration: cfg.slowCometDuration,
network: cfg.Network,
listenAddr: cfg.listenAddr,
printDetail: cfg.PrintDetail,
countTime: cfg.CountTime,
listeners: make(map[net.Listener]struct{}),
dialer: &Dialer{
network: cfg.Network,
dialTimeout: cfg.DialTimeout,
localAddr: cfg.localAddr,
redialInterval: cfg.RedialInterval,
redialTimes: cfg.RedialTimes,
},
}
if c, err := codec.GetByName(cfg.DefaultBodyCodec); err != nil {
Fatalf("%v", err)
} else {
p.defaultBodyCodec = c.ID()
}
if p.countTime {
p.timeNow = func() int64 { return time.Now().UnixNano() }
} else {
p.timeNow = func() int64 { return 0 }
}
addPeer(p)
p.pluginContainer.postNewPeer(p)
return p
}
// PluginContainer returns the global plugin container.
func (p *peer) PluginContainer() *PluginContainer {
return p.pluginContainer
}
// TLSConfig returns the TLS config.
func (p *peer) TLSConfig() *tls.Config {
return p.tlsConfig
}
// SetTLSConfig sets the TLS config.
func (p *peer) SetTLSConfig(tlsConfig *tls.Config) {
p.tlsConfig = tlsConfig
p.dialer.tlsConfig = tlsConfig
}
// SetTLSConfigFromFile sets the TLS config from file.
func (p *peer) SetTLSConfigFromFile(tlsCertFile, tlsKeyFile string, insecureSkipVerifyForClient ...bool) error {
tlsConfig, err := NewTLSConfigFromFile(tlsCertFile, tlsKeyFile, insecureSkipVerifyForClient...)
if err == nil {
p.SetTLSConfig(tlsConfig)
}
return err
}
// GetSession gets the session by id.
func (p *peer) GetSession(sessionID string) (Session, bool) {
return p.sessHub.get(sessionID)
}
// RangeSession ranges all sessions.
// If fn returns false, stop traversing.
func (p *peer) RangeSession(fn func(sess Session) bool) {
p.sessHub.sessions.Range(func(key, value interface{}) bool {
return fn(value.(*session))
})
}
// CountSession returns the number of sessions.
func (p *peer) CountSession() int {
return p.sessHub.len()
}
// Dial connects with the peer of the destination address.
func (p *peer) Dial(addr string, protoFunc ...ProtoFunc) (Session, *Status) {
stat := p.pluginContainer.preDial(p.dialer.localAddr, addr)
if !stat.OK() {
return nil, stat
}
var sess = newSession(p, nil, protoFunc)
_, err := p.dialer.dialWithRetry(addr, "", func(conn net.Conn) error {
sess.socket.Reset(conn, protoFunc...)
sess.socket.SetID(sess.LocalAddr().String())
if stat = p.pluginContainer.postDial(sess, false); !stat.OK() {
conn.Close()
return stat.Cause()
}
return nil
})
if err != nil {
return nil, statDialFailed.Copy(err)
}
// create redial func
if p.dialer.RedialTimes() != 0 {
sess.redialForClientLocked = func() bool {
oldID := sess.ID()
oldIP := sess.LocalAddr().String()
oldConn := sess.getConn()
var err error
if stat := p.pluginContainer.preDial(p.dialer.localAddr, addr); stat.OK() {
_, err = p.dialer.dialWithRetry(addr, oldID, func(conn net.Conn) error {
sess.socket.Reset(conn, protoFunc...)
if oldIP == oldID {
sess.socket.SetID(sess.LocalAddr().String())
} else {
sess.socket.SetID(oldID)
}
sess.changeStatus(statusPreparing)
if stat := p.pluginContainer.postDial(sess, true); !stat.OK() {
conn.Close()
sess.changeStatus(statusRedialing)
return stat.Cause()
}
return nil
})
} else {
err = stat.Cause()
}
if err != nil {
sess.closeLocked()
sess.tryChangeStatus(statusRedialFailed, statusRedialing)
Errorf("redial fail (network:%s, addr:%s, id:%s): %s", p.network, addr, oldID, err.Error())
return false
}
if oldConn != nil {
oldConn.Close()
}
sess.changeStatus(statusOk)
AnywayGo(sess.startReadAndHandle)
p.sessHub.set(sess)
Infof("redial ok (network:%s, addr:%s, id:%s)", p.network, addr, sess.ID())
return true
}
}
Infof("dial ok (network:%s, addr:%s, id:%s)", p.network, addr, sess.ID())
sess.changeStatus(statusOk)
AnywayGo(sess.startReadAndHandle)
p.sessHub.set(sess)
return sess, nil
}
// ServeConn serves the connection and returns a session.
// NOTE:
//
// Not support automatically redials after disconnection;
// Not check TLS;
// Execute the PostAcceptPlugin plugins.
func (p *peer) ServeConn(conn net.Conn, protoFunc ...ProtoFunc) (Session, *Status) {
network := conn.LocalAddr().Network()
if asQUIC(network) != "" {
if _, ok := conn.(*quic.Conn); !ok {
return nil, NewStatus(CodeWrongConn, "not support "+network, "network must be one of the following: tcp, tcp4, tcp6, unix, unixpacket, kcp or quic")
}
network = "quic"
} else if asKCP(network) != "" {
if _, ok := conn.(*kcp.UDPSession); !ok {
return nil, NewStatus(CodeWrongConn, "not support "+network, "network must be one of the following: tcp, tcp4, tcp6, unix, unixpacket, kcp or quic")
}
network = "kcp"
}
var sess = newSession(p, conn, protoFunc)
if stat := p.pluginContainer.postAccept(sess); !stat.OK() {
sess.Close()
return nil, stat
}
Infof("serve ok (network:%s, addr:%s, id:%s)", network, sess.RemoteAddr().String(), sess.ID())
sess.changeStatus(statusOk)
AnywayGo(sess.startReadAndHandle)
p.sessHub.set(sess)
return sess, nil
}
// ErrListenClosed listener is closed error.
var ErrListenClosed = errors.New("listener is closed")
// serveListener serves the listener.
// NOTE: The caller ensures that the listener supports graceful shutdown.
func (p *peer) serveListener(lis net.Listener, protoFunc ...ProtoFunc) error {
defer lis.Close()
p.listeners[lis] = struct{}{}
network := lis.Addr().Network()
switch lis.(type) {
case *quic.Listener:
network = "quic"
case *kcp.Listener:
network = "kcp"
}
addr := lis.Addr().String()
Printf("listen and serve (network:%s, addr:%s)", network, addr)
p.pluginContainer.postListen(lis.Addr())
var (
tempDelay time.Duration // how long to sleep on accept failure
closeCh = p.closeCh
)
for {
conn, e := lis.Accept()
if e != nil {
select {
case <-closeCh:
return ErrListenClosed
default:
}
if ne, ok := e.(net.Error); ok && ne.Temporary() {
if tempDelay == 0 {
tempDelay = 5 * time.Millisecond
} else {
tempDelay *= 2
}
if max := 1 * time.Second; tempDelay > max {
tempDelay = max
}
Tracef("accept error: %s; retrying in %v", e.Error(), tempDelay)
time.Sleep(tempDelay)
continue
}
return e
}
tempDelay = 0
AnywayGo(func() {
if c, ok := conn.(*tls.Conn); ok {
if p.defaultSessionAge > 0 {
c.SetReadDeadline(coarsetime.CeilingTimeNow().Add(p.defaultSessionAge))
}
if p.defaultContextAge > 0 {
c.SetReadDeadline(coarsetime.CeilingTimeNow().Add(p.defaultContextAge))
}
if err := c.Handshake(); err != nil {
Errorf("TLS handshake error from %s: %s", c.RemoteAddr(), err.Error())
return
}
}
var sess = newSession(p, conn, protoFunc)
if stat := p.pluginContainer.postAccept(sess); !stat.OK() {
sess.Close()
return
}
Infof("accept ok (network:%s, addr:%s, id:%s)", network, sess.RemoteAddr().String(), sess.ID())
p.sessHub.set(sess)
sess.changeStatus(statusOk)
sess.startReadAndHandle()
})
}
}
// ListenAndServe turns on the listening service.
func (p *peer) ListenAndServe(protoFunc ...ProtoFunc) error {
lis, err := NewInheritedListener(p.listenAddr, p.tlsConfig)
if err != nil {
Fatalf("%v", err)
}
return p.serveListener(lis, protoFunc...)
}
// Close closes peer.
func (p *peer) Close() (err error) {
defer func() {
if p := recover(); p != nil {
err = fmt.Errorf("panic:%v\n%s", p, goutil.PanicTrace(2))
}
}()
close(p.closeCh)
for lis := range p.listeners {
if _, ok := lis.(*quic.Listener); !ok {
lis.Close()
}
}
deletePeer(p)
var (
count int
errCh = make(chan error, 1024)
)
p.sessHub.rangeCallback(func(sess *session) bool {
count++
MustGo(func() {
errCh <- sess.Close()
})
return true
})
for i := 0; i < count; i++ {
err = errors.Merge(err, <-errCh)
}
close(errCh)
for lis := range p.listeners {
if qlis, ok := lis.(*quic.Listener); ok {
err = errors.Merge(err, qlis.Close())
}
}
return err
}
var ctxPool = sync.Pool{
New: func() interface{} {
return newReadHandleCtx()
},
}
func (p *peer) getContext(s *session, withWg bool) *handlerCtx {
if withWg {
// count get context
s.graceCtxWaitGroup.Add(1)
}
ctx := ctxPool.Get().(*handlerCtx)
ctx.clean()
ctx.reInit(s)
return ctx
}
func (p *peer) putContext(ctx *handlerCtx, withWg bool) {
if withWg {
// count get context
ctx.sess.graceCtxWaitGroup.Done()
}
ctxPool.Put(ctx)
}
// Router returns the root router of call or push handlers.
func (p *peer) Router() *Router {
return p.router
}
// SubRoute adds handler group.
func (p *peer) SubRoute(pathPrefix string, plugin ...Plugin) *SubRouter {
return p.router.SubRoute(pathPrefix, plugin...)
}
// RouteCall registers CALL handlers, and returns the paths.
func (p *peer) RouteCall(callCtrlStructOrPoolFunc interface{}, plugin ...Plugin) []string {
return p.router.RouteCall(callCtrlStructOrPoolFunc, plugin...)
}
// RouteCallFunc registers CALL handler, and returns the path.
func (p *peer) RouteCallFunc(callHandleFunc interface{}, plugin ...Plugin) string {
return p.router.RouteCallFunc(callHandleFunc, plugin...)
}
// RoutePush registers PUSH handlers, and returns the paths.
func (p *peer) RoutePush(pushCtrlStructOrPoolFunc interface{}, plugin ...Plugin) []string {
return p.router.RoutePush(pushCtrlStructOrPoolFunc, plugin...)
}
// RoutePushFunc registers PUSH handler, and returns the path.
func (p *peer) RoutePushFunc(pushHandleFunc interface{}, plugin ...Plugin) string {
return p.router.RoutePushFunc(pushHandleFunc, plugin...)
}
// SetUnknownCall sets the default handler,
// which is called when no handler for CALL is found.
func (p *peer) SetUnknownCall(fn func(UnknownCallCtx) (interface{}, *Status), plugin ...Plugin) {
p.router.SetUnknownCall(fn, plugin...)
}
// SetUnknownPush sets the default handler,
// which is called when no handler for PUSH is found.
func (p *peer) SetUnknownPush(fn func(UnknownPushCtx) *Status, plugin ...Plugin) {
p.router.SetUnknownPush(fn, plugin...)
}
// maybe useful
func (p *peer) getCallHandler(uriPath string) (*Handler, bool) {
return p.router.subRouter.getCall(uriPath)
}
func (p *peer) getPushHandler(uriPath string) (*Handler, bool) {
return p.router.subRouter.getPush(uriPath)
}