-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathbolt11-cli.c
366 lines (327 loc) · 11.1 KB
/
bolt11-cli.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
#include "config.h"
#include <bitcoin/address.h>
#include <bitcoin/base58.h>
#include <bitcoin/privkey.h>
#include <bitcoin/script.h>
#include <ccan/err/err.h>
#include <ccan/opt/opt.h>
#include <ccan/str/hex/hex.h>
#include <ccan/tal/str/str.h>
#include <ccan/time/time.h>
#include <common/bech32.h>
#include <common/bolt11.h>
#include <common/features.h>
#include <common/setup.h>
#include <common/version.h>
#include <inttypes.h>
#include <stdio.h>
#define NO_ERROR 0
#define ERROR_BAD_DECODE 1
#define ERROR_USAGE 3
/* Tal wrappers for opt. */
static void *opt_allocfn(size_t size)
{
return tal_arr_label(NULL, char, size, TAL_LABEL("opt_allocfn", ""));
}
static void *tal_reallocfn(void *ptr, size_t size)
{
if (!ptr)
return opt_allocfn(size);
tal_resize_(&ptr, 1, size, false);
return ptr;
}
static void tal_freefn(void *ptr)
{
tal_free(ptr);
}
/* pubkey/scid/feebase/feeprop/expiry,... */
static void add_route(struct bolt11 *b11, const char *routestr)
{
struct route_info *rarr;
char **rparts = tal_strsplit(tmpctx, routestr, ",", STR_EMPTY_OK);
rarr = tal_arr(b11->routes, struct route_info, tal_count(rparts)-1);
for (size_t i = 0; rparts[i]; i++) {
char **parts = tal_strsplit(tmpctx, rparts[i], "/", STR_EMPTY_OK);
if (tal_count(parts) != 6)
errx(ERROR_USAGE,
"Bad route %s (expected 5 fields with / separators)",
rparts[i]);
if (!node_id_from_hexstr(parts[0], strlen(parts[0]),
&rarr[i].pubkey))
errx(ERROR_USAGE, "Bad route publey %s", parts[0]);
if (!short_channel_id_from_str(parts[1], strlen(parts[1]),
&rarr[i].short_channel_id))
errx(ERROR_USAGE, "Bad route scid %s", parts[1]);
rarr[i].fee_base_msat = atol(parts[2]);
rarr[i].fee_proportional_millionths = atol(parts[3]);
rarr[i].cltv_expiry_delta = atol(parts[4]);
}
tal_arr_expand(&b11->routes, rarr);
}
static char *fmt_time(const tal_t *ctx, u64 time)
{
/* ctime is not sane. Take pointer, returns \n in string. */
time_t t = time;
const char *p = ctime(&t);
return tal_fmt(ctx, "%.*s", (int)strcspn(p, "\n"), p);
}
static bool sign_b11(const u5 *u5bytes,
const u8 *hrpu8,
secp256k1_ecdsa_recoverable_signature *rsig,
struct privkey *privkey)
{
struct hash_u5 hu5;
char *hrp;
struct sha256 sha;
hrp = tal_dup_arr(NULL, char, (char *)hrpu8, tal_count(hrpu8), 1);
hrp[tal_count(hrpu8)] = '\0';
hash_u5_init(&hu5, hrp);
hash_u5(&hu5, u5bytes, tal_count(u5bytes));
hash_u5_done(&hu5, &sha);
tal_free(hrp);
if (!secp256k1_ecdsa_sign_recoverable(secp256k1_ctx, rsig,
(const u8 *)&sha,
privkey->secret.data,
NULL, NULL))
abort();
return true;
}
static void encode(const tal_t *ctx,
struct privkey *privkey,
char *fields[])
{
struct bolt11 *b11 = talz(ctx, struct bolt11);
struct pubkey me;
bool explicit_n = false;
b11->timestamp = time_now().ts.tv_sec;
b11->chain = chainparams_for_network("regtest");
b11->expiry = 3600;
b11->min_final_cltv_expiry = DEFAULT_FINAL_CLTV_DELTA;
list_head_init(&b11->extra_fields);
if (!pubkey_from_privkey(privkey, &me))
errx(ERROR_USAGE, "Invalid privkey!");
node_id_from_pubkey(&b11->receiver_id, &me);
while (*fields) {
const char *eq = strchr(*fields, '=');
const char *fname, *val;
char *endp;
unsigned long fieldnum;
if (!eq)
errx(ERROR_USAGE, "Field name must have =: %s", *fields);
fname = tal_strndup(ctx, *fields, eq - *fields);
val = eq + 1;
if (streq(fname, "currency")) {
b11->chain = chainparams_by_lightning_hrp(val);
if (!b11->chain)
errx(ERROR_USAGE, "Unknown currency %s", val);
} else if (streq(fname, "amount")) {
b11->msat = tal(b11, struct amount_msat);
if (!parse_amount_msat(b11->msat, val, strlen(val)))
errx(ERROR_USAGE, "Invalid amount %s", val);
} else if (streq(fname, "timestamp")) {
b11->timestamp = strtoul(val, &endp, 10);
if (!b11->timestamp || *endp != '\0')
errx(ERROR_USAGE, "Invalid amount %s", val);
/* Allow raw numbered fields (except 9, that's below) */
} else if ((fieldnum = strtoul(fname, &endp, 10)) != 0
&& fieldnum < 256
&& fieldnum != 9) {
struct bolt11_field *extra = tal(b11, struct bolt11_field);
extra->tag = fieldnum;
extra->data = tal_hexdata(extra, val, strlen(val));
if (!extra->data)
errx(ERROR_USAGE, "Invalid hex %s", val);
list_add_tail(&b11->extra_fields, &extra->list);
} else {
if (strlen(fname) != 1)
errx(ERROR_USAGE, "Unknown field %s", fname);
switch (*fname) {
case 'p':
if (!hex_decode(val, strlen(val),
&b11->payment_hash, sizeof(b11->payment_hash)))
errx(ERROR_USAGE, "Invalid payment_hash %s", val);
break;
case 's':
b11->payment_secret = tal(b11, struct secret);
if (!hex_decode(val, strlen(val),
b11->payment_secret, sizeof(*b11->payment_secret)))
errx(ERROR_USAGE, "Invalid payment_secret %s", val);
break;
case 'd':
b11->description = val;
break;
case 'm':
b11->metadata = tal_hexdata(b11, val, strlen(val));
if (!b11->metadata)
errx(ERROR_USAGE, "Invalid metadata %s", val);
break;
case 'n':
explicit_n = streq(val, "true");
break;
case 'h':
b11->description_hash = tal(b11, struct sha256);
if (!hex_decode(val, strlen(val),
b11->description_hash, sizeof(*b11->description_hash)))
errx(ERROR_USAGE, "Invalid description hash %s", val);
break;
case 'x':
b11->expiry = atol(val);
break;
case 'c':
b11->min_final_cltv_expiry = atol(val);
break;
case 'r':
if (!b11->routes)
b11->routes = tal_arr(b11, struct route_info *, 0);
add_route(b11, val);
break;
case '9':
b11->features = tal_hexdata(b11, val, strlen(val));
if (!b11->features)
errx(ERROR_USAGE, "Invalid hex features %s", val);
break;
case 'f':
errx(ERROR_USAGE, "FIXME: `f` unsupported!");
default:
errx(ERROR_USAGE, "Unknown letter %s", fname);
}
}
fields++;
}
printf("%s\n", bolt11_encode(tmpctx, b11, explicit_n, sign_b11, privkey));
}
int main(int argc, char *argv[])
{
const tal_t *ctx = tal(NULL, char);
const char *method;
struct bolt11 *b11;
struct bolt11_field *extra;
char *fail, *description = NULL;
common_setup(argv[0]);
opt_set_alloc(opt_allocfn, tal_reallocfn, tal_freefn);
opt_register_noarg("--help|-h", opt_usage_and_exit,
"<decode> <bolt11> OR\n"
"<encode> <privkey> [<field>=...]*",
"Show this message");
opt_register_arg("--hashed-description", opt_set_charp, opt_show_charp,
&description,
"Description to check hashed description against");
opt_register_version();
opt_early_parse(argc, argv, opt_log_stderr_exit);
opt_parse(&argc, argv, opt_log_stderr_exit);
method = argv[1];
if (!method)
errx(ERROR_USAGE, "Need at least one argument\n%s",
opt_usage(argv[0], NULL));
if (streq(method, "encode")) {
struct privkey privkey;
if (!argv[2]
|| !hex_decode(argv[2], strlen(argv[2]), &privkey, sizeof(privkey)))
errx(ERROR_USAGE, "Need valid <privkey>\n%s",
opt_usage(argv[0], NULL));
encode(ctx, &privkey, argv + 3);
tal_free(ctx);
common_shutdown();
return NO_ERROR;
}
if (!streq(method, "decode"))
errx(ERROR_USAGE, "Need encode or decode argument\n%s",
opt_usage(argv[0], NULL));
if (!argv[2])
errx(ERROR_USAGE, "Need argument\n%s",
opt_usage(argv[0], NULL));
b11 = bolt11_decode(ctx, argv[2], NULL, description, NULL, &fail);
if (!b11)
errx(ERROR_BAD_DECODE, "%s", fail);
printf("currency: %s\n", b11->chain->lightning_hrp);
printf("timestamp: %"PRIu64" (%s)\n",
b11->timestamp, fmt_time(ctx, b11->timestamp));
printf("expiry: %"PRIu64" (%s)\n",
b11->expiry, fmt_time(ctx, b11->timestamp + b11->expiry));
printf("payee: %s\n",
fmt_node_id(ctx, &b11->receiver_id));
printf("payment_hash: %s\n",
tal_hexstr(ctx, &b11->payment_hash, sizeof(b11->payment_hash)));
printf("min_final_cltv_expiry: %u\n", b11->min_final_cltv_expiry);
if (b11->msat) {
printf("msatoshi: %"PRIu64"\n", b11->msat->millisatoshis); /* Raw: raw int for backwards compat */
printf("amount_msat: %s\n",
fmt_amount_msat(tmpctx, *b11->msat));
}
if (b11->description)
printf("description: '%s'\n", b11->description);
if (b11->description_hash)
printf("description_hash: %s\n",
tal_hexstr(ctx, b11->description_hash,
sizeof(*b11->description_hash)));
if (b11->payment_secret)
printf("payment_secret: %s\n",
tal_hexstr(ctx, b11->payment_secret,
sizeof(*b11->payment_secret)));
if (tal_bytelen(b11->features)) {
printf("features:");
for (size_t i = 0; i < tal_bytelen(b11->features) * CHAR_BIT; i++) {
if (feature_is_set(b11->features, i))
printf(" %zu", i);
}
printf("\n");
}
for (size_t i = 0; i < tal_count(b11->fallbacks); i++) {
struct bitcoin_address pkh;
struct ripemd160 sh;
struct sha256 wsh;
const u8 *fallback = b11->fallbacks[i];
const size_t fallback_len = tal_bytelen(fallback);
printf("fallback: %s\n", tal_hex(ctx, fallback));
if (is_p2pkh(fallback, fallback_len, &pkh)) {
printf("fallback-P2PKH: %s\n",
bitcoin_to_base58(ctx, b11->chain,
&pkh));
} else if (is_p2sh(fallback, fallback_len, &sh)) {
printf("fallback-P2SH: %s\n",
p2sh_to_base58(ctx,
b11->chain,
&sh));
} else if (is_p2wpkh(fallback, fallback_len, &pkh)) {
char out[73 + strlen(b11->chain->onchain_hrp)];
if (segwit_addr_encode(out, b11->chain->onchain_hrp, 0,
(const u8 *)&pkh, sizeof(pkh)))
printf("fallback-P2WPKH: %s\n", out);
} else if (is_p2wsh(fallback, fallback_len, &wsh)) {
char out[73 + strlen(b11->chain->onchain_hrp)];
if (segwit_addr_encode(out, b11->chain->onchain_hrp, 0,
(const u8 *)&wsh, sizeof(wsh)))
printf("fallback-P2WSH: %s\n", out);
}
}
for (size_t i = 0; i < tal_count(b11->routes); i++) {
printf("route: (node/chanid/fee/expirydelta) ");
for (size_t n = 0; n < tal_count(b11->routes[i]); n++) {
printf(" %s/%s/%u/%u/%u",
fmt_node_id(ctx,
&b11->routes[i][n].pubkey),
fmt_short_channel_id(ctx,
b11->routes[i][n].short_channel_id),
b11->routes[i][n].fee_base_msat,
b11->routes[i][n].fee_proportional_millionths,
b11->routes[i][n].cltv_expiry_delta);
}
printf("\n");
}
if (b11->metadata)
printf("metadata: %s\n",
tal_hex(ctx, b11->metadata));
list_for_each(&b11->extra_fields, extra, list) {
char *data = tal_arr(ctx, char, tal_count(extra->data)+1);
size_t i;
for (i = 0; i < tal_count(extra->data); i++)
data[i] = bech32_charset[extra->data[i]];
data[i] = '\0';
printf("unknown: %c %s\n", extra->tag, data);
}
printf("signature: %s\n",
fmt_secp256k1_ecdsa_signature(ctx, &b11->sig));
tal_free(ctx);
common_shutdown();
return NO_ERROR;
}