-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.go
58 lines (50 loc) · 1.17 KB
/
common.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package main
import (
"fmt"
"os"
"path/filepath"
"syscall"
)
func lookupPathChroot(prog string, chroot string, dirs []string) (string, error) {
err := fmt.Errorf("failed to get path for %s", prog)
for _, dir := range dirs {
path := filepath.Join(chroot, dir, prog)
_, err = os.Stat(path)
if err == nil {
return filepath.Join(dir, prog), nil
}
continue
}
return "", err
}
func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
err = syscall.Mount(source, target, fstype, flags, data)
if err != nil {
return fmt.Errorf("mount %s %s %s %s err: %s", source, target, fstype, data, err)
}
return nil
}
func unmount(target string, flags int) (err error) {
err = syscall.Unmount(target, flags)
if err != nil {
return fmt.Errorf("unmount %s err: %s", target, err)
}
return nil
}
func reboot() error {
return syscall.Reboot(syscall.LINUX_REBOOT_CMD_POWER_OFF)
}
func sync() {
syscall.Sync()
}
func fatalf(format string, v ...interface{}) {
// fmt.Printf(format, v...)
fmt.Fprintf(os.Stdout, format, v...)
os.Exit(1)
}
func exit_fail(err error) {
if err != nil {
logFatal(fmt.Sprintf("%s", err))
fatalf("%s", err)
}
}