]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libsystemd/sd-login/test-login.c
Merge pull request #16444 from oniko/luks-detached-header
[thirdparty/systemd.git] / src / libsystemd / sd-login / test-login.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <poll.h>
4
5 #include "sd-login.h"
6
7 #include "alloc-util.h"
8 #include "errno-list.h"
9 #include "fd-util.h"
10 #include "format-util.h"
11 #include "log.h"
12 #include "string-util.h"
13 #include "strv.h"
14 #include "time-util.h"
15 #include "user-util.h"
16
17 static char* format_uids(char **buf, uid_t* uids, int count) {
18 int pos = 0, inc;
19 size_t size = (DECIMAL_STR_MAX(uid_t) + 1) * count + 1;
20
21 assert_se(*buf = malloc(size));
22
23 for (int k = 0; k < count; k++) {
24 sprintf(*buf + pos, "%s"UID_FMT"%n", k > 0 ? " " : "", uids[k], &inc);
25 pos += inc;
26 }
27
28 assert_se(pos < (ssize_t)size);
29 (*buf)[pos] = '\0';
30
31 return *buf;
32 }
33
34 static const char *e(int r) {
35 return r == 0 ? "OK" : errno_to_name(r);
36 }
37
38 static void test_login(void) {
39 _cleanup_close_pair_ int pair[2] = { -1, -1 };
40 _cleanup_free_ char *pp = NULL, *qq = NULL,
41 *display_session = NULL, *cgroup = NULL,
42 *display = NULL, *remote_user = NULL, *remote_host = NULL,
43 *type = NULL, *class = NULL, *state = NULL, *state2 = NULL,
44 *seat = NULL, *session = NULL,
45 *unit = NULL, *user_unit = NULL, *slice = NULL;
46 int r;
47 uid_t u, u2 = UID_INVALID;
48 char *t, **seats = NULL, **sessions = NULL;
49
50 r = sd_pid_get_unit(0, &unit);
51 log_info("sd_pid_get_unit(0, …) → %s / \"%s\"", e(r), strnull(unit));
52 assert_se(IN_SET(r, 0, -ENODATA));
53
54 r = sd_pid_get_user_unit(0, &user_unit);
55 log_info("sd_pid_get_user_unit(0, …) → %s / \"%s\"", e(r), strnull(user_unit));
56 assert_se(IN_SET(r, 0, -ENODATA));
57
58 r = sd_pid_get_slice(0, &slice);
59 log_info("sd_pid_get_slice(0, …) → %s / \"%s\"", e(r), strnull(slice));
60 assert_se(IN_SET(r, 0, -ENODATA));
61
62 r = sd_pid_get_owner_uid(0, &u2);
63 log_info("sd_pid_get_owner_uid(0, …) → %s / "UID_FMT, e(r), u2);
64 assert_se(IN_SET(r, 0, -ENODATA));
65
66 r = sd_pid_get_session(0, &session);
67 log_info("sd_pid_get_session(0, …) → %s / \"%s\"", e(r), strnull(session));
68
69 r = sd_pid_get_cgroup(0, &cgroup);
70 log_info("sd_pid_get_cgroup(0, …) → %s / \"%s\"", e(r), strnull(cgroup));
71 assert_se(r == 0);
72
73 r = sd_uid_get_display(u2, &display_session);
74 log_info("sd_uid_get_display("UID_FMT", …) → %s / \"%s\"", u2, e(r), strnull(display_session));
75 if (u2 == UID_INVALID)
76 assert_se(r == -EINVAL);
77 else
78 assert_se(IN_SET(r, 0, -ENODATA));
79
80 assert_se(socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == 0);
81 sd_peer_get_session(pair[0], &pp);
82 sd_peer_get_session(pair[1], &qq);
83 assert_se(streq_ptr(pp, qq));
84
85 r = sd_uid_get_sessions(u2, false, &sessions);
86 assert_se(t = strv_join(sessions, " "));
87 log_info("sd_uid_get_sessions("UID_FMT", …) → %s \"%s\"", u2, e(r), t);
88 if (u2 == UID_INVALID)
89 assert_se(r == -EINVAL);
90 else {
91 assert_se(r >= 0);
92 assert_se(r == (int) strv_length(sessions));
93 }
94 sessions = strv_free(sessions);
95 free(t);
96
97 assert_se(r == sd_uid_get_sessions(u2, false, NULL));
98
99 r = sd_uid_get_seats(u2, false, &seats);
100 assert_se(t = strv_join(seats, " "));
101 log_info("sd_uid_get_seats("UID_FMT", …) → %s \"%s\"", u2, e(r), t);
102 if (u2 == UID_INVALID)
103 assert_se(r == -EINVAL);
104 else {
105 assert_se(r >= 0);
106 assert_se(r == (int) strv_length(seats));
107 }
108 seats = strv_free(seats);
109 free(t);
110
111 assert_se(r == sd_uid_get_seats(u2, false, NULL));
112
113 if (session) {
114 r = sd_session_is_active(session);
115 assert_se(r >= 0);
116 log_info("sd_session_is_active(\"%s\") → %s", session, yes_no(r));
117
118 r = sd_session_is_remote(session);
119 assert_se(r >= 0);
120 log_info("sd_session_is_remote(\"%s\") → %s", session, yes_no(r));
121
122 r = sd_session_get_state(session, &state);
123 assert_se(r == 0);
124 log_info("sd_session_get_state(\"%s\") → \"%s\"", session, state);
125
126 assert_se(sd_session_get_uid(session, &u) >= 0);
127 log_info("sd_session_get_uid(\"%s\") → "UID_FMT, session, u);
128 assert_se(u == u2);
129
130 assert_se(sd_session_get_type(session, &type) >= 0);
131 log_info("sd_session_get_type(\"%s\") → \"%s\"", session, type);
132
133 assert_se(sd_session_get_class(session, &class) >= 0);
134 log_info("sd_session_get_class(\"%s\") → \"%s\"", session, class);
135
136 r = sd_session_get_display(session, &display);
137 assert_se(IN_SET(r, 0, -ENODATA));
138 log_info("sd_session_get_display(\"%s\") → \"%s\"", session, strna(display));
139
140 r = sd_session_get_remote_user(session, &remote_user);
141 assert_se(IN_SET(r, 0, -ENODATA));
142 log_info("sd_session_get_remote_user(\"%s\") → \"%s\"",
143 session, strna(remote_user));
144
145 r = sd_session_get_remote_host(session, &remote_host);
146 assert_se(IN_SET(r, 0, -ENODATA));
147 log_info("sd_session_get_remote_host(\"%s\") → \"%s\"",
148 session, strna(remote_host));
149
150 r = sd_session_get_seat(session, &seat);
151 if (r >= 0) {
152 assert_se(seat);
153
154 log_info("sd_session_get_seat(\"%s\") → \"%s\"", session, seat);
155
156 #pragma GCC diagnostic push
157 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
158 r = sd_seat_can_multi_session(seat);
159 #pragma GCC diagnostic pop
160 assert_se(r == 1);
161 log_info("sd_session_can_multi_seat(\"%s\") → %s", seat, yes_no(r));
162
163 r = sd_seat_can_tty(seat);
164 assert_se(r >= 0);
165 log_info("sd_session_can_tty(\"%s\") → %s", seat, yes_no(r));
166
167 r = sd_seat_can_graphical(seat);
168 assert_se(r >= 0);
169 log_info("sd_session_can_graphical(\"%s\") → %s", seat, yes_no(r));
170 } else {
171 log_info_errno(r, "sd_session_get_seat(\"%s\"): %m", session);
172 assert_se(r == -ENODATA);
173 }
174
175 assert_se(sd_uid_get_state(u, &state2) == 0);
176 log_info("sd_uid_get_state("UID_FMT", …) → %s", u, state2);
177 }
178
179 if (seat) {
180 _cleanup_free_ char *session2 = NULL, *buf = NULL;
181 _cleanup_free_ uid_t *uids = NULL;
182 unsigned n;
183
184 assert_se(sd_uid_is_on_seat(u, 0, seat) > 0);
185
186 r = sd_seat_get_active(seat, &session2, &u2);
187 assert_se(r == 0);
188 log_info("sd_seat_get_active(\"%s\", …) → \"%s\", "UID_FMT, seat, session2, u2);
189
190 r = sd_uid_is_on_seat(u, 1, seat);
191 assert_se(IN_SET(r, 0, 1));
192 assert_se(!!r == streq(session, session2));
193
194 r = sd_seat_get_sessions(seat, &sessions, &uids, &n);
195 assert_se(r >= 0);
196 assert_se(r == (int) strv_length(sessions));
197 assert_se(t = strv_join(sessions, " "));
198 strv_free(sessions);
199 log_info("sd_seat_get_sessions(\"%s\", …) → %s, \"%s\", [%u] {%s}",
200 seat, e(r), t, n, format_uids(&buf, uids, n));
201 free(t);
202
203 assert_se(sd_seat_get_sessions(seat, NULL, NULL, NULL) == r);
204 }
205
206 r = sd_get_seats(&seats);
207 assert_se(r >= 0);
208 assert_se(r == (int) strv_length(seats));
209 assert_se(t = strv_join(seats, ", "));
210 strv_free(seats);
211 log_info("sd_get_seats(…) → [%i] \"%s\"", r, t);
212 t = mfree(t);
213
214 assert_se(sd_get_seats(NULL) == r);
215
216 r = sd_seat_get_active(NULL, &t, NULL);
217 assert_se(IN_SET(r, 0, -ENODATA));
218 log_info("sd_seat_get_active(NULL, …) (active session on current seat) → %s / \"%s\"", e(r), strnull(t));
219 free(t);
220
221 r = sd_get_sessions(&sessions);
222 assert_se(r >= 0);
223 assert_se(r == (int) strv_length(sessions));
224 assert_se(t = strv_join(sessions, ", "));
225 strv_free(sessions);
226 log_info("sd_get_sessions(…) → [%i] \"%s\"", r, t);
227 free(t);
228
229 assert_se(sd_get_sessions(NULL) == r);
230
231 {
232 _cleanup_free_ uid_t *uids = NULL;
233 _cleanup_free_ char *buf = NULL;
234
235 r = sd_get_uids(&uids);
236 assert_se(r >= 0);
237 log_info("sd_get_uids(…) → [%i] {%s}", r, format_uids(&buf, uids, r));
238
239 assert_se(sd_get_uids(NULL) == r);
240 }
241
242 {
243 _cleanup_strv_free_ char **machines = NULL;
244 _cleanup_free_ char *buf = NULL;
245
246 r = sd_get_machine_names(&machines);
247 assert_se(r >= 0);
248 assert_se(r == (int) strv_length(machines));
249 assert_se(buf = strv_join(machines, " "));
250 log_info("sd_get_machines(…) → [%i] \"%s\"", r, buf);
251
252 assert_se(sd_get_machine_names(NULL) == r);
253 }
254 }
255
256 static void test_monitor(void) {
257 sd_login_monitor *m = NULL;
258 int r;
259
260 assert_se(sd_login_monitor_new("session", &m) == 0);
261
262 for (unsigned n = 0; n < 5; n++) {
263 struct pollfd pollfd = {};
264 usec_t timeout, nw;
265
266 assert_se((pollfd.fd = sd_login_monitor_get_fd(m)) >= 0);
267 assert_se((pollfd.events = sd_login_monitor_get_events(m)) >= 0);
268
269 assert_se(sd_login_monitor_get_timeout(m, &timeout) >= 0);
270
271 nw = now(CLOCK_MONOTONIC);
272
273 r = poll(&pollfd, 1,
274 timeout == (uint64_t) -1 ? -1 :
275 timeout > nw ? (int) ((timeout - nw) / 1000) :
276 0);
277
278 assert_se(r >= 0);
279
280 sd_login_monitor_flush(m);
281 printf("Wake!\n");
282 }
283
284 sd_login_monitor_unref(m);
285 }
286
287 int main(int argc, char* argv[]) {
288 log_parse_environment();
289 log_open();
290
291 log_info("/* Information printed is from the live system */");
292
293 test_login();
294
295 if (streq_ptr(argv[1], "-m"))
296 test_monitor();
297
298 return 0;
299 }