2014-04-22 18:25:28 +08:00
|
|
|
// +build freebsd
|
|
|
|
|
2014-12-30 21:09:05 +08:00
|
|
|
package disk
|
2014-04-22 18:25:28 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
"unsafe"
|
2014-11-27 09:18:15 +08:00
|
|
|
|
|
|
|
common "github.com/shirou/gopsutil/common"
|
2014-04-22 18:25:28 +08:00
|
|
|
)
|
|
|
|
|
2014-04-30 14:32:05 +08:00
|
|
|
func DiskPartitions(all bool) ([]DiskPartitionStat, error) {
|
2014-04-30 15:19:39 +08:00
|
|
|
var ret []DiskPartitionStat
|
2014-04-22 18:25:28 +08:00
|
|
|
|
|
|
|
// get length
|
2014-08-16 02:05:26 +08:00
|
|
|
count, err := syscall.Getfsstat(nil, MntWait)
|
2014-04-22 18:25:28 +08:00
|
|
|
if err != nil {
|
|
|
|
return ret, err
|
|
|
|
}
|
|
|
|
|
2014-05-24 23:48:01 +08:00
|
|
|
fs := make([]Statfs, count)
|
2014-08-16 02:05:26 +08:00
|
|
|
_, err = Getfsstat(fs, MntWait)
|
2014-04-22 18:25:28 +08:00
|
|
|
|
|
|
|
for _, stat := range fs {
|
|
|
|
opts := "rw"
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntReadOnly != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts = "ro"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntSynchronous != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",sync"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntNoExec != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",noexec"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntNoSuid != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",nosuid"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntUnion != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",union"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntAsync != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",async"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntSuidDir != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",suiddir"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntSoftDep != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",softdep"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntNoSymFollow != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",nosymfollow"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntGEOMJournal != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",gjounalc"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntMultilabel != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",multilabel"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntACLs != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",acls"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntNoATime != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",noattime"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntClusterRead != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",nocluster"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntClusterWrite != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",noclusterw"
|
|
|
|
}
|
2014-08-16 02:05:26 +08:00
|
|
|
if stat.FFlags&MntNFS4ACLs != 0 {
|
2014-04-22 18:25:28 +08:00
|
|
|
opts += ",nfs4acls"
|
|
|
|
}
|
|
|
|
|
2014-04-30 15:19:39 +08:00
|
|
|
d := DiskPartitionStat{
|
2014-11-27 09:18:15 +08:00
|
|
|
Device: common.ByteToString(stat.FMntfromname[:]),
|
|
|
|
Mountpoint: common.ByteToString(stat.FMntonname[:]),
|
|
|
|
Fstype: common.ByteToString(stat.FFstypename[:]),
|
2014-04-22 18:25:28 +08:00
|
|
|
Opts: opts,
|
|
|
|
}
|
|
|
|
ret = append(ret, d)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
2014-04-30 14:32:05 +08:00
|
|
|
func DiskIOCounters() (map[string]DiskIOCountersStat, error) {
|
2014-11-27 09:18:15 +08:00
|
|
|
return nil, common.NotImplementedError
|
2014-06-02 22:50:55 +08:00
|
|
|
|
|
|
|
// statinfo->devinfo->devstat
|
2014-06-10 13:35:59 +08:00
|
|
|
// /usr/include/devinfo.h
|
2014-06-02 22:50:55 +08:00
|
|
|
|
|
|
|
// get length
|
2014-08-16 02:05:26 +08:00
|
|
|
count, err := Getfsstat(nil, MntWait)
|
2014-06-02 22:50:55 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
fs := make([]Statfs, count)
|
2014-08-16 02:05:26 +08:00
|
|
|
_, err = Getfsstat(fs, MntWait)
|
2014-06-02 22:50:55 +08:00
|
|
|
|
2014-04-30 15:16:07 +08:00
|
|
|
ret := make(map[string]DiskIOCountersStat, 0)
|
2014-06-02 22:50:55 +08:00
|
|
|
for _, stat := range fs {
|
2014-11-27 09:25:14 +08:00
|
|
|
name := common.ByteToString(stat.FMntonname[:])
|
2014-06-02 22:50:55 +08:00
|
|
|
d := DiskIOCountersStat{
|
|
|
|
Name: name,
|
|
|
|
ReadCount: stat.FSyncwrites + stat.FAsyncwrites,
|
|
|
|
WriteCount: stat.FSyncreads + stat.FAsyncreads,
|
|
|
|
}
|
|
|
|
|
|
|
|
ret[name] = d
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret, nil
|
2014-04-29 13:59:22 +08:00
|
|
|
}
|
|
|
|
|
2014-04-30 14:32:05 +08:00
|
|
|
// Getfsstat is borrowed from pkg/syscall/syscall_freebsd.go
|
2014-04-22 18:25:28 +08:00
|
|
|
// change Statfs_t to Statfs in order to get more information
|
|
|
|
func Getfsstat(buf []Statfs, flags int) (n int, err error) {
|
|
|
|
var _p0 unsafe.Pointer
|
|
|
|
var bufsize uintptr
|
|
|
|
if len(buf) > 0 {
|
|
|
|
_p0 = unsafe.Pointer(&buf[0])
|
|
|
|
bufsize = unsafe.Sizeof(Statfs{}) * uintptr(len(buf))
|
|
|
|
}
|
|
|
|
r0, _, e1 := syscall.Syscall(syscall.SYS_GETFSSTAT, uintptr(_p0), bufsize, uintptr(flags))
|
|
|
|
n = int(r0)
|
|
|
|
if e1 != 0 {
|
|
|
|
err = e1
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|