aboutsummaryrefslogtreecommitdiff
path: root/cryptfs/config_file.go
blob: 752ed09b184e85140e5c83baf00f663f3f2e564b (plain)
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
package cryptfs

import (
	"errors"
	"io/ioutil"
	"encoding/json"
)
import "os"

const (
	// Changing this string breaks backward compatability
	testBlockData = "gocryptfs test block"

	// The dot "." is not used in base64url (RFC4648), hence
	// we can never clash with an encrypted file.
	ConfDefaultName = "gocryptfs.conf"
)

type confFile struct {
	// File the config is saved in. Lowercase => not exported to JSON.
	filename string
	// Unencrypted AES key
	Key [16]byte
	// GCM ciphertext with auth tag to verify the key is correct
	TestBlock []byte
}

// CreateConfFile - create a new config file with "key" and write to "filename"
func CreateConfFile(filename string, key [16]byte) error {
	var cf confFile
	cf.filename = filename
	cf.Key = key

	// Generate test block
	cfs := NewCryptFS(cf.Key, false)
	cf.TestBlock = cfs.EncryptBlock([]byte(testBlockData))

	// Write file to disk
	err := cf.WriteFile()

	return err
}

// LoadConfFile - read config file from disk and verify the key using the
// embedded TestBlock
func LoadConfFile(filename string) (*confFile, error) {
	// Read from disk
	js, err := ioutil.ReadFile(filename)
	if err != nil {
		return nil, err
	}
	var cf confFile
	err = json.Unmarshal(js, &cf)
	if err != nil {
		return nil, err
	}
	cf.filename = filename

	// Try to decrypt the test block to see if the key is correct
	//
	// Speed does not matter here. Use built-in crypto.
	cfs := NewCryptFS(cf.Key, false)
	d, err := cfs.DecryptBlock(cf.TestBlock)
	if err != nil {
		return nil, err
	}
	ds := string(d)
	if ds != testBlockData {
		return nil, errors.New("Invalid test block content: " + ds)
	}
	return &cf, nil
}

// WriteFile - write out config in JSON format to file "filename.tmp"
// then rename over "filename"
func (cf *confFile) WriteFile() error {
	tmp := cf.filename + ".tmp"
	fd, err := os.Create(tmp)
	if err != nil {
		return err
	}
	js, err := json.Marshal(cf)
	if err != nil {
		return err
	}
	_, err = fd.Write(js)
	if err != nil {
		return err
	}
	err = fd.Sync()
	if err != nil {
		return err
	}
	err = fd.Close()
	if err != nil {
		return err
	}
	err = os.Rename(tmp, cf.filename)
	if err != nil {
		return err
	}

	return nil
}