Skip to content

Commit cc1111d

Browse files
committed
renepay: use getroutes
Changelog-Added: renepay: use external call to [askrene-]getroutes instead of computing routes internally. Signed-off-by: Lagrang3 <[email protected]>
1 parent ee2f711 commit cc1111d

File tree

3 files changed

+90
-5
lines changed

3 files changed

+90
-5
lines changed

plugins/renepay/mods.c

+81-5
Original file line numberDiff line numberDiff line change
@@ -652,12 +652,37 @@ REGISTER_PAYMENT_MODIFIER(blindedhints, blindedhints_cb);
652652

653653

654654
/*****************************************************************************
655-
* compute_routes
655+
* getroutes
656656
*
657-
* Compute the payment routes.
657+
* Call askrene-getroutes
658658
*/
659659

660-
static struct command_result *compute_routes_cb(struct payment *payment)
660+
static struct command_result *getroutes_done(struct command *cmd,
661+
const char *method,
662+
const char *buf,
663+
const jsmntok_t *tok,
664+
struct payment *payment)
665+
{
666+
// FIXME: read the response, build the routes
667+
return payment_continue(payment);
668+
}
669+
670+
static struct command_result *getroutes_fail(struct command *cmd,
671+
const char *method,
672+
const char *buf,
673+
const jsmntok_t *tok,
674+
struct payment *payment)
675+
{
676+
// FIXME: read the response
677+
// if can we do something about his failure:
678+
// disable channels or add biases
679+
// else:
680+
// return payment_fail(payment, PAY_STOPPED_RETRYING, "getroutes
681+
// failed to find a feasible solution %s", explain_error(buf, tok));
682+
return payment_continue(payment);
683+
}
684+
685+
static struct command_result *getroutes_cb(struct payment *payment)
661686
{
662687
assert(payment->status == PAYMENT_PENDING);
663688
struct routetracker *routetracker = payment->routetracker;
@@ -699,6 +724,57 @@ static struct command_result *compute_routes_cb(struct payment *payment)
699724
return payment_continue(payment);
700725
}
701726

727+
/* FIXME:
728+
* call getroutes:
729+
* input: source, destination, amount, maxfee, final_cltv,
730+
* maxdelay, layers: [auto.localchans, auto.sourcefree,
731+
* thispaymenthints, thispaymentexclude, renepayknowledge]
732+
*
733+
* possible outcomes:
734+
* success: then continue
735+
* fail with hint: try to fix and retry or fail payment
736+
* */
737+
struct command *cmd = payment_command(payment);
738+
struct out_req *req = jsonrpc_request_start(cmd,
739+
"getroutes", getroutes_done, getroutes_fail, payment);
740+
741+
// FIXME: add an algorithm selection in askrene such that we could
742+
// retrieve a single path route if necessary, see issue 8042
743+
// FIXME: register layers before using then:
744+
// -> register RENEPAY_LAYER on plugin startup
745+
// -> register payment->payment_layer when payment is created
746+
// -> payment_layer should auto clean
747+
// -> register payment->command_layer when the payment execution
748+
// starts
749+
// -> command_layer should auto clean
750+
751+
json_add_node_id(req->js, "source", &pay_plugin->my_id);
752+
json_add_node_id(req->js, "destination", payment->routing_destination);
753+
json_add_amount_msat(req->js, "amount_msat", remaining);
754+
json_add_amount_msat(req->js, "maxfee_msat", feebudget);
755+
json_add_u32(req->js, "final_cltv", payment->payment_info.final_cltv);
756+
json_add_u32(req->js, "maxdelay", payment->payment_info.maxdelay);
757+
json_array_start(req->js, "layers");
758+
json_add_string(req->js, NULL, "auto.localchans");
759+
json_add_string(req->js, NULL, "auto.sourcefree");
760+
/* Global knowledge of the network comes here.
761+
* eg. liquidity estimation for public channels, biases on bad
762+
* channels/nodes. */
763+
json_add_string(req->js, NULL, RENEPAY_LAYER);
764+
/* Knowledge that is only relevant to this payment comes here.
765+
* eg. fake nodes/channels, private channel hints, biases on bad
766+
* channels for this particular routing problem. */
767+
json_add_string(req->js, NULL, payment->payment_layer);
768+
/* Constraints that are only relevant to the last command invocation
769+
* comes here.
770+
* eg. manual node/channel exclusions. */
771+
json_add_string(req->js, NULL, payment->command_layer);
772+
json_array_end(req->js);
773+
774+
return send_outreq(req);
775+
776+
// FIXME: remove from here below
777+
702778
enum jsonrpc_errcode errcode;
703779
const char *err_msg = NULL;
704780

@@ -749,7 +825,7 @@ static struct command_result *compute_routes_cb(struct payment *payment)
749825
return payment_continue(payment);
750826
}
751827

752-
REGISTER_PAYMENT_MODIFIER(compute_routes, compute_routes_cb);
828+
REGISTER_PAYMENT_MODIFIER(getroutes, getroutes_cb);
753829

754830
/*****************************************************************************
755831
* send_routes
@@ -1258,7 +1334,7 @@ void *payment_virtual_program[] = {
12581334
/*16*/ OP_CALL, &pendingsendpays_pay_mod,
12591335
/*18*/ OP_CALL, &checktimeout_pay_mod,
12601336
/*20*/ OP_CALL, &refreshgossmap_pay_mod,
1261-
/*22*/ OP_CALL, &compute_routes_pay_mod,
1337+
/*22*/ OP_CALL, &getroutes_pay_mod,
12621338
/*24*/ OP_CALL, &send_routes_pay_mod,
12631339
/*do*/
12641340
/*26*/ OP_CALL, &sleep_pay_mod,

plugins/renepay/payment.h

+7
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,13 @@ struct payment {
7373
struct plugin_timer *waitresult_timer;
7474

7575
struct routetracker *routetracker;
76+
77+
/* The name of the layer where we put information regarding this
78+
* payment. */
79+
const char *payment_layer;
80+
/* This layer contains constraints that are passed through the command
81+
* line, eg. manual exclusions. */
82+
const char *command_layer;
7683
};
7784

7885
static inline const struct sha256 payment_hash(const struct payment *p)

plugins/renepay/renepayconfig.h

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
#define LIGHTNING_PLUGINS_RENEPAY_RENEPAYCONFIG_H
33
#include "config.h"
44

5+
#define RENEPAY_LAYER "renepay"
6+
57
#define MAX_NUM_ATTEMPTS 10
68

79
/* Knowledge is proportionally decreased with time up to TIMER_FORGET_SEC when

0 commit comments

Comments
 (0)