rust-lightning
5 years agoUpdate to rust-secp256k1 v0.11 and rust-bitcoin v0.14 2018-08-secp-0.10
Matt Corallo [Mon, 20 Aug 2018 21:13:07 +0000 (17:13 -0400)]
Update to rust-secp256k1 v0.11 and rust-bitcoin v0.14

5 years agoClean up excess \ns in route debug, use all debug encoders 2018-08-114-rebase
Matt Corallo [Thu, 23 Aug 2018 18:17:02 +0000 (14:17 -0400)]
Clean up excess \ns in route debug, use all debug encoders

5 years agoReturn channel_updates when failing a HTLC for fee/CLTV reasons
Matt Corallo [Thu, 23 Aug 2018 17:54:34 +0000 (13:54 -0400)]
Return channel_updates when failing a HTLC for fee/CLTV reasons

5 years agoAdd Display trait on network structs for routing bug track
Antoine Riard [Thu, 23 Aug 2018 17:23:00 +0000 (13:23 -0400)]
Add Display trait on network structs for routing bug track

5 years agoCheck amt_to_forward and outgoing_cltv_value in add_update_htlc
Antoine Riard [Thu, 23 Aug 2018 17:22:18 +0000 (13:22 -0400)]
Check amt_to_forward and outgoing_cltv_value in add_update_htlc

5 years agoMerge pull request #111 from TheBlueMatt/2018-08-full-stack-target-upstream-1
Matt Corallo [Mon, 20 Aug 2018 18:43:33 +0000 (14:43 -0400)]
Merge pull request #111 from TheBlueMatt/2018-08-full-stack-target-upstream-1

 Expand full_stack_target somewhat

5 years agoAdd a full_stack_target sample test to avoid unintentional breakage 2018-08-full-stack-target-upstream-1
Matt Corallo [Tue, 14 Aug 2018 13:55:38 +0000 (09:55 -0400)]
Add a full_stack_target sample test to avoid unintentional breakage

5 years agoDisable push_msat in full_stack_target temporarily
Matt Corallo [Fri, 17 Aug 2018 21:36:22 +0000 (17:36 -0400)]
Disable push_msat in full_stack_target temporarily

5 years agoUpgrade AFL to 0.4 with persistent mode fuzzing
Matt Corallo [Thu, 16 Aug 2018 18:20:34 +0000 (14:20 -0400)]
Upgrade AFL to 0.4 with persistent mode fuzzing

5 years agoExpand full_stack_target somewhat
Matt Corallo [Fri, 17 Aug 2018 21:38:43 +0000 (17:38 -0400)]
Expand full_stack_target somewhat

5 years agoAdd simple utility to ChannelManager to force close all channels
Matt Corallo [Tue, 14 Aug 2018 14:43:34 +0000 (10:43 -0400)]
Add simple utility to ChannelManager to force close all channels

5 years agoOnly enforce no-dup-payment_hash precondition on non-removed HTLCs
Matt Corallo [Mon, 20 Aug 2018 14:33:30 +0000 (10:33 -0400)]
Only enforce no-dup-payment_hash precondition on non-removed HTLCs

This fixes a panic found by fuzzer.

5 years agoMerge pull request #122 from TheBlueMatt/2018-08-doc-usability-fixes
Matt Corallo [Mon, 20 Aug 2018 17:57:35 +0000 (13:57 -0400)]
Merge pull request #122 from TheBlueMatt/2018-08-doc-usability-fixes

Simple log usability fix, add some missing docs

5 years agoRemove implicit Record import requirement in logging macros 2018-08-doc-usability-fixes
Matt Corallo [Mon, 20 Aug 2018 16:56:17 +0000 (12:56 -0400)]
Remove implicit Record import requirement in logging macros

5 years agoAdd APIError docs
Matt Corallo [Fri, 17 Aug 2018 18:29:16 +0000 (14:29 -0400)]
Add APIError docs

5 years agoMerge pull request #118 from TheBlueMatt/2018-08-103-rebased
Matt Corallo [Fri, 17 Aug 2018 18:00:50 +0000 (14:00 -0400)]
Merge pull request #118 from TheBlueMatt/2018-08-103-rebased

