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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
|
/*
* commands.go - Implementations of all of the fscrypt commands and subcommands.
* This mostly just calls into the fscrypt/actions package.
*
* Copyright 2017 Google Inc.
* Author: Joe Richey (joerichey@google.com)
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package main
import (
"fmt"
"log"
"os"
"path/filepath"
"github.com/pkg/errors"
"github.com/urfave/cli"
"github.com/google/fscrypt/actions"
"github.com/google/fscrypt/crypto"
"github.com/google/fscrypt/filesystem"
"github.com/google/fscrypt/keyring"
"github.com/google/fscrypt/metadata"
"github.com/google/fscrypt/security"
"github.com/google/fscrypt/util"
)
// Setup is a command which can do global or per-filesystem initialization.
var Setup = cli.Command{
Name: "setup",
ArgsUsage: fmt.Sprintf("[%s]", mountpointArg),
Usage: "perform global setup or filesystem setup",
Description: fmt.Sprintf(`This command creates fscrypt's global config
file and/or prepares a filesystem for use with fscrypt.
(1) When used without %[1]s, this command creates the global
config file %[2]s and the fscrypt metadata directory for the
root filesystem (i.e. /.fscrypt). This requires root privileges.
The passphrase hashing parameters in %[2]s are automatically set
to an appropriate hardness, as determined by %[3]s. The root
filesystem's metadata directory is created even if the root
filesystem doesn't support encryption itself, since it's where
login passphrase protectors are stored.
(2) When used with %[1]s, this command creates the fscrypt
metadata directory for the filesystem mounted at %[1]s. This
allows fscrypt to be used on that filesystem, provided that any
kernel and filesystem-specific prerequisites are also met (see
the README). This may require root privileges.`,
mountpointArg, actions.ConfigFileLocation,
shortDisplay(timeTargetFlag)),
Flags: []cli.Flag{timeTargetFlag, forceFlag},
Action: setupAction,
}
func setupAction(c *cli.Context) error {
switch c.NArg() {
case 0:
// Case (1) - global setup
if err := createGlobalConfig(c.App.Writer, actions.ConfigFileLocation); err != nil {
return newExitError(c, err)
}
if err := setupFilesystem(c.App.Writer, actions.LoginProtectorMountpoint); err != nil {
if errors.Cause(err) != filesystem.ErrAlreadySetup {
return newExitError(c, err)
}
fmt.Fprintf(c.App.Writer,
"Skipping creating %s because it already exists.\n",
filepath.Join(actions.LoginProtectorMountpoint, ".fscrypt"))
}
case 1:
// Case (2) - filesystem setup
if err := setupFilesystem(c.App.Writer, c.Args().Get(0)); err != nil {
return newExitError(c, err)
}
default:
return expectedArgsErr(c, 1, true)
}
return nil
}
// Encrypt performs the functions of setupDirectory and Unlock in one command.
var Encrypt = cli.Command{
Name: "encrypt",
ArgsUsage: directoryArg,
Usage: "enable filesystem encryption for a directory",
Description: fmt.Sprintf(`This command enables filesystem encryption on
%[1]s. This may involve creating a new policy (if one is not
specified with %[2]s) or a new protector (if one is not
specified with %[3]s). This command requires that the
corresponding filesystem has been setup with "fscrypt setup
%[4]s". By default, after %[1]s is setup, it is unlocked and can
immediately be used.`, directoryArg, shortDisplay(policyFlag),
shortDisplay(protectorFlag), mountpointArg),
Flags: []cli.Flag{policyFlag, unlockWithFlag, protectorFlag, sourceFlag,
userFlag, nameFlag, keyFileFlag, skipUnlockFlag, noRecoveryFlag},
Action: encryptAction,
}
func encryptAction(c *cli.Context) error {
if c.NArg() != 1 {
return expectedArgsErr(c, 1, false)
}
path := c.Args().Get(0)
if err := encryptPath(path); err != nil {
return newExitError(c, err)
}
// Most people expect that other users can't see their encrypted files
// while they're unlocked, so change the directory's mode to 0700.
if err := os.Chmod(path, 0700); err != nil {
fmt.Fprintf(c.App.Writer, "Warning: unable to chmod %q to 0700 [%v]\n", path, err)
// Continue on; don't consider this a fatal error.
}
if !skipUnlockFlag.Value {
fmt.Fprintf(c.App.Writer,
"%q is now encrypted, unlocked, and ready for use.\n", path)
} else {
fmt.Fprintf(c.App.Writer,
"%q is now encrypted, but it is still locked.\n", path)
fmt.Fprintln(c.App.Writer, `It can be unlocked with "fscrypt unlock".`)
}
return nil
}
// validateKeyringPrereqs ensures we're ready to add, remove, or get the status
// of the key for the given encryption policy (if policy != nil) or for the
// current default encryption policy (if policy == nil).
func validateKeyringPrereqs(ctx *actions.Context, policy *actions.Policy) error {
var policyVersion int64
if policy == nil {
policyVersion = ctx.Config.Options.PolicyVersion
} else {
policyVersion = policy.Version()
}
// If it's a v2 policy, we're good to go, since non-root users can
// add/remove v2 policy keys directly to/from the filesystem, where they
// are usable by the filesystem on behalf of any process.
if policyVersion != 1 {
return nil
}
if ctx.Config.GetUseFsKeyringForV1Policies() {
// We'll be using the filesystem keyring, but it's a v1
// encryption policy so root is required.
if !util.IsUserRoot() {
return ErrFsKeyringPerm
}
return nil
}
// We'll be using the target user's user keyring, so make sure a user
// was explicitly specified if the command is being run as root, and
// make sure that user's keyring is accessible.
if userFlag.Value == "" && util.IsUserRoot() {
return ErrSpecifyUser
}
if _, err := keyring.UserKeyringID(ctx.TargetUser, true); err != nil {
return err
}
return nil
}
// encryptPath sets up encryption on path and provisions the policy to the
// keyring unless --skip-unlock is used. On failure, an error is returned, any
// metadata creation is reverted, and the directory is unmodified.
func encryptPath(path string) (err error) {
targetUser, err := parseUserFlag()
if err != nil {
return
}
ctx, err := actions.NewContextFromPath(path, targetUser)
if err != nil {
return
}
if err = checkEncryptable(ctx, path); err != nil {
return
}
var policy *actions.Policy
var recoveryPassphrase *crypto.Key
if policyFlag.Value != "" {
log.Printf("getting policy for %q", path)
if policy, err = getPolicyFromFlag(policyFlag.Value, ctx.TargetUser); err != nil {
return
}
defer policy.Lock()
if !skipUnlockFlag.Value {
if err = validateKeyringPrereqs(ctx, policy); err != nil {
return
}
}
} else {
log.Printf("creating policy for %q", path)
if !skipUnlockFlag.Value {
if err = validateKeyringPrereqs(ctx, nil); err != nil {
return
}
}
protector, created, protErr := selectOrCreateProtector(ctx)
if protErr != nil {
return protErr
}
defer func() {
protector.Lock()
// Successfully created protector should be reverted on failure.
if err != nil && created {
protector.Revert()
}
}()
if err = protector.Unlock(existingKeyFn); err != nil {
return
}
if policy, err = actions.CreatePolicy(ctx, protector); err != nil {
return
}
defer func() {
policy.Lock()
// Successfully created policy should be reverted on failure.
if err != nil {
policy.Revert()
}
}()
// Ask to generate a recovery passphrase if the protector is on
// a different filesystem from the policy. In practice, this
// happens for login passphrase-protected directories that
// aren't on the root filesystem, since login protectors are
// always stored on the root filesystem.
var needRecovery bool
if ctx.Mount != protector.Context.Mount && !noRecoveryFlag.Value {
needRecovery, err = askQuestion("Protector is on a different filesystem! Generate a recovery passphrase (recommended)?", true)
}
if needRecovery {
var recoveryProtector *actions.Protector
if recoveryPassphrase, recoveryProtector, err = actions.AddRecoveryPassphrase(
policy, filepath.Base(path)); err != nil {
return
}
defer func() {
recoveryPassphrase.Wipe()
recoveryProtector.Lock()
// Successfully created protector should be reverted on failure.
if err != nil {
recoveryProtector.Revert()
}
}()
}
}
// Unlock() and Provision() first, so if that if these fail the
// directory isn't changed, and also because v2 policies can't be
// applied while deprovisioned unless the process is running as root.
if !skipUnlockFlag.Value || !policy.CanBeAppliedWithoutProvisioning() {
if err = policy.Unlock(optionFn, existingKeyFn); err != nil {
return
}
if err = policy.Provision(); err != nil {
return
}
defer func() {
if err != nil || skipUnlockFlag.Value {
policy.Deprovision(false)
}
}()
}
if err = policy.Apply(path); os.IsPermission(errors.Cause(err)) {
// EACCES at this point indicates ownership issues.
err = errors.Wrap(ErrBadOwners, path)
}
if err != nil {
return
}
if recoveryPassphrase != nil {
recoveryFile := filepath.Join(path, "fscrypt_recovery_readme.txt")
if err = actions.WriteRecoveryInstructions(recoveryPassphrase, recoveryFile); err != nil {
return
}
fmt.Printf("See %q for important recovery instructions!\n", recoveryFile)
}
return
}
// checkEncryptable returns an error if the path cannot be encrypted.
func checkEncryptable(ctx *actions.Context, path string) error {
log.Printf("ensuring %s is an empty and readable directory", path)
f, err := os.Open(path)
if err != nil {
return err
}
defer f.Close()
switch names, err := f.Readdirnames(-1); {
case err != nil:
// Could not read directory (might not be a directory)
log.Print(errors.Wrap(err, path))
return errors.Wrap(ErrNotEmptyDir, path)
case len(names) > 0:
log.Printf("directory %s is not empty", path)
return errors.Wrap(ErrNotEmptyDir, path)
}
log.Printf("ensuring %s supports encryption and filesystem is using fscrypt", path)
switch _, err := actions.GetPolicyFromPath(ctx, path); errors.Cause(err) {
case metadata.ErrNotEncrypted:
// We are not encrypted. Finally, we check that the filesystem
// supports encryption
return ctx.Mount.CheckSupport()
case nil:
// We are encrypted
return errors.Wrap(metadata.ErrEncrypted, path)
default:
return err
}
}
// selectOrCreateProtector uses user input (or flags) to either create a new
// protector or select an existing one. The boolean return value is true if we
// created a new protector.
func selectOrCreateProtector(ctx *actions.Context) (*actions.Protector, bool, error) {
if protectorFlag.Value != "" {
protector, err := getProtectorFromFlag(protectorFlag.Value, ctx.TargetUser)
return protector, false, err
}
options, err := expandedProtectorOptions(ctx)
if err != nil {
return nil, false, err
}
// Having no existing options to choose from or using creation-only
// flags indicates we should make a new protector.
if len(options) == 0 || nameFlag.Value != "" || sourceFlag.Value != "" {
protector, err := createProtectorFromContext(ctx)
return protector, true, err
}
shouldCreate, err := askQuestion("Should we create a new protector?", false)
if err != nil {
return nil, false, err
}
if shouldCreate {
protector, err := createProtectorFromContext(ctx)
return protector, true, err
}
log.Print("finding an existing protector to use")
protector, err := selectExistingProtector(ctx, options)
return protector, false, err
}
// Unlock takes an encrypted directory and unlocks it for reading and writing.
var Unlock = cli.Command{
Name: "unlock",
ArgsUsage: directoryArg,
Usage: "unlock an encrypted directory",
Description: fmt.Sprintf(`This command takes %s, a directory setup for
use with fscrypt, and unlocks the directory by passing the
appropriate key into the keyring. This requires unlocking one of
the protectors protecting this directory (either by selecting a
protector or specifying one with %s). This directory will be
locked again upon reboot, or after running "fscrypt lock" or
"fscrypt purge".`, directoryArg,
shortDisplay(unlockWithFlag)),
Flags: []cli.Flag{unlockWithFlag, keyFileFlag, userFlag},
Action: unlockAction,
}
func unlockAction(c *cli.Context) error {
if c.NArg() != 1 {
return expectedArgsErr(c, 1, false)
}
targetUser, err := parseUserFlag()
if err != nil {
return newExitError(c, err)
}
path := c.Args().Get(0)
ctx, err := actions.NewContextFromPath(path, targetUser)
if err != nil {
return newExitError(c, err)
}
log.Printf("performing sanity checks")
// Ensure path is encrypted and filesystem is using fscrypt.
policy, err := actions.GetPolicyFromPath(ctx, path)
if err != nil {
return newExitError(c, err)
}
// Ensure the keyring is ready.
if err = validateKeyringPrereqs(ctx, policy); err != nil {
return newExitError(c, err)
}
// Check if directory is already unlocked
if policy.IsProvisionedByTargetUser() {
log.Printf("policy %s is already provisioned by %v",
policy.Descriptor(), ctx.TargetUser.Username)
return newExitError(c, errors.Wrapf(ErrPolicyUnlocked, path))
}
if err := policy.Unlock(optionFn, existingKeyFn); err != nil {
return newExitError(c, err)
}
defer policy.Lock()
if err := policy.Provision(); err != nil {
return newExitError(c, err)
}
fmt.Fprintf(c.App.Writer, "%q is now unlocked and ready for use.\n", path)
return nil
}
func dropCachesIfRequested(c *cli.Context, ctx *actions.Context) error {
if dropCachesFlag.Value {
if err := security.DropFilesystemCache(); err != nil {
return err
}
fmt.Fprintf(c.App.Writer, "Encrypted data removed from filesystem cache.\n")
} else {
fmt.Fprintf(c.App.Writer, "Filesystem %q should now be unmounted.\n", ctx.Mount.Path)
}
return nil
}
// Lock takes an encrypted directory and locks it, undoing Unlock.
var Lock = cli.Command{
Name: "lock",
ArgsUsage: directoryArg,
Usage: "lock an encrypted directory",
Description: fmt.Sprintf(`This command takes %s, an encrypted directory
which has been unlocked by fscrypt, and locks the directory by
removing the encryption key from the kernel. I.e., it undoes the
effect of 'fscrypt unlock'.
For this to be effective, all files in the directory must first
be closed.
If the directory uses a v1 encryption policy, then the %s=true
option may be needed to properly lock it. Root is required for
this.
If the directory uses a v2 encryption policy, then a non-root
user can lock it, but only if it's the same user who unlocked it
originally and if no other users have unlocked it too.
WARNING: even after the key has been removed, decrypted data may
still be present in freed memory, where it may still be
recoverable by an attacker who compromises system memory. To be
fully safe, you must reboot with a power cycle.`,
directoryArg, shortDisplay(dropCachesFlag)),
Flags: []cli.Flag{dropCachesFlag, userFlag, allUsersFlag},
Action: lockAction,
}
func lockAction(c *cli.Context) error {
if c.NArg() != 1 {
return expectedArgsErr(c, 1, false)
}
targetUser, err := parseUserFlag()
if err != nil {
return newExitError(c, err)
}
path := c.Args().Get(0)
ctx, err := actions.NewContextFromPath(path, targetUser)
if err != nil {
return newExitError(c, err)
}
log.Printf("performing sanity checks")
// Ensure path is encrypted and filesystem is using fscrypt.
policy, err := actions.GetPolicyFromPath(ctx, path)
if err != nil {
return newExitError(c, err)
}
// Ensure the keyring is ready.
if err = validateKeyringPrereqs(ctx, policy); err != nil {
return newExitError(c, err)
}
// Check if directory is already locked
if policy.IsFullyDeprovisioned() {
log.Printf("policy %s is already fully deprovisioned", policy.Descriptor())
return newExitError(c, errors.Wrapf(ErrPolicyLocked, path))
}
// Check for permission to drop caches, if it will be needed.
if policy.NeedsUserKeyring() && dropCachesFlag.Value && !util.IsUserRoot() {
return newExitError(c, ErrDropCachesPerm)
}
if err = policy.Deprovision(allUsersFlag.Value); err != nil {
return newExitError(c, err)
}
if policy.NeedsUserKeyring() {
if err = dropCachesIfRequested(c, ctx); err != nil {
return newExitError(c, err)
}
}
fmt.Fprintf(c.App.Writer, "%q is now locked.\n", path)
return nil
}
// Purge removes all the policy keys from the keyring (also need unmount).
var Purge = cli.Command{
Name: "purge",
ArgsUsage: mountpointArg,
Usage: "Remove a filesystem's keys",
Description: fmt.Sprintf(`This command removes a user's policy keys for
directories on %[1]s. This is intended to lock all files and
directories encrypted by the user on %[1]s, in that unlocking
them for reading will require providing a key again. However,
there are four important things to note about this command:
(1) When run with the default options, this command also clears
the reclaimable dentries and inodes, so that the encrypted files
and directories will no longer be visible. However, this
requires root privileges. Note that any open file descriptors to
plaintext data will not be affected by this command.
(2) When run with %[2]s=false, the keyring is cleared and root
permissions are not required, but recently accessed encrypted
directories and files will remain cached for some time. Because
of this, after purging a filesystem's keys in this manner, it
is recommended to unmount the filesystem.
(3) When run as root, this command removes the policy keys for
all users. However, this will only work if the PAM module has
been enabled. Otherwise, only root's keys may be removed.
(4) Even after unmounting the filesystem or clearing the
caches, the kernel may keep contents of files in memory. This
means direct memory access (either though physical compromise or
a kernel exploit) could compromise encrypted data. This weakness
can be eliminated by cycling the power or mitigated by using
page cache and slab cache poisoning.`, mountpointArg,
shortDisplay(dropCachesFlag)),
Flags: []cli.Flag{forceFlag, dropCachesFlag, userFlag},
Action: purgeAction,
}
func purgeAction(c *cli.Context) error {
if c.NArg() != 1 {
return expectedArgsErr(c, 1, false)
}
if dropCachesFlag.Value {
if !util.IsUserRoot() {
return newExitError(c, ErrDropCachesPerm)
}
}
targetUser, err := parseUserFlag()
if err != nil {
return newExitError(c, err)
}
mountpoint := c.Args().Get(0)
ctx, err := actions.NewContextFromMountpoint(mountpoint, targetUser)
if err != nil {
return newExitError(c, err)
}
if err = validateKeyringPrereqs(ctx, nil); err != nil {
return newExitError(c, err)
}
question := fmt.Sprintf("Purge all policy keys from %q", ctx.Mount.Path)
if dropCachesFlag.Value {
question += " and drop global inode cache"
}
warning := "Encrypted data on this filesystem will be inaccessible until unlocked again!!"
if err = askConfirmation(question+"?", false, warning); err != nil {
return newExitError(c, err)
}
if err = actions.PurgeAllPolicies(ctx); err != nil {
return newExitError(c, err)
}
fmt.Fprintf(c.App.Writer, "Policies purged for %q.\n", ctx.Mount.Path)
if err = dropCachesIfRequested(c, ctx); err != nil {
return newExitError(c, err)
}
return nil
}
// Status is a command with three subcommands relating to printing out status.
var Status = cli.Command{
Name: "status",
ArgsUsage: fmt.Sprintf("[%s]", pathArg),
Usage: "print the global, filesystem, or file status",
Description: fmt.Sprintf(`This command prints out the global,
per-filesystem, or per-file status.
(1) When used without %[1]s, print all of the currently visible
filesystems which support use with fscrypt. For each of
the filesystems, this command also notes if they are actually
being used by fscrypt. This command will fail if no there is no
support for fscrypt anywhere on the system.
(2) When %[1]s is a filesystem mountpoint, list information
about all the policies and protectors which exist on %[1]s. This
command will fail if %[1]s is not being used with fscrypt. For
each policy, this command also notes if the policy is currently
unlocked.
(3) When %[1]s is just a normal path, print information about
the policy being used on %[1]s and the protectors protecting
this file or directory. This command will fail if %[1]s is not
setup for encryption with fscrypt.`, pathArg),
Action: statusAction,
}
func statusAction(c *cli.Context) error {
var err error
switch c.NArg() {
case 0:
// Case (1) - global status
err = writeGlobalStatus(c.App.Writer)
case 1:
path := c.Args().Get(0)
ctx, mntErr := actions.NewContextFromMountpoint(path, nil)
switch errors.Cause(mntErr) {
case nil:
// Case (2) - mountpoint status
err = writeFilesystemStatus(c.App.Writer, ctx)
case filesystem.ErrNotAMountpoint:
// Case (3) - file or directory status
err = writePathStatus(c.App.Writer, path)
default:
err = mntErr
}
default:
return expectedArgsErr(c, 1, true)
}
if err != nil {
return newExitError(c, err)
}
return nil
}
// Metadata is a collection of commands for manipulating the metadata files.
var Metadata = cli.Command{
Name: "metadata",
Usage: "[ADVANCED] manipulate the policy or protector metadata",
Description: `These commands allow a user to directly create, delete, or
change the metadata files. It is important to note that using
these commands, especially the destructive ones, can make files
encrypted with fscrypt unavailable. For instance, deleting a
policy effectively deletes all the contents of the corresponding
directory. Some example use cases include:
(1) Directly creating protectors and policies using the "create"
subcommand. These can then be applied with "fscrypt encrypt".
(2) Changing the passphrase for a passphrase protector using the
"change-passphrase" subcommand.
(3) Creating a policy protected with multiple protectors using
the "create policy" and "add-protector-to-policy" subcommands.
(4) Changing the protector protecting a policy using the
"add-protector-to-policy" and "remove-protector-from-policy"
subcommands.`,
Subcommands: []cli.Command{createMetadata, destroyMetadata, changePassphrase,
addProtectorToPolicy, removeProtectorFromPolicy, dumpMetadata},
}
var createMetadata = cli.Command{
Name: "create",
ArgsUsage: fmt.Sprintf("[protector | policy] %s", mountpointArg),
Usage: "manually create new metadata on a filesystem",
Subcommands: []cli.Command{createProtector, createPolicy},
}
var createProtector = cli.Command{
Name: "protector",
ArgsUsage: mountpointArg,
Usage: "create a new protector on a filesystem",
Description: fmt.Sprintf(`This command creates a new protector on %s
that does not (yet) protect any policy. After creation, the user
can use %s with "fscrypt encrypt" to protect a directory with
this new protector. The creation process is identical to the
first step of "fscrypt encrypt" when the user has requested to
create a new passphrase. The user will be prompted for the
source, name, and secret data for the new protector (when
applicable). As with "fscrypt encrypt", these prompts can be
disabled with the appropriate flags.`, mountpointArg,
shortDisplay(protectorFlag)),
Flags: []cli.Flag{sourceFlag, nameFlag, keyFileFlag, userFlag},
Action: createProtectorAction,
}
func createProtectorAction(c *cli.Context) error {
if c.NArg() != 1 {
return expectedArgsErr(c, 1, false)
}
targetUser, err := parseUserFlag()
if err != nil {
return newExitError(c, err)
}
mountpoint := c.Args().Get(0)
ctx, err := actions.NewContextFromMountpoint(mountpoint, targetUser)
if err != nil {
return newExitError(c, err)
}
prompt := fmt.Sprintf("Create new protector on %q", ctx.Mount.Path)
if err = askConfirmation(prompt, true, ""); err != nil {
return newExitError(c, err)
}
protector, err := createProtectorFromContext(ctx)
if err != nil {
return newExitError(c, err)
}
protector.Lock()
fmt.Fprintf(c.App.Writer, "Protector %s created on filesystem %q.\n",
protector.Descriptor(), ctx.Mount.Path)
return nil
}
var createPolicy = cli.Command{
Name: "policy",
ArgsUsage: fmt.Sprintf("%s %s", mountpointArg, shortDisplay(protectorFlag)),
Usage: "create a new protector on a filesystem",
Description: fmt.Sprintf(`This command creates a new protector on %s
that has not (yet) been applied to any directory. After
creation, the user can use %s with "fscrypt encrypt" to encrypt
a directory with this new policy. As all policies must be
protected with at least one protector, this command requires
specifying one with %s. To create a policy protected by many
protectors, use this command and "fscrypt metadata
add-protector-to-policy".`, mountpointArg,
shortDisplay(policyFlag), shortDisplay(protectorFlag)),
Flags: []cli.Flag{protectorFlag, keyFileFlag},
Action: createPolicyAction,
}
func createPolicyAction(c *cli.Context) error {
if c.NArg() != 1 {
return expectedArgsErr(c, 1, false)
}
ctx, err := actions.NewContextFromMountpoint(c.Args().Get(0), nil)
if err != nil {
return newExitError(c, err)
}
if err = checkRequiredFlags(c, []*stringFlag{protectorFlag}); err != nil {
return err
}
protector, err := getProtectorFromFlag(protectorFlag.Value, ctx.TargetUser)
if err != nil {
return newExitError(c, err)
}
if err = protector.Unlock(existingKeyFn); err != nil {
return newExitError(c, err)
}
defer protector.Lock()
prompt := fmt.Sprintf("Create new policy on %q", ctx.Mount.Path)
if err = askConfirmation(prompt, true, ""); err != nil {
return newExitError(c, err)
}
policy, err := actions.CreatePolicy(ctx, protector)
if err != nil {
return newExitError(c, err)
}
policy.Lock()
fmt.Fprintf(c.App.Writer, "Policy %s created on filesystem %q.\n",
policy.Descriptor(), ctx.Mount.Path)
return nil
}
var destroyMetadata = cli.Command{
Name: "destroy",
ArgsUsage: fmt.Sprintf("[%s | %s | %s]", shortDisplay(protectorFlag),
shortDisplay(policyFlag), mountpointArg),
Usage: "delete a filesystem's, protector's, or policy's metadata",
Description: fmt.Sprintf(`This command can be used to perform three
different destructive operations. Note that in all of these
cases, data will usually be lost, so use with care.
(1) If used with %[1]s, this command deletes all the data
associated with that protector. This means all directories
protected with that protector will become PERMANENTLY
inaccessible (unless the policies were protected by multiple
protectors).
(2) If used with %[2]s, this command deletes all the data
associated with that policy. This means all directories (usually
just one) using this policy will become PERMANENTLY
inaccessible.
(3) If used with %[3]s, all the metadata on that filesystem will
be deleted, causing all directories on that filesystem using
fscrypt to become PERMANENTLY inaccessible. To start using this
directory again, "fscrypt setup %[3]s" will need to be rerun.`,
shortDisplay(protectorFlag), shortDisplay(policyFlag),
mountpointArg),
Flags: []cli.Flag{protectorFlag, policyFlag, forceFlag},
Action: destroyMetadataAction,
}
func destroyMetadataAction(c *cli.Context) error {
switch c.NArg() {
case 0:
switch {
case protectorFlag.Value != "":
// Case (1) - protector destroy
protector, err := getProtectorFromFlag(protectorFlag.Value, nil)
if err != nil {
return newExitError(c, err)
}
prompt := fmt.Sprintf("Destroy protector %s on %q?",
protector.Descriptor(), protector.Context.Mount.Path)
warning := "All files protected only with this protector will be lost!!"
if err := askConfirmation(prompt, false, warning); err != nil {
return newExitError(c, err)
}
if err := protector.Destroy(); err != nil {
return newExitError(c, err)
}
fmt.Fprintf(c.App.Writer, "Protector %s deleted from filesystem %q.\n",
protector.Descriptor(), protector.Context.Mount.Path)
case policyFlag.Value != "":
// Case (2) - policy destroy
policy, err := getPolicyFromFlag(policyFlag.Value, nil)
if err != nil {
return newExitError(c, err)
}
prompt := fmt.Sprintf("Destroy policy %s on %q?",
policy.Descriptor(), policy.Context.Mount.Path)
warning := "All files using this policy will be lost!!"
if err := askConfirmation(prompt, false, warning); err != nil {
return newExitError(c, err)
}
if err := policy.Destroy(); err != nil {
return newExitError(c, err)
}
fmt.Fprintf(c.App.Writer, "Policy %s deleted from filesystem %q.\n",
policy.Descriptor(), policy.Context.Mount.Path)
default:
message := fmt.Sprintf("Must specify one of: %s, %s, or %s",
mountpointArg,
shortDisplay(protectorFlag),
shortDisplay(policyFlag))
return &usageError{c, message}
}
case 1:
// Case (3) - mountpoint destroy
path := c.Args().Get(0)
ctx, err := actions.NewContextFromMountpoint(path, nil)
if err != nil {
return newExitError(c, err)
}
prompt := fmt.Sprintf("Destroy all the metadata on %q?", ctx.Mount.Path)
warning := "All the encrypted files on this filesystem will be lost!!"
if err := askConfirmation(prompt, false, warning); err != nil {
return newExitError(c, err)
}
if err := ctx.Mount.RemoveAllMetadata(); err != nil {
return newExitError(c, err)
}
fmt.Fprintf(c.App.Writer, "All metadata on %q deleted.\n", ctx.Mount.Path)
default:
return expectedArgsErr(c, 1, true)
}
return nil
}
var changePassphrase = cli.Command{
Name: "change-passphrase",
ArgsUsage: shortDisplay(protectorFlag),
Usage: "change the passphrase used for a protector",
Description: `This command takes a specified passphrase protector and
changes the corresponding passphrase. Note that this does not
create or destroy any protectors.`,
Flags: []cli.Flag{protectorFlag},
Action: changePassphraseAction,
}
func changePassphraseAction(c *cli.Context) error {
if c.NArg() != 0 {
return expectedArgsErr(c, 0, false)
}
if err := checkRequiredFlags(c, []*stringFlag{protectorFlag}); err != nil {
return err
}
protector, err := getProtectorFromFlag(protectorFlag.Value, nil)
if err != nil {
return newExitError(c, err)
}
if err := protector.Unlock(oldExistingKeyFn); err != nil {
return newExitError(c, err)
}
defer protector.Lock()
if err := protector.Rewrap(newCreateKeyFn); err != nil {
return newExitError(c, err)
}
fmt.Fprintf(c.App.Writer, "Passphrase for protector %s successfully changed.\n",
protector.Descriptor())
return nil
}
var addProtectorToPolicy = cli.Command{
Name: "add-protector-to-policy",
ArgsUsage: fmt.Sprintf("%s %s", shortDisplay(protectorFlag), shortDisplay(policyFlag)),
Usage: "start protecting a policy with some protector",
Description: `This command changes the specified policy to be
protected with the specified protector. This means that any
directories using this policy will now be accessible with this
protector. This command will fail if the policy is already
protected with this protector.`,
Flags: []cli.Flag{protectorFlag, policyFlag, unlockWithFlag, keyFileFlag},
Action: addProtectorAction,
}
func addProtectorAction(c *cli.Context) error {
if c.NArg() != 0 {
return expectedArgsErr(c, 0, false)
}
if err := checkRequiredFlags(c, []*stringFlag{protectorFlag, policyFlag}); err != nil {
return err
}
protector, err := getProtectorFromFlag(protectorFlag.Value, nil)
if err != nil {
return newExitError(c, err)
}
policy, err := getPolicyFromFlag(policyFlag.Value, protector.Context.TargetUser)
if err != nil {
return newExitError(c, err)
}
// Sanity check before unlocking everything
if err := policy.AddProtector(protector); errors.Cause(err) != actions.ErrLocked {
return newExitError(c, err)
}
prompt := fmt.Sprintf("Protect policy %s with protector %s?",
policy.Descriptor(), protector.Descriptor())
warning := "All files using this policy will be accessible with this protector!!"
if err := askConfirmation(prompt, true, warning); err != nil {
return newExitError(c, err)
}
if err := protector.Unlock(existingKeyFn); err != nil {
return newExitError(c, err)
}
if err := policy.Unlock(optionFn, existingKeyFn); err != nil {
return newExitError(c, err)
}
if err := policy.AddProtector(protector); err != nil {
return newExitError(c, err)
}
fmt.Fprintf(c.App.Writer, "Protector %s now protecting policy %s.\n",
protector.Descriptor(), policy.Descriptor())
return nil
}
var removeProtectorFromPolicy = cli.Command{
Name: "remove-protector-from-policy",
ArgsUsage: fmt.Sprintf("%s %s", shortDisplay(protectorFlag), shortDisplay(policyFlag)),
Usage: "stop protecting a policy with some protector",
Description: `This command changes the specified policy to no longer be
protected with the specified protector. This means that any
directories using this policy will cannot be accessed with this
protector. This command will fail if the policy not already
protected with this protector or if it is the policy's only
protector.`,
Flags: []cli.Flag{protectorFlag, policyFlag, forceFlag},
Action: removeProtectorAction,
}
func removeProtectorAction(c *cli.Context) error {
if c.NArg() != 0 {
return expectedArgsErr(c, 0, false)
}
if err := checkRequiredFlags(c, []*stringFlag{protectorFlag, policyFlag}); err != nil {
return err
}
// We do not need to unlock anything for this operation
protector, err := getProtectorFromFlag(protectorFlag.Value, nil)
if err != nil {
return newExitError(c, err)
}
policy, err := getPolicyFromFlag(policyFlag.Value, protector.Context.TargetUser)
if err != nil {
return newExitError(c, err)
}
prompt := fmt.Sprintf("Stop protecting policy %s with protector %s?",
policy.Descriptor(), protector.Descriptor())
warning := "All files using this policy will NO LONGER be accessible with this protector!!"
if err := askConfirmation(prompt, false, warning); err != nil {
return newExitError(c, err)
}
if err := policy.RemoveProtector(protector); err != nil {
return newExitError(c, err)
}
fmt.Fprintf(c.App.Writer, "Protector %s no longer protecting policy %s.\n",
protector.Descriptor(), policy.Descriptor())
return nil
}
var dumpMetadata = cli.Command{
Name: "dump",
ArgsUsage: fmt.Sprintf("[%s | %s]", shortDisplay(protectorFlag), shortDisplay(policyFlag)),
Usage: "print debug data for a policy or protector",
Description: fmt.Sprintf(`This commands dumps all of the debug data for
a protector (if %s is used) or policy (if %s is used). This data
includes the data pulled from the %q config file, the
appropriate mountpoint data, and any options for the policy or
hashing costs for the protector. Any cryptographic keys are
wiped and are not printed out.`, shortDisplay(protectorFlag),
shortDisplay(policyFlag), actions.ConfigFileLocation),
Flags: []cli.Flag{protectorFlag, policyFlag},
Action: dumpMetadataAction,
}
func dumpMetadataAction(c *cli.Context) error {
switch {
case protectorFlag.Value != "":
// Case (1) - protector print
protector, err := getProtectorFromFlag(protectorFlag.Value, nil)
if err != nil {
return newExitError(c, err)
}
fmt.Fprintln(c.App.Writer, protector)
case policyFlag.Value != "":
// Case (2) - policy print
policy, err := getPolicyFromFlag(policyFlag.Value, nil)
if err != nil {
return newExitError(c, err)
}
fmt.Fprintln(c.App.Writer, policy)
default:
message := fmt.Sprintf("Must specify one of: %s or %s",
shortDisplay(protectorFlag),
shortDisplay(policyFlag))
return &usageError{c, message}
}
return nil
}
|