]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/scope.c
cgroup: analyze: Match standard dump format
[thirdparty/systemd.git] / src / core / scope.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
6c12b52e
LP
2
3#include <errno.h>
6c12b52e
LP
4#include <unistd.h>
5
b5efdb8a 6#include "alloc-util.h"
07630cea 7#include "dbus-scope.h"
6fcbec6f 8#include "dbus-unit.h"
07630cea 9#include "load-dropin.h"
6c12b52e 10#include "log.h"
b5efdb8a 11#include "scope.h"
d68c645b 12#include "serialize.h"
6c12b52e 13#include "special.h"
8b43440b 14#include "string-table.h"
07630cea
LP
15#include "string-util.h"
16#include "strv.h"
6c12b52e 17#include "unit-name.h"
efdb0237 18#include "unit.h"
6c12b52e
LP
19
20static const UnitActiveState state_translation_table[_SCOPE_STATE_MAX] = {
21 [SCOPE_DEAD] = UNIT_INACTIVE,
22 [SCOPE_RUNNING] = UNIT_ACTIVE,
a911bb9a 23 [SCOPE_ABANDONED] = UNIT_ACTIVE,
6c12b52e
LP
24 [SCOPE_STOP_SIGTERM] = UNIT_DEACTIVATING,
25 [SCOPE_STOP_SIGKILL] = UNIT_DEACTIVATING,
26 [SCOPE_FAILED] = UNIT_FAILED
27};
28
718db961
LP
29static int scope_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata);
30
6c12b52e
LP
31static void scope_init(Unit *u) {
32 Scope *s = SCOPE(u);
33
34 assert(u);
35 assert(u->load_state == UNIT_STUB);
36
1f19a534 37 s->timeout_stop_usec = u->manager->default_timeout_stop_usec;
1b4cd0cf 38 u->ignore_on_isolate = true;
6c12b52e
LP
39}
40
41static void scope_done(Unit *u) {
42 Scope *s = SCOPE(u);
43
44 assert(u);
45
371c0b79
LP
46 s->controller = mfree(s->controller);
47 s->controller_track = sd_bus_track_unref(s->controller_track);
2d4a39e7 48
718db961
LP
49 s->timer_event_source = sd_event_source_unref(s->timer_event_source);
50}
51
36c16a7c 52static int scope_arm_timer(Scope *s, usec_t usec) {
718db961
LP
53 int r;
54
55 assert(s);
56
718db961 57 if (s->timer_event_source) {
36c16a7c 58 r = sd_event_source_set_time(s->timer_event_source, usec);
718db961
LP
59 if (r < 0)
60 return r;
61
62 return sd_event_source_set_enabled(s->timer_event_source, SD_EVENT_ONESHOT);
63 }
64
36c16a7c
LP
65 if (usec == USEC_INFINITY)
66 return 0;
67
cbf60d0a 68 r = sd_event_add_time(
6a0f1f6d
LP
69 UNIT(s)->manager->event,
70 &s->timer_event_source,
71 CLOCK_MONOTONIC,
36c16a7c 72 usec, 0,
6a0f1f6d 73 scope_dispatch_timer, s);
7dfbe2e3
TG
74 if (r < 0)
75 return r;
76
77 (void) sd_event_source_set_description(s->timer_event_source, "scope-timer");
78
79 return 0;
6c12b52e
LP
80}
81
82static void scope_set_state(Scope *s, ScopeState state) {
83 ScopeState old_state;
84 assert(s);
85
6fcbec6f
LP
86 if (s->state != state)
87 bus_unit_send_pending_change_signal(UNIT(s), false);
88
6c12b52e
LP
89 old_state = s->state;
90 s->state = state;
91
a911bb9a 92 if (!IN_SET(state, SCOPE_STOP_SIGTERM, SCOPE_STOP_SIGKILL))
718db961 93 s->timer_event_source = sd_event_source_unref(s->timer_event_source);
6c12b52e 94
50be4f4a 95 if (IN_SET(state, SCOPE_DEAD, SCOPE_FAILED)) {
a911bb9a 96 unit_unwatch_all_pids(UNIT(s));
50be4f4a
LP
97 unit_dequeue_rewatch_pids(UNIT(s));
98 }
a911bb9a 99
6c12b52e 100 if (state != old_state)
a911bb9a 101 log_debug("%s changed %s -> %s", UNIT(s)->id, scope_state_to_string(old_state), scope_state_to_string(state));
6c12b52e 102
2ad2e41a 103 unit_notify(UNIT(s), state_translation_table[old_state], state_translation_table[state], 0);
6c12b52e
LP
104}
105
106static int scope_add_default_dependencies(Scope *s) {
107 int r;
108
109 assert(s);
110
4c9ea260
LP
111 if (!UNIT(s)->default_dependencies)
112 return 0;
113
6c12b52e
LP
114 /* Make sure scopes are unloaded on shutdown */
115 r = unit_add_two_dependencies_by_name(
116 UNIT(s),
117 UNIT_BEFORE, UNIT_CONFLICTS,
5a724170 118 SPECIAL_SHUTDOWN_TARGET, true,
eef85c4a 119 UNIT_DEPENDENCY_DEFAULT);
6c12b52e
LP
120 if (r < 0)
121 return r;
122
123 return 0;
124}
125
126static int scope_verify(Scope *s) {
127 assert(s);
128
129 if (UNIT(s)->load_state != UNIT_LOADED)
130 return 0;
131
efdb0237 132 if (set_isempty(UNIT(s)->pids) &&
2c289ea8 133 !MANAGER_IS_RELOADING(UNIT(s)->manager) &&
efdb0237 134 !unit_has_name(UNIT(s), SPECIAL_INIT_SCOPE)) {
f2341e0a 135 log_unit_error(UNIT(s), "Scope has no PIDs. Refusing.");
6f40aa45 136 return -ENOENT;
6c12b52e
LP
137 }
138
139 return 0;
140}
141
8e4e851f
LP
142static int scope_load_init_scope(Unit *u) {
143 assert(u);
144
145 if (!unit_has_name(u, SPECIAL_INIT_SCOPE))
146 return 0;
147
148 u->transient = true;
f5869324 149 u->perpetual = true;
8e4e851f
LP
150
151 /* init.scope is a bit special, as it has to stick around forever. Because of its special semantics we
152 * synthesize it here, instead of relying on the unit file on disk. */
153
154 u->default_dependencies = false;
8e4e851f
LP
155
156 /* Prettify things, if we can. */
157 if (!u->description)
158 u->description = strdup("System and Service Manager");
159 if (!u->documentation)
160 (void) strv_extend(&u->documentation, "man:systemd(1)");
161
162 return 1;
163}
164
6c12b52e
LP
165static int scope_load(Unit *u) {
166 Scope *s = SCOPE(u);
167 int r;
168
169 assert(s);
170 assert(u->load_state == UNIT_STUB);
171
2c289ea8 172 if (!u->transient && !MANAGER_IS_RELOADING(u->manager))
4f4afc88 173 /* Refuse to load non-transient scope units, but allow them while reloading. */
6c12b52e
LP
174 return -ENOENT;
175
8e4e851f
LP
176 r = scope_load_init_scope(u);
177 if (r < 0)
178 return r;
4f4afc88 179 r = unit_load_fragment_and_dropin_optional(u);
6c12b52e
LP
180 if (r < 0)
181 return r;
182
4f4afc88
LP
183 if (u->load_state == UNIT_LOADED) {
184 r = unit_patch_contexts(u);
185 if (r < 0)
186 return r;
598459ce 187
4f4afc88
LP
188 r = unit_set_default_slice(u);
189 if (r < 0)
190 return r;
6c12b52e 191
4f4afc88
LP
192 r = scope_add_default_dependencies(s);
193 if (r < 0)
194 return r;
195 }
6c12b52e
LP
196
197 return scope_verify(s);
198}
199
be847e82 200static int scope_coldplug(Unit *u) {
6c12b52e
LP
201 Scope *s = SCOPE(u);
202 int r;
203
204 assert(s);
205 assert(s->state == SCOPE_DEAD);
206
36c16a7c
LP
207 if (s->deserialized_state == s->state)
208 return 0;
a911bb9a 209
36c16a7c
LP
210 if (IN_SET(s->deserialized_state, SCOPE_STOP_SIGKILL, SCOPE_STOP_SIGTERM)) {
211 r = scope_arm_timer(s, usec_add(u->state_change_timestamp.monotonic, s->timeout_stop_usec));
212 if (r < 0)
213 return r;
6c12b52e
LP
214 }
215
36c16a7c 216 if (!IN_SET(s->deserialized_state, SCOPE_DEAD, SCOPE_FAILED))
50be4f4a 217 (void) unit_enqueue_rewatch_pids(u);
36c16a7c 218
371c0b79
LP
219 bus_scope_track_controller(s);
220
36c16a7c 221 scope_set_state(s, s->deserialized_state);
6c12b52e
LP
222 return 0;
223}
224
225static void scope_dump(Unit *u, FILE *f, const char *prefix) {
226 Scope *s = SCOPE(u);
227
228 assert(s);
229 assert(f);
230
231 fprintf(f,
232 "%sScope State: %s\n"
233 "%sResult: %s\n",
234 prefix, scope_state_to_string(s->state),
235 prefix, scope_result_to_string(s->result));
236
237 cgroup_context_dump(&s->cgroup_context, f, prefix);
238 kill_context_dump(&s->kill_context, f, prefix);
239}
240
241static void scope_enter_dead(Scope *s, ScopeResult f) {
242 assert(s);
243
a0fef983 244 if (s->result == SCOPE_SUCCESS)
6c12b52e
LP
245 s->result = f;
246
aac99f30 247 unit_log_result(UNIT(s), s->result == SCOPE_SUCCESS, scope_result_to_string(s->result));
6c12b52e
LP
248 scope_set_state(s, s->result != SCOPE_SUCCESS ? SCOPE_FAILED : SCOPE_DEAD);
249}
250
251static void scope_enter_signal(Scope *s, ScopeState state, ScopeResult f) {
2d4a39e7 252 bool skip_signal = false;
6c12b52e
LP
253 int r;
254
255 assert(s);
256
a0fef983 257 if (s->result == SCOPE_SUCCESS)
6c12b52e
LP
258 s->result = f;
259
50be4f4a
LP
260 /* Before sending any signal, make sure we track all members of this cgroup */
261 (void) unit_watch_all_pids(UNIT(s));
262
263 /* Also, enqueue a job that we recheck all our PIDs a bit later, given that it's likely some processes have
264 * died now */
265 (void) unit_enqueue_rewatch_pids(UNIT(s));
a911bb9a 266
371c0b79
LP
267 /* If we have a controller set let's ask the controller nicely to terminate the scope, instead of us going
268 * directly into SIGTERM berserk mode */
2d4a39e7
LP
269 if (state == SCOPE_STOP_SIGTERM)
270 skip_signal = bus_scope_send_request_stop(s) > 0;
271
59ec09a8
ZJS
272 if (skip_signal)
273 r = 1; /* wait */
274 else {
2d4a39e7
LP
275 r = unit_kill_context(
276 UNIT(s),
277 &s->kill_context,
3862e809
LP
278 state != SCOPE_STOP_SIGTERM ? KILL_KILL :
279 s->was_abandoned ? KILL_TERMINATE_AND_LOG :
280 KILL_TERMINATE,
2d4a39e7
LP
281 -1, -1, false);
282 if (r < 0)
283 goto fail;
59ec09a8 284 }
6c12b52e
LP
285
286 if (r > 0) {
36c16a7c 287 r = scope_arm_timer(s, usec_add(now(CLOCK_MONOTONIC), s->timeout_stop_usec));
718db961
LP
288 if (r < 0)
289 goto fail;
6c12b52e
LP
290
291 scope_set_state(s, state);
ac84d1fb
LP
292 } else if (state == SCOPE_STOP_SIGTERM)
293 scope_enter_signal(s, SCOPE_STOP_SIGKILL, SCOPE_SUCCESS);
294 else
6c12b52e
LP
295 scope_enter_dead(s, SCOPE_SUCCESS);
296
297 return;
298
299fail:
f2341e0a 300 log_unit_warning_errno(UNIT(s), r, "Failed to kill processes: %m");
6c12b52e
LP
301
302 scope_enter_dead(s, SCOPE_FAILURE_RESOURCES);
303}
304
305static int scope_start(Unit *u) {
306 Scope *s = SCOPE(u);
307 int r;
308
309 assert(s);
310
efdb0237
LP
311 if (unit_has_name(u, SPECIAL_INIT_SCOPE))
312 return -EPERM;
313
7b617155
LP
314 if (s->state == SCOPE_FAILED)
315 return -EPERM;
316
dd305ec9 317 /* We can't fulfill this right now, please try again later */
3742095b 318 if (IN_SET(s->state, SCOPE_STOP_SIGTERM, SCOPE_STOP_SIGKILL))
6c12b52e
LP
319 return -EAGAIN;
320
321 assert(s->state == SCOPE_DEAD);
322
2c289ea8 323 if (!u->transient && !MANAGER_IS_RELOADING(u->manager))
6c12b52e
LP
324 return -ENOENT;
325
371c0b79
LP
326 (void) bus_scope_track_controller(s);
327
4b58153d
LP
328 r = unit_acquire_invocation_id(u);
329 if (r < 0)
330 return r;
331
5ad096b3 332 (void) unit_realize_cgroup(u);
9b2559a1 333 (void) unit_reset_accounting(u);
5ad096b3 334
01542056 335 unit_export_state_files(u);
d3070fbd 336
01542056 337 r = unit_attach_pids_to_cgroup(u, u->pids, NULL);
dd305ec9 338 if (r < 0) {
01542056 339 log_unit_warning_errno(u, r, "Failed to add PIDs to scope's control group: %m");
68a01fb6 340 scope_enter_dead(s, SCOPE_FAILURE_RESOURCES);
6c12b52e 341 return r;
dd305ec9 342 }
6c12b52e 343
6c12b52e
LP
344 s->result = SCOPE_SUCCESS;
345
346 scope_set_state(s, SCOPE_RUNNING);
b91ada2a
LP
347
348 /* Start watching the PIDs currently in the scope */
01542056 349 (void) unit_enqueue_rewatch_pids(u);
82a2b6bb 350 return 1;
6c12b52e
LP
351}
352
353static int scope_stop(Unit *u) {
354 Scope *s = SCOPE(u);
355
356 assert(s);
6c12b52e 357
3742095b 358 if (IN_SET(s->state, SCOPE_STOP_SIGTERM, SCOPE_STOP_SIGKILL))
6c12b52e
LP
359 return 0;
360
3742095b 361 assert(IN_SET(s->state, SCOPE_RUNNING, SCOPE_ABANDONED));
6c12b52e
LP
362
363 scope_enter_signal(s, SCOPE_STOP_SIGTERM, SCOPE_SUCCESS);
82a2b6bb 364 return 1;
6c12b52e
LP
365}
366
8bcca7e2
LP
367static void scope_reset_failed(Unit *u) {
368 Scope *s = SCOPE(u);
369
370 assert(s);
371
372 if (s->state == SCOPE_FAILED)
373 scope_set_state(s, SCOPE_DEAD);
374
375 s->result = SCOPE_SUCCESS;
376}
377
718db961 378static int scope_kill(Unit *u, KillWho who, int signo, sd_bus_error *error) {
6c12b52e
LP
379 return unit_kill_common(u, who, signo, -1, -1, error);
380}
381
7a7821c8 382static int scope_get_timeout(Unit *u, usec_t *timeout) {
68db7a3b 383 Scope *s = SCOPE(u);
7a7821c8 384 usec_t t;
68db7a3b
ZJS
385 int r;
386
387 if (!s->timer_event_source)
388 return 0;
389
7a7821c8 390 r = sd_event_source_get_time(s->timer_event_source, &t);
68db7a3b
ZJS
391 if (r < 0)
392 return r;
7a7821c8
LP
393 if (t == USEC_INFINITY)
394 return 0;
68db7a3b 395
7a7821c8 396 *timeout = t;
68db7a3b
ZJS
397 return 1;
398}
399
6c12b52e
LP
400static int scope_serialize(Unit *u, FILE *f, FDSet *fds) {
401 Scope *s = SCOPE(u);
402
403 assert(s);
404 assert(f);
405 assert(fds);
406
d68c645b
LP
407 (void) serialize_item(f, "state", scope_state_to_string(s->state));
408 (void) serialize_bool(f, "was-abandoned", s->was_abandoned);
33fe0afe
LP
409
410 if (s->controller)
d68c645b 411 (void) serialize_item(f, "controller", s->controller);
33fe0afe 412
6c12b52e
LP
413 return 0;
414}
415
416static int scope_deserialize_item(Unit *u, const char *key, const char *value, FDSet *fds) {
417 Scope *s = SCOPE(u);
33fe0afe 418 int r;
6c12b52e
LP
419
420 assert(u);
421 assert(key);
422 assert(value);
423 assert(fds);
424
425 if (streq(key, "state")) {
426 ScopeState state;
427
428 state = scope_state_from_string(value);
429 if (state < 0)
f2341e0a 430 log_unit_debug(u, "Failed to parse state value: %s", value);
6c12b52e
LP
431 else
432 s->deserialized_state = state;
433
3862e809
LP
434 } else if (streq(key, "was-abandoned")) {
435 int k;
436
437 k = parse_boolean(value);
438 if (k < 0)
439 log_unit_debug(u, "Failed to parse boolean value: %s", value);
440 else
441 s->was_abandoned = k;
33fe0afe
LP
442 } else if (streq(key, "controller")) {
443
444 r = free_and_strdup(&s->controller, value);
445 if (r < 0)
d68c645b 446 return log_oom();
33fe0afe 447
6c12b52e 448 } else
f2341e0a 449 log_unit_debug(u, "Unknown serialization key: %s", key);
6c12b52e
LP
450
451 return 0;
452}
453
a911bb9a
LP
454static void scope_notify_cgroup_empty_event(Unit *u) {
455 Scope *s = SCOPE(u);
456 assert(u);
457
f2341e0a 458 log_unit_debug(u, "cgroup is empty");
a911bb9a
LP
459
460 if (IN_SET(s->state, SCOPE_RUNNING, SCOPE_ABANDONED, SCOPE_STOP_SIGTERM, SCOPE_STOP_SIGKILL))
461 scope_enter_dead(s, SCOPE_SUCCESS);
462}
463
464static void scope_sigchld_event(Unit *u, pid_t pid, int code, int status) {
11aef522 465 assert(u);
a911bb9a 466
11aef522
LP
467 /* If we get a SIGCHLD event for one of the processes we were interested in, then we look for others to
468 * watch, under the assumption that we'll sooner or later get a SIGCHLD for them, as the original
469 * process we watched was probably the parent of them, and they are hence now our children. */
a911bb9a 470
50be4f4a 471 (void) unit_enqueue_rewatch_pids(u);
a911bb9a
LP
472}
473
718db961
LP
474static int scope_dispatch_timer(sd_event_source *source, usec_t usec, void *userdata) {
475 Scope *s = SCOPE(userdata);
6c12b52e
LP
476
477 assert(s);
718db961 478 assert(s->timer_event_source == source);
6c12b52e
LP
479
480 switch (s->state) {
481
482 case SCOPE_STOP_SIGTERM:
483 if (s->kill_context.send_sigkill) {
f2341e0a 484 log_unit_warning(UNIT(s), "Stopping timed out. Killing.");
6c12b52e
LP
485 scope_enter_signal(s, SCOPE_STOP_SIGKILL, SCOPE_FAILURE_TIMEOUT);
486 } else {
f2341e0a 487 log_unit_warning(UNIT(s), "Stopping timed out. Skipping SIGKILL.");
6c12b52e
LP
488 scope_enter_dead(s, SCOPE_FAILURE_TIMEOUT);
489 }
490
491 break;
492
493 case SCOPE_STOP_SIGKILL:
f2341e0a 494 log_unit_warning(UNIT(s), "Still around after SIGKILL. Ignoring.");
6c12b52e
LP
495 scope_enter_dead(s, SCOPE_FAILURE_TIMEOUT);
496 break;
497
498 default:
499 assert_not_reached("Timeout at wrong time.");
500 }
718db961
LP
501
502 return 0;
6c12b52e
LP
503}
504
a911bb9a
LP
505int scope_abandon(Scope *s) {
506 assert(s);
6c12b52e 507
efdb0237
LP
508 if (unit_has_name(UNIT(s), SPECIAL_INIT_SCOPE))
509 return -EPERM;
510
a911bb9a
LP
511 if (!IN_SET(s->state, SCOPE_RUNNING, SCOPE_ABANDONED))
512 return -ESTALE;
6c12b52e 513
3862e809 514 s->was_abandoned = true;
371c0b79 515
a1e58e8e 516 s->controller = mfree(s->controller);
371c0b79
LP
517 s->controller_track = sd_bus_track_unref(s->controller_track);
518
8cb83266 519 scope_set_state(s, SCOPE_ABANDONED);
6c12b52e 520
50be4f4a
LP
521 /* The client is no longer watching the remaining processes, so let's step in here, under the assumption that
522 * the remaining processes will be sooner or later reassigned to us as parent. */
523 (void) unit_enqueue_rewatch_pids(UNIT(s));
6c12b52e 524
a911bb9a 525 return 0;
6c12b52e
LP
526}
527
528_pure_ static UnitActiveState scope_active_state(Unit *u) {
529 assert(u);
530
531 return state_translation_table[SCOPE(u)->state];
532}
533
534_pure_ static const char *scope_sub_state_to_string(Unit *u) {
535 assert(u);
536
537 return scope_state_to_string(SCOPE(u)->state);
538}
539
04eb582a 540static void scope_enumerate_perpetual(Manager *m) {
efdb0237
LP
541 Unit *u;
542 int r;
543
544 assert(m);
545
546 /* Let's unconditionally add the "init.scope" special unit
547 * that encapsulates PID 1. Note that PID 1 already is in the
548 * cgroup for this, we hence just need to allocate the object
549 * for it and that's it. */
550
551 u = manager_get_unit(m, SPECIAL_INIT_SCOPE);
552 if (!u) {
a581e45a 553 r = unit_new_for_name(m, sizeof(Scope), SPECIAL_INIT_SCOPE, &u);
efdb0237 554 if (r < 0) {
a581e45a 555 log_error_errno(r, "Failed to allocate the special " SPECIAL_INIT_SCOPE " unit: %m");
ba64af90 556 return;
efdb0237
LP
557 }
558 }
559
560 u->transient = true;
f5869324 561 u->perpetual = true;
efdb0237 562 SCOPE(u)->deserialized_state = SCOPE_RUNNING;
efdb0237
LP
563
564 unit_add_to_load_queue(u);
565 unit_add_to_dbus_queue(u);
efdb0237
LP
566}
567
6c12b52e
LP
568static const char* const scope_result_table[_SCOPE_RESULT_MAX] = {
569 [SCOPE_SUCCESS] = "success",
570 [SCOPE_FAILURE_RESOURCES] = "resources",
571 [SCOPE_FAILURE_TIMEOUT] = "timeout",
572};
573
574DEFINE_STRING_TABLE_LOOKUP(scope_result, ScopeResult);
575
576const UnitVTable scope_vtable = {
577 .object_size = sizeof(Scope),
718db961
LP
578 .cgroup_context_offset = offsetof(Scope, cgroup_context),
579 .kill_context_offset = offsetof(Scope, kill_context),
580
6c12b52e
LP
581 .sections =
582 "Unit\0"
583 "Scope\0"
584 "Install\0",
6c12b52e 585 .private_section = "Scope",
6c12b52e 586
700e2d63 587 .can_transient = true,
1d9cc876 588 .can_delegate = true,
d4fd1cf2 589 .once_only = true,
6c12b52e
LP
590
591 .init = scope_init,
592 .load = scope_load,
593 .done = scope_done,
594
595 .coldplug = scope_coldplug,
596
597 .dump = scope_dump,
598
599 .start = scope_start,
600 .stop = scope_stop,
601
602 .kill = scope_kill,
603
68db7a3b
ZJS
604 .get_timeout = scope_get_timeout,
605
6c12b52e
LP
606 .serialize = scope_serialize,
607 .deserialize_item = scope_deserialize_item,
608
609 .active_state = scope_active_state,
610 .sub_state_to_string = scope_sub_state_to_string,
611
a911bb9a
LP
612 .sigchld_event = scope_sigchld_event,
613
8bcca7e2
LP
614 .reset_failed = scope_reset_failed,
615
6c12b52e
LP
616 .notify_cgroup_empty = scope_notify_cgroup_empty_event,
617
718db961 618 .bus_vtable = bus_scope_vtable,
6c12b52e
LP
619 .bus_set_property = bus_scope_set_property,
620 .bus_commit_properties = bus_scope_commit_properties,
621
04eb582a 622 .enumerate_perpetual = scope_enumerate_perpetual,
6c12b52e 623};