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
|
import os
import iutil
import logging
log = logging.getLogger("anaconda")
def isLuks(device):
if not device.startswith("/"):
device = "/dev/" + device
rc = iutil.execWithRedirect("cryptsetup",
["isLuks", device],
stdout = "/dev/null",
stderr = "/dev/null",
searchPath = 1)
if rc:
return False
else:
return True
class LUKSDevice:
"""LUKSDevice represents an encrypted block device using LUKS/dm-crypt.
It requires an underlying block device and a passphrase to become
functional."""
def __init__(self, device=None, passphrase=None, format=0):
self._device = None
self.passphrase = ""
self.name = ""
self.nameLocked = False
self.format = format
self.preexist = not format
self.packages = ["cryptsetup-luks"]
self.scheme = "LUKS"
self.setDevice(device)
self.setPassphrase(passphrase)
def getScheme(self):
"""Returns the name of the encryption scheme used by the device."""
return self.scheme
def setDevice(self, device):
self._device = device
if device is not None:
name = "%s-%s" % (self.getScheme().lower(),
os.path.basename(device))
self.setName(name)
def getDevice(self, encrypted=0):
if encrypted:
dev = self._device
else:
dev = "mapper/%s" % (self.name,)
return dev
def setName(self, name, lock=False):
"""Set the name of the mapped device, eg: 'dmcrypt-sda3'"""
if self.name and not self.getStatus():
raise RuntimeError, "Cannot rename an active mapping."
if self.nameLocked:
log.debug("Failed to change locked mapping name: %s" %
(self.name,))
return
self.name = name
if lock and name:
# don't allow anyone to lock the name as "" or None
self.nameLocked = True
def setPassphrase(self, passphrase):
"""Set the (plaintext) passphrase used to access the device."""
self.passphrase = passphrase
def crypttab(self):
"""Return a crypttab formatted line describing this mapping."""
format = "%-23s %-15s %s\n"
line = format % (self.name,
"/dev/%s" % (self.getDevice(encrypted=1),),
"none")
return line
def getStatus(self):
"""0 means active, 1 means inactive (or non-existent)"""
if not self.name:
return 1
rc = iutil.execWithRedirect("cryptsetup",
["status", self.name],
stdout = "/dev/null",
stderr = "/dev/null",
searchPath = 1)
return rc
def formatDevice(self):
"""Write a LUKS header onto the device."""
if not self.format:
return
if not self.getStatus():
log.debug("refusing to format active mapping %s" % (self.name,))
return 1
if not self.passphrase:
raise RuntimeError, "Cannot create mapping without a passphrase."
device = self.getDevice(encrypted=1)
if not device:
raise ValueError, "Cannot open mapping without a device."
log.info("formatting %s as %s" % (device, self.getScheme()))
p = os.pipe()
os.write(p[1], "%s\n" % (self.passphrase,))
os.close(p[1])
rc = iutil.execWithRedirect("cryptsetup",
["-q", "luksFormat",
"/dev/%s" % (device,)],
stdin = p[0],
stdout = "/dev/null",
stderr = "/dev/tty5",
searchPath = 1)
self.format = 0
return rc
def openDevice(self):
if not self.getStatus():
# already mapped
return
if not self.passphrase:
raise RuntimeError, "Cannot create mapping without a passphrase."
device = self.getDevice(encrypted=1)
if not device:
raise ValueError, "Cannot open mapping without a device."
log.info("mapping %s device %s to %s" % (self.getScheme(),
device,
self.name))
p = os.pipe()
os.write(p[1], "%s\n" % (self.passphrase,))
os.close(p[1])
rc = iutil.execWithRedirect("cryptsetup",
["luksOpen",
"/dev/%s" % (device,),
self.name],
stdin = p[0],
stdout = "/dev/null",
stderr = "/dev/tty5",
searchPath = 1)
return rc
def closeDevice(self):
log.info("unmapping %s device %s" % (self.getScheme(), self.name))
rc = iutil.execWithRedirect("cryptsetup",
["luksClose", self.name],
stdout = "/dev/null",
stderr = "/dev/tty5",
searchPath = 1)
return rc
|