-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdelegate_bandwidth.cpp
More file actions
417 lines (359 loc) · 18.4 KB
/
Copy pathdelegate_bandwidth.cpp
File metadata and controls
417 lines (359 loc) · 18.4 KB
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
#include <eosio/datastream.hpp>
#include <eosio/eosio.hpp>
#include <eosio/multi_index.hpp>
#include <eosio/privileged.hpp>
#include <eosio/serialize.hpp>
#include <eosio/transaction.hpp>
#include <eosio.system/eosio.system.hpp>
#include <eosio.token/eosio.token.hpp>
namespace eosiosystem {
using eosio::asset;
using eosio::const_mem_fun;
using eosio::current_time_point;
using eosio::indexed_by;
using eosio::permission_level;
using eosio::seconds;
using eosio::time_point_sec;
using eosio::token;
/**
* This action will buy an exact amount of ram and bill the payer the current market price.
*/
void system_contract::buyrambytes( const name& payer, const name& receiver, uint32_t bytes ) {
auto itr = _rammarket.find(ramcore_symbol.raw());
const int64_t ram_reserve = itr->base.balance.amount;
const int64_t eos_reserve = itr->quote.balance.amount;
const int64_t cost = exchange_state::get_bancor_input( ram_reserve, eos_reserve, bytes );
const int64_t cost_plus_fee = cost / double(0.995);
buyram( payer, receiver, asset{ cost_plus_fee, core_symbol() } );
}
/**
* When buying ram the payer irreversibly transfers quant to system contract and only
* the receiver may reclaim the tokens via the sellram action. The receiver pays for the
* storage of all database records associated with this action.
*
* RAM is a scarce resource whose supply is defined by global properties max_ram_size. RAM is
* priced using the bancor algorithm such that price-per-byte with a constant reserve ratio of 100:1.
*/
void system_contract::buyram( const name& payer, const name& receiver, const asset& quant )
{
require_auth( payer );
update_ram_supply();
check( quant.symbol == core_symbol(), "must buy ram with core token" );
check( quant.amount > 0, "must purchase a positive amount" );
auto fee = quant;
fee.amount = ( fee.amount + 199 ) / 200; /// .5% fee (round up)
// fee.amount cannot be 0 since that is only possible if quant.amount is 0 which is not allowed by the assert above.
// If quant.amount == 1, then fee.amount == 1,
// otherwise if quant.amount > 1, then 0 < fee.amount < quant.amount.
auto quant_after_fee = quant;
quant_after_fee.amount -= fee.amount;
// quant_after_fee.amount should be > 0 if quant.amount > 1.
// If quant.amount == 1, then quant_after_fee.amount == 0 and the next inline transfer will fail causing the buyram action to fail.
{
token::transfer_action transfer_act{ token_account, { {payer, active_permission}, {ram_account, active_permission} } };
transfer_act.send( payer, ram_account, quant_after_fee, "buy ram" );
}
if ( fee.amount > 0 ) {
token::transfer_action transfer_act{ token_account, { {payer, active_permission} } };
transfer_act.send( payer, ramfee_account, fee, "ram fee" );
channel_to_rex( ramfee_account, fee );
}
int64_t bytes_out;
const auto& market = _rammarket.get(ramcore_symbol.raw(), "ram market does not exist");
_rammarket.modify( market, same_payer, [&]( auto& es ) {
bytes_out = es.direct_convert( quant_after_fee, ram_symbol ).amount;
});
check( bytes_out > 0, "must reserve a positive amount" );
_gstate.total_ram_bytes_reserved += uint64_t(bytes_out);
_gstate.total_ram_stake += quant_after_fee.amount;
user_resources_table userres( get_self(), receiver.value );
auto res_itr = userres.find( receiver.value );
if( res_itr == userres.end() ) {
res_itr = userres.emplace( receiver, [&]( auto& res ) {
res.owner = receiver;
res.net_weight = asset( 0, core_symbol() );
res.cpu_weight = asset( 0, core_symbol() );
res.ram_bytes = bytes_out;
});
} else {
userres.modify( res_itr, receiver, [&]( auto& res ) {
res.ram_bytes += bytes_out;
});
}
auto voter_itr = _voters.find( res_itr->owner.value );
if( voter_itr == _voters.end() || !has_field( voter_itr->flags1, voter_info::flags1_fields::ram_managed ) ) {
int64_t ram_bytes, net, cpu;
get_resource_limits( res_itr->owner, ram_bytes, net, cpu );
set_resource_limits( res_itr->owner, res_itr->ram_bytes + ram_gift_bytes, net, cpu );
}
}
/**
* The system contract now buys and sells RAM allocations at prevailing market prices.
* This may result in traders buying RAM today in anticipation of potential shortages
* tomorrow. Overall this will result in the market balancing the supply and demand
* for RAM over time.
*/
void system_contract::sellram( const name& account, int64_t bytes ) {
require_auth( account );
update_ram_supply();
check( bytes > 0, "cannot sell negative byte" );
user_resources_table userres( get_self(), account.value );
auto res_itr = userres.find( account.value );
check( res_itr != userres.end(), "no resource row" );
check( res_itr->ram_bytes >= bytes, "insufficient quota" );
asset tokens_out;
auto itr = _rammarket.find(ramcore_symbol.raw());
_rammarket.modify( itr, same_payer, [&]( auto& es ) {
/// the cast to int64_t of bytes is safe because we certify bytes is <= quota which is limited by prior purchases
tokens_out = es.direct_convert( asset(bytes, ram_symbol), core_symbol());
});
check( tokens_out.amount > 1, "token amount received from selling ram is too low" );
_gstate.total_ram_bytes_reserved -= static_cast<decltype(_gstate.total_ram_bytes_reserved)>(bytes); // bytes > 0 is asserted above
_gstate.total_ram_stake -= tokens_out.amount;
//// this shouldn't happen, but just in case it does we should prevent it
check( _gstate.total_ram_stake >= 0, "error, attempt to unstake more tokens than previously staked" );
userres.modify( res_itr, account, [&]( auto& res ) {
res.ram_bytes -= bytes;
});
auto voter_itr = _voters.find( res_itr->owner.value );
if( voter_itr == _voters.end() || !has_field( voter_itr->flags1, voter_info::flags1_fields::ram_managed ) ) {
int64_t ram_bytes, net, cpu;
get_resource_limits( res_itr->owner, ram_bytes, net, cpu );
set_resource_limits( res_itr->owner, res_itr->ram_bytes + ram_gift_bytes, net, cpu );
}
{
token::transfer_action transfer_act{ token_account, { {ram_account, active_permission}, {account, active_permission} } };
transfer_act.send( ram_account, account, asset(tokens_out), "sell ram" );
}
auto fee = ( tokens_out.amount + 199 ) / 200; /// .5% fee (round up)
// since tokens_out.amount was asserted to be at least 2 earlier, fee.amount < tokens_out.amount
if ( fee > 0 ) {
token::transfer_action transfer_act{ token_account, { {account, active_permission} } };
transfer_act.send( account, ramfee_account, asset(fee, core_symbol()), "sell ram fee" );
channel_to_rex( ramfee_account, asset(fee, core_symbol() ));
}
}
/* TELOS BEGIN DELETION
void validate_b1_vesting( int64_t stake ) {
const int64_t base_time = 1527811200; /// Friday, June 1, 2018 12:00:00 AM UTC
const int64_t current_time = 1638921540; /// Tuesday, December 7, 2021 11:59:00 PM UTC
const int64_t max_claimable = 100'000'000'0000ll;
const int64_t claimable = int64_t(max_claimable * double(current_time - base_time) / (10*seconds_per_year) );
check( max_claimable - claimable <= stake, "b1 can only claim their tokens over 10 years" );
}
TELOS END DELETION */
void system_contract::changebw( name from, const name& receiver,
const asset& stake_net_delta, const asset& stake_cpu_delta, bool transfer )
{
require_auth( from );
check( stake_net_delta.amount != 0 || stake_cpu_delta.amount != 0, "should stake non-zero amount" );
check( std::abs( (stake_net_delta + stake_cpu_delta).amount )
>= std::max( std::abs( stake_net_delta.amount ), std::abs( stake_cpu_delta.amount ) ),
"net and cpu deltas cannot be opposite signs" );
name source_stake_from = from;
if ( transfer ) {
from = receiver;
}
// update stake delegated from "from" to "receiver"
{
del_bandwidth_table del_tbl( get_self(), from.value );
auto itr = del_tbl.find( receiver.value );
if( itr == del_tbl.end() ) {
itr = del_tbl.emplace( from, [&]( auto& dbo ){
dbo.from = from;
dbo.to = receiver;
dbo.net_weight = stake_net_delta;
dbo.cpu_weight = stake_cpu_delta;
});
}
else {
del_tbl.modify( itr, same_payer, [&]( auto& dbo ){
dbo.net_weight += stake_net_delta;
dbo.cpu_weight += stake_cpu_delta;
});
}
check( 0 <= itr->net_weight.amount, "insufficient staked net bandwidth" );
check( 0 <= itr->cpu_weight.amount, "insufficient staked cpu bandwidth" );
if ( itr->is_empty() ) {
del_tbl.erase( itr );
}
} // itr can be invalid, should go out of scope
// update totals of "receiver"
{
user_resources_table totals_tbl( get_self(), receiver.value );
auto tot_itr = totals_tbl.find( receiver.value );
if( tot_itr == totals_tbl.end() ) {
tot_itr = totals_tbl.emplace( from, [&]( auto& tot ) {
tot.owner = receiver;
tot.net_weight = stake_net_delta;
tot.cpu_weight = stake_cpu_delta;
});
} else {
totals_tbl.modify( tot_itr, from == receiver ? from : same_payer, [&]( auto& tot ) {
tot.net_weight += stake_net_delta;
tot.cpu_weight += stake_cpu_delta;
});
}
check( 0 <= tot_itr->net_weight.amount, "insufficient staked total net bandwidth" );
check( 0 <= tot_itr->cpu_weight.amount, "insufficient staked total cpu bandwidth" );
{
bool ram_managed = false;
bool net_managed = false;
bool cpu_managed = false;
auto voter_itr = _voters.find( receiver.value );
if( voter_itr != _voters.end() ) {
ram_managed = has_field( voter_itr->flags1, voter_info::flags1_fields::ram_managed );
net_managed = has_field( voter_itr->flags1, voter_info::flags1_fields::net_managed );
cpu_managed = has_field( voter_itr->flags1, voter_info::flags1_fields::cpu_managed );
}
if( !(net_managed && cpu_managed) ) {
int64_t ram_bytes, net, cpu;
get_resource_limits( receiver, ram_bytes, net, cpu );
set_resource_limits( receiver,
ram_managed ? ram_bytes : std::max( tot_itr->ram_bytes + ram_gift_bytes, ram_bytes ),
net_managed ? net : tot_itr->net_weight.amount,
cpu_managed ? cpu : tot_itr->cpu_weight.amount );
}
}
if ( tot_itr->is_empty() ) {
totals_tbl.erase( tot_itr );
}
} // tot_itr can be invalid, should go out of scope
// create refund or update from existing refund
if ( stake_account != source_stake_from ) { //for eosio both transfer and refund make no sense
refunds_table refunds_tbl( get_self(), from.value );
auto req = refunds_tbl.find( from.value );
//create/update/delete refund
auto net_balance = stake_net_delta;
auto cpu_balance = stake_cpu_delta;
// net and cpu are same sign by assertions in delegatebw and undelegatebw
// redundant assertion also at start of changebw to protect against misuse of changebw
bool is_undelegating = (net_balance.amount + cpu_balance.amount ) < 0;
bool is_delegating_to_self = (!transfer && from == receiver);
if( is_delegating_to_self || is_undelegating ) {
if ( req != refunds_tbl.end() ) { //need to update refund
refunds_tbl.modify( req, same_payer, [&]( refund_request& r ) {
if ( net_balance.amount < 0 || cpu_balance.amount < 0 ) {
r.request_time = current_time_point();
}
r.net_amount -= net_balance;
if ( r.net_amount.amount < 0 ) {
net_balance = -r.net_amount;
r.net_amount.amount = 0;
} else {
net_balance.amount = 0;
}
r.cpu_amount -= cpu_balance;
if ( r.cpu_amount.amount < 0 ){
cpu_balance = -r.cpu_amount;
r.cpu_amount.amount = 0;
} else {
cpu_balance.amount = 0;
}
});
check( 0 <= req->net_amount.amount, "negative net refund amount" ); //should never happen
check( 0 <= req->cpu_amount.amount, "negative cpu refund amount" ); //should never happen
if ( req->is_empty() ) {
refunds_tbl.erase( req );
}
} else if ( net_balance.amount < 0 || cpu_balance.amount < 0 ) { //need to create refund
refunds_tbl.emplace( from, [&]( refund_request& r ) {
r.owner = from;
if ( net_balance.amount < 0 ) {
r.net_amount = -net_balance;
net_balance.amount = 0;
} else {
r.net_amount = asset( 0, core_symbol() );
}
if ( cpu_balance.amount < 0 ) {
r.cpu_amount = -cpu_balance;
cpu_balance.amount = 0;
} else {
r.cpu_amount = asset( 0, core_symbol() );
}
r.request_time = current_time_point();
});
} // else stake increase requested with no existing row in refunds_tbl -> nothing to do with refunds_tbl
} /// end if is_delegating_to_self || is_undelegating
// Deferred transactions are disabled under Spring/Savanna, so the
// refund is no longer scheduled automatically. Any pending refund
// remains in refunds_tbl and must be claimed explicitly with the
// refund action once refund_delay_sec has elapsed.
auto transfer_amount = net_balance + cpu_balance;
if ( 0 < transfer_amount.amount ) {
token::transfer_action transfer_act{ token_account, { {source_stake_from, active_permission} } };
transfer_act.send( source_stake_from, stake_account, asset(transfer_amount), "stake bandwidth" );
}
}
vote_stake_updater( from );
update_voting_power( from, stake_net_delta + stake_cpu_delta );
}
void system_contract::update_voting_power( const name& voter, const asset& total_update )
{
auto voter_itr = _voters.find( voter.value );
if( voter_itr == _voters.end() ) {
voter_itr = _voters.emplace( voter, [&]( auto& v ) {
v.owner = voter;
v.staked = total_update.amount;
});
} else {
_voters.modify( voter_itr, same_payer, [&]( auto& v ) {
v.staked += total_update.amount;
});
}
check( 0 <= voter_itr->staked, "stake for voting cannot be negative" );
/* TELOS BEGIN DELETION
if( voter == "b1"_n ) {
validate_b1_vesting( voter_itr->staked );
}
TELOS END DELETION */
if( voter_itr->producers.size() || voter_itr->proxy ) {
update_votes( voter, voter_itr->proxy, voter_itr->producers, false );
}
}
void system_contract::delegatebw( const name& from, const name& receiver,
const asset& stake_net_quantity,
const asset& stake_cpu_quantity, bool transfer )
{
asset zero_asset( 0, core_symbol() );
check( stake_cpu_quantity >= zero_asset, "must stake a positive amount" );
check( stake_net_quantity >= zero_asset, "must stake a positive amount" );
check( stake_net_quantity.amount + stake_cpu_quantity.amount > 0, "must stake a positive amount" );
check( !transfer || from != receiver, "cannot use transfer flag if delegating to self" );
changebw( from, receiver, stake_net_quantity, stake_cpu_quantity, transfer);
// TELOS BEGIN
//notify telos decide of stake change
if (from == receiver) {
require_recipient("telos.decide"_n);
}
// TELOS END
} // delegatebw
void system_contract::undelegatebw( const name& from, const name& receiver,
const asset& unstake_net_quantity, const asset& unstake_cpu_quantity )
{
asset zero_asset( 0, core_symbol() );
check( unstake_cpu_quantity >= zero_asset, "must unstake a positive amount" );
check( unstake_net_quantity >= zero_asset, "must unstake a positive amount" );
check( unstake_cpu_quantity.amount + unstake_net_quantity.amount > 0, "must unstake a positive amount" );
check( _gstate.block_num > block_num_network_activation || _gstate.thresh_activated_stake_time > time_point(),
"cannot undelegate bandwidth until the chain is activated (1,000,000 blocks produced)" );
changebw( from, receiver, -unstake_net_quantity, -unstake_cpu_quantity, false);
// TELOS BEGIN
//notify telos decide of stake change
if (from == receiver) {
require_recipient("telos.decide"_n);
}
// TELOS END
} // undelegatebw
void system_contract::refund( const name& owner ) {
require_auth( owner );
refunds_table refunds_tbl( get_self(), owner.value );
auto req = refunds_tbl.find( owner.value );
check( req != refunds_tbl.end(), "refund request not found" );
check( req->request_time + seconds(refund_delay_sec) <= current_time_point(),
"refund is not available yet" );
token::transfer_action transfer_act{ token_account, { {stake_account, active_permission}, {req->owner, active_permission} } };
transfer_act.send( stake_account, req->owner, req->net_amount + req->cpu_amount, "unstake" );
refunds_tbl.erase( req );
}
} //namespace eosiosystem