-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates golang/go#27613 Updates tailscale/tailscale#1347 Updates tailscale/tailscale#1348
- Loading branch information
Showing
4 changed files
with
75 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
golang.org/x/sys v0.0.0-20210216163648-f7da38b97c65 h1:pTMjDVnP5eVRRlWO76rEWJ8JoC6Lf1CmyjPZXRiy2Sw= | ||
golang.org/x/sys v0.0.0-20210216163648-f7da38b97c65/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | ||
golang.org/x/sys v0.0.0-20210216224549-f992740a1bac h1:9glrpwtNjBYgRpb67AZJKHfzj1stG/8BL5H7In2oTC4= | ||
golang.org/x/sys v0.0.0-20210216224549-f992740a1bac/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
// Copyright (c) 2021 AUTHORS All rights reserved. | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package peercred | ||
|
||
import ( | ||
"fmt" | ||
"net" | ||
"strconv" | ||
|
||
"golang.org/x/sys/unix" | ||
) | ||
|
||
func init() { | ||
osGet = getLinux | ||
} | ||
|
||
func getLinux(c net.Conn) (*Creds, error) { | ||
switch c := c.(type) { | ||
case *net.UnixConn: | ||
return getUnix(c) | ||
case *net.TCPConn: | ||
// TODO: use /proc tcp info for localhost connections like Windows? | ||
} | ||
return nil, ErrUnsupportedConnType | ||
} | ||
|
||
func getUnix(c *net.UnixConn) (*Creds, error) { | ||
raw, err := c.SyscallConn() | ||
if err != nil { | ||
return nil, fmt.Errorf("SyscallConn: %w", err) | ||
} | ||
|
||
var cred *unix.Xucred | ||
var pid int | ||
cerr := raw.Control(func(fd uintptr) { | ||
cred, err = unix.GetsockoptXucred(int(fd), | ||
unix.SOL_LOCAL, | ||
unix.LOCAL_PEERCRED) | ||
if err != nil { | ||
err = fmt.Errorf("unix.GetsockoptXucred: %w", err) | ||
return | ||
} | ||
pid, err = unix.GetsockoptInt(int(fd), | ||
unix.SOL_LOCAL, | ||
unix.LOCAL_PEERPID) | ||
if err != nil { | ||
err = fmt.Errorf("unix.GetsockoptInt: %w", err) | ||
} | ||
}) | ||
if cerr != nil { | ||
return nil, fmt.Errorf("raw.Control: %w", err) | ||
} | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &Creds{ | ||
pid: pid, | ||
uid: strconv.FormatUint(uint64(cred.Uid), 10), | ||
}, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters