farcaster_core 0.6.4

Farcaster project core library, blockchain atomic swaps.
Documentation
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
// Copyright 2021-2022 Farcaster Devs
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA

//! SegWit version 0 implementation for Bitcoin. Inner implementation of [`BitcoinSegwitV0`].

use std::convert::TryFrom;
use std::fmt::{self, Debug};
use std::str::FromStr;

use crate::bitcoin::segwitv0::{
    buy::Buy, cancel::Cancel, funding::Funding, lock::Lock, punish::Punish, refund::Refund,
};
use crate::bitcoin::transaction::TxInRef;
use crate::bitcoin::transaction::{MetadataOutput, Tx};
use crate::bitcoin::{Bitcoin, BitcoinSegwitV0, Btc, Strategy};

use crate::bitcoin::timelock::CSVTimelock;
use crate::blockchain::Transactions;
use crate::consensus::{self, CanonicalBytes};
use crate::crypto::{DeriveKeys, SharedKeyId};
use crate::role::SwapRole;
use crate::script::{DataLock, DataPunishableLock, ScriptPath, SwapRoleKeys};

use bitcoin::blockdata::opcodes;
use bitcoin::blockdata::script::{Builder, Instruction, Script};
use bitcoin::blockdata::transaction::EcdsaSighashType;
use bitcoin::hashes::sha256d::Hash as Sha256dHash;
use bitcoin::secp256k1::{ecdsa::Signature, Message, PublicKey, Secp256k1, SecretKey, Signing};
use bitcoin::util::psbt::PartiallySignedTransaction;
use bitcoin::util::sighash::SighashCache;

use ecdsa_fun::adaptor::EncryptedSignature;

mod buy;
mod cancel;
pub mod funding;
mod lock;
mod punish;
mod refund;

/// Spend the lock output and reveal the first secret.
pub type BuyTx = Tx<Buy>;

/// Cancel the buy transaction and allow refund or punish transaction.
pub type CancelTx = Tx<Cancel>;

/// Funding the swap creating a SegWit v0 output.
pub type FundingTx = Funding;

/// Locking the funding UTXO in a lock and allow buy or cancel transaction.
pub type LockTx = Tx<Lock>;

/// Spending the funds of the cancel transaction, terminating the swap in its non-optimal case.
pub type PunishTx = Tx<Punish>;

/// Spend the cancel output and reveal the second secret.
pub type RefundTx = Tx<Refund>;

/// Inner type for the implementation of SegWit version 0 transactions and ECDSA cryptography.
#[derive(Clone, Debug, Copy, Eq, PartialEq)]
pub struct SegwitV0;

impl Strategy for SegwitV0 {}

impl fmt::Display for Bitcoin<SegwitV0> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "Bitcoin<SegwitV0>")
    }
}

impl FromStr for Bitcoin<SegwitV0> {
    type Err = consensus::Error;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "SegwitV0" | "ECDSA" | "Bitcoin" | "bitcoin" => Ok(Self::new()),
            _ => Err(consensus::Error::UnknownType),
        }
    }
}

impl From<BitcoinSegwitV0> for Btc {
    fn from(v: BitcoinSegwitV0) -> Self {
        Self::SegwitV0(v)
    }
}

pub struct CoopLock {
    a: PublicKey,
    b: PublicKey,
}

impl CoopLock {
    pub fn script(data: DataLock<CSVTimelock, PublicKey>) -> Script {
        let DataLock {
            success: SwapRoleKeys { alice, bob },
            ..
        } = data;
        Builder::new()
            .push_key(&bitcoin::util::key::PublicKey::new(alice))
            .push_opcode(opcodes::all::OP_CHECKSIGVERIFY)
            .push_key(&bitcoin::util::key::PublicKey::new(bob))
            .push_opcode(opcodes::all::OP_CHECKSIG)
            .into_script()
    }

    pub fn v0_p2wsh(data: DataLock<CSVTimelock, PublicKey>) -> Script {
        Self::script(data).to_v0_p2wsh()
    }

