sphinx: Updating daemon to new sphinx implementation

Mainly switching from the old include to the new include and adjusting
the actual size of the onion packet. It also moves `channel.c` to use
`struct hop_data`.

It introduces a dummy next hop in `channel.c` that will be replaced in
the next commit.
This commit is contained in:
Christian Decker
2017-04-28 16:28:53 +02:00
parent b3af8d50a7
commit f24aab1916
10 changed files with 24 additions and 19 deletions

View File

@@ -11,7 +11,6 @@
#include <ccan/tal/str/str.h>
#include <ccan/time/time.h>
#include <daemon/routing.h>
#include <daemon/sphinx.h>
#include <daemon/timeout.h>
#include <errno.h>
#include <inttypes.h>
@@ -29,6 +28,7 @@
#include <lightningd/msg_queue.h>
#include <lightningd/peer_failed.h>
#include <lightningd/ping.h>
#include <lightningd/sphinx.h>
#include <lightningd/status.h>
#include <secp256k1.h>
#include <signal.h>
@@ -309,7 +309,7 @@ static void handle_peer_add_htlc(struct peer *peer, const u8 *msg)
u32 amount_msat;
u32 cltv_expiry;
struct sha256 payment_hash;
u8 onion_routing_packet[1254];
u8 onion_routing_packet[TOTAL_PACKET_SIZE];
enum channel_add_err add_err;
if (!fromwire_update_add_htlc(msg, NULL, &channel_id, &id, &amount_msat,
@@ -628,7 +628,7 @@ static void their_htlc_locked(const struct htlc *htlc, struct peer *peer)
/* Unknown realm isn't a bad onion, it's a normal failure. */
/* FIXME: Push complete hoppayload up and have master parse? */
if (rs->hoppayload->realm != 0) {
if (rs->hop_data.realm != 0) {
failcode = WIRE_INVALID_REALM;
msg = towire_update_fail_htlc(tmpctx, &peer->channel_id,
htlc->id, NULL);
@@ -636,6 +636,7 @@ static void their_htlc_locked(const struct htlc *htlc, struct peer *peer)
goto remove_htlc;
}
u8 dummy_next_hop[20]; memset(dummy_next_hop, 0, 20);
/* Tell master to deal with it. */
msg = towire_channel_accepted_htlc(tmpctx, htlc->id, htlc->msatoshi,
abs_locktime_to_blocks(&htlc->expiry),
@@ -643,9 +644,9 @@ static void their_htlc_locked(const struct htlc *htlc, struct peer *peer)
serialize_onionpacket(tmpctx,
rs->next),
rs->nextcase == ONION_FORWARD,
rs->hoppayload->amt_to_forward,
rs->hoppayload->outgoing_cltv_value,
rs->next->nexthop);
rs->hop_data.amt_forward,
rs->hop_data.outgoing_cltv,
dummy_next_hop);
daemon_conn_send(&peer->master, take(msg));
tal_free(tmpctx);
return;

View File

@@ -53,7 +53,7 @@ channel_offer_htlc,4
channel_offer_htlc,0,amount_msat,4
channel_offer_htlc,0,cltv_expiry,4
channel_offer_htlc,0,payment_hash,32
channel_offer_htlc,0,onion_routing_packet,1254*u8
channel_offer_htlc,0,onion_routing_packet,1366*u8
# Reply; synchronous since IDs have to increment.
channel_offer_htlc_reply,104
1 # Shouldn't happen
53 # Zero failure code means success.
54 channel_offer_htlc_reply,0,failure_code,2
55 channel_offer_htlc_reply,0,failurestrlen,2
56 channel_offer_htlc_reply,0,failurestr,failurestrlen*u8
57 # Main daemon found out the preimage for an htlc
58 #include <bitcoin/preimage.h>
59 channel_fulfill_htlc,5