2016-11-29 20:51:50 +01:00
|
|
|
#ifndef LIGHTNING_WIRE_WIRE_H
|
|
|
|
#define LIGHTNING_WIRE_WIRE_H
|
|
|
|
#include "config.h"
|
2017-12-18 07:44:10 +01:00
|
|
|
#include <bitcoin/block.h>
|
2017-02-21 05:45:28 +01:00
|
|
|
#include <bitcoin/privkey.h>
|
2016-11-29 20:51:50 +01:00
|
|
|
#include <bitcoin/pubkey.h>
|
2017-02-21 05:45:28 +01:00
|
|
|
#include <bitcoin/shadouble.h>
|
2017-07-20 20:49:45 +02:00
|
|
|
#include <bitcoin/short_channel_id.h>
|
2016-11-29 20:51:50 +01:00
|
|
|
#include <bitcoin/signature.h>
|
|
|
|
#include <ccan/crypto/sha256/sha256.h>
|
|
|
|
#include <ccan/short_types/short_types.h>
|
2018-07-04 07:30:02 +02:00
|
|
|
#include <ccan/structeq/structeq.h>
|
2017-10-26 05:01:19 +02:00
|
|
|
#include <secp256k1_recovery.h>
|
2016-11-29 20:51:50 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2017-03-02 13:21:49 +01:00
|
|
|
struct channel_id {
|
|
|
|
u8 id[32];
|
|
|
|
};
|
2018-07-04 07:30:02 +02:00
|
|
|
/* Define channel_id_eq (no padding) */
|
|
|
|
STRUCTEQ_DEF(channel_id, 0, id);
|
2017-05-08 15:15:29 +02:00
|
|
|
|
2017-12-18 07:44:10 +01:00
|
|
|
struct bitcoin_blkid;
|
2018-12-03 00:15:06 +01:00
|
|
|
struct bitcoin_signature;
|
2017-12-18 07:41:52 +01:00
|
|
|
struct bitcoin_txid;
|
2017-03-29 12:56:15 +02:00
|
|
|
struct preimage;
|
2017-08-18 06:43:52 +02:00
|
|
|
struct ripemd160;
|
2018-02-26 03:32:58 +01:00
|
|
|
struct siphash_seed;
|
2016-11-29 20:51:50 +01:00
|
|
|
|
2018-02-08 02:25:12 +01:00
|
|
|
/* Makes generate-wire.py work */
|
|
|
|
typedef char wirestring;
|
|
|
|
|
2017-04-12 08:10:15 +02:00
|
|
|
void derive_channel_id(struct channel_id *channel_id,
|
2017-12-18 07:41:52 +01:00
|
|
|
struct bitcoin_txid *txid, u16 txout);
|
2017-04-12 08:10:15 +02:00
|
|
|
|
2017-01-04 04:39:21 +01:00
|
|
|
/* Read the type; returns -1 if not long enough. cursor is a tal ptr. */
|
|
|
|
int fromwire_peektype(const u8 *cursor);
|
2017-06-06 05:03:31 +02:00
|
|
|
const void *fromwire_fail(const u8 **cursor, size_t *max);
|
2017-01-04 04:39:21 +01:00
|
|
|
|
2016-11-29 20:51:50 +01:00
|
|
|
void towire(u8 **pptr, const void *data, size_t len);
|
2016-12-02 08:41:06 +01:00
|
|
|
void towire_pubkey(u8 **pptr, const struct pubkey *pubkey);
|
2017-02-21 05:45:28 +01:00
|
|
|
void towire_privkey(u8 **pptr, const struct privkey *privkey);
|
2017-05-06 04:19:44 +02:00
|
|
|
void towire_secret(u8 **pptr, const struct secret *secret);
|
2017-01-25 00:33:42 +01:00
|
|
|
void towire_secp256k1_ecdsa_signature(u8 **pptr,
|
|
|
|
const secp256k1_ecdsa_signature *signature);
|
2017-10-26 05:01:19 +02:00
|
|
|
void towire_secp256k1_ecdsa_recoverable_signature(u8 **pptr,
|
|
|
|
const secp256k1_ecdsa_recoverable_signature *rsig);
|
2016-11-29 20:51:50 +01:00
|
|
|
void towire_channel_id(u8 **pptr, const struct channel_id *channel_id);
|
2017-03-02 13:21:49 +01:00
|
|
|
void towire_short_channel_id(u8 **pptr,
|
|
|
|
const struct short_channel_id *short_channel_id);
|
2016-11-29 20:51:50 +01:00
|
|
|
void towire_sha256(u8 **pptr, const struct sha256 *sha256);
|
2017-02-21 05:45:28 +01:00
|
|
|
void towire_sha256_double(u8 **pptr, const struct sha256_double *sha256d);
|
2017-12-18 07:41:52 +01:00
|
|
|
void towire_bitcoin_txid(u8 **pptr, const struct bitcoin_txid *txid);
|
2018-12-03 00:15:06 +01:00
|
|
|
void towire_bitcoin_signature(u8 **pptr, const struct bitcoin_signature *sig);
|
2017-12-18 07:44:10 +01:00
|
|
|
void towire_bitcoin_blkid(u8 **pptr, const struct bitcoin_blkid *blkid);
|
2017-03-29 12:56:15 +02:00
|
|
|
void towire_preimage(u8 **pptr, const struct preimage *preimage);
|
2017-08-18 06:43:52 +02:00
|
|
|
void towire_ripemd160(u8 **pptr, const struct ripemd160 *ripemd);
|
2016-11-29 20:51:50 +01:00
|
|
|
void towire_u8(u8 **pptr, u8 v);
|
|
|
|
void towire_u16(u8 **pptr, u16 v);
|
|
|
|
void towire_u32(u8 **pptr, u32 v);
|
|
|
|
void towire_u64(u8 **pptr, u64 v);
|
2018-02-21 12:48:32 +01:00
|
|
|
void towire_double(u8 **pptr, const double *v);
|
2017-01-04 04:39:20 +01:00
|
|
|
void towire_pad(u8 **pptr, size_t num);
|
2017-01-04 04:39:21 +01:00
|
|
|
void towire_bool(u8 **pptr, bool v);
|
2016-11-29 20:51:50 +01:00
|
|
|
|
|
|
|
void towire_u8_array(u8 **pptr, const u8 *arr, size_t num);
|
|
|
|
|
2018-01-04 18:19:02 +01:00
|
|
|
void towire_bitcoin_tx(u8 **pptr, const struct bitcoin_tx *tx);
|
2018-02-08 02:25:12 +01:00
|
|
|
void towire_wirestring(u8 **pptr, const char *str);
|
2018-02-26 03:32:58 +01:00
|
|
|
void towire_siphash_seed(u8 **cursor, const struct siphash_seed *seed);
|
2018-01-04 18:19:02 +01:00
|
|
|
|
2016-11-29 20:51:50 +01:00
|
|
|
const u8 *fromwire(const u8 **cursor, size_t *max, void *copy, size_t n);
|
|
|
|
u8 fromwire_u8(const u8 **cursor, size_t *max);
|
|
|
|
u16 fromwire_u16(const u8 **cursor, size_t *max);
|
|
|
|
u32 fromwire_u32(const u8 **cursor, size_t *max);
|
|
|
|
u64 fromwire_u64(const u8 **cursor, size_t *max);
|
2018-02-21 12:48:32 +01:00
|
|
|
void fromwire_double(const u8 **cursor, size_t *max, double *v);
|
2017-01-04 04:39:21 +01:00
|
|
|
bool fromwire_bool(const u8 **cursor, size_t *max);
|
2017-05-06 04:19:44 +02:00
|
|
|
void fromwire_secret(const u8 **cursor, size_t *max, struct secret *secret);
|
2017-02-21 05:45:28 +01:00
|
|
|
void fromwire_privkey(const u8 **cursor, size_t *max, struct privkey *privkey);
|
2016-12-02 08:41:06 +01:00
|
|
|
void fromwire_pubkey(const u8 **cursor, size_t *max, struct pubkey *pubkey);
|
2017-01-25 00:33:42 +01:00
|
|
|
void fromwire_secp256k1_ecdsa_signature(const u8 **cursor, size_t *max,
|
|
|
|
secp256k1_ecdsa_signature *signature);
|
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);
|
2016-11-29 20:51:50 +01:00
|
|
|
void fromwire_channel_id(const u8 **cursor, size_t *max,
|
|
|
|
struct channel_id *channel_id);
|
2017-03-02 13:21:49 +01:00
|
|
|
void fromwire_short_channel_id(const u8 **cursor, size_t *max,
|
|
|
|
struct short_channel_id *short_channel_id);
|
2016-11-29 20:51:50 +01:00
|
|
|
void fromwire_sha256(const u8 **cursor, size_t *max, struct sha256 *sha256);
|
2017-02-21 05:45:28 +01:00
|
|
|
void fromwire_sha256_double(const u8 **cursor, size_t *max,
|
|
|
|
struct sha256_double *sha256d);
|
2018-12-03 00:15:06 +01:00
|
|
|
void fromwire_bitcoin_signature(const u8 **cursor, size_t *max,
|
|
|
|
struct bitcoin_signature *sig);
|
2017-12-18 07:41:52 +01:00
|
|
|
void fromwire_bitcoin_txid(const u8 **cursor, size_t *max,
|
|
|
|
struct bitcoin_txid *txid);
|
2017-12-18 07:44:10 +01:00
|
|
|
void fromwire_bitcoin_blkid(const u8 **cursor, size_t *max,
|
|
|
|
struct bitcoin_blkid *blkid);
|
2017-03-29 12:56:15 +02:00
|
|
|
void fromwire_preimage(const u8 **cursor, size_t *max, struct preimage *preimage);
|
2017-08-18 06:43:52 +02:00
|
|
|
void fromwire_ripemd160(const u8 **cursor, size_t *max, struct ripemd160 *ripemd);
|
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-02-21 05:45:28 +01:00
|
|
|
void fromwire_u8_array(const u8 **cursor, size_t *max, u8 *arr, size_t num);
|
2018-02-08 02:25:12 +01:00
|
|
|
char *fromwire_wirestring(const tal_t *ctx, const u8 **cursor, size_t *max);
|
2018-02-08 02:25:12 +01:00
|
|
|
struct bitcoin_tx *fromwire_bitcoin_tx(const tal_t *ctx,
|
|
|
|
const u8 **cursor, size_t *max);
|
2018-02-26 03:32:58 +01:00
|
|
|
void fromwire_siphash_seed(const u8 **cursor, size_t *max,
|
|
|
|
struct siphash_seed *seed);
|
2016-11-29 20:51:50 +01:00
|
|
|
#endif /* LIGHTNING_WIRE_WIRE_H */
|