2020-02-05 22:16:58 +00:00
|
|
|
// Copyright (c) 2020 Tailscale Inc & 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 portlist
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2020-07-28 20:17:38 +00:00
|
|
|
"runtime"
|
2020-02-05 22:16:58 +00:00
|
|
|
"sort"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2020-07-28 20:17:38 +00:00
|
|
|
"syscall"
|
2020-03-14 03:53:58 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"golang.org/x/sys/unix"
|
2020-07-28 20:17:38 +00:00
|
|
|
"tailscale.com/syncs"
|
2020-02-05 22:16:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Reading the sockfiles on Linux is very fast, so we can do it often.
|
2020-03-14 03:53:58 +00:00
|
|
|
const pollInterval = 1 * time.Second
|
2020-02-05 22:16:58 +00:00
|
|
|
|
|
|
|
// TODO(apenwarr): Include IPv6 ports eventually.
|
|
|
|
// Right now we don't route IPv6 anyway so it's better to exclude them.
|
|
|
|
var sockfiles = []string{"/proc/net/tcp", "/proc/net/udp"}
|
2020-05-08 23:04:13 +00:00
|
|
|
var protos = []string{"tcp", "udp"}
|
2020-02-05 22:16:58 +00:00
|
|
|
|
2020-07-28 20:17:38 +00:00
|
|
|
var sawProcNetPermissionErr syncs.AtomicBool
|
|
|
|
|
2020-02-05 22:16:58 +00:00
|
|
|
func listPorts() (List, error) {
|
2020-07-28 20:17:38 +00:00
|
|
|
if sawProcNetPermissionErr.Get() {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2020-02-05 22:16:58 +00:00
|
|
|
l := []Port{}
|
|
|
|
|
|
|
|
for pi, fname := range sockfiles {
|
|
|
|
proto := protos[pi]
|
|
|
|
|
2020-07-28 20:17:38 +00:00
|
|
|
// Android 10+ doesn't allow access to this anymore.
|
|
|
|
// https://developer.android.com/about/versions/10/privacy/changes#proc-net-filesystem
|
|
|
|
// Ignore it rather than have the system log about our violation.
|
|
|
|
if runtime.GOOS == "android" && syscall.Access(fname, unix.R_OK) != nil {
|
|
|
|
sawProcNetPermissionErr.Set(true)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2020-02-05 22:16:58 +00:00
|
|
|
f, err := os.Open(fname)
|
2020-07-28 20:17:38 +00:00
|
|
|
if os.IsPermission(err) {
|
|
|
|
sawProcNetPermissionErr.Set(true)
|
|
|
|
return nil, nil
|
|
|
|
}
|
2020-02-05 22:16:58 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("%s: %s", fname, err)
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
r := bufio.NewReader(f)
|
|
|
|
|
|
|
|
// skip header row
|
|
|
|
_, err = r.ReadString('\n')
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for err == nil {
|
|
|
|
line, err := r.ReadString('\n')
|
|
|
|
if err == io.EOF {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// sl local rem ... inode
|
|
|
|
words := strings.Fields(line)
|
|
|
|
local := words[1]
|
|
|
|
rem := words[2]
|
|
|
|
inode := words[9]
|
|
|
|
|
2020-03-18 03:19:39 +00:00
|
|
|
// If a port is bound to 127.0.0.1, ignore it.
|
|
|
|
if strings.HasPrefix(local, "0100007F:") {
|
|
|
|
continue
|
|
|
|
}
|
2020-02-05 22:16:58 +00:00
|
|
|
if rem != "00000000:0000" {
|
|
|
|
// not a "listener" port
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
portv, err := strconv.ParseUint(local[9:], 16, 16)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("%#v: %s", local[9:], err)
|
|
|
|
}
|
|
|
|
inodev := fmt.Sprintf("socket:[%s]", inode)
|
|
|
|
l = append(l, Port{
|
|
|
|
Proto: proto,
|
|
|
|
Port: uint16(portv),
|
|
|
|
inode: inodev,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Slice(l, func(i, j int) bool {
|
|
|
|
return (&l[i]).lessThan(&l[j])
|
|
|
|
})
|
|
|
|
|
|
|
|
return l, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func addProcesses(pl []Port) ([]Port, error) {
|
2020-03-14 03:53:58 +00:00
|
|
|
pm := map[string]*Port{} // by Port.inode
|
|
|
|
for i := range pl {
|
|
|
|
pm[pl[i].inode] = &pl[i]
|
|
|
|
}
|
|
|
|
|
|
|
|
err := foreachPID(func(pid string) error {
|
2020-07-28 20:17:38 +00:00
|
|
|
fdPath := fmt.Sprintf("/proc/%s/fd", pid)
|
|
|
|
|
|
|
|
// Android logs a bunch of audit violations in logcat
|
|
|
|
// if we try to open things we don't have access
|
|
|
|
// to. So on Android only, ask if we have permission
|
|
|
|
// rather than just trying it to determine whether we
|
|
|
|
// have permission.
|
|
|
|
if runtime.GOOS == "android" && syscall.Access(fdPath, unix.R_OK) != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
fdDir, err := os.Open(fdPath)
|
2020-03-14 03:53:58 +00:00
|
|
|
if err != nil {
|
|
|
|
// Can't open fd list for this pid. Maybe
|
|
|
|
// don't have access. Ignore it.
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
defer fdDir.Close()
|
|
|
|
|
|
|
|
targetBuf := make([]byte, 64) // plenty big for "socket:[165614651]"
|
|
|
|
for {
|
|
|
|
fds, err := fdDir.Readdirnames(100)
|
|
|
|
if err == io.EOF {
|
|
|
|
return nil
|
|
|
|
}
|
2020-05-19 05:48:55 +00:00
|
|
|
if os.IsNotExist(err) {
|
|
|
|
// This can happen if the directory we're
|
|
|
|
// reading disappears during the run. No big
|
|
|
|
// deal.
|
|
|
|
return nil
|
|
|
|
}
|
2020-03-14 03:53:58 +00:00
|
|
|
if err != nil {
|
2020-05-04 14:44:41 +00:00
|
|
|
return fmt.Errorf("addProcesses.readDir: %w", err)
|
2020-03-14 03:53:58 +00:00
|
|
|
}
|
|
|
|
for _, fd := range fds {
|
|
|
|
n, err := unix.Readlink(fmt.Sprintf("/proc/%s/fd/%s", pid, fd), targetBuf)
|
|
|
|
if err != nil {
|
|
|
|
// Not a symlink or no permission.
|
|
|
|
// Skip it.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
pe := pm[string(targetBuf[:n])] // m[string([]byte)] avoids alloc
|
|
|
|
if pe != nil {
|
2021-03-04 03:00:41 +00:00
|
|
|
bs, err := ioutil.ReadFile(fmt.Sprintf("/proc/%s/cmdline", pid))
|
2020-03-14 03:53:58 +00:00
|
|
|
if err != nil {
|
|
|
|
// Usually shouldn't happen. One possibility is
|
|
|
|
// the process has gone away, so let's skip it.
|
|
|
|
continue
|
|
|
|
}
|
2021-03-04 03:00:41 +00:00
|
|
|
|
|
|
|
argv := strings.Split(strings.TrimSuffix(string(bs), "\x00"), "\x00")
|
|
|
|
pe.Process = argvSubject(argv...)
|
2020-03-14 03:53:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2020-02-05 22:16:58 +00:00
|
|
|
}
|
2020-03-14 03:53:58 +00:00
|
|
|
return pl, nil
|
|
|
|
}
|
2020-02-05 22:16:58 +00:00
|
|
|
|
2020-03-14 03:53:58 +00:00
|
|
|
func foreachPID(fn func(pidStr string) error) error {
|
2020-02-05 22:16:58 +00:00
|
|
|
pdir, err := os.Open("/proc")
|
|
|
|
if err != nil {
|
2020-03-14 03:53:58 +00:00
|
|
|
return err
|
2020-02-05 22:16:58 +00:00
|
|
|
}
|
|
|
|
defer pdir.Close()
|
|
|
|
|
|
|
|
for {
|
|
|
|
pids, err := pdir.Readdirnames(100)
|
|
|
|
if err == io.EOF {
|
2020-03-14 03:53:58 +00:00
|
|
|
return nil
|
2020-02-05 22:16:58 +00:00
|
|
|
}
|
2020-05-19 05:48:55 +00:00
|
|
|
if os.IsNotExist(err) {
|
|
|
|
// This can happen if the directory we're
|
|
|
|
// reading disappears during the run. No big
|
|
|
|
// deal.
|
|
|
|
return nil
|
|
|
|
}
|
2020-02-05 22:16:58 +00:00
|
|
|
if err != nil {
|
2020-05-04 14:44:41 +00:00
|
|
|
return fmt.Errorf("foreachPID.readdir: %w", err)
|
2020-02-05 22:16:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, pid := range pids {
|
|
|
|
_, err := strconv.ParseInt(pid, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
// not a pid, ignore it.
|
|
|
|
// /proc has lots of non-pid stuff in it.
|
|
|
|
continue
|
|
|
|
}
|
2020-03-14 03:53:58 +00:00
|
|
|
if err := fn(pid); err != nil {
|
|
|
|
return err
|
2020-02-05 22:16:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|