2017-08-28 18:02:01 +02:00
|
|
|
/* This is the full channel routines, with HTLC support. */
|
2018-03-22 11:36:25 +01:00
|
|
|
#ifndef LIGHTNING_CHANNELD_FULL_CHANNEL_H
|
|
|
|
#define LIGHTNING_CHANNELD_FULL_CHANNEL_H
|
2017-02-21 05:45:28 +01:00
|
|
|
#include "config.h"
|
2017-08-29 06:12:04 +02:00
|
|
|
#include <channeld/channeld_htlc.h>
|
2018-02-19 02:06:14 +01:00
|
|
|
#include <channeld/full_channel_error.h>
|
2017-08-28 18:02:01 +02:00
|
|
|
#include <common/initial_channel.h>
|
2017-08-28 18:05:01 +02:00
|
|
|
#include <common/sphinx.h>
|
2017-02-21 05:45:28 +01:00
|
|
|
|
|
|
|
/**
|
2018-02-11 12:02:51 +01:00
|
|
|
* new_full_channel: Given initial fees and funding, what is initial state?
|
2017-02-21 05:45:28 +01:00
|
|
|
* @ctx: tal context to allocate return value from.
|
|
|
|
* @funding_txid: The commitment transaction id.
|
|
|
|
* @funding_txout: The commitment transaction output number.
|
|
|
|
* @funding_satoshis: The commitment transaction amount.
|
2017-06-20 08:01:03 +02:00
|
|
|
* @local_msatoshi: The amount for the local side (remainder goes to remote)
|
2017-06-30 13:42:00 +02:00
|
|
|
* @feerate_per_kw: feerate per kiloweight (satoshis) for the commitment
|
2017-11-21 04:44:35 +01:00
|
|
|
* transaction and HTLCS for each side.
|
2017-02-21 05:45:28 +01:00
|
|
|
* @local: local channel configuration
|
|
|
|
* @remote: remote channel configuration
|
2017-03-07 02:07:06 +01:00
|
|
|
* @local_basepoints: local basepoints.
|
|
|
|
* @remote_basepoints: remote basepoints.
|
2017-03-29 12:58:15 +02:00
|
|
|
* @local_fundingkey: local funding key
|
|
|
|
* @remote_fundingkey: remote funding key
|
2017-02-21 05:45:28 +01:00
|
|
|
* @funder: which side initiated it.
|
|
|
|
*
|
|
|
|
* Returns state, or NULL if malformed.
|
|
|
|
*/
|
2018-02-11 12:02:51 +01:00
|
|
|
struct channel *new_full_channel(const tal_t *ctx,
|
|
|
|
const struct bitcoin_txid *funding_txid,
|
|
|
|
unsigned int funding_txout,
|
|
|
|
u64 funding_satoshis,
|
|
|
|
u64 local_msatoshi,
|
|
|
|
const u32 feerate_per_kw[NUM_SIDES],
|
|
|
|
const struct channel_config *local,
|
|
|
|
const struct channel_config *remote,
|
|
|
|
const struct basepoints *local_basepoints,
|
|
|
|
const struct basepoints *remote_basepoints,
|
|
|
|
const struct pubkey *local_funding_pubkey,
|
|
|
|
const struct pubkey *remote_funding_pubkey,
|
|
|
|
enum side funder);
|
2017-03-29 12:58:15 +02:00
|
|
|
|
2017-02-21 05:45:28 +01:00
|
|
|
/**
|
2017-03-29 12:58:15 +02:00
|
|
|
* channel_txs: Get the current commitment and htlc txs for the channel.
|
2017-02-21 05:45:28 +01:00
|
|
|
* @ctx: tal context to allocate return value from.
|
|
|
|
* @channel: The channel to evaluate
|
2017-08-31 04:04:42 +02:00
|
|
|
* @htlc_map: Pointer to htlcs for each tx output (allocated off @ctx).
|
2017-03-29 12:58:15 +02:00
|
|
|
* @wscripts: Pointer to array of wscript for each tx returned (alloced off @ctx)
|
|
|
|
* @per_commitment_point: Per-commitment point to determine keys
|
2017-06-20 08:10:03 +02:00
|
|
|
* @commitment_number: The index of this commitment.
|
2017-02-21 05:45:28 +01:00
|
|
|
* @side: which side to get the commitment transaction for
|
|
|
|
*
|
|
|
|
* Returns the unsigned commitment transaction for the committed state
|
2017-08-31 04:04:42 +02:00
|
|
|
* for @side, followed by the htlc transactions in output order and
|
|
|
|
* fills in @htlc_map, or NULL on key derivation failure.
|
2017-02-21 05:45:28 +01:00
|
|
|
*/
|
2017-03-29 12:58:15 +02:00
|
|
|
struct bitcoin_tx **channel_txs(const tal_t *ctx,
|
|
|
|
const struct htlc ***htlcmap,
|
|
|
|
const u8 ***wscripts,
|
|
|
|
const struct channel *channel,
|
|
|
|
const struct pubkey *per_commitment_point,
|
2017-06-20 08:10:03 +02:00
|
|
|
u64 commitment_number,
|
2017-03-29 12:58:15 +02:00
|
|
|
enum side side);
|
2017-02-21 05:45:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* actual_feerate: what is the actual feerate for the local side.
|
|
|
|
* @channel: The channel state
|
|
|
|
* @theirsig: The other side's signature
|
|
|
|
*
|
|
|
|
* The fee calculated on a commitment transaction is a worst-case
|
|
|
|
* approximation. It's also possible that the desired feerate is not
|
|
|
|
* met, because the initiator sets it while the other side is adding many
|
|
|
|
* htlcs.
|
|
|
|
*
|
|
|
|
* This is the fee rate we actually care about, if we're going to check
|
|
|
|
* whether it's actually too low.
|
|
|
|
*/
|
2017-11-21 04:33:22 +01:00
|
|
|
u32 actual_feerate(const struct channel *channel,
|
|
|
|
const struct signature *theirsig);
|
2017-02-21 05:45:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* channel_add_htlc: append an HTLC to channel if it can afford it
|
|
|
|
* @channel: The channel
|
|
|
|
* @offerer: the side offering the HTLC (to the other side).
|
|
|
|
* @id: unique HTLC id.
|
|
|
|
* @msatoshi: amount in millisatoshi.
|
2017-03-29 12:55:15 +02:00
|
|
|
* @cltv_expiry: block number when HTLC can no longer be redeemed.
|
2017-02-21 05:45:28 +01:00
|
|
|
* @payment_hash: hash whose preimage can redeem HTLC.
|
|
|
|
* @routing: routing information (copied)
|
2018-01-29 05:46:54 +01:00
|
|
|
* @htlcp: optional pointer for resulting htlc: filled in if and only if CHANNEL_ERR_NONE.
|
2017-02-21 05:45:28 +01:00
|
|
|
*
|
|
|
|
* If this returns CHANNEL_ERR_NONE, the fee htlc was added and
|
|
|
|
* the output amounts adjusted accordingly. Otherwise nothing
|
|
|
|
* is changed.
|
|
|
|
*/
|
|
|
|
enum channel_add_err channel_add_htlc(struct channel *channel,
|
|
|
|
enum side sender,
|
|
|
|
u64 id,
|
|
|
|
u64 msatoshi,
|
2017-03-29 12:55:15 +02:00
|
|
|
u32 cltv_expiry,
|
2017-02-21 05:45:28 +01:00
|
|
|
const struct sha256 *payment_hash,
|
2017-11-28 06:03:09 +01:00
|
|
|
const u8 routing[TOTAL_PACKET_SIZE],
|
|
|
|
struct htlc **htlcp);
|
2017-02-21 05:45:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* channel_get_htlc: find an HTLC
|
|
|
|
* @channel: The channel
|
|
|
|
* @offerer: the side offering the HTLC.
|
|
|
|
* @id: unique HTLC id.
|
|
|
|
*/
|
|
|
|
struct htlc *channel_get_htlc(struct channel *channel, enum side sender, u64 id);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* channel_fail_htlc: remove an HTLC, funds to the side which offered it.
|
|
|
|
* @channel: The channel state
|
2017-04-01 13:01:11 +02:00
|
|
|
* @owner: the side who offered the HTLC (opposite to that failing it)
|
2017-02-21 05:45:28 +01:00
|
|
|
* @id: unique HTLC id.
|
2018-01-29 05:46:54 +01:00
|
|
|
* @htlcp: optional pointer for failed htlc: filled in if and only if CHANNEL_ERR_REMOVE_OK.
|
2017-02-21 05:45:28 +01:00
|
|
|
*
|
|
|
|
* This will remove the htlc and credit the value of the HTLC (back)
|
|
|
|
* to its offerer.
|
|
|
|
*/
|
|
|
|
enum channel_remove_err channel_fail_htlc(struct channel *channel,
|
2017-11-28 06:03:09 +01:00
|
|
|
enum side owner, u64 id,
|
|
|
|
struct htlc **htlcp);
|
2017-02-21 05:45:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* channel_fulfill_htlc: remove an HTLC, funds to side which accepted it.
|
|
|
|
* @channel: The channel state
|
2017-04-01 13:01:11 +02:00
|
|
|
* @owner: the side who offered the HTLC (opposite to that fulfilling it)
|
2017-02-21 05:45:28 +01:00
|
|
|
* @id: unique HTLC id.
|
2018-07-02 06:29:30 +02:00
|
|
|
* @htlcp: optional pointer for resulting htlc: filled in if and only if CHANNEL_ERR_FULFILL_OK.
|
2017-02-21 05:45:28 +01:00
|
|
|
*
|
|
|
|
* If the htlc exists, is not already fulfilled, the preimage is correct and
|
|
|
|
* HTLC committed at the recipient, this will add a pending change to
|
|
|
|
* remove the htlc and give the value of the HTLC to its recipient,
|
|
|
|
* and return CHANNEL_ERR_FULFILL_OK. Otherwise, it will return another error.
|
|
|
|
*/
|
|
|
|
enum channel_remove_err channel_fulfill_htlc(struct channel *channel,
|
2017-04-01 13:01:11 +02:00
|
|
|
enum side owner,
|
2017-02-21 05:45:28 +01:00
|
|
|
u64 id,
|
2018-07-02 06:29:30 +02:00
|
|
|
const struct preimage *preimage,
|
|
|
|
struct htlc **htlcp);
|
2017-02-21 05:45:28 +01:00
|
|
|
|
|
|
|
/**
|
2017-11-21 06:26:59 +01:00
|
|
|
* approx_max_feerate: what's the max funder could raise fee rate to?
|
2017-02-21 05:45:28 +01:00
|
|
|
* @channel: The channel state
|
|
|
|
*
|
2017-11-21 06:26:25 +01:00
|
|
|
* This is not exact! To check if their offer is valid, try
|
|
|
|
* channel_update_feerate.
|
2017-02-21 05:45:28 +01:00
|
|
|
*/
|
2017-11-21 04:33:22 +01:00
|
|
|
u32 approx_max_feerate(const struct channel *channel);
|
2017-02-21 05:45:28 +01:00
|
|
|
|
|
|
|
/**
|
2017-11-21 06:26:25 +01:00
|
|
|
* can_funder_afford_feerate: could the funder pay the fee?
|
2017-02-21 05:45:28 +01:00
|
|
|
* @channel: The channel state
|
2017-11-21 06:26:25 +01:00
|
|
|
* @feerate: The feerate in satoshi per 1000 bytes.
|
2017-02-21 05:45:28 +01:00
|
|
|
*/
|
2017-11-21 06:26:25 +01:00
|
|
|
bool can_funder_afford_feerate(const struct channel *channel, u32 feerate);
|
2017-02-21 05:45:28 +01:00
|
|
|
|
|
|
|
/**
|
2017-11-21 06:26:25 +01:00
|
|
|
* channel_update_feerate: Change fee rate on non-funder side.
|
|
|
|
* @channel: The channel
|
2017-02-21 05:45:28 +01:00
|
|
|
* @feerate_per_kw: fee in satoshi per 1000 bytes.
|
2017-11-21 06:26:25 +01:00
|
|
|
*
|
|
|
|
* Returns true if it's affordable, otherwise does nothing.
|
|
|
|
*/
|
|
|
|
bool channel_update_feerate(struct channel *channel, u32 feerate_per_kw);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* channel_feerate: Get fee rate for this side of channel.
|
|
|
|
* @channel: The channel
|
|
|
|
* @side: the side
|
2017-02-21 05:45:28 +01:00
|
|
|
*/
|
2017-11-21 06:26:25 +01:00
|
|
|
u32 channel_feerate(const struct channel *channel, enum side side);
|
2017-02-21 05:45:28 +01:00
|
|
|
|
|
|
|
/**
|
2017-04-01 12:58:23 +02:00
|
|
|
* channel_sending_commit: commit all remote outstanding changes.
|
2017-02-21 05:45:28 +01:00
|
|
|
* @channel: the channel
|
2017-06-20 07:41:03 +02:00
|
|
|
* @htlcs: initially-empty tal_arr() for htlcs which changed state.
|
2017-02-21 05:45:28 +01:00
|
|
|
*
|
|
|
|
* This is where we commit to pending changes we've added; returns true if
|
2017-04-01 12:58:23 +02:00
|
|
|
* anything changed for the remote side (if not, don't send!) */
|
2017-06-20 07:41:03 +02:00
|
|
|
bool channel_sending_commit(struct channel *channel,
|
|
|
|
const struct htlc ***htlcs);
|
2017-02-21 05:45:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* channel_rcvd_revoke_and_ack: accept ack on remote committed changes.
|
|
|
|
* @channel: the channel
|
2017-06-20 07:41:03 +02:00
|
|
|
* @htlcs: initially-empty tal_arr() for htlcs which changed state.
|
2017-02-21 05:45:28 +01:00
|
|
|
*
|
|
|
|
* This is where we commit to pending changes we've added; returns true if
|
2017-04-01 12:58:23 +02:00
|
|
|
* anything changed for our local commitment (ie. we have pending changes).
|
2017-04-01 12:29:39 +02:00
|
|
|
*/
|
2017-06-20 07:41:03 +02:00
|
|
|
bool channel_rcvd_revoke_and_ack(struct channel *channel,
|
|
|
|
const struct htlc ***htlcs);
|
2017-02-21 05:45:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* channel_rcvd_commit: commit all local outstanding changes.
|
|
|
|
* @channel: the channel
|
2017-06-20 07:41:03 +02:00
|
|
|
* @htlcs: initially-empty tal_arr() for htlcs which changed state.
|
2017-02-21 05:45:28 +01:00
|
|
|
*
|
|
|
|
* This is where we commit to pending changes we've added; returns true if
|
2017-04-01 12:58:23 +02:00
|
|
|
* anything changed for our local commitment (ie. we had pending changes).
|
2017-04-01 12:29:39 +02:00
|
|
|
*/
|
2017-06-20 07:41:03 +02:00
|
|
|
bool channel_rcvd_commit(struct channel *channel,
|
|
|
|
const struct htlc ***htlcs);
|
2017-02-21 05:45:28 +01:00
|
|
|
|
|
|
|
/**
|
2017-04-01 12:58:23 +02:00
|
|
|
* channel_sending_revoke_and_ack: sending ack on local committed changes.
|
2017-02-21 05:45:28 +01:00
|
|
|
* @channel: the channel
|
|
|
|
*
|
2017-04-01 12:58:23 +02:00
|
|
|
* This is where we commit to pending changes we've added. Returns true if
|
|
|
|
* anything changed for the remote commitment (ie. send a new commit).*/
|
|
|
|
bool channel_sending_revoke_and_ack(struct channel *channel);
|
2017-02-21 05:45:28 +01:00
|
|
|
|
2017-07-04 02:47:32 +02:00
|
|
|
/**
|
2018-02-23 06:53:47 +01:00
|
|
|
* num_channel_htlcs: how many (live) HTLCs at all in channel?
|
2017-07-04 02:47:32 +02:00
|
|
|
* @channel: the channel
|
|
|
|
*/
|
2018-02-23 06:53:47 +01:00
|
|
|
size_t num_channel_htlcs(const struct channel *channel);
|
2017-07-04 02:47:32 +02:00
|
|
|
|
2017-06-20 08:05:03 +02:00
|
|
|
/**
|
|
|
|
* channel_force_htlcs: force these htlcs into the (new) channel
|
|
|
|
* @channel: the channel
|
|
|
|
* @htlcs: the htlcs to add (tal_arr)
|
|
|
|
* @hstates: the states for the htlcs (tal_arr of same size)
|
|
|
|
* @fulfilled: htlcs of those which are fulfilled
|
|
|
|
* @fulfilled_sides: sides for ids in @fulfilled
|
|
|
|
* @failed: htlcs of those which are failed
|
|
|
|
* @failed_sides: sides for ids in @failed
|
|
|
|
*
|
|
|
|
* This is used for restoring a channel state.
|
|
|
|
*/
|
|
|
|
bool channel_force_htlcs(struct channel *channel,
|
|
|
|
const struct added_htlc *htlcs,
|
|
|
|
const enum htlc_state *hstates,
|
|
|
|
const struct fulfilled_htlc *fulfilled,
|
|
|
|
const enum side *fulfilled_sides,
|
2018-02-08 02:24:46 +01:00
|
|
|
const struct failed_htlc **failed,
|
2017-06-20 08:05:03 +02:00
|
|
|
const enum side *failed_sides);
|
|
|
|
|
2017-06-20 07:47:03 +02:00
|
|
|
/**
|
|
|
|
* dump_htlcs: debugging dump of all HTLCs
|
|
|
|
* @channel: the channel
|
|
|
|
* @prefix: the prefix to prepend to each line.
|
|
|
|
*
|
|
|
|
* Uses status_trace() on every HTLC.
|
|
|
|
*/
|
|
|
|
void dump_htlcs(const struct channel *channel, const char *prefix);
|
2018-02-19 02:06:14 +01:00
|
|
|
|
|
|
|
const char *channel_add_err_name(enum channel_add_err e);
|
|
|
|
const char *channel_remove_err_name(enum channel_remove_err e);
|
|
|
|
|
2018-03-22 11:36:25 +01:00
|
|
|
#endif /* LIGHTNING_CHANNELD_FULL_CHANNEL_H */
|