2018-10-17 20:20:35 +00:00
|
|
|
// +build openbsd
|
|
|
|
|
|
|
|
package disk
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2018-10-19 18:33:23 +00:00
|
|
|
"context"
|
2018-10-17 20:20:35 +00:00
|
|
|
"encoding/binary"
|
|
|
|
"path"
|
|
|
|
"unsafe"
|
|
|
|
|
|
|
|
"github.com/shirou/gopsutil/internal/common"
|
2018-10-19 18:33:23 +00:00
|
|
|
"golang.org/x/sys/unix"
|
2018-10-17 20:20:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func Partitions(all bool) ([]PartitionStat, error) {
|
2018-10-19 18:33:23 +00:00
|
|
|
return PartitionsWithContext(context.Background(), all)
|
|
|
|
}
|
|
|
|
|
|
|
|
func PartitionsWithContext(ctx context.Context, all bool) ([]PartitionStat, error) {
|
2018-10-17 20:20:35 +00:00
|
|
|
var ret []PartitionStat
|
|
|
|
|
|
|
|
// get length
|
2018-10-19 18:33:23 +00:00
|
|
|
count, err := unix.Getfsstat(nil, MNT_WAIT)
|
2018-10-17 20:20:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return ret, err
|
|
|
|
}
|
|
|
|
|
|
|
|
fs := make([]Statfs, count)
|
2018-10-19 18:33:23 +00:00
|
|
|
if _, err = Getfsstat(fs, MNT_WAIT); err != nil {
|
|
|
|
return ret, err
|
|
|
|
}
|
2018-10-17 20:20:35 +00:00
|
|
|
|
|
|
|
for _, stat := range fs {
|
|
|
|
opts := "rw"
|
|
|
|
if stat.F_flags&MNT_RDONLY != 0 {
|
|
|
|
opts = "ro"
|
|
|
|
}
|
|
|
|
if stat.F_flags&MNT_SYNCHRONOUS != 0 {
|
|
|
|
opts += ",sync"
|
|
|
|
}
|
|
|
|
if stat.F_flags&MNT_NOEXEC != 0 {
|
|
|
|
opts += ",noexec"
|
|
|
|
}
|
|
|
|
if stat.F_flags&MNT_NOSUID != 0 {
|
|
|
|
opts += ",nosuid"
|
|
|
|
}
|
|
|
|
if stat.F_flags&MNT_NODEV != 0 {
|
|
|
|
opts += ",nodev"
|
|
|
|
}
|
|
|
|
if stat.F_flags&MNT_ASYNC != 0 {
|
|
|
|
opts += ",async"
|
|
|
|
}
|
|
|
|
|
|
|
|
d := PartitionStat{
|
|
|
|
Device: common.IntToString(stat.F_mntfromname[:]),
|
|
|
|
Mountpoint: common.IntToString(stat.F_mntonname[:]),
|
|
|
|
Fstype: common.IntToString(stat.F_fstypename[:]),
|
|
|
|
Opts: opts,
|
|
|
|
}
|
|
|
|
if all == false {
|
|
|
|
if !path.IsAbs(d.Device) || !common.PathExists(d.Device) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = append(ret, d)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
2018-10-19 18:33:23 +00:00
|
|
|
func IOCounters(names ...string) (map[string]IOCountersStat, error) {
|
|
|
|
return IOCountersWithContext(context.Background(), names...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func IOCountersWithContext(ctx context.Context, names ...string) (map[string]IOCountersStat, error) {
|
2018-10-17 20:20:35 +00:00
|
|
|
ret := make(map[string]IOCountersStat)
|
|
|
|
|
2018-10-19 18:33:23 +00:00
|
|
|
r, err := unix.SysctlRaw("hw.diskstats")
|
2018-10-17 20:20:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
buf := []byte(r)
|
|
|
|
length := len(buf)
|
|
|
|
|
|
|
|
count := int(uint64(length) / uint64(sizeOfDiskstats))
|
|
|
|
|
|
|
|
// parse buf to Diskstats
|
|
|
|
for i := 0; i < count; i++ {
|
|
|
|
b := buf[i*sizeOfDiskstats : i*sizeOfDiskstats+sizeOfDiskstats]
|
|
|
|
d, err := parseDiskstats(b)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
name := common.IntToString(d.Name[:])
|
|
|
|
|
2018-10-19 18:33:23 +00:00
|
|
|
if len(names) > 0 && !common.StringsHas(names, name) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-10-17 20:20:35 +00:00
|
|
|
ds := IOCountersStat{
|
|
|
|
ReadCount: d.Rxfer,
|
|
|
|
WriteCount: d.Wxfer,
|
|
|
|
ReadBytes: d.Rbytes,
|
|
|
|
WriteBytes: d.Wbytes,
|
|
|
|
Name: name,
|
|
|
|
}
|
|
|
|
ret[name] = ds
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// BT2LD(time) ((long double)(time).sec + (time).frac * BINTIME_SCALE)
|
|
|
|
|
|
|
|
// Getfsstat is borrowed from pkg/syscall/syscall_freebsd.go
|
|
|
|
// change Statfs_t to Statfs in order to get more information
|
|
|
|
func Getfsstat(buf []Statfs, flags int) (n int, err error) {
|
2018-10-19 18:33:23 +00:00
|
|
|
return GetfsstatWithContext(context.Background(), buf, flags)
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetfsstatWithContext(ctx context.Context, buf []Statfs, flags int) (n int, err error) {
|
2018-10-17 20:20:35 +00:00
|
|
|
var _p0 unsafe.Pointer
|
|
|
|
var bufsize uintptr
|
|
|
|
if len(buf) > 0 {
|
|
|
|
_p0 = unsafe.Pointer(&buf[0])
|
|
|
|
bufsize = unsafe.Sizeof(Statfs{}) * uintptr(len(buf))
|
|
|
|
}
|
2018-10-19 18:33:23 +00:00
|
|
|
r0, _, e1 := unix.Syscall(unix.SYS_GETFSSTAT, uintptr(_p0), bufsize, uintptr(flags))
|
2018-10-17 20:20:35 +00:00
|
|
|
n = int(r0)
|
|
|
|
if e1 != 0 {
|
|
|
|
err = e1
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseDiskstats(buf []byte) (Diskstats, error) {
|
|
|
|
var ds Diskstats
|
|
|
|
br := bytes.NewReader(buf)
|
|
|
|
// err := binary.Read(br, binary.LittleEndian, &ds)
|
|
|
|
err := common.Read(br, binary.LittleEndian, &ds)
|
|
|
|
if err != nil {
|
|
|
|
return ds, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return ds, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func Usage(path string) (*UsageStat, error) {
|
2018-10-19 18:33:23 +00:00
|
|
|
return UsageWithContext(context.Background(), path)
|
|
|
|
}
|
|
|
|
|
|
|
|
func UsageWithContext(ctx context.Context, path string) (*UsageStat, error) {
|
|
|
|
stat := unix.Statfs_t{}
|
|
|
|
err := unix.Statfs(path, &stat)
|
2018-10-17 20:20:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
bsize := stat.F_bsize
|
|
|
|
|
|
|
|
ret := &UsageStat{
|
|
|
|
Path: path,
|
|
|
|
Fstype: getFsType(stat),
|
|
|
|
Total: (uint64(stat.F_blocks) * uint64(bsize)),
|
|
|
|
Free: (uint64(stat.F_bavail) * uint64(bsize)),
|
|
|
|
InodesTotal: (uint64(stat.F_files)),
|
|
|
|
InodesFree: (uint64(stat.F_ffree)),
|
|
|
|
}
|
|
|
|
|
|
|
|
ret.InodesUsed = (ret.InodesTotal - ret.InodesFree)
|
|
|
|
ret.InodesUsedPercent = (float64(ret.InodesUsed) / float64(ret.InodesTotal)) * 100.0
|
|
|
|
ret.Used = (uint64(stat.F_blocks) - uint64(stat.F_bfree)) * uint64(bsize)
|
|
|
|
ret.UsedPercent = (float64(ret.Used) / float64(ret.Total)) * 100.0
|
|
|
|
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
2018-10-19 18:33:23 +00:00
|
|
|
func getFsType(stat unix.Statfs_t) string {
|
2018-10-17 20:20:35 +00:00
|
|
|
return common.IntToString(stat.F_fstypename[:])
|
|
|
|
}
|