-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
472 lines (414 loc) · 10.9 KB
/
main.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
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
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package main
import (
"encoding/base32"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"os"
"path/filepath"
"strings"
"github.com/OpenPeeDeeP/xdg"
docopt "github.com/docopt/docopt.go"
"github.com/pkg/errors"
"github.com/spf13/viper"
"github.com/atotto/clipboard"
"github.com/mitchellh/cli"
)
var (
debug = false
verbose = false
version = "dev"
ui cli.Ui
)
func usage() string {
return `Two factor authenticator for your command line.
Usage:
2ami add <name> [--digits=<digits>] [--interval=<seconds>] [--verbose]
2ami dump [<name>] [--verbose]
2ami generate <name> [-c|--clip] [--verbose]
2ami list [--verbose]
2ami remove <name> [--verbose]
2ami rename <old-name> <new-name>
2ami backup <file-path>
2ami restore <file-path>
2ami -h | --help
2ami --version
Commands:
add Add a new key.
dump Dump keys informations (without secrets).
generate Generate a token from a known key.
list List known keys.
remove Remove specified key.
backup Backup keys to a specified file
restore Restore keys from a specified file
Options:
-h --help Show this screen.
--version Show version.
--verbose Enable verbose output.
--digits=<digits> Number of token digits.
--interval=<seconds> Interval in seconds between token generation.
-c --clip Copy result to the clipboard.
Environment variables:
2AMI_DB Path to the database where 2FA keys information are stored.
Default to $XDG_DATA_HOME/2ami/database.boltdb.
For non Linux values of XDG_DATA_HOME see https://github.com/OpenPeeDeeP/xdg
2AMI_RING Name of the keyring/keychain where 2FA secrets will be stored.
Default to "login".
`
}
const databaseLocationPerm = 0755
func main() {
checkAndEnableDebugMode()
debugPrint("Enabled debug logging...")
ui := cli.ColoredUi{
OutputColor: cli.UiColorNone,
InfoColor: cli.UiColorBlue,
ErrorColor: cli.UiColorRed,
WarnColor: cli.UiColorYellow,
Ui: &cli.BasicUi{
Reader: os.Stdin,
Writer: os.Stdout,
ErrorWriter: os.Stderr,
},
}
viper.SetDefault("db", filepath.Join(xdg.DataHome(), "2ami", "database.boltdb"))
viper.SetDefault("ring", "login")
viper.AutomaticEnv()
viper.SetEnvPrefix("2AMI")
usage := usage()
arguments, _ := docopt.ParseDoc(usage)
debugPrint(fmt.Sprint(arguments))
databaseLocation, databaseFilename, err := getDatabaseConfigurations()
if err != nil {
ui.Error(err.Error())
}
debugPrint(fmt.Sprintf("Using database: %s/%s", databaseLocation, databaseFilename))
err = os.MkdirAll(databaseLocation, databaseLocationPerm)
if err != nil {
ui.Error(fmt.Sprintf("Cannot create database location; %s", err))
}
storage := NewStorage(databaseLocation, databaseFilename)
if err = storage.Init(); err != nil {
ui.Error(fmt.Sprintf("Cannot initialize database; %s", err))
os.Exit(1)
}
verbose = arguments["--verbose"].(bool)
// deleteAllKeys(storage) //nolint:unused
if arguments["add"].(bool) {
name := arguments["<name>"].(string)
if name == "" {
ui.Error("argument 'name' cannot be empty")
os.Exit(1)
}
err := addWithPrompt(&ui, storage, name, arguments["--digits"], arguments["--interval"])
if err != nil {
ui.Error("An unexpected error occurred. Use DEBUG=true to show logs.")
debugPrint(fmt.Sprintf("%s", err))
os.Exit(1)
}
os.Exit(0)
}
if arguments["dump"].(bool) {
if arguments["<name>"] == nil {
errors := dumpAllKeys(storage)
printErrorsAndExit(errors) // this can exit(1)
os.Exit(0)
}
name := arguments["<name>"].(string)
err := dumpKey(storage, name)
if err != nil {
ui.Error(err.Error())
os.Exit(1)
}
os.Exit(0)
}
if arguments["backup"].(bool) {
backupPath := arguments["<file-path>"].(string)
if backupPath == "" {
ui.Error("argument 'file-path' cannot be empty")
os.Exit(1)
}
password, err := ui.AskSecret("Password for backup file: ")
if err != nil {
ui.Error(fmt.Sprintf("Error reading stdin: %s", err))
os.Exit(1)
}
data, err := backupAllKeys(storage, password)
if err != nil {
ui.Error(fmt.Sprintf("Error during backup: %s", err))
os.Exit(1)
}
err = ioutil.WriteFile(backupPath, []byte(data), 0664)
if err != nil {
ui.Error(fmt.Sprintf("Error writing backup file: %s", err))
os.Exit(1)
}
}
if arguments["restore"].(bool) {
backupPath := arguments["<file-path>"].(string)
if backupPath == "" {
ui.Error("argument 'file-path' cannot be empty")
os.Exit(1)
}
data, err := ioutil.ReadFile(backupPath)
if err != nil {
ui.Error(fmt.Sprintf("Error reading backup file: %s", err))
os.Exit(1)
}
password, err := ui.AskSecret("Password for backup file: ")
if err != nil {
ui.Error(fmt.Sprintf("Error reading stdin: %s", err))
os.Exit(1)
}
err = restore(storage, string(data), password)
if err != nil {
ui.Error(fmt.Sprintf("Error during restore: %s", err))
os.Exit(1)
}
}
if arguments["generate"].(bool) {
name := arguments["<name>"].(string)
if name == "" {
ui.Error("argument 'name' cannot be empty")
os.Exit(1)
}
token, err := generate(storage, name)
if err != nil {
ui.Error(err.Error())
}
if arguments["--clip"].(bool) {
err = clipboard.WriteAll(token.Value)
ui.Error(fmt.Sprintf("Cannot copy to clipboard: %s", err))
} else {
if verbose {
ui.Info(fmt.Sprintf("%s ( %d seconds left )\n", token.Value, token.ExpiresIn))
} else {
ui.Info(token.Value)
}
}
os.Exit(0)
}
if arguments["list"].(bool) {
errors := list(&ui, storage)
printErrorsAndExit(errors) // this can exit(1)
os.Exit(0)
}
if arguments["remove"].(bool) {
name := arguments["<name>"].(string)
err := remove(&ui, storage, name)
if err != nil {
ui.Error(err.Error())
os.Exit(1)
}
os.Exit(0)
}
if arguments["rename"].(bool) {
oldName := arguments["<old-name>"].(string)
newName := arguments["<new-name>"].(string)
if oldName == newName {
ui.Error("old-name and new-name are equal, aborting")
os.Exit(1)
}
err := rename(&ui, storage, oldName, newName)
if err != nil {
ui.Error(err.Error())
os.Exit(1)
}
ui.Info("Key renamed")
os.Exit(0)
}
if arguments["--version"].(bool) {
ui.Output(version)
os.Exit(0)
}
os.Exit(0)
}
func checkAndEnableDebugMode() {
_, ok := os.LookupEnv("DEBUG")
if ok {
debug = true
}
}
func addWithPrompt(ui cli.Ui, storage Storage, name string, digits interface{}, interval interface{}) error {
secret, err := ui.AskSecret(fmt.Sprintf("2fa secret for %s ( will not be printed ): ", name))
if err != nil {
return err
}
secret = sanitizeSecret(secret)
if err := add(storage, name, secret, digits, interval); err != nil {
return err
}
ui.Info("Key successfully added")
return nil
}
func add(storage Storage, name string, secret string, digits interface{}, interval interface{}) error {
if err := isValidBase32(secret); err != nil {
return fmt.Errorf("secret is not valid: %w", err)
}
ring, err := openKeyring()
if err != nil {
return fmt.Errorf("cannot open keyring: %w", err)
}
key := NewKey(ring, name)
if digits != nil {
key.Digits, err = convertStringToInt(digits.(string))
if err != nil {
return fmt.Errorf("cannot convert string to int: %w", err)
}
}
if interval != nil {
key.Interval, err = convertStringToInt(interval.(string))
if err != nil {
return fmt.Errorf("cannot convert string to int: %w", err)
}
}
err = key.Secret(secret)
if err != nil {
return fmt.Errorf("cannot set secret for key: %w", err)
}
debugPrint(fmt.Sprintf("%+v", key))
marshal, _ := json.Marshal(key)
debugPrint(string(marshal))
result, err := storage.AddKey(name, []byte(marshal))
if err != nil {
return err
}
if !result {
return errors.New("something went wrong adding key")
}
return nil
}
type generated struct {
Value string
ExpiresIn int
}
func generate(storage Storage, name string) (generated, error) {
ring, err := openKeyring()
if err != nil {
return generated{}, fmt.Errorf("cannot open keyring: %w", err)
}
key := KeyFromStorage(storage, ring, name)
return generated{
Value: key.GenerateToken(),
ExpiresIn: key.ExpiresIn(),
}, nil
}
func list(ui cli.Ui, storage Storage) (errors []error) {
keys, err := storage.ListKey()
if err != nil {
return []error{err}
}
for _, v := range keys {
value, err := storage.GetKey(v)
if err != nil {
errors = append(errors, err)
}
key := Key{}
err = json.Unmarshal([]byte(value), &key)
if err != nil {
errors = append(errors, err)
}
debugPrint(fmt.Sprintf("%+v", key))
if verbose {
ui.Output(key.VerboseString())
} else {
ui.Output(key.String())
}
}
if len(errors) > 0 {
return errors
}
return nil
}
//nolint
func deleteAllKeys(storage Storage) {
keys, err := storage.ListKey()
if err != nil {
log.Fatal(err)
}
// fmt.Printf("keys: %s\n", keys)
for _, v := range keys {
err = storage.RemoveKey(v)
if err != nil {
fmt.Printf("%+v\n", err)
// switch err := errors.Cause(err).(type) {
// default:
// fmt.Printf("%+v\n", err)
// }
}
}
os.Exit(1)
}
func remove(ui cli.Ui, storage Storage, name string) error {
ring, err := openKeyring()
if err != nil {
return err
}
key := KeyFromStorage(storage, ring, name)
err = key.Delete()
if err != nil {
if strings.HasPrefix(err.Error(), "Item not found") {
ui.Info("Key is not present in keyring, skipping deletion")
} else {
return err
}
}
err = storage.RemoveKey(name)
if err != nil {
return err
}
ui.Info("Key removed")
return nil
}
func rename(ui cli.Ui, storage Storage, oldName string, newName string) error {
ring, err := openKeyring()
if err != nil {
return err
}
key := KeyFromStorage(storage, ring, oldName)
err = key.Rename(newName)
if err != nil {
ui.Error(fmt.Sprintf("Error renaming key %s: %s", oldName, err))
}
marshal, _ := json.Marshal(key)
debugPrint(string(marshal))
result, err := storage.AddKey(key.Name, []byte(marshal))
if err != nil {
return err
}
err = storage.RemoveKey(oldName)
if err != nil {
ui.Error(fmt.Sprintf("Removal of old key failed: %s", err))
}
if !result {
ui.Error("something went wrong adding key")
os.Exit(1)
}
return nil
}
func getDatabaseConfigurations() (databaseLocation, databaseFilename string, err error) {
databaseLocation = filepath.Dir(viper.GetString("db"))
databaseFilename = filepath.Base(viper.GetString("db"))
return databaseLocation, databaseFilename, nil
}
func sanitizeSecret(data string) string {
// any newline is not necessary
data = strings.TrimSuffix(data, "\n")
// Base32 is always uppercase
data = strings.ToUpper(data)
// remove all spaces in the string
data = strings.ReplaceAll(data, " ", "")
return data
}
func isValidBase32(data string) error {
encoder := base32.Encoding{}
_, err := encoder.DecodeString(data)
if err != nil {
return err
}
return nil
}