Files
peercred-mini/peercred_solaris.go
T
2026-05-29 17:47:52 -04:00

42 lines
816 B
Go

// Copyright (c) 2021-2025 AUTHORS All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build illumos || solaris
package peercred
import (
"fmt"
"net"
"strconv"
"golang.org/x/sys/unix"
)
func get(c *net.UnixConn) (*Creds, error) {
raw, err := c.SyscallConn()
if err != nil {
return nil, fmt.Errorf("SyscallConn: %w", err)
}
var creds *unix.Ucred
cerr := raw.Control(func(fd uintptr) {
creds, err = unix.GetPeerUcred(fd)
if err != nil {
err = fmt.Errorf("unix.GetPeerUcred: %w", err)
return
}
})
if cerr != nil {
return nil, fmt.Errorf("raw.Control: %w", cerr)
}
if err != nil {
return nil, err
}
return &Creds{
PID: creds.Getpid(),
UID: strconv.FormatUint(uint64(creds.Geteuid()), 10),
}, nil
}