This repository was archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathbtchipPersoWizard.py
376 lines (332 loc) · 12.1 KB
/
btchipPersoWizard.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
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
"""
*******************************************************************************
* BTChip Bitcoin Hardware Wallet Python API
* (c) 2014 BTChip - 1BTChip7VfTnrPra5jqci7ejnMguuHogTn
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
********************************************************************************
"""
import sys
from PyQt4 import QtCore, QtGui
from PyQt4.QtGui import QDialog, QMessageBox
try:
from mnemonic import Mnemonic
MNEMONIC = True
except Exception:
MNEMONIC = False
from .btchipComm import getDongle, DongleWait
from .btchip import btchip
from .btchipUtils import compress_public_key,format_transaction, get_regular_input_script
from .bitcoinTransaction import bitcoinTransaction
from .btchipException import BTChipException
import ui.personalization00start
import ui.personalization01seed
import ui.personalization02security
import ui.personalization03config
import ui.personalization04finalize
import ui.personalizationseedbackup01
import ui.personalizationseedbackup02
import ui.personalizationseedbackup03
import ui.personalizationseedbackup04
BTCHIP_DEBUG = False
def waitDongle(currentDialog, persoData):
try:
if persoData['client'] != None:
try:
persoData['client'].dongle.close()
except Exception:
pass
dongle = getDongle(BTCHIP_DEBUG)
persoData['client'] = btchip(dongle)
persoData['client'].getFirmwareVersion()['version'].split(".")
return True
except BTChipException as e:
if e.sw == 0x6faa:
QMessageBox.information(currentDialog, "BTChip Setup", "Please unplug the dongle and plug it again", "OK")
return False
if QMessageBox.question(currentDialog, "BTChip setup", "BTChip dongle not found. It might be in the wrong mode. Try unplugging und plugging it back in again, then press 'OK'", QMessageBox.Yes | QMessageBox.No, QMessageBox.Yes) == QMessageBox.Yes:
return False
else:
raise Exception("Aborted by user")
except Exception as e:
if QMessageBox.question(currentDialog, "BTChip setup", "BTChip dongle not found. It might be in the wrong mode. Try unplugging und plugging it back in again, then press 'OK'", QMessageBox.Yes | QMessageBox.No, QMessageBox.Yes) == QMessageBox.Yes:
return False
else:
raise Exception("Aborted by user")
class StartBTChipPersoDialog(QtGui.QDialog):
def __init__(self):
QDialog.__init__(self, None)
self.ui = ui.personalization00start.Ui_Dialog()
self.ui.setupUi(self)
self.ui.NextButton.clicked.connect(self.processNext)
self.ui.CancelButton.clicked.connect(self.processCancel)
def processNext(self):
persoData = {}
persoData['currencyCode'] = 0x00
persoData['currencyCodeP2SH'] = 0x05
persoData['client'] = None
dialog = SeedDialog(persoData, self)
persoData['main'] = self
dialog.exec_()
pass
def processCancel(self):
self.reject()
class SeedDialog(QtGui.QDialog):
def __init__(self, persoData, parent = None):
QDialog.__init__(self, parent)
self.persoData = persoData
self.ui = ui.personalization01seed.Ui_Dialog()
self.ui.setupUi(self)
self.ui.seed.setEnabled(False)
self.ui.RestoreWalletButton.toggled.connect(self.restoreWalletToggled)
self.ui.NextButton.clicked.connect(self.processNext)
self.ui.CancelButton.clicked.connect(self.processCancel)
if MNEMONIC:
self.mnemonic = Mnemonic('english')
self.ui.mnemonicNotAvailableLabel.hide()
def restoreWalletToggled(self, toggled):
self.ui.seed.setEnabled(toggled)
def processNext(self):
self.persoData['seed'] = None
if self.ui.RestoreWalletButton.isChecked():
# Check if it's an hexa string
seedText = str(self.ui.seed.text())
if len(seedText) == 0:
QMessageBox.warning(self, "Error", "Please enter a seed", "OK")
return
if seedText[-1] == 'X':
seedText = seedText[0:-1]
try:
self.persoData['seed'] = seedText.decode('hex')
except Exception:
pass
if self.persoData['seed'] == None:
if not MNEMONIC:
QMessageBox.warning(self, "Error", "Mnemonic API not available. Please install https://github.com/trezor/python-mnemonic", "OK")
return
if not self.mnemonic.check(seedText):
QMessageBox.warning(self, "Error", "Invalid mnemonic", "OK")
return
self.persoData['seed'] = Mnemonic.to_seed(seedText)
else:
if (len(self.persoData['seed']) < 32) or (len(self.persoData['seed']) > 64):
QMessageBox.warning(self, "Error", "Invalid seed length", "OK")
return
dialog = SecurityDialog(self.persoData, self)
self.hide()
dialog.exec_()
def processCancel(self):
self.reject()
self.persoData['main'].reject()
class SecurityDialog(QtGui.QDialog):
def __init__(self, persoData, parent = None):
QDialog.__init__(self, parent)
self.persoData = persoData
self.ui = ui.personalization02security.Ui_Dialog()
self.ui.setupUi(self)
self.ui.NextButton.clicked.connect(self.processNext)
self.ui.CancelButton.clicked.connect(self.processCancel)
def processNext(self):
if (self.ui.pin1.text() != self.ui.pin2.text()):
self.ui.pin1.setText("")
self.ui.pin2.setText("")
QMessageBox.warning(self, "Error", "PINs are not matching", "OK")
return
if (len(self.ui.pin1.text()) < 4):
QMessageBox.warning(self, "Error", "PIN must be at least 4 characteres long", "OK")
return
if (len(self.ui.pin1.text()) > 32):
QMessageBox.warning(self, "Error", "PIN is too long", "OK")
return
self.persoData['pin'] = str(self.ui.pin1.text())
self.persoData['hardened'] = self.ui.HardenedButton.isChecked()
dialog = ConfigDialog(self.persoData, self)
self.hide()
dialog.exec_()
def processCancel(self):
self.reject()
self.persoData['main'].reject()
class ConfigDialog(QtGui.QDialog):
def __init__(self, persoData, parent = None):
QDialog.__init__(self, parent)
self.persoData = persoData
self.ui = ui.personalization03config.Ui_Dialog()
self.ui.setupUi(self)
self.ui.NextButton.clicked.connect(self.processNext)
self.ui.CancelButton.clicked.connect(self.processCancel)
def processNext(self):
if (self.ui.qwertyButton.isChecked()):
self.persoData['keyboard'] = btchip.QWERTY_KEYMAP
elif (self.ui.qwertzButton.isChecked()):
self.persoData['keyboard'] = btchip.QWERTZ_KEYMAP
elif (self.ui.azertyButton.isChecked()):
self.persoData['keyboard'] = btchip.AZERTY_KEYMAP
try:
while not waitDongle(self, self.persoData):
pass
except Exception as e:
self.reject()
self.persoData['main'].reject()
mode = btchip.OPERATION_MODE_WALLET
if not self.persoData['hardened']:
mode = mode | btchip.OPERATION_MODE_SERVER
try:
self.persoData['client'].setup(mode, btchip.FEATURE_RFC6979, self.persoData['currencyCode'],
self.persoData['currencyCodeP2SH'], self.persoData['pin'], None,
self.persoData['keyboard'], self.persoData['seed'])
except BTChipException as e:
if e.sw == 0x6985:
QMessageBox.warning(self, "Error", "Dongle is already set up. Please insert a different one", "OK")
return
except Exception as e:
QMessageBox.warning(self, "Error", "Error performing setup", "OK")
return
if self.persoData['seed'] is None:
dialog = SeedBackupStart(self.persoData, self)
self.hide()
dialog.exec_()
else:
dialog = FinalizeDialog(self.persoData, self)
self.hide()
dialog.exec_()
def processCancel(self):
self.reject()
self.persoData['main'].reject()
class FinalizeDialog(QtGui.QDialog):
def __init__(self, persoData, parent = None):
QDialog.__init__(self, parent)
self.persoData = persoData
self.ui = ui.personalization04finalize.Ui_Dialog()
self.ui.setupUi(self)
self.ui.FinishButton.clicked.connect(self.finish)
try:
while not waitDongle(self, self.persoData):
pass
except Exception as e:
self.reject()
self.persoData['main'].reject()
attempts = self.persoData['client'].getVerifyPinRemainingAttempts()
self.ui.remainingAttemptsLabel.setText("Remaining attempts " + str(attempts))
def finish(self):
if (len(self.ui.pin1.text()) < 4):
QMessageBox.warning(self, "Error", "PIN must be at least 4 characteres long", "OK")
return
if (len(self.ui.pin1.text()) > 32):
QMessageBox.warning(self, "Error", "PIN is too long", "OK")
return
try:
self.persoData['client'].verifyPin(str(self.ui.pin1.text()))
except BTChipException as e:
if ((e.sw == 0x63c0) or (e.sw == 0x6985)):
QMessageBox.warning(self, "Error", "Invalid PIN - dongle has been reset. Please personalize again", "OK")
self.reject()
self.persoData['main'].reject()
if ((e.sw & 0xfff0) == 0x63c0):
attempts = e.sw - 0x63c0
self.ui.remainingAttemptsLabel.setText("Remaining attempts " + str(attempts))
QMessageBox.warning(self, "Error", "Invalid PIN - please unplug the dongle and plug it again before retrying", "OK")
try:
while not waitDongle(self, self.persoData):
pass
except Exception as e:
self.reject()
self.persoData['main'].reject()
return
except Exception as e:
QMessageBox.warning(self, "Error", "Unexpected error verifying PIN - aborting", "OK")
self.reject()
self.persoData['main'].reject()
return
if not self.persoData['hardened']:
try:
self.persoData['client'].setOperationMode(btchip.OPERATION_MODE_SERVER)
except Exception:
QMessageBox.warning(self, "Error", "Error switching to non hardened mode", "OK")
self.reject()
self.persoData['main'].reject()
return
QMessageBox.information(self, "BTChip Setup", "Setup completed. Please unplug the dongle and plug it again before use", "OK")
self.accept()
self.persoData['main'].accept()
class SeedBackupStart(QtGui.QDialog):
def __init__(self, persoData, parent = None):
QDialog.__init__(self, parent)
self.persoData = persoData
self.ui = ui.personalizationseedbackup01.Ui_Dialog()
self.ui.setupUi(self)
self.ui.NextButton.clicked.connect(self.processNext)
def processNext(self):
dialog = SeedBackupUnplug(self.persoData, self)
self.hide()
dialog.exec_()
class SeedBackupUnplug(QtGui.QDialog):
def __init__(self, persoData, parent = None):
QDialog.__init__(self, parent)
self.persoData = persoData
self.ui = ui.personalizationseedbackup02.Ui_Dialog()
self.ui.setupUi(self)
self.ui.NextButton.clicked.connect(self.processNext)
def processNext(self):
dialog = SeedBackupInstructions(self.persoData, self)
self.hide()
dialog.exec_()
class SeedBackupInstructions(QtGui.QDialog):
def __init__(self, persoData, parent = None):
QDialog.__init__(self, parent)
self.persoData = persoData
self.ui = ui.personalizationseedbackup03.Ui_Dialog()
self.ui.setupUi(self)
self.ui.NextButton.clicked.connect(self.processNext)
def processNext(self):
dialog = SeedBackupVerify(self.persoData, self)
self.hide()
dialog.exec_()
class SeedBackupVerify(QtGui.QDialog):
def __init__(self, persoData, parent = None):
QDialog.__init__(self, parent)
self.persoData = persoData
self.ui = ui.personalizationseedbackup04.Ui_Dialog()
self.ui.setupUi(self)
self.ui.seedOkButton.clicked.connect(self.seedOK)
self.ui.seedKoButton.clicked.connect(self.seedKO)
def seedOK(self):
dialog = FinalizeDialog(self.persoData, self)
self.hide()
dialog.exec_()
def seedKO(self):
finished = False
while not finished:
try:
while not waitDongle(self, self.persoData):
pass
except Exception as e:
pass
try:
self.persoData['client'].verifyPin("0")
except BTChipException as e:
if e.sw == 0x63c0:
QMessageBox.information(self, "BTChip Setup", "Dongle is reset and can be repersonalized", "OK")
finished = True
pass
if e.sw == 0x6faa:
QMessageBox.information(self, "BTChip Setup", "Please unplug the dongle and plug it again", "OK")
pass
except Exception as e:
pass
self.reject()
self.persoData['main'].reject()
if __name__ == "__main__":
app = QtGui.QApplication(sys.argv)
dialog = StartBTChipPersoDialog()
dialog.show()
app.exec_()