summaryrefslogtreecommitdiff
path: root/sd_login/systemd_process.go
blob: 672eb2e44508a2532ec24b61d4483581fba55e26 (plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
// ./systemd_process.go.gen
// MACHINE GENERATED BY THE COMMAND ABOVE; DO NOT EDIT

package sd_login

import (
	"net"
	"os"
	"strconv"

	"golang.org/x/sys/unix"
)

// A ProcessID represents a process.
type ProcessID int

func (pid ProcessID) isValid() bool {
	return pid >= 1
}

func GetPeer(conn *net.UnixConn) (ProcessID, error) {
	ucred, err := getpeercred(conn)
	if err != nil {
		return -1, err
	}
	return ProcessID(ucred.Pid), nil
}

func (pid ProcessID) getSysCgroupLeaf() _CgroupLeaf {
	cgroup, err := pid.getCgroup()
	if err != nil {
		return ""
	}
	cgTree, err := cgGetRootPath()
	if err != nil {
		return ""
	}
	return cgTree.Parse(cgroup)
}

func (pid ProcessID) GetSession() (v SessionName, err error) {
	if !pid.isValid() {
		err = unix.EINVAL
		return
	}

	vStr, ok := trimPrefixSuffix(pid.getSysCgroupLeaf().GetUnit(), "session-", ".scope")
	_v := SessionName(vStr)

	if !ok || _v.isValid() {
		v = _v
	} else {
		err = unix.ENXIO
	}
	return
}

func (pid ProcessID) GetOwner() (v UserID, err error) {
	if !pid.isValid() {
		err = unix.EINVAL
		return
	}

	uidStr, ok := trimPrefixSuffix(pid.getSysCgroupLeaf().GetSlice(), "user-", ".slice")
	if !ok {
		err = unix.ENXIO
		return
	}
	uidInt, err := strconv.Atoi(uidStr)
	if err != nil {
		err = unix.ENXIO
		return
	}
	_v := UserID(uidInt)

	if _v.isValid() {
		v = _v
	} else {
		err = unix.ENXIO
	}
	return
}

func (pid ProcessID) GetMachine() (v MachineName, err error) {
	if !pid.isValid() {
		err = unix.EINVAL
		return
	}

	unit := pid.getSysCgroupLeaf().GetUnit()
	if unit == "" {
		err = unix.ENXIO
		return
	}
	machine, err := os.Readlink("/run/systemd/machines/unit:" + unit)
	if err != nil {
		return
	}
	_v := MachineName(machine)

	if _v.isValid() {
		v = _v
	} else {
		err = unix.ENXIO
	}
	return
}

func (pid ProcessID) GetSlice() (v string, err error) {
	if !pid.isValid() {
		err = unix.EINVAL
		return
	}

	v = pid.getSysCgroupLeaf().GetSlice()
	if v == "" {
		err = unix.ENXIO
	}
	return
}

func (pid ProcessID) GetUnit() (v string, err error) {
	if !pid.isValid() {
		err = unix.EINVAL
		return
	}

	v = pid.getSysCgroupLeaf().GetUnit()
	if v == "" {
		err = unix.ENXIO
	}
	return
}

func (pid ProcessID) GetUserSlice() (v string, err error) {
	if !pid.isValid() {
		err = unix.EINVAL
		return
	}

	sysLeaf := pid.getSysCgroupLeaf()
	if !valid_user_tree(sysLeaf.GetUnit()) {
		err = unix.ENXIO
	}
	userLeaf := sysLeaf.GetRest()
	v = userLeaf.GetSlice()

	if v == "" {
		err = unix.ENXIO
	}
	return
}

func (pid ProcessID) GetUserUnit() (v string, err error) {
	if !pid.isValid() {
		err = unix.EINVAL
		return
	}

	sysLeaf := pid.getSysCgroupLeaf()
	if !valid_user_tree(sysLeaf.GetUnit()) {
		err = unix.ENXIO
	}
	userLeaf := sysLeaf.GetRest()
	v = userLeaf.GetUnit()

	if v == "" {
		err = unix.ENXIO
	}
	return
}