-
Notifications
You must be signed in to change notification settings - Fork 54
/
ucrednet.go
146 lines (126 loc) · 3.48 KB
/
ucrednet.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
138
139
140
141
142
143
144
145
146
// Copyright (c) 2014-2020 Canonical Ltd
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 3 as
// published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package daemon
import (
"errors"
"fmt"
"net"
"regexp"
"strconv"
"sync"
"syscall"
)
var errNoID = errors.New("no pid/uid found")
const (
// ucrednetNoProcess is -1 to avoid the case when pid=0 is returned from the kernel
// because the connecting process is in an unrelated process namespace.
ucrednetNoProcess = int32(-1)
ucrednetNobody = uint32((1 << 32) - 1)
)
var raddrRegexp = regexp.MustCompile(`^pid=(\d+);uid=(\d+);socket=([^;]*);$`)
func ucrednetGet(remoteAddr string) (*Ucrednet, error) {
// NOTE treat remoteAddr at one point included a user-controlled
// string. In case that happens again by accident, treat it as tainted,
// and be very suspicious of it.
u := &Ucrednet{
Pid: ucrednetNoProcess,
Uid: ucrednetNobody,
}
subs := raddrRegexp.FindStringSubmatch(remoteAddr)
if subs != nil {
if v, err := strconv.ParseInt(subs[1], 10, 32); err == nil {
u.Pid = int32(v)
}
if v, err := strconv.ParseUint(subs[2], 10, 32); err == nil {
u.Uid = uint32(v)
}
u.Socket = subs[3]
}
if u.Pid == ucrednetNoProcess || u.Uid == ucrednetNobody {
return nil, errNoID
}
return u, nil
}
type Ucrednet struct {
Pid int32
Uid uint32
Socket string
}
func (un *Ucrednet) String() string {
if un == nil {
return "pid=;uid=;socket=;"
}
return fmt.Sprintf("pid=%d;uid=%d;socket=%s;", un.Pid, un.Uid, un.Socket)
}
type ucrednetAddr struct {
net.Addr
*Ucrednet
}
func (wa *ucrednetAddr) String() string {
// NOTE we drop the original (user-supplied) net.Addr from the
// serialization entirely. We carry it this far so it helps debugging
// (via %#v logging), but from here on in it's not helpful.
return wa.Ucrednet.String()
}
type ucrednetConn struct {
net.Conn
*Ucrednet
}
func (wc *ucrednetConn) RemoteAddr() net.Addr {
return &ucrednetAddr{wc.Conn.RemoteAddr(), wc.Ucrednet}
}
type ucrednetListener struct {
net.Listener
idempotClose sync.Once
closeErr error
}
var getUcred = syscall.GetsockoptUcred
func (wl *ucrednetListener) Accept() (net.Conn, error) {
con, err := wl.Listener.Accept()
if err != nil {
return nil, err
}
var unet *Ucrednet
if ucon, ok := con.(*net.UnixConn); ok {
rawConn, err := ucon.SyscallConn()
if err != nil {
return nil, err
}
var ucred *syscall.Ucred
var ucredErr error
// Call getUcred inside a Control() block to ensure fd is valid for
// the duration of the call, avoiding a race condition.
err = rawConn.Control(func(fd uintptr) {
ucred, ucredErr = getUcred(int(fd), syscall.SOL_SOCKET, syscall.SO_PEERCRED)
})
if err != nil {
return nil, err
}
if ucredErr != nil {
return nil, ucredErr
}
unet = &Ucrednet{
Pid: ucred.Pid,
Uid: ucred.Uid,
Socket: ucon.LocalAddr().String(),
}
}
return &ucrednetConn{con, unet}, nil
}
func (wl *ucrednetListener) Close() error {
wl.idempotClose.Do(func() {
wl.closeErr = wl.Listener.Close()
})
return wl.closeErr
}