Skip to content

Commit ca32c5f

Browse files
committed
askrene: add expiration parameter to create-layer
This could be useful if we want to create one-time use layers on the flight and not worry about memory leaks (one time used layers that are not removed constitute a memory leak in a sense). Changelog-Added: askrene: add an optional self-destruction timer (expiration parameter) to new layers. Signed-off-by: Lagrang3 <[email protected]>
1 parent 98679aa commit ca32c5f

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

doc/schemas/lightning-askrene-create-layer.json

+7
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@
2525
"description": [
2626
"True if askrene should save and restore this layer. As a side-effect, create-layer also succeeds if the layer already exists and persistent is true."
2727
]
28+
},
29+
"expiration": {
30+
"type": "u64",
31+
"description": [
32+
"Sets the number of seconds until this layer expires. If this number is specified the layer will be automatically deleted at expiration."
33+
],
34+
"added": "v25.02"
2835
}
2936
}
3037
},

plugins/askrene/askrene.c

+31
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include <common/gossmods_listpeerchannels.h>
1515
#include <common/json_param.h>
1616
#include <common/json_stream.h>
17+
#include <common/memleak.h>
1718
#include <common/route.h>
1819
#include <errno.h>
1920
#include <math.h>
@@ -623,6 +624,8 @@ static struct command_result *do_getroutes(struct command *cmd,
623624
*info->amount, *info->maxfee, *info->finalcltv,
624625
info->layers, localmods, info->local_layer,
625626
&routes, &amounts, info->additional_costs, &probability);
627+
628+
// FIXME: add a special failure with hints to channels to blame
626629
if (err)
627630
return command_fail(cmd, PAY_ROUTE_NOT_FOUND, "%s", err);
628631

@@ -1060,6 +1063,27 @@ static struct command_result *json_askrene_disable_node(struct command *cmd,
10601063
return command_finished(cmd, response);
10611064
}
10621065

1066+
static struct command_result *expire_layer_done(struct command *timer_cmd,
1067+
const char *method,
1068+
const char *buf,
1069+
const jsmntok_t *result,
1070+
void *unused)
1071+
{
1072+
return timer_complete(timer_cmd);
1073+
}
1074+
1075+
static struct command_result *expire_layer(struct command *timer_cmd,
1076+
struct layer *l)
1077+
{
1078+
struct out_req *req;
1079+
req = jsonrpc_request_start(timer_cmd, "askrene-remove-layer",
1080+
expire_layer_done, plugin_broken_cb, NULL);
1081+
json_add_string(req->js, "layer", layer_name(l));
1082+
plugin_log(timer_cmd->plugin, LOG_DBG, "removing expired layer '%s'",
1083+
layer_name(l));
1084+
return send_outreq(req);
1085+
}
1086+
10631087
static struct command_result *json_askrene_create_layer(struct command *cmd,
10641088
const char *buffer,
10651089
const jsmntok_t *params)
@@ -1069,10 +1093,12 @@ static struct command_result *json_askrene_create_layer(struct command *cmd,
10691093
const char *layername;
10701094
struct json_stream *response;
10711095
bool *persistent;
1096+
u64 *expire_seconds;
10721097

10731098
if (!param_check(cmd, buffer, params,
10741099
p_req("layer", param_string, &layername),
10751100
p_opt_def("persistent", param_bool, &persistent, false),
1101+
p_opt("expiration", param_u64, &expire_seconds),
10761102
NULL))
10771103
return command_param_failed();
10781104

@@ -1093,6 +1119,11 @@ static struct command_result *json_askrene_create_layer(struct command *cmd,
10931119
if (!layer)
10941120
layer = new_layer(askrene, layername, *persistent);
10951121

1122+
if (expire_seconds)
1123+
notleak(global_timer(cmd->plugin,
1124+
time_from_sec(*expire_seconds),
1125+
expire_layer, layer));
1126+
10961127
response = jsonrpc_stream_success(cmd);
10971128
json_add_layers(response, askrene, "layers", layer);
10981129
return command_finished(cmd, response);

0 commit comments

Comments
 (0)