-
Notifications
You must be signed in to change notification settings - Fork 194
/
sigar_linux.go
716 lines (583 loc) · 15.2 KB
/
sigar_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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
package sigar
import (
"bufio"
"bytes"
"errors"
"io"
"io/ioutil"
"os"
"strconv"
"strings"
"syscall"
)
const (
MaxUint64 = ^uint64(0)
// UnlimitedMemorySize defines the bytes size when memory limit is not set (2 ^ 63 - 4096)
UnlimitedMemorySize = "9223372036854771712"
)
var system struct {
ticks uint64
btime uint64
}
var Procd string
var Etcd string
var Sysd1 string
var Sysd2 string
// Files in system directories used here
// - Procd
// - /stat
// - /meminfo
// - /self/cgroup | 'grep :memory:' | split ':' | last => cgroup
// - /self/cgroup | 'grep ::' | split ':' | last => cgroup/fallback
// - /self/mounts
// - Sysd1 (cgroup v1)
// - memory/<cgroup>/memory.limit_in_bytes
// - memory/<cgroup>/memory.stat
// - Sysd2 (cgroup v2)
// - <cgroup>/memory.high
// - <cgroup>/memory.current
// - <cgroup>/memory.swap.current
//
// While Procd is fixed `/proc` the `Sysd*` directories are
// dynamic. I.e. while there are semi-standard mount points for the
// cgroup controllers, this is just convention. They can be mounted
// anywhere. The file `/proc/self/mounts` contains the information we
// need.
func init() {
system.ticks = 100 // C.sysconf(C._SC_CLK_TCK)
Procd = "/proc"
Etcd = "/etc"
Sysd1 = ""
Sysd2 = ""
determineControllerMounts(&Sysd1, &Sysd2)
// Fallbacks for cgroup controller mount points if nothing was
// found in /proc/self/mounts
if Sysd1 == "" {
Sysd1 = "/sys/fs/cgroup/memory"
}
if Sysd2 == "" {
Sysd2 = "/sys/fs/cgroup/unified"
}
// grab system boot time
readFile(Procd+"/stat", func(line string) bool {
if strings.HasPrefix(line, "btime") {
system.btime, _ = strtoull(line[6:])
return false // stop reading
}
return true
})
}
func (self *LoadAverage) Get() error {
line, err := ioutil.ReadFile(Procd + "/loadavg")
if err != nil {
return nil
}
fields := strings.Fields(string(line))
self.One, _ = strconv.ParseFloat(fields[0], 64)
self.Five, _ = strconv.ParseFloat(fields[1], 64)
self.Fifteen, _ = strconv.ParseFloat(fields[2], 64)
return nil
}
func (self *Uptime) Get() error {
sysinfo := syscall.Sysinfo_t{}
if err := syscall.Sysinfo(&sysinfo); err != nil {
return err
}
self.Length = float64(sysinfo.Uptime)
return nil
}
func (self *Mem) Get() error {
return self.get(false)
}
func (self *Mem) GetIgnoringCGroups() error {
return self.get(true)
}
func (self *Mem) get(ignoreCGroups bool) error {
var available uint64 = MaxUint64
var buffers, cached uint64
table := map[string]*uint64{
"MemTotal": &self.Total,
"MemFree": &self.Free,
"MemAvailable": &available,
"Buffers": &buffers,
"Cached": &cached,
}
if err := parseMeminfo(table); err != nil {
return err
}
if available == MaxUint64 {
self.ActualFree = self.Free + buffers + cached
} else {
self.ActualFree = available
}
self.Used = self.Total - self.Free
self.ActualUsed = self.Total - self.ActualFree
if ignoreCGroups {
return nil
}
// Instead of detecting if this code is run within a container
// or not (*), we simply attempt to retrieve the cgroup
// information about memory limits and usage and if present
// incorporate them into the results.
//
// 0. If we are unable to determine the Cgroup for the process
// we ignore it and stay with the host data.
//
// 1. If the cgroup limit is not available we ignore it and
// stay with the host data.
//
// 2. Note that we are taking the smaller of host total and
// cgroup limit, as the safer value for the total. The
// reason here is that there are Linux systems which report
// something like 8 EiB (Exa!) (**) as the cgroup limit, on
// systems which have only 64 GiB (Giga) of physical RAM.
//
// (*) There does not seem to be a truly reliable and portable
// means of detecting execution inside a container vs
// outside. Between all the platforms (macos, linux,
// windows), and container runtimes (docker, lxc, oci, ...).
//
// (**) The exact value actually is 2^63 - 4096, i.e
// 8 EiB - 4 KiB. This is, as far as is known, the
// maximum limit of the Linux virtual memory system.
var cgroup string
if err := determineSelfCgroup(&cgroup); err != nil {
// Unable to determine process' Cgroup
return nil
}
cgroupLimit, err := determineMemoryLimit(cgroup)
// (x) If the limit is not available or bogus we keep the host data as limit.
if err == nil && cgroupLimit < self.Total {
// See (2) above why only a cgroup limit less than the
// host total is accepted as the new total available
// memory in the cgroup.
self.Total = cgroupLimit
}
rss, err := determineMemoryUsage(cgroup)
if err != nil {
return nil
}
swap, err := determineSwapUsage(cgroup)
if err != nil {
// Swap information is optional. I.e. the kernel may
// have swap accounting disabled. Because of this any
// kind of trouble determining the swap usage is
// mapped to `no swap used`. This allows us to limp
// on with some inaccuracies, instead of aborting.
swap = 0
}
self.Used = rss + swap
self.Free = self.Total - self.Used
self.ActualUsed = self.Used
self.ActualFree = self.Free
return nil
}
func (self *Swap) Get() error {
table := map[string]*uint64{
"SwapTotal": &self.Total,
"SwapFree": &self.Free,
}
if err := parseMeminfo(table); err != nil {
return err
}
self.Used = self.Total - self.Free
return nil
}
func (self *Cpu) Get() error {
return readFile(Procd+"/stat", func(line string) bool {
if len(line) > 4 && line[0:4] == "cpu " {
parseCpuStat(self, line)
return false
}
return true
})
}
func (self *CpuList) Get() error {
capacity := len(self.List)
if capacity == 0 {
capacity = 4
}
list := make([]Cpu, 0, capacity)
err := readFile(Procd+"/stat", func(line string) bool {
if len(line) > 3 && line[0:3] == "cpu" && line[3] != ' ' {
cpu := Cpu{}
parseCpuStat(&cpu, line)
list = append(list, cpu)
}
return true
})
self.List = list
return err
}
func (self *FileSystemList) Get() error {
src := Etcd + "/mtab"
if _, err := os.Stat(src); err != nil {
src = Procd + "/mounts"
}
capacity := len(self.List)
if capacity == 0 {
capacity = 10
}
fslist := make([]FileSystem, 0, capacity)
err := readFile(src, func(line string) bool {
fields := strings.Fields(line)
fs := FileSystem{}
fs.DevName = fields[0]
fs.DirName = fields[1]
fs.SysTypeName = fields[2]
fs.Options = fields[3]
fslist = append(fslist, fs)
return true
})
self.List = fslist
return err
}
func (self *ProcList) Get() error {
dir, err := os.Open(Procd)
if err != nil {
return err
}
defer dir.Close()
const readAllDirnames = -1 // see os.File.Readdirnames doc
names, err := dir.Readdirnames(readAllDirnames)
if err != nil {
return err
}
capacity := len(names)
list := make([]int, 0, capacity)
for _, name := range names {
if name[0] < '0' || name[0] > '9' {
continue
}
pid, err := strconv.Atoi(name)
if err == nil {
list = append(list, pid)
}
}
self.List = list
return nil
}
func (self *ProcState) Get(pid int) error {
contents, err := readProcFile(pid, "stat")
if err != nil {
return err
}
fields := strings.Fields(string(contents))
self.Name = fields[1][1 : len(fields[1])-1] // strip ()'s
self.State = RunState(fields[2][0])
self.Ppid, _ = strconv.Atoi(fields[3])
self.Tty, _ = strconv.Atoi(fields[6])
self.Priority, _ = strconv.Atoi(fields[17])
self.Nice, _ = strconv.Atoi(fields[18])
self.Processor, _ = strconv.Atoi(fields[38])
return nil
}
func (self *ProcMem) Get(pid int) error {
contents, err := readProcFile(pid, "statm")
if err != nil {
return err
}
fields := strings.Fields(string(contents))
size, _ := strtoull(fields[0])
self.Size = size << 12
rss, _ := strtoull(fields[1])
self.Resident = rss << 12
share, _ := strtoull(fields[2])
self.Share = share << 12
contents, err = readProcFile(pid, "stat")
if err != nil {
return err
}
fields = strings.Fields(string(contents))
self.MinorFaults, _ = strtoull(fields[10])
self.MajorFaults, _ = strtoull(fields[12])
self.PageFaults = self.MinorFaults + self.MajorFaults
return nil
}
func (self *ProcTime) Get(pid int) error {
contents, err := readProcFile(pid, "stat")
if err != nil {
return err
}
fields := strings.Fields(string(contents))
user, _ := strtoull(fields[13])
sys, _ := strtoull(fields[14])
// convert to millis
self.User = user * (1000 / system.ticks)
self.Sys = sys * (1000 / system.ticks)
self.Total = self.User + self.Sys
// convert to millis
self.StartTime, _ = strtoull(fields[21])
self.StartTime /= system.ticks
self.StartTime += system.btime
self.StartTime *= 1000
return nil
}
func (self *ProcArgs) Get(pid int) error {
contents, err := readProcFile(pid, "cmdline")
if err != nil {
return err
}
bbuf := bytes.NewBuffer(contents)
var args []string
for {
arg, err := bbuf.ReadBytes(0)
if err == io.EOF {
break
}
args = append(args, string(chop(arg)))
}
self.List = args
return nil
}
func (self *ProcExe) Get(pid int) error {
fields := map[string]*string{
"exe": &self.Name,
"cwd": &self.Cwd,
"root": &self.Root,
}
for name, field := range fields {
val, err := os.Readlink(procFileName(pid, name))
if err != nil {
return err
}
*field = val
}
return nil
}
func determineSwapUsage(cgroup string) (uint64, error) {
// Check v2 over v1
usageAsString, err := ioutil.ReadFile(Sysd2 + cgroup + "/memory.swap.current")
if err == nil {
return strtoull(strings.Split(string(usageAsString), "\n")[0])
}
var swap uint64
table := map[string]*uint64{
"swap": &swap,
}
err, found := parseCgroupMeminfo(Sysd1+cgroup, table)
if err == nil {
if !found {
// If no data was found, simply claim `zero swap used`.
return 0, errors.New("no data found")
}
return swap, nil
}
return 0, err
}
func determineMemoryUsage(cgroup string) (uint64, error) {
// Check v2 over v1
usageAsString, err := ioutil.ReadFile(Sysd2 + cgroup + "/memory.current")
if err == nil {
return strtoull(strings.Split(string(usageAsString), "\n")[0])
}
var rss uint64
table := map[string]*uint64{
"total_rss": &rss,
}
err, found := parseCgroupMeminfo(Sysd1+cgroup, table)
if err == nil {
if !found {
return 0, errors.New("no data found")
}
return rss, nil
}
return 0, err
}
func determineMemoryLimit(cgroup string) (uint64, error) {
// Check v2 over v1
limitAsString, err := ioutil.ReadFile(Sysd2 + cgroup + "/memory.high")
if err == nil {
val := strings.Split(string(limitAsString), "\n")[0]
if val == "max" {
return 0, errors.New("no limit")
// See (x) in the caller where this keeps the host's self.Total.
}
return strtoull(val)
}
limitAsString, err = ioutil.ReadFile(Sysd1 + cgroup + "/memory.limit_in_bytes")
if string(limitAsString) != UnlimitedMemorySize && err == nil {
return strtoull(strings.Split(string(limitAsString), "\n")[0])
}
var limit uint64
table := map[string]*uint64{
"hierarchical_memory_limit": &limit,
}
err, found := parseCgroupMeminfo(Sysd1+cgroup, table)
if err == nil {
if !found {
// If no data was found, simply claim `zero limit set`.
return 0, errors.New("no hierarchical memory limit found")
}
return limit, nil
}
return 0, err
}
func determineSelfCgroup(cgroup *string) error {
// - /proc/self/cgroup
// Expected line syntax - id:tag:path
// Three fields required in each line.
// Look for a cgroup v1 memory controller first
err := readFile(Procd+"/self/cgroup", func(line string) bool {
fields := strings.Split(line, ":")
// Match: `*:memory:/path`
if len(fields) < 3 {
return true
}
if fields[1] == "memory" {
*cgroup = strings.Trim(fields[len(fields)-1], " ")
}
return true
})
if err != nil {
return err
}
if *cgroup != "" {
return nil
}
// Fall back to a cgroup v2 memory controller
err = readFile(Procd+"/self/cgroup", func(line string) bool {
fields := strings.Split(line, ":")
// Match: `0::/path`
if len(fields) < 3 {
return true
}
if (fields[0] == "0") && (fields[1] == "") {
*cgroup = strings.Trim(fields[len(fields)-1], " ")
}
return true
})
if err != nil {
return err
}
if *cgroup != "" {
return nil
}
return errors.New("unable to determine control group")
}
func parseMeminfo(table map[string]*uint64) error {
return readFile(Procd+"/meminfo", func(line string) bool {
fields := strings.Split(line, ":")
if ptr := table[fields[0]]; ptr != nil {
num := strings.TrimLeft(fields[1], " ")
val, err := strtoull(strings.Fields(num)[0])
if err == nil {
*ptr = val * 1024
}
}
return true
})
}
func parseCgroupMeminfo(cgroupDir string, table map[string]*uint64) (error, bool) {
var found bool
err := readFile(cgroupDir+"/memory.stat", func(line string) bool {
fields := strings.Split(line, " ")
if ptr := table[fields[0]]; ptr != nil {
num := strings.TrimLeft(fields[1], " ")
val, err := strtoull(strings.Fields(num)[0])
if err == nil {
*ptr = val
found = true
}
}
return true
})
if err != nil {
return err, false
}
return nil, found
}
func parseCpuStat(self *Cpu, line string) error {
fields := strings.Fields(line)
self.User, _ = strtoull(fields[1])
self.Nice, _ = strtoull(fields[2])
self.Sys, _ = strtoull(fields[3])
self.Idle, _ = strtoull(fields[4])
self.Wait, _ = strtoull(fields[5])
self.Irq, _ = strtoull(fields[6])
self.SoftIrq, _ = strtoull(fields[7])
self.Stolen, _ = strtoull(fields[8])
return nil
}
func readFile(file string, handler func(string) bool) error {
contents, err := ioutil.ReadFile(file)
if err != nil {
return err
}
reader := bufio.NewReader(bytes.NewBuffer(contents))
for {
line, _, err := reader.ReadLine()
if err == io.EOF {
break
}
if !handler(string(line)) {
break
}
}
return nil
}
func strtoull(val string) (uint64, error) {
return strconv.ParseUint(val, 10, 64)
}
func procFileName(pid int, name string) string {
return Procd + "/" + strconv.Itoa(pid) + "/" + name
}
func readProcFile(pid int, name string) ([]byte, error) {
path := procFileName(pid, name)
contents, err := ioutil.ReadFile(path)
if err != nil {
if perr, ok := err.(*os.PathError); ok {
if perr.Err == syscall.ENOENT {
return nil, syscall.ESRCH
}
}
}
return contents, err
}
func determineControllerMounts(sysd1, sysd2 *string) {
// grab cgroup controller mount points
readFile(Procd+"/self/mounts", func(line string) bool {
// Entries have the form `device path type options`.
// The elements are separated by single spaces.
//
// v2: `path` element of entry fulfilling `type == "cgroup2"`.
// v1: `path` element of entry fulfilling `type == "cgroup" && options ~ "memory"`
//
// NOTE: The `device` column can be anything. It
// cannot be used to pare down the set of entries
// going into the full check.
fields := strings.Split(line, " ")
if len(fields) < 4 {
return true
}
mpath := fields[1]
mtype := fields[2]
moptions := fields[3]
if mtype == "cgroup2" {
if *sysd2 != "" {
return true
}
*sysd2 = mpath
return true
}
if mtype == "cgroup" {
options := strings.Split(moptions, ",")
if stringSliceContains(options, "memory") {
if *sysd1 != "" {
return true
}
*sysd1 = mpath
return true
}
}
return true
})
}
func stringSliceContains(a []string, x string) bool {
for _, n := range a {
if x == n {
return true
}
}
return false
}