1
0
mirror of https://github.com/ACINQ/eclair.git synced 2024-11-20 10:39:19 +01:00
Commit Graph

538 Commits

Author SHA1 Message Date
Fabrice Drouin
5ff8828d07
Check configuration for obsolete keys in startup (#1175)
* Check configuration for obsolete keys on startup

We now check the loaded configuration for obsolete keys (that have been moved to a new section) and throw an error if any are found, which will prevent eclair from starting.
2019-10-15 16:37:19 +02:00
Pierre-Marie Padiou
bdb093a7a8
Update assisted channels (#1172)
When sending a payment, if a node on the route answers with an
`UPDATE`-type error, we update our routing table with the new
`channel_update` that is attached to the error message.

But additional routing info (provided by receiver in payment requests)
take precedence over whatever data is in the routing table. If one of
the nodes contained in the routing info replies with a newer
`channel_update`, we will indeed update our routing table, before
retrying, but then we will override it by the (untouched) assisted routes.

We know also update the assisted routes.
2019-10-14 18:09:03 +02:00
Fabrice Drouin
064f780680
Sqlite: use TEXT type for strings (#1159)
* SqliteNetworkDb: add failing test

If a txid starts with 0, it will be stored as NUMERIC, leading 0s will be stripped, and we won't be able to read it back as a ByteVector32

* Sqlite: use TEXT type for strings

* Check that creating a table that already exists with different column types is a NOOP
2019-10-14 11:31:20 +02:00
Fabrice Drouin
a6b33cb5b7
Use guava to compute CRC32C checksums (#1166)
CRC32C is not available in JDK 7 which we target on Android.
2019-10-07 18:25:10 +02:00
Fabrice Drouin
4300e7b651
Activate extended channel range queries (#1165)
* Activate extended channel range queries

By default we now set the `gossip_queries_ex` feature bit.
We also change how we compare feature bits, and will use channel queries (or extended queries) only if the corresponding feature bit is set in both local and remote init messages.
2019-10-07 17:08:22 +02:00
Pierre-Marie Padiou
80a27cc566
Update netty dependency to 4.1.32 (#1160)
Also:
* explicitely set endpoint identification algorithm in strict mode
* force TLS protocols 1.2/1.3 in strict mode

Co-Authored-By: Bastien Teinturier <31281497+t-bast@users.noreply.github.com>
2019-10-03 15:01:10 +02:00
Fabrice Drouin
c968d063f6
Upgrade new unit tests to bitcoin 0.18.1 API (#1157)
We had 2 open PRs, one that added new tests using the 0.API, one that switched to 0.18.1, when they were merged the new tests failed since they had not been upgraded....
2019-10-03 10:42:54 +02:00
araspitzu
37cc5262b0
Use bitcoin 0.18.1 in the test (#1148)
* Use bitcoin 0.18.1 during test
2019-10-03 09:23:31 +02:00
Fabrice Drouin
320af437d7
Extend funding key path to 256 bits (#1154)
Our random funding key path is now 8 * 32 bits plus a 1' (funder) or 0' (fundee).
Channel key paths are computed from the sha256 of the funding public key (we take all 256 bits).
2019-10-02 16:43:58 +02:00
Fabrice Drouin
332216b6ec
Electrum: improve coin selection (fixes #1146) (#1149)
* Electrum wallet: improve coin selection (fixes #1146)

Our previous coin selection would sometimes fail when there was one wallet utxo and and low 
 feerate, because our first pass used a fee estimate that was too high and could sometimes not be met.
2019-10-02 11:20:00 +02:00
Bastien Teinturier
24d11884fa
Commitments: take HTLC fee into account (#1152)
Our balance computation was slightly incorrect. If you want to know how much you can send (or receive), you need to take into account the fact that you'll add a new HTLC which adds weight to the commit tx (and thus adds fees).
2019-09-30 16:43:07 +02:00
Fabrice Drouin
e11e3e0f55
Fix and expand channel keypath (#1147)
* Fix funding pubkey to channel key path computation

Channel key path is generated from 8 bytes computed from our funding pubkey, but we extracted 4 uint32 values instead of 2 (last 2 were always 0). We now use 128 bits to derive channel key paths.

* Add a channel key path compatibility test

This test will fail if we change the way we compute channel key paths, which would break existing channels.
2019-09-25 14:29:48 +02:00
Anton Kumaigorodski
88880c3077 Check if remote funder can handle an updated commit fee when sending HTLC (#1084)
If the sender of an htlc isn't the funder, then both sides will have to afford the payment:
- the sender needs to be able to afford the htlc amount
- the funder needs to be able to afford the greater commit tx fee incurred by the additional htlc output.

Fixes #1081.

Co-Authored-By: Pierre-Marie Padiou <pm47@users.noreply.github.com>
2019-09-23 18:21:55 +02:00
Fabrice Drouin
ea773425c2
Derive channel keys from the channel funding pubkey (#1097)
* Derive channel keys from funding pubkey

We now generate a random funding key for each new channel, and use its public key to deterministically derive all channel keys and secrets. This will let us easily recover funds using DLP even if we've lost everything but our seed: we just need to connect to the node we had a channel with, ask them to publish their commit tx, and once we see it on the blockchain we can extract our funding pubkey, recompute channel keys and spend our output.

* Add rationale for new channel derivation scheme

* Add a "funding pubkey path" option to the channel version field

This option is checked when we need to compute channel keys. For old channels it won't be set, and we always set it for new ones.

* ChannelVersion: make sure that all bits are set to 0 for legacy channels

* ChannelVersion: USE_PUBKEY_KEYPATH is set by default

* Move recovery test out of OfflineStateSpec
2019-09-23 11:44:58 +02:00
araspitzu
abf3907d4d
Handle fees increases when channel is OFFLINE (#1080)
* Handle feerate changes when OFFLINE, SYNCING

* Add 'close-on-offline-feerate-mismatch' configuration to avoid closing offline channel when the feerate mismatch if over the threshold.
2019-09-20 17:48:02 +02:00
araspitzu
b5461b80c8
Improve error handling when we couldn't find all the channels for a supplied route in /sendtoroute API (#1142)
* Improve error handling when we couldn't find all the channels for a supplied route in /sendtoroute
2019-09-20 16:09:52 +02:00
Bastien Teinturier
401c996a69
Payment lifecycle refactoring (#1130)
* Unify payment events (no more duplication between payment types and events)
* Factorize DB and eventStream interactions: this paves the way for sub-payments that shouldn't be stored in the DB nor emit events.
* Add more fields to the payments DB:
  * bolt 11 invoice for sent payment
  * external id (for app developers)
  * parent id (AMP)
  * target node id
  * fees
  * route (if success)
  * failures (if failed)
* Re-work the PaymentsDb interface
* Clarify use of seconds / milliseconds in DB interfaces -> milliseconds everywhere
* Run SQL migrations inside transactions
2019-09-20 14:29:36 +02:00
araspitzu
e0461ae096
Update string to match on bitcoind while it's indexing (#1138)
* Update string to match on bitcoind while it's indexing, doubleSpent() call

* Check for bitcoind's getrawtransaction availablilty during startup
2019-09-18 15:29:20 +02:00
Bastien Teinturier
bac0829068
Sphinx: accept invalid downstream errors (#1137)
When a downstream node sends us an onion error with an invalid length, we must forward the failure.
The recipient won't be able to extract the error but at least it knows the payment failed.
2019-09-18 09:38:59 +02:00
Pierre-Marie Padiou
8da509b5cd
Make tests run in parallel (#1112)
There are two level of parallelization:
- between test suites (a suite = a test file)
- within a suite (depends on tests suites, some rely on sequential execution of tests, some don't)
2019-09-11 13:40:46 +02:00
Pierre-Marie Padiou
2fbf46a344
Removed Globals class (#1127)
This is a prerequisite to parallelization of tests.
2019-09-11 10:55:43 +02:00
Pierre-Marie Padiou
26e4432c51
Don't hardcode the channel version (#1129)
Instead of hardcoding the channel version when we instantiate the
`Commitments` object, we rather define it when the channel is
instantiated. This is saner and prepares future usage.
2019-09-06 17:15:51 +02:00
Pierre-Marie Padiou
0e704549d7
Check funds in millisatoshi when sending/receiving an HTLC (#1128)
Instead of satoshi, which could introduce rounding errors.

Also, we check first the balance before the max-inflight amount, because
it makes more sense in terms of error management.

Co-Authored-By: Bastien Teinturier <31281497+t-bast@users.noreply.github.com>
2019-09-06 16:38:37 +02:00
Pierre-Marie Padiou
ff0b4c81e6
Add monitoring with Kamon (disabled by default) (#1126)
For now:
- we only track some tasks (especially in the router, but not even
`node_announcement` and `channel_update`
- all db calls are monitored
- kamon is disabled by default
2019-09-06 14:37:26 +02:00
Bastien Teinturier
7a50610e48
Router computes network stats (#1116)
* Add comments and fix warnings in graph processing
* Add small feature to set the htlcMaximumMsat for routing hints (otherwise the graph processing algorithm used a minimum value which slightly reduced the benefits of those routing hints)
* Add the computation of network statistics to the router: this will be useful for multi-part payments to decide what thresholds should be used to split a payment
2019-09-06 09:39:23 +00:00
Bastien Teinturier
0bc77f23c5
Activate support for variable-length onion (#1087)
This is now enabled by default.
We forward variable-length onions if we receive some.
We accept variable-length payments.
However for maximum compatibility with the network, we send payments using legacy payloads.
2019-09-05 15:41:45 +00:00
Pierre-Marie Padiou
4bea8551f0
Made sync params configurable (#1124)
This allows us to choose smaller parameters for tests and reduce cpu
requirement during testing.

NB: The default value of 3500 for `reply_channel_range` was wrong. Theoretical max is ~2700.
2019-09-05 12:46:28 +02:00
Bastien Teinturier
e73e672fbf
Reject expired invoices before payment flow starts (#1117) 2019-09-04 12:22:21 +00:00
Bastien Teinturier
c28be0fc23
Implement Bolt 11 invoice feature bits (#1121)
lightningnetwork/lightning-rfc#656 introduced invoice feature bits as a pre-requisite for AMP and other advanced payment use-cases.
2019-09-04 11:38:00 +00:00
araspitzu
5607b81572
Use Long to back the UInt64 type (#1109)
* Use Long to back the UInt64 type

* Define comparison operators between UInt64 and MilliSatoshi
2019-09-04 11:57:11 +02:00
Bastien Teinturier
abe7470401
Fix build (#1115)
A new file was added that used the removed failure code.
Since this was a new file, Github didn't
detect a merge conflicts.
2019-09-02 08:53:36 +00:00
Bastien Teinturier
2ec9e47d1c
Bolt4: remove final_expiry_too_soon error message (#1106)
It allowed probing attacks and the spec deprecated it in favor of IncorrectOrUnknownPaymentDetails.
Also add better support for unknown failure messages.
2019-09-02 08:06:44 +00:00
Pierre-Marie Padiou
9507ba99fa
Fix regression in Commitments.availableForSend (#1107)
We must consider `nextRemoteCommit` when applicable.

This is a regression caused in #784. The core bug only exists when we
have a pending unacked `commit_sig`, but since we only send the
`AvailableBalanceChanged` event when sending a signature (not when
receiving a revocation), actors relying on this event to know the
current available balance (e.g. the `Relayer`) will have a wrong
value in-between two outgoing sigs.
2019-08-30 18:44:26 +02:00
araspitzu
74af0304bd
Move http APIs to subproject eclair-node (#1102)
* Move Service and FormParamExtractor to eclair-node

* Move dependency akka-http-json4s into eclair-node

* Move json serializers to eclair-node
2019-08-30 09:44:24 +02:00
Pierre-Marie Padiou
d67ba48fc0
Add a sync whitelist (#954)
We will only sync with whilelisted peer. If the whitelist is empty then
we sync with everyone.
2019-08-29 12:50:37 +02:00
araspitzu
8d1354a21d
Use unsigned comparison for 'maxHtlcValueInFlightMsat' (#1105)
* Use unsigned comparison for HtlcValueTooHighInFlight
2019-08-29 11:58:10 +02:00
Bastien Teinturier
46e4873562
Add more numeric utilities to MilliSatoshi (#1103)
Add comparisons and postfix operators.
Update most of the codebase to leverage those.
2019-08-29 07:19:01 +00:00
Pierre-Marie Padiou
8f7a415f5a
Rework router data structures (#902)
Instead of using two separate maps (for channels and channel_updates), we now use a single map, which groups channel+channel_updates. This is also true for data storage, resulting in the removal of the channel_updates table.
2019-08-28 16:58:49 +02:00
Pierre-Marie Padiou
2f42538660
Extended queries optional (#899)
This is the implementation of https://github.com/lightningnetwork/lightning-rfc/pull/557.

* Correctly handle multiple channel_range_replies

The scheme we use to keep tracks of channel queries with each peer would forget about
missing data when several channel_range_replies are sent back for a single channel_range_queries.

* RoutingSync: remove peer entry properly

* Remove peer entry on our sync map only when we've received
a `reply_short_channel_ids_end` message.
* Make routing sync test more explicit

* Routing Sync: rename Sync.count to Sync.totalMissingCount

* Do not send channel queries if we don't want to sync

* Router: clean our sync state when we (re)connect to a peer

We must clean up leftovers for the previous session and start the sync process again.

* Router: reset sync state on reconnection

When we're reconnected to a peer we will start a new sync process and should reset our sync
state with that peer.

* Extended Queries: use TLV format for optional data

Optional query extensions now use TLV instead of a custom format.
Flags are encoded as varint instead of bytes as originally proposed. With the current proposal they will all fit on a single byte, but will be
much easier to extends this way.

* Optional TLVs are represented as a list, not an optional list

TLVs that extend regular LN messages can be represented as a TlvStream and not an Option[TlvStream] since we don't need
to explicitely terminate the stream (either by preprending its length or using a specific terminator) as we do in Onion TLVs.

No TLVs simply means that the TLV stream is empty.

* TLV Stream: Implement a generic "get" method for TLV fields

If a have a TLV stream of type MyTLV which is a subtype of TLV, and MyTLV1 and MYTLV2 are both
subtypes of MyTLV then we can use stream.get[MyTLV1] to get the TLV record of type MYTLV1 (if any)
in our TLV stream.

* Use extended range queries on regtest and testnet

We will use them on mainnet as soon as https://github.com/lightningnetwork/lightning-rfc/pull/557 has been merged.

* Channel range queries: send back node announcements if requested (#1108)

This PR adds support for sending back node announcements when replying to channel range queries:
- when explicitly requested (bit is set in the optional query flag)
- when query flags are not used and a channel announcement is sent (as per the BOLTs)

A new configuration option `request-node-announcements` has been added in the `router` section. If set to true, we
will request node announcements when we receive a channel id (through channel range queries) that we don't know of.
This is a setting that we will probably turn off on mobile devices.

* Extended Channel Queries: add CL interop test
2019-08-28 15:03:55 +02:00
Bastien Teinturier
0b18abfc54
Typed cltv expiry (#1104)
Untyped cltv expiry was confusing: delta and absolute expiries really need to be handled differently.
Even variable names were sometimes misleading.
Now the compiler will help us catch errors early.
2019-08-26 13:15:33 +00:00
Pierre-Marie Padiou
a406d2fcea
Publish transactions during transitions (#1089)
Follow up to #1082.

The goal is to be able to publish transactions only after we have
persisted the state. Otherwise we may run into corner cases like [1]
where a refund tx has been published, but we haven't kept track of it
and generate a different one (with different fees) the next time.

As a side effect, we can now remove the special case that we were
doing when publishing the funding tx, and remove the `store` function.

NB: the new `calling` transition method isn't restricted to publishing
transactions but that is the only use case for now.

[1] https://github.com/ACINQ/eclair-mobile/issues/206
2019-08-26 15:02:56 +02:00
Fabrice Drouin
290ac3dbb2
Route computation: fix fee check (#1101)
* Route computation: fix fee check

Fee check during route computation is:
- fee is below maximum value
- OR fee is below amout * maximum percentage

The second check was buggy and route computation would failed when fees we above maximum value but below maximum percentage of amount being paid.
2019-08-20 15:56:56 +02:00
araspitzu
4929febbd1
Typed amounts (#1088)
* Type all amounts used in eclair

* Add eclair.MilliSatoshi class

* Use bitcoin-lib 0.14

* Add specialized codecs for Satoshi/MilliSatoshi

* Rename 'toSatoshi' to 'truncateToSatoshi' to highlight it's a precision-losing conversion
2019-08-07 17:37:38 +02:00
araspitzu
648415771e
Update list of commands in eclair-cli help (#1091)
* Add missing API endpoints to eclair-cli help
2019-07-29 10:32:05 +02:00
araspitzu
d88d376cf0
Use correct cost comparison when evaluating candidate channels (#1090)
* Use correct cost comparison when evaluating if the amount we're sending is within the range htlcMinimumMsat/htlcMaximumMsat of the candidate channel
2019-07-26 17:15:08 +02:00
araspitzu
131f50adf4
Configurable transaction confirmation target (#1083)
* Use feeEstimator in NodeParams, remove all calls to Globals.feeratePerKw

* Introduce FeeConf object and config block for confirmation targets, remove unused 'smartfeeNBlocks'

* Use a custom confirmation target for commitment transaction

* Use a custom confirmation target for funding transaction

* Use custom confirmation target for mutual close transaction

* Use custom confirmation target for claim transactions

* Add confirmation target block 144

* Use block target = 12 as default for claim transactions
2019-07-25 19:06:18 +02:00
Pierre-Marie Padiou
e62adf2dea
Made using/storing/sending consistent (#1082)
We know can now do `goto(STATE) using DATA storing() sending msg1 msg2`.
2019-07-24 10:03:44 +02:00
Bastien Teinturier
93d9369f90
Variable-length onion payloads (#976)
Add support for variable-length onion payloads at the Sphinx (cryptographic) layer.
This is currently unused as we keep using the legacy format by default (this will be changed in a later commit).
This commit also refactors quite heavily the Sphinx file.
2019-07-23 12:22:29 +02:00
Bastien Teinturier
189b11e9bf
Handle fulfill not acked upstream (#1079)
When we want to fulfill an HTLC but the upstream peer is unresponsive, we must close the channel if we get too close to the HTLC timeout on their side.
Otherwise we risk an on-chain race condition between our HTLC success transaction and their HTLC timeout transaction, which could result in a loss of funds.
2019-07-23 11:11:40 +02:00
Pierre-Marie Padiou
00df431472
Replace traits by bitfield for ChannelVersion (#1073)
We now store the channel version on a 8B bitfield prefixed by `0x01`
2019-07-15 13:11:20 +02:00