Browse Source

dualopend, nit: move some lines to be within 80chars

Random tidy of a few lines to be <=80 characters
travis-experimental
niftynei 4 years ago
committed by Rusty Russell
parent
commit
6926711f45
  1. 81
      openingd/dualopend.c

81
openingd/dualopend.c

@ -113,8 +113,8 @@ struct state {
struct channel_config localconf, remoteconf; struct channel_config localconf, remoteconf;
/* The channel structure, as defined in common/initial_channel.h. While /* The channel structure, as defined in common/initial_channel.h. While
* the structure has room for HTLCs, those routines are channeld-specific * the structure has room for HTLCs, those routines are
* as initial channels never have HTLCs. */ * channeld-specific as initial channels never have HTLCs. */
struct channel *channel; struct channel *channel;
struct feature_set *our_features; struct feature_set *our_features;
@ -648,7 +648,8 @@ static u8 *opening_negotiate_msg(const tal_t *ctx, struct state *state,
} }
} }
static bool run_tx_interactive(struct state *state, struct wally_psbt **orig_psbt, static bool run_tx_interactive(struct state *state,
struct wally_psbt **orig_psbt,
enum tx_role our_role) enum tx_role our_role)
{ {
/* Opener always sends the first utxo info */ /* Opener always sends the first utxo info */
@ -683,9 +684,11 @@ static bool run_tx_interactive(struct state *state, struct wally_psbt **orig_psb
if (!fromwire_tx_add_input(tmpctx, msg, &cid, if (!fromwire_tx_add_input(tmpctx, msg, &cid,
&serial_id, &serial_id,
cast_const2(u8 **, &tx_bytes), cast_const2(u8 **,
&tx_bytes),
&outnum, &sequence, &outnum, &sequence,
cast_const2(u8 **, &redeemscript), cast_const2(u8 **,
&redeemscript),
add_tlvs)) add_tlvs))
peer_failed(state->pps, &state->channel_id, peer_failed(state->pps, &state->channel_id,
"Parsing tx_add_input %s", "Parsing tx_add_input %s",
@ -703,7 +706,8 @@ static bool run_tx_interactive(struct state *state, struct wally_psbt **orig_psb
*/ */
if (serial_id % 2 == our_role) if (serial_id % 2 == our_role)
peer_failed(state->pps, &state->channel_id, peer_failed(state->pps, &state->channel_id,
"Invalid serial_id rcvd. %u", serial_id); "Invalid serial_id rcvd. %u",
serial_id);
/* /*
* BOLT-fe0351ca2cea3105c4f2eb18c571afca9d21c85b #2: * BOLT-fe0351ca2cea3105c4f2eb18c571afca9d21c85b #2:
* - MUST fail the transaction collaboration if: * - MUST fail the transaction collaboration if:
@ -731,28 +735,35 @@ static bool run_tx_interactive(struct state *state, struct wally_psbt **orig_psb
* - it receives an input that would create a * - it receives an input that would create a
* malleable transaction id (e.g. pre-Segwit) * malleable transaction id (e.g. pre-Segwit)
*/ */
if (!is_segwit_output(&tx->wtx->outputs[outnum], redeemscript)) if (!is_segwit_output(&tx->wtx->outputs[outnum],
redeemscript))
peer_failed(state->pps, &state->channel_id, peer_failed(state->pps, &state->channel_id,
"Invalid tx sent. Not SegWit %s", "Invalid tx sent. Not SegWit %s",
type_to_string(tmpctx, struct bitcoin_tx, tx)); type_to_string(tmpctx,
struct bitcoin_tx,
tx));
/* /*
* BOLT-fe0351ca2cea3105c4f2eb18c571afca9d21c85b #2: * BOLT-fe0351ca2cea3105c4f2eb18c571afca9d21c85b #2:
* - MUST NOT re-transmit inputs it has already received from the peer * - MUST NOT re-transmit inputs it has already
* received from the peer
* ... * ...
* - MUST fail the transaction collaboration if: * - MUST fail the transaction collaboration if:
* ... * ...
* - it receives a duplicate input to one it sent previously * - it receives a duplicate input to one it
* sent previously
*/ */
bitcoin_txid(tx, &txid); bitcoin_txid(tx, &txid);
if (psbt_has_input(psbt, &txid, outnum)) if (psbt_has_input(psbt, &txid, outnum))
peer_failed(state->pps, &state->channel_id, peer_failed(state->pps, &state->channel_id,
"Unable to add input"); "Unable to add input - "
"already present");
/* /*
* BOLT-fe0351ca2cea3105c4f2eb18c571afca9d21c85b #2: * BOLT-fe0351ca2cea3105c4f2eb18c571afca9d21c85b #2:
* The receiving node: * The receiving node:
* - MUST add all received inputs to the funding transaction * - MUST add all received inputs to the funding
* transaction
*/ */
struct wally_psbt_input *in = struct wally_psbt_input *in =
psbt_append_input(psbt, &txid, outnum, psbt_append_input(psbt, &txid, outnum,
@ -768,13 +779,16 @@ static bool run_tx_interactive(struct state *state, struct wally_psbt **orig_psb
if (is_elements(chainparams)) { if (is_elements(chainparams)) {
struct amount_asset asset; struct amount_asset asset;
bitcoin_tx_output_get_amount_sat(tx, outnum, &amt); bitcoin_tx_output_get_amount_sat(tx, outnum,
&amt);
/* FIXME: persist asset tags */ /* FIXME: persist asset tags */
asset = amount_sat_to_asset(&amt, asset = amount_sat_to_asset(&amt,
chainparams->fee_asset_tag); chainparams->fee_asset_tag);
/* FIXME: persist nonces */ /* FIXME: persist nonces */
psbt_elements_input_set_asset(psbt, outnum, &asset); psbt_elements_input_set_asset(psbt,
outnum,
&asset);
} }
psbt_input_set_serial_id(psbt, in, serial_id); psbt_input_set_serial_id(psbt, in, serial_id);
@ -798,7 +812,8 @@ static bool run_tx_interactive(struct state *state, struct wally_psbt **orig_psb
* input which is not theirs */ * input which is not theirs */
if (serial_id % 2 == our_role) if (serial_id % 2 == our_role)
peer_failed(state->pps, &state->channel_id, peer_failed(state->pps, &state->channel_id,
"Invalid serial_id rcvd. %u", serial_id); "Invalid serial_id rcvd. %u",
serial_id);
input_index = psbt_find_serial_input(psbt, serial_id); input_index = psbt_find_serial_input(psbt, serial_id);
if (input_index == -1) if (input_index == -1)
@ -831,11 +846,13 @@ static bool run_tx_interactive(struct state *state, struct wally_psbt **orig_psb
* incorrect parity */ * incorrect parity */
if (serial_id % 2 == our_role) if (serial_id % 2 == our_role)
peer_failed(state->pps, &state->channel_id, peer_failed(state->pps, &state->channel_id,
"Invalid serial_id rcvd. %u", serial_id); "Invalid serial_id rcvd. %u",
serial_id);
if (psbt_find_serial_output(psbt, serial_id) != -1) if (psbt_find_serial_output(psbt, serial_id) != -1)
peer_failed(state->pps, &state->channel_id, peer_failed(state->pps, &state->channel_id,
"Duplicate serial_id rcvd. %u", serial_id); "Duplicate serial_id rcvd. %u",
serial_id);
amt = amount_sat(value); amt = amount_sat(value);
out = psbt_append_output(psbt, scriptpubkey, amt); out = psbt_append_output(psbt, scriptpubkey, amt);
psbt_output_set_serial_id(psbt, out, serial_id); psbt_output_set_serial_id(psbt, out, serial_id);
@ -857,7 +874,8 @@ static bool run_tx_interactive(struct state *state, struct wally_psbt **orig_psb
* input which is not theirs */ * input which is not theirs */
if (serial_id % 2 == our_role) if (serial_id % 2 == our_role)
peer_failed(state->pps, &state->channel_id, peer_failed(state->pps, &state->channel_id,
"Invalid serial_id rcvd. %u", serial_id); "Invalid serial_id rcvd. %u",
serial_id);
output_index = psbt_find_serial_output(psbt, serial_id); output_index = psbt_find_serial_output(psbt, serial_id);
if (output_index == -1) if (output_index == -1)
@ -1434,8 +1452,10 @@ static u8 *opener_start(struct state *state, u8 *msg)
if (!channel_id_eq(&cid, &state->channel_id)) if (!channel_id_eq(&cid, &state->channel_id))
peer_failed(state->pps, &state->channel_id, peer_failed(state->pps, &state->channel_id,
"accept_channel2 ids don't match: expected %s, got %s", "accept_channel2 ids don't match: "
type_to_string(msg, struct channel_id, &state->channel_id), "expected %s, got %s",
type_to_string(msg, struct channel_id,
&state->channel_id),
type_to_string(msg, struct channel_id, &cid)); type_to_string(msg, struct channel_id, &cid));
/* Check that total funding doesn't overflow */ /* Check that total funding doesn't overflow */
@ -1454,8 +1474,8 @@ static u8 *opener_start(struct state *state, u8 *msg)
* *
* The receiving node MUST fail the channel if: * The receiving node MUST fail the channel if:
*... *...
* - `funding_satoshis` is greater than or equal to 2^24 and the receiver does not support * - `funding_satoshis` is greater than or equal to 2^24 and
* `option_support_large_channel`. */ * the receiver does not support `option_support_large_channel`. */
/* We choose to require *negotiation*, not just support! */ /* We choose to require *negotiation*, not just support! */
if (!feature_negotiated(state->our_features, state->their_features, if (!feature_negotiated(state->our_features, state->their_features,
OPT_LARGE_CHANNELS) OPT_LARGE_CHANNELS)
@ -1470,13 +1490,15 @@ static u8 *opener_start(struct state *state, u8 *msg)
/* BOLT-78de9a79b491ae9fb84b1fdb4546bacf642dce87 #2: /* BOLT-78de9a79b491ae9fb84b1fdb4546bacf642dce87 #2:
* The sending node: * The sending node:
* - if is the `opener`: * - if is the `opener`:
* - MUST send at least one `tx_add_output`, the channel funding output. * - MUST send at least one `tx_add_output`, the channel
* funding output.
*/ */
wscript = bitcoin_redeem_2of2(state, wscript = bitcoin_redeem_2of2(state,
&state->our_funding_pubkey, &state->our_funding_pubkey,
&state->their_funding_pubkey); &state->their_funding_pubkey);
funding_out = psbt_append_output(psbt, funding_out = psbt_append_output(psbt,
scriptpubkey_p2wsh(tmpctx, wscript), scriptpubkey_p2wsh(tmpctx,
wscript),
total); total);
/* Add a serial_id for this output */ /* Add a serial_id for this output */
serial_id = psbt_new_input_serial(psbt, TX_INITIATOR); serial_id = psbt_new_input_serial(psbt, TX_INITIATOR);
@ -1485,7 +1507,8 @@ static u8 *opener_start(struct state *state, u8 *msg)
/* Add all of our inputs/outputs to the changeset */ /* Add all of our inputs/outputs to the changeset */
init_changeset(state, psbt); init_changeset(state, psbt);
/* Now that we know the total of the channel, we can set the reserve */ /* Now that we know the total of the channel, we can
* set the reserve */
set_reserve(state, total); set_reserve(state, total);
if (!check_config_bounds(tmpctx, total, state->feerate_per_kw, if (!check_config_bounds(tmpctx, total, state->feerate_per_kw,
@ -1835,8 +1858,8 @@ static u8 *handle_peer_in(struct state *state)
enum peer_wire type = fromwire_peektype(msg); enum peer_wire type = fromwire_peektype(msg);
if (type % 2 == 1 && !peer_wire_is_defined(type)) { if (type % 2 == 1 && !peer_wire_is_defined(type)) {
/* The message is not part of the messages we know how to /* The message is not part of the messages we know how to
* handle. Assuming this is a custommsg, we just forward it to the * handle. Assuming this is a custommsg, we just
* master. */ * forward it to master. */
wire_sync_write(REQ_FD, take(towire_custommsg_in(NULL, msg))); wire_sync_write(REQ_FD, take(towire_custommsg_in(NULL, msg)));
return NULL; return NULL;
} }
@ -1849,7 +1872,9 @@ static u8 *handle_peer_in(struct state *state)
sync_crypto_write(state->pps, sync_crypto_write(state->pps,
take(towire_errorfmt(NULL, take(towire_errorfmt(NULL,
extract_channel_id(msg, &channel_id) ? &channel_id : NULL, extract_channel_id(msg,
&channel_id) ?
&channel_id : NULL,
"Unexpected message %s: %s", "Unexpected message %s: %s",
peer_wire_name(t), peer_wire_name(t),
tal_hex(tmpctx, msg)))); tal_hex(tmpctx, msg))));

Loading…
Cancel
Save