flatpak: terminate session if Ghostty disconnects from bus (#12427)

This makes sure that if Ghostty crashes, commands spawned are also
terminated automatically by the Flatpak Session Helper.

The few crashes I got left a lot of background processes, some of them
pretty heavy and took awhile to be figured out.
This commit is contained in:
Mitchell Hashimoto
2026-04-25 20:49:33 -07:00
committed by GitHub

View File

@@ -33,6 +33,16 @@ pub const FlatpakHostCommand = struct {
@cInclude("gio/gio.h");
@cInclude("gio/gunixfdlist.h");
});
/// Flags for HostCommand method
///
/// Ref: https://docs.flatpak.org/en/latest/libflatpak-api-reference.html#gdbus-method-org-freedesktop-Flatpak-Development.HostCommand
const Flags = packed struct(c_uint) {
/// Clear the environment
clear_env: bool = false,
/// Kill the sandbox when the caller disappears from the session bus
watch_bus: bool = false,
_reserved: std.meta.Int(.unsigned, @bitSizeOf(c_uint) - 2) = 0,
};
/// Argv are the arguments to call on the host with argv[0] being
/// the command to execute.
@@ -366,6 +376,9 @@ pub const FlatpakHostCommand = struct {
const g_cwd = c.g_get_current_dir();
defer c.g_free(g_cwd);
// Terminate session if Ghostty drops off the bus (e.g. due to crashes)
const flags: Flags = .{ .watch_bus = true };
// The params for our RPC call
const params = c.g_variant_new(
"(^ay^aay@a{uh}@a{ss}u)",
@@ -373,7 +386,7 @@ pub const FlatpakHostCommand = struct {
args.ptr,
c.g_variant_builder_end(fd_builder),
c.g_variant_builder_end(env_builder),
@as(c_int, 0),
@as(c_uint, @bitCast(flags)),
);
_ = c.g_variant_ref_sink(params); // take ownership
defer c.g_variant_unref(params);