Rebase of #103

5 years agoMerge pull request #117 from TheBlueMatt/2018-08-no-claim-fuzz-bug
Matt Corallo [Fri, 17 Aug 2018 17:25:57 +0000 (13:25 -0400)]
Merge pull request #117 from TheBlueMatt/2018-08-no-claim-fuzz-bug

Don't HTLC claim with no-possible-preimage in full_stack_target

5 years agoIgnore unknown channel flags as required in BOLT 2 2018-08-103-rebased
Matt Corallo [Fri, 17 Aug 2018 17:22:44 +0000 (13:22 -0400)]
Ignore unknown channel flags as required in BOLT 2

5 years agoadd 1% chnnel reserve while keeping min value
Yuntai Kyong [Fri, 17 Aug 2018 17:12:58 +0000 (13:12 -0400)]
add 1% chnnel reserve while keeping min value

if 1000 is always used it will almost always fail test reserve < dust_limit check

5 years agoAdd checking locally derived reserve and dust limit
Yuntai Kyong [Fri, 17 Aug 2018 03:57:51 +0000 (12:57 +0900)]
Add checking locally derived reserve and dust limit

5 years agodocument optional channel constraints per spec
Yuntai Kyong [Tue, 14 Aug 2018 16:18:10 +0000 (01:18 +0900)]
document optional channel constraints per spec

5 years agoAdd various checking when handling open and accept
Yuntai Kyong [Tue, 14 Aug 2018 16:12:40 +0000 (01:12 +0900)]
Add various checking when handling open and accept

Add `derive_minimum_depth()` and `derive_maximum_minimum_depth()` and hide
CONF_TARGET constant behind these functions.

Replace `DisconnectPeer` error with `HandleError` with `ErrorAction::SendErrorMessage`

5 years agoAdd push_msat to new outbound API
Yuntai Kyong [Tue, 14 Aug 2018 15:59:42 +0000 (00:59 +0900)]
Add push_msat to new outbound API

Also add APIMisuseError to be thrown to the API client

5 years agoAdd APIError enum
Yuntai Kyong [Fri, 17 Aug 2018 03:46:17 +0000 (12:46 +0900)]
Add APIError enum

`APIMisuse` when paramters passed from the client is invalid
`FeeRateTooHigh` when a channel cannot be opened due to high feerate

5 years agoDon't HTLC claim with no-possible-preimage in full_stack_target 2018-08-no-claim-fuzz-bug
Matt Corallo [Fri, 17 Aug 2018 15:53:47 +0000 (11:53 -0400)]
Don't HTLC claim with no-possible-preimage in full_stack_target

5 years agoMerge pull request #116 from TheBlueMatt/2018-08-peer_handler-trace
Matt Corallo [Fri, 17 Aug 2018 03:35:09 +0000 (23:35 -0400)]
Merge pull request #116 from TheBlueMatt/2018-08-peer_handler-trace

Add some trace logging in peer_handler

5 years agoAdd some trace logging in peer_handler 2018-08-peer_handler-trace
Matt Corallo [Fri, 17 Aug 2018 02:38:49 +0000 (22:38 -0400)]
Add some trace logging in peer_handler

5 years agoDefault test logger to Trace to make error debugging easier
Matt Corallo [Fri, 17 Aug 2018 02:30:18 +0000 (22:30 -0400)]
Default test logger to Trace to make error debugging easier

5 years agoAdd some useful delayed-formatting formatters to macro_logger
Matt Corallo [Fri, 17 Aug 2018 02:30:03 +0000 (22:30 -0400)]
Add some useful delayed-formatting formatters to macro_logger

5 years agoRemove some dead Logger code
Matt Corallo [Fri, 17 Aug 2018 01:25:56 +0000 (21:25 -0400)]
Remove some dead Logger code

5 years agoMerge pull request #115 from TheBlueMatt/2018-08-channel-fuzz-fixes
Matt Corallo [Fri, 17 Aug 2018 03:04:12 +0000 (23:04 -0400)]
Merge pull request #115 from TheBlueMatt/2018-08-channel-fuzz-fixes

