-
Notifications
You must be signed in to change notification settings - Fork 9
/
userent_linux.go
229 lines (206 loc) · 4.83 KB
/
userent_linux.go
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
package goss
import (
"errors"
"fmt"
"io"
"io/ioutil"
"log"
"net"
"os"
"path/filepath"
"strconv"
"strings"
"syscall"
)
var privateIPBlocks []*net.IPNet
func init() {
for _, cidr := range []string{
"10.0.0.0/8", // RFC1918
"172.16.0.0/12", // RFC1918
"192.168.0.0/16", // RFC1918
"::1/128", // IPv6 loopback
"fe80::/10", // IPv6 link-local
"fc00::/7", // IPv6 unique local addr
} {
_, block, err := net.ParseCIDR(cidr)
if err != nil {
panic(fmt.Errorf("parse error on %q: %v", cidr, err))
}
privateIPBlocks = append(privateIPBlocks, block)
}
}
// UserEnts represents a hashmap of UserEnt as key is the inode.
type UserEnts map[uint32]*UserEnt
// ResolveAddr lookup first hostname from IP Address.
func ResolveAddr(addr string) string {
hostnames, _ := net.LookupAddr(addr)
if len(hostnames) > 0 {
return strings.TrimSuffix(hostnames[0], ".")
}
return addr
}
// LocalIPAddrs gets the string slice of localhost IPaddrs.
func LocalIPAddrs() ([]string, error) {
addrs, err := net.InterfaceAddrs()
if err != nil {
return nil, errors.New("failed to get local addresses:" + err.Error())
}
addrStrings := make([]string, 0, len(addrs))
for _, a := range addrs {
if ipnet, ok := a.(*net.IPNet); ok && !ipnet.IP.IsLoopback() {
if ipnet.IP.To4() != nil {
addrStrings = append(addrStrings, ipnet.IP.String())
}
}
}
return addrStrings, nil
}
// IsPrivateIP returns whether 'ip' is in private network space.
func IsPrivateIP(ip net.IP) bool {
if ip.IsLoopback() {
return true
}
for _, block := range privateIPBlocks {
if block.Contains(ip) {
return true
}
}
return false
}
// BuildUserEntries scans under /proc/%pid/FD/.
func BuildUserEntries() (UserEnts, error) {
root := os.Getenv("PROC_ROOT")
if root == "" {
root = "/proc"
}
dir, err := ioutil.ReadDir(root)
if err != nil {
return nil, err
}
userEnts := make(UserEnts, 0)
for _, d := range dir {
// find only "<pid>"" directory
if !d.IsDir() {
continue
}
pid, err := strconv.Atoi(d.Name())
if err != nil {
continue
}
// skip self process
if pid == os.Getpid() {
continue
}
pidDir := filepath.Join(root, d.Name())
fdDir := filepath.Join(pidDir, "fd")
// exists FD?
fi, err := os.Stat(fdDir)
switch {
case err != nil:
return nil, fmt.Errorf("stat %s: %v", fdDir, err)
case !fi.IsDir():
continue
}
dir2, err := ioutil.ReadDir(fdDir)
if err != nil {
pathErr := err.(*os.PathError)
errno := pathErr.Err.(syscall.Errno)
if errno == syscall.EACCES {
// ignore "open: <path> permission denied"
continue
}
return nil, fmt.Errorf("readdir %s: %v", errno, err)
}
var stat *procStat
for _, d2 := range dir2 {
fd, err := strconv.Atoi(d2.Name())
if err != nil {
continue
}
fdpath := filepath.Join(fdDir, d2.Name())
lnk, err := os.Readlink(fdpath)
if err != nil {
pathErr := err.(*os.PathError)
errno := pathErr.Err.(syscall.Errno)
if errno == syscall.ENOENT {
// ignore "readlink: no such file or directory"
// because fdpath is disappear depending on timing
log.Printf("%v\n", pathErr)
continue
}
return nil, fmt.Errorf("readlink %s: %v", fdpath, err)
}
ino, err := parseSocketInode(lnk)
if err != nil {
return nil, err
}
if ino == 0 {
continue
}
if stat == nil {
stat, err = parseProcStat(root, pid)
if err != nil {
return nil, err
}
}
userEnts[ino] = &UserEnt{
Inode: ino,
FD: fd,
Pid: pid,
PName: stat.Pname,
PPid: stat.Ppid,
PGid: stat.Pgrp,
}
}
}
return userEnts, nil
}
type procStat struct {
Pname string // process name
Ppid int // parent process id
Pgrp int // process group id
}
func parseProcStat(root string, pid int) (*procStat, error) {
stat := fmt.Sprintf("%s/%d/stat", root, pid)
f, err := os.Open(stat)
if err != nil {
return nil, fmt.Errorf("could not open %s: %w", stat, err)
}
defer f.Close()
var (
pid2 int
comm string
state string
ppid int
pgrp int
)
if _, err := fmt.Fscan(f, &pid2, &comm, &state, &ppid, &pgrp); err != nil {
return nil, fmt.Errorf("could not scan '%s': %w", stat, err)
}
var pname string
// workaround: Sscanf return io.ErrUnexpectedEOF without knowing why.
if _, err := fmt.Sscanf(comm, "(%s)", &pname); err != nil && err != io.ErrUnexpectedEOF {
return nil, fmt.Errorf("could not scan '%s': %w", comm, err)
}
return &procStat{
Pname: strings.TrimRight(pname, ")"),
Ppid: ppid,
Pgrp: pgrp,
}, nil
}
func parseSocketInode(lnk string) (uint32, error) {
const pattern = "socket:["
ind := strings.Index(lnk, pattern)
if ind == -1 {
return 0, nil
}
var ino uint32
n, err := fmt.Sscanf(lnk, "socket:[%d]", &ino)
if err != nil {
return 0, err
}
if n != 1 {
return 0, fmt.Errorf("'%s' should be pattern '[socket:\\%d]'", lnk, n)
}
return ino, nil
}