]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/login/loginctl.c
Merge pull request #17493 from Villemoes/va-arg-simplifications
[thirdparty/systemd.git] / src / login / loginctl.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
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-util.h"
26 #include "pretty-print.h"
27 #include "process-util.h"
28 #include "rlimit-util.h"
29 #include "sigbus.h"
30 #include "signal-util.h"
31 #include "spawn-polkit-agent.h"
32 #include "string-table.h"
33 #include "strv.h"
34 #include "sysfs-show.h"
35 #include "terminal-util.h"
36 #include "unit-name.h"
37 #include "user-util.h"
38 #include "verbs.h"
39
40 static char **arg_property = NULL;
41 static bool arg_all = false;
42 static bool arg_value = false;
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 arg_all * 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, (size_t) -1);
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 (void) 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 (void) 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 (void) 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 char since1[FORMAT_TIMESTAMP_RELATIVE_MAX];
454 char since2[FORMAT_TIMESTAMP_MAX];
455 const char *s1, *s2;
456 SessionStatusInfo i = {};
457 int r;
458
459 r = bus_map_all_properties(bus, "org.freedesktop.login1", path, map, BUS_MAP_BOOLEAN_AS_BOOL, &error, &m, &i);
460 if (r < 0)
461 return log_error_errno(r, "Could not get properties: %s", bus_error_message(&error, r));
462
463 if (*new_line)
464 printf("\n");
465
466 *new_line = true;
467
468 printf("%s - ", strna(i.id));
469
470 if (i.name)
471 printf("%s (%"PRIu32")\n", i.name, i.uid);
472 else
473 printf("%"PRIu32"\n", i.uid);
474
475 s1 = format_timestamp_relative(since1, sizeof(since1), i.timestamp.realtime);
476 s2 = format_timestamp(since2, sizeof(since2), i.timestamp.realtime);
477
478 if (s1)
479 printf("\t Since: %s; %s\n", s2, s1);
480 else if (s2)
481 printf("\t Since: %s\n", s2);
482
483 if (i.leader > 0) {
484 _cleanup_free_ char *t = NULL;
485
486 printf("\t Leader: %"PRIu32, i.leader);
487
488 (void) get_process_comm(i.leader, &t);
489 if (t)
490 printf(" (%s)", t);
491
492 printf("\n");
493 }
494
495 if (!isempty(i.seat)) {
496 printf("\t Seat: %s", i.seat);
497
498 if (i.vtnr > 0)
499 printf("; vc%u", i.vtnr);
500
501 printf("\n");
502 }
503
504 if (i.tty)
505 printf("\t TTY: %s\n", i.tty);
506 else if (i.display)
507 printf("\t Display: %s\n", i.display);
508
509 if (i.remote_host && i.remote_user)
510 printf("\t Remote: %s@%s\n", i.remote_user, i.remote_host);
511 else if (i.remote_host)
512 printf("\t Remote: %s\n", i.remote_host);
513 else if (i.remote_user)
514 printf("\t Remote: user %s\n", i.remote_user);
515 else if (i.remote)
516 printf("\t Remote: Yes\n");
517
518 if (i.service) {
519 printf("\t Service: %s", i.service);
520
521 if (i.type)
522 printf("; type %s", i.type);
523
524 if (i.class)
525 printf("; class %s", i.class);
526
527 printf("\n");
528 } else if (i.type) {
529 printf("\t Type: %s", i.type);
530
531 if (i.class)
532 printf("; class %s", i.class);
533
534 printf("\n");
535 } else if (i.class)
536 printf("\t Class: %s\n", i.class);
537
538 if (!isempty(i.desktop))
539 printf("\t Desktop: %s\n", i.desktop);
540
541 if (i.state)
542 printf("\t State: %s\n", i.state);
543
544 if (i.scope) {
545 printf("\t Unit: %s\n", i.scope);
546 show_unit_cgroup(bus, "org.freedesktop.systemd1.Scope", i.scope, i.leader);
547
548 if (arg_transport == BUS_TRANSPORT_LOCAL)
549 show_journal_by_unit(
550 stdout,
551 i.scope,
552 NULL,
553 arg_output,
554 0,
555 i.timestamp.monotonic,
556 arg_lines,
557 0,
558 get_output_flags() | OUTPUT_BEGIN_NEWLINE,
559 SD_JOURNAL_LOCAL_ONLY,
560 true,
561 NULL);
562 }
563
564 return 0;
565 }
566
567 static int print_user_status_info(sd_bus *bus, const char *path, bool *new_line) {
568
569 static const struct bus_properties_map map[] = {
570 { "Name", "s", NULL, offsetof(UserStatusInfo, name) },
571 { "Linger", "b", NULL, offsetof(UserStatusInfo, linger) },
572 { "Slice", "s", NULL, offsetof(UserStatusInfo, slice) },
573 { "State", "s", NULL, offsetof(UserStatusInfo, state) },
574 { "UID", "u", NULL, offsetof(UserStatusInfo, uid) },
575 { "Timestamp", "t", NULL, offsetof(UserStatusInfo, timestamp.realtime) },
576 { "TimestampMonotonic", "t", NULL, offsetof(UserStatusInfo, timestamp.monotonic) },
577 { "Display", "(so)", prop_map_first_of_struct, offsetof(UserStatusInfo, display) },
578 { "Sessions", "a(so)", prop_map_sessions_strv, offsetof(UserStatusInfo, sessions) },
579 {}
580 };
581
582 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
583 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
584 char since1[FORMAT_TIMESTAMP_RELATIVE_MAX];
585 char since2[FORMAT_TIMESTAMP_MAX];
586 const char *s1, *s2;
587 _cleanup_(user_status_info_clear) UserStatusInfo i = {};
588 int r;
589
590 r = bus_map_all_properties(bus, "org.freedesktop.login1", path, map, BUS_MAP_BOOLEAN_AS_BOOL, &error, &m, &i);
591 if (r < 0)
592 return log_error_errno(r, "Could not get properties: %s", bus_error_message(&error, r));
593
594 if (*new_line)
595 printf("\n");
596
597 *new_line = true;
598
599 if (i.name)
600 printf("%s (%"PRIu32")\n", i.name, i.uid);
601 else
602 printf("%"PRIu32"\n", i.uid);
603
604 s1 = format_timestamp_relative(since1, sizeof(since1), i.timestamp.realtime);
605 s2 = format_timestamp(since2, sizeof(since2), i.timestamp.realtime);
606
607 if (s1)
608 printf("\t Since: %s; %s\n", s2, s1);
609 else if (s2)
610 printf("\t Since: %s\n", s2);
611
612 if (!isempty(i.state))
613 printf("\t State: %s\n", i.state);
614
615 if (!strv_isempty(i.sessions)) {
616 char **l;
617 printf("\tSessions:");
618
619 STRV_FOREACH(l, i.sessions)
620 printf(" %s%s",
621 streq_ptr(*l, i.display) ? "*" : "",
622 *l);
623
624 printf("\n");
625 }
626
627 printf("\t Linger: %s\n", yes_no(i.linger));
628
629 if (i.slice) {
630 printf("\t Unit: %s\n", i.slice);
631 show_unit_cgroup(bus, "org.freedesktop.systemd1.Slice", i.slice, 0);
632
633 show_journal_by_unit(
634 stdout,
635 i.slice,
636 NULL,
637 arg_output,
638 0,
639 i.timestamp.monotonic,
640 arg_lines,
641 0,
642 get_output_flags() | OUTPUT_BEGIN_NEWLINE,
643 SD_JOURNAL_LOCAL_ONLY,
644 true,
645 NULL);
646 }
647
648 return 0;
649 }
650
651 static int print_seat_status_info(sd_bus *bus, const char *path, bool *new_line) {
652
653 static const struct bus_properties_map map[] = {
654 { "Id", "s", NULL, offsetof(SeatStatusInfo, id) },
655 { "ActiveSession", "(so)", prop_map_first_of_struct, offsetof(SeatStatusInfo, active_session) },
656 { "Sessions", "a(so)", prop_map_sessions_strv, offsetof(SeatStatusInfo, sessions) },
657 {}
658 };
659
660 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
661 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
662 _cleanup_(seat_status_info_clear) SeatStatusInfo i = {};
663 int r;
664
665 r = bus_map_all_properties(bus, "org.freedesktop.login1", path, map, 0, &error, &m, &i);
666 if (r < 0)
667 return log_error_errno(r, "Could not get properties: %s", bus_error_message(&error, r));
668
669 if (*new_line)
670 printf("\n");
671
672 *new_line = true;
673
674 printf("%s\n", strna(i.id));
675
676 if (!strv_isempty(i.sessions)) {
677 char **l;
678 printf("\tSessions:");
679
680 STRV_FOREACH(l, i.sessions) {
681 if (streq_ptr(*l, i.active_session))
682 printf(" *%s", *l);
683 else
684 printf(" %s", *l);
685 }
686
687 printf("\n");
688 }
689
690 if (arg_transport == BUS_TRANSPORT_LOCAL) {
691 unsigned c;
692
693 c = columns();
694 if (c > 21)
695 c -= 21;
696 else
697 c = 0;
698
699 printf("\t Devices:\n");
700
701 show_sysfs(i.id, "\t\t ", c, get_output_flags());
702 }
703
704 return 0;
705 }
706
707 static int print_property(const char *name, const char *expected_value, sd_bus_message *m, bool value, bool all) {
708 char type;
709 const char *contents;
710 int r;
711
712 assert(name);
713 assert(m);
714
715 r = sd_bus_message_peek_type(m, &type, &contents);
716 if (r < 0)
717 return r;
718
719 switch (type) {
720
721 case SD_BUS_TYPE_STRUCT:
722
723 if (contents[0] == SD_BUS_TYPE_STRING && STR_IN_SET(name, "Display", "Seat", "ActiveSession")) {
724 const char *s;
725
726 r = sd_bus_message_read(m, "(so)", &s, NULL);
727 if (r < 0)
728 return bus_log_parse_error(r);
729
730 if (all || !isempty(s))
731 bus_print_property_value(name, expected_value, value, s);
732
733 return 1;
734
735 } else if (contents[0] == SD_BUS_TYPE_UINT32 && streq(name, "User")) {
736 uint32_t uid;
737
738 r = sd_bus_message_read(m, "(uo)", &uid, NULL);
739 if (r < 0)
740 return bus_log_parse_error(r);
741
742 if (!uid_is_valid(uid))
743 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
744 "Invalid user ID: " UID_FMT,
745 uid);
746
747 bus_print_property_valuef(name, expected_value, value, UID_FMT, uid);
748 return 1;
749 }
750 break;
751
752 case SD_BUS_TYPE_ARRAY:
753
754 if (contents[0] == SD_BUS_TYPE_STRUCT_BEGIN && streq(name, "Sessions")) {
755 const char *s;
756 bool space = false;
757
758 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "(so)");
759 if (r < 0)
760 return bus_log_parse_error(r);
761
762 if (!value)
763 printf("%s=", name);
764
765 while ((r = sd_bus_message_read(m, "(so)", &s, NULL)) > 0) {
766 printf("%s%s", space ? " " : "", s);
767 space = true;
768 }
769
770 if (space || !value)
771 printf("\n");
772
773 if (r < 0)
774 return bus_log_parse_error(r);
775
776 r = sd_bus_message_exit_container(m);
777 if (r < 0)
778 return bus_log_parse_error(r);
779
780 return 1;
781 }
782 break;
783 }
784
785 return 0;
786 }
787
788 static int show_properties(sd_bus *bus, const char *path, bool *new_line) {
789 int r;
790
791 assert(bus);
792 assert(path);
793 assert(new_line);
794
795 if (*new_line)
796 printf("\n");
797
798 *new_line = true;
799
800 r = bus_print_all_properties(
801 bus,
802 "org.freedesktop.login1",
803 path,
804 print_property,
805 arg_property,
806 arg_value,
807 arg_all,
808 NULL);
809 if (r < 0)
810 return bus_log_parse_error(r);
811
812 return 0;
813 }
814
815 static int show_session(int argc, char *argv[], void *userdata) {
816 bool properties, new_line = false;
817 sd_bus *bus = userdata;
818 int r;
819 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
820 _cleanup_free_ char *path = NULL;
821
822 assert(bus);
823 assert(argv);
824
825 properties = !strstr(argv[0], "status");
826
827 (void) pager_open(arg_pager_flags);
828
829 if (argc <= 1) {
830 /* If no argument is specified inspect the manager itself */
831 if (properties)
832 return show_properties(bus, "/org/freedesktop/login1", &new_line);
833
834 return print_session_status_info(bus, "/org/freedesktop/login1/session/auto", &new_line);
835 }
836
837 for (int i = 1; i < argc; i++) {
838 r = get_session_path(bus, argv[i], &error, &path);
839 if (r < 0)
840 return log_error_errno(r, "Failed to get session path: %s", bus_error_message(&error, r));
841
842 if (properties)
843 r = show_properties(bus, path, &new_line);
844 else
845 r = print_session_status_info(bus, path, &new_line);
846
847 if (r < 0)
848 return r;
849 }
850
851 return 0;
852 }
853
854 static int show_user(int argc, char *argv[], void *userdata) {
855 bool properties, new_line = false;
856 sd_bus *bus = userdata;
857 int r;
858
859 assert(bus);
860 assert(argv);
861
862 properties = !strstr(argv[0], "status");
863
864 (void) pager_open(arg_pager_flags);
865
866 if (argc <= 1) {
867 /* If no argument is specified inspect the manager itself */
868 if (properties)
869 return show_properties(bus, "/org/freedesktop/login1", &new_line);
870
871 return print_user_status_info(bus, "/org/freedesktop/login1/user/self", &new_line);
872 }
873
874 for (int i = 1; i < argc; i++) {
875 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
876 _cleanup_(sd_bus_message_unrefp) sd_bus_message * reply = NULL;
877 const char *path = NULL;
878 uid_t uid;
879
880 r = get_user_creds((const char**) (argv+i), &uid, NULL, NULL, NULL, 0);
881 if (r < 0)
882 return log_error_errno(r, "Failed to look up user %s: %m", argv[i]);
883
884 r = sd_bus_call_method(
885 bus,
886 "org.freedesktop.login1",
887 "/org/freedesktop/login1",
888 "org.freedesktop.login1.Manager",
889 "GetUser",
890 &error, &reply,
891 "u", (uint32_t) uid);
892 if (r < 0)
893 return log_error_errno(r, "Failed to get user: %s", bus_error_message(&error, r));
894
895 r = sd_bus_message_read(reply, "o", &path);
896 if (r < 0)
897 return bus_log_parse_error(r);
898
899 if (properties)
900 r = show_properties(bus, path, &new_line);
901 else
902 r = print_user_status_info(bus, path, &new_line);
903
904 if (r < 0)
905 return r;
906 }
907
908 return 0;
909 }
910
911 static int show_seat(int argc, char *argv[], void *userdata) {
912 bool properties, new_line = false;
913 sd_bus *bus = userdata;
914 int r;
915
916 assert(bus);
917 assert(argv);
918
919 properties = !strstr(argv[0], "status");
920
921 (void) pager_open(arg_pager_flags);
922
923 if (argc <= 1) {
924 /* If no argument is specified inspect the manager itself */
925 if (properties)
926 return show_properties(bus, "/org/freedesktop/login1", &new_line);
927
928 return print_seat_status_info(bus, "/org/freedesktop/login1/seat/auto", &new_line);
929 }
930
931 for (int i = 1; i < argc; i++) {
932 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
933 _cleanup_(sd_bus_message_unrefp) sd_bus_message * reply = NULL;
934 const char *path = NULL;
935
936 r = bus_call_method(bus, bus_login_mgr, "GetSeat", &error, &reply, "s", argv[i]);
937 if (r < 0)
938 return log_error_errno(r, "Failed to get seat: %s", bus_error_message(&error, r));
939
940 r = sd_bus_message_read(reply, "o", &path);
941 if (r < 0)
942 return bus_log_parse_error(r);
943
944 if (properties)
945 r = show_properties(bus, path, &new_line);
946 else
947 r = print_seat_status_info(bus, path, &new_line);
948
949 if (r < 0)
950 return r;
951 }
952
953 return 0;
954 }
955
956 static int activate(int argc, char *argv[], void *userdata) {
957 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
958 sd_bus *bus = userdata;
959 int r;
960
961 assert(bus);
962 assert(argv);
963
964 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
965
966 if (argc < 2) {
967 r = sd_bus_call_method(
968 bus,
969 "org.freedesktop.login1",
970 "/org/freedesktop/login1/session/auto",
971 "org.freedesktop.login1.Session",
972 streq(argv[0], "lock-session") ? "Lock" :
973 streq(argv[0], "unlock-session") ? "Unlock" :
974 streq(argv[0], "terminate-session") ? "Terminate" :
975 "Activate",
976 &error, NULL, NULL);
977 if (r < 0)
978 return log_error_errno(r, "Failed to issue method call: %s", bus_error_message(&error, r));
979
980 return 0;
981 }
982
983 for (int i = 1; i < argc; i++) {
984
985 r = bus_call_method(
986 bus,
987 bus_login_mgr,
988 streq(argv[0], "lock-session") ? "LockSession" :
989 streq(argv[0], "unlock-session") ? "UnlockSession" :
990 streq(argv[0], "terminate-session") ? "TerminateSession" :
991 "ActivateSession",
992 &error, NULL,
993 "s", argv[i]);
994 if (r < 0)
995 return log_error_errno(r, "Failed to issue method call: %s", bus_error_message(&error, r));
996 }
997
998 return 0;
999 }
1000
1001 static int kill_session(int argc, char *argv[], void *userdata) {
1002 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1003 sd_bus *bus = userdata;
1004 int r;
1005
1006 assert(bus);
1007 assert(argv);
1008
1009 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1010
1011 if (!arg_kill_who)
1012 arg_kill_who = "all";
1013
1014 for (int i = 1; i < argc; i++) {
1015
1016 r = bus_call_method(
1017 bus,
1018 bus_login_mgr,
1019 "KillSession",
1020 &error, NULL,
1021 "ssi", argv[i], arg_kill_who, arg_signal);
1022 if (r < 0)
1023 return log_error_errno(r, "Could not kill session: %s", bus_error_message(&error, r));
1024 }
1025
1026 return 0;
1027 }
1028
1029 static int enable_linger(int argc, char *argv[], void *userdata) {
1030 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1031 sd_bus *bus = userdata;
1032 char* short_argv[3];
1033 bool b;
1034 int r;
1035
1036 assert(bus);
1037 assert(argv);
1038
1039 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1040
1041 b = streq(argv[0], "enable-linger");
1042
1043 if (argc < 2) {
1044 /* No argument? Let's use an empty user name,
1045 * then logind will use our user. */
1046
1047 short_argv[0] = argv[0];
1048 short_argv[1] = (char*) "";
1049 short_argv[2] = NULL;
1050 argv = short_argv;
1051 argc = 2;
1052 }
1053
1054 for (int i = 1; i < argc; i++) {
1055 uid_t uid;
1056
1057 if (isempty(argv[i]))
1058 uid = UID_INVALID;
1059 else {
1060 r = get_user_creds((const char**) (argv+i), &uid, NULL, NULL, NULL, 0);
1061 if (r < 0)
1062 return log_error_errno(r, "Failed to look up user %s: %m", argv[i]);
1063 }
1064
1065 r = bus_call_method(
1066 bus,
1067 bus_login_mgr,
1068 "SetUserLinger",
1069 &error, NULL,
1070 "ubb", (uint32_t) uid, b, true);
1071 if (r < 0)
1072 return log_error_errno(r, "Could not enable linger: %s", bus_error_message(&error, r));
1073 }
1074
1075 return 0;
1076 }
1077
1078 static int terminate_user(int argc, char *argv[], void *userdata) {
1079 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1080 sd_bus *bus = userdata;
1081 int r;
1082
1083 assert(bus);
1084 assert(argv);
1085
1086 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1087
1088 for (int i = 1; i < argc; i++) {
1089 uid_t uid;
1090
1091 r = get_user_creds((const char**) (argv+i), &uid, NULL, NULL, NULL, 0);
1092 if (r < 0)
1093 return log_error_errno(r, "Failed to look up user %s: %m", argv[i]);
1094
1095 r = bus_call_method(bus, bus_login_mgr, "TerminateUser", &error, NULL, "u", (uint32_t) uid);
1096 if (r < 0)
1097 return log_error_errno(r, "Could not terminate user: %s", bus_error_message(&error, r));
1098 }
1099
1100 return 0;
1101 }
1102
1103 static int kill_user(int argc, char *argv[], void *userdata) {
1104 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1105 sd_bus *bus = userdata;
1106 int r;
1107
1108 assert(bus);
1109 assert(argv);
1110
1111 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1112
1113 if (!arg_kill_who)
1114 arg_kill_who = "all";
1115
1116 for (int i = 1; i < argc; i++) {
1117 uid_t uid;
1118
1119 r = get_user_creds((const char**) (argv+i), &uid, NULL, NULL, NULL, 0);
1120 if (r < 0)
1121 return log_error_errno(r, "Failed to look up user %s: %m", argv[i]);
1122
1123 r = bus_call_method(
1124 bus,
1125 bus_login_mgr,
1126 "KillUser",
1127 &error, NULL,
1128 "ui", (uint32_t) uid, arg_signal);
1129 if (r < 0)
1130 return log_error_errno(r, "Could not kill user: %s", bus_error_message(&error, r));
1131 }
1132
1133 return 0;
1134 }
1135
1136 static int attach(int argc, char *argv[], void *userdata) {
1137 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1138 sd_bus *bus = userdata;
1139 int r;
1140
1141 assert(bus);
1142 assert(argv);
1143
1144 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1145
1146 for (int i = 2; i < argc; i++) {
1147
1148 r = bus_call_method(
1149 bus,
1150 bus_login_mgr,
1151 "AttachDevice",
1152 &error, NULL,
1153 "ssb", argv[1], argv[i], true);
1154 if (r < 0)
1155 return log_error_errno(r, "Could not attach device: %s", bus_error_message(&error, r));
1156 }
1157
1158 return 0;
1159 }
1160
1161 static int flush_devices(int argc, char *argv[], void *userdata) {
1162 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1163 sd_bus *bus = userdata;
1164 int r;
1165
1166 assert(bus);
1167 assert(argv);
1168
1169 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1170
1171 r = bus_call_method(bus, bus_login_mgr, "FlushDevices", &error, NULL, "b", true);
1172 if (r < 0)
1173 return log_error_errno(r, "Could not flush devices: %s", bus_error_message(&error, r));
1174
1175 return 0;
1176 }
1177
1178 static int lock_sessions(int argc, char *argv[], void *userdata) {
1179 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1180 sd_bus *bus = userdata;
1181 int r;
1182
1183 assert(bus);
1184 assert(argv);
1185
1186 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1187
1188 r = bus_call_method(
1189 bus,
1190 bus_login_mgr,
1191 streq(argv[0], "lock-sessions") ? "LockSessions" : "UnlockSessions",
1192 &error, NULL,
1193 NULL);
1194 if (r < 0)
1195 return log_error_errno(r, "Could not lock sessions: %s", bus_error_message(&error, r));
1196
1197 return 0;
1198 }
1199
1200 static int terminate_seat(int argc, char *argv[], void *userdata) {
1201 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1202 sd_bus *bus = userdata;
1203 int r;
1204
1205 assert(bus);
1206 assert(argv);
1207
1208 polkit_agent_open_if_enabled(arg_transport, arg_ask_password);
1209
1210 for (int i = 1; i < argc; i++) {
1211
1212 r = bus_call_method(bus, bus_login_mgr, "TerminateSeat", &error, NULL, "s", argv[i]);
1213 if (r < 0)
1214 return log_error_errno(r, "Could not terminate seat: %s", bus_error_message(&error, r));
1215 }
1216
1217 return 0;
1218 }
1219
1220 static int help(int argc, char *argv[], void *userdata) {
1221 _cleanup_free_ char *link = NULL;
1222 int r;
1223
1224 (void) pager_open(arg_pager_flags);
1225
1226 r = terminal_urlify_man("loginctl", "1", &link);
1227 if (r < 0)
1228 return log_oom();
1229
1230 printf("%s [OPTIONS...] COMMAND ...\n\n"
1231 "%sSend control commands to or query the login manager.%s\n"
1232 "\nSession Commands:\n"
1233 " list-sessions List sessions\n"
1234 " session-status [ID...] Show session status\n"
1235 " show-session [ID...] Show properties of sessions or the manager\n"
1236 " activate [ID] Activate a session\n"
1237 " lock-session [ID...] Screen lock one or more sessions\n"
1238 " unlock-session [ID...] Screen unlock one or more sessions\n"
1239 " lock-sessions Screen lock all current sessions\n"
1240 " unlock-sessions Screen unlock all current sessions\n"
1241 " terminate-session ID... Terminate one or more sessions\n"
1242 " kill-session ID... Send signal to processes of a session\n"
1243 "\nUser Commands:\n"
1244 " list-users List users\n"
1245 " user-status [USER...] Show user status\n"
1246 " show-user [USER...] Show properties of users or the manager\n"
1247 " enable-linger [USER...] Enable linger state of one or more users\n"
1248 " disable-linger [USER...] Disable linger state of one or more users\n"
1249 " terminate-user USER... Terminate all sessions of one or more users\n"
1250 " kill-user USER... Send signal to processes of a user\n"
1251 "\nSeat Commands:\n"
1252 " list-seats List seats\n"
1253 " seat-status [NAME...] Show seat status\n"
1254 " show-seat [NAME...] Show properties of seats or the manager\n"
1255 " attach NAME DEVICE... Attach one or more devices to a seat\n"
1256 " flush-devices Flush all device associations\n"
1257 " terminate-seat NAME... Terminate all sessions on one or more seats\n"
1258 "\nOptions:\n"
1259 " -h --help Show this help\n"
1260 " --version Show package version\n"
1261 " --no-pager Do not pipe output into a pager\n"
1262 " --no-legend Do not show the headers and footers\n"
1263 " --no-ask-password Don't prompt for password\n"
1264 " -H --host=[USER@]HOST Operate on remote host\n"
1265 " -M --machine=CONTAINER Operate on local container\n"
1266 " -p --property=NAME Show only properties by this name\n"
1267 " -P NAME Equivalent to --value --property=NAME\n"
1268 " -a --all Show all properties, including empty ones\n"
1269 " --value When showing properties, only print the value\n"
1270 " -l --full Do not ellipsize output\n"
1271 " --kill-who=WHO Who to send signal to\n"
1272 " -s --signal=SIGNAL Which signal to send\n"
1273 " -n --lines=INTEGER Number of journal entries to show\n"
1274 " -o --output=STRING Change journal output mode (short, short-precise,\n"
1275 " short-iso, short-iso-precise, short-full,\n"
1276 " short-monotonic, short-unix, verbose, export,\n"
1277 " json, json-pretty, json-sse, json-seq, cat,\n"
1278 " with-unit)\n"
1279 "\nSee the %s for details.\n"
1280 , program_invocation_short_name
1281 , ansi_highlight()
1282 , ansi_normal()
1283 , link
1284 );
1285
1286 return 0;
1287 }
1288
1289 static int parse_argv(int argc, char *argv[]) {
1290 enum {
1291 ARG_VERSION = 0x100,
1292 ARG_VALUE,
1293 ARG_NO_PAGER,
1294 ARG_NO_LEGEND,
1295 ARG_KILL_WHO,
1296 ARG_NO_ASK_PASSWORD,
1297 };
1298
1299 static const struct option options[] = {
1300 { "help", no_argument, NULL, 'h' },
1301 { "version", no_argument, NULL, ARG_VERSION },
1302 { "property", required_argument, NULL, 'p' },
1303 { "all", no_argument, NULL, 'a' },
1304 { "value", no_argument, NULL, ARG_VALUE },
1305 { "full", no_argument, NULL, 'l' },
1306 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
1307 { "no-legend", no_argument, NULL, ARG_NO_LEGEND },
1308 { "kill-who", required_argument, NULL, ARG_KILL_WHO },
1309 { "signal", required_argument, NULL, 's' },
1310 { "host", required_argument, NULL, 'H' },
1311 { "machine", required_argument, NULL, 'M' },
1312 { "no-ask-password", no_argument, NULL, ARG_NO_ASK_PASSWORD },
1313 { "lines", required_argument, NULL, 'n' },
1314 { "output", required_argument, NULL, 'o' },
1315 {}
1316 };
1317
1318 int c, r;
1319
1320 assert(argc >= 0);
1321 assert(argv);
1322
1323 while ((c = getopt_long(argc, argv, "hp:P:als:H:M:n:o:", options, NULL)) >= 0)
1324
1325 switch (c) {
1326
1327 case 'h':
1328 return help(0, NULL, NULL);
1329
1330 case ARG_VERSION:
1331 return version();
1332
1333 case 'P':
1334 arg_value = true;
1335 _fallthrough_;
1336
1337 case 'p': {
1338 r = strv_extend(&arg_property, optarg);
1339 if (r < 0)
1340 return log_oom();
1341
1342 /* If the user asked for a particular
1343 * property, show it to them, even if it is
1344 * empty. */
1345 arg_all = true;
1346 break;
1347 }
1348
1349 case 'a':
1350 arg_all = true;
1351 break;
1352
1353 case ARG_VALUE:
1354 arg_value = true;
1355 break;
1356
1357 case 'l':
1358 arg_full = true;
1359 break;
1360
1361 case 'n':
1362 if (safe_atou(optarg, &arg_lines) < 0)
1363 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1364 "Failed to parse lines '%s'", optarg);
1365 break;
1366
1367 case 'o':
1368 if (streq(optarg, "help")) {
1369 DUMP_STRING_TABLE(output_mode, OutputMode, _OUTPUT_MODE_MAX);
1370 return 0;
1371 }
1372
1373 arg_output = output_mode_from_string(optarg);
1374 if (arg_output < 0)
1375 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1376 "Unknown output '%s'.", optarg);
1377
1378 if (OUTPUT_MODE_IS_JSON(arg_output))
1379 arg_legend = false;
1380
1381 break;
1382
1383 case ARG_NO_PAGER:
1384 arg_pager_flags |= PAGER_DISABLE;
1385 break;
1386
1387 case ARG_NO_LEGEND:
1388 arg_legend = false;
1389 break;
1390
1391 case ARG_NO_ASK_PASSWORD:
1392 arg_ask_password = false;
1393 break;
1394
1395 case ARG_KILL_WHO:
1396 arg_kill_who = optarg;
1397 break;
1398
1399 case 's':
1400 if (streq(optarg, "help")) {
1401 DUMP_STRING_TABLE(signal, int, _NSIG);
1402 return 0;
1403 }
1404
1405 arg_signal = signal_from_string(optarg);
1406 if (arg_signal < 0)
1407 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1408 "Failed to parse signal string %s.", optarg);
1409 break;
1410
1411 case 'H':
1412 arg_transport = BUS_TRANSPORT_REMOTE;
1413 arg_host = optarg;
1414 break;
1415
1416 case 'M':
1417 arg_transport = BUS_TRANSPORT_MACHINE;
1418 arg_host = optarg;
1419 break;
1420
1421 case '?':
1422 return -EINVAL;
1423
1424 default:
1425 assert_not_reached("Unhandled option");
1426 }
1427
1428 return 1;
1429 }
1430
1431 static int loginctl_main(int argc, char *argv[], sd_bus *bus) {
1432 static const Verb verbs[] = {
1433 { "help", VERB_ANY, VERB_ANY, 0, help },
1434 { "list-sessions", VERB_ANY, 1, VERB_DEFAULT, list_sessions },
1435 { "session-status", VERB_ANY, VERB_ANY, 0, show_session },
1436 { "show-session", VERB_ANY, VERB_ANY, 0, show_session },
1437 { "activate", VERB_ANY, 2, 0, activate },
1438 { "lock-session", VERB_ANY, VERB_ANY, 0, activate },
1439 { "unlock-session", VERB_ANY, VERB_ANY, 0, activate },
1440 { "lock-sessions", VERB_ANY, 1, 0, lock_sessions },
1441 { "unlock-sessions", VERB_ANY, 1, 0, lock_sessions },
1442 { "terminate-session", 2, VERB_ANY, 0, activate },
1443 { "kill-session", 2, VERB_ANY, 0, kill_session },
1444 { "list-users", VERB_ANY, 1, 0, list_users },
1445 { "user-status", VERB_ANY, VERB_ANY, 0, show_user },
1446 { "show-user", VERB_ANY, VERB_ANY, 0, show_user },
1447 { "enable-linger", VERB_ANY, VERB_ANY, 0, enable_linger },
1448 { "disable-linger", VERB_ANY, VERB_ANY, 0, enable_linger },
1449 { "terminate-user", 2, VERB_ANY, 0, terminate_user },
1450 { "kill-user", 2, VERB_ANY, 0, kill_user },
1451 { "list-seats", VERB_ANY, 1, 0, list_seats },
1452 { "seat-status", VERB_ANY, VERB_ANY, 0, show_seat },
1453 { "show-seat", VERB_ANY, VERB_ANY, 0, show_seat },
1454 { "attach", 3, VERB_ANY, 0, attach },
1455 { "flush-devices", VERB_ANY, 1, 0, flush_devices },
1456 { "terminate-seat", 2, VERB_ANY, 0, terminate_seat },
1457 {}
1458 };
1459
1460 return dispatch_verb(argc, argv, verbs, bus);
1461 }
1462
1463 static int run(int argc, char *argv[]) {
1464 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
1465 int r;
1466
1467 setlocale(LC_ALL, "");
1468 log_setup_cli();
1469
1470 /* The journal merging logic potentially needs a lot of fds. */
1471 (void) rlimit_nofile_bump(HIGH_RLIMIT_NOFILE);
1472
1473 sigbus_install();
1474
1475 r = parse_argv(argc, argv);
1476 if (r <= 0)
1477 return r;
1478
1479 r = bus_connect_transport(arg_transport, arg_host, false, &bus);
1480 if (r < 0)
1481 return bus_log_connect_error(r);
1482
1483 (void) sd_bus_set_allow_interactive_authorization(bus, arg_ask_password);
1484
1485 return loginctl_main(argc, argv, bus);
1486 }
1487
1488 DEFINE_MAIN_FUNCTION(run);