-
Notifications
You must be signed in to change notification settings - Fork 1
/
storage_encrypted.go
258 lines (240 loc) · 7.26 KB
/
storage_encrypted.go
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
// Copyright (c) 2017-2023, Jan Cajthaml <jan.cajthaml@gmail.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 storage
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"fmt"
"io"
"os"
"path/filepath"
"syscall"
"time"
)
// EncryptedStorage is a fascade to access encrypted storage
type EncryptedStorage struct {
Storage
root string
bufferSize int
encryptionKey []byte
}
// NewEncryptedStorage returns new storage over given root
func NewEncryptedStorage(root string, key []byte) (Storage, error) {
if root == "" {
return NilStorage{}, fmt.Errorf("invalid root directory")
}
if os.MkdirAll(filepath.Clean(root), os.ModePerm) != nil {
return NilStorage{}, fmt.Errorf("unable to assert root storage directory")
}
if len(key) == 0 {
return NilStorage{}, fmt.Errorf("no encryption key setup")
}
return EncryptedStorage{
root: root,
bufferSize: 8192,
encryptionKey: key,
}, nil
}
func (storage EncryptedStorage) encrypt(data []byte) ([]byte, error) {
block, err := aes.NewCipher(storage.encryptionKey)
if err != nil {
return nil, err
}
ciphertext := make([]byte, aes.BlockSize+len(data))
iv := ciphertext[:aes.BlockSize]
if _, err := io.ReadFull(rand.Reader, iv); err != nil {
return nil, err
}
cfb := cipher.NewCFBEncrypter(block, iv)
cfb.XORKeyStream(ciphertext[aes.BlockSize:], []byte(data))
return ciphertext, nil
}
func (storage EncryptedStorage) decrypt(data []byte) ([]byte, error) {
block, err := aes.NewCipher(storage.encryptionKey)
if err != nil {
return nil, err
}
if len(data) < aes.BlockSize {
return nil, fmt.Errorf("invalid blocksize expected %d but actual is %d", aes.BlockSize, len(data))
}
plaintext := make([]byte, len(data))
copy(plaintext, data)
iv := plaintext[:aes.BlockSize]
plaintext = plaintext[aes.BlockSize:]
cfb := cipher.NewCFBDecrypter(block, iv)
cfb.XORKeyStream(plaintext, plaintext)
return plaintext, nil
}
// Chmod sets chmod flag on given file
func (storage EncryptedStorage) Chmod(path string, mod os.FileMode) error {
return chmod(storage.root+"/"+path, mod)
}
// ListDirectory returns sorted slice of item names in given absolute path
// default sorting is ascending
func (storage EncryptedStorage) ListDirectory(path string, ascending bool) ([]string, error) {
return listDirectory(storage.root+"/"+path, storage.bufferSize, ascending)
}
// CountFiles returns number of items in directory
func (storage EncryptedStorage) CountFiles(path string) (int, error) {
return countFiles(storage.root+"/"+path, storage.bufferSize)
}
// Exists returns true if path exists
func (storage EncryptedStorage) Exists(path string) (bool, error) {
return nodeExists(storage.root + "/" + path)
}
// LastModification returns time of last modification
func (storage EncryptedStorage) LastModification(path string) (time.Time, error) {
return modTime(storage.root + "/" + path)
}
// TouchFile creates file given absolute path if file does not already exist
func (storage EncryptedStorage) TouchFile(path string) error {
return touch(storage.root + "/" + path)
}
// Mkdir creates directory given absolute path
func (storage EncryptedStorage) Mkdir(path string) error {
return mkdir(storage.root + "/" + path)
}
// Delete removes given absolute path if that file does exists
func (storage EncryptedStorage) Delete(path string) error {
return os.RemoveAll(filepath.Clean(storage.root + "/" + path))
}
// ReadFileFully reads whole file given path
func (storage EncryptedStorage) ReadFileFully(path string) ([]byte, error) {
filename := filepath.Clean(storage.root + "/" + path)
fd, err := syscall.Open(filename, syscall.O_RDONLY|syscall.O_NONBLOCK, 0600)
if err != nil {
return nil, err
}
defer syscall.Close(fd)
if err = syscall.Flock(fd, syscall.LOCK_EX); err != nil {
return nil, err
}
defer syscall.Flock(fd, syscall.LOCK_UN)
var fs syscall.Stat_t
if err = syscall.Fstat(fd, &fs); err != nil {
return nil, err
}
buf := make([]byte, fs.Size)
_, err = syscall.Read(fd, buf)
if err != nil && err != io.EOF {
return nil, err
}
// FIXME inline
return storage.decrypt(buf)
}
// WriteFileExclusive writes data given path to a file if that file does not
// already exists
func (storage EncryptedStorage) WriteFileExclusive(path string, data []byte) error {
filename := filepath.Clean(storage.root + "/" + path)
if err := os.MkdirAll(filepath.Dir(filename), os.ModePerm); err != nil {
return err
}
// FIXME inline
out, err := storage.encrypt(data)
if err != nil {
return err
}
fd, err := syscall.Open(filename, syscall.O_CREAT|syscall.O_WRONLY|syscall.O_EXCL|syscall.O_NONBLOCK, 0600)
if err != nil {
return err
}
defer func() {
syscall.Close(fd)
syscall.Fsync(fd)
}()
if err = syscall.Flock(fd, syscall.LOCK_EX); err != nil {
return err
}
defer syscall.Flock(fd, syscall.LOCK_UN)
if _, err := syscall.Write(fd, out); err != nil {
return err
}
return nil
}
// WriteFile writes data given absolute path to a file, creates it if it does
// not exist
func (storage EncryptedStorage) WriteFile(path string, data []byte) error {
filename := filepath.Clean(storage.root + "/" + path)
if err := os.MkdirAll(filepath.Dir(filename), os.ModePerm); err != nil {
return err
}
// FIXME inline
out, err := storage.encrypt(data)
if err != nil {
return err
}
fd, err := syscall.Open(filename, syscall.O_CREAT|syscall.O_WRONLY|syscall.O_TRUNC|syscall.O_NONBLOCK, 0600)
if err != nil {
return err
}
defer func() {
syscall.Close(fd)
syscall.Fsync(fd)
}()
if err = syscall.Flock(fd, syscall.LOCK_EX); err != nil {
return err
}
defer syscall.Flock(fd, syscall.LOCK_UN)
if _, err := syscall.Write(fd, out); err != nil {
return err
}
return nil
}
// AppendFile appens data given absolute path to a file, creates it if it does
// not exist
func (storage EncryptedStorage) AppendFile(path string, data []byte) error {
filename := filepath.Clean(storage.root + "/" + path)
if err := os.MkdirAll(filepath.Dir(filename), os.ModePerm); err != nil {
return err
}
fd, err := syscall.Open(filename, syscall.O_CREAT|syscall.O_WRONLY|syscall.O_TRUNC|syscall.O_NONBLOCK, 0600)
if err != nil {
return err
}
defer func() {
syscall.Close(fd)
syscall.Fsync(fd)
}()
if err = syscall.Flock(fd, syscall.LOCK_EX); err != nil {
return err
}
defer syscall.Flock(fd, syscall.LOCK_UN)
var fs syscall.Stat_t
if err = syscall.Fstat(fd, &fs); err != nil {
return err
}
buf := make([]byte, fs.Size)
_, err = syscall.Read(fd, buf)
if err != nil && err != io.EOF {
return err
}
// FIXME inline
head, err := storage.decrypt(buf)
if err != nil {
return err
}
var tail = make([]byte, len(head)+1)
tail = append(tail, head...)
tail = append(tail, data...)
// FIXME inline
out, err := storage.encrypt(tail)
if err != nil {
return err
}
if _, err := syscall.Write(fd, out); err != nil {
return err
}
return nil
}