| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- //go:build linux
- package process
- import (
- "encoding/binary"
- "errors"
- "net/netip"
- "os"
- "path/filepath"
- "strings"
- "sync"
- "syscall"
- "time"
- "unicode"
- "github.com/sagernet/sing/common"
- E "github.com/sagernet/sing/common/exceptions"
- N "github.com/sagernet/sing/common/network"
- "github.com/sagernet/sing/contrab/freelru"
- "github.com/sagernet/sing/contrab/maphash"
- )
- const (
- sizeOfSocketDiagRequestData = 56
- sizeOfSocketDiagRequest = syscall.SizeofNlMsghdr + sizeOfSocketDiagRequestData
- socketDiagResponseMinSize = 72
- socketDiagByFamily = 20
- pathProc = "/proc"
- )
- type socketDiagConn struct {
- access sync.Mutex
- family uint8
- protocol uint8
- fd int
- }
- type uidProcessPathCache struct {
- cache freelru.Cache[uint32, *uidProcessPaths]
- }
- type uidProcessPaths struct {
- entries map[uint32]string
- }
- func newSocketDiagConn(family, protocol uint8) *socketDiagConn {
- return &socketDiagConn{
- family: family,
- protocol: protocol,
- fd: -1,
- }
- }
- func socketDiagConnIndex(family, protocol uint8) int {
- index := 0
- if protocol == syscall.IPPROTO_UDP {
- index += 2
- }
- if family == syscall.AF_INET6 {
- index++
- }
- return index
- }
- func socketDiagSettings(network string, source netip.AddrPort) (family, protocol uint8, err error) {
- switch network {
- case N.NetworkTCP:
- protocol = syscall.IPPROTO_TCP
- case N.NetworkUDP:
- protocol = syscall.IPPROTO_UDP
- default:
- return 0, 0, os.ErrInvalid
- }
- switch {
- case source.Addr().Is4():
- family = syscall.AF_INET
- case source.Addr().Is6():
- family = syscall.AF_INET6
- default:
- return 0, 0, os.ErrInvalid
- }
- return family, protocol, nil
- }
- func newUIDProcessPathCache(ttl time.Duration) *uidProcessPathCache {
- cache := common.Must1(freelru.NewSharded[uint32, *uidProcessPaths](64, maphash.NewHasher[uint32]().Hash32))
- cache.SetLifetime(ttl)
- return &uidProcessPathCache{cache: cache}
- }
- func (c *uidProcessPathCache) findProcessPath(targetInode, uid uint32) (string, error) {
- if cached, ok := c.cache.Get(uid); ok {
- if processPath, found := cached.entries[targetInode]; found {
- return processPath, nil
- }
- }
- processPaths, err := buildProcessPathByUIDCache(uid)
- if err != nil {
- return "", err
- }
- c.cache.Add(uid, &uidProcessPaths{entries: processPaths})
- processPath, found := processPaths[targetInode]
- if !found {
- return "", E.New("process of uid(", uid, "), inode(", targetInode, ") not found")
- }
- return processPath, nil
- }
- func (c *socketDiagConn) Close() error {
- c.access.Lock()
- defer c.access.Unlock()
- return c.closeLocked()
- }
- func (c *socketDiagConn) query(source netip.AddrPort, destination netip.AddrPort) (inode, uid uint32, err error) {
- c.access.Lock()
- defer c.access.Unlock()
- request := packSocketDiagRequest(c.family, c.protocol, source, destination, false)
- for attempt := 0; attempt < 2; attempt++ {
- err = c.ensureOpenLocked()
- if err != nil {
- return 0, 0, E.Cause(err, "dial netlink")
- }
- inode, uid, err = querySocketDiag(c.fd, request)
- if err == nil || errors.Is(err, ErrNotFound) {
- return inode, uid, err
- }
- if !shouldRetrySocketDiag(err) {
- return 0, 0, err
- }
- _ = c.closeLocked()
- }
- return 0, 0, err
- }
- func querySocketDiagOnce(family, protocol uint8, source netip.AddrPort) (inode, uid uint32, err error) {
- fd, err := openSocketDiag()
- if err != nil {
- return 0, 0, E.Cause(err, "dial netlink")
- }
- defer syscall.Close(fd)
- return querySocketDiag(fd, packSocketDiagRequest(family, protocol, source, netip.AddrPort{}, true))
- }
- func (c *socketDiagConn) ensureOpenLocked() error {
- if c.fd != -1 {
- return nil
- }
- fd, err := openSocketDiag()
- if err != nil {
- return err
- }
- c.fd = fd
- return nil
- }
- func openSocketDiag() (int, error) {
- fd, err := syscall.Socket(syscall.AF_NETLINK, syscall.SOCK_DGRAM|syscall.SOCK_CLOEXEC, syscall.NETLINK_INET_DIAG)
- if err != nil {
- return -1, err
- }
- timeout := &syscall.Timeval{Usec: 100}
- if err = syscall.SetsockoptTimeval(fd, syscall.SOL_SOCKET, syscall.SO_SNDTIMEO, timeout); err != nil {
- syscall.Close(fd)
- return -1, err
- }
- if err = syscall.SetsockoptTimeval(fd, syscall.SOL_SOCKET, syscall.SO_RCVTIMEO, timeout); err != nil {
- syscall.Close(fd)
- return -1, err
- }
- if err = syscall.Connect(fd, &syscall.SockaddrNetlink{
- Family: syscall.AF_NETLINK,
- Pid: 0,
- Groups: 0,
- }); err != nil {
- syscall.Close(fd)
- return -1, err
- }
- return fd, nil
- }
- func (c *socketDiagConn) closeLocked() error {
- if c.fd == -1 {
- return nil
- }
- err := syscall.Close(c.fd)
- c.fd = -1
- return err
- }
- func packSocketDiagRequest(family, protocol byte, source netip.AddrPort, destination netip.AddrPort, dump bool) []byte {
- request := make([]byte, sizeOfSocketDiagRequest)
- binary.NativeEndian.PutUint32(request[0:4], sizeOfSocketDiagRequest)
- binary.NativeEndian.PutUint16(request[4:6], socketDiagByFamily)
- flags := uint16(syscall.NLM_F_REQUEST)
- if dump {
- flags |= syscall.NLM_F_DUMP
- }
- binary.NativeEndian.PutUint16(request[6:8], flags)
- binary.NativeEndian.PutUint32(request[8:12], 0)
- binary.NativeEndian.PutUint32(request[12:16], 0)
- request[16] = family
- request[17] = protocol
- request[18] = 0
- request[19] = 0
- if dump {
- binary.NativeEndian.PutUint32(request[20:24], 0xFFFFFFFF)
- }
- requestSource := source
- requestDestination := destination
- if protocol == syscall.IPPROTO_UDP && !dump && destination.IsValid() {
- // udp_dump_one expects the exact-match endpoints reversed for historical reasons.
- requestSource, requestDestination = destination, source
- }
- binary.BigEndian.PutUint16(request[24:26], requestSource.Port())
- binary.BigEndian.PutUint16(request[26:28], requestDestination.Port())
- if family == syscall.AF_INET6 {
- copy(request[28:44], requestSource.Addr().AsSlice())
- if requestDestination.IsValid() {
- copy(request[44:60], requestDestination.Addr().AsSlice())
- }
- } else {
- copy(request[28:32], requestSource.Addr().AsSlice())
- if requestDestination.IsValid() {
- copy(request[44:48], requestDestination.Addr().AsSlice())
- }
- }
- binary.NativeEndian.PutUint32(request[60:64], 0)
- binary.NativeEndian.PutUint64(request[64:72], 0xFFFFFFFFFFFFFFFF)
- return request
- }
- func querySocketDiag(fd int, request []byte) (inode, uid uint32, err error) {
- _, err = syscall.Write(fd, request)
- if err != nil {
- return 0, 0, E.Cause(err, "write netlink request")
- }
- buffer := make([]byte, 64<<10)
- n, err := syscall.Read(fd, buffer)
- if err != nil {
- return 0, 0, E.Cause(err, "read netlink response")
- }
- messages, err := syscall.ParseNetlinkMessage(buffer[:n])
- if err != nil {
- return 0, 0, E.Cause(err, "parse netlink message")
- }
- return unpackSocketDiagMessages(messages)
- }
- func unpackSocketDiagMessages(messages []syscall.NetlinkMessage) (inode, uid uint32, err error) {
- for _, message := range messages {
- switch message.Header.Type {
- case syscall.NLMSG_DONE:
- continue
- case syscall.NLMSG_ERROR:
- err = unpackSocketDiagError(&message)
- if err != nil {
- return 0, 0, err
- }
- case socketDiagByFamily:
- inode, uid = unpackSocketDiagResponse(&message)
- if inode != 0 || uid != 0 {
- return inode, uid, nil
- }
- }
- }
- return 0, 0, ErrNotFound
- }
- func unpackSocketDiagResponse(msg *syscall.NetlinkMessage) (inode, uid uint32) {
- if len(msg.Data) < socketDiagResponseMinSize {
- return 0, 0
- }
- uid = binary.NativeEndian.Uint32(msg.Data[64:68])
- inode = binary.NativeEndian.Uint32(msg.Data[68:72])
- return inode, uid
- }
- func unpackSocketDiagError(msg *syscall.NetlinkMessage) error {
- if len(msg.Data) < 4 {
- return E.New("netlink message: NLMSG_ERROR")
- }
- errno := int32(binary.NativeEndian.Uint32(msg.Data[:4]))
- if errno == 0 {
- return nil
- }
- if errno < 0 {
- errno = -errno
- }
- sysErr := syscall.Errno(errno)
- switch sysErr {
- case syscall.ENOENT, syscall.ESRCH:
- return ErrNotFound
- default:
- return E.New("netlink message: ", sysErr)
- }
- }
- func shouldRetrySocketDiag(err error) bool {
- return err != nil && !errors.Is(err, ErrNotFound)
- }
- func buildProcessPathByUIDCache(uid uint32) (map[uint32]string, error) {
- files, err := os.ReadDir(pathProc)
- if err != nil {
- return nil, err
- }
- buffer := make([]byte, syscall.PathMax)
- processPaths := make(map[uint32]string)
- for _, file := range files {
- if !file.IsDir() || !isPid(file.Name()) {
- continue
- }
- info, err := file.Info()
- if err != nil {
- if isIgnorableProcError(err) {
- continue
- }
- return nil, err
- }
- if info.Sys().(*syscall.Stat_t).Uid != uid {
- continue
- }
- processPath := filepath.Join(pathProc, file.Name())
- fdPath := filepath.Join(processPath, "fd")
- exePath, err := os.Readlink(filepath.Join(processPath, "exe"))
- if err != nil {
- if isIgnorableProcError(err) {
- continue
- }
- return nil, err
- }
- fds, err := os.ReadDir(fdPath)
- if err != nil {
- continue
- }
- for _, fd := range fds {
- n, err := syscall.Readlink(filepath.Join(fdPath, fd.Name()), buffer)
- if err != nil {
- continue
- }
- inode, ok := parseSocketInode(buffer[:n])
- if !ok {
- continue
- }
- if _, loaded := processPaths[inode]; !loaded {
- processPaths[inode] = exePath
- }
- }
- }
- return processPaths, nil
- }
- func isIgnorableProcError(err error) bool {
- return os.IsNotExist(err) || os.IsPermission(err)
- }
- func parseSocketInode(link []byte) (uint32, bool) {
- const socketPrefix = "socket:["
- if len(link) <= len(socketPrefix) || string(link[:len(socketPrefix)]) != socketPrefix || link[len(link)-1] != ']' {
- return 0, false
- }
- var inode uint64
- for _, char := range link[len(socketPrefix) : len(link)-1] {
- if char < '0' || char > '9' {
- return 0, false
- }
- inode = inode*10 + uint64(char-'0')
- if inode > uint64(^uint32(0)) {
- return 0, false
- }
- }
- return uint32(inode), true
- }
- func isPid(s string) bool {
- return strings.IndexFunc(s, func(r rune) bool {
- return !unicode.IsDigit(r)
- }) == -1
- }
|