-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwallet.cpp
440 lines (390 loc) · 12.2 KB
/
wallet.cpp
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
#include "wallet.h"
#include "protocol.h"
#include <us/gov/input.h>
#include <us/gov/protocol.h>
using namespace us::wallet;
using namespace std;
typedef us::wallet::wallet c;
c::wallet(const string& datapath, const string& backend_host, uint16_t backend_port):datapath(datapath), backend_host(backend_host), backend_port(backend_port){
load();
/*
if (!load()) {
cerr << "cannot find wallet file in " << datapath << endl;
exit(1);
}
*/
}
c::~wallet() {
//cout << "deleting wallet" << endl;
save();
}
string c::filename() const {
auto file=datapath+"/keys";
return file;
}
bool c::file_exists() const {
return us::gov::input::cfg::file_exists(filename());
}
bool c::load() {
auto file=filename();
//cout << "loading from " << file << endl;
if (!us::gov::input::cfg::file_exists(file)) return false;
ifstream f(file);
while(f.good()) {
string pkb58;
f >> pkb58;
if (pkb58.empty()) continue;
auto pk=crypto::ec::keys::priv_t::from_b58(pkb58);
if (!gov::crypto::ec::keys::verify(pk)) {
cerr << "The private key " << pkb58 << " is incorrect." << endl;
continue;
}
crypto::ec::keys k(pk);
cash::hash_t h=k.pub.compute_hash(); //cash::hash_t::from_b58("2vVN9EUdmZ5ypMe84JrQqwExMRjn");
// cout << "loaded addr " << h << endl;
emplace(h,move(k));
}
return true;
}
bool c::save() const {
//ofstream cout("/tmp/xxxxxxx");
//cout << "saving wallet " << filename() <<endl;
if (!need_save) return true;
auto file=filename();
//cout << "saving wallet! " << file << " " << size() << endl;
ofstream f(file);
for (auto&i:*this) {
f << i.second.priv << ' ';
}
need_save=false;
return true;
}
cash::hash_t c::new_address() {
crypto::ec::keys k=crypto::ec::keys::generate();
auto h=k.pub.compute_hash();
emplace(h,move(k));
need_save=true;
save();
return move(h);
}
cash::hash_t c::add_address(const crypto::ec::keys::priv_t& key) {
if (!gov::crypto::ec::keys::verify(key)) {
cerr << "Invalid private key" << endl;
return 0;
}
crypto::ec::keys k(key);
auto h=k.pub.compute_hash();
if (emplace(h,move(k)).second) {
need_save=true;
save();
}
return move(h);
}
const crypto::ec::keys* c::get_keys(const cash::hash_t& address) const {
auto i=find(address);
if (i==end()) return 0;
return &i->second;
}
cash::cash_t c::balance() const {
cash::cash_t b=0;
for (auto& i:data) {
b+=i.second.box;
}
return b;
}
void c::dump_balances(ostream& os) const {
cash::cash_t b=0;
os << "[address] [locking_program] [balance]" << endl;
for (auto& i:data) {
b+=i.second.box;
os << i.first << ' ' << i.second.locking_program << ' ' << i.second.box << endl;
}
os << "total balance: " << b << endl;
}
void c::extended_balance(ostream& os) const {
// cash::cash_t b=0;
// os << "[address] [locking_program] [balance]" << endl;
for (auto& i:data) {
// b+=i.second.balance;
os << i.first << ' ' << i.second.locking_program << ' ' << i.second.box << endl;
}
// os << "total balance: " << b;
}
using socket::datagram;
pair<string,c::accounts_query_t> c::query_accounts(socket::peer_t& peer, const cash::app::query_accounts_t& addresses) const {
pair<string,accounts_query_t> ret;
socket::datagram* d=addresses.get_datagram();
if (unlikely(!d)) {
ret.first="Error. Wallet contains no addresses.";
return move(ret);
}
pair<string,datagram*> response=peer.send_recv(d,us::gov::protocol::cash_response);
if (unlikely(!response.first.empty())) {
ret.first=response.first; //"Error. Backend is not answering.";
return move(ret);
}
if (response.second->service==gov::protocol::gov_socket_error) {
ret.first=response.second->parse_string();
delete response.second;
return move(ret);
}
auto r=response.second->parse_string();
delete response.second;
istringstream is(r);
int code;
is >> code;
if (unlikely(code!=0)) {
string err;
is >> err;
ostringstream os;
os << "Error. Backend reported: " << err;
ret.first=os.str();
//cerr << err << endl;
}
else {
for (auto&i:addresses) {
cash::app::account_t a=cash::app::account_t::from_stream(is);
if (a.box>0) {
ret.second.emplace(i,move(a));
}
}
// is >> ret.second.parent_block;
}
return move(ret);
}
string c::refresh(socket::peer_t& peer) {
cash::app::query_accounts_t addresses;
addresses.reserve(size());
for (auto&i:*this) {
//cout << "addr " << i.first << endl;
addresses.emplace_back(i.first);
}
//cout << "query accounts" << endl;
auto r=query_accounts(peer,addresses);
if (likely(r.first.empty())) data=move(r.second);
return r.first;
}
pair<string,c::input_accounts_t> c::select_sources(socket::peer_t& peer, const cash::cash_t& amount) {
pair<string,c::input_accounts_t> ans;
ans.first=refresh(peer);
if (unlikely(!ans.first.empty())) {
return move(ans);
}
vector<accounts_query_t::const_iterator> v;
v.reserve(data.size());
for (accounts_query_t::const_iterator i=data.begin(); i!=data.end(); ++i) {
v.emplace_back(i);
}
//among all our balances we choose to consume those with lowest balance first (globally this algorithm will reduce the number of accounts with small amounts in the ledger)
sort(v.begin(),v.end(),[](const accounts_query_t::const_iterator&v1, const accounts_query_t::const_iterator&v2) { return v1->second.box < v2->second.box; });
//ans.second.parent_block=data.parent_block;
cash::cash_t remaining=amount;
for (auto&i:v) {
if (i->second.box<=remaining) {
ans.second.emplace_back(input_account_t(i->first,i->second,i->second.box));
remaining-=i->second.box;
}
else {
ans.second.emplace_back(input_account_t(i->first,i->second,remaining));
remaining=0;
break;
}
}
return move(ans);
}
void c::dump(ostream& os) const {
os << "[private Key] [public key] [address]" << endl;
int n=0;
for (auto&i:*this) {
os << '#' << n++ << ": " << i.second.priv << ' ' << i.second.pub << ' ' << i.first << endl;
}
}
void c::list(bool showpriv, ostream& os) const {
os << "#: ";
if (showpriv)
os << "[private Key] ";
os << "[public key] [address]" << endl;
int n=0;
if (showpriv) {
for (auto&i:*this) {
os << '#' << n++ << ": " << i.second.priv << ' ' << i.second.pub << ' ' << i.first << endl;
}
}
else {
for (auto&i:*this) {
os << '#' << n++ << ": " << i.second.pub << ' ' << i.first << endl;
}
}
os << size() << " keys";
}
/*
void c::accounts_query_t::dump(ostream& os) const {
b::dump(os);
os << "parent block: " << parent_block << endl;
}
*/
c::input_account_t::input_account_t(const hash_t& address,const b& acc, const cash_t& withdraw_amount):b(acc),address(address),withdraw_amount(withdraw_amount) {
}
void c::input_account_t::dump(ostream& os) const {
os << "address " << address << ' ';
b::dump(os);
os << " withdraw amount: " << withdraw_amount;
}
cash::cash_t c::input_accounts_t::get_withdraw_amount() const {
cash::cash_t w=0;
for (auto&i:*this) {
w+=i.withdraw_amount;
}
return move(w);
}
void c::input_accounts_t::dump(ostream& os) const {
for (auto&i:*this) {
i.dump(os);
os << endl;
}
os << "parent block: " << parent_block << endl;
os << "total withdraw: " << get_withdraw_amount() << endl;
}
#include <us/gov/cash/locking_programs/p2pkh.h>
string c::send(socket::peer_t& cli, const cash::tx& t) const {
auto fee=t.check();
if (fee<=0) {
return "Error. Individual inputs and fees must be positive.";
}
return cli.send(t.get_datagram());
}
string c::generate_locking_program_input(const crypto::ec::sigmsg_hasher_t::value_type& msg, const cash::tx::sigcodes_t& sigcodes, const cash::hash_t& address, const cash::hash_t& locking_program) {
if (likely(locking_program<cash::min_locking_program)) {
if (unlikely(locking_program==0)) {
return "";
}
else if (locking_program==1) {
const crypto::ec::keys* k=get_keys(address);
if (k==0) return "";
return cash::p2pkh::create_input(msg, sigcodes, k->priv);
}
}
return "";
}
string c::generate_locking_program_input(const cash::tx& t, size_t this_index, const cash::tx::sigcodes_t& sigcodes, const cash::hash_t& address, const cash::hash_t& locking_program) {
if (likely(locking_program<cash::min_locking_program)) {
if (unlikely(locking_program==0)) {
return "";
}
else if (locking_program==1) {
const crypto::ec::keys* k=get_keys(address);
if (k==0) return "";
return cash::p2pkh::create_input(t,this_index, sigcodes, k->priv);
}
}
return "";
}
pair<string,unique_ptr<cash::tx>> c::tx_sign(socket::peer_t& peer, const string& txb58, const cash::tx::sigcode_t& sigcodei, const cash::tx::sigcode_t& sigcodeo) {
auto sigcodes=cash::tx::combine(sigcodei,sigcodeo);
auto ret=cash::tx::from_b58(txb58);
if (unlikely(!ret.first.empty())) {
return move(ret);
}
cash::app::query_accounts_t addresses;
for (auto&i:ret.second->inputs) {
addresses.emplace_back(i.address);
}
pair<string,wallet::accounts_query_t> r=query_accounts(peer,addresses);
if (unlikely(!r.first.empty())) {
ret.first=r.first;
return ret;
}
auto& bases=r.second;
// bases.dump(cout);
// string err;
int n=0;
for (auto&i:ret.second->inputs) {
auto b=bases.find(i.address);
if(unlikely(b==bases.end())) {
ret.first="Error. Address not found.";
cerr << "No such address " << i.address << endl;
return move(ret);
}
const cash::app::account_t& src=b->second;
if (!cash::app::unlock(i.address, n,src.locking_program,i.locking_program_input,*ret.second)) {
i.locking_program_input=generate_locking_program_input(*ret.second,n,sigcodes,i.address,src.locking_program);
if (!cash::app::unlock(i.address, n,src.locking_program,i.locking_program_input,*ret.second)) {
i.locking_program_input="";
//ostringstream os;
cerr << "warning, cannot unlock account " << i.address << endl; //not an error, an input can be left unsigned
//ret.first=os.str();
}
}
++n;
}
return move(ret);
}
pair<string,unique_ptr<cash::tx>> c::tx_make_p2pkh(socket::peer_t& peer, const tx_make_p2pkh_input& i) { //non-empty first means error
pair<string,unique_ptr<cash::tx>> ret;
ret.second.reset(new cash::tx());
cash::tx& t=*ret.second;
auto sigcodes=cash::tx::combine(i.sigcode_inputs, i.sigcode_outputs);
auto s=select_sources(peer, i.amount+i.fee);
if (unlikely(!s.first.empty())) {
ret.first=s.first;
return move(ret);
}
input_accounts_t& input_accounts=s.second;
if (input_accounts.empty()) {
ret.first="Error. Insufficient balance";
return move(ret);
}
if(input_accounts.get_withdraw_amount()!=i.amount+i.fee) {
ret.first="Error. Inconsistency on amounts.";
return move(ret);
}
// t.parent_block=input_accounts.parent_block;
t.inputs.reserve(input_accounts.size());
for (auto&i:input_accounts) {
t.add_input(i.address/*, i.box*/, i.withdraw_amount);
}
t.add_output(i.rcpt_addr, i.amount, cash::p2pkh::locking_program_hash);
auto fee=t.check();
if (fee<1) { //TODO harcoded minimum fee
ostringstream err;
err << "Failed check. fees are " << fee;
ret.first=err.str();
return move(ret);
}
if (likely(cash::tx::same_sigmsg_across_inputs(sigcodes))) {
crypto::ec::sigmsg_hasher_t::value_type h=t.get_hash(0, sigcodes);
int n=0;
for (auto&i:t.inputs) {
i.locking_program_input=generate_locking_program_input(h,sigcodes,i.address, input_accounts[n].locking_program);
++n;
}
}
else { //sigmsg optimization
int n=0;
for (auto&i:t.inputs) {
i.locking_program_input=generate_locking_program_input(t,n,sigcodes,i.address, input_accounts[n].locking_program);
++n;
}
}
if (i.sendover) {
string r=send(peer,t);
if (unlikely(!r.empty())) {
ret.first=r;
}
// cout << "sent." << endl;
}
return move(ret);
}
void c::tx_make_p2pkh_input::to_stream(ostream& os) const {
os << rcpt_addr << ' ' << amount << ' ' << fee << ' ' << sigcode_inputs << ' ' << sigcode_outputs << ' ' << (sendover?'1':'0');
}
c::tx_make_p2pkh_input c::tx_make_p2pkh_input::from_stream(istream& is) {
tx_make_p2pkh_input i;
is >> i.rcpt_addr;
is >> i.amount;
is >> i.fee;
is >> i.sigcode_inputs;
is >> i.sigcode_outputs;
is >> i.sendover;
return move(i);
}