Skip to content

Commit

Permalink
lightningd: require payment_secret for MPP.
Browse files Browse the repository at this point in the history
It makes sense, and it's been proposed for addition to the spec to
broad agreement:

	lightning/bolts#712

Signed-off-by: Rusty Russell <[email protected]>
  • Loading branch information
rustyrussell authored and cdecker committed Dec 12, 2019
1 parent 326ceab commit 7fb4efd
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions lightningd/htlc_set.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,24 @@ void htlc_set_add(struct lightningd *ld,
set = htlc_set_map_get(&ld->htlc_sets, &hin->payment_hash);
if (!set)
set = new_htlc_set(ld, hin, total_msat);
else
else {
/* BOLT-0729433704dd11cc07a0535c09e5f64de7a5017b #4:
*
* if it supports `basic_mpp`:
* ...
* - otherwise, if the total `amount_msat` of this HTLC set is
* less than `total_msat`:
* ...
* - MUST require `payment_secret` for all HTLCs in the set.
*/
/* We check this now, since we want to fail with this as soon
* as possible, to avoid other probing attacks. */
if (!payment_secret) {
fail_htlc(hin, WIRE_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS);
return;
}
tal_arr_expand(&set->htlcs, hin);
}

/* Remove from set should hin get destroyed somehow */
tal_add_destructor2(hin, htlc_set_hin_destroyed, set);
Expand Down Expand Up @@ -185,5 +201,12 @@ void htlc_set_add(struct lightningd *ld,
/* BOLT-9441a66faad63edc8cd89860b22fbf24a86f0dcd #4:
* - otherwise, if the total `amount_msat` of this HTLC set is less than
* `total_msat`:
* - MUST NOT fulfill any HTLCs in the HTLC set */
* - MUST NOT fulfill any HTLCs in the HTLC set
*...
* - MUST require `payment_secret` for all HTLCs in the set. */
/* This catches the case of the first payment in a set. */
if (!payment_secret) {
htlc_set_fail(set, WIRE_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS);
return;
}
}

0 comments on commit 7fb4efd

Please sign in to comment.