    pub fn from_script(s: &Script) -> Result<Self, crate::transaction::Error> {
        use crate::transaction::Error;
        use bitcoin::blockdata::opcodes::all;

        let mut ints = s.instructions();
        // Alice pubkey
        let bytes = ints
            .next() // Option<Result<Inst., Err>>
            .ok_or(Error::MissingPublicKey) // Result<Result, Inst., Err>, FErr>
            .map_or_else(
                // Pass the error through
                Err,
                |v| match v {
                    Ok(Instruction::PushBytes(b)) => Ok(b),
                    // Error in the script
                    Err(e) => Err(Error::new(e)),
                    // Not a push bytes, not a pubkey
                    _ => Err(Error::MissingPublicKey),
                },
            )?;
        let a = PublicKey::from_slice(bytes).map_err(Error::new)?;
        // Checksig verify
        ints.next()
            .ok_or(Error::WrongTemplate("Missing opcode"))
            .map_or_else(Err, |v| match v {
                Ok(Instruction::Op(all::OP_CHECKSIGVERIFY)) => Ok(()),
                Err(e) => Err(Error::new(e)),
                _ => Err(Error::WrongTemplate("Missing CHECKSIGVERIFY opcode")),
            })?;
        // Bob pubkey
        let bytes = ints
            .next()
            .ok_or(Error::MissingPublicKey)
            .map_or_else(Err, |v| match v {
                Ok(Instruction::PushBytes(b)) => Ok(b),
                Err(e) => Err(Error::new(e)),
                _ => Err(Error::MissingPublicKey),
            })?;
        let b = PublicKey::from_slice(bytes).map_err(Error::new)?;
        // Checksig
        ints.next()
            .ok_or(Error::WrongTemplate("Missing opcode"))
            .map_or_else(Err, |v| match v {
                Ok(Instruction::Op(all::OP_CHECKSIG)) => Ok(()),
                Err(e) => Err(Error::new(e)),
                _ => Err(Error::WrongTemplate("Missing CHECKSIG opcode")),
            })?;

        // Script done, return an error if some error or some instruction
        if let Some(v) = ints.next() {
            return match v {
                Ok(_) => Err(Error::WrongTemplate("Too many opcodes")),
                Err(e) => Err(Error::new(e)),
            };
        }

        Ok(Self { a, b })
    }

    pub fn get_pubkey(&self, swap_role: SwapRole) -> &PublicKey {
        match swap_role {
            SwapRole::Alice => &self.a,
            SwapRole::Bob => &self.b,
        }
    }
}

pub struct PunishLock {
    alice: PublicKey,
    bob: PublicKey,
    punish: PublicKey,
}

impl PunishLock {
    pub fn script(data: DataPunishableLock<CSVTimelock, PublicKey>) -> Script {
        let DataPunishableLock {
            timelock,
            success: SwapRoleKeys { alice, bob },
            failure,
        } = data;
        Builder::new()
            .push_opcode(opcodes::all::OP_IF)
            .push_key(&bitcoin::util::key::PublicKey::new(alice))
            .push_opcode(opcodes::all::OP_CHECKSIGVERIFY)
            .push_key(&bitcoin::util::key::PublicKey::new(bob))
            .push_opcode(opcodes::all::OP_CHECKSIG)
            .push_opcode(opcodes::all::OP_ELSE)
            .push_int(timelock.as_u32().into())
            .push_opcode(opcodes::all::OP_CSV)
            .push_opcode(opcodes::all::OP_DROP)
            .push_key(&bitcoin::util::key::PublicKey::new(failure))
            .push_opcode(opcodes::all::OP_CHECKSIG)
            .push_opcode(opcodes::all::OP_ENDIF)
            .into_script()
    }

    pub fn v0_p2wsh(data: DataPunishableLock<CSVTimelock, PublicKey>) -> Script {
        Self::script(data).to_v0_p2wsh()
    }

