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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2015-2024 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"
"strings"
"sync"
sys "syscall"
"github.com/snapcore/snapd/strutil"
)
var errNoID = errors.New("no pid/uid found")
const (
ucrednetNoProcess = int32(0)
ucrednetNobody = uint32((1 << 32) - 1)
)
var raddrRegexp = regexp.MustCompile(`^pid=(\d+);uid=(\d+);socket=([^;]*);(iface=([^;]*);)?$`)
var ucrednetGet = ucrednetGetImpl
var ucrednetGetWithInterfaces = ucrednetGetWithInterfacesImpl
func ucrednetGetImpl(remoteAddr string) (*ucrednet, error) {
uc, _, err := ucrednetGetWithInterfaces(remoteAddr)
return uc, err
}
func ucrednetGetWithInterfacesImpl(remoteAddr string) (ucred *ucrednet, ifaces []string, err 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)
}
// group: ([^;]*) - socket path following socket=
u.Socket = subs[3]
// group: (iface=([^;]*);)
if len(subs[4]) > 0 {
// group: ([^;]*) - actual interfaces joined together with & separator
ifaces = strings.Split(subs[5], "&")
}
}
if u.Pid == ucrednetNoProcess || u.Uid == ucrednetNobody {
return nil, nil, errNoID
}
return u, ifaces, nil
}
func ucrednetAttachInterface(remoteAddr, iface string) string {
inds := raddrRegexp.FindStringSubmatchIndex(remoteAddr)
if inds == nil {
// This should only occur if remoteAddr is invalid.
return fmt.Sprintf("%siface=%s;", remoteAddr, iface)
}
// start of string matching group "(iface=([^;]*);)"
ifaceSubStart := inds[8]
ifaceSubEnd := inds[9]
if ifaceSubStart == ifaceSubEnd {
// "(iface=([^;]*);)" not present.
return fmt.Sprintf("%siface=%s;", remoteAddr, iface)
}
// string matching group "([^;]*)" within "(iface=([^;]*);)"
ifacesStr := remoteAddr[inds[10]:inds[11]]
ifaces := strings.Split(ifacesStr, "&")
if strutil.ListContains(ifaces, iface) {
return remoteAddr
}
ifaces = append(ifaces, iface)
return fmt.Sprintf("%siface=%s;", remoteAddr[:ifaceSubStart], strings.Join(ifaces, "&"))
}
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 = sys.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 {
syscallConn, err := ucon.SyscallConn()
if err != nil {
return nil, err
}
var ucred *sys.Ucred
scErr := syscallConn.Control(func(fd uintptr) {
ucred, err = getUcred(int(fd), sys.SOL_SOCKET, sys.SO_PEERCRED)
})
if scErr != nil {
return nil, scErr
}
if err != nil {
return nil, err
}
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
}
|