Skip to content

Commit 90efec0

Browse files
authored
Merge pull request #1765 from shirou/feat/process_cwd_freebsd
[process][freebsd]: add CWD
2 parents ab66f2d + a284e30 commit 90efec0

6 files changed

+234
-106
lines changed

process/process_freebsd.go

+21-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ package process
66
import (
77
"bytes"
88
"context"
9+
"encoding/binary"
910
"errors"
1011
"path/filepath"
1112
"sort"
@@ -14,9 +15,9 @@ import (
1415

1516
"golang.org/x/sys/unix"
1617

17-
cpu "github.com/shirou/gopsutil/v4/cpu"
18+
"github.com/shirou/gopsutil/v4/cpu"
1819
"github.com/shirou/gopsutil/v4/internal/common"
19-
net "github.com/shirou/gopsutil/v4/net"
20+
"github.com/shirou/gopsutil/v4/net"
2021
)
2122

2223
func pidsWithContext(ctx context.Context) ([]int32, error) {
@@ -66,7 +67,24 @@ func (p *Process) NameWithContext(ctx context.Context) (string, error) {
6667
}
6768

6869
func (p *Process) CwdWithContext(ctx context.Context) (string, error) {
69-
return "", common.ErrNotImplementedError
70+
mib := []int32{CTLKern, KernProc, KernProcCwd, p.Pid}
71+
buf, length, err := common.CallSyscall(mib)
72+
if err != nil {
73+
return "", err
74+
}
75+
76+
if length != sizeOfKinfoFile {
77+
return "", errors.New("unexpected size of KinfoFile")
78+
}
79+
80+
var k kinfoFile
81+
br := bytes.NewReader(buf)
82+
if err := common.Read(br, binary.LittleEndian, &k); err != nil {
83+
return "", err
84+
}
85+
cwd := common.IntToString(k.Path[:])
86+
87+
return cwd, nil
7088
}
7189

7290
func (p *Process) ExeWithContext(ctx context.Context) (string, error) {

process/process_freebsd_386.go

+25
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const (
1111
KernProcProc = 8
1212
KernProcPathname = 12
1313
KernProcArgs = 7
14+
KernProcCwd = 42
1415
)
1516

1617
const (
@@ -24,6 +25,7 @@ const (
2425
const (
2526
sizeOfKinfoVmentry = 0x488
2627
sizeOfKinfoProc = 0x300
28+
sizeOfKinfoFile = 0x570 // TODO: should be changed by running on the target machine
2729
)
2830

2931
const (
@@ -191,3 +193,26 @@ type KinfoVmentry struct {
191193
X_kve_ispare [12]int32
192194
Path [1024]int8
193195
}
196+
197+
// TODO: should be changed by running on the target machine
198+
type kinfoFile struct {
199+
Structsize int32
200+
Type int32
201+
Fd int32
202+
Ref_count int32
203+
Flags int32
204+
Pad0 int32
205+
Offset int64
206+
Anon0 [304]byte
207+
Status uint16
208+
Pad1 uint16
209+
X_kf_ispare0 int32
210+
Cap_rights capRights
211+
X_kf_cap_spare uint64
212+
Path [1024]int8 // changed from uint8 by hand
213+
}
214+
215+
// TODO: should be changed by running on the target machine
216+
type capRights struct {
217+
Rights [2]uint64
218+
}

process/process_freebsd_amd64.go

+134-103
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

process/process_freebsd_arm.go

+25
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const (
1111
KernProcProc = 8
1212
KernProcPathname = 12
1313
KernProcArgs = 7
14+
KernProcCwd = 42
1415
)
1516

1617
const (
@@ -24,6 +25,7 @@ const (
2425
const (
2526
sizeOfKinfoVmentry = 0x488
2627
sizeOfKinfoProc = 0x440
28+
sizeOfKinfoFile = 0x570 // TODO: should be changed by running on the target machine
2729
)
2830

2931
const (
@@ -191,3 +193,26 @@ type KinfoVmentry struct {
191193
X_kve_ispare [12]int32
192194
Path [1024]int8
193195
}
196+
197+
// TODO: should be changed by running on the target machine
198+
type kinfoFile struct {
199+
Structsize int32
200+
Type int32
201+
Fd int32
202+
Ref_count int32
203+
Flags int32
204+
Pad0 int32
205+
Offset int64
206+
Anon0 [304]byte
207+
Status uint16
208+
Pad1 uint16
209+
X_kf_ispare0 int32
210+
Cap_rights capRights
211+
X_kf_cap_spare uint64
212+
Path [1024]int8 // changed from uint8 by hand
213+
}
214+
215+
// TODO: should be changed by running on the target machine
216+
type capRights struct {
217+
Rights [2]uint64
218+
}

0 commit comments

Comments
 (0)