-
Notifications
You must be signed in to change notification settings - Fork 6
/
chasm.go
355 lines (286 loc) · 8.57 KB
/
chasm.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
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
package main
import (
"bufio"
"encoding/json"
"fmt"
"io/ioutil"
"os"
"path"
"path/filepath"
"github.com/fatih/color"
)
/// Chasm Types ///
// CloudStore represents an external cloud storage service that is compatible
// with Chasm
type CloudStore interface {
Upload(share Share)
Delete(sid ShareID)
//Restore downloads shares to local restore path
Restore() string
Description() string
ShortDescription() string
Clean()
}
// FileShare represents a file share with id shareID, and
// sha2 checksum Hash
type FileShare struct {
SID ShareID `json:"sid"`
Hash string `json:"hash"` //base64URL encoded SHA2 has
}
// ChasmPref represents user/application preferences
type ChasmPref struct {
root string
// the cloud services sharing across
FolderStores []FolderStore `json:"folder_stores"`
// the cloud services sharing across
GDriveStores []GDriveStore `json:"gdrive_stores"`
// the cloud services sharing across
DropboxStores []DropboxStore `json:"dropbox_stores"`
// maps files to their shareId
FileMap map[string]FileShare `json:"files"`
// keep track of dirs tracked
DirMap map[string]bool `json:"dirs"`
}
// RegisteredServices counts all services
func (p ChasmPref) RegisteredServices() int {
return len(p.FolderStores) + len(p.GDriveStores) + len(p.DropboxStores)
}
// NeedSetup checks if there are enough services to run
func (p ChasmPref) NeedSetup() bool {
return p.RegisteredServices() < 2
}
// AllCloudStores combines all the cloud stores
func (p ChasmPref) AllCloudStores() []CloudStore {
// adjust length for new store types
cloudStores := make([]CloudStore, p.RegisteredServices())
// all other cloud stores go here
ind := 0
for _, fs := range p.FolderStores {
cloudStores[ind] = CloudStore(fs)
ind += 1
}
for _, gds := range p.GDriveStores {
cloudStores[ind] = CloudStore(gds)
ind += 1
}
for _, dbs := range p.DropboxStores {
cloudStores[ind] = CloudStore(dbs)
ind += 1
}
return cloudStores
}
// Save saves the chasm preferences
func (p ChasmPref) Save() {
chasmFilePath := path.Join(p.root, chasmPrefFile)
chasmFileBytes, err := json.MarshalIndent(preferences, "", " ")
check(err)
ioutil.WriteFile(chasmFilePath, chasmFileBytes, 0660)
}
/// Chasm Functions ///
var preferences ChasmPref
const chasmPrefFile = ".chasm"
const chasmIgnoreFile = ".chasmignore"
// CreateOrLoadChasmDir creates the root *chasm* folder on the system
// if it does not exist or finds an existing directory
// returns if true if newly created
func CreateOrLoadChasmDir(root string) {
os.MkdirAll(root, 0777)
chasmFilePath := path.Join(root, chasmPrefFile)
chasmFileBytes, err := ioutil.ReadFile(chasmFilePath)
if err != nil {
color.Green("Creating new .chasm secure folder")
preferences.DirMap = make(map[string]bool)
preferences.FileMap = make(map[string]FileShare)
preferences.FileMap[chasmFilePath] = FileShare{SID: ShareID(chasmPrefFile), Hash: ""}
} else {
json.Unmarshal(chasmFileBytes, &preferences)
}
chasmIgnorePath := path.Join(root, chasmIgnoreFile)
_, err = ioutil.ReadFile(chasmIgnorePath)
if err != nil {
defaultIgnore := []byte(".DS_Store\n")
preferences.FileMap[chasmIgnorePath] = FileShare{SID: ShareID(chasmIgnoreFile), Hash: SHA256Base64URL(defaultIgnore)}
// add *.DS_Store to ignore file by default
errWrite := ioutil.WriteFile(chasmIgnorePath, defaultIgnore, 0777)
if errWrite != nil {
color.Red("Error: could not write to %s: %s", chasmFilePath, errWrite)
}
}
preferences.root = root
preferences.Save()
}
// IsValidPath checks if a file path is vaild, i.e. it doesn't match any patterns
// in the .chasmignore file
func IsValidPath(filePath string) bool {
base := filepath.Base(filePath)
chasmIgnorePath := path.Join(preferences.root, chasmIgnoreFile)
chasmIgnore, err := os.Open(chasmIgnorePath)
if err != nil {
return true
}
scanner := bufio.NewScanner(chasmIgnore)
for scanner.Scan() {
pattern := scanner.Text()
// if the file matches anything in .chasmignore, return false
ok, err := filepath.Match(pattern, base)
if ok {
return false
}
if err != nil {
fmt.Println(err)
}
}
// check for errors
if err := scanner.Err(); err != nil {
fmt.Println(err)
}
return true
}
// AddFile secret shares the file, and uploads each share to corresponding services
// if the file exists already, we delete the remote share first by its shareId
func AddFile(filePath string) {
if !IsValidPath(filePath) {
color.Blue("Path %s is in .chasmignore. No actions will be performed.", filePath)
return
}
file, _ := os.Open(filePath)
fi, err := file.Stat()
if err != nil {
color.Red("Cannot get file info: %s", err)
return
}
switch mode := fi.Mode(); {
case mode.IsDir():
files, _ := ioutil.ReadDir(filePath)
preferences.DirMap[path.Clean(filePath)] = true
for _, f := range files {
AddFile(path.Join(filePath, f.Name()))
}
return
case mode.IsRegular():
break
}
var sid ShareID
if existingFileShare, ok := preferences.FileMap[filePath]; ok {
sid = existingFileShare.SID
} else {
// create unique share_id
sid = RandomShareID()
}
// read the file
fileBytes, err := ioutil.ReadFile(filePath)
if err != nil {
color.Red("Cannot read file: %s", err)
return
}
preferences.FileMap[filePath] = FileShare{SID: sid, Hash: SHA256Base64URL(fileBytes)}
// create the shares
allCloudStores := preferences.AllCloudStores()
shares := CreateShares(fileBytes, sid, len(allCloudStores))
// iteratively upload shares with each cloud store
for i, cs := range allCloudStores {
cs.Upload(shares[i])
}
// only save pref if it's not a .chasm
if sid != ShareID(".chasm") {
preferences.Save()
}
}
// DeleteFile deletes the remote share of this path by its shareId
func DeleteFile(filePath string) {
if !IsValidPath(filePath) {
color.Red("Path %s is in .chasmignore. No actions will be performed.", filePath)
return
}
potenDirPath := path.Clean(filePath)
if _, ok := preferences.DirMap[potenDirPath]; ok {
DeleteDir(potenDirPath)
return
}
allCloudStores := preferences.AllCloudStores()
if fileShare, ok := preferences.FileMap[filePath]; ok {
// iteratively delete shares from each cloud store
for _, cs := range allCloudStores {
cs.Delete(fileShare.SID)
}
delete(preferences.FileMap, filePath)
preferences.Save()
color.Yellow("Deleted share from all cloud stores.")
return
}
color.Red("Path %s is not tracked. Cannot find share id.", filePath)
}
func DeleteDir(dirPath string) {
//remove dir path
delete(preferences.DirMap, dirPath)
for filePath, _ := range preferences.FileMap {
dirMatch, _ := path.Split(filePath)
if path.Clean(dirMatch) != path.Clean(dirPath) {
continue
}
DeleteFile(filePath)
}
}
// Restore shares to the original files
func Restore() {
allCloudStores := preferences.AllCloudStores()
sharePaths := make([]string, len(allCloudStores))
// (1) first get all shares
for i, cs := range allCloudStores {
sp := cs.Restore()
if sp == "" {
color.Red("Restore failed for %v", cs)
return
}
sharePaths[i] = sp
}
// (2) next restore .chasm file
chasmFileBytes := restoreShareID(ShareID(chasmPrefFile), sharePaths)
var restoredPrefs ChasmPref
err := json.Unmarshal(chasmFileBytes, &restoredPrefs)
if err != nil {
color.Red("Cannot restore chasm preferences file from cloud services.")
return
}
// (3) create necessary directories, update in prefs.
for dirPath, _ := range restoredPrefs.DirMap {
os.MkdirAll(dirPath, 0770)
preferences.DirMap[dirPath] = true
}
// (4) finally, for the remaining files, restore and save
for filePath, fileShare := range restoredPrefs.FileMap {
fileBytes := restoreShareID(fileShare.SID, sharePaths)
if len(fileBytes) == 0 {
continue
}
if fileShare.SID != ShareID(chasmPrefFile) && checkSHA2(fileShare.Hash, fileBytes) == false {
color.Red("Error: invalid SHA2 checksum for share %s. Skipping.", fileShare.SID)
continue
}
err := ioutil.WriteFile(filePath, fileBytes, 0770)
if err != nil {
color.Red("Error writing restored file %s: %s", filePath, err)
}
}
color.Green("Done. Restored all files!")
}
func restoreShareID(sid ShareID, sharePaths []string) []byte {
fileShares := make([]Share, len(sharePaths))
sharesFound := 0
for i, sp := range sharePaths {
file := path.Join(sp, string(sid))
dataBytes, err := ioutil.ReadFile(file)
if err != nil {
color.Red("(Skipping share) Cannot read file %s: %s", file, err)
continue
}
fileShares[i] = Share{SID: sid, Data: dataBytes}
sharesFound++
}
if sharesFound < preferences.RegisteredServices() {
color.Red("Couldn't retrieve enough shares to restore %s", sid)
return []byte{}
} else {
return CombineShares(fileShares)
}
}