2023-01-30 07:24:17 +01:00
|
|
|
/* Brilliant or insane? You decide! */
|
|
|
|
#include "config.h"
|
|
|
|
#include <ccan/array_size/array_size.h>
|
2023-01-30 07:24:17 +01:00
|
|
|
#include <ccan/err/err.h>
|
2023-01-30 07:24:17 +01:00
|
|
|
#include <ccan/strmap/strmap.h>
|
|
|
|
#include <ccan/tal/str/str.h>
|
2024-01-25 01:28:53 +01:00
|
|
|
#include <common/deprecation.h>
|
2023-01-30 07:24:17 +01:00
|
|
|
#include <common/gossip_store.h>
|
2023-01-30 07:24:17 +01:00
|
|
|
#include <common/json_param.h>
|
|
|
|
#include <common/json_stream.h>
|
|
|
|
#include <common/memleak.h>
|
2023-01-30 07:24:18 +01:00
|
|
|
#include <common/setup.h>
|
2023-01-30 07:24:17 +01:00
|
|
|
#include <common/type_to_string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <gossipd/gossip_store_wiregen.h>
|
2023-01-30 07:24:17 +01:00
|
|
|
#include <plugins/libplugin.h>
|
|
|
|
#include <sqlite3.h>
|
2023-01-30 07:24:18 +01:00
|
|
|
#include <stdio.h>
|
2023-01-30 07:24:17 +01:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
2023-01-30 07:24:17 +01:00
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
/* Minimized schemas. C23 #embed, Where Art Thou? */
|
|
|
|
static const char schemas[] =
|
|
|
|
#include "sql-schema_gen.h"
|
|
|
|
;
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
/* TODO:
|
|
|
|
* 2. Refresh time in API.
|
|
|
|
* 6. test on mainnet.
|
|
|
|
* 7. Some cool query for documentation.
|
|
|
|
* 8. time_msec fields.
|
|
|
|
* 10. Pagination API
|
|
|
|
*/
|
|
|
|
enum fieldtype {
|
|
|
|
/* Hex variants */
|
|
|
|
FIELD_HEX,
|
|
|
|
FIELD_HASH,
|
|
|
|
FIELD_SECRET,
|
|
|
|
FIELD_PUBKEY,
|
|
|
|
FIELD_TXID,
|
|
|
|
/* Integer variants */
|
|
|
|
FIELD_MSAT,
|
|
|
|
FIELD_INTEGER,
|
|
|
|
FIELD_U64,
|
|
|
|
FIELD_U32,
|
|
|
|
FIELD_U16,
|
|
|
|
FIELD_U8,
|
|
|
|
FIELD_BOOL,
|
|
|
|
/* Randoms */
|
|
|
|
FIELD_NUMBER,
|
|
|
|
FIELD_STRING,
|
|
|
|
FIELD_SCID,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct fieldtypemap {
|
|
|
|
const char *name;
|
|
|
|
const char *sqltype;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct fieldtypemap fieldtypemap[] = {
|
|
|
|
{ "hex", "BLOB" }, /* FIELD_HEX */
|
|
|
|
{ "hash", "BLOB" }, /* FIELD_HASH */
|
|
|
|
{ "secret", "BLOB" }, /* FIELD_SECRET */
|
|
|
|
{ "pubkey", "BLOB" }, /* FIELD_PUBKEY */
|
|
|
|
{ "txid", "BLOB" }, /* FIELD_TXID */
|
|
|
|
{ "msat", "INTEGER" }, /* FIELD_MSAT */
|
|
|
|
{ "integer", "INTEGER" }, /* FIELD_INTEGER */
|
|
|
|
{ "u64", "INTEGER" }, /* FIELD_U64 */
|
|
|
|
{ "u32", "INTEGER" }, /* FIELD_U32 */
|
|
|
|
{ "u16", "INTEGER" }, /* FIELD_U16 */
|
|
|
|
{ "u8", "INTEGER" }, /* FIELD_U8 */
|
|
|
|
{ "boolean", "INTEGER" }, /* FIELD_BOOL */
|
|
|
|
{ "number", "REAL" }, /* FIELD_NUMBER */
|
|
|
|
{ "string", "TEXT" }, /* FIELD_STRING */
|
|
|
|
{ "short_channel_id", "TEXT" }, /* FIELD_SCID */
|
|
|
|
};
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
struct column {
|
2023-01-30 07:24:17 +01:00
|
|
|
/* We rename some fields to avoid sql keywords!
|
|
|
|
* And jsonname is NULL if this is a simple array. */
|
2023-01-30 07:24:17 +01:00
|
|
|
const char *dbname, *jsonname;
|
2023-01-30 07:24:17 +01:00
|
|
|
enum fieldtype ftype;
|
2023-01-30 07:24:17 +01:00
|
|
|
|
2024-01-25 01:28:53 +01:00
|
|
|
/* Deprecation version range, if any. */
|
|
|
|
const char *depr_start, *depr_end;
|
2023-01-30 07:24:17 +01:00
|
|
|
/* If this is actually a subtable: */
|
|
|
|
struct table_desc *sub;
|
2023-01-30 07:24:17 +01:00
|
|
|
};
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
struct db_query {
|
|
|
|
sqlite3_stmt *stmt;
|
|
|
|
struct table_desc **tables;
|
|
|
|
const char *authfail;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct table_desc {
|
2023-01-30 07:24:18 +01:00
|
|
|
/* e.g. listpeers. For sub-tables, the raw name without
|
|
|
|
* parent prepended */
|
2023-01-30 07:24:17 +01:00
|
|
|
const char *cmdname;
|
2023-01-30 07:24:18 +01:00
|
|
|
/* e.g. peers for listpeers, peers_channels for listpeers.channels. */
|
2023-01-30 07:24:17 +01:00
|
|
|
const char *name;
|
2023-01-30 07:24:17 +01:00
|
|
|
/* e.g. "payments" for listsendpays */
|
|
|
|
const char *arrname;
|
2024-01-25 01:28:53 +01:00
|
|
|
struct column **columns;
|
2023-01-30 07:24:17 +01:00
|
|
|
char *update_stmt;
|
2023-01-30 07:24:17 +01:00
|
|
|
/* If we are a subtable */
|
|
|
|
struct table_desc *parent;
|
|
|
|
/* Is this a sub object (otherwise, subarray if parent is true) */
|
|
|
|
bool is_subobject;
|
|
|
|
/* function to refresh it. */
|
|
|
|
struct command_result *(*refresh)(struct command *cmd,
|
|
|
|
const struct table_desc *td,
|
|
|
|
struct db_query *dbq);
|
2023-01-30 07:24:17 +01:00
|
|
|
};
|
|
|
|
static STRMAP(struct table_desc *) tablemap;
|
|
|
|
static size_t max_dbmem = 500000000;
|
|
|
|
static struct sqlite3 *db;
|
2023-06-06 02:38:53 +02:00
|
|
|
static char *dbfilename;
|
2023-01-30 07:24:17 +01:00
|
|
|
static int gosstore_fd = -1;
|
|
|
|
static size_t gosstore_nodes_off = 0, gosstore_channels_off = 0;
|
2023-02-01 02:58:32 +01:00
|
|
|
static u64 next_rowid = 1;
|
2023-01-30 07:24:17 +01:00
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
/* It was tempting to put these in the schema, but they're really
|
|
|
|
* just for our usage. Though that would allow us to autogen the
|
|
|
|
* documentation, too. */
|
|
|
|
struct index {
|
|
|
|
const char *tablename;
|
|
|
|
const char *fields[2];
|
|
|
|
};
|
|
|
|
static const struct index indices[] = {
|
|
|
|
{
|
|
|
|
"channels",
|
|
|
|
{ "short_channel_id", NULL },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"forwards",
|
|
|
|
{ "in_channel", "in_htlc_id" },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"htlcs",
|
|
|
|
{ "short_channel_id", "id" },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"invoices",
|
|
|
|
{ "payment_hash", NULL },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"nodes",
|
|
|
|
{ "nodeid", NULL },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"offers",
|
|
|
|
{ "offer_id", NULL },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"peers",
|
|
|
|
{ "id", NULL },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"peerchannels",
|
|
|
|
{ "peer_id", NULL },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"sendpays",
|
|
|
|
{ "payment_hash", NULL },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"transactions",
|
|
|
|
{ "hash", NULL },
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
static enum fieldtype find_fieldtype(const jsmntok_t *name)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < ARRAY_SIZE(fieldtypemap); i++) {
|
|
|
|
if (json_tok_streq(schemas, name, fieldtypemap[i].name))
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
errx(1, "Unknown JSON type %.*s",
|
|
|
|
name->end - name->start, schemas + name->start);
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
static struct sqlite3 *sqlite_setup(struct plugin *plugin)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
struct sqlite3 *db;
|
|
|
|
char *errmsg;
|
|
|
|
|
|
|
|
if (dbfilename) {
|
|
|
|
err = sqlite3_open_v2(dbfilename, &db,
|
|
|
|
SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE,
|
|
|
|
NULL);
|
|
|
|
} else {
|
|
|
|
err = sqlite3_open_v2("", &db,
|
|
|
|
SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE
|
|
|
|
| SQLITE_OPEN_MEMORY,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
if (err != SQLITE_OK)
|
|
|
|
plugin_err(plugin, "Could not create db: errcode %u", err);
|
|
|
|
|
|
|
|
sqlite3_extended_result_codes(db, 1);
|
|
|
|
|
|
|
|
/* From https://www.sqlite.org/c3ref/set_authorizer.html:
|
|
|
|
*
|
|
|
|
* Applications that need to process SQL from untrusted
|
|
|
|
* sources might also consider lowering resource limits using
|
|
|
|
* sqlite3_limit() and limiting database size using the
|
|
|
|
* max_page_count PRAGMA in addition to using an authorizer.
|
|
|
|
*/
|
|
|
|
sqlite3_limit(db, SQLITE_LIMIT_LENGTH, 1000000);
|
|
|
|
sqlite3_limit(db, SQLITE_LIMIT_SQL_LENGTH, 10000);
|
|
|
|
sqlite3_limit(db, SQLITE_LIMIT_COLUMN, 100);
|
|
|
|
sqlite3_limit(db, SQLITE_LIMIT_EXPR_DEPTH, 100);
|
|
|
|
sqlite3_limit(db, SQLITE_LIMIT_COMPOUND_SELECT, 10);
|
|
|
|
sqlite3_limit(db, SQLITE_LIMIT_VDBE_OP, 1000);
|
|
|
|
sqlite3_limit(db, SQLITE_LIMIT_ATTACHED, 1);
|
|
|
|
sqlite3_limit(db, SQLITE_LIMIT_LIKE_PATTERN_LENGTH, 500);
|
|
|
|
sqlite3_limit(db, SQLITE_LIMIT_VARIABLE_NUMBER, 100);
|
|
|
|
sqlite3_limit(db, SQLITE_LIMIT_TRIGGER_DEPTH, 1);
|
|
|
|
sqlite3_limit(db, SQLITE_LIMIT_WORKER_THREADS, 1);
|
|
|
|
|
|
|
|
/* Default is now 4k pages, so allow 500MB */
|
|
|
|
err = sqlite3_exec(db, tal_fmt(tmpctx, "PRAGMA max_page_count = %zu;",
|
|
|
|
max_dbmem / 4096),
|
|
|
|
NULL, NULL, &errmsg);
|
|
|
|
if (err != SQLITE_OK)
|
|
|
|
plugin_err(plugin, "Could not set max_page_count: %s", errmsg);
|
|
|
|
|
2023-02-01 02:58:32 +01:00
|
|
|
err = sqlite3_exec(db, "PRAGMA foreign_keys = ON;", NULL, NULL, &errmsg);
|
|
|
|
if (err != SQLITE_OK)
|
|
|
|
plugin_err(plugin, "Could not set foreign_keys: %s", errmsg);
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
return db;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool has_table_desc(struct table_desc **tables, struct table_desc *t)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < tal_count(tables); i++) {
|
|
|
|
if (tables[i] == t)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2024-01-25 01:28:53 +01:00
|
|
|
static struct column *find_column(const struct table_desc *td,
|
|
|
|
const char *dbname)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < tal_count(td->columns); i++) {
|
|
|
|
if (streq(td->columns[i]->dbname, dbname))
|
|
|
|
return td->columns[i];
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
static int sqlite_authorize(void *dbq_, int code,
|
|
|
|
const char *a,
|
|
|
|
const char *b,
|
|
|
|
const char *c,
|
|
|
|
const char *d)
|
|
|
|
{
|
|
|
|
struct db_query *dbq = dbq_;
|
|
|
|
|
|
|
|
/* You can do select statements */
|
|
|
|
if (code == SQLITE_SELECT)
|
|
|
|
return SQLITE_OK;
|
|
|
|
|
2024-01-25 01:28:53 +01:00
|
|
|
/* You can do a column read: takes a table name, column name */
|
2023-01-30 07:24:17 +01:00
|
|
|
if (code == SQLITE_READ) {
|
|
|
|
struct table_desc *td = strmap_get(&tablemap, a);
|
2024-01-25 01:28:53 +01:00
|
|
|
struct column *col;
|
2023-01-30 07:24:17 +01:00
|
|
|
if (!td) {
|
|
|
|
dbq->authfail = tal_fmt(dbq, "Unknown table %s", a);
|
|
|
|
return SQLITE_DENY;
|
|
|
|
}
|
2023-01-30 07:24:17 +01:00
|
|
|
/* If it has a parent, we refresh that instead */
|
|
|
|
while (td->parent)
|
|
|
|
td = td->parent;
|
2023-01-30 07:24:17 +01:00
|
|
|
if (!has_table_desc(dbq->tables, td))
|
|
|
|
tal_arr_expand(&dbq->tables, td);
|
2024-01-25 01:28:53 +01:00
|
|
|
|
|
|
|
/* Check column name, to control access to deprecated ones. */
|
|
|
|
col = find_column(td, b);
|
|
|
|
if (!col) {
|
|
|
|
/* Magic column names like id, __id__ etc. */
|
|
|
|
return SQLITE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Don't do tal if we are not deprecated at all */
|
|
|
|
if (!col->depr_start)
|
|
|
|
return SQLITE_OK;
|
|
|
|
|
|
|
|
/* FIXME: Use command_deprecated_param_ok! */
|
|
|
|
if (!deprecated_ok(deprecated_apis,
|
|
|
|
tal_fmt(tmpctx, "%s.%s", td->cmdname, col->jsonname),
|
|
|
|
col->depr_start,
|
|
|
|
col->depr_end,
|
|
|
|
NULL, NULL, NULL)) {
|
|
|
|
dbq->authfail = tal_fmt(dbq, "Deprecated column table %s.%s", a, b);
|
|
|
|
return SQLITE_DENY;
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
return SQLITE_OK;
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:18 +01:00
|
|
|
/* Some functions are fairly necessary: */
|
|
|
|
if (code == SQLITE_FUNCTION) {
|
|
|
|
if (streq(b, "abs"))
|
|
|
|
return SQLITE_OK;
|
|
|
|
if (streq(b, "avg"))
|
|
|
|
return SQLITE_OK;
|
|
|
|
if (streq(b, "coalesce"))
|
|
|
|
return SQLITE_OK;
|
|
|
|
if (streq(b, "count"))
|
|
|
|
return SQLITE_OK;
|
|
|
|
if (streq(b, "hex"))
|
|
|
|
return SQLITE_OK;
|
|
|
|
if (streq(b, "quote"))
|
|
|
|
return SQLITE_OK;
|
|
|
|
if (streq(b, "length"))
|
|
|
|
return SQLITE_OK;
|
|
|
|
if (streq(b, "like"))
|
|
|
|
return SQLITE_OK;
|
|
|
|
if (streq(b, "lower"))
|
|
|
|
return SQLITE_OK;
|
|
|
|
if (streq(b, "upper"))
|
|
|
|
return SQLITE_OK;
|
|
|
|
if (streq(b, "min"))
|
|
|
|
return SQLITE_OK;
|
|
|
|
if (streq(b, "max"))
|
|
|
|
return SQLITE_OK;
|
|
|
|
if (streq(b, "sum"))
|
|
|
|
return SQLITE_OK;
|
|
|
|
if (streq(b, "total"))
|
|
|
|
return SQLITE_OK;
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
/* See https://www.sqlite.org/c3ref/c_alter_table.html to decode these! */
|
|
|
|
dbq->authfail = tal_fmt(dbq, "Unauthorized: %u arg1=%s arg2=%s dbname=%s caller=%s",
|
|
|
|
code,
|
|
|
|
a ? a : "(none)",
|
|
|
|
b ? b : "(none)",
|
|
|
|
c ? c : "(none)",
|
|
|
|
d ? d : "(none)");
|
|
|
|
return SQLITE_DENY;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct command_result *refresh_complete(struct command *cmd,
|
|
|
|
struct db_query *dbq)
|
|
|
|
{
|
|
|
|
char *errmsg;
|
|
|
|
int err, num_cols;
|
|
|
|
size_t num_rows;
|
|
|
|
struct json_stream *ret;
|
|
|
|
|
|
|
|
num_cols = sqlite3_column_count(dbq->stmt);
|
|
|
|
|
|
|
|
/* We normally hit an error immediately, so return a simple error then */
|
|
|
|
ret = NULL;
|
|
|
|
num_rows = 0;
|
|
|
|
errmsg = NULL;
|
|
|
|
|
|
|
|
while ((err = sqlite3_step(dbq->stmt)) == SQLITE_ROW) {
|
|
|
|
if (!ret) {
|
|
|
|
ret = jsonrpc_stream_success(cmd);
|
|
|
|
json_array_start(ret, "rows");
|
|
|
|
}
|
|
|
|
json_array_start(ret, NULL);
|
|
|
|
for (size_t i = 0; i < num_cols; i++) {
|
|
|
|
/* The returned value is one of
|
|
|
|
* SQLITE_INTEGER, SQLITE_FLOAT, SQLITE_TEXT,
|
|
|
|
* SQLITE_BLOB, or SQLITE_NULL */
|
|
|
|
switch (sqlite3_column_type(dbq->stmt, i)) {
|
|
|
|
case SQLITE_INTEGER: {
|
|
|
|
s64 v = sqlite3_column_int64(dbq->stmt, i);
|
|
|
|
json_add_s64(ret, NULL, v);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SQLITE_FLOAT: {
|
|
|
|
double v = sqlite3_column_double(dbq->stmt, i);
|
|
|
|
json_add_primitive_fmt(ret, NULL, "%f", v);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SQLITE_TEXT: {
|
|
|
|
const char *c = (char *)sqlite3_column_text(dbq->stmt, i);
|
|
|
|
if (!utf8_check(c, strlen(c))) {
|
|
|
|
json_add_str_fmt(ret, NULL,
|
|
|
|
"INVALID UTF-8 STRING %s",
|
|
|
|
tal_hexstr(tmpctx, c, strlen(c)));
|
|
|
|
errmsg = tal_fmt(cmd, "Invalid UTF-8 string row %zu column %zu",
|
|
|
|
num_rows, i);
|
|
|
|
} else
|
|
|
|
json_add_string(ret, NULL, c);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SQLITE_BLOB:
|
|
|
|
json_add_hex(ret, NULL,
|
|
|
|
sqlite3_column_blob(dbq->stmt, i),
|
|
|
|
sqlite3_column_bytes(dbq->stmt, i));
|
|
|
|
break;
|
|
|
|
case SQLITE_NULL:
|
|
|
|
json_add_primitive(ret, NULL, "null");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
errmsg = tal_fmt(cmd, "Unknown column type %i in row %zu column %zu",
|
|
|
|
sqlite3_column_type(dbq->stmt, i),
|
|
|
|
num_rows, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
json_array_end(ret);
|
|
|
|
num_rows++;
|
|
|
|
}
|
|
|
|
if (err != SQLITE_DONE)
|
|
|
|
errmsg = tal_fmt(cmd, "Executing statement: %s",
|
|
|
|
sqlite3_errmsg(db));
|
|
|
|
|
|
|
|
sqlite3_finalize(dbq->stmt);
|
|
|
|
|
|
|
|
|
|
|
|
/* OK, did we hit some error during? Simple if we didn't
|
|
|
|
* already start answering! */
|
|
|
|
if (errmsg) {
|
|
|
|
if (!ret)
|
|
|
|
return command_fail(cmd, LIGHTNINGD, "%s", errmsg);
|
|
|
|
|
|
|
|
/* Otherwise, add it as a warning */
|
|
|
|
json_array_end(ret);
|
|
|
|
json_add_string(ret, "warning_db_failure", errmsg);
|
|
|
|
} else {
|
|
|
|
/* Empty result is possible, OK. */
|
|
|
|
if (!ret) {
|
|
|
|
ret = jsonrpc_stream_success(cmd);
|
|
|
|
json_array_start(ret, "rows");
|
|
|
|
}
|
|
|
|
json_array_end(ret);
|
|
|
|
}
|
|
|
|
return command_finished(cmd, ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Recursion */
|
|
|
|
static struct command_result *refresh_tables(struct command *cmd,
|
|
|
|
struct db_query *dbq);
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
static struct command_result *one_refresh_done(struct command *cmd,
|
|
|
|
struct db_query *dbq)
|
|
|
|
{
|
|
|
|
/* Remove that, iterate */
|
|
|
|
tal_arr_remove(&dbq->tables, 0);
|
|
|
|
return refresh_tables(cmd, dbq);
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
/* Mutual recursion */
|
|
|
|
static struct command_result *process_json_list(struct command *cmd,
|
|
|
|
const char *buf,
|
|
|
|
const jsmntok_t *arr,
|
|
|
|
const u64 *rowid,
|
|
|
|
const struct table_desc *td);
|
|
|
|
|
2023-03-20 01:19:47 +01:00
|
|
|
/* Process all subobject columns */
|
|
|
|
static struct command_result *process_json_subobjs(struct command *cmd,
|
|
|
|
const char *buf,
|
|
|
|
const jsmntok_t *t,
|
|
|
|
const struct table_desc *td,
|
|
|
|
u64 this_rowid)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < tal_count(td->columns); i++) {
|
2024-01-25 01:28:53 +01:00
|
|
|
const struct column *col = td->columns[i];
|
2023-03-20 01:19:47 +01:00
|
|
|
struct command_result *ret;
|
|
|
|
const jsmntok_t *coltok;
|
|
|
|
|
|
|
|
if (!col->sub)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
coltok = json_get_member(buf, t, col->jsonname);
|
|
|
|
if (!coltok)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* If it's an array, use process_json_list */
|
|
|
|
if (!col->sub->is_subobject) {
|
|
|
|
ret = process_json_list(cmd, buf, coltok, &this_rowid,
|
|
|
|
col->sub);
|
|
|
|
} else {
|
|
|
|
ret = process_json_subobjs(cmd, buf, coltok, col->sub,
|
|
|
|
this_rowid);
|
|
|
|
}
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
/* Returns NULL on success, otherwise has failed cmd. */
|
|
|
|
static struct command_result *process_json_obj(struct command *cmd,
|
|
|
|
const char *buf,
|
|
|
|
const jsmntok_t *t,
|
|
|
|
const struct table_desc *td,
|
|
|
|
size_t row,
|
2023-02-01 02:58:32 +01:00
|
|
|
u64 this_rowid,
|
|
|
|
const u64 *parent_rowid,
|
2023-01-30 07:24:17 +01:00
|
|
|
size_t *sqloff,
|
|
|
|
sqlite3_stmt *stmt)
|
|
|
|
{
|
|
|
|
int err;
|
2023-01-30 07:24:17 +01:00
|
|
|
|
|
|
|
/* Subtables have row, arrindex as first two columns. */
|
2023-02-01 02:58:32 +01:00
|
|
|
if (parent_rowid) {
|
|
|
|
sqlite3_bind_int64(stmt, (*sqloff)++, *parent_rowid);
|
2023-01-30 07:24:17 +01:00
|
|
|
sqlite3_bind_int64(stmt, (*sqloff)++, row);
|
|
|
|
}
|
2023-01-30 07:24:17 +01:00
|
|
|
|
|
|
|
/* FIXME: This is O(n^2): hash td->columns and look up the other way. */
|
|
|
|
for (size_t i = 0; i < tal_count(td->columns); i++) {
|
2024-01-25 01:28:53 +01:00
|
|
|
const struct column *col = td->columns[i];
|
2023-01-30 07:24:17 +01:00
|
|
|
const jsmntok_t *coltok;
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
if (col->sub) {
|
|
|
|
struct command_result *ret;
|
|
|
|
/* Handle sub-tables below: we need rowid! */
|
|
|
|
if (!col->sub->is_subobject)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
coltok = json_get_member(buf, t, col->jsonname);
|
2023-02-01 02:58:32 +01:00
|
|
|
ret = process_json_obj(cmd, buf, coltok, col->sub, row, this_rowid,
|
|
|
|
NULL, sqloff, stmt);
|
2023-01-30 07:24:17 +01:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This can happen if subobject does not exist in output! */
|
2023-01-30 07:24:17 +01:00
|
|
|
if (!t)
|
|
|
|
coltok = NULL;
|
2023-01-30 07:24:17 +01:00
|
|
|
else {
|
|
|
|
/* Array of primitives? */
|
|
|
|
if (!col->jsonname)
|
|
|
|
coltok = t;
|
|
|
|
else
|
|
|
|
coltok = json_get_member(buf, t, col->jsonname);
|
|
|
|
}
|
2023-01-30 07:24:17 +01:00
|
|
|
|
|
|
|
if (!coltok) {
|
|
|
|
if (td->parent)
|
|
|
|
plugin_log(cmd->plugin, LOG_DBG,
|
|
|
|
"Did not find json %s for %s in %.*s",
|
|
|
|
col->jsonname, td->name,
|
|
|
|
t ? json_tok_full_len(t) : 4, t ? json_tok_full(buf, t): "NULL");
|
2023-01-30 07:24:17 +01:00
|
|
|
sqlite3_bind_null(stmt, (*sqloff)++);
|
2023-01-30 07:24:17 +01:00
|
|
|
} else {
|
2023-01-30 07:24:17 +01:00
|
|
|
u64 val64;
|
|
|
|
struct amount_msat valmsat;
|
|
|
|
u8 *valhex;
|
|
|
|
double valdouble;
|
|
|
|
bool valbool;
|
|
|
|
|
|
|
|
switch (col->ftype) {
|
|
|
|
case FIELD_U8:
|
|
|
|
case FIELD_U16:
|
|
|
|
case FIELD_U32:
|
|
|
|
case FIELD_U64:
|
|
|
|
case FIELD_INTEGER:
|
|
|
|
if (!json_to_u64(buf, coltok, &val64)) {
|
|
|
|
return command_fail(cmd, LIGHTNINGD,
|
|
|
|
"column %zu row %zu not a u64: %.*s",
|
|
|
|
i, row,
|
|
|
|
json_tok_full_len(coltok),
|
|
|
|
json_tok_full(buf, coltok));
|
|
|
|
}
|
|
|
|
sqlite3_bind_int64(stmt, (*sqloff)++, val64);
|
|
|
|
break;
|
|
|
|
case FIELD_BOOL:
|
|
|
|
if (!json_to_bool(buf, coltok, &valbool)) {
|
|
|
|
return command_fail(cmd, LIGHTNINGD,
|
|
|
|
"column %zu row %zu not a boolean: %.*s",
|
|
|
|
i, row,
|
|
|
|
json_tok_full_len(coltok),
|
|
|
|
json_tok_full(buf, coltok));
|
|
|
|
}
|
|
|
|
sqlite3_bind_int(stmt, (*sqloff)++, valbool);
|
|
|
|
break;
|
|
|
|
case FIELD_NUMBER:
|
|
|
|
if (!json_to_double(buf, coltok, &valdouble)) {
|
|
|
|
return command_fail(cmd, LIGHTNINGD,
|
|
|
|
"column %zu row %zu not a double: %.*s",
|
|
|
|
i, row,
|
|
|
|
json_tok_full_len(coltok),
|
|
|
|
json_tok_full(buf, coltok));
|
|
|
|
}
|
|
|
|
sqlite3_bind_double(stmt, (*sqloff)++, valdouble);
|
|
|
|
break;
|
|
|
|
case FIELD_MSAT:
|
|
|
|
if (!json_to_msat(buf, coltok, &valmsat)) {
|
|
|
|
return command_fail(cmd, LIGHTNINGD,
|
|
|
|
"column %zu row %zu not an msat: %.*s",
|
|
|
|
i, row,
|
|
|
|
json_tok_full_len(coltok),
|
|
|
|
json_tok_full(buf, coltok));
|
|
|
|
}
|
|
|
|
sqlite3_bind_int64(stmt, (*sqloff)++, valmsat.millisatoshis /* Raw: db */);
|
|
|
|
break;
|
|
|
|
case FIELD_SCID:
|
|
|
|
case FIELD_STRING:
|
|
|
|
sqlite3_bind_text(stmt, (*sqloff)++, buf + coltok->start,
|
|
|
|
coltok->end - coltok->start,
|
|
|
|
SQLITE_STATIC);
|
|
|
|
break;
|
|
|
|
case FIELD_HEX:
|
|
|
|
case FIELD_HASH:
|
|
|
|
case FIELD_SECRET:
|
|
|
|
case FIELD_PUBKEY:
|
|
|
|
case FIELD_TXID:
|
|
|
|
valhex = json_tok_bin_from_hex(tmpctx, buf, coltok);
|
|
|
|
if (!valhex) {
|
|
|
|
return command_fail(cmd, LIGHTNINGD,
|
|
|
|
"column %zu row %zu not valid hex: %.*s",
|
|
|
|
i, row,
|
|
|
|
json_tok_full_len(coltok),
|
|
|
|
json_tok_full(buf, coltok));
|
|
|
|
}
|
|
|
|
sqlite3_bind_blob(stmt, (*sqloff)++, valhex, tal_count(valhex),
|
|
|
|
SQLITE_STATIC);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
/* Sub objects get folded into parent's SQL */
|
|
|
|
if (td->parent && td->is_subobject)
|
|
|
|
return NULL;
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
err = sqlite3_step(stmt);
|
|
|
|
if (err != SQLITE_DONE) {
|
|
|
|
return command_fail(cmd, LIGHTNINGD,
|
|
|
|
"Error executing %s on row %zu: %s",
|
|
|
|
td->update_stmt,
|
|
|
|
row,
|
|
|
|
sqlite3_errmsg(db));
|
|
|
|
}
|
2023-01-30 07:24:17 +01:00
|
|
|
|
2023-03-20 01:19:47 +01:00
|
|
|
return process_json_subobjs(cmd, buf, t, td, this_rowid);
|
2023-01-30 07:24:17 +01:00
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
/* A list, such as in the top-level reply, or for a sub-table */
|
2023-01-30 07:24:17 +01:00
|
|
|
static struct command_result *process_json_list(struct command *cmd,
|
|
|
|
const char *buf,
|
2023-01-30 07:24:17 +01:00
|
|
|
const jsmntok_t *arr,
|
2023-02-01 02:58:32 +01:00
|
|
|
const u64 *parent_rowid,
|
2023-01-30 07:24:17 +01:00
|
|
|
const struct table_desc *td)
|
2023-01-30 07:24:17 +01:00
|
|
|
{
|
|
|
|
size_t i;
|
2023-01-30 07:24:17 +01:00
|
|
|
const jsmntok_t *t;
|
2023-01-30 07:24:17 +01:00
|
|
|
int err;
|
|
|
|
sqlite3_stmt *stmt;
|
2023-01-30 07:24:17 +01:00
|
|
|
struct command_result *ret = NULL;
|
2023-01-30 07:24:17 +01:00
|
|
|
|
|
|
|
err = sqlite3_prepare_v2(db, td->update_stmt, -1, &stmt, NULL);
|
|
|
|
if (err != SQLITE_OK) {
|
|
|
|
return command_fail(cmd, LIGHTNINGD, "preparing '%s' failed: %s",
|
|
|
|
td->update_stmt,
|
|
|
|
sqlite3_errmsg(db));
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
json_for_each_arr(i, t, arr) {
|
2023-01-30 07:24:17 +01:00
|
|
|
/* sqlite3 columns are 1-based! */
|
|
|
|
size_t off = 1;
|
2023-02-01 02:58:32 +01:00
|
|
|
u64 this_rowid = next_rowid++;
|
|
|
|
|
|
|
|
/* First entry is always the rowid */
|
|
|
|
sqlite3_bind_int64(stmt, off++, this_rowid);
|
|
|
|
ret = process_json_obj(cmd, buf, t, td, i, this_rowid, parent_rowid, &off, stmt);
|
2023-01-30 07:24:17 +01:00
|
|
|
if (ret)
|
|
|
|
break;
|
2023-01-30 07:24:17 +01:00
|
|
|
sqlite3_reset(stmt);
|
|
|
|
}
|
|
|
|
sqlite3_finalize(stmt);
|
2023-01-30 07:24:17 +01:00
|
|
|
return ret;
|
|
|
|
}
|
2023-01-30 07:24:17 +01:00
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
/* Process top-level JSON result object */
|
|
|
|
static struct command_result *process_json_result(struct command *cmd,
|
|
|
|
const char *buf,
|
|
|
|
const jsmntok_t *result,
|
|
|
|
const struct table_desc *td)
|
|
|
|
{
|
|
|
|
return process_json_list(cmd, buf,
|
|
|
|
json_get_member(buf, result, td->arrname),
|
|
|
|
NULL, td);
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
static struct command_result *default_list_done(struct command *cmd,
|
|
|
|
const char *buf,
|
|
|
|
const jsmntok_t *result,
|
|
|
|
struct db_query *dbq)
|
|
|
|
{
|
|
|
|
const struct table_desc *td = dbq->tables[0];
|
|
|
|
struct command_result *ret;
|
|
|
|
int err;
|
|
|
|
char *errmsg;
|
|
|
|
|
|
|
|
/* FIXME: this is where a wait / pagination API is useful! */
|
|
|
|
err = sqlite3_exec(db, tal_fmt(tmpctx, "DELETE FROM %s;", td->name),
|
|
|
|
NULL, NULL, &errmsg);
|
|
|
|
if (err != SQLITE_OK) {
|
|
|
|
return command_fail(cmd, LIGHTNINGD, "cleaning '%s' failed: %s",
|
|
|
|
td->name, errmsg);
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
ret = process_json_result(cmd, buf, result, td);
|
2023-01-30 07:24:17 +01:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return one_refresh_done(cmd, dbq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct command_result *default_refresh(struct command *cmd,
|
|
|
|
const struct table_desc *td,
|
|
|
|
struct db_query *dbq)
|
|
|
|
{
|
|
|
|
struct out_req *req;
|
2023-01-30 07:24:17 +01:00
|
|
|
req = jsonrpc_request_start(cmd->plugin, cmd, td->cmdname,
|
2023-01-30 07:24:17 +01:00
|
|
|
default_list_done, forward_error,
|
|
|
|
dbq);
|
|
|
|
return send_outreq(cmd->plugin, req);
|
2023-01-30 07:24:17 +01:00
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
static bool extract_scid(int gosstore_fd, size_t off, u16 type,
|
|
|
|
struct short_channel_id *scid)
|
|
|
|
{
|
|
|
|
be64 raw;
|
|
|
|
|
|
|
|
/* BOLT #7:
|
|
|
|
* 1. type: 258 (`channel_update`)
|
|
|
|
* 2. data:
|
|
|
|
* * [`signature`:`signature`]
|
|
|
|
* * [`chain_hash`:`chain_hash`]
|
|
|
|
* * [`short_channel_id`:`short_channel_id`]
|
|
|
|
*/
|
|
|
|
/* Note that first two bytes are message type */
|
|
|
|
const size_t update_scid_off = 2 + (64 + 32);
|
|
|
|
|
|
|
|
off += sizeof(struct gossip_hdr);
|
|
|
|
/* For delete_chan scid immediately follows type */
|
|
|
|
if (type == WIRE_GOSSIP_STORE_DELETE_CHAN)
|
|
|
|
off += 2;
|
|
|
|
else if (type == WIRE_GOSSIP_STORE_PRIVATE_UPDATE)
|
|
|
|
/* Prepend header */
|
|
|
|
off += 2 + 2 + update_scid_off;
|
|
|
|
else if (type == WIRE_CHANNEL_UPDATE)
|
|
|
|
off += update_scid_off;
|
|
|
|
else
|
|
|
|
abort();
|
|
|
|
|
|
|
|
if (pread(gosstore_fd, &raw, sizeof(raw), off) != sizeof(raw))
|
|
|
|
return false;
|
|
|
|
scid->u64 = be64_to_cpu(raw);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Note: this deletes up to two rows, one for each direction. */
|
|
|
|
static void delete_channel_from_db(struct command *cmd,
|
|
|
|
struct short_channel_id scid)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
char *errmsg;
|
|
|
|
|
|
|
|
err = sqlite3_exec(db,
|
|
|
|
tal_fmt(tmpctx,
|
|
|
|
"DELETE FROM channels"
|
|
|
|
" WHERE short_channel_id = '%s'",
|
|
|
|
short_channel_id_to_str(tmpctx, &scid)),
|
|
|
|
NULL, NULL, &errmsg);
|
|
|
|
if (err != SQLITE_OK)
|
|
|
|
plugin_err(cmd->plugin, "Could not delete from channels: %s",
|
|
|
|
errmsg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct command_result *channels_refresh(struct command *cmd,
|
|
|
|
const struct table_desc *td,
|
|
|
|
struct db_query *dbq);
|
|
|
|
|
|
|
|
static struct command_result *listchannels_one_done(struct command *cmd,
|
|
|
|
const char *buf,
|
|
|
|
const jsmntok_t *result,
|
|
|
|
struct db_query *dbq)
|
|
|
|
{
|
|
|
|
const struct table_desc *td = dbq->tables[0];
|
|
|
|
struct command_result *ret;
|
|
|
|
|
|
|
|
ret = process_json_result(cmd, buf, result, td);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* Continue to refresh more channels */
|
|
|
|
return channels_refresh(cmd, td, dbq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct command_result *channels_refresh(struct command *cmd,
|
|
|
|
const struct table_desc *td,
|
|
|
|
struct db_query *dbq)
|
|
|
|
{
|
|
|
|
struct out_req *req;
|
|
|
|
size_t msglen;
|
|
|
|
u16 type, flags;
|
|
|
|
|
|
|
|
if (gosstore_fd == -1) {
|
|
|
|
gosstore_fd = open("gossip_store", O_RDONLY);
|
|
|
|
if (gosstore_fd == -1)
|
|
|
|
plugin_err(cmd->plugin, "Could not open gossip_store: %s",
|
|
|
|
strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* First time, set off to end and load from scratch */
|
|
|
|
if (gosstore_channels_off == 0) {
|
|
|
|
gosstore_channels_off = find_gossip_store_end(gosstore_fd, 1);
|
|
|
|
return default_refresh(cmd, td, dbq);
|
|
|
|
}
|
|
|
|
|
|
|
|
plugin_log(cmd->plugin, LOG_DBG, "Refreshing channels @%zu...",
|
|
|
|
gosstore_channels_off);
|
|
|
|
|
|
|
|
/* OK, try catching up! */
|
|
|
|
while (gossip_store_readhdr(gosstore_fd, gosstore_channels_off,
|
|
|
|
&msglen, NULL, &flags, &type)) {
|
|
|
|
struct short_channel_id scid;
|
|
|
|
size_t off = gosstore_channels_off;
|
|
|
|
|
|
|
|
gosstore_channels_off += sizeof(struct gossip_hdr) + msglen;
|
|
|
|
|
|
|
|
if (flags & GOSSIP_STORE_DELETED_BIT)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (type == WIRE_GOSSIP_STORE_ENDED) {
|
|
|
|
/* Force a reopen */
|
|
|
|
gosstore_channels_off = gosstore_nodes_off = 0;
|
|
|
|
close(gosstore_fd);
|
|
|
|
gosstore_fd = -1;
|
|
|
|
return channels_refresh(cmd, td, dbq);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we see a channel_announcement, we don't care until we
|
|
|
|
* see the channel_update */
|
|
|
|
if (type == WIRE_CHANNEL_UPDATE
|
|
|
|
|| type == WIRE_GOSSIP_STORE_PRIVATE_UPDATE) {
|
|
|
|
/* This can fail if entry not fully written yet. */
|
|
|
|
if (!extract_scid(gosstore_fd, off, type, &scid)) {
|
|
|
|
gosstore_channels_off = off;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
plugin_log(cmd->plugin, LOG_DBG, "Refreshing channel: %s",
|
|
|
|
type_to_string(tmpctx, struct short_channel_id, &scid));
|
|
|
|
/* FIXME: sqlite 3.24.0 (2018-06-04) added UPSERT, but
|
|
|
|
* we don't require it. */
|
|
|
|
delete_channel_from_db(cmd, scid);
|
|
|
|
req = jsonrpc_request_start(cmd->plugin, cmd, "listchannels",
|
|
|
|
listchannels_one_done,
|
|
|
|
forward_error,
|
|
|
|
dbq);
|
|
|
|
json_add_short_channel_id(req->js, "short_channel_id", &scid);
|
|
|
|
return send_outreq(cmd->plugin, req);
|
|
|
|
} else if (type == WIRE_GOSSIP_STORE_DELETE_CHAN) {
|
|
|
|
/* This can fail if entry not fully written yet. */
|
|
|
|
if (!extract_scid(gosstore_fd, off, type, &scid)) {
|
|
|
|
gosstore_channels_off = off;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
plugin_log(cmd->plugin, LOG_DBG, "Deleting channel: %s",
|
|
|
|
type_to_string(tmpctx, struct short_channel_id, &scid));
|
|
|
|
delete_channel_from_db(cmd, scid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return one_refresh_done(cmd, dbq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct command_result *nodes_refresh(struct command *cmd,
|
|
|
|
const struct table_desc *td,
|
|
|
|
struct db_query *dbq);
|
|
|
|
|
|
|
|
static struct command_result *listnodes_one_done(struct command *cmd,
|
|
|
|
const char *buf,
|
|
|
|
const jsmntok_t *result,
|
|
|
|
struct db_query *dbq)
|
|
|
|
{
|
|
|
|
const struct table_desc *td = dbq->tables[0];
|
|
|
|
struct command_result *ret;
|
|
|
|
|
|
|
|
ret = process_json_result(cmd, buf, result, td);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* Continue to refresh more nodes */
|
|
|
|
return nodes_refresh(cmd, td, dbq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void delete_node_from_db(struct command *cmd,
|
|
|
|
const struct node_id *id)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
char *errmsg;
|
|
|
|
|
|
|
|
err = sqlite3_exec(db,
|
|
|
|
tal_fmt(tmpctx,
|
|
|
|
"DELETE FROM nodes"
|
2023-03-06 06:33:43 +01:00
|
|
|
" WHERE nodeid = X'%s'",
|
2023-01-30 07:24:17 +01:00
|
|
|
node_id_to_hexstr(tmpctx, id)),
|
|
|
|
NULL, NULL, &errmsg);
|
|
|
|
if (err != SQLITE_OK)
|
|
|
|
plugin_err(cmd->plugin, "Could not delete from nodes: %s",
|
|
|
|
errmsg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool extract_node_id(int gosstore_fd, size_t off, u16 type,
|
|
|
|
struct node_id *id)
|
|
|
|
{
|
|
|
|
/* BOLT #7:
|
|
|
|
* 1. type: 257 (`node_announcement`)
|
|
|
|
* 2. data:
|
|
|
|
* * [`signature`:`signature`]
|
|
|
|
* * [`u16`:`flen`]
|
|
|
|
* * [`flen*byte`:`features`]
|
|
|
|
* * [`u32`:`timestamp`]
|
|
|
|
* * [`point`:`node_id`]
|
|
|
|
*/
|
|
|
|
const size_t feature_len_off = 2 + 64;
|
|
|
|
be16 flen;
|
|
|
|
size_t node_id_off;
|
|
|
|
|
|
|
|
off += sizeof(struct gossip_hdr);
|
|
|
|
|
|
|
|
if (pread(gosstore_fd, &flen, sizeof(flen), off + feature_len_off)
|
|
|
|
!= sizeof(flen))
|
|
|
|
return false;
|
|
|
|
|
2023-03-06 06:32:20 +01:00
|
|
|
node_id_off = off + feature_len_off + 2 + be16_to_cpu(flen) + 4;
|
2023-01-30 07:24:17 +01:00
|
|
|
if (pread(gosstore_fd, id, sizeof(*id), node_id_off) != sizeof(*id))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct command_result *nodes_refresh(struct command *cmd,
|
|
|
|
const struct table_desc *td,
|
|
|
|
struct db_query *dbq)
|
|
|
|
{
|
|
|
|
struct out_req *req;
|
|
|
|
size_t msglen;
|
|
|
|
u16 type, flags;
|
|
|
|
|
|
|
|
if (gosstore_fd == -1) {
|
|
|
|
gosstore_fd = open("gossip_store", O_RDONLY);
|
|
|
|
if (gosstore_fd == -1)
|
|
|
|
plugin_err(cmd->plugin, "Could not open gossip_store: %s",
|
|
|
|
strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* First time, set off to end and load from scratch */
|
|
|
|
if (gosstore_nodes_off == 0) {
|
|
|
|
gosstore_nodes_off = find_gossip_store_end(gosstore_fd, 1);
|
|
|
|
return default_refresh(cmd, td, dbq);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* OK, try catching up! */
|
|
|
|
while (gossip_store_readhdr(gosstore_fd, gosstore_nodes_off,
|
|
|
|
&msglen, NULL, &flags, &type)) {
|
|
|
|
struct node_id id;
|
|
|
|
size_t off = gosstore_nodes_off;
|
|
|
|
|
|
|
|
gosstore_nodes_off += sizeof(struct gossip_hdr) + msglen;
|
|
|
|
|
|
|
|
if (flags & GOSSIP_STORE_DELETED_BIT)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (type == WIRE_GOSSIP_STORE_ENDED) {
|
|
|
|
/* Force a reopen */
|
|
|
|
gosstore_nodes_off = gosstore_channels_off = 0;
|
|
|
|
close(gosstore_fd);
|
|
|
|
gosstore_fd = -1;
|
|
|
|
return nodes_refresh(cmd, td, dbq);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type == WIRE_NODE_ANNOUNCEMENT) {
|
|
|
|
/* This can fail if entry not fully written yet. */
|
|
|
|
if (!extract_node_id(gosstore_fd, off, type, &id)) {
|
|
|
|
gosstore_nodes_off = off;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: sqlite 3.24.0 (2018-06-04) added UPSERT, but
|
|
|
|
* we don't require it. */
|
|
|
|
delete_node_from_db(cmd, &id);
|
|
|
|
req = jsonrpc_request_start(cmd->plugin, cmd, "listnodes",
|
|
|
|
listnodes_one_done,
|
|
|
|
forward_error,
|
|
|
|
dbq);
|
|
|
|
json_add_node_id(req->js, "id", &id);
|
|
|
|
return send_outreq(cmd->plugin, req);
|
|
|
|
}
|
|
|
|
/* FIXME: Add WIRE_GOSSIP_STORE_DELETE_NODE marker! */
|
|
|
|
}
|
|
|
|
|
|
|
|
return one_refresh_done(cmd, dbq);
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
static struct command_result *refresh_tables(struct command *cmd,
|
|
|
|
struct db_query *dbq)
|
|
|
|
{
|
|
|
|
const struct table_desc *td;
|
|
|
|
|
|
|
|
if (tal_count(dbq->tables) == 0)
|
|
|
|
return refresh_complete(cmd, dbq);
|
|
|
|
|
|
|
|
td = dbq->tables[0];
|
2023-01-30 07:24:17 +01:00
|
|
|
return td->refresh(cmd, dbq->tables[0], dbq);
|
2023-01-30 07:24:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct command_result *json_sql(struct command *cmd,
|
|
|
|
const char *buffer,
|
|
|
|
const jsmntok_t *params)
|
|
|
|
{
|
|
|
|
struct db_query *dbq = tal(cmd, struct db_query);
|
|
|
|
const char *query;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (!param(cmd, buffer, params,
|
|
|
|
p_req("query", param_string, &query),
|
|
|
|
NULL))
|
|
|
|
return command_param_failed();
|
|
|
|
|
|
|
|
dbq->tables = tal_arr(dbq, struct table_desc *, 0);
|
|
|
|
dbq->authfail = NULL;
|
|
|
|
|
|
|
|
/* This both checks we're not altering, *and* tells us what
|
|
|
|
* tables to refresh. */
|
|
|
|
err = sqlite3_set_authorizer(db, sqlite_authorize, dbq);
|
|
|
|
if (err != SQLITE_OK) {
|
|
|
|
plugin_err(cmd->plugin, "Could not set authorizer: %s",
|
|
|
|
sqlite3_errmsg(db));
|
|
|
|
}
|
|
|
|
|
|
|
|
err = sqlite3_prepare_v2(db, query, -1, &dbq->stmt, NULL);
|
|
|
|
sqlite3_set_authorizer(db, NULL, NULL);
|
|
|
|
|
|
|
|
if (err != SQLITE_OK) {
|
|
|
|
char *errmsg = tal_fmt(tmpctx, "query failed with %s", sqlite3_errmsg(db));
|
|
|
|
if (dbq->authfail)
|
|
|
|
tal_append_fmt(&errmsg, " (%s)", dbq->authfail);
|
|
|
|
return command_fail(cmd, LIGHTNINGD, "%s", errmsg);
|
|
|
|
}
|
|
|
|
|
|
|
|
return refresh_tables(cmd, dbq);
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
static bool ignore_column(const struct table_desc *td, const jsmntok_t *t)
|
|
|
|
{
|
|
|
|
/* We don't use peers.log, since it'll always be empty unless we were to
|
|
|
|
* ask for it in listpeers, and it's not very useful. */
|
|
|
|
if (streq(td->name, "peers") && json_tok_streq(schemas, t, "log"))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:18 +01:00
|
|
|
static struct command_result *param_tablename(struct command *cmd,
|
|
|
|
const char *name,
|
|
|
|
const char *buffer,
|
|
|
|
const jsmntok_t *tok,
|
|
|
|
struct table_desc **td)
|
|
|
|
{
|
|
|
|
*td = strmap_getn(&tablemap, buffer + tok->start,
|
|
|
|
tok->end - tok->start);
|
|
|
|
if (!*td)
|
|
|
|
return command_fail_badparam(cmd, name, buffer, tok,
|
|
|
|
"Unknown table");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void json_add_column(struct json_stream *js,
|
|
|
|
const char *dbname,
|
|
|
|
const char *sqltypename)
|
|
|
|
{
|
|
|
|
json_object_start(js, NULL);
|
|
|
|
json_add_string(js, "name", dbname);
|
|
|
|
json_add_string(js, "type", sqltypename);
|
|
|
|
json_object_end(js);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void json_add_columns(struct json_stream *js,
|
|
|
|
const struct table_desc *td)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < tal_count(td->columns); i++) {
|
2024-01-25 01:28:53 +01:00
|
|
|
if (td->columns[i]->sub) {
|
|
|
|
if (td->columns[i]->sub->is_subobject)
|
|
|
|
json_add_columns(js, td->columns[i]->sub);
|
2023-01-30 07:24:18 +01:00
|
|
|
continue;
|
|
|
|
}
|
2024-01-25 01:28:53 +01:00
|
|
|
json_add_column(js, td->columns[i]->dbname,
|
|
|
|
fieldtypemap[td->columns[i]->ftype].sqltype);
|
2023-01-30 07:24:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void json_add_schema(struct json_stream *js,
|
|
|
|
const struct table_desc *td)
|
|
|
|
{
|
|
|
|
bool have_indices;
|
|
|
|
|
|
|
|
json_object_start(js, NULL);
|
|
|
|
json_add_string(js, "tablename", td->name);
|
|
|
|
/* This needs to be an array, not a dictionary, since dicts
|
|
|
|
* are often treated as unordered, and order is critical! */
|
|
|
|
json_array_start(js, "columns");
|
2023-02-01 02:58:32 +01:00
|
|
|
json_add_column(js, "rowid", "INTEGER");
|
2023-01-30 07:24:18 +01:00
|
|
|
if (td->parent) {
|
|
|
|
json_add_column(js, "row", "INTEGER");
|
|
|
|
json_add_column(js, "arrindex", "INTEGER");
|
|
|
|
}
|
|
|
|
json_add_columns(js, td);
|
|
|
|
json_array_end(js);
|
|
|
|
|
|
|
|
/* Don't print indices entry unless we have an index! */
|
|
|
|
have_indices = false;
|
|
|
|
for (size_t i = 0; i < ARRAY_SIZE(indices); i++) {
|
|
|
|
if (!streq(indices[i].tablename, td->name))
|
|
|
|
continue;
|
|
|
|
if (!have_indices) {
|
|
|
|
json_array_start(js, "indices");
|
|
|
|
have_indices = true;
|
|
|
|
}
|
|
|
|
json_array_start(js, NULL);
|
|
|
|
for (size_t j = 0; j < ARRAY_SIZE(indices[i].fields); j++) {
|
|
|
|
if (indices[i].fields[j])
|
|
|
|
json_add_string(js, NULL, indices[i].fields[j]);
|
|
|
|
}
|
|
|
|
json_array_end(js);
|
|
|
|
}
|
|
|
|
if (have_indices)
|
|
|
|
json_array_end(js);
|
|
|
|
json_object_end(js);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool add_one_schema(const char *member, struct table_desc *td,
|
|
|
|
struct json_stream *js)
|
|
|
|
{
|
|
|
|
json_add_schema(js, td);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct command_result *json_listsqlschemas(struct command *cmd,
|
|
|
|
const char *buffer,
|
|
|
|
const jsmntok_t *params)
|
|
|
|
{
|
|
|
|
struct table_desc *td;
|
|
|
|
struct json_stream *ret;
|
|
|
|
|
|
|
|
if (!param(cmd, buffer, params,
|
|
|
|
p_opt("table", param_tablename, &td),
|
|
|
|
NULL))
|
|
|
|
return command_param_failed();
|
|
|
|
|
|
|
|
ret = jsonrpc_stream_success(cmd);
|
|
|
|
json_array_start(ret, "schemas");
|
|
|
|
if (td)
|
|
|
|
json_add_schema(ret, td);
|
|
|
|
else
|
|
|
|
strmap_iterate(&tablemap, add_one_schema, ret);
|
|
|
|
json_array_end(ret);
|
|
|
|
return command_finished(cmd, ret);
|
|
|
|
}
|
|
|
|
|
2023-03-20 01:19:42 +01:00
|
|
|
/* Adds a sub_object to this sql statement (and sub-sub etc) */
|
|
|
|
static void add_sub_object(char **update_stmt, char **create_stmt,
|
|
|
|
const char **sep, struct table_desc *sub)
|
|
|
|
{
|
|
|
|
/* sub-arrays are a completely separate table. */
|
|
|
|
if (!sub->is_subobject)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* sub-objects are folded into this table. */
|
|
|
|
for (size_t j = 0; j < tal_count(sub->columns); j++) {
|
2024-01-25 01:28:53 +01:00
|
|
|
const struct column *subcol = sub->columns[j];
|
2023-03-20 01:19:42 +01:00
|
|
|
|
|
|
|
if (subcol->sub) {
|
|
|
|
add_sub_object(update_stmt, create_stmt, sep,
|
|
|
|
subcol->sub);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
tal_append_fmt(update_stmt, "%s?", *sep);
|
|
|
|
tal_append_fmt(create_stmt, "%s%s %s",
|
|
|
|
*sep,
|
|
|
|
subcol->dbname,
|
|
|
|
fieldtypemap[subcol->ftype].sqltype);
|
|
|
|
*sep = ",";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:18 +01:00
|
|
|
/* Creates sql statements, initializes table */
|
2023-01-30 07:24:17 +01:00
|
|
|
static void finish_td(struct plugin *plugin, struct table_desc *td)
|
2023-01-30 07:24:17 +01:00
|
|
|
{
|
|
|
|
char *create_stmt;
|
|
|
|
int err;
|
|
|
|
char *errmsg;
|
2023-01-30 07:24:17 +01:00
|
|
|
const char *sep = "";
|
2023-01-30 07:24:17 +01:00
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
/* subobject are separate at JSON level, folded at db level! */
|
|
|
|
if (td->is_subobject)
|
2023-03-20 01:19:47 +01:00
|
|
|
/* But it might have sub-sub objects! */
|
|
|
|
goto do_subtables;
|
2023-01-30 07:24:17 +01:00
|
|
|
|
2023-02-01 02:58:32 +01:00
|
|
|
/* We make an explicit rowid in each table, for subtables to access. This is
|
|
|
|
* becuase the implicit rowid can't be used as a foreign key! */
|
|
|
|
create_stmt = tal_fmt(tmpctx, "CREATE TABLE %s (rowid INTEGER PRIMARY KEY, ",
|
|
|
|
td->name);
|
|
|
|
td->update_stmt = tal_fmt(td, "INSERT INTO %s VALUES (?, ", td->name);
|
2023-01-30 07:24:17 +01:00
|
|
|
|
|
|
|
/* If we're a child array, we reference the parent column */
|
|
|
|
if (td->parent) {
|
2023-03-20 01:19:47 +01:00
|
|
|
/* But if parent is a subobject, we reference the outer! */
|
|
|
|
struct table_desc *parent = td->parent;
|
|
|
|
while (parent->is_subobject)
|
|
|
|
parent = parent->parent;
|
2023-01-30 07:24:17 +01:00
|
|
|
tal_append_fmt(&create_stmt,
|
|
|
|
"row INTEGER REFERENCES %s(rowid) ON DELETE CASCADE,"
|
|
|
|
" arrindex INTEGER",
|
2023-03-20 01:19:47 +01:00
|
|
|
parent->name);
|
2023-01-30 07:24:17 +01:00
|
|
|
tal_append_fmt(&td->update_stmt, "?,?");
|
|
|
|
sep = ",";
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
for (size_t i = 0; i < tal_count(td->columns); i++) {
|
2024-01-25 01:28:53 +01:00
|
|
|
const struct column *col = td->columns[i];
|
2023-01-30 07:24:17 +01:00
|
|
|
|
|
|
|
if (col->sub) {
|
2023-03-20 01:19:42 +01:00
|
|
|
add_sub_object(&td->update_stmt, &create_stmt,
|
|
|
|
&sep, col->sub);
|
2023-01-30 07:24:17 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
tal_append_fmt(&td->update_stmt, "%s?", sep);
|
2023-01-30 07:24:17 +01:00
|
|
|
tal_append_fmt(&create_stmt, "%s%s %s",
|
2023-01-30 07:24:17 +01:00
|
|
|
sep,
|
|
|
|
col->dbname,
|
|
|
|
fieldtypemap[col->ftype].sqltype);
|
|
|
|
sep = ",";
|
2023-01-30 07:24:17 +01:00
|
|
|
}
|
|
|
|
tal_append_fmt(&create_stmt, ");");
|
|
|
|
tal_append_fmt(&td->update_stmt, ");");
|
|
|
|
|
|
|
|
err = sqlite3_exec(db, create_stmt, NULL, NULL, &errmsg);
|
|
|
|
if (err != SQLITE_OK)
|
|
|
|
plugin_err(plugin, "Could not create %s: %s", td->name, errmsg);
|
|
|
|
|
2023-03-20 01:19:47 +01:00
|
|
|
do_subtables:
|
2023-01-30 07:24:17 +01:00
|
|
|
/* Now do any children */
|
|
|
|
for (size_t i = 0; i < tal_count(td->columns); i++) {
|
2024-01-25 01:28:53 +01:00
|
|
|
const struct column *col = td->columns[i];
|
2023-01-30 07:24:17 +01:00
|
|
|
if (col->sub)
|
|
|
|
finish_td(plugin, col->sub);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Don't use SQL keywords as column names: sure, you can use quotes,
|
|
|
|
* but it's a PITA. */
|
|
|
|
static const char *db_column_name(const tal_t *ctx,
|
|
|
|
const struct table_desc *td,
|
|
|
|
const jsmntok_t *nametok)
|
|
|
|
{
|
|
|
|
const char *name = json_strdup(tmpctx, schemas, nametok);
|
|
|
|
|
|
|
|
if (streq(name, "index"))
|
|
|
|
name = tal_strdup(tmpctx, "idx");
|
|
|
|
|
|
|
|
/* Prepend td->name to make column unique in table. */
|
|
|
|
if (td->is_subobject)
|
|
|
|
return tal_fmt(ctx, "%s_%s", td->cmdname, name);
|
|
|
|
|
|
|
|
return tal_steal(ctx, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove 'list', turn - into _ in name */
|
|
|
|
static const char *db_table_name(const tal_t *ctx, const char *cmdname)
|
|
|
|
{
|
|
|
|
const char *list = strstr(cmdname, "list");
|
|
|
|
char *ret = tal_arr(ctx, char, strlen(cmdname) + 1), *dst = ret;
|
|
|
|
const char *src = cmdname;
|
|
|
|
|
|
|
|
while (*src) {
|
|
|
|
if (src == list)
|
|
|
|
src += strlen("list");
|
|
|
|
else if (cisalnum(*src))
|
|
|
|
*(dst++) = *(src++);
|
|
|
|
else {
|
|
|
|
(*dst++) = '_';
|
|
|
|
src++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*dst = '\0';
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2024-01-25 01:28:53 +01:00
|
|
|
static struct table_desc *new_table_desc(const tal_t *ctx,
|
|
|
|
struct table_desc *parent,
|
2023-01-30 07:24:17 +01:00
|
|
|
const jsmntok_t *cmd,
|
|
|
|
const jsmntok_t *arrname,
|
|
|
|
bool is_subobject)
|
|
|
|
{
|
|
|
|
struct table_desc *td;
|
|
|
|
const char *name;
|
|
|
|
|
2024-01-25 01:28:53 +01:00
|
|
|
td = tal(ctx, struct table_desc);
|
2023-01-30 07:24:17 +01:00
|
|
|
td->cmdname = json_strdup(td, schemas, cmd);
|
|
|
|
name = db_table_name(tmpctx, td->cmdname);
|
|
|
|
if (!parent)
|
|
|
|
td->name = tal_steal(td, name);
|
|
|
|
else
|
|
|
|
td->name = tal_fmt(td, "%s_%s", parent->name, name);
|
|
|
|
td->parent = parent;
|
|
|
|
td->is_subobject = is_subobject;
|
|
|
|
td->arrname = json_strdup(td, schemas, arrname);
|
2024-01-25 01:28:53 +01:00
|
|
|
td->columns = tal_arr(td, struct column *, 0);
|
2023-01-30 07:24:17 +01:00
|
|
|
if (streq(td->name, "channels"))
|
|
|
|
td->refresh = channels_refresh;
|
|
|
|
else if (streq(td->name, "nodes"))
|
|
|
|
td->refresh = nodes_refresh;
|
|
|
|
else
|
|
|
|
td->refresh = default_refresh;
|
2023-01-30 07:24:18 +01:00
|
|
|
|
|
|
|
/* sub-objects are a JSON thing, not a real table! */
|
|
|
|
if (!td->is_subobject)
|
|
|
|
strmap_add(&tablemap, td->name, td);
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
return td;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Recursion */
|
|
|
|
static void add_table_object(struct table_desc *td, const jsmntok_t *tok);
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
/* Simple case for arrays of a simple type. */
|
|
|
|
static void add_table_singleton(struct table_desc *td,
|
|
|
|
const jsmntok_t *name,
|
|
|
|
const jsmntok_t *tok)
|
|
|
|
{
|
2024-01-25 01:28:53 +01:00
|
|
|
struct column *col = tal(td->columns, struct column);
|
2023-01-30 07:24:17 +01:00
|
|
|
const jsmntok_t *type;
|
|
|
|
|
|
|
|
/* FIXME: We would need to return false here and delete table! */
|
|
|
|
assert(!ignore_column(td, tok));
|
|
|
|
type = json_get_member(schemas, tok, "type");
|
|
|
|
|
2024-01-25 01:28:53 +01:00
|
|
|
col->ftype = find_fieldtype(type);
|
|
|
|
col->sub = NULL;
|
2023-01-30 07:24:17 +01:00
|
|
|
/* We name column after the JSON parent field; but jsonname is NULL so we
|
|
|
|
* know to expect an array not a member. */
|
2024-01-25 01:28:53 +01:00
|
|
|
col->dbname = db_column_name(col, td, name);
|
|
|
|
col->jsonname = NULL;
|
2023-01-30 07:24:17 +01:00
|
|
|
tal_arr_expand(&td->columns, col);
|
|
|
|
}
|
|
|
|
|
2024-01-25 01:28:53 +01:00
|
|
|
static bool add_deprecated(const char *buffer, const jsmntok_t *tok,
|
|
|
|
struct column *col)
|
2023-01-30 07:24:18 +01:00
|
|
|
{
|
2024-01-25 01:28:53 +01:00
|
|
|
const char *err;
|
2024-01-25 01:28:53 +01:00
|
|
|
u32 vnum;
|
|
|
|
|
2024-01-25 01:28:53 +01:00
|
|
|
col->depr_start = col->depr_end = NULL;
|
2024-01-25 01:28:53 +01:00
|
|
|
err = json_scan(tmpctx, schemas, tok,
|
2024-01-25 01:28:53 +01:00
|
|
|
"{deprecated?:[0:%,1:%]}",
|
|
|
|
JSON_SCAN_TAL(col, json_strdup, &col->depr_start),
|
|
|
|
JSON_SCAN_TAL(col, json_strdup, &col->depr_end));
|
2024-01-25 01:28:53 +01:00
|
|
|
assert(!err);
|
2024-01-25 01:28:53 +01:00
|
|
|
if (!col->depr_start)
|
2023-01-30 07:24:18 +01:00
|
|
|
return true;
|
|
|
|
|
2024-01-25 01:28:53 +01:00
|
|
|
/* If it was deprecated before our release, we don't want it at all. */
|
|
|
|
vnum = version_to_number(col->depr_start);
|
2024-01-25 01:28:53 +01:00
|
|
|
assert(vnum);
|
2024-01-25 01:28:53 +01:00
|
|
|
if (vnum <= version_to_number("v23.02"))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
2023-01-30 07:24:18 +01:00
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
static void add_table_properties(struct table_desc *td,
|
|
|
|
const jsmntok_t *properties)
|
|
|
|
{
|
|
|
|
const jsmntok_t *t;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
json_for_each_obj(i, t, properties) {
|
2024-01-25 01:28:53 +01:00
|
|
|
const jsmntok_t *type;
|
2024-01-25 01:28:53 +01:00
|
|
|
struct column *col;
|
2023-01-30 07:24:17 +01:00
|
|
|
|
|
|
|
if (ignore_column(td, t))
|
|
|
|
continue;
|
|
|
|
type = json_get_member(schemas, t+1, "type");
|
|
|
|
/* Stub properties don't have types, it should exist in
|
|
|
|
* another branch with actual types, so ignore this */
|
|
|
|
if (!type)
|
|
|
|
continue;
|
2023-01-30 07:24:18 +01:00
|
|
|
|
2024-01-25 01:28:53 +01:00
|
|
|
col = tal(td->columns, struct column);
|
|
|
|
|
2024-01-25 01:28:53 +01:00
|
|
|
/* Some things are so old we ignore them. */
|
|
|
|
if (!add_deprecated(schemas, t+1, col)) {
|
2024-01-25 01:28:53 +01:00
|
|
|
tal_free(col);
|
2023-01-30 07:24:18 +01:00
|
|
|
continue;
|
2024-01-25 01:28:53 +01:00
|
|
|
}
|
2023-01-30 07:24:18 +01:00
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
if (json_tok_streq(schemas, type, "array")) {
|
|
|
|
const jsmntok_t *items;
|
|
|
|
|
|
|
|
items = json_get_member(schemas, t+1, "items");
|
|
|
|
type = json_get_member(schemas, items, "type");
|
|
|
|
|
2024-01-25 01:28:53 +01:00
|
|
|
col->sub = new_table_desc(col, td, t, t, false);
|
2023-01-30 07:24:17 +01:00
|
|
|
/* Array of primitives? Treat as single-entry obj */
|
|
|
|
if (!json_tok_streq(schemas, type, "object"))
|
2024-01-25 01:28:53 +01:00
|
|
|
add_table_singleton(col->sub, t, items);
|
2023-01-30 07:24:17 +01:00
|
|
|
else
|
2024-01-25 01:28:53 +01:00
|
|
|
add_table_object(col->sub, items);
|
2023-01-30 07:24:17 +01:00
|
|
|
} else if (json_tok_streq(schemas, type, "object")) {
|
2024-01-25 01:28:53 +01:00
|
|
|
col->sub = new_table_desc(col, td, t, t, true);
|
|
|
|
add_table_object(col->sub, t+1);
|
2023-01-30 07:24:17 +01:00
|
|
|
} else {
|
2024-01-25 01:28:53 +01:00
|
|
|
col->ftype = find_fieldtype(type);
|
|
|
|
col->sub = NULL;
|
2023-01-30 07:24:17 +01:00
|
|
|
}
|
2024-01-25 01:28:53 +01:00
|
|
|
col->dbname = db_column_name(col, td, t);
|
2023-01-30 07:24:17 +01:00
|
|
|
/* Some schemas repeat, assume they're the same */
|
2024-01-25 01:28:53 +01:00
|
|
|
if (find_column(td, col->dbname)) {
|
|
|
|
tal_free(col);
|
2023-01-30 07:24:17 +01:00
|
|
|
} else {
|
2024-01-25 01:28:53 +01:00
|
|
|
col->jsonname = json_strdup(col, schemas, t);
|
2023-01-30 07:24:17 +01:00
|
|
|
tal_arr_expand(&td->columns, col);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* tok is the JSON schema member for an object */
|
|
|
|
static void add_table_object(struct table_desc *td, const jsmntok_t *tok)
|
|
|
|
{
|
|
|
|
const jsmntok_t *t, *properties, *allof, *cond;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
/* This might not exist inside allOf, for example */
|
|
|
|
properties = json_get_member(schemas, tok, "properties");
|
|
|
|
if (properties)
|
|
|
|
add_table_properties(td, properties);
|
|
|
|
|
|
|
|
allof = json_get_member(schemas, tok, "allOf");
|
|
|
|
if (allof) {
|
|
|
|
json_for_each_arr(i, t, allof)
|
|
|
|
add_table_object(td, t);
|
|
|
|
}
|
|
|
|
/* We often find interesting things in then and else branches! */
|
|
|
|
cond = json_get_member(schemas, tok, "then");
|
|
|
|
if (cond)
|
|
|
|
add_table_object(td, cond);
|
|
|
|
cond = json_get_member(schemas, tok, "else");
|
|
|
|
if (cond)
|
|
|
|
add_table_object(td, cond);
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:18 +01:00
|
|
|
/* plugin is NULL if we're just doing --print-docs */
|
2023-01-30 07:24:17 +01:00
|
|
|
static void init_tablemap(struct plugin *plugin)
|
|
|
|
{
|
|
|
|
const jsmntok_t *toks, *t;
|
2024-01-25 01:28:53 +01:00
|
|
|
const tal_t *ctx;
|
2023-01-30 07:24:17 +01:00
|
|
|
size_t i;
|
|
|
|
|
2024-01-25 01:28:53 +01:00
|
|
|
if (plugin)
|
|
|
|
ctx = plugin;
|
|
|
|
else
|
|
|
|
ctx = tmpctx;
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
strmap_init(&tablemap);
|
|
|
|
|
|
|
|
toks = json_parse_simple(tmpctx, schemas, strlen(schemas));
|
|
|
|
json_for_each_obj(i, t, toks) {
|
|
|
|
struct table_desc *td;
|
|
|
|
const jsmntok_t *cmd, *items, *type;
|
|
|
|
|
|
|
|
/* First member of properties object is command. */
|
|
|
|
cmd = json_get_member(schemas, t+1, "properties") + 1;
|
|
|
|
|
|
|
|
/* We assume it's an object containing an array of objects */
|
|
|
|
items = json_get_member(schemas, cmd + 1, "items");
|
|
|
|
type = json_get_member(schemas, items, "type");
|
|
|
|
assert(json_tok_streq(schemas, type, "object"));
|
|
|
|
|
2024-01-25 01:28:53 +01:00
|
|
|
td = new_table_desc(ctx, NULL, t, cmd, false);
|
2023-01-30 07:24:17 +01:00
|
|
|
add_table_object(td, items);
|
|
|
|
|
2023-01-30 07:24:18 +01:00
|
|
|
if (plugin)
|
|
|
|
finish_td(plugin, td);
|
2023-01-30 07:24:17 +01:00
|
|
|
}
|
2023-01-30 07:24:17 +01:00
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
static void init_indices(struct plugin *plugin)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < ARRAY_SIZE(indices); i++) {
|
|
|
|
char *errmsg, *cmd;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
cmd = tal_fmt(tmpctx, "CREATE INDEX %s_%zu_idx ON %s (%s",
|
|
|
|
indices[i].tablename, i,
|
|
|
|
indices[i].tablename,
|
|
|
|
indices[i].fields[0]);
|
|
|
|
if (indices[i].fields[1])
|
|
|
|
tal_append_fmt(&cmd, ", %s", indices[i].fields[1]);
|
|
|
|
tal_append_fmt(&cmd, ");");
|
|
|
|
err = sqlite3_exec(db, cmd, NULL, NULL, &errmsg);
|
|
|
|
if (err != SQLITE_OK)
|
|
|
|
plugin_err(plugin, "Failed '%s': %s", cmd, errmsg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
static void memleak_mark_tablemap(struct plugin *p, struct htable *memtable)
|
|
|
|
{
|
|
|
|
memleak_ptr(memtable, dbfilename);
|
|
|
|
memleak_scan_strmap(memtable, &tablemap);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *init(struct plugin *plugin,
|
|
|
|
const char *buf UNUSED, const jsmntok_t *config UNUSED)
|
|
|
|
{
|
|
|
|
db = sqlite_setup(plugin);
|
|
|
|
init_tablemap(plugin);
|
2023-01-30 07:24:17 +01:00
|
|
|
init_indices(plugin);
|
2023-01-30 07:24:17 +01:00
|
|
|
|
|
|
|
plugin_set_memleak_handler(plugin, memleak_mark_tablemap);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct plugin_command commands[] = { {
|
|
|
|
"sql",
|
|
|
|
"misc",
|
|
|
|
"Run {query} and return result",
|
|
|
|
"This is the greatest plugin command ever!",
|
|
|
|
json_sql,
|
|
|
|
},
|
2023-01-30 07:24:18 +01:00
|
|
|
{
|
|
|
|
"listsqlschemas",
|
|
|
|
"misc",
|
|
|
|
"Display schemas for internal sql tables, or just {table}",
|
|
|
|
"This is the greatest plugin command ever!",
|
|
|
|
json_listsqlschemas,
|
|
|
|
},
|
2023-01-30 07:24:17 +01:00
|
|
|
};
|
|
|
|
|
2023-01-30 07:24:18 +01:00
|
|
|
static const char *fmt_indexes(const tal_t *ctx, const char *table)
|
|
|
|
{
|
|
|
|
char *ret = NULL;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < ARRAY_SIZE(indices); i++) {
|
|
|
|
if (!streq(indices[i].tablename, table))
|
|
|
|
continue;
|
|
|
|
/* FIXME: Handle multiple indices! */
|
|
|
|
assert(!ret);
|
|
|
|
BUILD_ASSERT(ARRAY_SIZE(indices[i].fields) == 2);
|
|
|
|
if (indices[i].fields[1])
|
|
|
|
ret = tal_fmt(tmpctx, "%s and %s",
|
|
|
|
indices[i].fields[0],
|
|
|
|
indices[i].fields[1]);
|
|
|
|
else
|
|
|
|
ret = tal_fmt(tmpctx, "%s",
|
|
|
|
indices[i].fields[0]);
|
|
|
|
}
|
|
|
|
if (!ret)
|
|
|
|
return "";
|
|
|
|
return tal_fmt(ctx, " indexed by `%s`", ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_columns(const struct table_desc *td, const char *indent,
|
|
|
|
const char *objsrc)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < tal_count(td->columns); i++) {
|
|
|
|
const char *origin;
|
2024-01-25 01:28:53 +01:00
|
|
|
if (td->columns[i]->sub) {
|
|
|
|
const struct table_desc *subtd = td->columns[i]->sub;
|
2023-01-30 07:24:18 +01:00
|
|
|
|
|
|
|
if (!subtd->is_subobject) {
|
|
|
|
const char *subindent;
|
|
|
|
|
|
|
|
subindent = tal_fmt(tmpctx, "%s ", indent);
|
|
|
|
printf("%s- related table `%s`%s\n",
|
|
|
|
indent, subtd->name, objsrc);
|
|
|
|
printf("%s- `row` (reference to `%s.rowid`, sqltype `INTEGER`)\n"
|
|
|
|
"%s- `arrindex` (index within array, sqltype `INTEGER`)\n",
|
|
|
|
subindent, td->name, subindent);
|
|
|
|
print_columns(subtd, subindent, "");
|
|
|
|
} else {
|
|
|
|
const char *subobjsrc;
|
|
|
|
|
|
|
|
subobjsrc = tal_fmt(tmpctx,
|
|
|
|
", from JSON object `%s`",
|
2024-01-25 01:28:53 +01:00
|
|
|
td->columns[i]->jsonname);
|
2023-01-30 07:24:18 +01:00
|
|
|
print_columns(subtd, indent, subobjsrc);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (streq(objsrc, "")
|
2024-01-25 01:28:53 +01:00
|
|
|
&& td->columns[i]->jsonname
|
|
|
|
&& !streq(td->columns[i]->dbname, td->columns[i]->jsonname)) {
|
2023-01-30 07:24:18 +01:00
|
|
|
origin = tal_fmt(tmpctx, ", from JSON field `%s`",
|
2024-01-25 01:28:53 +01:00
|
|
|
td->columns[i]->jsonname);
|
2023-01-30 07:24:18 +01:00
|
|
|
} else
|
|
|
|
origin = "";
|
|
|
|
printf("%s- `%s` (type `%s`, sqltype `%s`%s%s)\n",
|
2024-01-25 01:28:53 +01:00
|
|
|
indent, td->columns[i]->dbname,
|
|
|
|
fieldtypemap[td->columns[i]->ftype].name,
|
|
|
|
fieldtypemap[td->columns[i]->ftype].sqltype,
|
2023-01-30 07:24:18 +01:00
|
|
|
origin, objsrc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool print_one_table(const char *member,
|
|
|
|
struct table_desc *td,
|
|
|
|
void *unused)
|
|
|
|
{
|
|
|
|
if (td->parent)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
printf("- `%s`%s (see lightning-%s(7))\n",
|
|
|
|
member, fmt_indexes(tmpctx, member), td->cmdname);
|
|
|
|
|
|
|
|
print_columns(td, " ", "");
|
|
|
|
printf("\n");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-01-30 07:24:17 +01:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
setup_locale();
|
2023-01-30 07:24:18 +01:00
|
|
|
|
|
|
|
if (argc == 2 && streq(argv[1], "--print-docs")) {
|
|
|
|
common_setup(argv[0]);
|
|
|
|
/* plugin is NULL, so just sets up tables */
|
|
|
|
init_tablemap(NULL);
|
|
|
|
|
|
|
|
printf("The following tables are currently supported:\n");
|
|
|
|
strmap_iterate(&tablemap, print_one_table, NULL);
|
|
|
|
common_shutdown();
|
|
|
|
return 0;
|
|
|
|
}
|
2023-01-30 07:24:17 +01:00
|
|
|
plugin_main(argv, init, PLUGIN_RESTARTABLE, true, NULL, commands, ARRAY_SIZE(commands),
|
|
|
|
NULL, 0, NULL, 0, NULL, 0,
|
2023-08-18 08:49:17 +02:00
|
|
|
plugin_option("dev-sqlfilename",
|
2023-01-30 07:24:17 +01:00
|
|
|
"string",
|
|
|
|
"Use on-disk sqlite3 file instead of in memory (e.g. debugging)",
|
|
|
|
charp_option, &dbfilename),
|
|
|
|
NULL);
|
|
|
|
}
|