-
Notifications
You must be signed in to change notification settings - Fork 11
/
userconnhandler_tcp.go
88 lines (74 loc) · 1.74 KB
/
userconnhandler_tcp.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
package freki
import (
"fmt"
"net"
"runtime/debug"
"github.com/pkg/errors"
)
type UserConnServer struct {
port uint
processor *Processor
listener net.Listener
}
func NewUserConnServer(port uint) *UserConnServer {
return &UserConnServer{
port: port,
}
}
func (h *UserConnServer) Port() uint {
return h.port
}
func (h *UserConnServer) Type() string {
return "user.tcp"
}
func (h *UserConnServer) Start(processor *Processor) error {
h.processor = processor
var err error
// TODO: can I be more specific with the bind addr?
h.listener, err = net.Listen("tcp", fmt.Sprintf(":%d", h.port))
if err != nil {
return err
}
for {
conn, err := h.listener.Accept()
if err != nil {
logger.Errorf("[user.tcp] %v", err)
continue
}
ck := NewConnKeyFromNetConn(conn)
md := h.processor.Connections.GetByFlow(ck)
if md == nil {
logger.Warnf("[user.tcp] untracked connection: %s", conn.RemoteAddr().String())
conn.Close()
continue
}
// TODO: there is no connection between freki and the handler
// once freki starts to shutdown, handlers are not notified.
// maybe use a Context?
if hfunc, ok := h.processor.connHandlers[md.Rule.Target]; ok {
go func() {
defer func() {
if r := recover(); r != nil {
logger.Errorf("[user.tcp] panic: %+v", r)
logger.Errorf("[user.tcp] stacktrace:\n%v", string(debug.Stack()))
conn.Close()
}
}()
err := hfunc(conn, md)
if err != nil {
logger.Error(errors.Wrap(err, h.Type()))
}
}()
} else {
logger.Errorf("[user.tcp] %v", fmt.Errorf("no handler found for %s", md.Rule.Target))
conn.Close()
continue
}
}
}
func (h *UserConnServer) Shutdown() error {
if h.listener != nil {
return h.listener.Close()
}
return nil
}