disk_darwin.go 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. // +build darwin
  2. package disk
  3. import (
  4. "context"
  5. "path"
  6. "unsafe"
  7. "github.com/shirou/gopsutil/internal/common"
  8. "golang.org/x/sys/unix"
  9. )
  10. func Partitions(all bool) ([]PartitionStat, error) {
  11. return PartitionsWithContext(context.Background(), all)
  12. }
  13. func PartitionsWithContext(ctx context.Context, all bool) ([]PartitionStat, error) {
  14. var ret []PartitionStat
  15. count, err := Getfsstat(nil, MntWait)
  16. if err != nil {
  17. return ret, err
  18. }
  19. fs := make([]Statfs, count)
  20. if _, err = Getfsstat(fs, MntWait); err != nil {
  21. return ret, err
  22. }
  23. for _, stat := range fs {
  24. opts := "rw"
  25. if stat.Flags&MntReadOnly != 0 {
  26. opts = "ro"
  27. }
  28. if stat.Flags&MntSynchronous != 0 {
  29. opts += ",sync"
  30. }
  31. if stat.Flags&MntNoExec != 0 {
  32. opts += ",noexec"
  33. }
  34. if stat.Flags&MntNoSuid != 0 {
  35. opts += ",nosuid"
  36. }
  37. if stat.Flags&MntUnion != 0 {
  38. opts += ",union"
  39. }
  40. if stat.Flags&MntAsync != 0 {
  41. opts += ",async"
  42. }
  43. if stat.Flags&MntSuidDir != 0 {
  44. opts += ",suiddir"
  45. }
  46. if stat.Flags&MntSoftDep != 0 {
  47. opts += ",softdep"
  48. }
  49. if stat.Flags&MntNoSymFollow != 0 {
  50. opts += ",nosymfollow"
  51. }
  52. if stat.Flags&MntGEOMJournal != 0 {
  53. opts += ",gjounalc"
  54. }
  55. if stat.Flags&MntMultilabel != 0 {
  56. opts += ",multilabel"
  57. }
  58. if stat.Flags&MntACLs != 0 {
  59. opts += ",acls"
  60. }
  61. if stat.Flags&MntNoATime != 0 {
  62. opts += ",noattime"
  63. }
  64. if stat.Flags&MntClusterRead != 0 {
  65. opts += ",nocluster"
  66. }
  67. if stat.Flags&MntClusterWrite != 0 {
  68. opts += ",noclusterw"
  69. }
  70. if stat.Flags&MntNFS4ACLs != 0 {
  71. opts += ",nfs4acls"
  72. }
  73. d := PartitionStat{
  74. Device: common.IntToString(stat.Mntfromname[:]),
  75. Mountpoint: common.IntToString(stat.Mntonname[:]),
  76. Fstype: common.IntToString(stat.Fstypename[:]),
  77. Opts: opts,
  78. }
  79. if all == false {
  80. if !path.IsAbs(d.Device) || !common.PathExists(d.Device) {
  81. continue
  82. }
  83. }
  84. ret = append(ret, d)
  85. }
  86. return ret, nil
  87. }
  88. func Getfsstat(buf []Statfs, flags int) (n int, err error) {
  89. return GetfsstatWithContext(context.Background(), buf, flags)
  90. }
  91. func GetfsstatWithContext(ctx context.Context, buf []Statfs, flags int) (n int, err error) {
  92. var _p0 unsafe.Pointer
  93. var bufsize uintptr
  94. if len(buf) > 0 {
  95. _p0 = unsafe.Pointer(&buf[0])
  96. bufsize = unsafe.Sizeof(Statfs{}) * uintptr(len(buf))
  97. }
  98. r0, _, e1 := unix.Syscall(SYS_GETFSSTAT64, uintptr(_p0), bufsize, uintptr(flags))
  99. n = int(r0)
  100. if e1 != 0 {
  101. err = e1
  102. }
  103. return
  104. }
  105. func getFsType(stat unix.Statfs_t) string {
  106. return common.IntToString(stat.Fstypename[:])
  107. }