mirror of
https://github.com/tailscale/tailscale.git
synced 2025-12-05 04:11:59 +00:00
cmd/tailscale, util/quarantine: set quarantine flags on files from Taildrop
This sets the "com.apple.quarantine" flag on macOS, and the "Zone.Identifier" alternate data stream on Windows. Change-Id: If14f805467b0e2963067937d7f34e08ba1d1fa85 Signed-off-by: Andrew Dunham <andrew@du.nham.ca>
This commit is contained in:
57
util/quarantine/quarantine_darwin.go
Normal file
57
util/quarantine/quarantine_darwin.go
Normal file
@@ -0,0 +1,57 @@
|
||||
// Copyright (c) 2022 Tailscale Inc & AUTHORS All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package quarantine
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/google/uuid"
|
||||
"golang.org/x/sys/unix"
|
||||
)
|
||||
|
||||
func setQuarantineAttr(f *os.File) error {
|
||||
sc, err := f.SyscallConn()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
now := time.Now()
|
||||
|
||||
// We uppercase the UUID to match what other applications on macOS do
|
||||
id := strings.ToUpper(uuid.New().String())
|
||||
|
||||
// kLSQuarantineTypeOtherDownload; this matches what AirDrop sets when
|
||||
// receiving a file.
|
||||
quarantineType := "0001"
|
||||
|
||||
// This format is under-documented, but the following links contain a
|
||||
// reasonably comprehensive overview:
|
||||
// https://eclecticlight.co/2020/10/29/quarantine-and-the-quarantine-flag/
|
||||
// https://nixhacker.com/security-protection-in-macos-1/
|
||||
// https://ilostmynotes.blogspot.com/2012/06/gatekeeper-xprotect-and-quarantine.html
|
||||
attrData := fmt.Sprintf("%s;%x;%s;%s",
|
||||
quarantineType, // quarantine value
|
||||
now.Unix(), // time in hex
|
||||
"Tailscale", // application
|
||||
id, // UUID
|
||||
)
|
||||
|
||||
var innerErr error
|
||||
err = sc.Control(func(fd uintptr) {
|
||||
innerErr = unix.Fsetxattr(
|
||||
int(fd),
|
||||
"com.apple.quarantine", // attr
|
||||
[]byte(attrData),
|
||||
0,
|
||||
)
|
||||
})
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return innerErr
|
||||
}
|
||||
Reference in New Issue
Block a user