Fixes from channelmanager fuzzing work

5 years agoFix PaymentReceived/sha256 handling in full_stack_target 2018-08-channel-fuzz-fixes
Matt Corallo [Thu, 16 Aug 2018 14:31:10 +0000 (10:31 -0400)]
Fix PaymentReceived/sha256 handling in full_stack_target

Sha256 in fuzztarget was updated some time ago to use XOR instead
of the first byte of a real SHA256 run and somehow received and
sent payments got crossed in full_stack_target.

5 years agoHandle duplicate funding transaction gracefully.
Matt Corallo [Wed, 15 Aug 2018 19:43:29 +0000 (15:43 -0400)]
Handle duplicate funding transaction gracefully.

This can otherwise cause strange behavior, including a panic on
force_close_all_channels found by full_stack_target fuzzing.

5 years agoFix handle_funding_created bug/TODO
Matt Corallo [Thu, 16 Aug 2018 15:27:16 +0000 (11:27 -0400)]
Fix handle_funding_created bug/TODO

The fuzzer was able to tickle this

5 years agoFix bug in early-HTLC-fulfill handling
Matt Corallo [Tue, 14 Aug 2018 20:29:00 +0000 (16:29 -0400)]
Fix bug in early-HTLC-fulfill handling

Caught by fuzzer. See new comments for more

5 years agoMerge pull request #110 from TheBlueMatt/2018-08-router-crashes-2
Matt Corallo [Fri, 17 Aug 2018 02:07:47 +0000 (22:07 -0400)]
Merge pull request #110 from TheBlueMatt/2018-08-router-crashes-2

Fix several fuzzer-found bugs

5 years ago[Router] Remove channels from nodes when the channel is failed 2018-08-router-crashes-2
Matt Corallo [Thu, 16 Aug 2018 14:17:33 +0000 (10:17 -0400)]
[Router] Remove channels from nodes when the channel is failed

Found by fuzzer

5 years agoHandle only-path-overflows-fee in get_route and avoid PubKey::new()
Matt Corallo [Wed, 15 Aug 2018 21:13:34 +0000 (17:13 -0400)]
Handle only-path-overflows-fee in get_route and avoid PubKey::new()

Found by fuzzer

5 years agoFix fee_base_msat overflowing entire fee range in RouteHint
Matt Corallo [Wed, 15 Aug 2018 19:50:14 +0000 (15:50 -0400)]
Fix fee_base_msat overflowing entire fee range in RouteHint

5 years agoErr from get_route if the requested value is more than 21m BTC
Matt Corallo [Tue, 14 Aug 2018 20:40:40 +0000 (16:40 -0400)]
Err from get_route if the requested value is more than 21m BTC

This fixes a potential overflow panic.

5 years agoCorrect lowest_inbound_proportional_fee deduction in route finding
Matt Corallo [Tue, 14 Aug 2018 19:56:58 +0000 (15:56 -0400)]
Correct lowest_inbound_proportional_fee deduction in route finding

Found cause fuzzer was able to crash us if we don't

5 years agoFix multiply-with-overflow panic in router
Matt Corallo [Tue, 14 Aug 2018 14:34:20 +0000 (10:34 -0400)]
Fix multiply-with-overflow panic in router

Found by fuzzer

5 years agoMerge pull request #91 from ariard/logging_interface
Matt Corallo [Fri, 17 Aug 2018 00:24:49 +0000 (20:24 -0400)]
Merge pull request #91 from ariard/logging_interface

Logging interface

5 years agoLogging interface
Antoine Riard [Wed, 25 Jul 2018 02:34:51 +0000 (02:34 +0000)]
Logging interface

Implement error, warn, info, debug and trace macros, internally calling
an instance of Logger, and passing it to every main structures
Build-time or client-side filtering.
Issue #54

5 years agoMerge pull request #107 from ariard/event_handle_error
Matt Corallo [Thu, 16 Aug 2018 20:26:00 +0000 (16:26 -0400)]
Merge pull request #107 from ariard/event_handle_error