    pub fn from_script(s: &Script) -> Result<Self, crate::transaction::Error> {
        use crate::transaction::Error;
        use bitcoin::blockdata::opcodes::all;

        let mut ints = s.instructions();
        // If opcode
        ints.next()
            .ok_or(Error::WrongTemplate("Missing opcode"))
            .map_or_else(Err, |v| match v {
                Ok(Instruction::Op(all::OP_IF)) => Ok(()),
                Err(e) => Err(Error::new(e)),
                _ => Err(Error::WrongTemplate("Missing IF opcode")),
            })?;
        // Alice pubkey
        let bytes = ints
            .next() // Option<Result<Inst., Err>>
            .ok_or(Error::MissingPublicKey) // Result<Result, Inst., Err>, FErr>
            .map_or_else(
                // Pass the error through
                Err,
                |v| match v {
                    Ok(Instruction::PushBytes(b)) => Ok(b),
                    // Error in the script
                    Err(e) => Err(Error::new(e)),
                    // Not a push bytes, not a pubkey
                    _ => Err(Error::MissingPublicKey),
                },
            )?;
        let alice = PublicKey::from_slice(bytes).map_err(Error::new)?;
        // Checksig verify
        ints.next()
            .ok_or(Error::WrongTemplate("Missing opcode"))
            .map_or_else(Err, |v| match v {
                Ok(Instruction::Op(all::OP_CHECKSIGVERIFY)) => Ok(()),
                Err(e) => Err(Error::new(e)),
                _ => Err(Error::WrongTemplate("Missing CHECKSIGVERIFY opcode")),
            })?;
        // Bob pubkey
        let bytes = ints
            .next()
            .ok_or(Error::MissingPublicKey)
            .map_or_else(Err, |v| match v {
                Ok(Instruction::PushBytes(b)) => Ok(b),
                Err(e) => Err(Error::new(e)),
                _ => Err(Error::MissingPublicKey),
            })?;
        let bob = PublicKey::from_slice(bytes).map_err(Error::new)?;
        // Checksig
        ints.next()
            .ok_or(Error::WrongTemplate("Missing opcode"))
            .map_or_else(Err, |v| match v {
                Ok(Instruction::Op(all::OP_CHECKSIG)) => Ok(()),
                Err(e) => Err(Error::new(e)),
                _ => Err(Error::WrongTemplate("Missing CHECKSIG opcode")),
            })?;
        // Else opcode
        ints.next()
            .ok_or(Error::WrongTemplate("Missing opcode"))
            .map_or_else(Err, |v| match v {
                Ok(Instruction::Op(all::OP_ELSE)) => Ok(()),
                Err(e) => Err(Error::new(e)),
                _ => Err(Error::WrongTemplate("Missing ELSE opcode")),
            })?;
        // Timelock
        let _ = ints.next().ok_or(Error::WrongTemplate("Missing opcode"))?;
        // CSV opcode
        ints.next()
            .ok_or(Error::WrongTemplate("Missing opcode"))
            .map_or_else(Err, |v| match v {
                Ok(Instruction::Op(all::OP_CSV)) => Ok(()),
                Err(e) => Err(Error::new(e)),
                _ => Err(Error::WrongTemplate("Missing CSV opcode")),
            })?;
        // CSV opcode
        ints.next()
            .ok_or(Error::WrongTemplate("Missing opcode"))
            .map_or_else(Err, |v| match v {
                Ok(Instruction::Op(all::OP_DROP)) => Ok(()),
                Err(e) => Err(Error::new(e)),
                _ => Err(Error::WrongTemplate("Missing DROP opcode")),
            })?;
        // Punish pubkey
        let bytes = ints
            .next()
            .ok_or(Error::MissingPublicKey)
            .map_or_else(Err, |v| match v {
                Ok(Instruction::PushBytes(b)) => Ok(b),
                Err(e) => Err(Error::new(e)),
                _ => Err(Error::MissingPublicKey),
            })?;
        let punish = PublicKey::from_slice(bytes).map_err(Error::new)?;
        // Checksig
        ints.next()
            .ok_or(Error::WrongTemplate("Missing opcode"))
            .map_or_else(Err, |v| match v {
                Ok(Instruction::Op(all::OP_CHECKSIG)) => Ok(()),
                Err(e) => Err(Error::new(e)),
                _ => Err(Error::WrongTemplate("Missing CHECKSIG opcode")),
            })?;
        // Endif opcode
        ints.next()
            .ok_or(Error::WrongTemplate("Missing opcode"))
            .map_or_else(Err, |v| match v {
                Ok(Instruction::Op(all::OP_ENDIF)) => Ok(()),
                Err(e) => Err(Error::new(e)),
                _ => Err(Error::WrongTemplate("Missing ENDIF opcode")),
            })?;

        // Script done, return an error if some error or some instruction
        if let Some(v) = ints.next() {
            return match v {
                Ok(_) => Err(Error::WrongTemplate("Too many opcodes")),
                Err(e) => Err(Error::new(e)),
            };
        }

        Ok(Self { alice, bob, punish })
    }

    pub fn get_pubkey(&self, swap_role: SwapRole, script_path: ScriptPath) -> Option<&PublicKey> {
        match script_path {
            ScriptPath::Success => match swap_role {
                SwapRole::Alice => Some(&self.alice),
                SwapRole::Bob => Some(&self.bob),
            },
            ScriptPath::Failure => match swap_role {
                SwapRole::Alice => Some(&self.punish),
                SwapRole::Bob => None,
            },
        }
    }
}

//impl Arbitrating for Bitcoin<SegwitV0> {}

impl TryFrom<Btc> for Bitcoin<SegwitV0> {
    type Error = consensus::Error;

    fn try_from(v: Btc) -> Result<Self, consensus::Error> {
        match v {
            Btc::SegwitV0(v) => Ok(v),
            _ => Err(consensus::Error::TypeMismatch),
        }
    }
}

