123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- // Copyright 2019-2024 Tauri Programme within The Commons Conservancy
- // SPDX-License-Identifier: Apache-2.0
- // SPDX-License-Identifier: MIT
- //! End-user abstraction for selecting permissions a window has access to.
- use std::{path::Path, str::FromStr};
- use crate::{acl::Identifier, platform::Target};
- use serde::{Deserialize, Serialize};
- use super::Scopes;
- /// An entry for a permission value in a [`Capability`] can be either a raw permission [`Identifier`]
- /// or an object that references a permission and extends its scope.
- #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
- #[serde(untagged)]
- #[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
- pub enum PermissionEntry {
- /// Reference a permission or permission set by identifier.
- PermissionRef(Identifier),
- /// Reference a permission or permission set by identifier and extends its scope.
- ExtendedPermission {
- /// Identifier of the permission or permission set.
- identifier: Identifier,
- /// Scope to append to the existing permission scope.
- #[serde(default, flatten)]
- scope: Scopes,
- },
- }
- impl PermissionEntry {
- /// The identifier of the permission referenced in this entry.
- pub fn identifier(&self) -> &Identifier {
- match self {
- Self::PermissionRef(identifier) => identifier,
- Self::ExtendedPermission {
- identifier,
- scope: _,
- } => identifier,
- }
- }
- }
- /// A grouping and boundary mechanism developers can use to isolate access to the IPC layer.
- ///
- /// It controls application windows fine grained access to the Tauri core, application, or plugin commands.
- /// If a window is not matching any capability then it has no access to the IPC layer at all.
- ///
- /// This can be done to create groups of windows, based on their required system access, which can reduce
- /// impact of frontend vulnerabilities in less privileged windows.
- /// Windows can be added to a capability by exact name (e.g. `main-window`) or glob patterns like `*` or `admin-*`.
- /// A Window can have none, one, or multiple associated capabilities.
- ///
- /// ## Example
- ///
- /// ```json
- /// {
- /// "identifier": "main-user-files-write",
- /// "description": "This capability allows the `main` window on macOS and Windows access to `filesystem` write related commands and `dialog` commands to enable programatic access to files selected by the user.",
- /// "windows": [
- /// "main"
- /// ],
- /// "permissions": [
- /// "path:default",
- /// "dialog:open",
- /// {
- /// "identifier": "fs:allow-write-text-file",
- /// "allow": [{ "path": "$HOME/test.txt" }]
- /// },
- /// "platforms": ["macOS","windows"]
- /// }
- /// ```
- #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
- #[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
- pub struct Capability {
- /// Identifier of the capability.
- ///
- /// ## Example
- ///
- /// `main-user-files-write`
- ///
- pub identifier: String,
- /// Description of what the capability is intended to allow on associated windows.
- ///
- /// It should contain a description of what the grouped permissions should allow.
- ///
- /// ## Example
- ///
- /// This capability allows the `main` window access to `filesystem` write related
- /// commands and `dialog` commands to enable programatic access to files selected by the user.
- #[serde(default)]
- pub description: String,
- /// Configure remote URLs that can use the capability permissions.
- ///
- /// This setting is optional and defaults to not being set, as our
- /// default use case is that the content is served from our local application.
- ///
- /// :::caution
- /// Make sure you understand the security implications of providing remote
- /// sources with local system access.
- /// :::
- ///
- /// ## Example
- ///
- /// ```json
- /// {
- /// "urls": ["https://*.mydomain.dev"]
- /// }
- /// ```
- #[serde(default, skip_serializing_if = "Option::is_none")]
- pub remote: Option<CapabilityRemote>,
- /// Whether this capability is enabled for local app URLs or not. Defaults to `true`.
- #[serde(default = "default_capability_local")]
- pub local: bool,
- /// List of windows that are affected by this capability. Can be a glob pattern.
- ///
- /// On multiwebview windows, prefer [`Self::webviews`] for a fine grained access control.
- ///
- /// ## Example
- ///
- /// `["main"]`
- #[serde(default, skip_serializing_if = "Vec::is_empty")]
- pub windows: Vec<String>,
- /// List of webviews that are affected by this capability. Can be a glob pattern.
- ///
- /// This is only required when using on multiwebview contexts, by default
- /// all child webviews of a window that matches [`Self::windows`] are linked.
- ///
- /// ## Example
- ///
- /// `["sub-webview-one", "sub-webview-two"]`
- #[serde(default, skip_serializing_if = "Vec::is_empty")]
- pub webviews: Vec<String>,
- /// List of permissions attached to this capability.
- ///
- /// Must include the plugin name as prefix in the form of `${plugin-name}:${permission-name}`.
- /// For commands directly implemented in the application itself only `${permission-name}`
- /// is required.
- ///
- /// ## Example
- ///
- /// ```json
- /// [
- /// "path:default",
- /// "event:default",
- /// "window:default",
- /// "app:default",
- /// "image:default",
- /// "resources:default",
- /// "menu:default",
- /// "tray:default",
- /// "shell:allow-open",
- /// "dialog:open",
- /// {
- /// "identifier": "fs:allow-write-text-file",
- /// "allow": [{ "path": "$HOME/test.txt" }]
- /// }
- /// ```
- pub permissions: Vec<PermissionEntry>,
- /// Limit which target platforms this capability applies to.
- ///
- /// By default all platforms are targeted.
- ///
- /// ## Example
- ///
- /// `["macOS","windows"]`
- #[serde(skip_serializing_if = "Option::is_none")]
- pub platforms: Option<Vec<Target>>,
- }
- fn default_capability_local() -> bool {
- true
- }
- /// Configuration for remote URLs that are associated with the capability.
- #[derive(Debug, Default, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord, Hash)]
- #[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
- #[serde(rename_all = "camelCase")]
- pub struct CapabilityRemote {
- /// Remote domains this capability refers to using the [URLPattern standard](https://urlpattern.spec.whatwg.org/).
- ///
- /// ## Examples
- ///
- /// - "https://*.mydomain.dev": allows subdomains of mydomain.dev
- /// - "https://mydomain.dev/api/*": allows any subpath of mydomain.dev/api
- pub urls: Vec<String>,
- }
- /// Capability formats accepted in a capability file.
- #[derive(Deserialize)]
- #[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
- #[serde(untagged)]
- pub enum CapabilityFile {
- /// A single capability.
- Capability(Capability),
- /// A list of capabilities.
- List(Vec<Capability>),
- /// A list of capabilities.
- NamedList {
- /// The list of capabilities.
- capabilities: Vec<Capability>,
- },
- }
- impl CapabilityFile {
- /// Load the given capability file.
- pub fn load<P: AsRef<Path>>(path: P) -> Result<Self, super::Error> {
- let path = path.as_ref();
- let capability_file = std::fs::read_to_string(path).map_err(super::Error::ReadFile)?;
- let ext = path.extension().unwrap().to_string_lossy().to_string();
- let file: Self = match ext.as_str() {
- "toml" => toml::from_str(&capability_file)?,
- "json" => serde_json::from_str(&capability_file)?,
- _ => return Err(super::Error::UnknownCapabilityFormat(ext)),
- };
- Ok(file)
- }
- }
- impl FromStr for CapabilityFile {
- type Err = super::Error;
- fn from_str(s: &str) -> Result<Self, Self::Err> {
- serde_json::from_str(s)
- .or_else(|_| toml::from_str(s))
- .map_err(Into::into)
- }
- }
- #[cfg(feature = "build")]
- mod build {
- use std::convert::identity;
- use proc_macro2::TokenStream;
- use quote::{quote, ToTokens, TokenStreamExt};
- use super::*;
- use crate::{literal_struct, tokens::*};
- impl ToTokens for CapabilityRemote {
- fn to_tokens(&self, tokens: &mut TokenStream) {
- let urls = vec_lit(&self.urls, str_lit);
- literal_struct!(
- tokens,
- ::tauri::utils::acl::capability::CapabilityRemote,
- urls
- );
- }
- }
- impl ToTokens for PermissionEntry {
- fn to_tokens(&self, tokens: &mut TokenStream) {
- let prefix = quote! { ::tauri::utils::acl::capability::PermissionEntry };
- tokens.append_all(match self {
- Self::PermissionRef(id) => {
- quote! { #prefix::PermissionRef(#id) }
- }
- Self::ExtendedPermission { identifier, scope } => {
- quote! { #prefix::ExtendedPermission {
- identifier: #identifier,
- scope: #scope
- } }
- }
- });
- }
- }
- impl ToTokens for Capability {
- fn to_tokens(&self, tokens: &mut TokenStream) {
- let identifier = str_lit(&self.identifier);
- let description = str_lit(&self.description);
- let remote = opt_lit(self.remote.as_ref());
- let local = self.local;
- let windows = vec_lit(&self.windows, str_lit);
- let webviews = vec_lit(&self.webviews, str_lit);
- let permissions = vec_lit(&self.permissions, identity);
- let platforms = opt_vec_lit(self.platforms.as_ref(), identity);
- literal_struct!(
- tokens,
- ::tauri::utils::acl::capability::Capability,
- identifier,
- description,
- remote,
- local,
- windows,
- webviews,
- permissions,
- platforms
- );
- }
- }
- }
|