Skip to content

Commit e979fa4

Browse files
vykulakovdiscordianfish
authored andcommitted
Fix data types for ignored stat fields #401
Some ignored fields in the /proc/[pid]/stat file may have values that are bigger than the max value of the current Go type that is used for the ignored variable. That leads to issues in runtime on some systems that use the maximum possible values for the related fields. See for details: * https://man7.org/linux/man-pages/man5/proc.5.html * https://man7.org/linux/man-pages/man3/scanf.3.html Signed-off-by: Vyacheslav Kulakov <[email protected]>
1 parent f8ee60a commit e979fa4

File tree

2 files changed

+29
-16
lines changed

2 files changed

+29
-16
lines changed

proc_stat.go

+17-16
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ func (p Proc) Stat() (ProcStat, error) {
128128
}
129129

130130
var (
131-
ignore int
131+
ignoreInt64 int64
132+
ignoreUint64 uint64
132133

133134
s = ProcStat{PID: p.PID, proc: p.fs}
134135
l = bytes.Index(data, []byte("("))
@@ -160,25 +161,25 @@ func (p Proc) Stat() (ProcStat, error) {
160161
&s.Priority,
161162
&s.Nice,
162163
&s.NumThreads,
163-
&ignore,
164+
&ignoreInt64,
164165
&s.Starttime,
165166
&s.VSize,
166167
&s.RSS,
167168
&s.RSSLimit,
168-
&ignore,
169-
&ignore,
170-
&ignore,
171-
&ignore,
172-
&ignore,
173-
&ignore,
174-
&ignore,
175-
&ignore,
176-
&ignore,
177-
&ignore,
178-
&ignore,
179-
&ignore,
180-
&ignore,
181-
&ignore,
169+
&ignoreUint64,
170+
&ignoreUint64,
171+
&ignoreUint64,
172+
&ignoreUint64,
173+
&ignoreUint64,
174+
&ignoreUint64,
175+
&ignoreUint64,
176+
&ignoreUint64,
177+
&ignoreUint64,
178+
&ignoreUint64,
179+
&ignoreUint64,
180+
&ignoreUint64,
181+
&ignoreInt64,
182+
&ignoreInt64,
182183
&s.RTPriority,
183184
&s.Policy,
184185
&s.DelayAcctBlkIOTicks,

proc_stat_test.go

+12
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,18 @@ func TestProcStat(t *testing.T) {
7676
}
7777
}
7878

79+
func TestProcStatIgnored(t *testing.T) {
80+
p, err := getProcFixtures(t).Proc(26232)
81+
if err != nil {
82+
t.Fatal(err)
83+
}
84+
85+
_, err = p.Stat()
86+
if err != nil {
87+
t.Errorf("want not error, have %s", err)
88+
}
89+
}
90+
7991
func TestProcStatComm(t *testing.T) {
8092
s1, err := testProcStat(26231)
8193
if err != nil {

0 commit comments

Comments
 (0)