impl Transactions for Bitcoin<SegwitV0> {
    type Addr = bitcoin::Address;
    type Amt = bitcoin::Amount;
    type Tx = bitcoin::Transaction;
    type Px = PartiallySignedTransaction;
    type Out = MetadataOutput;
    type Ti = CSVTimelock;
    type Ms = Sha256dHash;
    type Pk = PublicKey;
    type Si = Signature;

    type Funding = Funding;
    type Lock = Tx<Lock>;
    type Buy = Tx<Buy>;
    type Cancel = Tx<Cancel>;
    type Refund = Tx<Refund>;
    type Punish = Tx<Punish>;
}

impl DeriveKeys for Bitcoin<SegwitV0> {
    type PublicKey = PublicKey;
    type PrivateKey = SecretKey;

    fn extra_public_keys() -> Vec<u16> {
        // No extra key
        vec![]
    }

    fn extra_shared_private_keys() -> Vec<SharedKeyId> {
        // No shared key in Bitcoin, transparent ledger
        vec![]
    }
}

impl CanonicalBytes for SecretKey {
    fn as_canonical_bytes(&self) -> Vec<u8> {
        (&self.as_ref()[..]).into()
    }

    fn from_canonical_bytes(bytes: &[u8]) -> Result<Self, consensus::Error>
    where
        Self: Sized,
    {
        SecretKey::from_slice(bytes).map_err(consensus::Error::new)
    }
}

impl CanonicalBytes for Signature {
    fn as_canonical_bytes(&self) -> Vec<u8> {
        self.serialize_compact().into()
    }

    fn from_canonical_bytes(bytes: &[u8]) -> Result<Self, consensus::Error>
    where
        Self: Sized,
    {
        Signature::from_compact(bytes).map_err(consensus::Error::new)
    }
}

impl CanonicalBytes for EncryptedSignature {
    fn as_canonical_bytes(&self) -> Vec<u8> {
        bincode::serialize(&self).expect("serialization should always work")
    }

    fn from_canonical_bytes(bytes: &[u8]) -> Result<Self, consensus::Error>
    where
        Self: Sized,
    {
        bincode::deserialize::<EncryptedSignature>(bytes).map_err(consensus::Error::new)
    }
}

/// Computes the [`BIP-143`][bip-143] compliant sighash for a `SIGHASH_ALL` signature for the given
/// input.
///
/// [bip-143]: https://github.com/bitcoin/bips/blob/master/bip-0143.mediawiki
pub fn signature_hash(
    txin: TxInRef,
    script: &Script,
    value: u64,
    sighash_type: EcdsaSighashType,
) -> Sha256dHash {
    SighashCache::new(txin.transaction)
        .segwit_signature_hash(txin.index, script, value, sighash_type)
        .expect("encoding works")
        .as_hash()
}

/// Computes the [`BIP-143`][bip-143] compliant signature for the given input.
///
/// [bip-143]: https://github.com/bitcoin/bips/blob/master/bip-0143.mediawiki
pub fn sign_input<C>(
    context: &mut Secp256k1<C>,
    txin: TxInRef,
    script: &Script,
    value: u64,
    sighash_type: EcdsaSighashType,
    secret_key: &bitcoin::secp256k1::SecretKey,
) -> Result<Signature, bitcoin::secp256k1::Error>
where
    C: Signing,
{
    // Computes sighash.
    let sighash = signature_hash(txin, script, value, sighash_type);
    // Makes signature.
    let msg = Message::from_slice(&sighash[..])?;
    let mut sig = context.sign_ecdsa(&msg, secret_key);
    sig.normalize_s();
    Ok(sig)
}

/// Computes the [`BIP-143`][bip-143] compliant signature for the given hash.
/// Assumes that the hash is correctly computed.
///
/// [bip-143]: https://github.com/bitcoin/bips/blob/master/bip-0143.mediawiki
pub fn sign_hash(
    sighash: Sha256dHash,
    secret_key: &bitcoin::secp256k1::SecretKey,
) -> Result<Signature, bitcoin::secp256k1::Error> {
    let context = Secp256k1::new();
    // Makes signature.
    let msg = Message::from_slice(&sighash[..])?;
    let mut sig = context.sign_ecdsa(&msg, secret_key);
    sig.normalize_s();
    Ok(sig)
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn from_string() {
        let parse = Bitcoin::<SegwitV0>::from_str("SegwitV0");
        assert!(parse.is_ok());
        let parse = Bitcoin::<SegwitV0>::from_str("ECDSA");
        assert!(parse.is_ok());
        let parse = Bitcoin::<SegwitV0>::from_str("Bitcoin");
        assert!(parse.is_ok());
        let parse = Bitcoin::<SegwitV0>::from_str("bitcoin");
        assert!(parse.is_ok());
    }
}