This repository has been archived by the owner on Mar 29, 2021. It is now read-only.
forked from jmhodges/howsmyssl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conn.go
137 lines (123 loc) · 2.72 KB
/
conn.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
package main
import (
"errors"
"expvar"
"io"
"log"
"net"
"sync/atomic"
tls "github.com/jmhodges/howsmyssl/tls18"
)
var (
_ net.Listener = &listener{}
_ net.Conn = &conn{}
errTLSConnConv = errors.New("Unable to convert net.Conn to tls.Conn")
)
type listener struct {
net.Listener
*handshakeStats
}
type handshakeStats struct {
Successes *expvar.Int
Errs *expvar.Int
ReadTimeouts *expvar.Int
WriteTimeouts *expvar.Int
UnknownTimeouts *expvar.Int
EOFs *expvar.Int
}
func newHandshakeStats(ns *expvar.Map) *handshakeStats {
s := &handshakeStats{
Successes: &expvar.Int{},
Errs: &expvar.Int{},
ReadTimeouts: &expvar.Int{},
WriteTimeouts: &expvar.Int{},
UnknownTimeouts: &expvar.Int{},
EOFs: &expvar.Int{},
}
ns.Set("successes", s.Successes)
ns.Set("errors", s.Errs)
ns.Set("read_timeouts", s.ReadTimeouts)
ns.Set("write_timeouts", s.WriteTimeouts)
ns.Set("unknown_timeouts", s.UnknownTimeouts)
ns.Set("eofs", s.EOFs)
return s
}
func newListener(nl net.Listener, ns *expvar.Map) *listener {
statNS := new(expvar.Map).Init()
ns.Set("handshake", statNS)
lis := &listener{
Listener: nl,
handshakeStats: newHandshakeStats(statNS),
}
return lis
}
func (l *listener) Accept() (net.Conn, error) {
c, err := l.Listener.Accept()
if err != nil {
return c, err
}
tlsConn, ok := c.(*tls.Conn)
if !ok {
c.Close()
return nil, errTLSConnConv
}
return &conn{
Conn: tlsConn,
handshakeStats: l.handshakeStats,
}, nil
}
type conn struct {
*tls.Conn
handshakeCounted int32
*handshakeStats
}
func (c *conn) Read(b []byte) (int, error) {
err := c.handshake()
if err != nil {
return 0, err
}
return c.Conn.Read(b)
}
func (c *conn) Write(b []byte) (int, error) {
err := c.handshake()
if err != nil {
return 0, err
}
return c.Conn.Write(b)
}
// This, unfortunately, means we take two uncontended locks on every read and
// write: the c.handshakeMutex here and the one in tls.Conn.
func (c *conn) handshake() error {
alreadyCounted := !atomic.CompareAndSwapInt32(&c.handshakeCounted, 0, 1)
if alreadyCounted {
return nil
}
err := c.Conn.Handshake()
if err != nil {
return err
}
if !alreadyCounted {
c.Successes.Add(1)
}
return nil
}
func (c *conn) errorToStats(err error) {
if err != nil {
c.Errs.Add(1)
if err == io.EOF {
c.EOFs.Add(1)
} else if opErr, ok := err.(*net.OpError); ok && opErr.Timeout() {
switch opErr.Op {
case "read":
c.ReadTimeouts.Add(1)
case "write":
c.WriteTimeouts.Add(1)
default:
log.Printf("unknown timeout type: %s", opErr.Op)
c.UnknownTimeouts.Add(1)
}
} else {
log.Printf("unknown tls error: %s", err)
}
}
}