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
use bitcoin::network::constants::Network; use bitcoin::util::psbt;
use bitcoin::Transaction;
use bitcoin_hashes::sha256d;
use client::*;
use error::{Error, Result};
use protos;
use utils;
pub use protos::ButtonRequest_ButtonRequestType as ButtonRequestType;
pub use protos::Features;
pub use protos::InputScriptType;
pub use protos::PinMatrixRequest_PinMatrixRequestType as PinMatrixRequestType;
use protos::TxAck_TransactionType_TxOutputType_OutputScriptType as OutputScriptType;
use protos::TxRequest_RequestType as TxRequestType;
fn ack_input_request(
req: &protos::TxRequest,
psbt: &psbt::PartiallySignedTransaction,
) -> Result<protos::TxAck> {
if !req.has_details() || !req.get_details().has_request_index() {
return Err(Error::MalformedTxRequest(req.clone()));
}
let input_index = req.get_details().get_request_index() as usize;
let input = if req.get_details().has_tx_hash() {
let req_hash: sha256d::Hash = utils::from_rev_bytes(req.get_details().get_tx_hash())
.ok_or_else(|| Error::MalformedTxRequest(req.clone()))?;
trace!("Preparing ack for input {}:{}", req_hash, input_index);
let inp = utils::psbt_find_input(psbt, req_hash)?;
let tx = inp.non_witness_utxo.as_ref().ok_or(Error::PsbtMissingInputTx(req_hash))?;
let opt = &tx.input.get(input_index);
opt.ok_or_else(|| Error::TxRequestInvalidIndex(input_index))?
} else {
trace!("Preparing ack for tx input #{}", input_index);
let opt = &psbt.global.unsigned_tx.input.get(input_index);
opt.ok_or(Error::TxRequestInvalidIndex(input_index))?
};
let mut data_input = protos::TxAck_TransactionType_TxInputType::new();
data_input.set_prev_hash(utils::to_rev_bytes(&input.previous_output.txid).to_vec());
data_input.set_prev_index(input.previous_output.vout);
data_input.set_script_sig(input.script_sig.to_bytes());
data_input.set_sequence(input.sequence);
if !req.get_details().has_tx_hash() {
let psbt_input = psbt
.inputs
.get(input_index)
.ok_or_else(|| Error::InvalidPsbt("not enough psbt inputs".to_owned()))?;
let txout = if let Some(ref txout) = psbt_input.witness_utxo {
txout
} else if let Some(ref tx) = psbt_input.non_witness_utxo {
tx.output.get(input.previous_output.vout as usize).ok_or_else(|| {
Error::InvalidPsbt(format!("invalid utxo for PSBT input {}", input_index))
})?
} else {
return Err(Error::InvalidPsbt(format!("no utxo for PSBT input {}", input_index)));
};
if psbt_input.hd_keypaths.len() == 1 {
data_input.set_address_n(
(psbt_input.hd_keypaths.iter().next().unwrap().1)
.1
.as_ref()
.iter()
.map(|i| (*i).into())
.collect(),
);
}
let script_type = {
let script_pubkey = &txout.script_pubkey;
if script_pubkey.is_p2pkh() {
InputScriptType::SPENDADDRESS
} else if script_pubkey.is_v0_p2wpkh() || script_pubkey.is_v0_p2wsh() {
InputScriptType::SPENDWITNESS
} else if script_pubkey.is_p2sh() && psbt_input.witness_script.is_some() {
InputScriptType::SPENDP2SHWITNESS
} else {
InputScriptType::EXTERNAL
}
};
data_input.set_script_type(script_type);
data_input.set_amount(txout.value);
}
trace!("Prepared input to ack: {:?}", data_input);
let mut txdata = protos::TxAck_TransactionType::new();
txdata.mut_inputs().push(data_input);
let mut msg = protos::TxAck::new();
msg.set_tx(txdata);
Ok(msg)
}
fn ack_output_request(
req: &protos::TxRequest,
psbt: &psbt::PartiallySignedTransaction,
network: Network,
) -> Result<protos::TxAck> {
if !req.has_details() || !req.get_details().has_request_index() {
return Err(Error::MalformedTxRequest(req.clone()));
}
let mut txdata = protos::TxAck_TransactionType::new();
if req.get_details().has_tx_hash() {
let output_index = req.get_details().get_request_index() as usize;
let req_hash: sha256d::Hash = utils::from_rev_bytes(req.get_details().get_tx_hash())
.ok_or_else(|| Error::MalformedTxRequest(req.clone()))?;
trace!("Preparing ack for output {}:{}", req_hash, output_index);
let inp = utils::psbt_find_input(psbt, req_hash)?;
let output = if let Some(ref tx) = inp.non_witness_utxo {
let opt = &tx.output.get(output_index);
opt.ok_or_else(|| Error::TxRequestInvalidIndex(output_index))?
} else if let Some(ref utxo) = inp.witness_utxo {
utxo
} else {
return Err(Error::InvalidPsbt("not all inputs have utxo data".to_owned()));
};
let mut bin_output = protos::TxAck_TransactionType_TxOutputBinType::new();
bin_output.set_amount(output.value);
bin_output.set_script_pubkey(output.script_pubkey.to_bytes());
trace!("Prepared bin_output to ack: {:?}", bin_output);
txdata.mut_bin_outputs().push(bin_output);
} else {
let output_index = req.get_details().get_request_index() as usize;
trace!("Preparing ack for tx output #{}", output_index);
let opt = &psbt.global.unsigned_tx.output.get(output_index);
let output = opt.ok_or(Error::TxRequestInvalidIndex(output_index))?;
let mut data_output = protos::TxAck_TransactionType_TxOutputType::new();
data_output.set_amount(output.value);
data_output.set_script_type(OutputScriptType::PAYTOADDRESS);
if let Some(addr) = utils::address_from_script(&output.script_pubkey, network) {
data_output.set_address(addr.to_string());
}
let psbt_output = psbt
.outputs
.get(output_index)
.ok_or_else(|| Error::InvalidPsbt("output indices don't match".to_owned()))?;
if psbt_output.hd_keypaths.len() == 1 {
data_output.set_address_n(
(psbt_output.hd_keypaths.iter().next().unwrap().1)
.1
.as_ref()
.iter()
.map(|i| (*i).into())
.collect(),
);
let script_pubkey = &psbt.global.unsigned_tx.output[output_index].script_pubkey;
if script_pubkey.is_op_return() {
data_output.set_script_type(OutputScriptType::PAYTOOPRETURN);
data_output.set_op_return_data(script_pubkey.as_bytes()[1..].to_vec());
} else if psbt_output.witness_script.is_some() {
if psbt_output.redeem_script.is_some() {
data_output.set_script_type(OutputScriptType::PAYTOP2SHWITNESS);
} else {
data_output.set_script_type(OutputScriptType::PAYTOWITNESS);
}
} else {
data_output.set_script_type(OutputScriptType::PAYTOADDRESS);
}
}
trace!("Prepared output to ack: {:?}", data_output);
txdata.mut_outputs().push(data_output);
};
let mut msg = protos::TxAck::new();
msg.set_tx(txdata);
Ok(msg)
}
fn ack_meta_request(
req: &protos::TxRequest,
psbt: &psbt::PartiallySignedTransaction,
) -> Result<protos::TxAck> {
if !req.has_details() {
return Err(Error::MalformedTxRequest(req.clone()));
}
let tx: &Transaction = if req.get_details().has_tx_hash() {
let req_hash: sha256d::Hash = utils::from_rev_bytes(req.get_details().get_tx_hash())
.ok_or_else(|| Error::MalformedTxRequest(req.clone()))?;
trace!("Preparing ack for tx meta of {}", req_hash);
let inp = utils::psbt_find_input(psbt, req_hash)?;
inp.non_witness_utxo.as_ref().ok_or(Error::PsbtMissingInputTx(req_hash))?
} else {
trace!("Preparing ack for tx meta of tx being signed");
&psbt.global.unsigned_tx
};
let mut txdata = protos::TxAck_TransactionType::new();
txdata.set_version(tx.version);
txdata.set_lock_time(tx.lock_time);
txdata.set_inputs_cnt(tx.input.len() as u32);
txdata.set_outputs_cnt(tx.output.len() as u32);
trace!("Prepared tx meta to ack: {:?}", txdata);
let mut msg = protos::TxAck::new();
msg.set_tx(txdata);
Ok(msg)
}
pub struct SignTxProgress<'a> {
client: &'a mut Trezor,
req: protos::TxRequest,
}
impl<'a> SignTxProgress<'a> {
pub fn new(client: &mut Trezor, req: protos::TxRequest) -> SignTxProgress {
SignTxProgress {
client,
req,
}
}
pub fn tx_request(&self) -> &protos::TxRequest {
&self.req
}
pub fn finished(&self) -> bool {
self.req.get_request_type() == TxRequestType::TXFINISHED
}
pub fn has_signature(&self) -> bool {
let serialized = self.req.get_serialized();
self.req.has_serialized() && serialized.has_signature_index() && serialized.has_signature()
}
pub fn get_signature(&self) -> Option<(usize, &[u8])> {
if self.has_signature() {
let serialized = self.req.get_serialized();
Some((serialized.get_signature_index() as usize, serialized.get_signature()))
} else {
None
}
}
pub fn has_serialized_tx_part(&self) -> bool {
let serialized = self.req.get_serialized();
self.req.has_serialized() && serialized.has_serialized_tx()
}
pub fn get_serialized_tx_part(&self) -> Option<&[u8]> {
if self.has_serialized_tx_part() {
Some(self.req.get_serialized().get_serialized_tx())
} else {
None
}
}
pub fn ack_msg(
self,
ack: protos::TxAck,
) -> Result<TrezorResponse<'a, SignTxProgress<'a>, protos::TxRequest>> {
assert!(!self.finished());
self.client.call(ack, Box::new(|c, m| Ok(SignTxProgress::new(c, m))))
}
pub fn ack_psbt(
self,
psbt: &psbt::PartiallySignedTransaction,
network: Network,
) -> Result<TrezorResponse<'a, SignTxProgress<'a>, protos::TxRequest>> {
assert!(self.req.get_request_type() != TxRequestType::TXFINISHED);
let ack = match self.req.get_request_type() {
TxRequestType::TXINPUT => ack_input_request(&self.req, psbt),
TxRequestType::TXOUTPUT => ack_output_request(&self.req, psbt, network),
TxRequestType::TXMETA => ack_meta_request(&self.req, psbt),
TxRequestType::TXEXTRADATA => unimplemented!(), TxRequestType::TXFINISHED => unreachable!(),
}?;
self.ack_msg(ack)
}
}