-
Notifications
You must be signed in to change notification settings - Fork 16
/
dummyhub.py
350 lines (258 loc) · 9.77 KB
/
dummyhub.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
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
import os
from os.path import exists, join
import re
import struct
import base64
from hashlib import sha1 as sha
from paths import Paths
import pickle
import glob
from datetime import datetime
from utils import AttrDict
from hub import Credentials, ProfileArchive
from hub import Error, NotSubscribed, InvalidBackupError
class APIKey:
def __init__(self, apikey):
apikey = str(apikey)
self.encoded = apikey
padded = "A" * (20 - len(apikey)) + apikey
try:
uid, secret = struct.unpack("!L8s", base64.b32decode(padded + "=" * 4))
except TypeError:
raise Error("Invalid characters in API-KEY")
self.uid = uid
self.secret = secret
@classmethod
def generate(cls, uid, secret=None):
if secret is None:
secret = os.urandom(8)
else:
secret = sha(secret).digest()[:8]
packed = struct.pack("!L8s", uid, secret)
encoded = base64.b32encode(packed).lstrip("A").rstrip("=")
return cls(encoded)
def subkey(self, namespace):
return self.generate(self.uid, namespace + self.secret)
def __str__(self):
return self.encoded
def __repr__(self):
return "APIKey(%s)" % `str(self)`
def __eq__(self, other):
return self.encoded == other.encoded
def __ne__(self, other):
return not self.__eq__(other)
class DummyUser(AttrDict):
def __init__(self, uid, apikey):
self.uid = uid
self.apikey = apikey
self.credentials = None
self.backups = {}
self.backups_max = 0
def subscribe(self):
accesskey = base64.b64encode(sha("%d" % self.uid).digest())[:20]
secretkey = base64.b64encode(os.urandom(30))[:40]
producttoken = "{ProductToken}" + base64.b64encode("\x00" + os.urandom(2) + "AppTkn" + os.urandom(224))
usertoken = "{UserToken}" + base64.b64encode("\x00" + os.urandom(2) + "UserTkn" + os.urandom(288))
self.credentials = Credentials({'accesskey': accesskey,
'secretkey': secretkey,
'producttoken': producttoken,
'usertoken': usertoken})
def unsubscribe(self):
self.credentials = None
def new_backup(self, address, key, profile_id, server_id=None):
self.backups_max += 1
id = str(self.backups_max)
backup_record = DummyBackupRecord(id, address, key, \
profile_id, server_id)
self.backups[id] = backup_record
return backup_record
class DuplicityFile(AttrDict):
@classmethod
def from_fname(cls, fname):
m = re.match(r'duplicity-(.*?)\.(.*?).(?:sigtar|vol.*difftar)', fname)
if not m:
return None
type, timestamp = m.groups()
m = re.search(r'to\.(.*)', timestamp)
if m:
timestamp, = m.groups()
if 'full' in type:
type = 'full'
else:
type = 'inc'
try:
timestamp = datetime.strptime(timestamp, "%Y%m%dT%H%M%SZ")
except ValueError:
return
return cls(type, timestamp)
def __init__(self, type, timestamp):
self.type = type
self.timestamp = timestamp
class DummySession(AttrDict):
def __init__(self, type, timestamp, size=0):
self.type = type
self.timestamp = timestamp
self.size = size
def _parse_duplicity_sessions(path):
sessions = {}
for fname in os.listdir(path):
fpath = join(path, fname)
fsize = os.stat(fpath).st_size
df = DuplicityFile.from_fname(fname)
if not df:
continue
if not df.timestamp in sessions:
sessions[df.timestamp] = DummySession(df.type, df.timestamp, fsize)
else:
sessions[df.timestamp].size += fsize
return sessions.values()
class DummyBackupRecord(AttrDict):
# backup_id, address
def __init__(self, backup_id, address, key, profile_id, server_id):
self.backup_id = backup_id
self.address = address
self.key = key
self.profile_id = profile_id
self.server_id = server_id
self.created = datetime.now()
self.updated = None
# in MBs
self.size = 0
self.label = "TurnKey Backup"
# no user interface for this in the dummy hub
self.sessions = []
def update(self):
self.updated = datetime.now()
path = self.address[len("file://"):]
self.sessions = _parse_duplicity_sessions(path)
self.size = sum([ session.size for session in self.sessions ])
class _DummyDB(AttrDict):
class Paths(Paths):
files = ['users', 'profiles']
@staticmethod
def _save(path, obj):
pickle.dump(obj, file(path, "w"))
@staticmethod
def _load(path, default=None):
if not exists(path):
return default
try:
return pickle.load(file(path))
except:
return default
def save(self):
self._save(self.path.users, self.users)
def load(self):
self.users = self._load(self.path.users, {})
def __init__(self, path):
if not exists(path):
os.makedirs(path)
self.path = self.Paths(path)
self.load()
def get_user(self, uid):
if uid not in self.users:
return None
return self.users[uid]
def add_user(self):
if self.users:
uid = max(self.users.keys()) + 1
else:
uid = 1
apikey = APIKey.generate(uid)
user = DummyUser(uid, apikey)
self.users[uid] = user
return user
def get_profile(self, profile_id):
matches = glob.glob("%s/%s.tar.*" % (self.path.profiles, profile_id))
if not matches:
return None
return matches[0]
try:
dummydb
except NameError:
dummydb = _DummyDB("/var/tmp/tklbam/dummyhub")
class DummyProfileArchive(ProfileArchive):
def __del__(self):
pass
class Backups:
# For simplicity's sake this implements a dummy version of both
# client-side and server-side operations.
#
# When translating to a real implementation the interface should remain
# but the implementation will change completely as only client-side
# operations remain.
Error = Error
class NotInitialized(Error):
pass
SUBKEY_NS = "tklbam"
@classmethod
def get_sub_apikey(cls, apikey):
"""Check that APIKey is valid and return subkey"""
apikey = APIKey(apikey)
user = dummydb.get_user(apikey.uid)
if not user or user.apikey != apikey:
raise Error("invalid APIKey: %s" % apikey)
return apikey.subkey(cls.SUBKEY_NS)
def __init__(self, subkey):
if subkey is None:
raise self.NotInitialized("no APIKEY - tklbam not linked to the Hub")
subkey = APIKey(subkey)
# the non-dummy implementation should only check the subkey when an
# action is performed. (I.e., NOT on initialization). In a REST API
# the subkey should probably be passed as an authentication header.
user = dummydb.get_user(subkey.uid)
if not user or subkey != user.apikey.subkey(self.SUBKEY_NS):
raise Error("invalid authentication subkey: %s" % subkey)
self.user = user
def get_credentials(self):
if not self.user.credentials:
raise NotSubscribed()
return self.user.credentials
def update_key(self, backup_id, key):
self.get_backup_record(backup_id).key = key
dummydb.save()
def get_new_profile(self, profile_id, profile_timestamp):
"""
Gets a profile for <profile_id> that is newer than <profile_timestamp>.
If there's a new profile, returns a DummyProfileArchive instance.
Otherwise returns None.
Raises an exception if no profile exists for profile_id.
"""
if not self.user.credentials:
raise NotSubscribed()
archive = dummydb.get_profile(profile_id)
if not archive:
raise Error(404, 'BackupArchive.NotFound', 'Backup profile archive not found: ' + profile_id)
archive_timestamp = int(os.stat(archive).st_mtime)
if profile_timestamp and profile_timestamp >= archive_timestamp:
return None
return DummyProfileArchive(profile_id, archive, archive_timestamp)
def new_backup_record(self, key, profile_id, server_id=None):
# in the real implementation the hub would create a bucket not a dir...
# the real implementation would have to make sure this is unique
path = "/var/tmp/duplicity/" + base64.b32encode(os.urandom(10))
os.makedirs(path)
address = "file://" + path
backup_record = self.user.new_backup(address, key,
profile_id, server_id)
dummydb.save()
return backup_record
def get_backup_record(self, backup_id):
if backup_id not in self.user.backups:
raise InvalidBackupError("no such backup (%s)" % backup_id)
return self.user.backups[backup_id]
def list_backups(self):
backups = self.user.backups.values()
return sorted(self.user.backups.values(),
lambda a,b: cmp(int(a.backup_id), int(b.backup_id)))
def updated_backup(self, address):
# In the real implementation this should add a task which queries S3
# with the user's credentials and updates the Hub database (e.g., size,
# data on backup sessions, etc.)
for backup in self.user.backups.values():
if address == backup.address:
backup.update()
dummydb.save()
return
def set_backup_inprogress(self, backup_id, bool):
pass