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
|
/*
* 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"
"github.com/pkg/errors"
"github.com/urfave/cli"
"fscrypt/actions"
"fscrypt/filesystem"
"fscrypt/metadata"
)
// Setup is a command which can to 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 or enables fscrypt on a filesystem.
(1) When used without %[1]s, create the parameters in %[2]s.
This is primarily used to configure the passphrase hashing
parameters to the appropriate hardness (as determined by %[3]s).
Being root is required to write the config file.
(2) When used with %[1]s, enable fscrypt on %[1]s. This involves
creating the necessary folders on the filesystem which will hold
the metadata structures. Begin root may be required to create
these folders.`, mountpointArg, actions.ConfigFileLocation,
shortDisplay(timeTargetFlag)),
Flags: []cli.Flag{timeTargetFlag, legacyFlag, forceFlag},
Action: setupAction,
}
func setupAction(c *cli.Context) error {
var err error
switch c.NArg() {
case 0:
// Case (1) - global setup
err = createGlobalConfig(c.App.Writer, actions.ConfigFileLocation)
case 1:
// Case (2) - filesystem setup
err = setupFilesystem(c.App.Writer, c.Args().Get(0))
default:
return expectedArgsErr(c, 1, true)
}
if err != nil {
return newExitError(c, err)
}
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,
nameFlag, keyFileFlag, skipUnlockFlag},
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)
}
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
}
// 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) {
ctx, err := actions.NewContextFromPath(path)
if err != nil {
return
}
if err = checkEncryptable(ctx, path); err != nil {
return
}
var policy *actions.Policy
if policyFlag.Value != "" {
log.Printf("getting policy for %q", path)
policy, err = getPolicyFromFlag(policyFlag.Value)
} else {
log.Printf("creating policy for %q", path)
var protector *actions.Protector
protector, err = selectOrCreateProtector(ctx)
// Successfully created protector should be reverted on failure.
if err != nil {
return
}
defer func() {
protector.Lock()
if err != nil {
protector.Revert()
}
}()
if err = protector.Unlock(existingKeyFn); err != nil {
return
}
policy, err = actions.CreatePolicy(ctx, protector)
}
// Successfully created policy should be reverted on failure.
if err != nil {
return
}
defer func() {
policy.Lock()
policy.Deprovision()
if err != nil {
policy.Revert()
}
}()
// Unlock() first, so if the Unlock() fails the directory isn't changed.
if !skipUnlockFlag.Value {
if err = policy.Unlock(optionFn, existingKeyFn); err != nil {
return
}
if err = policy.Provision(); err != nil {
return
}
}
if err = policy.Apply(path); os.IsPermission(errors.Cause(err)) {
// EACCES at this point indicates ownership issues.
err = errors.Wrap(ErrBadOwners, path)
}
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 is not encrypted and filesystem is using fscrypt", path)
switch _, err := actions.GetPolicyFromPath(ctx, path); errors.Cause(err) {
case metadata.ErrNotEncrypted:
// We are not encrypted
return nil
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 and existing one. The created return value is true if we
// created a new protector.
func selectOrCreateProtector(ctx *actions.Context) (*actions.Protector, error) {
if protectorFlag.Value != "" {
return getProtectorFromFlag(protectorFlag.Value)
}
options, err := expandedProtectorOptions(ctx)
if err != nil {
return nil, 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 != "" {
return createProtectorFromContext(ctx)
}
created, err := askQuestion("Should we create a new protector?", false)
if err != nil {
return nil, err
}
if created {
return createProtectorFromContext(ctx)
}
log.Print("finding an existing protector to use")
return selectExistingProtector(ctx, options)
}
// 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 purge" and
unmounting the corresponding filesystem.`, directoryArg,
shortDisplay(unlockWithFlag)),
Flags: []cli.Flag{unlockWithFlag, keyFileFlag},
Action: unlockAction,
}
func unlockAction(c *cli.Context) error {
if c.NArg() != 1 {
return expectedArgsErr(c, 1, false)
}
path := c.Args().Get(0)
ctx, err := actions.NewContextFromPath(path)
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)
}
// Check if directory is already unlocked
if policy.IsProvisioned() {
log.Printf("policy %s is already provisioned", policy)
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
}
// Purge removes all the policy keys from the keyring (also need unmount).
var Purge = cli.Command{
Name: "purge",
ArgsUsage: mountpointArg,
Usage: "[EXPERIMENTAL] remove a filesystem's keys",
Description: fmt.Sprintf(`EXPERIMENTAL: This command removes all the
policy keys for directories on %[1]s. This is intended to lock
all encrypted files and directories on %[1]s, in that unlocking
them for reading will require providing a key again. However,
this action is currently subject to two significant limitations:
(1) If "fscrypt purge" is run, but the filesystem has not yet
been unmounted, recently accessed encrypted directories and
files will remain accessible for some time. Because of this,
after purging a filesystem's keys, it is recommended to unmount
the filesystem. This limitation might be eliminated in a future
kernel version.
(2) Even after unmounting the filesystem, the kernel may keep
contents of encrypted files cached 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),
Flags: []cli.Flag{forceFlag},
Action: purgeAction,
}
func purgeAction(c *cli.Context) error {
if c.NArg() != 1 {
return expectedArgsErr(c, 1, false)
}
ctx, err := actions.NewContextFromMountpoint(c.Args().Get(0))
if err != nil {
return newExitError(c, err)
}
err = askConfirmation(fmt.Sprintf(
"Purge all policy keys from %q?",
ctx.Mount.Path), false,
"Encrypted data on this filesystem will be inaccessible until unlocked again!!")
if err != nil {
return newExitError(c, err)
}
if err = actions.PurgeAllPolicies(ctx); err != nil {
return newExitError(c, err)
}
fmt.Fprintf(c.App.Writer, "All keys purged for %q.\n", ctx.Mount.Path)
fmt.Fprintf(c.App.Writer, "Filesystem %q should now be unmounted.\n", ctx.Mount.Path)
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)
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
}
|