-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathquic-modes.go
123 lines (102 loc) · 2.6 KB
/
quic-modes.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
// Copyright 2019 ETH Zurich
//
// 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 modes
import (
"context"
"crypto/tls"
"io"
golog "log"
"github.com/lucas-clemente/quic-go"
"github.com/netsec-ethz/scion-apps/pkg/appnet/appquic"
log "github.com/inconshreveable/log15"
)
const nextProto = "netcat"
type sessConn struct {
sess quic.Session
stream quic.Stream
}
func (conn *sessConn) Read(b []byte) (n int, err error) {
return conn.stream.Read(b)
}
func (conn *sessConn) Write(b []byte) (n int, err error) {
return conn.stream.Write(b)
}
func (conn *sessConn) Close() error {
err := conn.stream.Close()
if err != nil {
return err
}
err = conn.sess.CloseWithError(quic.ErrorCode(0), "")
if err != nil {
return err
}
return nil
}
// DoListenQUIC listens on a QUIC socket
func DoListenQUIC(port uint16) chan io.ReadWriteCloser {
listener, err := appquic.ListenPort(
port,
&tls.Config{
Certificates: appquic.GetDummyTLSCerts(),
NextProtos: []string{nextProto}},
&quic.Config{KeepAlive: true},
)
if err != nil {
golog.Panicf("Can't listen on port %d: %v", port, err)
}
conns := make(chan io.ReadWriteCloser)
go func() {
for {
sess, err := listener.Accept(context.Background())
if err != nil {
log.Crit("Can't accept listener: %v", err)
continue
}
stream, err := sess.AcceptStream(context.Background())
if err != nil {
log.Crit("Can't accept stream: %v", err)
continue
}
log.Info("New QUIC connection")
conns <- &sessConn{
sess: sess,
stream: stream,
}
}
}()
return conns
}
// DoDialQUIC dials with a QUIC socket
func DoDialQUIC(remoteAddr string) io.ReadWriteCloser {
sess, err := appquic.Dial(
remoteAddr,
&tls.Config{
InsecureSkipVerify: true,
NextProtos: []string{nextProto},
},
&quic.Config{KeepAlive: true},
)
if err != nil {
golog.Panicf("Can't dial remote address %v: %v", remoteAddr, err)
}
stream, err := sess.OpenStreamSync(context.Background())
if err != nil {
golog.Panicf("Can't open stream: %v", err)
}
log.Debug("Connected!")
return &sessConn{
sess: sess,
stream: stream,
}
}