]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/login/loginctl.c
sd-boot+bootctl: invert order of entries w/o sort-key
[thirdparty/systemd.git] / src / login / loginctl.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <errno.h>
4 #include <getopt.h>
5 #include <locale.h>
6 #include <unistd.h>
7
8 #include "sd-bus.h"
9
10 #include "alloc-util.h"
11 #include "bus-error.h"
12 #include "bus-locator.h"
13 #include "bus-map-properties.h"
14 #include "bus-print-properties.h"
15 #include "bus-unit-procs.h"
16 #include "cgroup-show.h"
17 #include "cgroup-util.h"
18 #include "format-table.h"
19 #include "log.h"
20 #include "logs-show.h"
21 #include "macro.h"
22 #include "main-func.h"
23 #include "memory-util.h"
24 #include "pager.h"
25 #include "parse-argument.h"
26 #include "parse-util.h"
27 #include "pretty-print.h"
28 #include "process-util.h"
29 #include "rlimit-util.h"
30 #include "sigbus.h"
31 #include "signal-util.h"
32 #include "spawn-polkit-agent.h"
33 #include "string-table.h"
34 #include "strv.h"
35 #include "sysfs-show.h"
36 #include "terminal-util.h"
37 #include "unit-name.h"
38 #include "user-util.h"
39 #include "verbs.h"
40
41 static char **arg_property = NULL;
42 static BusPrintPropertyFlags arg_print_flags = 0;
43 static bool arg_full = false;
44 static PagerFlags arg_pager_flags = 0;
45 static bool arg_legend = true;
46 static const char *arg_kill_who = NULL;
47 static int arg_signal = SIGTERM;
48 static BusTransport arg_transport = BUS_TRANSPORT_LOCAL;
49 static char *arg_host = NULL;
50 static bool arg_ask_password = true;
51 static unsigned arg_lines = 10;
52 static OutputMode arg_output = OUTPUT_SHORT;
53
54 STATIC_DESTRUCTOR_REGISTER(arg_property, strv_freep);
55
56 static OutputFlags get_output_flags(void) {
57
58 return
59 FLAGS_SET(arg_print_flags, BUS_PRINT_PROPERTY_SHOW_EMPTY) * OUTPUT_SHOW_ALL |
60 (arg_full || !on_tty() || pager_have()) * OUTPUT_FULL_WIDTH |
61 colors_enabled() * OUTPUT_COLOR;
62 }
63
64 static int get_session_path(sd_bus *bus, const char *session_id, sd_bus_error *error, char **path) {
65 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
66 int r;
67 char *ans;
68
69 r = bus_call_method(bus, bus_login_mgr, "GetSession", error, &reply, "s", session_id);
70 if (r < 0)
71 return r;
72
73 r = sd_bus_message_read(reply, "o", &ans);
74 if (r < 0)
75 return r;
76
77 ans = strdup(ans);
78 if (!ans)
79 return -ENOMEM;
80
81 *path = ans;
82 return 0;
83 }
84
85 static int show_table(Table *table, const char *word) {
86 int r;
87
88 assert(table);
89 assert(word);
90
91 if (table_get_rows(table) > 1 || OUTPUT_MODE_IS_JSON(arg_output)) {
92 r = table_set_sort(table, (size_t) 0);
93 if (r < 0)
94 return table_log_sort_error(r);
95
96 table_set_header(table, arg_legend);
97
98 if (OUTPUT_MODE_IS_JSON(arg_output))
99 r = table_print_json(table, NULL, output_mode_to_json_format_flags(arg_output) | JSON_FORMAT_COLOR_AUTO);
100 else
101 r = table_print(table, NULL);
102 if (r < 0)
103 return table_log_print_error(r);
104 }
105
106 if (arg_legend) {
107 if (table_get_rows(table) > 1)
108 printf("\n%zu %s listed.\n", table_get_rows(table) - 1, word);
109 else
110 printf("No %s.\n", word);
111 }
112
113 return 0;
114 }
115
116 static int list_sessions(int argc, char *argv[], void *userdata) {
117 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
118 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
119 _cleanup_(table_unrefp) Table *table = NULL;
120 sd_bus *bus = userdata;
121 int r;
122
123 assert(bus);
124 assert(argv);
125
126 pager_open(arg_pager_flags);
127
128 r = bus_call_method(bus, bus_login_mgr, "ListSessions", &error, &reply, NULL);
129 if (r < 0)
130 return log_error_errno(r, "Failed to list sessions: %s", bus_error_message(&error, r));
131
132 r = sd_bus_message_enter_container(reply, 'a', "(susso)");
133 if (r < 0)
134 return bus_log_parse_error(r);
135
136 table = table_new("session", "uid", "user", "seat", "tty");
137 if (!table)
138 return log_oom();
139
140 /* Right-align the first two fields (since they are numeric) */
141 (void) table_set_align_percent(table, TABLE_HEADER_CELL(0), 100);
142 (void) table_set_align_percent(table, TABLE_HEADER_CELL(1), 100);
143
144 for (;;) {
145 _cleanup_(sd_bus_error_free) sd_bus_error error_tty = SD_BUS_ERROR_NULL;
146 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply_tty = NULL;
147 const char *id, *user, *seat, *object, *tty = NULL;
148 uint32_t uid;
149
150 r = sd_bus_message_read(reply, "(susso)", &id, &uid, &user, &seat, &object);
151 if (r < 0)
152 return bus_log_parse_error(r);
153 if (r == 0)
154 break;
155
156 r = sd_bus_get_property(
157 bus,
158 "org.freedesktop.login1",
159 object,
160 "org.freedesktop.login1.Session",
161 "TTY",
162 &error_tty,
163 &reply_tty,
164 "s");
165 if (r < 0)
166 log_warning_errno(r, "Failed to get TTY for session %s: %s", id, bus_error_message(&error_tty, r));
167 else {
168 r = sd_bus_message_read(reply_tty, "s", &tty);
169 if (r < 0)
170 return bus_log_parse_error(r);
171 }
172
173 r = table_add_many(table,
174 TABLE_STRING, id,
175 TABLE_UID, (uid_t) uid,
176 TABLE_STRING, user,
177 TABLE_STRING, seat,
178 TABLE_STRING, strna(tty));
179 if (r < 0)
180 return table_log_add_error(r);
181 }
182
183 r = sd_bus_message_exit_container(reply);
184 if (r < 0)
185 return bus_log_parse_error(r);
186
187 return show_table(table, "sessions");
188 }
189
190 static int list_users(int argc, char *argv[], void *userdata) {
191 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
192 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
193 _cleanup_(table_unrefp) Table *table = NULL;
194 sd_bus *bus = userdata;
195 int r;
196
197 assert(bus);
198 assert(argv);
199
200 pager_open(arg_pager_flags);
201
202 r = bus_call_method(bus, bus_login_mgr, "ListUsers", &error, &reply, NULL);
203 if (r < 0)
204 return log_error_errno(r, "Failed to list users: %s", bus_error_message(&error, r));
205
206 r = sd_bus_message_enter_container(reply, 'a', "(uso)");
207 if (r < 0)
208 return bus_log_parse_error(r);
209
210 table = table_new("uid", "user");
211 if (!table)
212 return log_oom();
213
214 (void) table_set_align_percent(table, TABLE_HEADER_CELL(0), 100);
215
216 for (;;) {
217 const char *user;
218 uint32_t uid;
219
220 r = sd_bus_message_read(reply, "(uso)", &uid, &user, NULL);
221 if (r < 0)
222 return bus_log_parse_error(r);
223 if (r == 0)
224 break;
225
226 r = table_add_many(table,
227 TABLE_UID, (uid_t) uid,
228 TABLE_STRING, user);
229 if (r < 0)
230 return table_log_add_error(r);
231 }
232
233 r = sd_bus_message_exit_container(reply);
234 if (r < 0)
235 return bus_log_parse_error(r);
236
237 return show_table(table, "users");
238 }
239
240 static int list_seats(int argc, char *argv[], void *userdata) {
241 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
242 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
243 _cleanup_(table_unrefp) Table *table = NULL;
244 sd_bus *bus = userdata;
245 int r;
246
247 assert(bus);
248 assert(argv);
249
250 pager_open(arg_pager_flags);
251
252 r = bus_call_method(bus, bus_login_mgr, "ListSeats", &error, &reply, NULL);
253 if (r < 0)
254 return log_error_errno(r, "Failed to list seats: %s", bus_error_message(&error, r));
255
256 r = sd_bus_message_enter_container(reply, 'a', "(so)");
257 if (r < 0)
258 return bus_log_parse_error(r);
259
260 table = table_new("seat");
261 if (!table)
262 return log_oom();
263
264 for (;;) {
265 const char *seat;
266
267 r = sd_bus_message_read(reply, "(so)", &seat, NULL);
268 if (r < 0)
269 return bus_log_parse_error(r);
270 if (r == 0)
271 break;
272
273 r = table_add_cell(table, NULL, TABLE_STRING, seat);
274 if (r < 0)
275 return table_log_add_error(r);
276 }
277
278 r = sd_bus_message_exit_container(reply);
279 if (r < 0)
280 return bus_log_parse_error(r);
281
282 return show_table(table, "seats");
283 }
284
285 static int show_unit_cgroup(sd_bus *bus, const char *interface, const char *unit, pid_t leader) {
286 _cleanup_free_ char *cgroup = NULL;
287 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
288 unsigned c;
289 int r;
290
291 assert(bus);
292 assert(unit);
293
294 r = show_cgroup_get_unit_path_and_warn(bus, unit, &cgroup);
295 if (r < 0)
296 return r;
297
298 if (isempty(cgroup))
299 return 0;
300
301 c = columns();
302 if (c > 18)
303 c -= 18;
304 else
305 c = 0;
306
307 r = unit_show_processes(bus, unit, cgroup, "\t\t ", c, get_output_flags(), &error);
308 if (r == -EBADR) {
309
310 if (arg_transport == BUS_TRANSPORT_REMOTE)
311 return 0;
312
313 /* Fallback for older systemd versions where the GetUnitProcesses() call is not yet available */
314
315 if (cg_is_empty_recursive(SYSTEMD_CGROUP_CONTROLLER, cgroup) != 0 && leader <= 0)
316 return 0;
317
318 show_cgroup_and_extra(SYSTEMD_CGROUP_CONTROLLER, cgroup, "\t\t ", c, &leader, leader > 0, get_output_flags());
319 } else if (r < 0)
320 return log_error_errno(r, "Failed to dump process list: %s", bus_error_message(&error, r));
321
322 return 0;
323 }
324
325 typedef struct SessionStatusInfo {
326 const char *id;
327 uid_t uid;
328 const char *name;
329 struct dual_timestamp timestamp;
330 unsigned vtnr;
331 const char *seat;
332 const char *tty;
333 const char *display;
334 bool remote;
335 const char *remote_host;
336 const char *remote_user;
337 const char *service;
338 pid_t leader;
339 const char *type;
340 const char *class;
341 const char *state;
342 const char *scope;
343 const char *desktop;
344 } SessionStatusInfo;
345
346 typedef struct UserStatusInfo {
347 uid_t uid;
348 bool linger;
349 const char *name;
350 struct dual_timestamp timestamp;
351 const char *state;
352 char **sessions;
353 const char *display;
354 const char *slice;
355 } UserStatusInfo;
356
357 typedef struct SeatStatusInfo {
358 const char *id;
359 const char *active_session;
360 char **sessions;
361 } SeatStatusInfo;
362
363 static void user_status_info_clear(UserStatusInfo *info) {
364 if (info) {
365 strv_free(info->sessions);
366 zero(*info);
367 }
368 }
369
370 static void seat_status_info_clear(SeatStatusInfo *info) {
371 if (info) {
372 strv_free(info->sessions);
373 zero(*info);
374 }
375 }
376
377 static int prop_map_first_of_struct(sd_bus *bus, const char *member, sd_bus_message *m, sd_bus_error *error, void *userdata) {
378 const char *contents;
379 int r;
380
381 r = sd_bus_message_peek_type(m, NULL, &contents);
382 if (r < 0)
383 return r;
384
385 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_STRUCT, contents);
386 if (r < 0)
387 return r;
388
389 r = sd_bus_message_read_basic(m, contents[0], userdata);
390 if (r < 0)
391 return r;
392
393 r = sd_bus_message_skip(m, contents+1);
394 if (r < 0)
395 return r;
396
397 r = sd_bus_message_exit_container(m);
398 if (r < 0)
399 return r;
400
401 return 0;
402 }
403
404 static int prop_map_sessions_strv(sd_bus *bus, const char *member, sd_bus_message *m, sd_bus_error *error, void *userdata) {
405 const char *name;
406 int r;
407
408 assert(bus);
409 assert(m);
410
411 r = sd_bus_message_enter_container(m, 'a', "(so)");
412 if (r < 0)
413 return r;
414
415 while ((r = sd_bus_message_read(m, "(so)", &name, NULL)) > 0) {
416 r = strv_extend(userdata, name);
417 if (r < 0)
418 return r;
419 }
420 if (r < 0)
421 return r;
422
423 return sd_bus_message_exit_container(m);
424 }
425
426 static int print_session_status_info(sd_bus *bus, const char *path, bool *new_line) {
427
428 static const struct bus_properties_map map[] = {
429 { "Id", "s", NULL, offsetof(SessionStatusInfo, id) },
430 { "Name", "s", NULL, offsetof(SessionStatusInfo, name) },
431 { "TTY", "s", NULL, offsetof(SessionStatusInfo, tty) },
432 { "Display", "s", NULL, offsetof(SessionStatusInfo, display) },
433 { "RemoteHost", "s", NULL, offsetof(SessionStatusInfo, remote_host) },
434 { "RemoteUser", "s", NULL, offsetof(SessionStatusInfo, remote_user) },
435 { "Service", "s", NULL, offsetof(SessionStatusInfo, service) },
436 { "Desktop", "s", NULL, offsetof(SessionStatusInfo, desktop) },
437 { "Type", "s", NULL, offsetof(SessionStatusInfo, type) },
438 { "Class", "s", NULL, offsetof(SessionStatusInfo, class) },
439 { "Scope", "s", NULL, offsetof(SessionStatusInfo, scope) },
440 { "State", "s", NULL, offsetof(SessionStatusInfo, state) },
441 { "VTNr", "u", NULL, offsetof(SessionStatusInfo, vtnr) },
442 { "Leader", "u", NULL, offsetof(SessionStatusInfo, leader) },
443 { "Remote", "b", NULL, offsetof(SessionStatusInfo, remote) },
444 { "Timestamp", "t", NULL, offsetof(SessionStatusInfo, timestamp.realtime) },
445 { "TimestampMonotonic", "t", NULL, offsetof(SessionStatusInfo, timestamp.monotonic) },
446 { "User", "(uo)", prop_map_first_of_struct, offsetof(SessionStatusInfo, uid) },
447 { "Seat", "(so)", prop_map_first_of_struct, offsetof(SessionStatusInfo, seat) },
448 {}
449 };
450
451 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
452 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
453 SessionStatusInfo i = {};
454 int r;
455
456 r = bus_map_all_properties(bus, "org.freedesktop.login1", path, map, BUS_MAP_BOOLEAN_AS_BOOL, &error, &m, &i);
457 if (r < 0)
458 return log_error_errno(r, "Could not get properties: %s", bus_error_message(&error, r));
459
460 if (*new_line)
461 printf("\n");
462
463 *new_line = true;
464
465 printf("%s - ", strna(i.id));
466
467 if (i.name)
468 printf("%s (%"PRIu32")\n", i.name, i.uid);
469 else
470 printf("%"PRIu32"\n", i.uid);
471
472 if (timestamp_is_set(i.timestamp.realtime))
473 printf("\t Since: %s; %s\n",
474 FORMAT_TIMESTAMP(i.timestamp.realtime),
475 FORMAT_TIMESTAMP_RELATIVE(i.timestamp.realtime));
476
477 if (i.leader > 0) {
478 _cleanup_free_ char *t = NULL;
479
480 printf("\t Leader: %"PRIu32, i.leader);
481
482 (void) get_process_comm(i.leader, &t);
483 if (t)
484 printf(" (%s)", t);
485
486 printf("\n");
487 }
488
489 if (!isempty(i.seat)) {
490 printf("\t Seat: %s", i.seat);
491
492 if (i.vtnr > 0)
493 printf("; vc%u", i.vtnr);
494
495 printf("\n");
496 }
497
498 if (i.tty)
499 printf("\t TTY: %s\n", i.tty);
500 else if (i.display)
501 printf("\t Display: %s\n", i.display);
502
503 if (i.remote_host && i.remote_user)
504 printf("\t Remote: %s@%s\n", i.remote_user, i.remote_host);
505 else if (i.remote_host)
506 printf("\t Remote: %s\n", i.remote_host);
507 else if (i.remote_user)
508 printf("\t Remote: user %s\n", i.remote_user);
509 else if (i.remote)
510 printf("\t Remote: Yes\n");
511
512 if (i.service) {
513 printf("\t Service: %s", i.service);
514
515 if (i.type)
516 printf("; type %s", i.type);
517
518 if (i.class)
519 printf("; class %s", i.class);
520
521 printf("\n");
522 } else if (i.type) {
523 printf("\t Type: %s", i.type);
524
525 if (i.class)
526 printf("; class %s", i.class);
527
528 printf("\n");
529 } else if (i.class)
530 printf("\t Class: %s\n", i.class);
531
532 if (!isempty(i.desktop))
533 printf("\t Desktop: %s\n", i.desktop);
534
535 if (i.state)
536 printf("\t State: %s\n", i.state);
537
538 if (i.scope) {
539 printf("\t Unit: %s\n", i.scope);
540 show_unit_cgroup(bus, "org.freedesktop.systemd1.Scope", i.scope, i.leader);
541
542 if (arg_transport == BUS_TRANSPORT_LOCAL)
543 show_journal_by_unit(
544 stdout,
545 i.scope,
546 NULL,
547 arg_output,
548 0,
549 i.timestamp.monotonic,
550 arg_lines,
551 0,
552 get_output_flags() | OUTPUT_BEGIN_NEWLINE,
553 SD_JOURNAL_LOCAL_ONLY,
554 true,
555 NULL);
556 }
557
558 return 0;
559 }
560
561 static int print_user_status_info(sd_bus *bus, const char *path, bool *new_line) {
562
563 static const struct bus_properties_map map[] = {
564 { "Name", "s", NULL, offsetof(UserStatusInfo, name) },
565 { "Linger", "b", NULL, offsetof(UserStatusInfo, linger) },
566 { "Slice", "s", NULL, offsetof(UserStatusInfo, slice) },
567 { "State", "s", NULL, offsetof(UserStatusInfo, state) },
568 { "UID", "u", NULL, offsetof(UserStatusInfo, uid) },
569 { "Timestamp", "t", NULL, offsetof(UserStatusInfo, timestamp.realtime) },
570 { "TimestampMonotonic", "t", NULL, offsetof(UserStatusInfo, timestamp.monotonic) },
571 { "Display", "(so)", prop_map_first_of_struct, offsetof(UserStatusInfo, display) },
572 { "Sessions", "a(so)", prop_map_sessions_strv, offsetof(UserStatusInfo, sessions) },
573 {}
574 };
575
576 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
577 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
578 _cleanup_(user_status_info_clear) UserStatusInfo i = {};
579 int r;
580
581 r = bus_map_all_properties(bus, "org.freedesktop.login1", path, map, BUS_MAP_BOOLEAN_AS_BOOL, &error, &m, &i);
582 if (r < 0)
583 return log_error_errno(r, "Could not get properties: %s", bus_error_message(&error, r));
584
585 if (*new_line)
586 printf("\n");
587
588 *new_line = true;
589
590 if (i.name)
591 printf("%s (%"PRIu32")\n", i.name, i.uid);
592 else
593 printf("%"PRIu32"\n", i.uid);
594
595 if (timestamp_is_set(i.timestamp.realtime))
596 printf("\t Since: %s; %s\n",
597 FORMAT_TIMESTAMP(i.timestamp.realtime),
598 FORMAT_TIMESTAMP_RELATIVE(i.timestamp.realtime));
599
600 if (!isempty(i.state))
601 printf("\t State: %s\n", i.state);
602
603 if (!strv_isempty(i.sessions)) {
604 char **l;
605 printf("\tSessions:");
606
607 STRV_FOREACH(l, i.sessions)
608 printf(" %s%s",
609 streq_ptr(*l, i.display) ? "*" : "",
610 *l);
611
612 printf("\n");
613 }
614
615 printf("\t Linger: %s\n", yes_no(i.linger));
616
617 if (i.slice) {
618 printf("\t Unit: %s\n", i.slice);
619 show_unit_cgroup(bus, "org.freedesktop.systemd1.Slice", i.slice, 0);
620
621 show_journal_by_unit(
622 stdout,
623 i.slice,
624 NULL,
625 arg_output,
626 0,
627 i.timestamp.monotonic,
628 arg_lines,
629 0,
630 get_output_flags() | OUTPUT_BEGIN_NEWLINE,
631 SD_JOURNAL_LOCAL_ONLY,
632 true,
633 NULL);
634 }
635
636 return 0;
637 }
638
639 static int print_seat_status_info(sd_bus *bus, const char *path, bool *new_line) {
640
641 static const struct bus_properties_map map[] = {
642 { "Id", "s", NULL, offsetof(SeatStatusInfo, id) },
643 { "ActiveSession", "(so)", prop_map_first_of_struct, offsetof(SeatStatusInfo, active_session) },
644 { "Sessions", "a(so)", prop_map_sessions_strv, offsetof(SeatStatusInfo, sessions) },
645 {}
646 };
647
648 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
649 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
650 _cleanup_(seat_status_info_clear) SeatStatusInfo i = {};
651 int r;
652
653 r = bus_map_all_properties(bus, "org.freedesktop.login1", path, map, 0, &error, &m, &i);
654 if (r < 0)
655 return log_error_errno(r, "Could not get properties: %s", bus_error_message(&error, r));
656
657 if (*new_line)
658 printf("\n");
659
660 *new_line = true;
661
662 printf("%s\n", strna(i.id));
663
664 if (!strv_isempty(i.sessions)) {
665 char **l;
666 printf("\tSessions:");
667
668 STRV_FOREACH(l, i.sessions) {
669 if (streq_ptr(*l, i.active_session))
670 printf(" *%s", *l);
671 else
672 printf(" %s", *l);
673 }
674
675 printf("\n");
676 }
677
678 if (arg_transport == BUS_TRANSPORT_LOCAL) {
679 unsigned c;
680
681 c = columns();
682 if (c > 21)
683 c -= 21;
684 else
685 c = 0;
686
687 printf("\t Devices:\n");
688
689 show_sysfs(i.id, "\t\t ", c, get_output_flags());
690 }
691
692 return 0;
693 }
694
695 static int print_property(const char *name, const char *expected_value, sd_bus_message *m, BusPrintPropertyFlags flags) {
696 char type;
697 const char *contents;
698 int r;
699
700 assert(name);
701 assert(m);
702
703 r = sd_bus_message_peek_type(m, &type, &contents);
704 if (r < 0)
705 return r;
706
707 switch (type) {
708
709 case SD_BUS_TYPE_STRUCT:
710
711 if (contents[0] == SD_BUS_TYPE_STRING && STR_IN_SET(name, "Display", "Seat", "ActiveSession")) {
712 const char *s;
713
714 r = sd_bus_message_read(m, "(so)", &s, NULL);
715 if (r < 0)
716 return bus_log_parse_error(r);
717
718 bus_print_property_value(name, expected_value, flags, s);
719
720 return 1;
721
722 } else if (contents[0] == SD_BUS_TYPE_UINT32 && streq(name, "User")) {
723 uint32_t uid;
724
725 r = sd_bus_message_read(m, "(uo)", &uid, NULL);
726 if (r < 0)
727 return bus_log_parse_error(r);
728
729 if (!uid_is_valid(uid))
730 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
731 "Invalid user ID: " UID_FMT,
732 uid);
733
734 bus_print_property_valuef(name, expected_value, flags, UID_FMT, uid);
735 return 1;
736 }
737 break;
738
739 case SD_BUS_TYPE_ARRAY:
740
741 if (contents[0] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "Sessions")) {
742 const char *s;
743 bool space = false;
744
745 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(so)");
746 if (r < 0)
747 return bus_log_parse_error(r);
748
749 if (!FLAGS_SET(flags, BUS_PRINT_PROPERTY_ONLY_VALUE))
750 printf("%s=", name);
751
752 while ((r = sd_bus_message_read(m, "(so)", &s, NULL)) > 0) {
753 printf("%s%s", space ? " " : "", s);
754 space = true;
755 }
756
757 if (space || !FLAGS_SET(flags, BUS_PRINT_PROPERTY_ONLY_VALUE))
758 printf("\n");
759
760 if (r < 0)
761 return bus_log_parse_error(r);
762
763 r = sd_bus_message_exit_container(m);
764 if (r < 0)
765 return bus_log_parse_error(r);
766
767 return 1;
768 }
769 break;
770 }
771
772 return 0;
773 }
774
775 static int show_properties(sd_bus *bus, const char *path, bool *new_line) {
776 int r;
777
778 assert(bus);
779 assert(path);
780 assert(new_line);
781
782 if (*new_line)
783 printf("\n");
784
785 *new_line = true;
786
787 r = bus_print_all_properties(
788 bus,
789 "org.freedesktop.login1",
790 path,
791 print_property,
792 arg_property,
793 arg_print_flags,
794 NULL);
795 if (r < 0)
796 return bus_log_parse_error(r);
797
798 return 0;
799 }
800
801 static int show_session(int argc, char *argv[], void *userdata) {
802 bool properties, new_line = false;
803 sd_bus *bus = userdata;
804 int r;
805 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
806 _cleanup_free_ char *path = NULL;
807
808 assert(bus);
809 assert(argv);
810
811 properties = !strstr(argv[0], "status");
812
813 pager_open(arg_pager_flags);
814
815 if (argc <= 1) {
816 /* If no argument is specified inspect the manager itself */
817 if (properties)
818 return show_properties(bus, "/org/freedesktop/login1", &new_line);
819
820 return print_session_status_info(bus, "/org/freedesktop/login1/session/auto", &new_line);
821 }
822
823 for (int i = 1; i < argc; i++) {
824 r = get_session_path(bus, argv[i], &error, &path);
825 if (r < 0)
826 return log_error_errno(r, "Failed to get session path: %s", bus_error_message(&error, r));
827
828 if (properties)
829 r = show_properties(bus, path, &new_line);
830 else
831 r = print_session_status_info(bus, path, &new_line);
832
833 if (r < 0)
834 return r;
835 }
836
837 return 0;
838 }
839
840 static int show_user(int argc, char *argv[], void *userdata) {
841 bool properties, new_line = false;
842 sd_bus *bus = userdata;
843 int r;
844
845 assert(bus);
846 assert(argv);
847
848 properties = !strstr(argv[0], "status");
849
850 pager_open(arg_pager_flags);
851
852 if (argc <= 1) {
853 /* If no argument is specified inspect the manager itself */
854 if (properties)
855 return show_properties(bus, "/org/freedesktop/login1", &new_line);
856
857 return print_user_status_info(bus, "/org/freedesktop/login1/user/self", &new_line);
858 }
859
860 for (int i = 1; i < argc; i++) {
861 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
862 _cleanup_(sd_bus_message_unrefp) sd_bus_message * reply = NULL;
863 const char *path = NULL;
864 uid_t uid;
865
866 r = get_user_creds((const char**) (argv+i), &uid, NULL, NULL, NULL, 0);
867 if (r < 0)
868 return log_error_errno(r, "Failed to look up user %s: %m", argv[i]);
869
870 r = sd_bus_call_method(
871 bus,
872 "org.freedesktop.login1",
873 "/org/freedesktop/login1",
874 "org.freedesktop.login1.Manager",
875 "GetUser",
876 &error, &reply,
877 "u", (uint32_t) uid);
878 if (r < 0)
879 return log_error_errno(r, "Failed to get user: %s", bus_error_message(&error, r));
880
881 r = sd_bus_message_read(reply, "o", &path);
882 if (r < 0)
883 return bus_log_parse_error(r);
884
885 if (properties)
886 r = show_properties(bus, path, &new_line);
887 else
888 r = print_user_status_info(bus, path, &new_line);
889
890 if (r < 0)
891 return r;
892 }
893
894 return 0;
895 }
896
897 static int show_seat(int argc, char *argv[], void *userdata) {
898 bool properties, new_line = false;
899 sd_bus *bus = userdata;
900 int r;
901
902 assert(bus);
903 assert(argv);
904
905 properties = !strstr(argv[0], "status");
906
907 pager_open(arg_pager_flags);
908
909 if (argc <= 1) {
910 /* If no argument is specified inspect the manager itself */
911 if (properties)
912 return show_properties(bus, "/org/freedesktop/login1", &new_line);
913
914 return print_seat_status_info(bus, "/org/freedesktop/login1/seat/auto", &new_line);
915 }
916
917 for (int i = 1; i < argc; i++) {
918 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
919 _cleanup_(sd_bus_message_unrefp) sd_bus_message * reply = NULL;
920 const char *path = NULL;
921
922 r = bus_call_method(bus, bus_login_mgr, "GetSeat", &error, &reply, "s", argv[i]);
923 if (r < 0)
924 return log_error_errno(r, "Failed to get seat: %s", bus_error_message(&error, r));
925
926 r = sd_bus_message_read(reply, "o", &path);
927 if (r < 0)
928 return bus_log_parse_error(r);
929
930 if (properties)
931 r = show_properties(bus, path, &new_line);
932 else
933 r = print_seat_status_info(bus, path, &new_line);
934
935 if (r < 0)
936 return r;
937 }
938
939 return 0;
940 }
941
942 static int activate(int argc, char *argv[], void *userdata) {
943 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
944 sd_bus *bus = userdata;
945 int r;
946
947 assert(bus);
948 assert(argv);
949
950 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
951
952 if (argc < 2) {
953 r = sd_bus_call_method(
954 bus,
955 "org.freedesktop.login1",
956 "/org/freedesktop/login1/session/auto",
957 "org.freedesktop.login1.Session",
958 streq(argv[0], "lock-session") ? "Lock" :
959 streq(argv[0], "unlock-session") ? "Unlock" :
960 streq(argv[0], "terminate-session") ? "Terminate" :
961 "Activate",
962 &error, NULL, NULL);
963 if (r < 0)
964 return log_error_errno(r, "Failed to issue method call: %s", bus_error_message(&error, r));
965
966 return 0;
967 }
968
969 for (int i = 1; i < argc; i++) {
970
971 r = bus_call_method(
972 bus,
973 bus_login_mgr,
974 streq(argv[0], "lock-session") ? "LockSession" :
975 streq(argv[0], "unlock-session") ? "UnlockSession" :
976 streq(argv[0], "terminate-session") ? "TerminateSession" :
977 "ActivateSession",
978 &error, NULL,
979 "s", argv[i]);
980 if (r < 0)
981 return log_error_errno(r, "Failed to issue method call: %s", bus_error_message(&error, r));
982 }
983
984 return 0;
985 }
986
987 static int kill_session(int argc, char *argv[], void *userdata) {
988 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
989 sd_bus *bus = userdata;
990 int r;
991
992 assert(bus);
993 assert(argv);
994
995 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
996
997 if (!arg_kill_who)
998 arg_kill_who = "all";
999
1000 for (int i = 1; i < argc; i++) {
1001
1002 r = bus_call_method(
1003 bus,
1004 bus_login_mgr,
1005 "KillSession",
1006 &error, NULL,
1007 "ssi", argv[i], arg_kill_who, arg_signal);
1008 if (r < 0)
1009 return log_error_errno(r, "Could not kill session: %s", bus_error_message(&error, r));
1010 }
1011
1012 return 0;
1013 }
1014
1015 static int enable_linger(int argc, char *argv[], void *userdata) {
1016 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1017 sd_bus *bus = userdata;
1018 char* short_argv[3];
1019 bool b;
1020 int r;
1021
1022 assert(bus);
1023 assert(argv);
1024
1025 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1026
1027 b = streq(argv[0], "enable-linger");
1028
1029 if (argc < 2) {
1030 /* No argument? Let's use an empty user name,
1031 * then logind will use our user. */
1032
1033 short_argv[0] = argv[0];
1034 short_argv[1] = (char*) "";
1035 short_argv[2] = NULL;
1036 argv = short_argv;
1037 argc = 2;
1038 }
1039
1040 for (int i = 1; i < argc; i++) {
1041 uid_t uid;
1042
1043 if (isempty(argv[i]))
1044 uid = UID_INVALID;
1045 else {
1046 r = get_user_creds((const char**) (argv+i), &uid, NULL, NULL, NULL, 0);
1047 if (r < 0)
1048 return log_error_errno(r, "Failed to look up user %s: %m", argv[i]);
1049 }
1050
1051 r = bus_call_method(
1052 bus,
1053 bus_login_mgr,
1054 "SetUserLinger",
1055 &error, NULL,
1056 "ubb", (uint32_t) uid, b, true);
1057 if (r < 0)
1058 return log_error_errno(r, "Could not enable linger: %s", bus_error_message(&error, r));
1059 }
1060
1061 return 0;
1062 }
1063
1064 static int terminate_user(int argc, char *argv[], void *userdata) {
1065 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1066 sd_bus *bus = userdata;
1067 int r;
1068
1069 assert(bus);
1070 assert(argv);
1071
1072 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1073
1074 for (int i = 1; i < argc; i++) {
1075 uid_t uid;
1076
1077 if (isempty(argv[i]))
1078 uid = getuid();
1079 else {
1080 const char *u = argv[i];
1081
1082 r = get_user_creds(&u, &uid, NULL, NULL, NULL, 0);
1083 if (r < 0)
1084 return log_error_errno(r, "Failed to look up user %s: %m", argv[i]);
1085 }
1086
1087 r = bus_call_method(bus, bus_login_mgr, "TerminateUser", &error, NULL, "u", (uint32_t) uid);
1088 if (r < 0)
1089 return log_error_errno(r, "Could not terminate user: %s", bus_error_message(&error, r));
1090 }
1091
1092 return 0;
1093 }
1094
1095 static int kill_user(int argc, char *argv[], void *userdata) {
1096 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1097 sd_bus *bus = userdata;
1098 int r;
1099
1100 assert(bus);
1101 assert(argv);
1102
1103 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1104
1105 if (!arg_kill_who)
1106 arg_kill_who = "all";
1107
1108 for (int i = 1; i < argc; i++) {
1109 uid_t uid;
1110
1111 if (isempty(argv[i]))
1112 uid = getuid();
1113 else {
1114 const char *u = argv[i];
1115
1116 r = get_user_creds(&u, &uid, NULL, NULL, NULL, 0);
1117 if (r < 0)
1118 return log_error_errno(r, "Failed to look up user %s: %m", argv[i]);
1119 }
1120
1121 r = bus_call_method(
1122 bus,
1123 bus_login_mgr,
1124 "KillUser",
1125 &error, NULL,
1126 "ui", (uint32_t) uid, arg_signal);
1127 if (r < 0)
1128 return log_error_errno(r, "Could not kill user: %s", bus_error_message(&error, r));
1129 }
1130
1131 return 0;
1132 }
1133
1134 static int attach(int argc, char *argv[], void *userdata) {
1135 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1136 sd_bus *bus = userdata;
1137 int r;
1138
1139 assert(bus);
1140 assert(argv);
1141
1142 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1143
1144 for (int i = 2; i < argc; i++) {
1145
1146 r = bus_call_method(
1147 bus,
1148 bus_login_mgr,
1149 "AttachDevice",
1150 &error, NULL,
1151 "ssb", argv[1], argv[i], true);
1152 if (r < 0)
1153 return log_error_errno(r, "Could not attach device: %s", bus_error_message(&error, r));
1154 }
1155
1156 return 0;
1157 }
1158
1159 static int flush_devices(int argc, char *argv[], void *userdata) {
1160 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1161 sd_bus *bus = userdata;
1162 int r;
1163
1164 assert(bus);
1165 assert(argv);
1166
1167 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1168
1169 r = bus_call_method(bus, bus_login_mgr, "FlushDevices", &error, NULL, "b", true);
1170 if (r < 0)
1171 return log_error_errno(r, "Could not flush devices: %s", bus_error_message(&error, r));
1172
1173 return 0;
1174 }
1175
1176 static int lock_sessions(int argc, char *argv[], void *userdata) {
1177 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1178 sd_bus *bus = userdata;
1179 int r;
1180
1181 assert(bus);
1182 assert(argv);
1183
1184 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1185
1186 r = bus_call_method(
1187 bus,
1188 bus_login_mgr,
1189 streq(argv[0], "lock-sessions") ? "LockSessions" : "UnlockSessions",
1190 &error, NULL,
1191 NULL);
1192 if (r < 0)
1193 return log_error_errno(r, "Could not lock sessions: %s", bus_error_message(&error, r));
1194
1195 return 0;
1196 }
1197
1198 static int terminate_seat(int argc, char *argv[], void *userdata) {
1199 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1200 sd_bus *bus = userdata;
1201 int r;
1202
1203 assert(bus);
1204 assert(argv);
1205
1206 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1207
1208 for (int i = 1; i < argc; i++) {
1209
1210 r = bus_call_method(bus, bus_login_mgr, "TerminateSeat", &error, NULL, "s", argv[i]);
1211 if (r < 0)
1212 return log_error_errno(r, "Could not terminate seat: %s", bus_error_message(&error, r));
1213 }
1214
1215 return 0;
1216 }
1217
1218 static int help(int argc, char *argv[], void *userdata) {
1219 _cleanup_free_ char *link = NULL;
1220 int r;
1221
1222 pager_open(arg_pager_flags);
1223
1224 r = terminal_urlify_man("loginctl", "1", &link);
1225 if (r < 0)
1226 return log_oom();
1227
1228 printf("%s [OPTIONS...] COMMAND ...\n\n"
1229 "%sSend control commands to or query the login manager.%s\n"
1230 "\nSession Commands:\n"
1231 " list-sessions List sessions\n"
1232 " session-status [ID...] Show session status\n"
1233 " show-session [ID...] Show properties of sessions or the manager\n"
1234 " activate [ID] Activate a session\n"
1235 " lock-session [ID...] Screen lock one or more sessions\n"
1236 " unlock-session [ID...] Screen unlock one or more sessions\n"
1237 " lock-sessions Screen lock all current sessions\n"
1238 " unlock-sessions Screen unlock all current sessions\n"
1239 " terminate-session ID... Terminate one or more sessions\n"
1240 " kill-session ID... Send signal to processes of a session\n"
1241 "\nUser Commands:\n"
1242 " list-users List users\n"
1243 " user-status [USER...] Show user status\n"
1244 " show-user [USER...] Show properties of users or the manager\n"
1245 " enable-linger [USER...] Enable linger state of one or more users\n"
1246 " disable-linger [USER...] Disable linger state of one or more users\n"
1247 " terminate-user USER... Terminate all sessions of one or more users\n"
1248 " kill-user USER... Send signal to processes of a user\n"
1249 "\nSeat Commands:\n"
1250 " list-seats List seats\n"
1251 " seat-status [NAME...] Show seat status\n"
1252 " show-seat [NAME...] Show properties of seats or the manager\n"
1253 " attach NAME DEVICE... Attach one or more devices to a seat\n"
1254 " flush-devices Flush all device associations\n"
1255 " terminate-seat NAME... Terminate all sessions on one or more seats\n"
1256 "\nOptions:\n"
1257 " -h --help Show this help\n"
1258 " --version Show package version\n"
1259 " --no-pager Do not pipe output into a pager\n"
1260 " --no-legend Do not show the headers and footers\n"
1261 " --no-ask-password Don't prompt for password\n"
1262 " -H --host=[USER@]HOST Operate on remote host\n"
1263 " -M --machine=CONTAINER Operate on local container\n"
1264 " -p --property=NAME Show only properties by this name\n"
1265 " -P NAME Equivalent to --value --property=NAME\n"
1266 " -a --all Show all properties, including empty ones\n"
1267 " --value When showing properties, only print the value\n"
1268 " -l --full Do not ellipsize output\n"
1269 " --kill-who=WHO Who to send signal to\n"
1270 " -s --signal=SIGNAL Which signal to send\n"
1271 " -n --lines=INTEGER Number of journal entries to show\n"
1272 " -o --output=STRING Change journal output mode (short, short-precise,\n"
1273 " short-iso, short-iso-precise, short-full,\n"
1274 " short-monotonic, short-unix, verbose, export,\n"
1275 " json, json-pretty, json-sse, json-seq, cat,\n"
1276 " with-unit)\n"
1277 "\nSee the %s for details.\n",
1278 program_invocation_short_name,
1279 ansi_highlight(),
1280 ansi_normal(),
1281 link);
1282
1283 return 0;
1284 }
1285
1286 static int parse_argv(int argc, char *argv[]) {
1287 enum {
1288 ARG_VERSION = 0x100,
1289 ARG_VALUE,
1290 ARG_NO_PAGER,
1291 ARG_NO_LEGEND,
1292 ARG_KILL_WHO,
1293 ARG_NO_ASK_PASSWORD,
1294 };
1295
1296 static const struct option options[] = {
1297 { "help", no_argument, NULL, 'h' },
1298 { "version", no_argument, NULL, ARG_VERSION },
1299 { "property", required_argument, NULL, 'p' },
1300 { "all", no_argument, NULL, 'a' },
1301 { "value", no_argument, NULL, ARG_VALUE },
1302 { "full", no_argument, NULL, 'l' },
1303 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
1304 { "no-legend", no_argument, NULL, ARG_NO_LEGEND },
1305 { "kill-who", required_argument, NULL, ARG_KILL_WHO },
1306 { "signal", required_argument, NULL, 's' },
1307 { "host", required_argument, NULL, 'H' },
1308 { "machine", required_argument, NULL, 'M' },
1309 { "no-ask-password", no_argument, NULL, ARG_NO_ASK_PASSWORD },
1310 { "lines", required_argument, NULL, 'n' },
1311 { "output", required_argument, NULL, 'o' },
1312 {}
1313 };
1314
1315 int c, r;
1316
1317 assert(argc >= 0);
1318 assert(argv);
1319
1320 while ((c = getopt_long(argc, argv, "hp:P:als:H:M:n:o:", options, NULL)) >= 0)
1321
1322 switch (c) {
1323
1324 case 'h':
1325 return help(0, NULL, NULL);
1326
1327 case ARG_VERSION:
1328 return version();
1329
1330 case 'P':
1331 SET_FLAG(arg_print_flags, BUS_PRINT_PROPERTY_ONLY_VALUE, true);
1332 _fallthrough_;
1333
1334 case 'p': {
1335 r = strv_extend(&arg_property, optarg);
1336 if (r < 0)
1337 return log_oom();
1338
1339 /* If the user asked for a particular
1340 * property, show it to them, even if it is
1341 * empty. */
1342 SET_FLAG(arg_print_flags, BUS_PRINT_PROPERTY_SHOW_EMPTY, true);
1343 break;
1344 }
1345
1346 case 'a':
1347 SET_FLAG(arg_print_flags, BUS_PRINT_PROPERTY_SHOW_EMPTY, true);
1348 break;
1349
1350 case ARG_VALUE:
1351 SET_FLAG(arg_print_flags, BUS_PRINT_PROPERTY_ONLY_VALUE, true);
1352 break;
1353
1354 case 'l':
1355 arg_full = true;
1356 break;
1357
1358 case 'n':
1359 if (safe_atou(optarg, &arg_lines) < 0)
1360 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1361 "Failed to parse lines '%s'", optarg);
1362 break;
1363
1364 case 'o':
1365 if (streq(optarg, "help")) {
1366 DUMP_STRING_TABLE(output_mode, OutputMode, _OUTPUT_MODE_MAX);
1367 return 0;
1368 }
1369
1370 arg_output = output_mode_from_string(optarg);
1371 if (arg_output < 0)
1372 return log_error_errno(arg_output, "Unknown output '%s'.", optarg);
1373
1374 if (OUTPUT_MODE_IS_JSON(arg_output))
1375 arg_legend = false;
1376
1377 break;
1378
1379 case ARG_NO_PAGER:
1380 arg_pager_flags |= PAGER_DISABLE;
1381 break;
1382
1383 case ARG_NO_LEGEND:
1384 arg_legend = false;
1385 break;
1386
1387 case ARG_NO_ASK_PASSWORD:
1388 arg_ask_password = false;
1389 break;
1390
1391 case ARG_KILL_WHO:
1392 arg_kill_who = optarg;
1393 break;
1394
1395 case 's':
1396 r = parse_signal_argument(optarg, &arg_signal);
1397 if (r <= 0)
1398 return r;
1399 break;
1400
1401 case 'H':
1402 arg_transport = BUS_TRANSPORT_REMOTE;
1403 arg_host = optarg;
1404 break;
1405
1406 case 'M':
1407 arg_transport = BUS_TRANSPORT_MACHINE;
1408 arg_host = optarg;
1409 break;
1410
1411 case '?':
1412 return -EINVAL;
1413
1414 default:
1415 assert_not_reached();
1416 }
1417
1418 return 1;
1419 }
1420
1421 static int loginctl_main(int argc, char *argv[], sd_bus *bus) {
1422 static const Verb verbs[] = {
1423 { "help", VERB_ANY, VERB_ANY, 0, help },
1424 { "list-sessions", VERB_ANY, 1, VERB_DEFAULT, list_sessions },
1425 { "session-status", VERB_ANY, VERB_ANY, 0, show_session },
1426 { "show-session", VERB_ANY, VERB_ANY, 0, show_session },
1427 { "activate", VERB_ANY, 2, 0, activate },
1428 { "lock-session", VERB_ANY, VERB_ANY, 0, activate },
1429 { "unlock-session", VERB_ANY, VERB_ANY, 0, activate },
1430 { "lock-sessions", VERB_ANY, 1, 0, lock_sessions },
1431 { "unlock-sessions", VERB_ANY, 1, 0, lock_sessions },
1432 { "terminate-session", 2, VERB_ANY, 0, activate },
1433 { "kill-session", 2, VERB_ANY, 0, kill_session },
1434 { "list-users", VERB_ANY, 1, 0, list_users },
1435 { "user-status", VERB_ANY, VERB_ANY, 0, show_user },
1436 { "show-user", VERB_ANY, VERB_ANY, 0, show_user },
1437 { "enable-linger", VERB_ANY, VERB_ANY, 0, enable_linger },
1438 { "disable-linger", VERB_ANY, VERB_ANY, 0, enable_linger },
1439 { "terminate-user", 2, VERB_ANY, 0, terminate_user },
1440 { "kill-user", 2, VERB_ANY, 0, kill_user },
1441 { "list-seats", VERB_ANY, 1, 0, list_seats },
1442 { "seat-status", VERB_ANY, VERB_ANY, 0, show_seat },
1443 { "show-seat", VERB_ANY, VERB_ANY, 0, show_seat },
1444 { "attach", 3, VERB_ANY, 0, attach },
1445 { "flush-devices", VERB_ANY, 1, 0, flush_devices },
1446 { "terminate-seat", 2, VERB_ANY, 0, terminate_seat },
1447 {}
1448 };
1449
1450 return dispatch_verb(argc, argv, verbs, bus);
1451 }
1452
1453 static int run(int argc, char *argv[]) {
1454 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
1455 int r;
1456
1457 setlocale(LC_ALL, "");
1458 log_setup();
1459
1460 /* The journal merging logic potentially needs a lot of fds. */
1461 (void) rlimit_nofile_bump(HIGH_RLIMIT_NOFILE);
1462
1463 sigbus_install();
1464
1465 r = parse_argv(argc, argv);
1466 if (r <= 0)
1467 return r;
1468
1469 r = bus_connect_transport(arg_transport, arg_host, false, &bus);
1470 if (r < 0)
1471 return bus_log_connect_error(r, arg_transport);
1472
1473 (void) sd_bus_set_allow_interactive_authorization(bus, arg_ask_password);
1474
1475 return loginctl_main(argc, argv, bus);
1476 }
1477
1478 DEFINE_MAIN_FUNCTION(run);