Implement HandleError event with ErrorAction field

5 years agoImplement HandleError event with ErrorAction field
Antoine Riard [Wed, 1 Aug 2018 16:34:03 +0000 (16:34 +0000)]
Implement HandleError event with ErrorAction field

5 years agoMerge pull request #108 from TheBlueMatt/2018-08-fuzz-fixes
Matt Corallo [Mon, 6 Aug 2018 03:04:18 +0000 (23:04 -0400)]
Merge pull request #108 from TheBlueMatt/2018-08-fuzz-fixes

Asorted Fixes from full_stack_target work

5 years agoFix UpdateAddHTLC serialize vec capacity default 2018-08-fuzz-fixes
Matt Corallo [Fri, 3 Aug 2018 02:21:06 +0000 (22:21 -0400)]
Fix UpdateAddHTLC serialize vec capacity default

5 years agoStub out ChaCha20 non-HMAC encryption/decryption in fuzztarget
Matt Corallo [Fri, 3 Aug 2018 00:05:14 +0000 (20:05 -0400)]
Stub out ChaCha20 non-HMAC encryption/decryption in fuzztarget

5 years agoFix fuzztarget insert_combine hash-collision panic
Matt Corallo [Thu, 2 Aug 2018 10:32:11 +0000 (06:32 -0400)]
Fix fuzztarget insert_combine hash-collision panic

5 years agoFix panic on reorg through the funding_locked-generating block
Matt Corallo [Thu, 2 Aug 2018 10:23:53 +0000 (06:23 -0400)]
Fix panic on reorg through the funding_locked-generating block

We had a TODO to handle "lost confirmation" in block_connected,
which we recently did in block_disconnected (calling force_shutdown
in case we get too many blocks disconnected) but didn't handle the
case where we had a simple reorg through the block that resulted in
us generating a funding_locked.

5 years agoFix fuzztarget ChannelKeys generation
Matt Corallo [Wed, 1 Aug 2018 20:37:58 +0000 (16:37 -0400)]
Fix fuzztarget ChannelKeys generation

5 years agoFix types in Channel::funding_tx_confirmed_in
Matt Corallo [Wed, 1 Aug 2018 20:13:04 +0000 (16:13 -0400)]
Fix types in Channel::funding_tx_confirmed_in

This should have no effect in a real system but was causing the
full_stack_target fuzz test to fail due to a block with a null hash
being disconnected.

