mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-16 19:51:41 +00:00
tailfs: support storing bookmark data on shares
This allows the sandboxed Mac application to store security- scoped URL bookmarks in order to maintain access to restricted folders across restarts. Updates tailscale/corp#16827 Signed-off-by: Percy Wegmann <percy@tailscale.com>
This commit is contained in:
parent
f18f591bc6
commit
80f1cb6227
@ -31,6 +31,14 @@ type Share struct {
|
|||||||
// Can be left blank to use the default value of "whoever is running the
|
// Can be left blank to use the default value of "whoever is running the
|
||||||
// Tailscale GUI".
|
// Tailscale GUI".
|
||||||
As string `json:"who"`
|
As string `json:"who"`
|
||||||
|
|
||||||
|
// BookmarkData contains security-scoped bookmark data for the Sandboxed
|
||||||
|
// Mac application. The Sandboxed Mac application gains permission to
|
||||||
|
// access the Share's folder as a result of a user selecting it in a file
|
||||||
|
// picker. In order to retain access to it across restarts, it needs to
|
||||||
|
// hold on to a security-scoped bookmark. That bookmark is stored here. See
|
||||||
|
// https://developer.apple.com/documentation/security/app_sandbox/accessing_files_from_the_macos_app_sandbox#4144043
|
||||||
|
BookmarkData []byte `json:"bookmarkData"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// FileSystemForRemote is the TailFS filesystem exposed to remote nodes. It
|
// FileSystemForRemote is the TailFS filesystem exposed to remote nodes. It
|
||||||
|
Loading…
x
Reference in New Issue
Block a user