-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathutils.go
86 lines (71 loc) · 1.61 KB
/
utils.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package xenstore
import (
"os"
"sync"
)
type xenStoreOperation uint32
const (
XsDebug xenStoreOperation = iota
XsDirectory
XsRead
XsGetPermissions
XsWatch
XsUnWatch
XsStartTransaction
XsEndTransaction
XsIntroduce
XsRelease
XsGetDomainPath
XsWrite
XsMkdir
XsRm
XsSetPermissions
XsWatchEvent
XsError
XsIsDomainIntroduced
XsResume
XsSetTarget
XsRestrict
XsResetWatches
XsInvalid xenStoreOperation = 0xffff
// XenStorePathSeparator is the separator between paths in XenStore. Parts of any path sent
// to/received from XenStore should be joined with exactly 1 instance of this string. This is
// not platform dependent.
XenStorePathSeparator = "/"
)
var (
requestCounter uint32 = 0x0
counterMutex *sync.Mutex
NUL byte = 0x0
)
func init() {
// Create the mutex used to synchronise access to the request counter variable.
counterMutex = &sync.Mutex{}
}
// Event implements a XenStore event
type Event struct {
Path string
Token string
}
// RequestID returns the next unique (for this session) request ID to use when contacting XenStore.
// RequestID synchronises access to the counter and is therefore safe to call across multiple
// goroutines.
func RequestID() uint32 {
counterMutex.Lock()
defer counterMutex.Unlock()
requestCounter += 1
// Take 1 so that this begins at 0
return requestCounter - 1
}
// ControlDomain checks whether the current Xen domain has the 'control_d' capability (will be true
// on Domain-0).
func ControlDomain() bool {
r, err := os.ReadFile("/proc/xen/capabilities")
if err != nil {
return false
}
if string(r) == "control_d\n" {
return true
}
return false
}