5 years agoFix panic!() in block_connected on unfunded channels (fixes #42)
Matt Corallo [Wed, 1 Aug 2018 03:48:54 +0000 (23:48 -0400)]
Fix panic!() in block_connected on unfunded channels (fixes #42)

The new full_stack_target fuzzing stuff was able to find this bug,
which gives me a bit of hope for full_stack_target's utility.

5 years agoMerge pull request #100 from TheBlueMatt/2018-07-htlc-balance-calc
Matt Corallo [Tue, 31 Jul 2018 04:59:31 +0000 (00:59 -0400)]
Merge pull request #100 from TheBlueMatt/2018-07-htlc-balance-calc

Fix non-HTLC-inclusion balance calculation (mark II)

5 years agoMerge pull request #102 from savil/hex-version
Matt Corallo [Tue, 31 Jul 2018 01:50:19 +0000 (21:50 -0400)]
Merge pull request #102 from savil/hex-version

change hex version to 0.3, and leave out the minor bumps

5 years agochange hex version to 0.3, and leave out the minor bumps
Savil Srivastava [Tue, 31 Jul 2018 00:01:57 +0000 (17:01 -0700)]
change hex version to 0.3, and leave out the minor bumps

5 years agoFix non-HTLC-inclusion balance calculation (mark II) 2018-07-htlc-balance-calc
Matt Corallo [Mon, 30 Jul 2018 22:05:50 +0000 (18:05 -0400)]
Fix non-HTLC-inclusion balance calculation (mark II)

5 years agoMerge pull request #98 from TheBlueMatt/2018-07-invalid-funding
Matt Corallo [Sun, 29 Jul 2018 18:25:18 +0000 (14:25 -0400)]
Merge pull request #98 from TheBlueMatt/2018-07-invalid-funding

Handle invalid funding tx in channelmanager

5 years agoMerge pull request #97 from TheBlueMatt/2018-07-no-useless-preimages
Matt Corallo [Sun, 29 Jul 2018 18:01:14 +0000 (14:01 -0400)]
Merge pull request #97 from TheBlueMatt/2018-07-no-useless-preimages

Stop adding remote's payment_preimages to our channel monitor

5 years agoMerge pull request #96 from TheBlueMatt/2018-07-force-close-handling
Matt Corallo [Sun, 29 Jul 2018 17:39:17 +0000 (13:39 -0400)]
Merge pull request #96 from TheBlueMatt/2018-07-force-close-handling

Add pending-HTLC-failure to and unify force_shutdown() handling

5 years agoHandle invalid funding tx in channelmanager 2018-07-invalid-funding
Matt Corallo [Sun, 29 Jul 2018 05:59:42 +0000 (01:59 -0400)]
Handle invalid funding tx in channelmanager

5 years agoStop adding remote's payment_preimages to our channel monitor 2018-07-no-useless-preimages
Matt Corallo [Sat, 28 Jul 2018 22:32:58 +0000 (18:32 -0400)]
Stop adding remote's payment_preimages to our channel monitor

5 years agoSome match -> if let replacement
Matt Corallo [Sat, 28 Jul 2018 21:39:33 +0000 (17:39 -0400)]
Some match -> if let replacement

5 years agoAssert usize is 32 or 64 bits, as required in a TODO
Matt Corallo [Sat, 28 Jul 2018 21:39:10 +0000 (17:39 -0400)]
Assert usize is 32 or 64 bits, as required in a TODO

5 years agoRemove some excess mut's 1.22 complains about
Matt Corallo [Sun, 29 Jul 2018 17:29:36 +0000 (13:29 -0400)]
Remove some excess mut's 1.22 complains about

5 years agoAdd pending-HTLC-failure to and unify force_shutdown() handling 2018-07-force-close-handling
Matt Corallo [Sat, 28 Jul 2018 23:15:45 +0000 (19:15 -0400)]
Add pending-HTLC-failure to and unify force_shutdown() handling

This patch got a bit bigger than I'd intended, but primarily this
unifies force_shutdown() handling so all the callsites at least
look similar. It also fails backwards any HTLCs which were
completely pending (ie hadn't been committed to) and ensures we
broadcast our local commitment transaction. It also adds a
force_close_channel method to ChannelManager to expose
force-closure.

5 years agoRemove some useless Vecs
Matt Corallo [Sat, 28 Jul 2018 23:15:20 +0000 (19:15 -0400)]
Remove some useless Vecs

5 years agoClean up forward_/claimable_htlcs handling and document consistency
Matt Corallo [Sat, 28 Jul 2018 22:32:43 +0000 (18:32 -0400)]
Clean up forward_/claimable_htlcs handling and document consistency

5 years agoFix force_shutdown() bug where we lose knowledge of a preimage
Matt Corallo [Thu, 26 Jul 2018 21:53:10 +0000 (17:53 -0400)]
Fix force_shutdown() bug where we lose knowledge of a preimage

In case we are in AwaitingRemoteRevoke and we go to claim an HTLC
(at which point we've already given up the money to the next hop in
the payment) we just write it to holding_cell_htlc_updates.
However, we should be ensuring we *also* write it to our
channel_monitor as we need to make sure we can still claim it after
a force_shutdown() or otherwise after hitting the chain.

5 years agoMerge pull request #95 from savil/rm-bitcoin-util-hexbytes
Matt Corallo [Sat, 28 Jul 2018 20:19:33 +0000 (16:19 -0400)]
Merge pull request #95 from savil/rm-bitcoin-util-hexbytes

replace use of bitcoin::utils::misc::hex_bytes with hex::decode

5 years agouse hex::decode instead of extend_vec_from_hex
Savil Srivastava [Sat, 28 Jul 2018 16:44:15 +0000 (09:44 -0700)]
use hex::decode instead of extend_vec_from_hex

5 years agoreplace use of bitcoin::utils::misc::hex_bytes with hex::decode
Savil Srivastava [Sat, 28 Jul 2018 00:06:14 +0000 (17:06 -0700)]
replace use of bitcoin::utils::misc::hex_bytes with hex::decode

as requested in #84 discussion
https://github.com/rust-bitcoin/rust-lightning/pull/84#discussion_r205508845

5 years agoMerge pull request #94 from TheBlueMatt/2018-07-duplicate_hash
Matt Corallo [Fri, 27 Jul 2018 16:24:14 +0000 (12:24 -0400)]
Merge pull request #94 from TheBlueMatt/2018-07-duplicate_hash

Handle duplicate payment_hash send_payment()s

5 years agoHandle duplicate payment_hash send_payment()s 2018-07-duplicate_hash
Matt Corallo [Thu, 26 Jul 2018 19:44:27 +0000 (15:44 -0400)]
Handle duplicate payment_hash send_payment()s

We don't bother doing anything smart, we just return an Err in
case we have a pending outbound HTLC with the payment_hash provided
for the send.

This doesn't resolve the TODO as users can still send duplicative
payments that have the same payment_hash as was already sent,
though the docs are updated and hopefully users do so on their own.

5 years agoMerge pull request #93 from TheBlueMatt/2018-07-announce-bug
Matt Corallo [Thu, 26 Jul 2018 19:34:39 +0000 (15:34 -0400)]
Merge pull request #93 from TheBlueMatt/2018-07-announce-bug

Properly calculate Channel::announce_publicly

5 years agoRemove excess mut warned on in 1.22 2018-07-announce-bug
Matt Corallo [Thu, 26 Jul 2018 18:58:59 +0000 (14:58 -0400)]
Remove excess mut warned on in 1.22

5 years agoProperly calculate Channel::announce_publicly
Matt Corallo [Thu, 26 Jul 2018 18:33:01 +0000 (14:33 -0400)]
Properly calculate Channel::announce_publicly

For some reason we were only setting "announce_publicly" when
Channel::new_from_req had announce_publicly set to true and the
open_channel message had the relevant flag set. However, this
resulted in us rejecting peers for sending unsolicited
announcement_signatures messages, despite them having indicated,
and us having accepted, their announce-bit-set open_channel.

5 years agoMerge pull request #90 from TheBlueMatt/2018-07-percent-bump
Matt Corallo [Thu, 26 Jul 2018 16:48:28 +0000 (12:48 -0400)]
Merge pull request #90 from TheBlueMatt/2018-07-percent-bump

Bump README percent usable

5 years agoFix some tab-space errors in #84 2018-07-percent-bump
Matt Corallo [Thu, 26 Jul 2018 15:57:02 +0000 (11:57 -0400)]
Fix some tab-space errors in #84

5 years agoACHIEVEMENT UNLOCKED
Matt Corallo [Wed, 25 Jul 2018 03:02:27 +0000 (23:02 -0400)]
ACHIEVEMENT UNLOCKED

5 years agoMerge pull request #84 from savil/sort_outputs
Matt Corallo [Thu, 26 Jul 2018 15:54:17 +0000 (11:54 -0400)]
Merge pull request #84 from savil/sort_outputs

[RFC][Tx Sort] Implement sorting of inputs

5 years agoMerge pull request #92 from savil/editorconfig-fix
Matt Corallo [Thu, 26 Jul 2018 03:46:40 +0000 (23:46 -0400)]
Merge pull request #92 from savil/editorconfig-fix

fix editorconfig so it applies to every file

5 years agoadding BIP69 test-cases
Savil Srivastava [Tue, 24 Jul 2018 20:05:43 +0000 (13:05 -0700)]
adding BIP69 test-cases

5 years agofix editorconfig so it applies to every file
Savil Srivastava [Thu, 26 Jul 2018 01:14:06 +0000 (18:14 -0700)]
fix editorconfig so it applies to every file

5 years agoMerge pull request #89 from TheBlueMatt/2018-07-route-fuzz-fix-1
Matt Corallo [Wed, 25 Jul 2018 22:44:41 +0000 (18:44 -0400)]
Merge pull request #89 from TheBlueMatt/2018-07-route-fuzz-fix-1

Fix fee addition overflow in get_route

5 years agoFix fee addition overflow in get_route 2018-07-route-fuzz-fix-1
Matt Corallo [Wed, 25 Jul 2018 21:45:03 +0000 (17:45 -0400)]
Fix fee addition overflow in get_route

5 years agoMerge pull request #87 from savil/editorconfig
Matt Corallo [Wed, 25 Jul 2018 22:08:38 +0000 (18:08 -0400)]
Merge pull request #87 from savil/editorconfig

add .editorconfig to ensure we use tabs, not spaces

5 years agoMerge pull request #88 from TheBlueMatt/2018-07-new-fuzzing
Matt Corallo [Wed, 25 Jul 2018 21:03:24 +0000 (17:03 -0400)]
Merge pull request #88 from TheBlueMatt/2018-07-new-fuzzing

Add Router Fuzz Target

5 years agoOnly abort channel_target fuzz test on Err if ErrorAction says to 2018-07-new-fuzzing
Matt Corallo [Wed, 25 Jul 2018 16:26:03 +0000 (12:26 -0400)]
Only abort channel_target fuzz test on Err if ErrorAction says to

5 years agoAdd router_target to fuzzing which fuzzes router msgs + get_route
Matt Corallo [Wed, 25 Jul 2018 19:28:25 +0000 (15:28 -0400)]
Add router_target to fuzzing which fuzzes router msgs + get_route

5 years agoCatch fee overflow panic in get_route
Matt Corallo [Wed, 25 Jul 2018 20:24:53 +0000 (16:24 -0400)]
Catch fee overflow panic in get_route

5 years agoUpdate NodeAnnouncement addr deserialization to check addr len.
Matt Corallo [Wed, 25 Jul 2018 19:27:19 +0000 (15:27 -0400)]
Update NodeAnnouncement addr deserialization to check addr len.

This more aggressively checks the message contents are correct
before returning WrongLength so existing fuzz setup has an easier
time.

5 years agoEnsure all msg deserialization can provide extra bytes, rename err
Matt Corallo [Wed, 25 Jul 2018 19:48:44 +0000 (15:48 -0400)]
Ensure all msg deserialization can provide extra bytes, rename err

5 years agoadd .editorconfig to ensure we use tabs, not spaces
Savil Srivastava [Wed, 25 Jul 2018 19:49:58 +0000 (12:49 -0700)]
add .editorconfig to ensure we use tabs, not spaces

5 years agoMerge pull request #86 from TheBlueMatt/2018-07-event-fixes
Matt Corallo [Wed, 25 Jul 2018 02:59:46 +0000 (22:59 -0400)]
Merge pull request #86 from TheBlueMatt/2018-07-event-fixes

Fix one bug on event handling, clean up docs

5 years agoMake claim_funds_INTERNAL private 2018-07-event-fixes
Matt Corallo [Wed, 25 Jul 2018 02:31:52 +0000 (22:31 -0400)]
Make claim_funds_INTERNAL private

5 years agoDo not pass DisconnectPeer events upstream to the client
Matt Corallo [Wed, 25 Jul 2018 02:08:40 +0000 (22:08 -0400)]
Do not pass DisconnectPeer events upstream to the client

5 years agoPendingHTLCsForwardable really should just be upstreamed.
Matt Corallo [Wed, 25 Jul 2018 02:08:18 +0000 (22:08 -0400)]
PendingHTLCsForwardable really should just be upstreamed.

This is just a comment/docs/function rename change

5 years agoMerge pull request #85 from TheBlueMatt/2018-07-fees
Matt Corallo [Wed, 25 Jul 2018 00:59:49 +0000 (20:59 -0400)]
Merge pull request #85 from TheBlueMatt/2018-07-fees

Convert fee API to per_kw instead of per_vb