6c9628cdb1
* Rename 'vendor/src' -> 'vendor' * Ignore vendor/ instead of vendor/src/ for lint * Rename 'cmd/client' -> 'cmd/ocic' to make it 'go install'able * Rename 'cmd/server' -> 'cmd/ocid' to make it 'go install'able * Update Makefile to build and install from GOPATH * Update tests to locate ocid/ocic in GOPATH/bin * Search for binaries in GOPATH/bin instead of PATH * Install tools using `go get -u`, so they are updated on each run Signed-off-by: Jonathan Yu <jawnsy@redhat.com>
74 lines
2.1 KiB
Go
74 lines
2.1 KiB
Go
package mount
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// GetMounts retrieves a list of mounts for the current running process.
|
|
func GetMounts() ([]*Info, error) {
|
|
return parseMountTable()
|
|
}
|
|
|
|
// Mounted determines if a specified mountpoint has been mounted.
|
|
// On Linux it looks at /proc/self/mountinfo and on Solaris at mnttab.
|
|
func Mounted(mountpoint string) (bool, error) {
|
|
entries, err := parseMountTable()
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
// Search the table for the mountpoint
|
|
for _, e := range entries {
|
|
if e.Mountpoint == mountpoint {
|
|
return true, nil
|
|
}
|
|
}
|
|
return false, nil
|
|
}
|
|
|
|
// Mount will mount filesystem according to the specified configuration, on the
|
|
// condition that the target path is *not* already mounted. Options must be
|
|
// specified like the mount or fstab unix commands: "opt1=val1,opt2=val2". See
|
|
// flags.go for supported option flags.
|
|
func Mount(device, target, mType, options string) error {
|
|
flag, _ := parseOptions(options)
|
|
if flag&REMOUNT != REMOUNT {
|
|
if mounted, err := Mounted(target); err != nil || mounted {
|
|
return err
|
|
}
|
|
}
|
|
return ForceMount(device, target, mType, options)
|
|
}
|
|
|
|
// ForceMount will mount a filesystem according to the specified configuration,
|
|
// *regardless* if the target path is not already mounted. Options must be
|
|
// specified like the mount or fstab unix commands: "opt1=val1,opt2=val2". See
|
|
// flags.go for supported option flags.
|
|
func ForceMount(device, target, mType, options string) error {
|
|
flag, data := parseOptions(options)
|
|
if err := mount(device, target, mType, uintptr(flag), data); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Unmount will unmount the target filesystem, so long as it is mounted.
|
|
func Unmount(target string) error {
|
|
if mounted, err := Mounted(target); err != nil || !mounted {
|
|
return err
|
|
}
|
|
return ForceUnmount(target)
|
|
}
|
|
|
|
// ForceUnmount will force an unmount of the target filesystem, regardless if
|
|
// it is mounted or not.
|
|
func ForceUnmount(target string) (err error) {
|
|
// Simple retry logic for unmount
|
|
for i := 0; i < 10; i++ {
|
|
if err = unmount(target, 0); err == nil {
|
|
return nil
|
|
}
|
|
time.Sleep(100 * time.Millisecond)
|
|
}
|
|
return
|
|
}
|