2016-09-20 19:45:28 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-08-10 18:27:08 +02:00
|
|
|
// Should be initialized before anything else.
|
|
|
|
// This import line MUST be in the alphabetically first source code file of
|
|
|
|
// package main!
|
2021-08-23 15:05:15 +02:00
|
|
|
_ "github.com/rfjakob/gocryptfs/v2/internal/ensurefds012"
|
2021-08-10 18:27:08 +02:00
|
|
|
|
2016-10-09 20:55:33 +02:00
|
|
|
"fmt"
|
2016-12-10 14:54:06 +01:00
|
|
|
"net"
|
2016-09-20 19:45:28 +02:00
|
|
|
"os"
|
2021-06-20 19:09:46 +02:00
|
|
|
"path/filepath"
|
2016-09-20 19:45:28 +02:00
|
|
|
"strconv"
|
2016-10-09 19:38:49 +02:00
|
|
|
"strings"
|
2018-10-06 21:49:33 +02:00
|
|
|
"time"
|
2016-09-20 19:45:28 +02:00
|
|
|
|
2021-08-10 18:24:35 +02:00
|
|
|
flag "github.com/spf13/pflag"
|
|
|
|
|
2020-05-17 14:18:23 +02:00
|
|
|
"github.com/hanwen/go-fuse/v2/fuse"
|
|
|
|
|
2021-08-23 15:05:15 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/v2/internal/configfile"
|
|
|
|
"github.com/rfjakob/gocryptfs/v2/internal/exitcodes"
|
|
|
|
"github.com/rfjakob/gocryptfs/v2/internal/stupidgcm"
|
|
|
|
"github.com/rfjakob/gocryptfs/v2/internal/tlog"
|
2016-09-20 19:45:28 +02:00
|
|
|
)
|
|
|
|
|
2016-09-20 19:59:08 +02:00
|
|
|
// argContainer stores the parsed CLI options and arguments
|
2016-09-20 19:45:28 +02:00
|
|
|
type argContainer struct {
|
2016-11-01 18:59:34 +01:00
|
|
|
debug, init, zerokey, fusedebug, openssl, passwd, fg, version,
|
2016-09-20 19:45:28 +02:00
|
|
|
plaintextnames, quiet, nosyslog, wpanic,
|
2018-06-07 22:50:30 +02:00
|
|
|
longnames, allow_other, reverse, aessiv, nonempty, raw64,
|
2021-09-10 12:14:19 +02:00
|
|
|
noprealloc, speed, hkdf, serialize_reads, hh, info,
|
2021-08-25 12:36:38 +02:00
|
|
|
sharedstorage, fsck, one_file_system, deterministic_names,
|
2021-08-21 12:08:37 +02:00
|
|
|
xchacha bool
|
2018-06-07 22:50:30 +02:00
|
|
|
// Mount options with opposites
|
2021-05-08 17:17:08 +02:00
|
|
|
dev, nodev, suid, nosuid, exec, noexec, rw, ro, kernel_cache, acl bool
|
2019-03-03 13:25:30 +01:00
|
|
|
masterkey, mountpoint, cipherdir, cpuprofile,
|
2020-09-05 22:42:15 +02:00
|
|
|
memprofile, ko, ctlsock, fsname, force_owner, trace, fido2 string
|
2020-05-17 19:31:04 +02:00
|
|
|
// -extpass, -badname, -passfile can be passed multiple times
|
2021-08-10 19:09:58 +02:00
|
|
|
extpass, badname, passfile []string
|
2019-02-16 21:55:54 +01:00
|
|
|
// For reverse mode, several ways to specify exclusions. All can be specified multiple times.
|
2021-08-10 19:09:58 +02:00
|
|
|
exclude, excludeWildcard, excludeFrom []string
|
2016-09-20 19:59:08 +02:00
|
|
|
// Configuration file name override
|
|
|
|
config string
|
2016-09-20 19:45:28 +02:00
|
|
|
notifypid, scryptn int
|
2018-10-06 21:49:33 +02:00
|
|
|
// Idle time before autounmount
|
|
|
|
idle time.Duration
|
2016-12-10 14:54:06 +01:00
|
|
|
// Helper variables that are NOT cli options all start with an underscore
|
2016-10-08 20:57:38 +02:00
|
|
|
// _configCustom is true when the user sets a custom config file name.
|
|
|
|
_configCustom bool
|
2016-12-10 14:54:06 +01:00
|
|
|
// _ctlsockFd stores the control socket file descriptor (ctlsock stores the path)
|
|
|
|
_ctlsockFd net.Listener
|
2017-05-30 23:01:06 +02:00
|
|
|
// _forceOwner is, if non-nil, a parsed, validated Owner (as opposed to the string above)
|
2017-06-05 22:45:11 +02:00
|
|
|
_forceOwner *fuse.Owner
|
2019-05-13 23:01:44 +02:00
|
|
|
// _explicitScryptn is true then the user passed "-scryptn=xyz"
|
|
|
|
_explicitScryptn bool
|
2016-09-20 19:45:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var flagSet *flag.FlagSet
|
|
|
|
|
2016-10-09 19:38:49 +02:00
|
|
|
// prefixOArgs transform options passed via "-o foo,bar" into regular options
|
|
|
|
// like "-foo -bar" and prefixes them to the command line.
|
2017-04-29 15:11:17 +02:00
|
|
|
// Testcases in TestPrefixOArgs().
|
2018-06-05 21:02:35 +02:00
|
|
|
func prefixOArgs(osArgs []string) ([]string, error) {
|
2017-04-29 15:11:17 +02:00
|
|
|
// Need at least 3, example: gocryptfs -o foo,bar
|
|
|
|
// ^ 0 ^ 1 ^ 2
|
2016-10-10 19:44:34 +02:00
|
|
|
if len(osArgs) < 3 {
|
2018-06-05 21:02:35 +02:00
|
|
|
return osArgs, nil
|
2016-10-09 19:38:49 +02:00
|
|
|
}
|
2017-04-29 15:11:17 +02:00
|
|
|
// Passing "--" disables "-o" parsing. Ignore element 0 (program name).
|
|
|
|
for _, v := range osArgs[1:] {
|
|
|
|
if v == "--" {
|
2018-06-05 21:02:35 +02:00
|
|
|
return osArgs, nil
|
2017-04-29 15:11:17 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-10 19:44:34 +02:00
|
|
|
// Find and extract "-o foo,bar"
|
|
|
|
var otherArgs, oOpts []string
|
|
|
|
for i := 1; i < len(osArgs); i++ {
|
|
|
|
if osArgs[i] == "-o" {
|
|
|
|
// Last argument?
|
|
|
|
if i+1 >= len(osArgs) {
|
2018-06-05 21:02:35 +02:00
|
|
|
return nil, fmt.Errorf("The \"-o\" option requires an argument")
|
2016-10-10 19:44:34 +02:00
|
|
|
}
|
|
|
|
oOpts = strings.Split(osArgs[i+1], ",")
|
|
|
|
// Skip over the arguments to "-o"
|
|
|
|
i++
|
|
|
|
} else if strings.HasPrefix(osArgs[i], "-o=") {
|
|
|
|
oOpts = strings.Split(osArgs[i][3:], ",")
|
|
|
|
} else {
|
|
|
|
otherArgs = append(otherArgs, osArgs[i])
|
|
|
|
}
|
2016-10-09 19:38:49 +02:00
|
|
|
}
|
2016-10-10 19:44:34 +02:00
|
|
|
// Start with program name
|
2016-10-09 19:38:49 +02:00
|
|
|
newArgs := []string{osArgs[0]}
|
|
|
|
// Add options from "-o"
|
2016-10-10 19:44:34 +02:00
|
|
|
for _, o := range oOpts {
|
|
|
|
if o == "" {
|
|
|
|
continue
|
|
|
|
}
|
2016-10-10 20:21:52 +02:00
|
|
|
if o == "o" || o == "-o" {
|
|
|
|
tlog.Fatal.Printf("You can't pass \"-o\" to \"-o\"")
|
2017-05-07 22:15:01 +02:00
|
|
|
os.Exit(exitcodes.Usage)
|
2016-10-10 20:21:52 +02:00
|
|
|
}
|
2016-10-10 19:44:34 +02:00
|
|
|
newArgs = append(newArgs, "-"+o)
|
2016-10-09 19:38:49 +02:00
|
|
|
}
|
2016-10-10 19:44:34 +02:00
|
|
|
// Add other arguments
|
|
|
|
newArgs = append(newArgs, otherArgs...)
|
2018-06-05 21:02:35 +02:00
|
|
|
return newArgs, nil
|
2016-10-09 19:38:49 +02:00
|
|
|
}
|
|
|
|
|
2021-08-10 18:24:35 +02:00
|
|
|
// convertToDoubleDash converts args like "-debug" (Go stdlib `flag` style)
|
|
|
|
// into "--debug" (spf13/pflag style).
|
|
|
|
// gocryptfs v2.1 switched from `flag` to `pflag`, but we obviously want to stay
|
|
|
|
// cli-compatible, and this is the hack to do it.
|
|
|
|
func convertToDoubleDash(osArgs []string) (out []string) {
|
|
|
|
out = append(out, osArgs...)
|
|
|
|
for i, v := range out {
|
2021-08-10 19:42:33 +02:00
|
|
|
// Leave "-h" alone so the help text keeps working
|
2021-08-10 18:24:35 +02:00
|
|
|
if v == "-h" {
|
|
|
|
continue
|
|
|
|
}
|
2021-08-10 19:42:33 +02:00
|
|
|
// Don't touch anything after "--"
|
|
|
|
if v == "--" {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// Convert "-foo" to "--foo"
|
2021-08-10 18:24:35 +02:00
|
|
|
if len(v) >= 2 && v[0] == '-' && v[1] != '-' {
|
|
|
|
out[i] = "-" + out[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2016-09-20 19:59:08 +02:00
|
|
|
// parseCliOpts - parse command line options (i.e. arguments that start with "-")
|
2021-08-10 19:42:33 +02:00
|
|
|
func parseCliOpts(osArgs []string) (args argContainer) {
|
2016-09-20 19:45:28 +02:00
|
|
|
var err error
|
|
|
|
var opensslAuto string
|
|
|
|
|
2021-08-10 19:42:33 +02:00
|
|
|
osArgsPreprocessed, err := prefixOArgs(osArgs)
|
2018-06-05 21:02:35 +02:00
|
|
|
if err != nil {
|
|
|
|
tlog.Fatal.Println(err)
|
|
|
|
os.Exit(exitcodes.Usage)
|
|
|
|
}
|
2021-08-10 18:24:35 +02:00
|
|
|
osArgsPreprocessed = convertToDoubleDash(osArgsPreprocessed)
|
2018-06-05 21:02:35 +02:00
|
|
|
|
2016-10-09 20:55:33 +02:00
|
|
|
flagSet = flag.NewFlagSet(tlog.ProgramName, flag.ContinueOnError)
|
2018-06-08 00:03:23 +02:00
|
|
|
flagSet.Usage = func() {}
|
2016-09-20 19:45:28 +02:00
|
|
|
flagSet.BoolVar(&args.debug, "d", false, "")
|
|
|
|
flagSet.BoolVar(&args.debug, "debug", false, "Enable debug output")
|
|
|
|
flagSet.BoolVar(&args.fusedebug, "fusedebug", false, "Enable fuse library debug output")
|
|
|
|
flagSet.BoolVar(&args.init, "init", false, "Initialize encrypted directory")
|
|
|
|
flagSet.BoolVar(&args.zerokey, "zerokey", false, "Use all-zero dummy master key")
|
|
|
|
// Tri-state true/false/auto
|
|
|
|
flagSet.StringVar(&opensslAuto, "openssl", "auto", "Use OpenSSL instead of built-in Go crypto")
|
|
|
|
flagSet.BoolVar(&args.passwd, "passwd", false, "Change password")
|
2016-11-01 18:59:34 +01:00
|
|
|
flagSet.BoolVar(&args.fg, "f", false, "")
|
|
|
|
flagSet.BoolVar(&args.fg, "fg", false, "Stay in the foreground")
|
2016-09-20 19:45:28 +02:00
|
|
|
flagSet.BoolVar(&args.version, "version", false, "Print version and exit")
|
|
|
|
flagSet.BoolVar(&args.plaintextnames, "plaintextnames", false, "Do not encrypt file names")
|
|
|
|
flagSet.BoolVar(&args.quiet, "q", false, "")
|
|
|
|
flagSet.BoolVar(&args.quiet, "quiet", false, "Quiet - silence informational messages")
|
|
|
|
flagSet.BoolVar(&args.nosyslog, "nosyslog", false, "Do not redirect output to syslog when running in the background")
|
|
|
|
flagSet.BoolVar(&args.wpanic, "wpanic", false, "When encountering a warning, panic and exit immediately")
|
|
|
|
flagSet.BoolVar(&args.longnames, "longnames", true, "Store names longer than 176 bytes in extra files")
|
|
|
|
flagSet.BoolVar(&args.allow_other, "allow_other", false, "Allow other users to access the filesystem. "+
|
|
|
|
"Only works if user_allow_other is set in /etc/fuse.conf.")
|
|
|
|
flagSet.BoolVar(&args.reverse, "reverse", false, "Reverse mode")
|
2016-09-26 23:25:13 +02:00
|
|
|
flagSet.BoolVar(&args.aessiv, "aessiv", false, "AES-SIV encryption")
|
2016-10-06 22:41:13 +02:00
|
|
|
flagSet.BoolVar(&args.nonempty, "nonempty", false, "Allow mounting over non-empty directories")
|
2017-03-06 22:59:30 +01:00
|
|
|
flagSet.BoolVar(&args.raw64, "raw64", true, "Use unpadded base64 for file names")
|
2016-11-24 22:36:04 +01:00
|
|
|
flagSet.BoolVar(&args.noprealloc, "noprealloc", false, "Disable preallocation before writing")
|
2017-02-22 23:55:43 +01:00
|
|
|
flagSet.BoolVar(&args.speed, "speed", false, "Run crypto speed test")
|
2017-03-06 22:43:55 +01:00
|
|
|
flagSet.BoolVar(&args.hkdf, "hkdf", true, "Use HKDF as an additional key derivation step")
|
2017-03-18 16:01:50 +01:00
|
|
|
flagSet.BoolVar(&args.serialize_reads, "serialize_reads", false, "Try to serialize read operations")
|
2017-05-30 17:59:13 +02:00
|
|
|
flagSet.BoolVar(&args.hh, "hh", false, "Show this long help text")
|
2017-05-30 19:01:32 +02:00
|
|
|
flagSet.BoolVar(&args.info, "info", false, "Display information about CIPHERDIR")
|
2017-11-12 20:06:13 +01:00
|
|
|
flagSet.BoolVar(&args.sharedstorage, "sharedstorage", false, "Make concurrent access to a shared CIPHERDIR safer")
|
2018-04-01 14:25:10 +02:00
|
|
|
flagSet.BoolVar(&args.fsck, "fsck", false, "Run a filesystem check on CIPHERDIR")
|
2021-08-16 18:40:48 +02:00
|
|
|
flagSet.BoolVar(&args.one_file_system, "one-file-system", false, "Don't cross filesystem boundaries")
|
2021-08-20 10:57:26 +02:00
|
|
|
flagSet.BoolVar(&args.deterministic_names, "deterministic-names", false, "Disable diriv file name randomisation")
|
2021-08-21 12:08:37 +02:00
|
|
|
flagSet.BoolVar(&args.xchacha, "xchacha", false, "Use XChaCha20-Poly1305 file content encryption")
|
2018-06-07 22:50:30 +02:00
|
|
|
|
|
|
|
// Mount options with opposites
|
|
|
|
flagSet.BoolVar(&args.dev, "dev", false, "Allow device files")
|
|
|
|
flagSet.BoolVar(&args.nodev, "nodev", false, "Deny device files")
|
|
|
|
flagSet.BoolVar(&args.suid, "suid", false, "Allow suid binaries")
|
|
|
|
flagSet.BoolVar(&args.nosuid, "nosuid", false, "Deny suid binaries")
|
|
|
|
flagSet.BoolVar(&args.exec, "exec", false, "Allow executables")
|
|
|
|
flagSet.BoolVar(&args.noexec, "noexec", false, "Deny executables")
|
|
|
|
flagSet.BoolVar(&args.rw, "rw", false, "Mount the filesystem read-write")
|
|
|
|
flagSet.BoolVar(&args.ro, "ro", false, "Mount the filesystem read-only")
|
2020-12-08 08:27:23 +01:00
|
|
|
flagSet.BoolVar(&args.kernel_cache, "kernel_cache", false, "Enable the FUSE kernel_cache option")
|
2021-05-08 17:17:08 +02:00
|
|
|
flagSet.BoolVar(&args.acl, "acl", false, "Enforce ACLs")
|
2018-06-07 22:50:30 +02:00
|
|
|
|
2016-09-20 19:45:28 +02:00
|
|
|
flagSet.StringVar(&args.masterkey, "masterkey", "", "Mount with explicit master key")
|
|
|
|
flagSet.StringVar(&args.cpuprofile, "cpuprofile", "", "Write cpu profile to specified file")
|
|
|
|
flagSet.StringVar(&args.memprofile, "memprofile", "", "Write memory profile to specified file")
|
|
|
|
flagSet.StringVar(&args.config, "config", "", "Use specified config file instead of CIPHERDIR/gocryptfs.conf")
|
2016-10-09 19:32:55 +02:00
|
|
|
flagSet.StringVar(&args.ko, "ko", "", "Pass additional options directly to the kernel, comma-separated list")
|
2016-11-10 00:27:08 +01:00
|
|
|
flagSet.StringVar(&args.ctlsock, "ctlsock", "", "Create control socket at specified path")
|
2017-01-26 22:13:57 +01:00
|
|
|
flagSet.StringVar(&args.fsname, "fsname", "", "Override the filesystem name")
|
2017-05-30 23:01:06 +02:00
|
|
|
flagSet.StringVar(&args.force_owner, "force_owner", "", "uid:gid pair to coerce ownership")
|
2017-06-05 22:45:11 +02:00
|
|
|
flagSet.StringVar(&args.trace, "trace", "", "Write execution trace to file")
|
2020-09-05 22:42:15 +02:00
|
|
|
flagSet.StringVar(&args.fido2, "fido2", "", "Protect the masterkey using a FIDO2 token instead of a password")
|
2018-08-11 23:26:49 +02:00
|
|
|
|
2019-02-16 21:55:54 +01:00
|
|
|
// Exclusion options
|
2021-08-10 19:09:58 +02:00
|
|
|
flagSet.StringSliceVar(&args.exclude, "e", nil, "Alias for -exclude")
|
|
|
|
flagSet.StringSliceVar(&args.exclude, "exclude", nil, "Exclude relative path from reverse view")
|
|
|
|
flagSet.StringSliceVar(&args.excludeWildcard, "ew", nil, "Alias for -exclude-wildcard")
|
|
|
|
flagSet.StringSliceVar(&args.excludeWildcard, "exclude-wildcard", nil, "Exclude path from reverse view, supporting wildcards")
|
|
|
|
flagSet.StringSliceVar(&args.excludeFrom, "exclude-from", nil, "File from which to read exclusion patterns (with -exclude-wildcard syntax)")
|
2019-02-16 21:55:54 +01:00
|
|
|
|
2020-05-17 19:31:04 +02:00
|
|
|
// multipleStrings options ([]string)
|
2021-08-10 19:09:58 +02:00
|
|
|
flagSet.StringSliceVar(&args.extpass, "extpass", nil, "Use external program for the password prompt")
|
|
|
|
flagSet.StringSliceVar(&args.badname, "badname", nil, "Glob pattern invalid file names that should be shown")
|
|
|
|
flagSet.StringSliceVar(&args.passfile, "passfile", nil, "Read password from file")
|
2018-08-11 23:26:49 +02:00
|
|
|
|
2016-09-20 19:45:28 +02:00
|
|
|
flagSet.IntVar(&args.notifypid, "notifypid", 0, "Send USR1 to the specified process after "+
|
|
|
|
"successful mount - used internally for daemonization")
|
2019-05-13 23:01:44 +02:00
|
|
|
const scryptn = "scryptn"
|
|
|
|
flagSet.IntVar(&args.scryptn, scryptn, configfile.ScryptDefaultLogN, "scrypt cost parameter logN. Possible values: 10-28. "+
|
2017-03-25 18:22:08 +01:00
|
|
|
"A lower value speeds up mounting and reduces its memory needs, but makes the password susceptible to brute-force attacks")
|
2018-10-06 21:49:33 +02:00
|
|
|
|
|
|
|
flagSet.DurationVar(&args.idle, "i", 0, "Alias for -idle")
|
|
|
|
flagSet.DurationVar(&args.idle, "idle", 0, "Auto-unmount after specified idle duration (ignored in reverse mode). "+
|
|
|
|
"Durations are specified like \"500s\" or \"2h45m\". 0 means stay mounted indefinitely.")
|
|
|
|
|
2016-10-10 20:21:52 +02:00
|
|
|
var dummyString string
|
2017-05-30 17:59:13 +02:00
|
|
|
flagSet.StringVar(&dummyString, "o", "", "For compatibility with mount(1), options can be also passed as a comma-separated list to -o on the end.")
|
2021-08-25 12:36:38 +02:00
|
|
|
|
|
|
|
// Ignored flags
|
|
|
|
{
|
|
|
|
var tmp bool
|
|
|
|
flagSet.BoolVar(&tmp, "nofail", false, "Ignored for /etc/fstab compatibility")
|
2021-09-10 12:14:19 +02:00
|
|
|
flagSet.BoolVar(&tmp, "devrandom", false, "Obsolete, ignored for compatibility")
|
|
|
|
flagSet.BoolVar(&tmp, "forcedecode", false, "Obsolete, ignored for compatibility")
|
2021-08-25 12:36:38 +02:00
|
|
|
}
|
|
|
|
|
2016-10-09 20:06:23 +02:00
|
|
|
// Actual parsing
|
2021-08-10 18:24:35 +02:00
|
|
|
err = flagSet.Parse(osArgsPreprocessed[1:])
|
2016-10-10 20:21:52 +02:00
|
|
|
if err == flag.ErrHelp {
|
2018-06-08 00:03:23 +02:00
|
|
|
helpShort()
|
2016-10-10 20:21:52 +02:00
|
|
|
os.Exit(0)
|
|
|
|
}
|
2016-10-09 20:55:33 +02:00
|
|
|
if err != nil {
|
2021-08-10 19:09:12 +02:00
|
|
|
tlog.Fatal.Printf("Invalid command line: %s: %v. Try '%s -help'.", prettyArgs(), err, tlog.ProgramName)
|
2017-05-07 22:15:01 +02:00
|
|
|
os.Exit(exitcodes.Usage)
|
2016-10-09 20:55:33 +02:00
|
|
|
}
|
2020-05-10 00:25:49 +02:00
|
|
|
// We want to know if -scryptn was passed explicitly
|
2019-05-13 23:01:44 +02:00
|
|
|
if isFlagPassed(flagSet, scryptn) {
|
|
|
|
args._explicitScryptn = true
|
|
|
|
}
|
2016-09-20 19:45:28 +02:00
|
|
|
// "-openssl" needs some post-processing
|
|
|
|
if opensslAuto == "auto" {
|
2021-09-08 20:32:16 +02:00
|
|
|
if args.xchacha {
|
|
|
|
args.openssl = stupidgcm.PreferOpenSSLXchacha20poly1305()
|
|
|
|
} else {
|
|
|
|
args.openssl = stupidgcm.PreferOpenSSLAES256GCM()
|
|
|
|
}
|
2016-09-20 19:45:28 +02:00
|
|
|
} else {
|
|
|
|
args.openssl, err = strconv.ParseBool(opensslAuto)
|
|
|
|
if err != nil {
|
|
|
|
tlog.Fatal.Printf("Invalid \"-openssl\" setting: %v", err)
|
2017-05-07 22:15:01 +02:00
|
|
|
os.Exit(exitcodes.Usage)
|
2016-09-20 19:45:28 +02:00
|
|
|
}
|
|
|
|
}
|
2021-08-10 19:09:58 +02:00
|
|
|
if len(args.extpass) > 0 && len(args.passfile) != 0 {
|
2018-12-15 17:09:38 +01:00
|
|
|
tlog.Fatal.Printf("The options -extpass and -passfile cannot be used at the same time")
|
|
|
|
os.Exit(exitcodes.Usage)
|
|
|
|
}
|
2020-05-17 19:31:04 +02:00
|
|
|
if len(args.passfile) != 0 && args.masterkey != "" {
|
2018-12-15 17:09:38 +01:00
|
|
|
tlog.Fatal.Printf("The options -passfile and -masterkey cannot be used at the same time")
|
|
|
|
os.Exit(exitcodes.Usage)
|
2016-10-09 20:08:10 +02:00
|
|
|
}
|
2021-08-10 19:09:58 +02:00
|
|
|
if len(args.extpass) > 0 && args.masterkey != "" {
|
2016-10-16 16:50:23 +02:00
|
|
|
tlog.Fatal.Printf("The options -extpass and -masterkey cannot be used at the same time")
|
2017-05-07 22:15:01 +02:00
|
|
|
os.Exit(exitcodes.Usage)
|
2016-10-16 16:50:23 +02:00
|
|
|
}
|
2021-08-10 19:09:58 +02:00
|
|
|
if len(args.extpass) > 0 && args.fido2 != "" {
|
2020-09-05 22:42:15 +02:00
|
|
|
tlog.Fatal.Printf("The options -extpass and -fido2 cannot be used at the same time")
|
|
|
|
os.Exit(exitcodes.Usage)
|
|
|
|
}
|
2018-10-06 21:49:33 +02:00
|
|
|
if args.idle < 0 {
|
|
|
|
tlog.Fatal.Printf("Idle timeout cannot be less than 0")
|
|
|
|
os.Exit(exitcodes.Usage)
|
|
|
|
}
|
2021-06-20 19:09:46 +02:00
|
|
|
// Make sure all badname patterns are valid
|
|
|
|
for _, pattern := range args.badname {
|
|
|
|
_, err := filepath.Match(pattern, "")
|
|
|
|
if err != nil {
|
|
|
|
tlog.Fatal.Printf("-badname: invalid pattern %q supplied", pattern)
|
|
|
|
os.Exit(exitcodes.Usage)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-20 19:45:28 +02:00
|
|
|
return args
|
|
|
|
}
|
2016-10-09 20:55:33 +02:00
|
|
|
|
|
|
|
// prettyArgs pretty-prints the command-line arguments.
|
|
|
|
func prettyArgs() string {
|
2021-08-10 19:09:58 +02:00
|
|
|
pa := fmt.Sprintf("%q", os.Args)
|
2016-10-09 20:55:33 +02:00
|
|
|
// Get rid of "[" and "]"
|
|
|
|
pa = pa[1 : len(pa)-1]
|
|
|
|
return pa
|
|
|
|
}
|
2018-04-01 14:25:10 +02:00
|
|
|
|
|
|
|
// countOpFlags counts the number of operation flags we were passed.
|
|
|
|
func countOpFlags(args *argContainer) int {
|
|
|
|
var count int
|
|
|
|
if args.info {
|
|
|
|
count++
|
|
|
|
}
|
|
|
|
if args.passwd {
|
|
|
|
count++
|
|
|
|
}
|
|
|
|
if args.init {
|
|
|
|
count++
|
|
|
|
}
|
|
|
|
if args.fsck {
|
|
|
|
count++
|
|
|
|
}
|
|
|
|
return count
|
|
|
|
}
|
2019-05-13 23:01:44 +02:00
|
|
|
|
|
|
|
// isFlagPassed finds out if the flag was explictely passed on the command line.
|
|
|
|
// https://stackoverflow.com/a/54747682/1380267
|
|
|
|
func isFlagPassed(flagSet *flag.FlagSet, name string) bool {
|
|
|
|
found := false
|
|
|
|
flagSet.Visit(func(f *flag.Flag) {
|
|
|
|
if f.Name == name {
|
|
|
|
found = true
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return found
|
|
|
|
}
|