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
|
// SPDX-FileCopyrightText: © 2022 Grégoire Duchêne <gduchene@awhk.org>
// SPDX-License-Identifier: ISC
package core
import (
"context"
"net"
"strings"
"sync/atomic"
"syscall"
)
// Listen is a wrapper around net.Listen. If addr cannot be split in two
// parts around the first colon found, Listen will try to create a UNIX
// or TCP net.Listener depending on whether addr contains a slash.
func Listen(addr string) (net.Listener, error) {
if fields := strings.SplitN(addr, ":", 2); len(fields) == 2 {
return net.Listen(fields[0], fields[1])
}
if strings.ContainsRune(addr, '/') {
return net.Listen("unix", addr)
}
return net.Listen("tcp", addr)
}
// PipeListener is a net.Listener that works over a pipe. It provides
// dialer functions that can be used in an HTTP client or gRPC options.
//
// PipeListener must not be copied after its first use.
type PipeListener struct {
closed int32
conns chan net.Conn
done chan struct{}
}
var _ net.Listener = &PipeListener{}
func ListenPipe() *PipeListener {
return &PipeListener{conns: make(chan net.Conn), done: make(chan struct{})}
}
func (p *PipeListener) Accept() (net.Conn, error) {
select {
case conn := <-p.conns:
return conn, nil
case <-p.done:
return nil, syscall.EINVAL
}
}
func (p *PipeListener) Addr() net.Addr { return pipeListenerAddr{} }
func (p *PipeListener) Close() error {
if !atomic.CompareAndSwapInt32(&p.closed, 0, 1) {
return syscall.EINVAL
}
close(p.done)
return nil
}
func (p *PipeListener) Dial(_, _ string) (net.Conn, error) {
return p.DialContext(context.Background(), "", "")
}
func (p *PipeListener) DialContext(ctx context.Context, _, _ string) (net.Conn, error) {
s, c := net.Pipe()
select {
case p.conns <- s:
return c, nil
case <-p.done:
return nil, syscall.ECONNREFUSED
case <-ctx.Done():
return nil, ctx.Err()
}
}
func (p *PipeListener) DialContextGRPC(ctx context.Context, _ string) (net.Conn, error) {
return p.DialContext(ctx, "", "")
}
type pipeListenerAddr struct{}
func (pipeListenerAddr) Network() string { return "pipe" }
func (pipeListenerAddr) String() string { return "pipe" }
|