-
Notifications
You must be signed in to change notification settings - Fork 16
/
cmd_escrow.py
executable file
·97 lines (72 loc) · 2.39 KB
/
cmd_escrow.py
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
#!/usr/bin/python2
#
# Copyright (c) 2010-2013 Liraz Siri <[email protected]>
#
# This file is part of TKLBAM (TurnKey GNU/Linux BAckup and Migration).
#
# TKLBAM is open source software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 3 of
# the License, or (at your option) any later version.
#
"""Create a backup escrow key (Save this somewhere safe)
Arguments:
KEYFILE File path to save the escrow key (- for stdout)
Options:
-P --no-passphrase Don't encrypt escrow key with a passphrase
-R --random-passphrase Choose a secure random passphrase (and print it)
"""
import sys
import getopt
import keypacket
from registry import registry
from passphrase import *
def usage(e=None):
if e:
print >> sys.stderr, "error: " + str(e)
print >> sys.stderr, "Usage: %s [-options] KEYFILE" % sys.argv[0]
print >> sys.stderr, __doc__
sys.exit(1)
def main():
try:
opts, args = getopt.gnu_getopt(sys.argv[1:], "hRP", ["help", "no-passphrase", "random-passphrase"])
except getopt.GetoptError, e:
usage(e)
if not args:
usage()
if len(args) != 1:
usage("bad number of arguments")
keyfile = args[0]
opt_no_passphrase = False
opt_random_passphrase = False
for opt, val in opts:
if opt in ('-h', '--help'):
usage()
if opt in ('-P', '--no-passphrase'):
opt_no_passphrase = True
if opt in ('-R', '--random-passphrase'):
opt_random_passphrase = True
if opt_no_passphrase and opt_random_passphrase:
print >> sys.stderr, "error: --no-passphrase and --random-passphrase are incompatible options"
sys.exit(1)
if not registry.secret:
print >> sys.stderr, "error: you need to run init first"
sys.exit(1)
def _passphrase():
if opt_no_passphrase:
return ""
if opt_random_passphrase:
passphrase = random_passphrase()
print passphrase
return passphrase
return get_passphrase()
passphrase = _passphrase()
key = keypacket.fmt(registry.secret, passphrase)
if keyfile == '-':
fh = sys.stdout
else:
fh = file(keyfile, "w")
os.chmod(keyfile, 0600)
print >> fh, key
if __name__ == "__main__":
main()