forked from TheThingsNetwork/lorawan-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloopback.go
More file actions
119 lines (98 loc) · 3.26 KB
/
loopback.go
File metadata and controls
119 lines (98 loc) · 3.26 KB
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
// Copyright © 2019 The Things Network Foundation, The Things Industries B.V.
//
// 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 rpcserver
import (
"context"
"net"
"time"
"go.thethings.network/lorawan-stack/pkg/version"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
)
const inProcess = "in-process"
type inProcessAuthInfo struct{}
func (inProcessAuthInfo) AuthType() string { return inProcess }
type inProcessCredentials struct {
ServerName string
}
func (inProcessCredentials) ClientHandshake(_ context.Context, _ string, conn net.Conn) (net.Conn, credentials.AuthInfo, error) {
return conn, inProcessAuthInfo{}, nil
}
func (inProcessCredentials) ServerHandshake(conn net.Conn) (net.Conn, credentials.AuthInfo, error) {
return conn, inProcessAuthInfo{}, nil
}
func (c inProcessCredentials) Info() credentials.ProtocolInfo {
return credentials.ProtocolInfo{
SecurityProtocol: inProcess,
SecurityVersion: version.TTN,
ServerName: c.ServerName,
}
}
func (c *inProcessCredentials) Clone() credentials.TransportCredentials { return c }
func (c *inProcessCredentials) OverrideServerName(serverName string) error {
c.ServerName = serverName
return nil
}
func newInProcessListener(parent context.Context) *inProcessListener {
ctx, cancel := context.WithCancel(parent)
return &inProcessListener{
ctx: ctx,
cancel: cancel,
ch: make(chan net.Conn),
}
}
type inProcessListener struct {
ctx context.Context
cancel context.CancelFunc
ch chan net.Conn
}
func (l inProcessListener) Accept() (net.Conn, error) {
select {
case <-l.ctx.Done():
return nil, l.ctx.Err()
case conn := <-l.ch:
return conn, nil
}
}
func (l inProcessListener) Close() error {
l.cancel()
return nil
}
type inProcessAddr string
func (inProcessAddr) Network() string { return "in-process" }
func (a inProcessAddr) String() string { return string(a) }
func (l inProcessListener) Addr() net.Addr { return inProcessAddr("in-process") }
func inProcessDialer(lis *inProcessListener) func(string, time.Duration) (net.Conn, error) {
return func(addr string, timeout time.Duration) (net.Conn, error) {
server, client := net.Pipe()
select {
case <-time.After(timeout):
return nil, context.DeadlineExceeded
case lis.ch <- server:
return client, nil
}
}
}
// StartLoopback starts the server on a local address and returns a connection to that address.
// This function does not add the default DialOptions.
func StartLoopback(ctx context.Context, s *grpc.Server, opts ...grpc.DialOption) (*grpc.ClientConn, error) {
lis := newInProcessListener(ctx)
go s.Serve(lis)
return grpc.Dial(
lis.Addr().String(),
append([]grpc.DialOption{
grpc.WithDialer(inProcessDialer(lis)),
grpc.WithTransportCredentials(&inProcessCredentials{}),
}, opts...)...)
}