2021-12-04 12:23:56 +01:00
|
|
|
#include "config.h"
|
2019-07-18 07:17:16 +02:00
|
|
|
#include <assert.h>
|
2018-02-26 03:32:58 +01:00
|
|
|
#include <ccan/crypto/siphash24/siphash24.h>
|
2016-11-29 20:51:50 +01:00
|
|
|
#include <ccan/endian/endian.h>
|
|
|
|
#include <ccan/mem/mem.h>
|
2017-08-28 18:02:01 +02:00
|
|
|
#include <common/utils.h>
|
2021-12-04 12:23:56 +01:00
|
|
|
#include <wire/wire.h>
|
2016-11-29 20:51:50 +01:00
|
|
|
|
2019-07-18 07:20:32 +02:00
|
|
|
#ifndef SUPERVERBOSE
|
|
|
|
#define SUPERVERBOSE(...)
|
|
|
|
#endif
|
|
|
|
|
2019-09-25 22:38:45 +02:00
|
|
|
extern const struct chainparams *chainparams;
|
|
|
|
|
2016-11-29 20:51:50 +01:00
|
|
|
/* Sets *cursor to NULL and returns NULL when extraction fails. */
|
2020-05-19 03:05:40 +02:00
|
|
|
void *fromwire_fail(const u8 **cursor, size_t *max)
|
2016-11-29 20:51:50 +01:00
|
|
|
{
|
|
|
|
*cursor = NULL;
|
|
|
|
*max = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const u8 *fromwire(const u8 **cursor, size_t *max, void *copy, size_t n)
|
|
|
|
{
|
|
|
|
const u8 *p = *cursor;
|
|
|
|
|
|
|
|
if (*max < n) {
|
|
|
|
/* Just make sure we don't leak uninitialized mem! */
|
|
|
|
if (copy)
|
|
|
|
memset(copy, 0, n);
|
2019-07-18 07:20:32 +02:00
|
|
|
if (*cursor)
|
|
|
|
SUPERVERBOSE("less than encoding length");
|
2017-06-06 05:03:31 +02:00
|
|
|
return fromwire_fail(cursor, max);
|
2016-11-29 20:51:50 +01:00
|
|
|
}
|
2023-04-01 05:40:23 +02:00
|
|
|
/* ubsan: runtime error: applying zero offset to null pointer */
|
|
|
|
if (*cursor)
|
|
|
|
*cursor += n;
|
2016-11-29 20:51:50 +01:00
|
|
|
*max -= n;
|
2023-04-01 05:40:23 +02:00
|
|
|
if (copy && n)
|
2016-11-29 20:51:50 +01:00
|
|
|
memcpy(copy, p, n);
|
|
|
|
return memcheck(p, n);
|
|
|
|
}
|
|
|
|
|
2017-01-04 04:39:21 +01:00
|
|
|
int fromwire_peektype(const u8 *cursor)
|
|
|
|
{
|
|
|
|
be16 be_type;
|
|
|
|
size_t max = tal_count(cursor);
|
|
|
|
|
|
|
|
fromwire(&cursor, &max, &be_type, sizeof(be_type));
|
|
|
|
if (!cursor)
|
|
|
|
return -1;
|
|
|
|
return be16_to_cpu(be_type);
|
|
|
|
}
|
|
|
|
|
2016-11-29 20:51:50 +01:00
|
|
|
u8 fromwire_u8(const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
u8 ret;
|
|
|
|
|
|
|
|
if (!fromwire(cursor, max, &ret, sizeof(ret)))
|
|
|
|
return 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
u16 fromwire_u16(const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
be16 ret;
|
|
|
|
|
|
|
|
if (!fromwire(cursor, max, &ret, sizeof(ret)))
|
|
|
|
return 0;
|
|
|
|
return be16_to_cpu(ret);
|
|
|
|
}
|
2017-01-04 04:39:20 +01:00
|
|
|
|
2016-11-29 20:51:50 +01:00
|
|
|
u32 fromwire_u32(const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
be32 ret;
|
|
|
|
|
|
|
|
if (!fromwire(cursor, max, &ret, sizeof(ret)))
|
|
|
|
return 0;
|
|
|
|
return be32_to_cpu(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 fromwire_u64(const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
be64 ret;
|
|
|
|
|
|
|
|
if (!fromwire(cursor, max, &ret, sizeof(ret)))
|
|
|
|
return 0;
|
|
|
|
return be64_to_cpu(ret);
|
|
|
|
}
|
|
|
|
|
2023-05-05 21:10:53 +02:00
|
|
|
s8 fromwire_s8(const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
return (s8)fromwire_u8(cursor, max);
|
|
|
|
}
|
|
|
|
|
|
|
|
s16 fromwire_s16(const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
return (s16)fromwire_u16(cursor, max);
|
|
|
|
}
|
|
|
|
|
|
|
|
s32 fromwire_s32(const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
return (s32)fromwire_u32(cursor, max);
|
|
|
|
}
|
|
|
|
|
|
|
|
s64 fromwire_s64(const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
return (s64)fromwire_u64(cursor, max);
|
|
|
|
}
|
|
|
|
|
2019-07-18 07:17:16 +02:00
|
|
|
static u64 fromwire_tlv_uint(const u8 **cursor, size_t *max, size_t maxlen)
|
|
|
|
{
|
|
|
|
u8 bytes[8];
|
|
|
|
size_t length;
|
|
|
|
be64 val;
|
|
|
|
|
|
|
|
assert(maxlen <= sizeof(bytes));
|
|
|
|
|
2019-09-20 08:55:49 +02:00
|
|
|
/* BOLT #1:
|
2019-07-18 07:17:16 +02:00
|
|
|
*
|
|
|
|
* - if `length` is not exactly equal to that required for the
|
|
|
|
* known encoding for `type`:
|
|
|
|
* - MUST fail to parse the `tlv_stream`.
|
|
|
|
*/
|
|
|
|
length = *max;
|
|
|
|
if (length > maxlen) {
|
2019-07-18 07:20:32 +02:00
|
|
|
SUPERVERBOSE("greater than encoding length");
|
2019-07-18 07:17:16 +02:00
|
|
|
fromwire_fail(cursor, max);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(bytes, 0, sizeof(bytes));
|
|
|
|
fromwire(cursor, max, bytes + sizeof(bytes) - length, length);
|
|
|
|
|
2019-09-20 08:55:49 +02:00
|
|
|
/* BOLT #1:
|
2019-07-18 07:17:16 +02:00
|
|
|
* - if variable-length fields within the known encoding for `type` are
|
|
|
|
* not minimal:
|
|
|
|
* - MUST fail to parse the `tlv_stream`.
|
|
|
|
*/
|
|
|
|
if (length > 0 && bytes[sizeof(bytes) - length] == 0) {
|
2019-07-18 07:20:32 +02:00
|
|
|
SUPERVERBOSE("not minimal");
|
2019-07-18 07:17:16 +02:00
|
|
|
fromwire_fail(cursor, max);
|
|
|
|
return 0;
|
|
|
|
}
|
2024-07-18 03:24:55 +02:00
|
|
|
CROSS_TYPE_ASSIGNMENT(&val, &bytes);
|
2019-07-18 07:17:16 +02:00
|
|
|
return be64_to_cpu(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
u16 fromwire_tu16(const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
return fromwire_tlv_uint(cursor, max, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 fromwire_tu32(const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
return fromwire_tlv_uint(cursor, max, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 fromwire_tu64(const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
return fromwire_tlv_uint(cursor, max, 8);
|
|
|
|
}
|
|
|
|
|
2017-01-04 04:39:21 +01:00
|
|
|
bool fromwire_bool(const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
u8 ret;
|
|
|
|
|
|
|
|
if (!fromwire(cursor, max, &ret, sizeof(ret)))
|
|
|
|
return false;
|
|
|
|
if (ret != 0 && ret != 1)
|
2017-06-06 05:03:31 +02:00
|
|
|
fromwire_fail(cursor, max);
|
2017-01-04 04:39:21 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2022-09-18 02:20:50 +02:00
|
|
|
enum jsonrpc_errcode fromwire_jsonrpc_errcode(const u8 **cursor, size_t *max)
|
2020-01-12 15:33:59 +01:00
|
|
|
{
|
2022-09-18 02:20:50 +02:00
|
|
|
enum jsonrpc_errcode ret;
|
2020-01-26 13:52:29 +01:00
|
|
|
|
|
|
|
ret = (s32)fromwire_u32(cursor, max);
|
2020-01-12 15:33:59 +01:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-01-25 00:33:42 +01:00
|
|
|
void fromwire_secp256k1_ecdsa_signature(const u8 **cursor,
|
|
|
|
size_t *max, secp256k1_ecdsa_signature *sig)
|
2016-11-29 20:51:50 +01:00
|
|
|
{
|
|
|
|
u8 compact[64];
|
|
|
|
|
|
|
|
if (!fromwire(cursor, max, compact, sizeof(compact)))
|
|
|
|
return;
|
|
|
|
|
2017-01-25 00:33:42 +01:00
|
|
|
if (secp256k1_ecdsa_signature_parse_compact(secp256k1_ctx, sig, compact)
|
2016-11-29 20:51:50 +01:00
|
|
|
!= 1)
|
2017-06-06 05:03:31 +02:00
|
|
|
fromwire_fail(cursor, max);
|
2016-11-29 20:51:50 +01:00
|
|
|
}
|
|
|
|
|
2017-10-26 05:01:19 +02:00
|
|
|
void fromwire_secp256k1_ecdsa_recoverable_signature(const u8 **cursor,
|
|
|
|
size_t *max,
|
|
|
|
secp256k1_ecdsa_recoverable_signature *rsig)
|
|
|
|
{
|
|
|
|
u8 compact[64];
|
|
|
|
int recid;
|
|
|
|
|
|
|
|
fromwire(cursor, max, compact, sizeof(compact));
|
|
|
|
recid = fromwire_u8(cursor, max);
|
|
|
|
|
|
|
|
if (secp256k1_ecdsa_recoverable_signature_parse_compact(secp256k1_ctx,
|
|
|
|
rsig, compact,
|
|
|
|
recid) != 1)
|
|
|
|
fromwire_fail(cursor, max);
|
|
|
|
}
|
|
|
|
|
2016-11-29 20:51:50 +01:00
|
|
|
void fromwire_sha256(const u8 **cursor, size_t *max, struct sha256 *sha256)
|
|
|
|
{
|
|
|
|
fromwire(cursor, max, sha256, sizeof(*sha256));
|
|
|
|
}
|
|
|
|
|
2017-08-18 06:43:52 +02:00
|
|
|
void fromwire_ripemd160(const u8 **cursor, size_t *max, struct ripemd160 *ripemd)
|
|
|
|
{
|
|
|
|
fromwire(cursor, max, ripemd, sizeof(*ripemd));
|
|
|
|
}
|
|
|
|
|
2016-11-29 20:51:50 +01:00
|
|
|
void fromwire_u8_array(const u8 **cursor, size_t *max, u8 *arr, size_t num)
|
|
|
|
{
|
|
|
|
fromwire(cursor, max, arr, num);
|
|
|
|
}
|
|
|
|
|
2020-12-05 03:19:54 +01:00
|
|
|
void fromwire_utf8_array(const u8 **cursor, size_t *max, char *arr, size_t num)
|
|
|
|
{
|
|
|
|
fromwire(cursor, max, arr, num);
|
|
|
|
if (!utf8_check(arr, num))
|
|
|
|
fromwire_fail(cursor, max);
|
|
|
|
}
|
|
|
|
|
2020-03-04 05:13:00 +01:00
|
|
|
u8 *fromwire_tal_arrn(const tal_t *ctx,
|
|
|
|
const u8 **cursor, size_t *max, size_t num)
|
|
|
|
{
|
|
|
|
u8 *arr;
|
2020-06-26 23:08:38 +02:00
|
|
|
if (num == 0)
|
|
|
|
return NULL;
|
|
|
|
|
2020-05-19 03:05:40 +02:00
|
|
|
if (num > *max)
|
|
|
|
return fromwire_fail(cursor, max);
|
|
|
|
|
2020-03-04 05:13:00 +01:00
|
|
|
arr = tal_arr(ctx, u8, num);
|
|
|
|
fromwire_u8_array(cursor, max, arr, num);
|
2022-11-08 02:18:12 +01:00
|
|
|
if (!*cursor)
|
|
|
|
return tal_free(arr);
|
2020-03-04 05:13:00 +01:00
|
|
|
return arr;
|
|
|
|
}
|
|
|
|
|
2017-01-04 04:39:20 +01:00
|
|
|
void fromwire_pad(const u8 **cursor, size_t *max, size_t num)
|
2016-11-29 20:51:50 +01:00
|
|
|
{
|
2017-01-04 04:39:20 +01:00
|
|
|
fromwire(cursor, max, NULL, num);
|
2016-11-29 20:51:50 +01:00
|
|
|
}
|
2017-01-04 04:39:20 +01:00
|
|
|
|
2018-02-08 02:25:12 +01:00
|
|
|
/*
|
|
|
|
* Don't allow control chars except spaces: we only use this for stuff
|
|
|
|
* from subdaemons, who shouldn't do that.
|
|
|
|
*/
|
|
|
|
char *fromwire_wirestring(const tal_t *ctx, const u8 **cursor, size_t *max)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < *max; i++) {
|
|
|
|
if ((*cursor)[i] == '\0') {
|
|
|
|
char *str = tal_arr(ctx, char, i + 1);
|
|
|
|
fromwire(cursor, max, str, i + 1);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
if ((*cursor)[i] < ' ')
|
|
|
|
break;
|
|
|
|
}
|
2020-05-19 03:05:40 +02:00
|
|
|
return fromwire_fail(cursor, max);
|
2018-02-08 02:25:12 +01:00
|
|
|
}
|
|
|
|
|
2018-02-26 03:32:58 +01:00
|
|
|
void fromwire_siphash_seed(const u8 **cursor, size_t *max,
|
|
|
|
struct siphash_seed *seed)
|
|
|
|
{
|
|
|
|
fromwire(cursor, max, seed, sizeof(*seed));
|
|
|
|
}
|
2023-07-27 23:37:52 +02:00
|
|
|
|