ashpd/flatpak/mod.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
//! # Examples
//!
//! Spawn a process inside of the sandbox, only works in a Flatpak.
//!
//! ```rust,no_run
//! use std::{collections::HashMap, os::fd::BorrowedFd};
//!
//! use ashpd::flatpak::{Flatpak, SpawnFlags, SpawnOptions};
//!
//! async fn run() -> ashpd::Result<()> {
//! let proxy = Flatpak::new().await?;
//! let fds: HashMap<_, BorrowedFd<'_>> = HashMap::new();
//!
//! proxy
//! .spawn(
//! "/",
//! &["contrast"],
//! fds,
//! HashMap::new(),
//! SpawnFlags::ClearEnv | SpawnFlags::NoNetwork,
//! SpawnOptions::default(),
//! )
//! .await?;
//!
//! Ok(())
//! }
//! ```
use std::{
collections::HashMap,
fmt::Debug,
os::fd::{AsFd, OwnedFd},
path::Path,
};
use enumflags2::{bitflags, BitFlags};
use futures_util::Stream;
use serde::Serialize;
use serde_repr::{Deserialize_repr, Serialize_repr};
use zbus::zvariant::{self, Fd, OwnedObjectPath, SerializeDict, Type};
use crate::{proxy::Proxy, Error, FilePath, Pid};
#[bitflags]
#[derive(Serialize_repr, Deserialize_repr, PartialEq, Eq, Copy, Clone, Debug, Type)]
#[repr(u32)]
/// A bitmask representing the "permissions" of a newly created sandbox.
pub enum SandboxFlags {
/// Share the display access (X11, Wayland) with the caller.
DisplayAccess,
/// Share the sound access (PulseAudio) with the caller.
SoundAccess,
/// Share the gpu access with the caller.
GpuAccess,
/// Allow sandbox access to (filtered) session bus.
SessionBusAccess,
/// Allow sandbox access to accessibility bus.
AccessibilityBusAccess,
}
#[bitflags]
#[derive(Serialize_repr, Deserialize_repr, PartialEq, Eq, Copy, Clone, Debug, Type)]
#[repr(u32)]
#[doc(alias = "XdpSpawnFlags")]
/// Flags affecting the created sandbox.
pub enum SpawnFlags {
#[doc(alias = "XDP_SPAWN_FLAG_CLEARENV")]
/// Clear the environment.
ClearEnv,
#[doc(alias = "XDP_SPAWN_FLAG_LATEST")]
/// Spawn the latest version of the app.
LatestVersion,
#[doc(alias = "XDP_SPAWN_FLAG_SANDBOX")]
/// Spawn in a sandbox (equivalent of the sandbox option of `flatpak run`).
Sandbox,
#[doc(alias = "XDP_SPAWN_FLAG_NO_NETWORK")]
/// Spawn without network (equivalent of the `unshare=network` option of
/// `flatpak run`).
NoNetwork,
#[doc(alias = "XDP_SPAWN_FLAG_WATCH")]
/// Kill the sandbox when the caller disappears from the session bus.
WatchBus,
/// Expose the sandbox pids in the callers sandbox, only supported if using
/// user namespaces for containers (not setuid), see the support property.
ExposePids,
/// Emit a SpawnStarted signal once the sandboxed process has been fully
/// started.
NotifyStart,
/// Expose the sandbox process IDs in the caller's sandbox and the caller's
/// process IDs in the new sandbox.
SharePids,
/// Don't provide app files at `/app` in the new sandbox.
EmptyApp,
}
#[bitflags]
#[derive(Serialize_repr, Deserialize_repr, PartialEq, Eq, Copy, Clone, Debug, Type)]
#[repr(u32)]
/// Flags marking what optional features are available.
pub enum SupportsFlags {
/// Supports the expose sandbox pids flag of Spawn.
ExposePids,
}
#[derive(SerializeDict, Type, Debug, Default)]
/// Specified options for a [`Flatpak::spawn`] request.
#[zvariant(signature = "dict")]
pub struct SpawnOptions {
/// A list of filenames for files inside the sandbox that will be exposed to
/// the new sandbox, for reading and writing.
#[zvariant(rename = "sandbox-expose")]
sandbox_expose: Option<Vec<String>>,
/// A list of filenames for files inside the sandbox that will be exposed to
/// the new sandbox, read-only.
#[zvariant(rename = "sandbox-expose-ro")]
sandbox_expose_ro: Option<Vec<String>>,
/// A list of file descriptor for files inside the sandbox that will be
/// exposed to the new sandbox, for reading and writing.
#[zvariant(rename = "sandbox-expose-fd")]
sandbox_expose_fd: Option<Vec<zvariant::OwnedFd>>,
/// A list of file descriptor for files inside the sandbox that will be
/// exposed to the new sandbox, read-only.
#[zvariant(rename = "sandbox-expose-fd-ro")]
sandbox_expose_fd_ro: Option<Vec<zvariant::OwnedFd>>,
/// Flags affecting the created sandbox.
#[zvariant(rename = "sandbox-flags")]
sandbox_flags: Option<BitFlags<SandboxFlags>>,
/// A list of environment variables to remove.
#[zvariant(rename = "unset-env")]
unset_env: Option<Vec<String>>,
/// A file descriptor of the directory that will be used as `/usr` in the
/// new sandbox.
#[zvariant(rename = "usr-fd")]
usr_fd: Option<zvariant::OwnedFd>,
/// A file descriptor of the directory that will be used as `/app` in the
/// new sandbox.
#[zvariant(rename = "app-fd")]
app_fd: Option<zvariant::OwnedFd>,
}
impl SpawnOptions {
/// Sets the list of filenames for files to expose the new sandbox.
/// **Note** absolute paths or subdirectories are not allowed.
#[must_use]
pub fn sandbox_expose<P: IntoIterator<Item = I>, I: AsRef<str> + Type + Serialize>(
mut self,
sandbox_expose: impl Into<Option<P>>,
) -> Self {
self.sandbox_expose = sandbox_expose
.into()
.map(|a| a.into_iter().map(|s| s.as_ref().to_owned()).collect());
self
}
/// Sets the list of filenames for files to expose the new sandbox,
/// read-only.
/// **Note** absolute paths or subdirectories are not allowed.
#[must_use]
pub fn sandbox_expose_ro<P: IntoIterator<Item = I>, I: AsRef<str> + Type + Serialize>(
mut self,
sandbox_expose_ro: impl Into<Option<P>>,
) -> Self {
self.sandbox_expose_ro = sandbox_expose_ro
.into()
.map(|a| a.into_iter().map(|s| s.as_ref().to_owned()).collect());
self
}
/// Sets the list of file descriptors of files to expose the new sandbox.
#[must_use]
pub fn sandbox_expose_fd<P: IntoIterator<Item = OwnedFd>>(
mut self,
sandbox_expose_fd: impl Into<Option<P>>,
) -> Self {
self.sandbox_expose_fd = sandbox_expose_fd
.into()
.map(|a| a.into_iter().map(zvariant::OwnedFd::from).collect());
self
}
/// Sets the list of file descriptors of files to expose the new sandbox,
/// read-only.
#[must_use]
pub fn sandbox_expose_fd_ro<P: IntoIterator<Item = OwnedFd>>(
mut self,
sandbox_expose_fd_ro: impl Into<Option<P>>,
) -> Self {
self.sandbox_expose_fd_ro = sandbox_expose_fd_ro
.into()
.map(|a| a.into_iter().map(zvariant::OwnedFd::from).collect());
self
}
/// Sets the created sandbox flags.
#[must_use]
pub fn sandbox_flags(
mut self,
sandbox_flags: impl Into<Option<BitFlags<SandboxFlags>>>,
) -> Self {
self.sandbox_flags = sandbox_flags.into();
self
}
/// Env variables to unset.
#[must_use]
pub fn unset_env<P: IntoIterator<Item = I>, I: AsRef<str> + Type + Serialize>(
mut self,
env: impl Into<Option<P>>,
) -> Self {
self.unset_env = env
.into()
.map(|a| a.into_iter().map(|s| s.as_ref().to_owned()).collect());
self
}
/// Set a file descriptor of the directory that will be used as `/usr` in
/// the new sandbox.
#[must_use]
pub fn usr_fd(mut self, fd: impl Into<Option<OwnedFd>>) -> Self {
self.usr_fd = fd.into().map(|f| f.into());
self
}
/// Set a file descriptor of the directory that will be used as `/app` in
/// the new sandbox.
#[must_use]
pub fn app_fd(mut self, fd: impl Into<Option<OwnedFd>>) -> Self {
self.app_fd = fd.into().map(|f| f.into());
self
}
}
#[derive(SerializeDict, Type, Debug, Default)]
/// Specified options for a [`Flatpak::create_update_monitor`] request.
///
/// Currently there are no possible options yet.
#[zvariant(signature = "dict")]
struct CreateMonitorOptions {}
/// The interface exposes some interactions with Flatpak on the host to the
/// sandbox. For example, it allows you to restart the applications or start a
/// more sandboxed instance.
///
/// Wrapper of the DBus interface: [`org.freedesktop.portal.Flatpak`](https://docs.flatpak.org/en/latest/portal-api-reference.html#gdbus-org.freedesktop.portal.Flatpak).
#[derive(Debug)]
#[doc(alias = "org.freedesktop.portal.Flatpak")]
pub struct Flatpak<'a>(Proxy<'a>);
impl<'a> Flatpak<'a> {
/// Create a new instance of [`Flatpak`].
pub async fn new() -> Result<Flatpak<'a>, Error> {
let proxy = Proxy::new_flatpak("org.freedesktop.portal.Flatpak").await?;
Ok(Self(proxy))
}
/// Creates an update monitor object that will emit signals
/// when an update for the caller becomes available, and can be used to
/// install it.
///
/// # Required version
///
/// The method requires the 2nd version implementation of the portal and
/// would fail with [`Error::RequiresVersion`] otherwise.
///
/// # Specifications
///
/// See also [`CreateUpdateMonitor`](https://docs.flatpak.org/en/latest/portal-api-reference.html#gdbus-method-org-freedesktop-portal-Flatpak.CreateUpdateMonitor).
#[doc(alias = "CreateUpdateMonitor")]
#[doc(alias = "xdp_portal_update_monitor_start")]
pub async fn create_update_monitor(&self) -> Result<UpdateMonitor<'a>, Error> {
let options = CreateMonitorOptions::default();
let path = self
.0
.call_versioned::<OwnedObjectPath>("CreateUpdateMonitor", &(options), 2)
.await?;
UpdateMonitor::new(path.into_inner()).await
}
/// Emitted when a process starts by [`spawn()`][`Flatpak::spawn`].
///
/// # Specifications
///
/// See also [`SpawnStarted`](https://docs.flatpak.org/en/latest/portal-api-reference.html#gdbus-signal-org-freedesktop-portal-Flatpak.SpawnStarted).
#[doc(alias = "SpawnStarted")]
pub async fn receive_spawn_started(&self) -> Result<impl Stream<Item = (u32, u32)>, Error> {
self.0.signal("SpawnStarted").await
}
/// Emitted when a process started by [`spawn()`][`Flatpak::spawn`]
/// exits.
///
/// # Specifications
///
/// See also [`SpawnExited`](https://docs.flatpak.org/en/latest/portal-api-reference.html#gdbus-signal-org-freedesktop-portal-Flatpak.SpawnExited).
#[doc(alias = "SpawnExited")]
#[doc(alias = "XdpPortal::spawn-exited")]
pub async fn receive_spawn_exited(&self) -> Result<impl Stream<Item = (u32, u32)>, Error> {
self.0.signal("SpawnExited").await
}
/// This methods let you start a new instance of your application,
/// optionally enabling a tighter sandbox.
///
/// # Arguments
///
/// * `cwd_path` - The working directory for the new process.
/// * `argv` - The argv for the new process, starting with the executable to
/// launch.
/// * `fds` - Array of file descriptors to pass to the new process.
/// * `envs` - Array of variable/value pairs for the environment of the new
/// process.
/// * `flags`
/// * `options` - A [`SpawnOptions`].
///
/// # Returns
///
/// The PID of the new process.
///
/// # Specifications
///
/// See also [`Spawn`](https://docs.flatpak.org/en/latest/portal-api-reference.html#gdbus-method-org-freedesktop-portal-Flatpak.Spawn).
#[doc(alias = "Spawn")]
#[doc(alias = "xdp_portal_spawn")]
pub async fn spawn(
&self,
cwd_path: impl AsRef<Path>,
argv: &[impl AsRef<Path>],
fds: HashMap<u32, impl AsFd>,
envs: HashMap<&str, &str>,
flags: BitFlags<SpawnFlags>,
options: SpawnOptions,
) -> Result<u32, Error> {
let cwd_path = FilePath::new(cwd_path)?;
let argv = argv
.iter()
.map(FilePath::new)
.collect::<Result<Vec<FilePath>, _>>()?;
let fds: HashMap<u32, Fd> = fds.iter().map(|(k, val)| (*k, Fd::from(val))).collect();
self.0
.call("Spawn", &(cwd_path, argv, fds, envs, flags, options))
.await
}
/// This methods let you send a Unix signal to a process that was started
/// [`spawn()`][`Flatpak::spawn`].
///
/// # Arguments
///
/// * `pid` - The PID of the process to send the signal to.
/// * `signal` - The signal to send.
/// * `to_process_group` - Whether to send the signal to the process group.
///
/// # Specifications
///
/// See also [`SpawnSignal`](https://docs.flatpak.org/en/latest/portal-api-reference.html#gdbus-method-org-freedesktop-portal-Flatpak.SpawnSignal).
#[doc(alias = "SpawnSignal")]
#[doc(alias = "xdp_portal_spawn_signal")]
pub async fn spawn_signal(
&self,
pid: Pid,
signal: u32,
to_process_group: bool,
) -> Result<(), Error> {
self.0
.call("SpawnSignal", &(pid, signal, to_process_group))
.await
}
/// Flags marking what optional features are available.
///
/// # Specifications
///
/// See also [`supports`](https://docs.flatpak.org/en/latest/portal-api-reference.html#gdbus-property-org-freedesktop-portal-Flatpak.supports).
pub async fn supports(&self) -> Result<BitFlags<SupportsFlags>, Error> {
self.0
.property_versioned::<BitFlags<SupportsFlags>>("supports", 3)
.await
}
}
impl<'a> std::ops::Deref for Flatpak<'a> {
type Target = zbus::Proxy<'a>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
/// Monitor if there's an update it and install it.
mod update_monitor;
pub use update_monitor::{UpdateInfo, UpdateMonitor, UpdateProgress, UpdateStatus};
/// Provide for a way to execute processes outside of the sandbox
mod development;
pub use development::{Development, HostCommandFlags};