2016-10-06 15:17:10 +02:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2020-01-17 15:02:27 +01:00
|
|
|
Copyright (C) 2016-2020 Taler Systems SA
|
2016-10-06 15:17:10 +02:00
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
2017-11-20 14:20:09 +01:00
|
|
|
terms of the GNU Affero Public License as published by the Free Software
|
2016-10-06 15:17:10 +02:00
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
2017-11-20 14:20:09 +01:00
|
|
|
A PARTICULAR PURPOSE. See the GNU Affero Public License for more details.
|
2016-10-06 15:17:10 +02:00
|
|
|
|
2017-11-20 14:20:09 +01:00
|
|
|
You should have received a copy of the GNU Affero Public License along with
|
2016-10-06 15:17:10 +02:00
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file auditor/taler-auditor.c
|
|
|
|
* @brief audits an exchange database.
|
|
|
|
* @author Christian Grothoff
|
2017-03-14 15:13:50 +01:00
|
|
|
*
|
|
|
|
* NOTE:
|
|
|
|
* - This auditor does not verify that 'reserves_in' actually matches
|
|
|
|
* the wire transfers from the bank. This needs to be checked separately!
|
|
|
|
* - Similarly, we do not check that the outgoing wire transfers match those
|
2017-03-18 16:56:31 +01:00
|
|
|
* given in the 'wire_out' table. This needs to be checked separately!
|
2017-03-20 02:29:33 +01:00
|
|
|
*
|
2019-07-27 23:25:56 +02:00
|
|
|
* TODO:
|
|
|
|
* - reorganize: different passes are combined in one tool and one
|
|
|
|
* file here, we should split this up!
|
|
|
|
* - likely should do an iteration over known_coins instead of checking
|
|
|
|
* those signatures again and again
|
|
|
|
* - might want to bite the bullet and do asynchronous signature
|
|
|
|
* verification to improve parallelism / speed -- we'll need to scale
|
|
|
|
* this eventually anyway!
|
2019-07-25 19:26:25 +02:00
|
|
|
*
|
2019-09-03 06:21:51 +02:00
|
|
|
* UNDECIDED:
|
|
|
|
* - do we care about checking the 'done' flag in deposit_cb?
|
2016-10-06 15:17:10 +02:00
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include <gnunet/gnunet_util_lib.h>
|
2016-10-08 19:04:21 +02:00
|
|
|
#include "taler_auditordb_plugin.h"
|
2020-01-16 22:40:12 +01:00
|
|
|
#include "taler_exchangedb_lib.h"
|
2017-03-17 17:17:07 +01:00
|
|
|
#include "taler_json_lib.h"
|
2020-01-13 18:16:01 +01:00
|
|
|
#include "taler_bank_service.h"
|
2017-03-14 15:13:50 +01:00
|
|
|
#include "taler_signatures.h"
|
2016-10-06 15:17:10 +02:00
|
|
|
|
|
|
|
|
2017-03-15 19:28:05 +01:00
|
|
|
/**
|
|
|
|
* How many coin histories do we keep in RAM at any given point in
|
|
|
|
* time? Used bound memory consumption of the auditor. Larger values
|
|
|
|
* reduce database accesses.
|
|
|
|
*
|
|
|
|
* Set to a VERY low value here for testing. Practical values may be
|
|
|
|
* in the millions.
|
|
|
|
*/
|
|
|
|
#define MAX_COIN_SUMMARIES 4
|
|
|
|
|
2017-03-18 23:03:00 +01:00
|
|
|
/**
|
|
|
|
* Use a 1 day grace period to deal with clocks not being perfectly synchronized.
|
|
|
|
*/
|
|
|
|
#define DEPOSIT_GRACE_PERIOD GNUNET_TIME_UNIT_DAYS
|
|
|
|
|
2017-04-19 21:41:53 +02:00
|
|
|
/**
|
|
|
|
* Use a 1 day grace period to deal with clocks not being perfectly synchronized.
|
|
|
|
*/
|
|
|
|
#define CLOSING_GRACE_PERIOD GNUNET_TIME_UNIT_DAYS
|
|
|
|
|
2016-10-06 15:17:10 +02:00
|
|
|
/**
|
|
|
|
* Return value from main().
|
|
|
|
*/
|
|
|
|
static int global_ret;
|
|
|
|
|
2017-03-19 13:53:50 +01:00
|
|
|
/**
|
|
|
|
* Command-line option "-r": restart audit from scratch
|
|
|
|
*/
|
|
|
|
static int restart;
|
|
|
|
|
2016-10-06 15:17:10 +02:00
|
|
|
/**
|
|
|
|
* Handle to access the exchange's database.
|
|
|
|
*/
|
|
|
|
static struct TALER_EXCHANGEDB_Plugin *edb;
|
|
|
|
|
2017-03-15 14:19:57 +01:00
|
|
|
/**
|
|
|
|
* Which currency are we doing the audit for?
|
|
|
|
*/
|
|
|
|
static char *currency;
|
|
|
|
|
2020-01-15 15:17:02 +01:00
|
|
|
/**
|
|
|
|
* How many fractional digits does the currency use?
|
|
|
|
*/
|
2020-01-17 18:59:15 +01:00
|
|
|
static struct TALER_Amount currency_round_unit;
|
2020-01-15 15:17:02 +01:00
|
|
|
|
2017-03-18 16:56:31 +01:00
|
|
|
/**
|
|
|
|
* Our configuration.
|
|
|
|
*/
|
|
|
|
static const struct GNUNET_CONFIGURATION_Handle *cfg;
|
|
|
|
|
2016-11-17 14:31:44 +01:00
|
|
|
/**
|
|
|
|
* Our session with the #edb.
|
|
|
|
*/
|
|
|
|
static struct TALER_EXCHANGEDB_Session *esession;
|
|
|
|
|
2016-10-06 15:17:10 +02:00
|
|
|
/**
|
|
|
|
* Handle to access the auditor's database.
|
|
|
|
*/
|
|
|
|
static struct TALER_AUDITORDB_Plugin *adb;
|
|
|
|
|
2017-03-14 12:22:03 +01:00
|
|
|
/**
|
|
|
|
* Our session with the #adb.
|
|
|
|
*/
|
|
|
|
static struct TALER_AUDITORDB_Session *asession;
|
|
|
|
|
2017-04-20 21:38:02 +02:00
|
|
|
/**
|
|
|
|
* After how long should idle reserves be closed?
|
|
|
|
*/
|
|
|
|
static struct GNUNET_TIME_Relative idle_reserve_expiration_time;
|
|
|
|
|
2017-03-14 12:22:03 +01:00
|
|
|
/**
|
|
|
|
* Master public key of the exchange to audit.
|
|
|
|
*/
|
|
|
|
static struct TALER_MasterPublicKeyP master_pub;
|
|
|
|
|
2016-11-17 14:31:44 +01:00
|
|
|
/**
|
2018-10-27 21:27:23 +02:00
|
|
|
* Checkpointing our progress for reserves.
|
2016-11-17 14:31:44 +01:00
|
|
|
*/
|
2018-10-27 21:27:23 +02:00
|
|
|
static struct TALER_AUDITORDB_ProgressPointReserve ppr;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checkpointing our progress for aggregations.
|
|
|
|
*/
|
|
|
|
static struct TALER_AUDITORDB_ProgressPointAggregation ppa;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checkpointing our progress for coins.
|
|
|
|
*/
|
|
|
|
static struct TALER_AUDITORDB_ProgressPointCoin ppc;
|
2017-03-14 15:13:50 +01:00
|
|
|
|
2019-12-03 12:39:32 +01:00
|
|
|
/**
|
|
|
|
* Checkpointing our progress for reserves.
|
|
|
|
*/
|
|
|
|
static struct TALER_AUDITORDB_ProgressPointReserve ppr_start;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checkpointing our progress for aggregations.
|
|
|
|
*/
|
|
|
|
static struct TALER_AUDITORDB_ProgressPointAggregation ppa_start;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checkpointing our progress for coins.
|
|
|
|
*/
|
|
|
|
static struct TALER_AUDITORDB_ProgressPointCoin ppc_start;
|
|
|
|
|
2017-10-16 11:49:32 +02:00
|
|
|
/**
|
|
|
|
* Array of reports about denomination keys with an
|
2019-09-02 08:01:55 +02:00
|
|
|
* emergency (more value deposited than withdrawn)
|
2017-10-16 11:49:32 +02:00
|
|
|
*/
|
|
|
|
static json_t *report_emergencies;
|
|
|
|
|
2019-09-02 08:01:55 +02:00
|
|
|
/**
|
|
|
|
* Array of reports about denomination keys with an
|
|
|
|
* emergency (more coins deposited than withdrawn)
|
|
|
|
*/
|
|
|
|
static json_t *report_emergencies_by_count;
|
|
|
|
|
2017-10-16 11:49:32 +02:00
|
|
|
/**
|
|
|
|
* Array of reports about row inconsitencies.
|
|
|
|
*/
|
|
|
|
static json_t *report_row_inconsistencies;
|
|
|
|
|
|
|
|
/**
|
2017-11-06 14:54:52 +01:00
|
|
|
* Array of reports about the denomination key not being
|
|
|
|
* valid at the time of withdrawal.
|
2017-10-16 11:49:32 +02:00
|
|
|
*/
|
2017-11-06 14:54:52 +01:00
|
|
|
static json_t *denomination_key_validity_withdraw_inconsistencies;
|
2017-10-16 11:49:32 +02:00
|
|
|
|
|
|
|
/**
|
2017-11-06 14:54:52 +01:00
|
|
|
* Array of reports about reserve balance insufficient inconsitencies.
|
2017-10-16 11:49:32 +02:00
|
|
|
*/
|
2017-11-06 14:54:52 +01:00
|
|
|
static json_t *report_reserve_balance_insufficient_inconsistencies;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total amount reserves were charged beyond their balance.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_balance_insufficient_loss;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Array of reports about reserve balance summary wrong in database.
|
|
|
|
*/
|
|
|
|
static json_t *report_reserve_balance_summary_wrong_inconsistencies;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total delta between expected and stored reserve balance summaries,
|
|
|
|
* for positive deltas.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_balance_summary_delta_plus;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total delta between expected and stored reserve balance summaries,
|
|
|
|
* for negative deltas.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_balance_summary_delta_minus;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Array of reports about reserve's not being closed inconsitencies.
|
|
|
|
*/
|
|
|
|
static json_t *report_reserve_not_closed_inconsistencies;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total amount affected by reserves not having been closed on time.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_balance_reserve_not_closed;
|
2017-10-16 11:49:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Array of reports about irregular wire out entries.
|
|
|
|
*/
|
|
|
|
static json_t *report_wire_out_inconsistencies;
|
|
|
|
|
2018-11-04 17:36:56 +01:00
|
|
|
/**
|
|
|
|
* Array of reports about missing deposit confirmations.
|
|
|
|
*/
|
|
|
|
static json_t *report_deposit_confirmation_inconsistencies;
|
|
|
|
|
2017-11-06 14:54:52 +01:00
|
|
|
/**
|
|
|
|
* Total delta between calculated and stored wire out transfers,
|
|
|
|
* for positive deltas.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_wire_out_delta_plus;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total delta between calculated and stored wire out transfers
|
|
|
|
* for negative deltas.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_wire_out_delta_minus;
|
|
|
|
|
2017-10-16 11:49:32 +02:00
|
|
|
/**
|
|
|
|
* Array of reports about inconsistencies about coins.
|
|
|
|
*/
|
|
|
|
static json_t *report_coin_inconsistencies;
|
|
|
|
|
2017-11-06 19:11:43 +01:00
|
|
|
/**
|
|
|
|
* Profits the exchange made by bad amount calculations on coins.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_coin_delta_plus;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Losses the exchange made by bad amount calculations on coins.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_coin_delta_minus;
|
|
|
|
|
2017-10-16 11:49:32 +02:00
|
|
|
/**
|
2017-11-06 00:03:08 +01:00
|
|
|
* Report about aggregate wire transfer fee profits.
|
2017-10-16 11:49:32 +02:00
|
|
|
*/
|
2017-11-06 00:03:08 +01:00
|
|
|
static json_t *report_aggregation_fee_balances;
|
2017-10-16 11:49:32 +02:00
|
|
|
|
2017-11-06 19:11:43 +01:00
|
|
|
/**
|
|
|
|
* Report about amount calculation differences (causing profit
|
|
|
|
* or loss at the exchange).
|
|
|
|
*/
|
|
|
|
static json_t *report_amount_arithmetic_inconsistencies;
|
|
|
|
|
2017-11-20 14:20:09 +01:00
|
|
|
/**
|
|
|
|
* Array of reports about wire fees being ambiguous in terms of validity periods.
|
|
|
|
*/
|
|
|
|
static json_t *report_fee_time_inconsistencies;
|
|
|
|
|
2017-11-06 19:11:43 +01:00
|
|
|
/**
|
|
|
|
* Profits the exchange made by bad amount calculations.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_arithmetic_delta_plus;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Losses the exchange made by bad amount calculations.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_arithmetic_delta_minus;
|
|
|
|
|
2018-11-04 17:36:56 +01:00
|
|
|
/**
|
|
|
|
* Total number of deposit confirmations that we did not get.
|
|
|
|
*/
|
|
|
|
static json_int_t number_missed_deposit_confirmations;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total amount involved in deposit confirmations that we did not get.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_missed_deposit_confirmations;
|
|
|
|
|
2019-09-28 20:53:44 +02:00
|
|
|
/**
|
|
|
|
* Total amount reported in all calls to #report_emergency_by_count().
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount reported_emergency_risk_by_count;
|
|
|
|
|
2017-10-16 11:49:32 +02:00
|
|
|
/**
|
2017-11-06 00:03:08 +01:00
|
|
|
* Total amount reported in all calls to #report_emergency().
|
2017-10-16 11:49:32 +02:00
|
|
|
*/
|
2019-09-28 20:53:44 +02:00
|
|
|
static struct TALER_Amount reported_emergency_risk_by_amount;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total amount in losses reported in all calls to #report_emergency().
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount reported_emergency_loss;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total amount in losses reported in all calls to #report_emergency_by_count().
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount reported_emergency_loss_by_count;
|
2017-11-06 00:03:08 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Expected balance in the escrow account.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_escrow_balance;
|
2017-10-16 11:49:32 +02:00
|
|
|
|
|
|
|
/**
|
2017-11-06 00:03:08 +01:00
|
|
|
* Active risk exposure.
|
2017-10-16 11:49:32 +02:00
|
|
|
*/
|
2017-11-06 00:03:08 +01:00
|
|
|
static struct TALER_Amount total_risk;
|
|
|
|
|
2019-07-25 19:26:25 +02:00
|
|
|
/**
|
|
|
|
* Actualized risk (= loss) from paybacks.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_payback_loss;
|
|
|
|
|
2020-01-17 15:00:22 +01:00
|
|
|
/**
|
|
|
|
* Paybacks we made on denominations that were not revoked (!?).
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_irregular_paybacks;
|
|
|
|
|
2017-11-06 00:03:08 +01:00
|
|
|
/**
|
|
|
|
* Total withdraw fees earned.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_withdraw_fee_income;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total deposit fees earned.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_deposit_fee_income;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total melt fees earned.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_melt_fee_income;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total refund fees earned.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_refund_fee_income;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total aggregation fees earned.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_aggregation_fee_income;
|
|
|
|
|
2017-11-06 19:11:43 +01:00
|
|
|
/**
|
|
|
|
* Array of reports about coin operations with bad signatures.
|
|
|
|
*/
|
|
|
|
static json_t *report_bad_sig_losses;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total amount lost by operations for which signatures were invalid.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_bad_sig_loss;
|
2017-10-16 11:49:32 +02:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
/**
|
|
|
|
* Array of refresh transactions where the /refresh/reveal has not yet
|
|
|
|
* happened (and may of course never happen).
|
|
|
|
*/
|
|
|
|
static json_t *report_refreshs_hanging;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total amount lost by operations for which signatures were invalid.
|
|
|
|
*/
|
|
|
|
static struct TALER_Amount total_refresh_hanging;
|
|
|
|
|
2019-12-03 12:39:32 +01:00
|
|
|
/**
|
|
|
|
* At what time did the auditor process start?
|
|
|
|
*/
|
|
|
|
static struct GNUNET_TIME_Absolute start_time;
|
|
|
|
|
2017-03-14 15:13:50 +01:00
|
|
|
|
2019-09-02 08:01:55 +02:00
|
|
|
/* ********************************* helpers *************************** */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert absolute time to human-readable JSON string.
|
|
|
|
*
|
|
|
|
* @param at time to convert
|
|
|
|
* @return human-readable string representing the time
|
|
|
|
*/
|
|
|
|
static json_t *
|
|
|
|
json_from_time_abs_nbo (struct GNUNET_TIME_AbsoluteNBO at)
|
|
|
|
{
|
|
|
|
return json_string
|
|
|
|
(GNUNET_STRINGS_absolute_time_to_string
|
|
|
|
(GNUNET_TIME_absolute_ntoh (at)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert absolute time to human-readable JSON string.
|
|
|
|
*
|
|
|
|
* @param at time to convert
|
|
|
|
* @return human-readable string representing the time
|
|
|
|
*/
|
|
|
|
static json_t *
|
|
|
|
json_from_time_abs (struct GNUNET_TIME_Absolute at)
|
|
|
|
{
|
|
|
|
return json_string
|
|
|
|
(GNUNET_STRINGS_absolute_time_to_string (at));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-14 15:13:50 +01:00
|
|
|
/* ***************************** Report logic **************************** */
|
|
|
|
|
2017-03-17 18:27:53 +01:00
|
|
|
|
2017-10-16 11:49:32 +02:00
|
|
|
/**
|
|
|
|
* Add @a object to the report @a array. Fail hard if this fails.
|
|
|
|
*
|
|
|
|
* @param array report array to append @a object to
|
|
|
|
* @param object object to append, should be check that it is not NULL
|
2017-11-06 00:03:08 +01:00
|
|
|
*/
|
2017-10-16 11:49:32 +02:00
|
|
|
static void
|
|
|
|
report (json_t *array,
|
2019-08-25 16:18:24 +02:00
|
|
|
json_t *object)
|
2017-10-16 11:49:32 +02:00
|
|
|
{
|
|
|
|
GNUNET_assert (NULL != object);
|
|
|
|
GNUNET_assert (0 ==
|
2019-08-25 16:18:24 +02:00
|
|
|
json_array_append_new (array,
|
|
|
|
object));
|
2017-10-16 11:49:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-17 18:27:53 +01:00
|
|
|
/**
|
|
|
|
* Called in case we detect an emergency situation where the exchange
|
|
|
|
* is paying out a larger amount on a denomination than we issued in
|
|
|
|
* that denomination. This means that the exchange's private keys
|
|
|
|
* might have gotten compromised, and that we need to trigger an
|
|
|
|
* emergency request to all wallets to deposit pending coins for the
|
|
|
|
* denomination (and as an exchange suffer a huge financial loss).
|
|
|
|
*
|
2019-10-09 14:22:42 +02:00
|
|
|
* @param issue denomination key where the loss was detected
|
|
|
|
* @param risk maximum risk that might have just become real (coins created by this @a issue)
|
2019-09-02 08:01:55 +02:00
|
|
|
* @param loss actual losses already (actualized before denomination was revoked)
|
2017-03-17 18:27:53 +01:00
|
|
|
*/
|
|
|
|
static void
|
2019-10-09 14:22:42 +02:00
|
|
|
report_emergency_by_amount (const struct TALER_DenominationKeyValidityPS *issue,
|
2019-09-02 08:01:55 +02:00
|
|
|
const struct TALER_Amount *risk,
|
|
|
|
const struct TALER_Amount *loss)
|
2017-03-17 18:27:53 +01:00
|
|
|
{
|
2017-10-16 11:49:32 +02:00
|
|
|
report (report_emergencies,
|
2019-09-02 08:01:55 +02:00
|
|
|
json_pack ("{s:o, s:o, s:o, s:o, s:o, s:o}",
|
2019-08-25 16:18:24 +02:00
|
|
|
"denompub_hash",
|
2019-10-09 14:22:42 +02:00
|
|
|
GNUNET_JSON_from_data_auto (&issue->denom_hash),
|
2019-08-25 16:18:24 +02:00
|
|
|
"denom_risk",
|
|
|
|
TALER_JSON_from_amount (risk),
|
2019-09-02 08:01:55 +02:00
|
|
|
"denom_loss",
|
|
|
|
TALER_JSON_from_amount (loss),
|
2019-08-25 16:18:24 +02:00
|
|
|
"start",
|
2019-10-09 14:22:42 +02:00
|
|
|
json_from_time_abs_nbo (issue->start),
|
2019-08-25 16:18:24 +02:00
|
|
|
"deposit_end",
|
2019-10-09 14:22:42 +02:00
|
|
|
json_from_time_abs_nbo (issue->expire_deposit),
|
2019-08-25 16:18:24 +02:00
|
|
|
"value",
|
2019-10-09 14:22:42 +02:00
|
|
|
TALER_JSON_from_amount_nbo (&issue->value)));
|
2017-11-06 00:03:08 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2019-09-28 20:53:44 +02:00
|
|
|
TALER_amount_add (&reported_emergency_risk_by_amount,
|
|
|
|
&reported_emergency_risk_by_amount,
|
2017-11-06 00:03:08 +01:00
|
|
|
risk));
|
2019-09-28 20:53:44 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&reported_emergency_loss,
|
|
|
|
&reported_emergency_loss,
|
|
|
|
loss));
|
2017-03-17 18:27:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-04 16:20:09 +01:00
|
|
|
/**
|
|
|
|
* Called in case we detect an emergency situation where the exchange
|
|
|
|
* is paying out a larger NUMBER of coins of a denomination than we
|
|
|
|
* issued in that denomination. This means that the exchange's
|
|
|
|
* private keys might have gotten compromised, and that we need to
|
|
|
|
* trigger an emergency request to all wallets to deposit pending
|
|
|
|
* coins for the denomination (and as an exchange suffer a huge
|
|
|
|
* financial loss).
|
|
|
|
*
|
2019-10-09 14:22:42 +02:00
|
|
|
* @param issue denomination key where the loss was detected
|
2018-11-04 16:20:09 +01:00
|
|
|
* @param num_issued number of coins that were issued
|
|
|
|
* @param num_known number of coins that have been deposited
|
|
|
|
* @param risk amount that is at risk
|
|
|
|
*/
|
|
|
|
static void
|
2019-10-09 14:22:42 +02:00
|
|
|
report_emergency_by_count (const struct TALER_DenominationKeyValidityPS *issue,
|
2018-11-04 16:20:09 +01:00
|
|
|
uint64_t num_issued,
|
|
|
|
uint64_t num_known,
|
|
|
|
const struct TALER_Amount *risk)
|
|
|
|
{
|
2019-09-28 20:53:44 +02:00
|
|
|
struct TALER_Amount denom_value;
|
|
|
|
|
2019-09-02 08:01:55 +02:00
|
|
|
report (report_emergencies_by_count,
|
|
|
|
json_pack ("{s:o, s:I, s:I, s:o, s:o, s:o, s:o}",
|
2019-08-25 16:18:24 +02:00
|
|
|
"denompub_hash",
|
2019-10-09 14:22:42 +02:00
|
|
|
GNUNET_JSON_from_data_auto (&issue->denom_hash),
|
2019-08-25 16:18:24 +02:00
|
|
|
"num_issued",
|
|
|
|
(json_int_t) num_issued,
|
|
|
|
"num_known",
|
|
|
|
(json_int_t) num_known,
|
|
|
|
"denom_risk",
|
|
|
|
TALER_JSON_from_amount (risk),
|
|
|
|
"start",
|
2019-10-09 14:22:42 +02:00
|
|
|
json_from_time_abs_nbo (issue->start),
|
2019-08-25 16:18:24 +02:00
|
|
|
"deposit_end",
|
2019-10-09 14:22:42 +02:00
|
|
|
json_from_time_abs_nbo (issue->expire_deposit),
|
2019-08-25 16:18:24 +02:00
|
|
|
"value",
|
2019-10-09 14:22:42 +02:00
|
|
|
TALER_JSON_from_amount_nbo (&issue->value)));
|
2018-11-04 16:20:09 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2019-09-28 20:53:44 +02:00
|
|
|
TALER_amount_add (&reported_emergency_risk_by_count,
|
|
|
|
&reported_emergency_risk_by_count,
|
2018-11-04 16:20:09 +01:00
|
|
|
risk));
|
2019-09-28 20:53:44 +02:00
|
|
|
TALER_amount_ntoh (&denom_value,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue->value);
|
2019-09-28 20:53:44 +02:00
|
|
|
for (uint64_t i = num_issued; i<num_known; i++)
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&reported_emergency_loss_by_count,
|
|
|
|
&reported_emergency_loss_by_count,
|
|
|
|
&denom_value));
|
|
|
|
|
2018-11-04 16:20:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-06 19:11:43 +01:00
|
|
|
/**
|
|
|
|
* Report a (serious) inconsistency in the exchange's database with
|
|
|
|
* respect to calculations involving amounts.
|
|
|
|
*
|
|
|
|
* @param operation what operation had the inconsistency
|
|
|
|
* @param rowid affected row, UINT64_MAX if row is missing
|
|
|
|
* @param exchange amount calculated by exchange
|
|
|
|
* @param auditor amount calculated by auditor
|
|
|
|
* @param proftable 1 if @a exchange being larger than @a auditor is
|
|
|
|
* profitable for the exchange for this operation,
|
|
|
|
* -1 if @a exchange being smaller than @a auditor is
|
|
|
|
* profitable for the exchange, and 0 if it is unclear
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
report_amount_arithmetic_inconsistency (const char *operation,
|
|
|
|
uint64_t rowid,
|
|
|
|
const struct TALER_Amount *exchange,
|
|
|
|
const struct TALER_Amount *auditor,
|
|
|
|
int profitable)
|
|
|
|
{
|
|
|
|
struct TALER_Amount delta;
|
|
|
|
struct TALER_Amount *target;
|
|
|
|
|
|
|
|
if (0 < TALER_amount_cmp (exchange,
|
|
|
|
auditor))
|
|
|
|
{
|
|
|
|
/* exchange > auditor */
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_subtract (&delta,
|
|
|
|
exchange,
|
|
|
|
auditor));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* auditor < exchange */
|
2019-08-25 16:18:24 +02:00
|
|
|
profitable = -profitable;
|
2017-11-06 19:11:43 +01:00
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_subtract (&delta,
|
|
|
|
auditor,
|
|
|
|
exchange));
|
|
|
|
}
|
|
|
|
report (report_amount_arithmetic_inconsistencies,
|
|
|
|
json_pack ("{s:s, s:I, s:o, s:o, s:I}",
|
|
|
|
"operation", operation,
|
|
|
|
"rowid", (json_int_t) rowid,
|
|
|
|
"exchange", TALER_JSON_from_amount (exchange),
|
|
|
|
"auditor", TALER_JSON_from_amount (auditor),
|
|
|
|
"profitable", (json_int_t) profitable));
|
|
|
|
if (0 != profitable)
|
|
|
|
{
|
2018-01-04 10:38:16 +01:00
|
|
|
target = (1 == profitable)
|
2019-08-25 16:18:24 +02:00
|
|
|
? &total_arithmetic_delta_plus
|
|
|
|
: &total_arithmetic_delta_minus;
|
2017-11-06 19:11:43 +01:00
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (target,
|
|
|
|
target,
|
|
|
|
&delta));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Report a (serious) inconsistency in the exchange's database with
|
|
|
|
* respect to calculations involving amounts of a coin.
|
|
|
|
*
|
|
|
|
* @param operation what operation had the inconsistency
|
|
|
|
* @param coin_pub affected coin
|
|
|
|
* @param exchange amount calculated by exchange
|
|
|
|
* @param auditor amount calculated by auditor
|
|
|
|
* @param proftable 1 if @a exchange being larger than @a auditor is
|
|
|
|
* profitable for the exchange for this operation,
|
|
|
|
* -1 if @a exchange being smaller than @a auditor is
|
|
|
|
* profitable for the exchange, and 0 if it is unclear
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
report_coin_arithmetic_inconsistency (const char *operation,
|
2019-08-25 16:18:24 +02:00
|
|
|
const struct
|
|
|
|
TALER_CoinSpendPublicKeyP *coin_pub,
|
2017-11-06 19:11:43 +01:00
|
|
|
const struct TALER_Amount *exchange,
|
|
|
|
const struct TALER_Amount *auditor,
|
|
|
|
int profitable)
|
|
|
|
{
|
|
|
|
struct TALER_Amount delta;
|
|
|
|
struct TALER_Amount *target;
|
|
|
|
|
|
|
|
if (0 < TALER_amount_cmp (exchange,
|
|
|
|
auditor))
|
|
|
|
{
|
|
|
|
/* exchange > auditor */
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_subtract (&delta,
|
|
|
|
exchange,
|
|
|
|
auditor));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* auditor < exchange */
|
2019-08-25 16:18:24 +02:00
|
|
|
profitable = -profitable;
|
2017-11-06 19:11:43 +01:00
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_subtract (&delta,
|
|
|
|
auditor,
|
|
|
|
exchange));
|
|
|
|
}
|
|
|
|
report (report_coin_inconsistencies,
|
|
|
|
json_pack ("{s:s, s:o, s:o, s:o, s:I}",
|
|
|
|
"operation", operation,
|
|
|
|
"coin_pub", GNUNET_JSON_from_data_auto (coin_pub),
|
|
|
|
"exchange", TALER_JSON_from_amount (exchange),
|
|
|
|
"auditor", TALER_JSON_from_amount (auditor),
|
|
|
|
"profitable", (json_int_t) profitable));
|
|
|
|
if (0 != profitable)
|
|
|
|
{
|
2018-01-04 10:38:16 +01:00
|
|
|
target = (1 == profitable)
|
2019-08-25 16:18:24 +02:00
|
|
|
? &total_coin_delta_plus
|
|
|
|
: &total_coin_delta_minus;
|
2017-11-06 19:11:43 +01:00
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (target,
|
|
|
|
target,
|
|
|
|
&delta));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-14 15:13:50 +01:00
|
|
|
/**
|
|
|
|
* Report a (serious) inconsistency in the exchange's database.
|
|
|
|
*
|
|
|
|
* @param table affected table
|
|
|
|
* @param rowid affected row, UINT64_MAX if row is missing
|
|
|
|
* @param diagnostic message explaining the problem
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
report_row_inconsistency (const char *table,
|
|
|
|
uint64_t rowid,
|
|
|
|
const char *diagnostic)
|
|
|
|
{
|
2017-10-16 11:49:32 +02:00
|
|
|
report (report_row_inconsistencies,
|
2019-08-25 16:18:24 +02:00
|
|
|
json_pack ("{s:s, s:I, s:s}",
|
|
|
|
"table", table,
|
|
|
|
"row", (json_int_t) rowid,
|
|
|
|
"diagnostic", diagnostic));
|
2017-03-14 15:13:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ************************* Transaction-global state ************************ */
|
|
|
|
|
|
|
|
/**
|
2019-10-09 14:22:42 +02:00
|
|
|
* Results about denominations, cached per-transaction, maps denomination pub hashes
|
|
|
|
* to `struct TALER_DenominationKeyValidityPS`.
|
2017-03-14 15:13:50 +01:00
|
|
|
*/
|
|
|
|
static struct GNUNET_CONTAINER_MultiHashMap *denominations;
|
2017-03-14 12:22:03 +01:00
|
|
|
|
2016-11-17 14:31:44 +01:00
|
|
|
|
2017-03-14 15:13:50 +01:00
|
|
|
/**
|
2019-10-09 14:22:42 +02:00
|
|
|
* Function called with the results of select_denomination_info()
|
2017-03-14 15:13:50 +01:00
|
|
|
*
|
2019-10-09 14:22:42 +02:00
|
|
|
* @param cls closure, NULL
|
|
|
|
* @param issue issuing information with value, fees and other info about the denomination.
|
|
|
|
* @return #GNUNET_OK (to continue)
|
2017-03-14 15:13:50 +01:00
|
|
|
*/
|
2019-10-09 14:22:42 +02:00
|
|
|
static int
|
|
|
|
add_denomination (void *cls,
|
|
|
|
const struct TALER_DenominationKeyValidityPS *issue)
|
2017-03-14 15:13:50 +01:00
|
|
|
{
|
2019-10-09 14:22:42 +02:00
|
|
|
struct TALER_DenominationKeyValidityPS *i;
|
2017-03-14 15:13:50 +01:00
|
|
|
|
2019-10-09 14:22:42 +02:00
|
|
|
(void) cls;
|
|
|
|
if (NULL !=
|
|
|
|
GNUNET_CONTAINER_multihashmap_get (denominations,
|
|
|
|
&issue->denom_hash))
|
2019-10-11 19:02:07 +02:00
|
|
|
return GNUNET_OK; /* value already known */
|
2017-03-20 02:29:33 +01:00
|
|
|
{
|
|
|
|
struct TALER_Amount value;
|
|
|
|
|
|
|
|
TALER_amount_ntoh (&value,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue->value);
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Tracking denomination `%s' (%s)\n",
|
2019-10-09 14:22:42 +02:00
|
|
|
GNUNET_h2s (&issue->denom_hash),
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount2s (&value));
|
2019-09-02 08:01:55 +02:00
|
|
|
TALER_amount_ntoh (&value,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue->fee_withdraw);
|
2019-09-02 08:01:55 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Withdraw fee is %s\n",
|
|
|
|
TALER_amount2s (&value));
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Start time is %s\n",
|
|
|
|
GNUNET_STRINGS_absolute_time_to_string
|
2019-10-09 14:22:42 +02:00
|
|
|
(GNUNET_TIME_absolute_ntoh (issue->start)));
|
2019-09-02 08:01:55 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Expire deposit time is %s\n",
|
|
|
|
GNUNET_STRINGS_absolute_time_to_string
|
2019-10-09 14:22:42 +02:00
|
|
|
(GNUNET_TIME_absolute_ntoh (issue->expire_deposit)));
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
2019-10-09 14:22:42 +02:00
|
|
|
i = GNUNET_new (struct TALER_DenominationKeyValidityPS);
|
|
|
|
*i = *issue;
|
2017-03-14 15:13:50 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
GNUNET_CONTAINER_multihashmap_put (denominations,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue->denom_hash,
|
|
|
|
i,
|
2017-03-14 15:13:50 +01:00
|
|
|
GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
|
2019-10-09 14:22:42 +02:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtain information about a @a denom_pub.
|
|
|
|
*
|
|
|
|
* @param dh hash of the denomination public key to look up
|
|
|
|
* @param[out] issue set to detailed information about @a denom_pub, NULL if not found, must
|
|
|
|
* NOT be freed by caller
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
|
|
|
get_denomination_info_by_hash (const struct GNUNET_HashCode *dh,
|
|
|
|
const struct
|
|
|
|
TALER_DenominationKeyValidityPS **issue)
|
|
|
|
{
|
|
|
|
const struct TALER_DenominationKeyValidityPS *i;
|
2019-10-11 19:02:07 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2019-10-09 14:22:42 +02:00
|
|
|
|
|
|
|
if (NULL == denominations)
|
|
|
|
{
|
|
|
|
denominations = GNUNET_CONTAINER_multihashmap_create (256,
|
|
|
|
GNUNET_NO);
|
|
|
|
qs = adb->select_denomination_info (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&add_denomination,
|
|
|
|
NULL);
|
|
|
|
if (0 > qs)
|
|
|
|
{
|
|
|
|
*issue = NULL;
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i = GNUNET_CONTAINER_multihashmap_get (denominations,
|
|
|
|
dh);
|
|
|
|
if (NULL != i)
|
|
|
|
{
|
|
|
|
/* cache hit */
|
|
|
|
*issue = i;
|
|
|
|
return GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
|
|
|
}
|
|
|
|
/* maybe database changed since we last iterated, give it one more shot */
|
|
|
|
qs = adb->select_denomination_info (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&add_denomination,
|
|
|
|
NULL);
|
2019-12-24 15:58:23 +01:00
|
|
|
if (qs <= 0)
|
2019-12-24 20:21:54 +01:00
|
|
|
{
|
|
|
|
if (0 == qs)
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Denomination %s not found\n",
|
|
|
|
TALER_B2S (dh));
|
2019-12-24 15:58:23 +01:00
|
|
|
return qs;
|
2019-12-24 20:21:54 +01:00
|
|
|
}
|
2019-10-09 14:22:42 +02:00
|
|
|
i = GNUNET_CONTAINER_multihashmap_get (denominations,
|
|
|
|
dh);
|
|
|
|
if (NULL != i)
|
|
|
|
{
|
|
|
|
/* cache hit */
|
|
|
|
*issue = i;
|
|
|
|
return GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
|
|
|
}
|
2019-12-24 15:58:23 +01:00
|
|
|
/* This should be impossible; hard error */
|
|
|
|
GNUNET_break (0);
|
2019-10-09 14:22:42 +02:00
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-14 15:13:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-02 21:16:51 +02:00
|
|
|
/**
|
|
|
|
* Obtain information about a @a denom_pub.
|
|
|
|
*
|
|
|
|
* @param denom_pub key to look up
|
2019-10-09 14:22:42 +02:00
|
|
|
* @param[out] issue set to detailed information about @a denom_pub, NULL if not found, must
|
2019-05-02 21:16:51 +02:00
|
|
|
* NOT be freed by caller
|
|
|
|
* @param[out] dh set to the hash of @a denom_pub, may be NULL
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
|
|
|
get_denomination_info (const struct TALER_DenominationPublicKey *denom_pub,
|
2019-08-25 16:18:24 +02:00
|
|
|
const struct
|
2019-10-09 14:22:42 +02:00
|
|
|
TALER_DenominationKeyValidityPS **issue,
|
2019-05-02 21:16:51 +02:00
|
|
|
struct GNUNET_HashCode *dh)
|
|
|
|
{
|
|
|
|
struct GNUNET_HashCode hc;
|
|
|
|
|
|
|
|
if (NULL == dh)
|
|
|
|
dh = &hc;
|
|
|
|
GNUNET_CRYPTO_rsa_public_key_hash (denom_pub->rsa_public_key,
|
|
|
|
dh);
|
|
|
|
return get_denomination_info_by_hash (dh,
|
2019-10-09 14:22:42 +02:00
|
|
|
issue);
|
2019-05-02 21:16:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-14 15:13:50 +01:00
|
|
|
/**
|
|
|
|
* Free denomination key information.
|
|
|
|
*
|
|
|
|
* @param cls NULL
|
|
|
|
* @param key unused
|
|
|
|
* @param value the `struct TALER_EXCHANGEDB_DenominationKeyInformationP *` to free
|
|
|
|
* @return #GNUNET_OK (continue to iterate)
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
free_dk_info (void *cls,
|
|
|
|
const struct GNUNET_HashCode *key,
|
|
|
|
void *value)
|
|
|
|
{
|
2019-10-09 14:22:42 +02:00
|
|
|
struct TALER_DenominationKeyValidityPS *issue = value;
|
2017-03-14 15:13:50 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Done with denomination `%s'\n",
|
|
|
|
GNUNET_h2s (key));
|
2019-10-09 14:22:42 +02:00
|
|
|
GNUNET_free (issue);
|
2017-03-14 15:13:50 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Purge transaction global state cache, the transaction is
|
|
|
|
* done and we do not want to have the state cross over to
|
|
|
|
* the next transaction.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
clear_transaction_state_cache ()
|
|
|
|
{
|
|
|
|
if (NULL == denominations)
|
|
|
|
return;
|
|
|
|
GNUNET_CONTAINER_multihashmap_iterate (denominations,
|
|
|
|
&free_dk_info,
|
|
|
|
NULL);
|
|
|
|
GNUNET_CONTAINER_multihashmap_destroy (denominations);
|
|
|
|
denominations = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ***************************** Analyze reserves ************************ */
|
2017-03-14 18:00:17 +01:00
|
|
|
/* This logic checks the reserves_in, reserves_out and reserves-tables */
|
2017-03-14 15:13:50 +01:00
|
|
|
|
2016-11-17 14:31:44 +01:00
|
|
|
/**
|
|
|
|
* Summary data we keep per reserve.
|
|
|
|
*/
|
|
|
|
struct ReserveSummary
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Public key of the reserve.
|
2017-03-14 18:00:17 +01:00
|
|
|
* Always set when the struct is first initialized.
|
2016-11-17 14:31:44 +01:00
|
|
|
*/
|
|
|
|
struct TALER_ReservePublicKeyP reserve_pub;
|
|
|
|
|
|
|
|
/**
|
2017-03-14 18:00:17 +01:00
|
|
|
* Sum of all incoming transfers during this transaction.
|
|
|
|
* Updated only in #handle_reserve_in().
|
2016-11-17 14:31:44 +01:00
|
|
|
*/
|
|
|
|
struct TALER_Amount total_in;
|
|
|
|
|
|
|
|
/**
|
2017-03-14 18:00:17 +01:00
|
|
|
* Sum of all outgoing transfers during this transaction (includes fees).
|
|
|
|
* Updated only in #handle_reserve_out().
|
2016-11-17 14:31:44 +01:00
|
|
|
*/
|
|
|
|
struct TALER_Amount total_out;
|
|
|
|
|
2017-03-14 18:00:17 +01:00
|
|
|
/**
|
|
|
|
* Sum of withdraw fees encountered during this transaction.
|
|
|
|
*/
|
|
|
|
struct TALER_Amount total_fee;
|
|
|
|
|
2017-03-14 15:13:50 +01:00
|
|
|
/**
|
|
|
|
* Previous balance of the reserve as remembered by the auditor.
|
2017-03-14 18:00:17 +01:00
|
|
|
* (updated based on @e total_in and @e total_out at the end).
|
2017-03-14 15:13:50 +01:00
|
|
|
*/
|
|
|
|
struct TALER_Amount a_balance;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Previous withdraw fee balance of the reserve, as remembered by the auditor.
|
2017-03-14 18:00:17 +01:00
|
|
|
* (updated based on @e total_fee at the end).
|
2017-03-14 15:13:50 +01:00
|
|
|
*/
|
|
|
|
struct TALER_Amount a_withdraw_fee_balance;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Previous reserve expiration data, as remembered by the auditor.
|
2017-03-14 18:00:17 +01:00
|
|
|
* (updated on-the-fly in #handle_reserve_in()).
|
2017-03-14 15:13:50 +01:00
|
|
|
*/
|
|
|
|
struct GNUNET_TIME_Absolute a_expiration_date;
|
|
|
|
|
2019-10-05 15:12:11 +02:00
|
|
|
/**
|
|
|
|
* Which account did originally put money into the reserve?
|
|
|
|
*/
|
|
|
|
char *sender_account;
|
|
|
|
|
2017-03-14 15:13:50 +01:00
|
|
|
/**
|
2017-03-14 18:00:17 +01:00
|
|
|
* Did we have a previous reserve info? Used to decide between
|
|
|
|
* UPDATE and INSERT later. Initialized in
|
|
|
|
* #load_auditor_reserve_summary() together with the a-* values
|
|
|
|
* (if available).
|
2017-03-14 15:13:50 +01:00
|
|
|
*/
|
|
|
|
int had_ri;
|
|
|
|
|
2016-11-17 14:31:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-03-14 15:13:50 +01:00
|
|
|
* Load the auditor's remembered state about the reserve into @a rs.
|
2017-03-14 18:00:17 +01:00
|
|
|
* The "total_in" and "total_out" amounts of @a rs must already be
|
|
|
|
* initialized (so we can determine the currency).
|
2017-03-14 15:13:50 +01:00
|
|
|
*
|
2017-04-20 07:49:56 +02:00
|
|
|
* @param[in,out] rs reserve summary to (fully) initialize
|
2017-06-25 01:46:19 +02:00
|
|
|
* @return transaction status code
|
2016-11-17 14:31:44 +01:00
|
|
|
*/
|
2017-06-25 01:46:19 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-03-14 15:13:50 +01:00
|
|
|
load_auditor_reserve_summary (struct ReserveSummary *rs)
|
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-03-15 13:36:47 +01:00
|
|
|
uint64_t rowid;
|
2017-03-14 15:13:50 +01:00
|
|
|
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = adb->get_reserve_info (adb->cls,
|
2019-07-24 13:31:48 +02:00
|
|
|
asession,
|
|
|
|
&rs->reserve_pub,
|
|
|
|
&master_pub,
|
|
|
|
&rowid,
|
|
|
|
&rs->a_balance,
|
|
|
|
&rs->a_withdraw_fee_balance,
|
2019-10-05 15:12:11 +02:00
|
|
|
&rs->a_expiration_date,
|
|
|
|
&rs->sender_account);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 > qs)
|
2017-03-14 15:13:50 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2017-03-14 15:13:50 +01:00
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
2017-03-14 15:13:50 +01:00
|
|
|
{
|
|
|
|
rs->had_ri = GNUNET_NO;
|
2017-03-14 18:00:17 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (rs->total_in.currency,
|
|
|
|
&rs->a_balance));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (rs->total_in.currency,
|
|
|
|
&rs->a_withdraw_fee_balance));
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Creating fresh reserve `%s' with starting balance %s\n",
|
|
|
|
TALER_B2S (&rs->reserve_pub),
|
|
|
|
TALER_amount2s (&rs->a_balance));
|
2017-06-25 01:46:19 +02:00
|
|
|
return GNUNET_DB_STATUS_SUCCESS_NO_RESULTS;
|
2017-03-14 15:13:50 +01:00
|
|
|
}
|
|
|
|
rs->had_ri = GNUNET_YES;
|
2017-03-14 18:00:17 +01:00
|
|
|
if ( (GNUNET_YES !=
|
|
|
|
TALER_amount_cmp_currency (&rs->a_balance,
|
|
|
|
&rs->a_withdraw_fee_balance)) ||
|
|
|
|
(GNUNET_YES !=
|
|
|
|
TALER_amount_cmp_currency (&rs->total_in,
|
|
|
|
&rs->a_balance)) )
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-25 01:46:19 +02:00
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-14 18:00:17 +01:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Auditor remembers reserve `%s' has balance %s\n",
|
|
|
|
TALER_B2S (&rs->reserve_pub),
|
|
|
|
TALER_amount2s (&rs->a_balance));
|
2017-06-25 01:46:19 +02:00
|
|
|
return GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
2017-03-14 15:13:50 +01:00
|
|
|
}
|
2016-11-17 14:31:44 +01:00
|
|
|
|
|
|
|
|
2017-03-14 18:00:17 +01:00
|
|
|
/**
|
|
|
|
* Closure to the various callbacks we make while checking a reserve.
|
|
|
|
*/
|
|
|
|
struct ReserveContext
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Map from hash of reserve's public key to a `struct ReserveSummary`.
|
|
|
|
*/
|
|
|
|
struct GNUNET_CONTAINER_MultiHashMap *reserves;
|
|
|
|
|
2017-04-19 13:46:38 +02:00
|
|
|
/**
|
|
|
|
* Map from hash of denomination's public key to a
|
|
|
|
* static string "revoked" for keys that have been revoked,
|
|
|
|
* or "master signature invalid" in case the revocation is
|
|
|
|
* there but bogus.
|
|
|
|
*/
|
|
|
|
struct GNUNET_CONTAINER_MultiHashMap *revoked;
|
|
|
|
|
2017-06-25 01:46:19 +02:00
|
|
|
/**
|
|
|
|
* Transaction status code, set to error codes if applicable.
|
|
|
|
*/
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-10-06 20:02:28 +02:00
|
|
|
|
2017-03-14 18:00:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-11-17 14:31:44 +01:00
|
|
|
/**
|
|
|
|
* Function called with details about incoming wire transfers.
|
|
|
|
*
|
2017-03-14 18:00:17 +01:00
|
|
|
* @param cls our `struct ReserveContext`
|
2016-11-17 14:31:44 +01:00
|
|
|
* @param rowid unique serial ID for the refresh session in our DB
|
|
|
|
* @param reserve_pub public key of the reserve (also the WTID)
|
|
|
|
* @param credit amount that was received
|
|
|
|
* @param sender_account_details information about the sender's bank account
|
2020-01-11 15:19:56 +01:00
|
|
|
* @param wire_reference unique reference identifying the wire transfer
|
2016-11-17 14:31:44 +01:00
|
|
|
* @param execution_date when did we receive the funds
|
|
|
|
* @return #GNUNET_OK to continue to iterate, #GNUNET_SYSERR to stop
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
handle_reserve_in (void *cls,
|
|
|
|
uint64_t rowid,
|
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub,
|
|
|
|
const struct TALER_Amount *credit,
|
2018-04-02 14:24:45 +02:00
|
|
|
const char *sender_account_details,
|
2020-01-11 15:19:56 +01:00
|
|
|
uint64_t wire_reference,
|
2016-11-17 14:31:44 +01:00
|
|
|
struct GNUNET_TIME_Absolute execution_date)
|
|
|
|
{
|
2017-03-14 18:00:17 +01:00
|
|
|
struct ReserveContext *rc = cls;
|
2016-11-17 14:31:44 +01:00
|
|
|
struct GNUNET_HashCode key;
|
|
|
|
struct ReserveSummary *rs;
|
2017-03-14 18:00:17 +01:00
|
|
|
struct GNUNET_TIME_Absolute expiry;
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2016-11-17 14:31:44 +01:00
|
|
|
|
2017-04-19 21:41:53 +02:00
|
|
|
/* should be monotonically increasing */
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_assert (rowid >= ppr.last_reserve_in_serial_id);
|
|
|
|
ppr.last_reserve_in_serial_id = rowid + 1;
|
2017-04-19 21:41:53 +02:00
|
|
|
|
2016-11-17 14:31:44 +01:00
|
|
|
GNUNET_CRYPTO_hash (reserve_pub,
|
|
|
|
sizeof (*reserve_pub),
|
|
|
|
&key);
|
2017-03-14 18:00:17 +01:00
|
|
|
rs = GNUNET_CONTAINER_multihashmap_get (rc->reserves,
|
2016-11-17 14:31:44 +01:00
|
|
|
&key);
|
|
|
|
if (NULL == rs)
|
|
|
|
{
|
|
|
|
rs = GNUNET_new (struct ReserveSummary);
|
2019-10-05 15:12:11 +02:00
|
|
|
rs->sender_account = GNUNET_strdup (sender_account_details);
|
2016-11-17 14:31:44 +01:00
|
|
|
rs->reserve_pub = *reserve_pub;
|
|
|
|
rs->total_in = *credit;
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (credit->currency,
|
|
|
|
&rs->total_out));
|
2017-03-14 18:00:17 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (credit->currency,
|
|
|
|
&rs->total_fee));
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 > (qs = load_auditor_reserve_summary (rs)))
|
2017-03-14 15:13:50 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (rs);
|
2017-06-25 01:46:19 +02:00
|
|
|
rc->qs = qs;
|
2017-03-14 15:13:50 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-11-17 14:31:44 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2017-03-14 18:00:17 +01:00
|
|
|
GNUNET_CONTAINER_multihashmap_put (rc->reserves,
|
2016-11-17 14:31:44 +01:00
|
|
|
&key,
|
|
|
|
rs,
|
|
|
|
GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&rs->total_in,
|
|
|
|
&rs->total_in,
|
|
|
|
credit));
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Additional incoming wire transfer for reserve `%s' of %s\n",
|
|
|
|
TALER_B2S (reserve_pub),
|
|
|
|
TALER_amount2s (credit));
|
2017-03-14 18:00:17 +01:00
|
|
|
expiry = GNUNET_TIME_absolute_add (execution_date,
|
2017-04-20 21:38:02 +02:00
|
|
|
idle_reserve_expiration_time);
|
2017-03-14 18:00:17 +01:00
|
|
|
rs->a_expiration_date = GNUNET_TIME_absolute_max (rs->a_expiration_date,
|
|
|
|
expiry);
|
2016-11-17 14:31:44 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-03-17 17:17:07 +01:00
|
|
|
* Function called with details about withdraw operations. Verifies
|
|
|
|
* the signature and updates the reserve's balance.
|
2016-11-17 14:31:44 +01:00
|
|
|
*
|
2017-03-14 18:00:17 +01:00
|
|
|
* @param cls our `struct ReserveContext`
|
2016-11-17 14:31:44 +01:00
|
|
|
* @param rowid unique serial ID for the refresh session in our DB
|
|
|
|
* @param h_blind_ev blinded hash of the coin's public key
|
|
|
|
* @param denom_pub public denomination key of the deposited coin
|
|
|
|
* @param reserve_pub public key of the reserve
|
|
|
|
* @param reserve_sig signature over the withdraw operation
|
|
|
|
* @param execution_date when did the wallet withdraw the coin
|
|
|
|
* @param amount_with_fee amount that was withdrawn
|
|
|
|
* @return #GNUNET_OK to continue to iterate, #GNUNET_SYSERR to stop
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
handle_reserve_out (void *cls,
|
|
|
|
uint64_t rowid,
|
|
|
|
const struct GNUNET_HashCode *h_blind_ev,
|
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub,
|
|
|
|
const struct TALER_ReserveSignatureP *reserve_sig,
|
|
|
|
struct GNUNET_TIME_Absolute execution_date,
|
|
|
|
const struct TALER_Amount *amount_with_fee)
|
|
|
|
{
|
2017-03-14 18:00:17 +01:00
|
|
|
struct ReserveContext *rc = cls;
|
2017-03-14 15:13:50 +01:00
|
|
|
struct TALER_WithdrawRequestPS wsrd;
|
2016-11-17 14:31:44 +01:00
|
|
|
struct GNUNET_HashCode key;
|
|
|
|
struct ReserveSummary *rs;
|
2019-10-09 14:22:42 +02:00
|
|
|
const struct TALER_DenominationKeyValidityPS *issue;
|
2017-03-14 18:00:17 +01:00
|
|
|
struct TALER_Amount withdraw_fee;
|
|
|
|
struct GNUNET_TIME_Absolute valid_start;
|
|
|
|
struct GNUNET_TIME_Absolute expire_withdraw;
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2016-11-17 14:31:44 +01:00
|
|
|
|
2017-03-14 15:13:50 +01:00
|
|
|
/* should be monotonically increasing */
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_assert (rowid >= ppr.last_reserve_out_serial_id);
|
|
|
|
ppr.last_reserve_out_serial_id = rowid + 1;
|
2017-03-14 15:13:50 +01:00
|
|
|
|
|
|
|
/* lookup denomination pub data (make sure denom_pub is valid, establish fees) */
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = get_denomination_info (denom_pub,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue,
|
2019-07-27 20:06:55 +02:00
|
|
|
&wsrd.h_denomination_pub);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 > qs)
|
2017-03-14 15:13:50 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
2019-12-24 15:58:23 +01:00
|
|
|
if (GNUNET_DB_STATUS_HARD_ERROR == qs)
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"Hard database error trying to get denomination %s (%s) from database!\n",
|
|
|
|
TALER_B2S (denom_pub),
|
|
|
|
TALER_amount2s (amount_with_fee));
|
2017-06-25 01:46:19 +02:00
|
|
|
rc->qs = qs;
|
2017-03-14 15:13:50 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
2017-03-14 15:13:50 +01:00
|
|
|
{
|
2017-03-15 19:28:05 +01:00
|
|
|
report_row_inconsistency ("withdraw",
|
2017-03-14 15:13:50 +01:00
|
|
|
rowid,
|
|
|
|
"denomination key not found (foreign key constraint violated)");
|
2017-06-25 01:46:19 +02:00
|
|
|
rc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-14 15:13:50 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
2017-03-14 18:00:17 +01:00
|
|
|
/* check that execution date is within withdraw range for denom_pub */
|
2019-10-09 14:22:42 +02:00
|
|
|
valid_start = GNUNET_TIME_absolute_ntoh (issue->start);
|
|
|
|
expire_withdraw = GNUNET_TIME_absolute_ntoh (issue->expire_withdraw);
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"Checking withdraw timing: %llu, expire: %llu, timing: %llu\n",
|
|
|
|
(unsigned long long) valid_start.abs_value_us,
|
|
|
|
(unsigned long long) expire_withdraw.abs_value_us,
|
|
|
|
(unsigned long long) execution_date.abs_value_us);
|
2017-03-14 18:00:17 +01:00
|
|
|
if ( (valid_start.abs_value_us > execution_date.abs_value_us) ||
|
|
|
|
(expire_withdraw.abs_value_us < execution_date.abs_value_us) )
|
|
|
|
{
|
2017-11-06 14:54:52 +01:00
|
|
|
report (denomination_key_validity_withdraw_inconsistencies,
|
2019-09-02 08:01:55 +02:00
|
|
|
json_pack ("{s:I, s:o, s:o, s:o}",
|
2017-11-06 14:54:52 +01:00
|
|
|
"row", (json_int_t) rowid,
|
2019-08-25 16:18:24 +02:00
|
|
|
"execution_date",
|
2019-09-02 08:01:55 +02:00
|
|
|
json_from_time_abs (execution_date),
|
2017-11-06 14:54:52 +01:00
|
|
|
"reserve_pub", GNUNET_JSON_from_data_auto (reserve_pub),
|
2019-08-25 16:18:24 +02:00
|
|
|
"denompub_h", GNUNET_JSON_from_data_auto (
|
|
|
|
&wsrd.h_denomination_pub)));
|
2017-03-14 18:00:17 +01:00
|
|
|
}
|
2017-03-14 15:13:50 +01:00
|
|
|
|
|
|
|
/* check reserve_sig */
|
|
|
|
wsrd.purpose.purpose = htonl (TALER_SIGNATURE_WALLET_RESERVE_WITHDRAW);
|
|
|
|
wsrd.purpose.size = htonl (sizeof (wsrd));
|
2017-03-19 13:53:50 +01:00
|
|
|
wsrd.reserve_pub = *reserve_pub;
|
2017-03-14 15:13:50 +01:00
|
|
|
TALER_amount_hton (&wsrd.amount_with_fee,
|
|
|
|
amount_with_fee);
|
2019-10-09 14:22:42 +02:00
|
|
|
wsrd.withdraw_fee = issue->fee_withdraw;
|
2017-03-14 15:13:50 +01:00
|
|
|
wsrd.h_coin_envelope = *h_blind_ev;
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_RESERVE_WITHDRAW,
|
|
|
|
&wsrd.purpose,
|
|
|
|
&reserve_sig->eddsa_signature,
|
|
|
|
&reserve_pub->eddsa_pub))
|
|
|
|
{
|
2017-11-06 19:11:43 +01:00
|
|
|
report (report_bad_sig_losses,
|
|
|
|
json_pack ("{s:s, s:I, s:o, s:o}",
|
|
|
|
"operation", "withdraw",
|
|
|
|
"row", (json_int_t) rowid,
|
|
|
|
"loss", TALER_JSON_from_amount (amount_with_fee),
|
|
|
|
"key_pub", GNUNET_JSON_from_data_auto (reserve_pub)));
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_bad_sig_loss,
|
|
|
|
&total_bad_sig_loss,
|
|
|
|
amount_with_fee));
|
2017-03-14 15:13:50 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
2016-11-17 14:31:44 +01:00
|
|
|
GNUNET_CRYPTO_hash (reserve_pub,
|
|
|
|
sizeof (*reserve_pub),
|
|
|
|
&key);
|
2017-03-14 18:00:17 +01:00
|
|
|
rs = GNUNET_CONTAINER_multihashmap_get (rc->reserves,
|
2016-11-17 14:31:44 +01:00
|
|
|
&key);
|
|
|
|
if (NULL == rs)
|
|
|
|
{
|
|
|
|
rs = GNUNET_new (struct ReserveSummary);
|
|
|
|
rs->reserve_pub = *reserve_pub;
|
|
|
|
rs->total_out = *amount_with_fee;
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (amount_with_fee->currency,
|
|
|
|
&rs->total_in));
|
2017-03-14 18:00:17 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (amount_with_fee->currency,
|
|
|
|
&rs->total_fee));
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = load_auditor_reserve_summary (rs);
|
|
|
|
if (0 > qs)
|
2017-03-14 15:13:50 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
2017-03-14 15:13:50 +01:00
|
|
|
GNUNET_free (rs);
|
2017-06-25 01:46:19 +02:00
|
|
|
rc->qs = qs;
|
2017-03-14 15:13:50 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-11-17 14:31:44 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2017-03-14 18:00:17 +01:00
|
|
|
GNUNET_CONTAINER_multihashmap_put (rc->reserves,
|
2016-11-17 14:31:44 +01:00
|
|
|
&key,
|
|
|
|
rs,
|
|
|
|
GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&rs->total_out,
|
|
|
|
&rs->total_out,
|
|
|
|
amount_with_fee));
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Reserve `%s' reduced by %s from withdraw\n",
|
|
|
|
TALER_B2S (reserve_pub),
|
|
|
|
TALER_amount2s (amount_with_fee));
|
2017-03-14 18:00:17 +01:00
|
|
|
TALER_amount_ntoh (&withdraw_fee,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue->fee_withdraw);
|
2019-09-02 08:01:55 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Increasing withdraw profits by fee %s\n",
|
|
|
|
TALER_amount2s (&withdraw_fee));
|
2017-03-14 18:00:17 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&rs->total_fee,
|
|
|
|
&rs->total_fee,
|
|
|
|
&withdraw_fee));
|
|
|
|
|
2016-11-17 14:31:44 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-04 15:38:58 +02:00
|
|
|
/**
|
|
|
|
* Function called with details about withdraw operations. Verifies
|
|
|
|
* the signature and updates the reserve's balance.
|
|
|
|
*
|
|
|
|
* @param cls our `struct ReserveContext`
|
|
|
|
* @param rowid unique serial ID for the refresh session in our DB
|
|
|
|
* @param timestamp when did we receive the payback request
|
|
|
|
* @param amount how much should be added back to the reserve
|
|
|
|
* @param reserve_pub public key of the reserve
|
2019-07-27 20:43:52 +02:00
|
|
|
* @param coin public information about the coin, denomination signature is
|
|
|
|
* already verified in #check_payback()
|
|
|
|
* @param denom_pub public key of the denomionation of @a coin
|
2017-04-04 15:38:58 +02:00
|
|
|
* @param coin_sig signature with @e coin_pub of type #TALER_SIGNATURE_WALLET_COIN_PAYBACK
|
|
|
|
* @param coin_blind blinding factor used to blind the coin
|
|
|
|
* @return #GNUNET_OK to continue to iterate, #GNUNET_SYSERR to stop
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
handle_payback_by_reserve (void *cls,
|
|
|
|
uint64_t rowid,
|
|
|
|
struct GNUNET_TIME_Absolute timestamp,
|
|
|
|
const struct TALER_Amount *amount,
|
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub,
|
2017-04-04 16:27:27 +02:00
|
|
|
const struct TALER_CoinPublicInfo *coin,
|
2019-05-02 21:16:51 +02:00
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
2017-04-04 15:38:58 +02:00
|
|
|
const struct TALER_CoinSpendSignatureP *coin_sig,
|
2019-08-25 16:18:24 +02:00
|
|
|
const struct
|
|
|
|
TALER_DenominationBlindingKeyP *coin_blind)
|
2017-04-04 15:38:58 +02:00
|
|
|
{
|
|
|
|
struct ReserveContext *rc = cls;
|
|
|
|
struct GNUNET_HashCode key;
|
|
|
|
struct ReserveSummary *rs;
|
|
|
|
struct GNUNET_TIME_Absolute expiry;
|
2017-04-04 17:05:38 +02:00
|
|
|
struct TALER_PaybackRequestPS pr;
|
2017-04-08 22:52:32 +02:00
|
|
|
struct TALER_MasterSignatureP msig;
|
2017-04-16 17:21:26 +02:00
|
|
|
uint64_t rev_rowid;
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-04-19 13:46:38 +02:00
|
|
|
const char *rev;
|
2017-04-04 15:38:58 +02:00
|
|
|
|
|
|
|
/* should be monotonically increasing */
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_assert (rowid >= ppr.last_reserve_payback_serial_id);
|
|
|
|
ppr.last_reserve_payback_serial_id = rowid + 1;
|
2020-01-17 15:02:27 +01:00
|
|
|
/* We know that denom_pub matches denom_pub_hash because this
|
|
|
|
is how the SQL statement joined the tables. */
|
2019-05-02 21:16:51 +02:00
|
|
|
pr.h_denom_pub = coin->denom_pub_hash;
|
2017-04-04 17:05:38 +02:00
|
|
|
pr.purpose.purpose = htonl (TALER_SIGNATURE_WALLET_COIN_PAYBACK);
|
|
|
|
pr.purpose.size = htonl (sizeof (pr));
|
|
|
|
pr.coin_pub = coin->coin_pub;
|
|
|
|
pr.coin_blind = *coin_blind;
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_PAYBACK,
|
|
|
|
&pr.purpose,
|
|
|
|
&coin_sig->eddsa_signature,
|
|
|
|
&coin->coin_pub.eddsa_pub))
|
|
|
|
{
|
2017-11-06 19:11:43 +01:00
|
|
|
report (report_bad_sig_losses,
|
|
|
|
json_pack ("{s:s, s:I, s:o, s:o}",
|
|
|
|
"operation", "payback",
|
|
|
|
"row", (json_int_t) rowid,
|
|
|
|
"loss", TALER_JSON_from_amount (amount),
|
2019-08-25 16:18:24 +02:00
|
|
|
"key_pub", GNUNET_JSON_from_data_auto (
|
|
|
|
&coin->coin_pub)));
|
2017-11-06 19:11:43 +01:00
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_bad_sig_loss,
|
|
|
|
&total_bad_sig_loss,
|
|
|
|
amount));
|
2017-04-04 17:05:38 +02:00
|
|
|
}
|
2017-04-08 22:52:32 +02:00
|
|
|
|
|
|
|
/* check that the coin was eligible for payback!*/
|
2017-04-19 13:46:38 +02:00
|
|
|
rev = GNUNET_CONTAINER_multihashmap_get (rc->revoked,
|
2019-07-24 13:31:48 +02:00
|
|
|
&pr.h_denom_pub);
|
2017-04-19 13:46:38 +02:00
|
|
|
if (NULL == rev)
|
2017-04-08 22:52:32 +02:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = edb->get_denomination_revocation (edb->cls,
|
2019-07-24 13:31:48 +02:00
|
|
|
esession,
|
|
|
|
&pr.h_denom_pub,
|
|
|
|
&msig,
|
|
|
|
&rev_rowid);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 > qs)
|
2017-04-19 13:46:38 +02:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
rc->qs = qs;
|
2017-04-19 13:46:38 +02:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
2017-04-19 13:46:38 +02:00
|
|
|
{
|
|
|
|
report_row_inconsistency ("payback",
|
2019-07-24 13:31:48 +02:00
|
|
|
rowid,
|
|
|
|
"denomination key not in revocation set");
|
2020-01-17 15:00:22 +01:00
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_irregular_paybacks,
|
|
|
|
&total_irregular_paybacks,
|
|
|
|
amount));
|
2017-04-19 13:46:38 +02:00
|
|
|
}
|
|
|
|
else
|
2017-04-08 22:52:32 +02:00
|
|
|
{
|
2017-04-19 13:46:38 +02:00
|
|
|
/* verify msig */
|
2019-02-23 14:47:44 +01:00
|
|
|
struct TALER_MasterDenominationKeyRevocationPS kr;
|
2017-05-05 13:41:32 +02:00
|
|
|
|
2019-08-25 16:18:24 +02:00
|
|
|
kr.purpose.purpose = htonl (
|
|
|
|
TALER_SIGNATURE_MASTER_DENOMINATION_KEY_REVOKED);
|
2017-04-19 13:46:38 +02:00
|
|
|
kr.purpose.size = htonl (sizeof (kr));
|
|
|
|
kr.h_denom_pub = pr.h_denom_pub;
|
|
|
|
if (GNUNET_OK !=
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_CRYPTO_eddsa_verify (
|
|
|
|
TALER_SIGNATURE_MASTER_DENOMINATION_KEY_REVOKED,
|
|
|
|
&kr.purpose,
|
|
|
|
&msig.eddsa_signature,
|
|
|
|
&master_pub.eddsa_pub))
|
2017-04-19 13:46:38 +02:00
|
|
|
{
|
2019-07-24 13:31:48 +02:00
|
|
|
rev = "master signature invalid";
|
2017-04-19 13:46:38 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-07-24 13:31:48 +02:00
|
|
|
rev = "revoked";
|
2017-04-19 13:46:38 +02:00
|
|
|
}
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2019-07-24 13:31:48 +02:00
|
|
|
GNUNET_CONTAINER_multihashmap_put (rc->revoked,
|
|
|
|
&pr.h_denom_pub,
|
|
|
|
(void *) rev,
|
|
|
|
GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
|
2017-04-08 22:52:32 +02:00
|
|
|
}
|
|
|
|
}
|
2017-12-09 23:35:04 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
rev_rowid = 0; /* reported elsewhere */
|
|
|
|
}
|
2017-12-09 23:51:49 +01:00
|
|
|
if ( (NULL != rev) &&
|
|
|
|
(0 == strcmp (rev, "master signature invalid")) )
|
2017-11-06 19:11:43 +01:00
|
|
|
{
|
|
|
|
report (report_bad_sig_losses,
|
|
|
|
json_pack ("{s:s, s:I, s:o, s:o}",
|
|
|
|
"operation", "payback-master",
|
|
|
|
"row", (json_int_t) rev_rowid,
|
|
|
|
"loss", TALER_JSON_from_amount (amount),
|
|
|
|
"key_pub", GNUNET_JSON_from_data_auto (&master_pub)));
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_bad_sig_loss,
|
|
|
|
&total_bad_sig_loss,
|
|
|
|
amount));
|
|
|
|
}
|
2017-04-08 22:52:32 +02:00
|
|
|
|
2017-04-04 15:38:58 +02:00
|
|
|
GNUNET_CRYPTO_hash (reserve_pub,
|
|
|
|
sizeof (*reserve_pub),
|
|
|
|
&key);
|
|
|
|
rs = GNUNET_CONTAINER_multihashmap_get (rc->reserves,
|
|
|
|
&key);
|
|
|
|
if (NULL == rs)
|
|
|
|
{
|
|
|
|
rs = GNUNET_new (struct ReserveSummary);
|
|
|
|
rs->reserve_pub = *reserve_pub;
|
|
|
|
rs->total_in = *amount;
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (amount->currency,
|
|
|
|
&rs->total_out));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (amount->currency,
|
|
|
|
&rs->total_fee));
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = load_auditor_reserve_summary (rs);
|
|
|
|
if (0 > qs)
|
2017-04-04 15:38:58 +02:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
2017-04-04 15:38:58 +02:00
|
|
|
GNUNET_free (rs);
|
2017-06-25 01:46:19 +02:00
|
|
|
rc->qs = qs;
|
2017-04-04 15:38:58 +02:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
GNUNET_CONTAINER_multihashmap_put (rc->reserves,
|
|
|
|
&key,
|
|
|
|
rs,
|
|
|
|
GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&rs->total_in,
|
|
|
|
&rs->total_in,
|
|
|
|
amount));
|
|
|
|
}
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Additional /payback value to for reserve `%s' of %s\n",
|
|
|
|
TALER_B2S (reserve_pub),
|
|
|
|
TALER_amount2s (amount));
|
|
|
|
expiry = GNUNET_TIME_absolute_add (timestamp,
|
2017-04-20 21:38:02 +02:00
|
|
|
idle_reserve_expiration_time);
|
2017-04-04 15:38:58 +02:00
|
|
|
rs->a_expiration_date = GNUNET_TIME_absolute_max (rs->a_expiration_date,
|
|
|
|
expiry);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-10-05 15:12:11 +02:00
|
|
|
/**
|
|
|
|
* Obtain the closing fee for a transfer at @a time for target
|
|
|
|
* @a receiver_account.
|
|
|
|
*
|
|
|
|
* @param receiver_account payto:// URI of the target account
|
|
|
|
* @param atime when was the transfer made
|
|
|
|
* @param fee[out] set to the closing fee
|
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
get_closing_fee (const char *receiver_account,
|
|
|
|
struct GNUNET_TIME_Absolute atime,
|
|
|
|
struct TALER_Amount *fee)
|
|
|
|
{
|
|
|
|
struct TALER_MasterSignatureP master_sig;
|
|
|
|
struct GNUNET_TIME_Absolute start_date;
|
|
|
|
struct GNUNET_TIME_Absolute end_date;
|
|
|
|
struct TALER_Amount wire_fee;
|
|
|
|
char *method;
|
|
|
|
|
2020-01-13 18:16:01 +01:00
|
|
|
method = TALER_payto_get_method (receiver_account);
|
2019-10-05 15:12:11 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"Method is `%s'\n",
|
|
|
|
method);
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT !=
|
|
|
|
edb->get_wire_fee (edb->cls,
|
|
|
|
esession,
|
|
|
|
method,
|
|
|
|
atime,
|
|
|
|
&start_date,
|
|
|
|
&end_date,
|
|
|
|
&wire_fee,
|
|
|
|
fee,
|
|
|
|
&master_sig))
|
|
|
|
{
|
|
|
|
report_row_inconsistency ("closing-fee",
|
|
|
|
atime.abs_value_us,
|
|
|
|
"closing fee unavailable at given time");
|
|
|
|
GNUNET_free (method);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
GNUNET_free (method);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-19 21:41:53 +02:00
|
|
|
/**
|
|
|
|
* Function called about reserve closing operations
|
|
|
|
* the aggregator triggered.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param rowid row identifier used to uniquely identify the reserve closing operation
|
|
|
|
* @param execution_date when did we execute the close operation
|
|
|
|
* @param amount_with_fee how much did we debit the reserve
|
|
|
|
* @param closing_fee how much did we charge for closing the reserve
|
|
|
|
* @param reserve_pub public key of the reserve
|
|
|
|
* @param receiver_account where did we send the funds
|
|
|
|
* @param transfer_details details about the wire transfer
|
|
|
|
* @return #GNUNET_OK to continue to iterate, #GNUNET_SYSERR to stop
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
handle_reserve_closed (void *cls,
|
2019-07-25 19:26:25 +02:00
|
|
|
uint64_t rowid,
|
|
|
|
struct GNUNET_TIME_Absolute execution_date,
|
|
|
|
const struct TALER_Amount *amount_with_fee,
|
|
|
|
const struct TALER_Amount *closing_fee,
|
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub,
|
|
|
|
const char *receiver_account,
|
2019-08-25 16:18:24 +02:00
|
|
|
const struct
|
|
|
|
TALER_WireTransferIdentifierRawP *transfer_details)
|
2017-04-19 21:41:53 +02:00
|
|
|
{
|
|
|
|
struct ReserveContext *rc = cls;
|
|
|
|
struct GNUNET_HashCode key;
|
|
|
|
struct ReserveSummary *rs;
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-05-05 13:41:32 +02:00
|
|
|
|
2017-04-19 21:41:53 +02:00
|
|
|
/* should be monotonically increasing */
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_assert (rowid >= ppr.last_reserve_close_serial_id);
|
|
|
|
ppr.last_reserve_close_serial_id = rowid + 1;
|
2017-04-19 21:41:53 +02:00
|
|
|
|
|
|
|
GNUNET_CRYPTO_hash (reserve_pub,
|
|
|
|
sizeof (*reserve_pub),
|
|
|
|
&key);
|
|
|
|
rs = GNUNET_CONTAINER_multihashmap_get (rc->reserves,
|
|
|
|
&key);
|
|
|
|
if (NULL == rs)
|
|
|
|
{
|
|
|
|
rs = GNUNET_new (struct ReserveSummary);
|
|
|
|
rs->reserve_pub = *reserve_pub;
|
|
|
|
rs->total_out = *amount_with_fee;
|
|
|
|
rs->total_fee = *closing_fee;
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (amount_with_fee->currency,
|
|
|
|
&rs->total_in));
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = load_auditor_reserve_summary (rs);
|
|
|
|
if (0 > qs)
|
2017-04-19 21:41:53 +02:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
2017-04-19 21:41:53 +02:00
|
|
|
GNUNET_free (rs);
|
2017-06-25 01:46:19 +02:00
|
|
|
rc->qs = qs;
|
2017-04-19 21:41:53 +02:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
GNUNET_CONTAINER_multihashmap_put (rc->reserves,
|
|
|
|
&key,
|
|
|
|
rs,
|
|
|
|
GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-10-05 15:12:11 +02:00
|
|
|
struct TALER_Amount expected_fee;
|
|
|
|
|
2017-04-19 21:41:53 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&rs->total_out,
|
|
|
|
&rs->total_out,
|
|
|
|
amount_with_fee));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&rs->total_fee,
|
|
|
|
&rs->total_fee,
|
|
|
|
closing_fee));
|
2019-10-05 15:12:11 +02:00
|
|
|
/* verify closing_fee is correct! */
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
get_closing_fee (receiver_account,
|
|
|
|
execution_date,
|
|
|
|
&expected_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
}
|
|
|
|
else if (0 != TALER_amount_cmp (&expected_fee,
|
|
|
|
closing_fee))
|
|
|
|
{
|
|
|
|
report_amount_arithmetic_inconsistency ("closing aggregation fee",
|
|
|
|
rowid,
|
|
|
|
closing_fee,
|
|
|
|
&expected_fee,
|
|
|
|
1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (0 != strcmp (rs->sender_account,
|
|
|
|
receiver_account))
|
|
|
|
{
|
|
|
|
report_row_inconsistency ("reserves_close",
|
|
|
|
rowid,
|
|
|
|
"target account does not match origin account");
|
2017-04-19 21:41:53 +02:00
|
|
|
}
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Additional closing operation for reserve `%s' of %s\n",
|
|
|
|
TALER_B2S (reserve_pub),
|
|
|
|
TALER_amount2s (amount_with_fee));
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-17 14:31:44 +01:00
|
|
|
/**
|
|
|
|
* Check that the reserve summary matches what the exchange database
|
|
|
|
* thinks about the reserve, and update our own state of the reserve.
|
|
|
|
*
|
|
|
|
* Remove all reserves that we are happy with from the DB.
|
|
|
|
*
|
2017-03-14 18:00:17 +01:00
|
|
|
* @param cls our `struct ReserveContext`
|
2016-11-17 14:31:44 +01:00
|
|
|
* @param key hash of the reserve public key
|
|
|
|
* @param value a `struct ReserveSummary`
|
|
|
|
* @return #GNUNET_OK to process more entries
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
verify_reserve_balance (void *cls,
|
|
|
|
const struct GNUNET_HashCode *key,
|
|
|
|
void *value)
|
|
|
|
{
|
2017-03-14 18:00:17 +01:00
|
|
|
struct ReserveContext *rc = cls;
|
2016-11-17 14:31:44 +01:00
|
|
|
struct ReserveSummary *rs = value;
|
|
|
|
struct TALER_EXCHANGEDB_Reserve reserve;
|
|
|
|
struct TALER_Amount balance;
|
2019-08-26 03:16:36 +02:00
|
|
|
struct TALER_Amount nbalance;
|
2019-10-05 15:12:11 +02:00
|
|
|
struct TALER_Amount cfee;
|
2017-06-11 02:12:56 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-03-14 15:13:50 +01:00
|
|
|
int ret;
|
2016-11-17 14:31:44 +01:00
|
|
|
|
2017-03-14 15:13:50 +01:00
|
|
|
ret = GNUNET_OK;
|
2016-11-17 15:17:27 +01:00
|
|
|
reserve.pub = rs->reserve_pub;
|
2017-06-11 02:12:56 +02:00
|
|
|
qs = edb->reserve_get (edb->cls,
|
|
|
|
esession,
|
|
|
|
&reserve);
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
2016-11-17 14:31:44 +01:00
|
|
|
{
|
2017-03-14 15:13:50 +01:00
|
|
|
char *diag;
|
|
|
|
|
|
|
|
GNUNET_asprintf (&diag,
|
|
|
|
"Failed to find summary for reserve `%s'\n",
|
|
|
|
TALER_B2S (&rs->reserve_pub));
|
|
|
|
report_row_inconsistency ("reserve-summary",
|
|
|
|
UINT64_MAX,
|
|
|
|
diag);
|
|
|
|
GNUNET_free (diag);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
}
|
|
|
|
rc->qs = qs;
|
2016-11-17 14:31:44 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
2017-03-14 18:00:17 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&balance,
|
|
|
|
&rs->total_in,
|
|
|
|
&rs->a_balance))
|
|
|
|
{
|
2017-11-06 14:54:52 +01:00
|
|
|
GNUNET_break (0);
|
2017-03-14 18:00:17 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2016-11-17 14:31:44 +01:00
|
|
|
if (GNUNET_SYSERR ==
|
2019-08-26 03:16:36 +02:00
|
|
|
TALER_amount_subtract (&nbalance,
|
2017-03-14 18:00:17 +01:00
|
|
|
&balance,
|
2016-11-17 14:31:44 +01:00
|
|
|
&rs->total_out))
|
|
|
|
{
|
2017-11-06 14:54:52 +01:00
|
|
|
struct TALER_Amount loss;
|
|
|
|
|
|
|
|
GNUNET_break (GNUNET_SYSERR !=
|
|
|
|
TALER_amount_subtract (&loss,
|
|
|
|
&rs->total_out,
|
|
|
|
&balance));
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_balance_insufficient_loss,
|
|
|
|
&total_balance_insufficient_loss,
|
|
|
|
&loss));
|
|
|
|
report (report_reserve_balance_insufficient_inconsistencies,
|
2019-08-26 03:16:36 +02:00
|
|
|
json_pack ("{s:o, s:o}",
|
2017-11-06 14:54:52 +01:00
|
|
|
"reserve_pub",
|
|
|
|
GNUNET_JSON_from_data_auto (&rs->reserve_pub),
|
|
|
|
"loss",
|
|
|
|
TALER_JSON_from_amount (&loss)));
|
2017-03-14 15:13:50 +01:00
|
|
|
goto cleanup;
|
2016-11-17 14:31:44 +01:00
|
|
|
}
|
2019-08-26 03:16:36 +02:00
|
|
|
if (0 != TALER_amount_cmp (&nbalance,
|
2016-11-17 14:31:44 +01:00
|
|
|
&reserve.balance))
|
|
|
|
{
|
2017-11-06 14:54:52 +01:00
|
|
|
struct TALER_Amount delta;
|
|
|
|
|
2019-08-26 03:16:36 +02:00
|
|
|
if (0 < TALER_amount_cmp (&nbalance,
|
2017-11-06 14:54:52 +01:00
|
|
|
&reserve.balance))
|
|
|
|
{
|
|
|
|
/* balance > reserve.balance */
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_subtract (&delta,
|
2019-08-26 03:16:36 +02:00
|
|
|
&nbalance,
|
2017-11-06 14:54:52 +01:00
|
|
|
&reserve.balance));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_balance_summary_delta_plus,
|
|
|
|
&total_balance_summary_delta_plus,
|
|
|
|
&delta));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* balance < reserve.balance */
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_subtract (&delta,
|
|
|
|
&reserve.balance,
|
2019-08-26 03:16:36 +02:00
|
|
|
&nbalance));
|
2017-11-06 14:54:52 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_balance_summary_delta_minus,
|
|
|
|
&total_balance_summary_delta_minus,
|
|
|
|
&delta));
|
|
|
|
}
|
|
|
|
report (report_reserve_balance_summary_wrong_inconsistencies,
|
|
|
|
json_pack ("{s:o, s:o, s:o}",
|
|
|
|
"reserve_pub",
|
|
|
|
GNUNET_JSON_from_data_auto (&rs->reserve_pub),
|
|
|
|
"exchange",
|
|
|
|
TALER_JSON_from_amount (&reserve.balance),
|
|
|
|
"auditor",
|
2019-08-26 03:16:36 +02:00
|
|
|
TALER_JSON_from_amount (&nbalance)));
|
2017-03-14 15:13:50 +01:00
|
|
|
goto cleanup;
|
2016-11-17 14:31:44 +01:00
|
|
|
}
|
2017-03-14 15:13:50 +01:00
|
|
|
|
2017-04-19 21:41:53 +02:00
|
|
|
/* Check that reserve is being closed if it is past its expiration date */
|
2019-10-05 15:12:11 +02:00
|
|
|
|
|
|
|
if (CLOSING_GRACE_PERIOD.rel_value_us <
|
|
|
|
GNUNET_TIME_absolute_get_duration (rs->a_expiration_date).rel_value_us)
|
2017-03-14 18:00:17 +01:00
|
|
|
{
|
2019-10-05 15:12:11 +02:00
|
|
|
if ( (NULL != rs->sender_account) &&
|
|
|
|
(GNUNET_OK ==
|
|
|
|
get_closing_fee (rs->sender_account,
|
|
|
|
rs->a_expiration_date,
|
|
|
|
&cfee)) )
|
|
|
|
{
|
|
|
|
if (1 == TALER_amount_cmp (&nbalance,
|
|
|
|
&cfee))
|
|
|
|
{
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_balance_reserve_not_closed,
|
|
|
|
&total_balance_reserve_not_closed,
|
|
|
|
&nbalance));
|
|
|
|
report (report_reserve_not_closed_inconsistencies,
|
|
|
|
json_pack ("{s:o, s:o, s:o}",
|
|
|
|
"reserve_pub",
|
|
|
|
GNUNET_JSON_from_data_auto (&rs->reserve_pub),
|
|
|
|
"balance",
|
|
|
|
TALER_JSON_from_amount (&nbalance),
|
|
|
|
"expiration_time",
|
|
|
|
json_from_time_abs (rs->a_expiration_date)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-10-06 12:46:57 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_balance_reserve_not_closed,
|
|
|
|
&total_balance_reserve_not_closed,
|
|
|
|
&nbalance));
|
2019-10-05 15:12:11 +02:00
|
|
|
report (report_reserve_not_closed_inconsistencies,
|
|
|
|
json_pack ("{s:o, s:o, s:o, s:s}",
|
|
|
|
"reserve_pub",
|
|
|
|
GNUNET_JSON_from_data_auto (&rs->reserve_pub),
|
|
|
|
"balance",
|
|
|
|
TALER_JSON_from_amount (&nbalance),
|
|
|
|
"expiration_time",
|
|
|
|
json_from_time_abs (rs->a_expiration_date),
|
|
|
|
"diagnostic",
|
|
|
|
"could not determine closing fee"));
|
|
|
|
}
|
2017-03-14 18:00:17 +01:00
|
|
|
}
|
|
|
|
|
2017-03-20 03:06:23 +01:00
|
|
|
/* Add withdraw fees we encountered to totals */
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Reserve reserve `%s' made %s in withdraw fees\n",
|
|
|
|
TALER_B2S (&rs->reserve_pub),
|
|
|
|
TALER_amount2s (&rs->total_fee));
|
|
|
|
if (GNUNET_YES !=
|
|
|
|
TALER_amount_add (&rs->a_withdraw_fee_balance,
|
|
|
|
&rs->a_withdraw_fee_balance,
|
|
|
|
&rs->total_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
ret = GNUNET_SYSERR;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if ( (GNUNET_YES !=
|
2017-11-06 00:03:08 +01:00
|
|
|
TALER_amount_add (&total_escrow_balance,
|
|
|
|
&total_escrow_balance,
|
2017-03-20 03:06:23 +01:00
|
|
|
&rs->total_in)) ||
|
|
|
|
(GNUNET_SYSERR ==
|
2017-11-06 00:03:08 +01:00
|
|
|
TALER_amount_subtract (&total_escrow_balance,
|
|
|
|
&total_escrow_balance,
|
2017-03-20 03:06:23 +01:00
|
|
|
&rs->total_out)) ||
|
|
|
|
(GNUNET_YES !=
|
2017-11-06 00:03:08 +01:00
|
|
|
TALER_amount_add (&total_withdraw_fee_income,
|
|
|
|
&total_withdraw_fee_income,
|
2017-03-20 03:06:23 +01:00
|
|
|
&rs->total_fee)) )
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
ret = GNUNET_SYSERR;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2017-03-14 18:00:17 +01:00
|
|
|
if ( (0ULL == balance.value) &&
|
|
|
|
(0U == balance.fraction) )
|
|
|
|
{
|
|
|
|
/* TODO: balance is zero, drop reserve details (and then do not update/insert) */
|
|
|
|
if (rs->had_ri)
|
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Final balance of reserve `%s' is %s, dropping it\n",
|
|
|
|
TALER_B2S (&rs->reserve_pub),
|
2019-08-26 03:16:36 +02:00
|
|
|
TALER_amount2s (&nbalance));
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = adb->del_reserve_info (adb->cls,
|
2019-07-24 13:51:38 +02:00
|
|
|
asession,
|
|
|
|
&rs->reserve_pub,
|
|
|
|
&master_pub);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 >= qs)
|
2017-03-14 18:00:17 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
2019-07-24 13:31:48 +02:00
|
|
|
ret = GNUNET_SYSERR;
|
|
|
|
rc->qs = qs;
|
2017-03-14 18:00:17 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Final balance of reserve `%s' is %s, no need to remember it\n",
|
|
|
|
TALER_B2S (&rs->reserve_pub),
|
2019-08-26 03:16:36 +02:00
|
|
|
TALER_amount2s (&nbalance));
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
2017-03-14 18:00:17 +01:00
|
|
|
ret = GNUNET_OK;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2017-03-14 15:13:50 +01:00
|
|
|
|
2016-11-17 15:19:14 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
2017-03-20 02:29:33 +01:00
|
|
|
"Remembering final balance of reserve `%s' as %s\n",
|
|
|
|
TALER_B2S (&rs->reserve_pub),
|
2019-08-26 03:16:36 +02:00
|
|
|
TALER_amount2s (&nbalance));
|
2016-11-17 14:31:44 +01:00
|
|
|
|
2017-03-14 15:13:50 +01:00
|
|
|
if (rs->had_ri)
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = adb->update_reserve_info (adb->cls,
|
2019-07-24 13:51:38 +02:00
|
|
|
asession,
|
|
|
|
&rs->reserve_pub,
|
|
|
|
&master_pub,
|
2019-08-26 03:16:36 +02:00
|
|
|
&nbalance,
|
2019-07-24 13:51:38 +02:00
|
|
|
&rs->a_withdraw_fee_balance,
|
|
|
|
rs->a_expiration_date);
|
2017-03-14 15:13:50 +01:00
|
|
|
else
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = adb->insert_reserve_info (adb->cls,
|
2019-07-24 13:51:38 +02:00
|
|
|
asession,
|
|
|
|
&rs->reserve_pub,
|
|
|
|
&master_pub,
|
2019-08-26 03:16:36 +02:00
|
|
|
&nbalance,
|
2019-07-24 13:51:38 +02:00
|
|
|
&rs->a_withdraw_fee_balance,
|
2019-10-05 15:12:11 +02:00
|
|
|
rs->a_expiration_date,
|
|
|
|
rs->sender_account);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 >= qs)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
ret = GNUNET_SYSERR;
|
|
|
|
rc->qs = qs;
|
|
|
|
}
|
2019-09-28 20:53:44 +02:00
|
|
|
cleanup:
|
2016-11-17 14:31:44 +01:00
|
|
|
GNUNET_assert (GNUNET_YES ==
|
2017-03-14 18:00:17 +01:00
|
|
|
GNUNET_CONTAINER_multihashmap_remove (rc->reserves,
|
2016-11-17 14:31:44 +01:00
|
|
|
key,
|
|
|
|
rs));
|
2019-10-05 15:12:11 +02:00
|
|
|
GNUNET_free_non_null (rs->sender_account);
|
2016-11-17 14:31:44 +01:00
|
|
|
GNUNET_free (rs);
|
2017-03-14 15:13:50 +01:00
|
|
|
return ret;
|
2016-11-17 14:31:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Analyze reserves for being well-formed.
|
|
|
|
*
|
2017-03-14 12:22:03 +01:00
|
|
|
* @param cls NULL
|
2017-06-25 01:46:19 +02:00
|
|
|
* @return transaction status code
|
2016-11-17 14:31:44 +01:00
|
|
|
*/
|
2017-06-25 01:46:19 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-03-14 12:22:03 +01:00
|
|
|
analyze_reserves (void *cls)
|
2016-11-17 14:31:44 +01:00
|
|
|
{
|
2017-03-14 18:00:17 +01:00
|
|
|
struct ReserveContext rc;
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qsx;
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2018-10-27 21:27:23 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qsp;
|
2017-03-14 18:00:17 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Analyzing reserves\n");
|
2018-10-27 21:27:23 +02:00
|
|
|
qsp = adb->get_auditor_progress_reserve (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&ppr);
|
|
|
|
if (0 > qsp)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qsp);
|
|
|
|
return qsp;
|
|
|
|
}
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qsp)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE,
|
2019-08-25 16:18:24 +02:00
|
|
|
_ (
|
|
|
|
"First analysis using this auditor, starting audit from scratch\n"));
|
2018-10-27 21:27:23 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-12-03 12:39:32 +01:00
|
|
|
ppr_start = ppr;
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2019-08-25 16:18:24 +02:00
|
|
|
_ ("Resuming reserve audit at %llu/%llu/%llu/%llu\n"),
|
2018-10-27 21:27:23 +02:00
|
|
|
(unsigned long long) ppr.last_reserve_in_serial_id,
|
|
|
|
(unsigned long long) ppr.last_reserve_out_serial_id,
|
|
|
|
(unsigned long long) ppr.last_reserve_payback_serial_id,
|
|
|
|
(unsigned long long) ppr.last_reserve_close_serial_id);
|
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
rc.qs = GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
|
|
|
qsx = adb->get_reserve_summary (adb->cls,
|
2019-07-24 13:51:38 +02:00
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&total_escrow_balance,
|
|
|
|
&total_withdraw_fee_income);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (qsx < 0)
|
2017-03-14 18:00:17 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qsx);
|
|
|
|
return qsx;
|
2017-03-14 18:00:17 +01:00
|
|
|
}
|
|
|
|
rc.reserves = GNUNET_CONTAINER_multihashmap_create (512,
|
|
|
|
GNUNET_NO);
|
2017-04-19 13:46:38 +02:00
|
|
|
rc.revoked = GNUNET_CONTAINER_multihashmap_create (4,
|
2019-07-24 13:51:38 +02:00
|
|
|
GNUNET_NO);
|
2016-11-17 15:02:22 +01:00
|
|
|
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = edb->select_reserves_in_above_serial_id (edb->cls,
|
2019-07-24 13:51:38 +02:00
|
|
|
esession,
|
|
|
|
ppr.last_reserve_in_serial_id,
|
|
|
|
&handle_reserve_in,
|
|
|
|
&rc);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (qs < 0)
|
2017-03-18 22:06:27 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2017-03-18 22:06:27 +01:00
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = edb->select_reserves_out_above_serial_id (edb->cls,
|
2019-07-24 13:51:38 +02:00
|
|
|
esession,
|
|
|
|
ppr.last_reserve_out_serial_id,
|
|
|
|
&handle_reserve_out,
|
|
|
|
&rc);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (qs < 0)
|
2017-03-18 22:06:27 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2017-03-18 22:06:27 +01:00
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = edb->select_payback_above_serial_id (edb->cls,
|
2019-07-24 13:51:38 +02:00
|
|
|
esession,
|
|
|
|
ppr.last_reserve_payback_serial_id,
|
|
|
|
&handle_payback_by_reserve,
|
|
|
|
&rc);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (qs < 0)
|
2017-04-04 15:38:58 +02:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2017-04-04 15:38:58 +02:00
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = edb->select_reserve_closed_above_serial_id (edb->cls,
|
2019-07-24 13:31:48 +02:00
|
|
|
esession,
|
2019-08-25 16:18:24 +02:00
|
|
|
ppr.
|
|
|
|
last_reserve_close_serial_id,
|
2019-07-24 13:31:48 +02:00
|
|
|
&handle_reserve_closed,
|
|
|
|
&rc);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (qs < 0)
|
2017-04-19 21:41:53 +02:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2017-04-19 21:41:53 +02:00
|
|
|
}
|
2017-03-14 18:00:17 +01:00
|
|
|
|
|
|
|
GNUNET_CONTAINER_multihashmap_iterate (rc.reserves,
|
2016-11-17 14:31:44 +01:00
|
|
|
&verify_reserve_balance,
|
2017-03-14 18:00:17 +01:00
|
|
|
&rc);
|
2017-03-14 15:13:50 +01:00
|
|
|
GNUNET_break (0 ==
|
2017-03-14 18:00:17 +01:00
|
|
|
GNUNET_CONTAINER_multihashmap_size (rc.reserves));
|
|
|
|
GNUNET_CONTAINER_multihashmap_destroy (rc.reserves);
|
2017-04-19 13:46:38 +02:00
|
|
|
GNUNET_CONTAINER_multihashmap_destroy (rc.revoked);
|
2017-03-14 18:00:17 +01:00
|
|
|
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != rc.qs)
|
|
|
|
return qs;
|
2016-11-17 14:31:44 +01:00
|
|
|
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qsx)
|
2017-03-14 18:00:17 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = adb->insert_reserve_summary (adb->cls,
|
2019-07-24 13:31:48 +02:00
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&total_escrow_balance,
|
|
|
|
&total_withdraw_fee_income);
|
2017-03-14 18:00:17 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = adb->update_reserve_summary (adb->cls,
|
2019-07-24 13:31:48 +02:00
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&total_escrow_balance,
|
|
|
|
&total_withdraw_fee_income);
|
2017-03-14 18:00:17 +01:00
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 >= qs)
|
2017-03-18 22:06:27 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2017-03-18 22:06:27 +01:00
|
|
|
}
|
2018-10-27 21:27:23 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qsp)
|
|
|
|
qs = adb->update_auditor_progress_reserve (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&ppr);
|
|
|
|
else
|
|
|
|
qs = adb->insert_auditor_progress_reserve (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&ppr);
|
|
|
|
if (0 >= qs)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2019-08-25 16:18:24 +02:00
|
|
|
"Failed to update auditor DB, not recording progress\n");
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2019-08-25 16:18:24 +02:00
|
|
|
_ ("Concluded reserve audit step at %llu/%llu/%llu/%llu\n"),
|
2018-10-27 21:27:23 +02:00
|
|
|
(unsigned long long) ppr.last_reserve_in_serial_id,
|
|
|
|
(unsigned long long) ppr.last_reserve_out_serial_id,
|
|
|
|
(unsigned long long) ppr.last_reserve_payback_serial_id,
|
|
|
|
(unsigned long long) ppr.last_reserve_close_serial_id);
|
2017-06-25 01:46:19 +02:00
|
|
|
return GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
2017-03-14 18:00:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
/* *********************** Analyze aggregations ******************** */
|
|
|
|
/* This logic checks that the aggregator did the right thing
|
|
|
|
paying each merchant what they were due (and on time). */
|
2017-03-14 18:00:17 +01:00
|
|
|
|
|
|
|
|
2017-03-20 03:58:51 +01:00
|
|
|
/**
|
|
|
|
* Information about wire fees charged by the exchange.
|
|
|
|
*/
|
|
|
|
struct WireFeeInfo
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Kept in a DLL.
|
|
|
|
*/
|
|
|
|
struct WireFeeInfo *next;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Kept in a DLL.
|
|
|
|
*/
|
|
|
|
struct WireFeeInfo *prev;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When does the fee go into effect (inclusive).
|
|
|
|
*/
|
|
|
|
struct GNUNET_TIME_Absolute start_date;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When does the fee stop being in effect (exclusive).
|
|
|
|
*/
|
|
|
|
struct GNUNET_TIME_Absolute end_date;
|
|
|
|
|
|
|
|
/**
|
2018-01-04 00:41:19 +01:00
|
|
|
* How high is the wire fee.
|
2017-03-20 03:58:51 +01:00
|
|
|
*/
|
|
|
|
struct TALER_Amount wire_fee;
|
|
|
|
|
2018-01-04 00:41:19 +01:00
|
|
|
/**
|
|
|
|
* How high is the closing fee.
|
|
|
|
*/
|
|
|
|
struct TALER_Amount closing_fee;
|
|
|
|
|
2017-03-20 03:58:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-03-14 18:00:17 +01:00
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Closure for callbacks during #analyze_merchants().
|
2017-03-14 18:00:17 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
struct AggregationContext
|
2017-03-14 18:00:17 +01:00
|
|
|
{
|
|
|
|
|
2017-03-20 03:58:51 +01:00
|
|
|
/**
|
|
|
|
* DLL of wire fees charged by the exchange.
|
|
|
|
*/
|
|
|
|
struct WireFeeInfo *fee_head;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* DLL of wire fees charged by the exchange.
|
|
|
|
*/
|
|
|
|
struct WireFeeInfo *fee_tail;
|
|
|
|
|
2017-03-20 03:32:16 +01:00
|
|
|
/**
|
|
|
|
* Final result status.
|
|
|
|
*/
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-03-20 02:29:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for #wire_transfer_information_cb.
|
|
|
|
*/
|
|
|
|
struct WireCheckContext
|
|
|
|
{
|
2017-03-15 14:19:57 +01:00
|
|
|
|
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Corresponding merchant context.
|
2017-03-15 14:19:57 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
struct AggregationContext *ac;
|
2017-03-15 14:19:57 +01:00
|
|
|
|
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Total deposits claimed by all transactions that were aggregated
|
|
|
|
* under the given @e wtid.
|
2017-03-15 14:19:57 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
struct TALER_Amount total_deposits;
|
2017-03-15 14:19:57 +01:00
|
|
|
|
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Hash of the wire transfer details of the receiver.
|
2017-03-15 14:19:57 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
struct GNUNET_HashCode h_wire;
|
2017-03-15 14:19:57 +01:00
|
|
|
|
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Execution time of the wire transfer.
|
2017-03-15 14:19:57 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
struct GNUNET_TIME_Absolute date;
|
2017-03-15 14:19:57 +01:00
|
|
|
|
2017-03-17 18:46:11 +01:00
|
|
|
/**
|
2017-06-25 01:46:19 +02:00
|
|
|
* Database transaction status.
|
2017-03-17 18:46:11 +01:00
|
|
|
*/
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-03-17 18:46:11 +01:00
|
|
|
|
2017-03-14 18:00:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-03-15 14:19:57 +01:00
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Check coin's transaction history for plausibility. Does NOT check
|
|
|
|
* the signatures (those are checked independently), but does calculate
|
|
|
|
* the amounts for the aggregation table and checks that the total
|
|
|
|
* claimed coin value is within the value of the coin's denomination.
|
2017-03-15 14:19:57 +01:00
|
|
|
*
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param coin_pub public key of the coin (for reporting)
|
2017-05-29 01:15:41 +02:00
|
|
|
* @param h_contract_terms hash of the proposal for which we calculate the amount
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param merchant_pub public key of the merchant (who is allowed to issue refunds)
|
2019-10-09 14:22:42 +02:00
|
|
|
* @param issue denomination information about the coin
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param tl_head head of transaction history to verify
|
|
|
|
* @param[out] merchant_gain amount the coin contributes to the wire transfer to the merchant
|
2017-03-15 14:19:57 +01:00
|
|
|
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
|
|
|
|
*/
|
|
|
|
static int
|
2019-08-25 16:18:24 +02:00
|
|
|
check_transaction_history_for_deposit (const struct
|
|
|
|
TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
const struct
|
|
|
|
GNUNET_HashCode *h_contract_terms,
|
|
|
|
const struct
|
|
|
|
TALER_MerchantPublicKeyP *merchant_pub,
|
|
|
|
const struct
|
2019-10-09 14:22:42 +02:00
|
|
|
TALER_DenominationKeyValidityPS *issue,
|
2019-08-25 16:18:24 +02:00
|
|
|
const struct
|
|
|
|
TALER_EXCHANGEDB_TransactionList *tl_head,
|
2019-07-27 20:43:52 +02:00
|
|
|
struct TALER_Amount *merchant_gain)
|
2017-03-15 14:19:57 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
struct TALER_Amount expenditures;
|
|
|
|
struct TALER_Amount refunds;
|
|
|
|
struct TALER_Amount spent;
|
|
|
|
struct TALER_Amount value;
|
|
|
|
struct TALER_Amount merchant_loss;
|
2018-01-04 00:41:19 +01:00
|
|
|
struct TALER_Amount merchant_delta;
|
2018-01-04 10:38:16 +01:00
|
|
|
const struct TALER_Amount *deposit_fee;
|
|
|
|
int refund_deposit_fee;
|
2017-03-15 14:19:57 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Checking transaction history of coin %s\n",
|
|
|
|
TALER_B2S (coin_pub));
|
|
|
|
|
|
|
|
GNUNET_assert (NULL != tl_head);
|
2017-10-06 21:21:20 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&expenditures));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&refunds));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
merchant_gain));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&merchant_loss));
|
2017-03-20 02:29:33 +01:00
|
|
|
/* Go over transaction history to compute totals; note that we do not
|
|
|
|
know the order, so instead of subtracting we compute positive
|
|
|
|
(deposit, melt) and negative (refund) values separately here,
|
|
|
|
and then subtract the negative from the positive after the loop. */
|
2018-01-04 10:38:16 +01:00
|
|
|
refund_deposit_fee = GNUNET_NO;
|
|
|
|
deposit_fee = NULL;
|
2019-07-24 13:31:48 +02:00
|
|
|
for (const struct TALER_EXCHANGEDB_TransactionList *tl = tl_head;
|
|
|
|
NULL != tl;
|
|
|
|
tl = tl->next)
|
2017-03-15 14:19:57 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
const struct TALER_Amount *amount_with_fee;
|
|
|
|
const struct TALER_Amount *fee;
|
|
|
|
const struct TALER_AmountNBO *fee_dki;
|
|
|
|
struct TALER_Amount tmp;
|
2017-03-15 14:19:57 +01:00
|
|
|
|
2019-08-25 16:18:24 +02:00
|
|
|
switch (tl->type)
|
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
case TALER_EXCHANGEDB_TT_DEPOSIT:
|
2019-09-03 04:16:28 +02:00
|
|
|
/* check wire and h_wire are consistent */
|
|
|
|
{
|
|
|
|
struct GNUNET_HashCode hw;
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_JSON_merchant_wire_signature_hash (
|
|
|
|
tl->details.deposit->receiver_wire_account,
|
|
|
|
&hw))
|
|
|
|
{
|
|
|
|
report_row_inconsistency ("deposits",
|
|
|
|
tl->serial_id,
|
|
|
|
"wire value malformed");
|
|
|
|
}
|
|
|
|
else if (0 !=
|
|
|
|
GNUNET_memcmp (&hw,
|
|
|
|
&tl->details.deposit->h_wire))
|
|
|
|
{
|
|
|
|
report_row_inconsistency ("deposits",
|
|
|
|
tl->serial_id,
|
2019-09-05 10:03:56 +02:00
|
|
|
"h(wire) does not match wire");
|
2019-09-03 04:16:28 +02:00
|
|
|
}
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
amount_with_fee = &tl->details.deposit->amount_with_fee;
|
|
|
|
fee = &tl->details.deposit->deposit_fee;
|
2019-10-09 14:22:42 +02:00
|
|
|
fee_dki = &issue->fee_deposit;
|
2017-03-20 02:29:33 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&expenditures,
|
|
|
|
&expenditures,
|
|
|
|
amount_with_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
/* Check if this deposit is within the remit of the aggregation
|
|
|
|
we are investigating, if so, include it in the totals. */
|
2019-04-08 15:24:51 +02:00
|
|
|
if ( (0 == GNUNET_memcmp (merchant_pub,
|
|
|
|
&tl->details.deposit->merchant_pub)) &&
|
|
|
|
(0 == GNUNET_memcmp (h_contract_terms,
|
|
|
|
&tl->details.deposit->h_contract_terms)) )
|
2017-03-20 02:29:33 +01:00
|
|
|
{
|
|
|
|
struct TALER_Amount amount_without_fee;
|
2017-03-15 14:19:57 +01:00
|
|
|
|
2019-07-24 13:31:48 +02:00
|
|
|
if (GNUNET_OK !=
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount_subtract (&amount_without_fee,
|
|
|
|
amount_with_fee,
|
|
|
|
fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (merchant_gain,
|
|
|
|
merchant_gain,
|
|
|
|
&amount_without_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Detected applicable deposit of %s\n",
|
|
|
|
TALER_amount2s (&amount_without_fee));
|
2019-07-24 13:31:48 +02:00
|
|
|
deposit_fee = fee;
|
2017-03-17 17:17:07 +01:00
|
|
|
}
|
2017-04-16 02:16:41 +02:00
|
|
|
/* Check that the fees given in the transaction list and in dki match */
|
|
|
|
TALER_amount_ntoh (&tmp,
|
2019-07-24 13:31:48 +02:00
|
|
|
fee_dki);
|
2017-04-16 02:16:41 +02:00
|
|
|
if (0 !=
|
2019-07-24 13:31:48 +02:00
|
|
|
TALER_amount_cmp (&tmp,
|
|
|
|
fee))
|
2017-04-16 02:16:41 +02:00
|
|
|
{
|
2019-07-24 13:31:48 +02:00
|
|
|
/* Disagreement in fee structure within DB, should be impossible! */
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
2017-04-16 02:16:41 +02:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
break;
|
|
|
|
case TALER_EXCHANGEDB_TT_REFRESH_MELT:
|
2020-01-16 23:49:34 +01:00
|
|
|
amount_with_fee = &tl->details.melt->amount_with_fee;
|
2017-03-20 02:29:33 +01:00
|
|
|
fee = &tl->details.melt->melt_fee;
|
2019-10-09 14:22:42 +02:00
|
|
|
fee_dki = &issue->fee_refresh;
|
2017-03-17 17:17:07 +01:00
|
|
|
if (GNUNET_OK !=
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount_add (&expenditures,
|
|
|
|
&expenditures,
|
|
|
|
amount_with_fee))
|
2017-03-17 17:17:07 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-04-16 02:16:41 +02:00
|
|
|
/* Check that the fees given in the transaction list and in dki match */
|
|
|
|
TALER_amount_ntoh (&tmp,
|
2019-07-24 13:31:48 +02:00
|
|
|
fee_dki);
|
2017-04-16 02:16:41 +02:00
|
|
|
if (0 !=
|
2019-07-24 13:31:48 +02:00
|
|
|
TALER_amount_cmp (&tmp,
|
|
|
|
fee))
|
2017-04-16 02:16:41 +02:00
|
|
|
{
|
2019-07-24 13:31:48 +02:00
|
|
|
/* Disagreement in fee structure within DB, should be impossible! */
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
2017-04-16 02:16:41 +02:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
break;
|
|
|
|
case TALER_EXCHANGEDB_TT_REFUND:
|
|
|
|
amount_with_fee = &tl->details.refund->refund_amount;
|
|
|
|
fee = &tl->details.refund->refund_fee;
|
2019-10-09 14:22:42 +02:00
|
|
|
fee_dki = &issue->fee_refund;
|
2017-03-17 17:17:07 +01:00
|
|
|
if (GNUNET_OK !=
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount_add (&refunds,
|
|
|
|
&refunds,
|
|
|
|
amount_with_fee))
|
2017-03-17 17:17:07 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (GNUNET_OK !=
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount_add (&expenditures,
|
|
|
|
&expenditures,
|
|
|
|
fee))
|
2017-03-17 17:17:07 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
/* Check if this refund is within the remit of the aggregation
|
|
|
|
we are investigating, if so, include it in the totals. */
|
2019-04-08 15:24:51 +02:00
|
|
|
if ( (0 == GNUNET_memcmp (merchant_pub,
|
|
|
|
&tl->details.refund->merchant_pub)) &&
|
|
|
|
(0 == GNUNET_memcmp (h_contract_terms,
|
|
|
|
&tl->details.refund->h_contract_terms)) )
|
2017-03-20 02:29:33 +01:00
|
|
|
{
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&merchant_loss,
|
|
|
|
&merchant_loss,
|
|
|
|
amount_with_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Detected applicable refund of %s\n",
|
|
|
|
TALER_amount2s (amount_with_fee));
|
2019-07-24 13:31:48 +02:00
|
|
|
refund_deposit_fee = GNUNET_YES;
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
2017-04-16 02:16:41 +02:00
|
|
|
/* Check that the fees given in the transaction list and in dki match */
|
|
|
|
TALER_amount_ntoh (&tmp,
|
2019-07-24 13:31:48 +02:00
|
|
|
fee_dki);
|
2017-04-16 02:16:41 +02:00
|
|
|
if (0 !=
|
2019-07-24 13:31:48 +02:00
|
|
|
TALER_amount_cmp (&tmp,
|
|
|
|
fee))
|
2017-04-16 02:16:41 +02:00
|
|
|
{
|
2019-07-24 13:31:48 +02:00
|
|
|
/* Disagreement in fee structure within DB, should be impossible! */
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
2017-04-16 02:16:41 +02:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
break;
|
2019-07-26 22:03:15 +02:00
|
|
|
case TALER_EXCHANGEDB_TT_OLD_COIN_PAYBACK:
|
|
|
|
amount_with_fee = &tl->details.old_coin_payback->value;
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&refunds,
|
|
|
|
&refunds,
|
|
|
|
amount_with_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
break;
|
2017-04-04 16:27:27 +02:00
|
|
|
case TALER_EXCHANGEDB_TT_PAYBACK:
|
|
|
|
amount_with_fee = &tl->details.payback->value;
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&expenditures,
|
|
|
|
&expenditures,
|
|
|
|
amount_with_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
break;
|
2019-07-26 22:03:15 +02:00
|
|
|
case TALER_EXCHANGEDB_TT_PAYBACK_REFRESH:
|
|
|
|
amount_with_fee = &tl->details.payback_refresh->value;
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&expenditures,
|
|
|
|
&expenditures,
|
|
|
|
amount_with_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
break;
|
2017-03-17 17:17:07 +01:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
} /* for 'tl' */
|
2017-03-15 19:28:05 +01:00
|
|
|
|
2018-01-04 10:38:16 +01:00
|
|
|
if ( (GNUNET_YES == refund_deposit_fee) &&
|
|
|
|
(NULL != deposit_fee) )
|
|
|
|
{
|
|
|
|
/* We had a /deposit operation AND a /refund operation,
|
|
|
|
and should thus not charge the merchant the /deposit fee */
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2019-07-24 13:31:48 +02:00
|
|
|
TALER_amount_add (merchant_gain,
|
|
|
|
merchant_gain,
|
|
|
|
deposit_fee));
|
2018-01-04 10:38:16 +01:00
|
|
|
}
|
2018-03-12 11:33:10 +01:00
|
|
|
|
2019-07-26 22:03:15 +02:00
|
|
|
/* Calculate total balance change, i.e. expenditures (payback, deposit, refresh)
|
|
|
|
minus refunds (refunds, payback-to-old) */
|
2017-03-20 02:29:33 +01:00
|
|
|
if (GNUNET_SYSERR ==
|
|
|
|
TALER_amount_subtract (&spent,
|
|
|
|
&expenditures,
|
|
|
|
&refunds))
|
2017-03-15 19:28:05 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
/* refunds above expenditures? Bad! */
|
2017-11-06 19:11:43 +01:00
|
|
|
report_coin_arithmetic_inconsistency ("refund (balance)",
|
|
|
|
coin_pub,
|
|
|
|
&expenditures,
|
|
|
|
&refunds,
|
2018-01-04 10:38:16 +01:00
|
|
|
1);
|
2017-03-15 19:28:05 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
/* Now check that 'spent' is less or equal than total coin value */
|
|
|
|
TALER_amount_ntoh (&value,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue->value);
|
2017-03-20 02:29:33 +01:00
|
|
|
if (1 == TALER_amount_cmp (&spent,
|
|
|
|
&value))
|
2017-03-17 14:09:58 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
/* spent > value */
|
2017-11-06 19:11:43 +01:00
|
|
|
report_coin_arithmetic_inconsistency ("spend",
|
|
|
|
coin_pub,
|
|
|
|
&spent,
|
|
|
|
&value,
|
|
|
|
-1);
|
2017-03-17 14:09:58 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-15 19:28:05 +01:00
|
|
|
|
2018-01-04 10:38:16 +01:00
|
|
|
/* Finally, update @a merchant_gain by subtracting what he "lost"
|
|
|
|
from refunds */
|
2017-03-20 02:29:33 +01:00
|
|
|
if (GNUNET_SYSERR ==
|
2018-01-04 00:41:19 +01:00
|
|
|
TALER_amount_subtract (&merchant_delta,
|
2017-03-20 02:29:33 +01:00
|
|
|
merchant_gain,
|
|
|
|
&merchant_loss))
|
2017-03-17 17:17:07 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
/* refunds above deposits? Bad! */
|
2017-11-06 19:11:43 +01:00
|
|
|
report_coin_arithmetic_inconsistency ("refund (merchant)",
|
|
|
|
coin_pub,
|
|
|
|
merchant_gain,
|
|
|
|
&merchant_loss,
|
2018-01-04 10:38:16 +01:00
|
|
|
1);
|
2017-03-17 17:17:07 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2018-01-04 00:41:19 +01:00
|
|
|
*merchant_gain = merchant_delta;
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Coin %s contributes %s to contract %s\n",
|
|
|
|
TALER_B2S (coin_pub),
|
|
|
|
TALER_amount2s (merchant_gain),
|
2017-05-29 01:15:41 +02:00
|
|
|
GNUNET_h2s (h_contract_terms));
|
2017-03-15 14:19:57 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-15 19:28:05 +01:00
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Function called with the results of the lookup of the
|
|
|
|
* transaction data associated with a wire transfer identifier.
|
2017-03-15 19:28:05 +01:00
|
|
|
*
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param cls a `struct WireCheckContext`
|
|
|
|
* @param rowid which row in the table is the information from (for diagnostics)
|
|
|
|
* @param merchant_pub public key of the merchant (should be same for all callbacks with the same @e cls)
|
|
|
|
* @param h_wire hash of wire transfer details of the merchant (should be same for all callbacks with the same @e cls)
|
2018-04-02 14:24:45 +02:00
|
|
|
* @param account_details where did we transfer the funds?
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param exec_time execution time of the wire transfer (should be same for all callbacks with the same @e cls)
|
2017-05-29 01:15:41 +02:00
|
|
|
* @param h_contract_terms which proposal was this payment about
|
2019-07-27 20:43:52 +02:00
|
|
|
* @param denom_pub denomination of @a coin_pub
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param coin_pub which public key was this payment about
|
|
|
|
* @param coin_value amount contributed by this coin in total (with fee)
|
2018-01-04 10:38:16 +01:00
|
|
|
* @param deposit_fee applicable deposit fee for this coin, actual
|
|
|
|
* fees charged may differ if coin was refunded
|
2017-03-15 19:28:05 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
static void
|
|
|
|
wire_transfer_information_cb (void *cls,
|
|
|
|
uint64_t rowid,
|
2019-08-25 16:18:24 +02:00
|
|
|
const struct
|
|
|
|
TALER_MerchantPublicKeyP *merchant_pub,
|
2017-03-20 02:29:33 +01:00
|
|
|
const struct GNUNET_HashCode *h_wire,
|
2018-04-02 14:24:45 +02:00
|
|
|
const json_t *account_details,
|
2017-03-20 02:29:33 +01:00
|
|
|
struct GNUNET_TIME_Absolute exec_time,
|
2017-05-29 01:15:41 +02:00
|
|
|
const struct GNUNET_HashCode *h_contract_terms,
|
2019-08-25 16:18:24 +02:00
|
|
|
const struct
|
|
|
|
TALER_DenominationPublicKey *denom_pub,
|
2017-03-20 02:29:33 +01:00
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
const struct TALER_Amount *coin_value,
|
2018-01-04 10:38:16 +01:00
|
|
|
const struct TALER_Amount *deposit_fee)
|
2017-03-15 19:28:05 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
struct WireCheckContext *wcc = cls;
|
2019-10-09 14:22:42 +02:00
|
|
|
const struct TALER_DenominationKeyValidityPS *issue;
|
2017-03-20 02:29:33 +01:00
|
|
|
struct TALER_Amount computed_value;
|
|
|
|
struct TALER_Amount coin_value_without_fee;
|
|
|
|
struct TALER_EXCHANGEDB_TransactionList *tl;
|
2020-01-16 23:49:34 +01:00
|
|
|
struct TALER_CoinPublicInfo coin;
|
2017-06-19 16:07:34 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2018-04-02 14:24:45 +02:00
|
|
|
struct GNUNET_HashCode hw;
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
2018-10-06 15:05:06 +02:00
|
|
|
TALER_JSON_merchant_wire_signature_hash (account_details,
|
|
|
|
&hw))
|
2018-04-02 14:24:45 +02:00
|
|
|
{
|
|
|
|
report_row_inconsistency ("aggregation",
|
|
|
|
rowid,
|
|
|
|
"failed to compute hash of given wire data");
|
|
|
|
}
|
2019-09-05 10:03:56 +02:00
|
|
|
else if (0 !=
|
|
|
|
GNUNET_memcmp (&hw,
|
|
|
|
h_wire))
|
2018-04-02 14:24:45 +02:00
|
|
|
{
|
|
|
|
report_row_inconsistency ("aggregation",
|
|
|
|
rowid,
|
|
|
|
"database contains wrong hash code for wire details");
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
|
|
|
|
/* Obtain coin's transaction history */
|
2017-06-19 16:07:34 +02:00
|
|
|
qs = edb->get_coin_transactions (edb->cls,
|
2017-03-20 02:29:33 +01:00
|
|
|
esession,
|
2017-06-19 16:07:34 +02:00
|
|
|
coin_pub,
|
2018-08-19 17:19:27 +02:00
|
|
|
GNUNET_YES,
|
2019-07-25 19:26:25 +02:00
|
|
|
&tl);
|
2017-06-19 16:07:34 +02:00
|
|
|
if ( (qs < 0) ||
|
|
|
|
(NULL == tl) )
|
2017-03-20 02:29:33 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
wcc->qs = qs;
|
2017-03-20 02:29:33 +01:00
|
|
|
report_row_inconsistency ("aggregation",
|
|
|
|
rowid,
|
|
|
|
"no transaction history for coin claimed in aggregation");
|
|
|
|
return;
|
|
|
|
}
|
2020-01-16 23:49:34 +01:00
|
|
|
qs = edb->get_known_coin (edb->cls,
|
|
|
|
esession,
|
|
|
|
coin_pub,
|
|
|
|
&coin);
|
|
|
|
if (qs < 0)
|
|
|
|
{
|
|
|
|
GNUNET_break (0); /* this should be a foreign key violation at this point! */
|
|
|
|
wcc->qs = qs;
|
|
|
|
report_row_inconsistency ("aggregation",
|
|
|
|
rowid,
|
|
|
|
"could not get coin details for coin claimed in aggregation");
|
|
|
|
return;
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
2020-01-16 23:49:34 +01:00
|
|
|
|
|
|
|
qs = get_denomination_info_by_hash (&coin.denom_pub_hash,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
2017-03-15 19:28:05 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
2020-01-16 23:49:34 +01:00
|
|
|
GNUNET_CRYPTO_rsa_signature_free (coin.denom_sig.rsa_signature);
|
2017-03-20 02:29:33 +01:00
|
|
|
edb->free_coin_transaction_list (edb->cls,
|
|
|
|
tl);
|
2017-06-25 01:46:19 +02:00
|
|
|
wcc->qs = qs;
|
2017-03-20 02:29:33 +01:00
|
|
|
report_row_inconsistency ("aggregation",
|
|
|
|
rowid,
|
|
|
|
"could not find denomination key for coin claimed in aggregation");
|
|
|
|
return;
|
2017-03-15 19:28:05 +01:00
|
|
|
}
|
2019-07-27 20:43:52 +02:00
|
|
|
if (GNUNET_OK !=
|
2020-01-16 23:49:34 +01:00
|
|
|
TALER_test_coin_valid (&coin,
|
2019-07-27 20:43:52 +02:00
|
|
|
denom_pub))
|
|
|
|
{
|
|
|
|
report (report_bad_sig_losses,
|
|
|
|
json_pack ("{s:s, s:I, s:o, s:o}",
|
|
|
|
"operation", "wire",
|
|
|
|
"row", (json_int_t) rowid,
|
|
|
|
"loss", TALER_JSON_from_amount (coin_value),
|
2019-08-25 16:18:24 +02:00
|
|
|
"key_pub", GNUNET_JSON_from_data_auto (
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue->denom_hash)));
|
2019-07-27 20:43:52 +02:00
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_bad_sig_loss,
|
|
|
|
&total_bad_sig_loss,
|
|
|
|
coin_value));
|
2020-01-16 23:49:34 +01:00
|
|
|
GNUNET_CRYPTO_rsa_signature_free (coin.denom_sig.rsa_signature);
|
2019-07-27 20:43:52 +02:00
|
|
|
edb->free_coin_transaction_list (edb->cls,
|
|
|
|
tl);
|
|
|
|
wcc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
report_row_inconsistency ("deposit",
|
|
|
|
rowid,
|
|
|
|
"coin denomination signature invalid");
|
|
|
|
return;
|
|
|
|
}
|
2020-01-16 23:49:34 +01:00
|
|
|
GNUNET_CRYPTO_rsa_signature_free (coin.denom_sig.rsa_signature);
|
|
|
|
coin.denom_sig.rsa_signature = NULL; /* just to be sure */
|
2019-10-09 14:22:42 +02:00
|
|
|
GNUNET_assert (NULL != issue); /* mostly to help static analysis */
|
2017-06-25 01:46:19 +02:00
|
|
|
/* Check transaction history to see if it supports aggregate
|
|
|
|
valuation */
|
2019-07-27 20:43:52 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
check_transaction_history_for_deposit (coin_pub,
|
|
|
|
h_contract_terms,
|
|
|
|
merchant_pub,
|
2019-10-09 14:22:42 +02:00
|
|
|
issue,
|
2019-07-27 20:43:52 +02:00
|
|
|
tl,
|
|
|
|
&computed_value))
|
|
|
|
{
|
|
|
|
wcc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
report_row_inconsistency ("coin history",
|
|
|
|
rowid,
|
|
|
|
"failed to verify coin history (for deposit)");
|
|
|
|
return;
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
if (GNUNET_SYSERR ==
|
|
|
|
TALER_amount_subtract (&coin_value_without_fee,
|
|
|
|
coin_value,
|
2018-01-04 10:38:16 +01:00
|
|
|
deposit_fee))
|
2017-03-17 17:17:07 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
wcc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-11-06 19:11:43 +01:00
|
|
|
report_amount_arithmetic_inconsistency ("aggregation (fee structure)",
|
|
|
|
rowid,
|
|
|
|
coin_value,
|
2018-01-04 10:38:16 +01:00
|
|
|
deposit_fee,
|
2017-11-06 19:11:43 +01:00
|
|
|
-1);
|
2017-03-20 02:29:33 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (0 !=
|
|
|
|
TALER_amount_cmp (&computed_value,
|
|
|
|
&coin_value_without_fee))
|
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
wcc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-11-06 19:11:43 +01:00
|
|
|
report_amount_arithmetic_inconsistency ("aggregation (contribution)",
|
|
|
|
rowid,
|
|
|
|
&coin_value_without_fee,
|
|
|
|
&computed_value,
|
|
|
|
-1);
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
|
|
|
edb->free_coin_transaction_list (edb->cls,
|
|
|
|
tl);
|
|
|
|
|
|
|
|
/* Check other details of wire transfer match */
|
2019-04-08 15:24:51 +02:00
|
|
|
if (0 != GNUNET_memcmp (h_wire,
|
|
|
|
&wcc->h_wire))
|
2017-03-20 02:29:33 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
wcc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-20 02:29:33 +01:00
|
|
|
report_row_inconsistency ("aggregation",
|
|
|
|
rowid,
|
2019-09-05 10:03:56 +02:00
|
|
|
"target of outgoing wire transfer do not match hash of wire from deposit");
|
2017-03-17 17:49:55 +01:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
if (exec_time.abs_value_us != wcc->date.abs_value_us)
|
2017-03-17 17:49:55 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
/* This should be impossible from database constraints */
|
2017-03-17 17:49:55 +01:00
|
|
|
GNUNET_break (0);
|
2017-06-25 01:46:19 +02:00
|
|
|
wcc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-20 02:29:33 +01:00
|
|
|
report_row_inconsistency ("aggregation",
|
|
|
|
rowid,
|
|
|
|
"date given in aggregate does not match wire transfer date");
|
2017-03-17 17:49:55 +01:00
|
|
|
}
|
2017-03-15 14:19:57 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
/* Add coin's contribution to total aggregate value */
|
2017-06-25 01:46:19 +02:00
|
|
|
{
|
2019-09-05 10:03:56 +02:00
|
|
|
struct TALER_Amount res;
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&res,
|
|
|
|
&wcc->total_deposits,
|
|
|
|
&coin_value_without_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
wcc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
wcc->total_deposits = res;
|
2017-06-25 01:46:19 +02:00
|
|
|
}
|
2017-03-15 19:28:05 +01:00
|
|
|
}
|
2017-03-15 14:19:57 +01:00
|
|
|
|
|
|
|
|
2017-03-20 03:32:16 +01:00
|
|
|
/**
|
|
|
|
* Lookup the wire fee that the exchange charges at @a timestamp.
|
|
|
|
*
|
|
|
|
* @param ac context for caching the result
|
2019-09-05 05:49:45 +02:00
|
|
|
* @param method method of the wire plugin
|
2017-03-20 03:32:16 +01:00
|
|
|
* @param timestamp time for which we need the fee
|
|
|
|
* @return NULL on error (fee unknown)
|
|
|
|
*/
|
|
|
|
static const struct TALER_Amount *
|
|
|
|
get_wire_fee (struct AggregationContext *ac,
|
2019-09-05 05:49:45 +02:00
|
|
|
const char *method,
|
2017-03-20 03:32:16 +01:00
|
|
|
struct GNUNET_TIME_Absolute timestamp)
|
|
|
|
{
|
2017-03-20 03:58:51 +01:00
|
|
|
struct WireFeeInfo *wfi;
|
|
|
|
struct WireFeeInfo *pos;
|
|
|
|
struct TALER_MasterSignatureP master_sig;
|
|
|
|
|
|
|
|
/* Check if fee is already loaded in cache */
|
|
|
|
for (pos = ac->fee_head; NULL != pos; pos = pos->next)
|
|
|
|
{
|
|
|
|
if ( (pos->start_date.abs_value_us <= timestamp.abs_value_us) &&
|
|
|
|
(pos->end_date.abs_value_us > timestamp.abs_value_us) )
|
|
|
|
return &pos->wire_fee;
|
|
|
|
if (pos->start_date.abs_value_us > timestamp.abs_value_us)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Lookup fee in exchange database */
|
|
|
|
wfi = GNUNET_new (struct WireFeeInfo);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT !=
|
2017-03-20 03:58:51 +01:00
|
|
|
edb->get_wire_fee (edb->cls,
|
|
|
|
esession,
|
2019-09-05 05:49:45 +02:00
|
|
|
method,
|
2017-03-20 03:58:51 +01:00
|
|
|
timestamp,
|
|
|
|
&wfi->start_date,
|
|
|
|
&wfi->end_date,
|
|
|
|
&wfi->wire_fee,
|
2019-07-24 13:31:48 +02:00
|
|
|
&wfi->closing_fee,
|
2017-03-20 03:58:51 +01:00
|
|
|
&master_sig))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (wfi);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-09-05 05:49:45 +02:00
|
|
|
/* Check signature. (This is not terribly meaningful as the exchange can
|
|
|
|
easily make this one up, but it means that we have proof that the master
|
|
|
|
key was used for inconsistent wire fees if a merchant complains.) */
|
2017-03-20 03:58:51 +01:00
|
|
|
{
|
2019-09-05 05:49:45 +02:00
|
|
|
struct TALER_MasterWireFeePS wf;
|
2017-03-20 03:58:51 +01:00
|
|
|
|
2019-09-05 05:49:45 +02:00
|
|
|
wf.purpose.purpose = htonl (TALER_SIGNATURE_MASTER_WIRE_FEES);
|
|
|
|
wf.purpose.size = htonl (sizeof (wf));
|
|
|
|
GNUNET_CRYPTO_hash (method,
|
|
|
|
strlen (method) + 1,
|
|
|
|
&wf.h_wire_method);
|
|
|
|
wf.start_date = GNUNET_TIME_absolute_hton (wfi->start_date);
|
|
|
|
wf.end_date = GNUNET_TIME_absolute_hton (wfi->end_date);
|
|
|
|
TALER_amount_hton (&wf.wire_fee,
|
2017-03-20 03:58:51 +01:00
|
|
|
&wfi->wire_fee);
|
2019-09-05 05:49:45 +02:00
|
|
|
TALER_amount_hton (&wf.closing_fee,
|
2018-01-04 00:41:19 +01:00
|
|
|
&wfi->closing_fee);
|
2017-03-20 03:58:51 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_MASTER_WIRE_FEES,
|
2019-09-05 05:49:45 +02:00
|
|
|
&wf.purpose,
|
2017-03-20 03:58:51 +01:00
|
|
|
&master_sig.eddsa_signature,
|
|
|
|
&master_pub.eddsa_pub))
|
|
|
|
{
|
2019-09-05 05:49:45 +02:00
|
|
|
report_row_inconsistency ("wire-fee",
|
|
|
|
timestamp.abs_value_us,
|
|
|
|
"wire fee signature invalid at given time");
|
2017-03-20 03:58:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Established fee, keep in sorted list */
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Wire fee is %s starting at %s\n",
|
|
|
|
TALER_amount2s (&wfi->wire_fee),
|
|
|
|
GNUNET_STRINGS_absolute_time_to_string (wfi->start_date));
|
|
|
|
if ( (NULL == pos) ||
|
|
|
|
(NULL == pos->prev) )
|
|
|
|
GNUNET_CONTAINER_DLL_insert (ac->fee_head,
|
|
|
|
ac->fee_tail,
|
|
|
|
wfi);
|
|
|
|
else
|
|
|
|
GNUNET_CONTAINER_DLL_insert_after (ac->fee_head,
|
|
|
|
ac->fee_tail,
|
|
|
|
pos->prev,
|
|
|
|
wfi);
|
|
|
|
/* Check non-overlaping fee invariant */
|
2017-11-20 14:20:09 +01:00
|
|
|
if ( (NULL != wfi->prev) &&
|
|
|
|
(wfi->prev->end_date.abs_value_us > wfi->start_date.abs_value_us) )
|
|
|
|
{
|
|
|
|
report (report_fee_time_inconsistencies,
|
2019-09-02 08:01:55 +02:00
|
|
|
json_pack ("{s:s, s:s, s:o}",
|
2019-09-05 05:49:45 +02:00
|
|
|
"type", method,
|
2017-11-20 14:20:09 +01:00
|
|
|
"diagnostic", "start date before previous end date",
|
2019-09-02 08:01:55 +02:00
|
|
|
"time", json_from_time_abs (wfi->start_date)));
|
2017-11-20 14:20:09 +01:00
|
|
|
}
|
|
|
|
if ( (NULL != wfi->next) &&
|
|
|
|
(wfi->next->start_date.abs_value_us >= wfi->end_date.abs_value_us) )
|
|
|
|
{
|
|
|
|
report (report_fee_time_inconsistencies,
|
2019-09-02 08:01:55 +02:00
|
|
|
json_pack ("{s:s, s:s, s:o}",
|
2019-09-05 05:49:45 +02:00
|
|
|
"type", method,
|
2017-11-20 14:20:09 +01:00
|
|
|
"diagnostic", "end date date after next start date",
|
2019-09-02 08:01:55 +02:00
|
|
|
"time", json_from_time_abs (wfi->end_date)));
|
2017-11-20 14:20:09 +01:00
|
|
|
}
|
2017-03-20 03:58:51 +01:00
|
|
|
return &wfi->wire_fee;
|
2017-03-20 03:32:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-14 18:00:17 +01:00
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Check that a wire transfer made by the exchange is valid
|
|
|
|
* (has matching deposits).
|
2017-03-14 18:00:17 +01:00
|
|
|
*
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param cls a `struct AggregationContext`
|
|
|
|
* @param rowid identifier of the respective row in the database
|
|
|
|
* @param date timestamp of the wire transfer (roughly)
|
|
|
|
* @param wtid wire transfer subject
|
|
|
|
* @param wire wire transfer details of the receiver
|
|
|
|
* @param amount amount that was wired
|
2017-04-04 15:38:58 +02:00
|
|
|
* @return #GNUNET_OK to continue, #GNUNET_SYSERR to stop iteration
|
2017-03-14 18:00:17 +01:00
|
|
|
*/
|
2017-04-04 15:38:58 +02:00
|
|
|
static int
|
2019-02-14 14:23:16 +01:00
|
|
|
check_wire_out_cb
|
2019-01-30 15:17:03 +01:00
|
|
|
(void *cls,
|
2019-08-25 16:18:24 +02:00
|
|
|
uint64_t rowid,
|
|
|
|
struct GNUNET_TIME_Absolute date,
|
|
|
|
const struct TALER_WireTransferIdentifierRawP *wtid,
|
|
|
|
const json_t *wire,
|
|
|
|
const struct TALER_Amount *amount)
|
2017-03-14 18:00:17 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
struct AggregationContext *ac = cls;
|
|
|
|
struct WireCheckContext wcc;
|
2017-03-20 03:32:16 +01:00
|
|
|
struct TALER_Amount final_amount;
|
|
|
|
struct TALER_Amount exchange_gain;
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2018-04-02 14:24:45 +02:00
|
|
|
char *method;
|
2017-03-15 14:19:57 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
/* should be monotonically increasing */
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_assert (rowid >= ppa.last_wire_out_serial_id);
|
|
|
|
ppa.last_wire_out_serial_id = rowid + 1;
|
2017-03-20 02:29:33 +01:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Checking wire transfer %s over %s performed on %s\n",
|
|
|
|
TALER_B2S (wtid),
|
|
|
|
TALER_amount2s (amount),
|
|
|
|
GNUNET_STRINGS_absolute_time_to_string (date));
|
2018-04-02 14:24:45 +02:00
|
|
|
if (NULL == (method = TALER_JSON_wire_to_method (wire)))
|
2017-03-15 14:19:57 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
report_row_inconsistency ("wire_out",
|
|
|
|
rowid,
|
2018-04-02 14:24:45 +02:00
|
|
|
"specified wire address lacks method");
|
2017-04-04 15:38:58 +02:00
|
|
|
return GNUNET_OK;
|
2017-03-15 14:19:57 +01:00
|
|
|
}
|
2018-04-02 14:24:45 +02:00
|
|
|
|
|
|
|
wcc.ac = ac;
|
2017-06-25 01:46:19 +02:00
|
|
|
wcc.qs = GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
2017-03-20 02:29:33 +01:00
|
|
|
wcc.date = date;
|
2017-10-06 22:08:35 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (amount->currency,
|
|
|
|
&wcc.total_deposits));
|
2017-10-06 20:02:28 +02:00
|
|
|
if (GNUNET_OK !=
|
2018-10-06 15:05:06 +02:00
|
|
|
TALER_JSON_merchant_wire_signature_hash (wire,
|
|
|
|
&wcc.h_wire))
|
2017-10-06 20:02:28 +02:00
|
|
|
{
|
2017-11-06 14:54:52 +01:00
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
2017-10-06 20:02:28 +02:00
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = edb->lookup_wire_transfer (edb->cls,
|
2019-07-24 13:31:48 +02:00
|
|
|
esession,
|
|
|
|
wtid,
|
|
|
|
&wire_transfer_information_cb,
|
|
|
|
&wcc);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 > qs)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
ac->qs = qs;
|
2018-04-02 14:24:45 +02:00
|
|
|
GNUNET_free (method);
|
2017-06-25 01:46:19 +02:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != wcc.qs)
|
2017-03-15 14:19:57 +01:00
|
|
|
{
|
2019-09-05 10:03:56 +02:00
|
|
|
/* Note: detailed information was already logged
|
|
|
|
in #wire_transfer_information_cb, so here we
|
|
|
|
only log for debugging */
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Inconsitency for wire_out %llu (WTID %s) detected\n",
|
|
|
|
(unsigned long long) rowid,
|
|
|
|
TALER_B2S (wtid));
|
2017-03-20 03:32:16 +01:00
|
|
|
}
|
|
|
|
|
2019-09-05 10:03:56 +02:00
|
|
|
|
2019-09-05 05:49:45 +02:00
|
|
|
/* Subtract aggregation fee from total (if possible) */
|
2017-03-20 03:32:16 +01:00
|
|
|
{
|
2019-09-05 05:49:45 +02:00
|
|
|
const struct TALER_Amount *wire_fee;
|
2019-01-30 15:17:03 +01:00
|
|
|
|
2019-09-05 05:49:45 +02:00
|
|
|
wire_fee = get_wire_fee (ac,
|
|
|
|
method,
|
|
|
|
date);
|
|
|
|
if (NULL == wire_fee)
|
|
|
|
{
|
|
|
|
report_row_inconsistency ("wire-fee",
|
|
|
|
date.abs_value_us,
|
|
|
|
"wire fee unavailable for given time");
|
|
|
|
/* If fee is unknown, we just assume the fee is zero */
|
|
|
|
final_amount = wcc.total_deposits;
|
|
|
|
}
|
|
|
|
else if (GNUNET_SYSERR ==
|
|
|
|
TALER_amount_subtract (&final_amount,
|
|
|
|
&wcc.total_deposits,
|
|
|
|
wire_fee))
|
|
|
|
{
|
|
|
|
report_amount_arithmetic_inconsistency
|
|
|
|
("wire out (fee structure)",
|
|
|
|
rowid,
|
|
|
|
&wcc.total_deposits,
|
|
|
|
wire_fee,
|
|
|
|
-1);
|
|
|
|
/* If fee arithmetic fails, we just assume the fee is zero */
|
|
|
|
final_amount = wcc.total_deposits;
|
|
|
|
}
|
2017-03-15 14:19:57 +01:00
|
|
|
}
|
2017-03-20 03:32:16 +01:00
|
|
|
|
|
|
|
/* Round down to amount supported by wire method */
|
2020-01-15 15:17:02 +01:00
|
|
|
GNUNET_break (TALER_amount_round_down (&final_amount,
|
2020-01-17 18:59:15 +01:00
|
|
|
¤cy_round_unit));
|
2017-03-20 03:32:16 +01:00
|
|
|
|
|
|
|
/* Calculate the exchange's gain as the fees plus rounding differences! */
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_subtract (&exchange_gain,
|
|
|
|
&wcc.total_deposits,
|
|
|
|
&final_amount))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-25 01:46:19 +02:00
|
|
|
ac->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-04-04 15:38:58 +02:00
|
|
|
return GNUNET_SYSERR;
|
2017-03-20 03:32:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Sum up aggregation fees (we simply include the rounding gains) */
|
|
|
|
if (GNUNET_OK !=
|
2017-11-06 00:03:08 +01:00
|
|
|
TALER_amount_add (&total_aggregation_fee_income,
|
|
|
|
&total_aggregation_fee_income,
|
2017-03-20 03:32:16 +01:00
|
|
|
&exchange_gain))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-25 01:46:19 +02:00
|
|
|
ac->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-04-04 15:38:58 +02:00
|
|
|
return GNUNET_SYSERR;
|
2017-03-20 03:32:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that calculated amount matches actual amount */
|
2017-03-20 02:29:33 +01:00
|
|
|
if (0 != TALER_amount_cmp (amount,
|
2017-03-20 03:58:51 +01:00
|
|
|
&final_amount))
|
2017-03-15 14:19:57 +01:00
|
|
|
{
|
2017-11-06 14:54:52 +01:00
|
|
|
struct TALER_Amount delta;
|
|
|
|
|
|
|
|
if (0 < TALER_amount_cmp (amount,
|
|
|
|
&final_amount))
|
|
|
|
{
|
|
|
|
/* amount > final_amount */
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_subtract (&delta,
|
|
|
|
amount,
|
|
|
|
&final_amount));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_wire_out_delta_plus,
|
|
|
|
&total_wire_out_delta_plus,
|
|
|
|
&delta));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* amount < final_amount */
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_subtract (&delta,
|
|
|
|
&final_amount,
|
|
|
|
amount));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_wire_out_delta_minus,
|
|
|
|
&total_wire_out_delta_minus,
|
|
|
|
&delta));
|
|
|
|
}
|
|
|
|
|
|
|
|
report (report_wire_out_inconsistencies,
|
|
|
|
json_pack ("{s:O, s:I, s:o, s:o}",
|
2019-08-26 03:16:36 +02:00
|
|
|
"destination_account", wire,
|
|
|
|
"rowid", (json_int_t) rowid,
|
2017-11-06 14:54:52 +01:00
|
|
|
"expected",
|
|
|
|
TALER_JSON_from_amount (&final_amount),
|
|
|
|
"claimed",
|
|
|
|
TALER_JSON_from_amount (amount)));
|
2017-04-04 15:38:58 +02:00
|
|
|
return GNUNET_OK;
|
2017-03-15 14:19:57 +01:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Wire transfer %s is OK\n",
|
|
|
|
TALER_B2S (wtid));
|
2017-04-04 15:38:58 +02:00
|
|
|
return GNUNET_OK;
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
2017-03-14 18:00:17 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Analyze the exchange aggregator's payment processing.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
2017-06-25 01:46:19 +02:00
|
|
|
* @return transaction status code
|
2017-03-20 02:29:33 +01:00
|
|
|
*/
|
2017-06-25 01:46:19 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-03-20 02:29:33 +01:00
|
|
|
analyze_aggregations (void *cls)
|
|
|
|
{
|
|
|
|
struct AggregationContext ac;
|
2017-03-20 03:58:51 +01:00
|
|
|
struct WireFeeInfo *wfi;
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qsx;
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2018-10-27 21:27:23 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qsp;
|
2017-03-20 02:29:33 +01:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Analyzing aggregations\n");
|
2018-10-27 21:27:23 +02:00
|
|
|
qsp = adb->get_auditor_progress_aggregation (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&ppa);
|
|
|
|
if (0 > qsp)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qsp);
|
|
|
|
return qsp;
|
|
|
|
}
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qsp)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE,
|
2019-08-25 16:18:24 +02:00
|
|
|
_ (
|
|
|
|
"First analysis using this auditor, starting audit from scratch\n"));
|
2018-10-27 21:27:23 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-12-03 12:39:32 +01:00
|
|
|
ppa_start = ppa;
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2019-08-25 16:18:24 +02:00
|
|
|
_ ("Resuming aggregation audit at %llu\n"),
|
2018-10-27 21:27:23 +02:00
|
|
|
(unsigned long long) ppa.last_wire_out_serial_id);
|
|
|
|
}
|
|
|
|
|
2017-12-10 00:18:48 +01:00
|
|
|
memset (&ac,
|
|
|
|
0,
|
|
|
|
sizeof (ac));
|
2017-06-25 01:46:19 +02:00
|
|
|
qsx = adb->get_wire_fee_summary (adb->cls,
|
2019-08-25 16:18:24 +02:00
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&total_aggregation_fee_income);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 > qsx)
|
2017-03-20 04:17:06 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qsx);
|
|
|
|
return qsx;
|
2017-03-20 04:17:06 +01:00
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
ac.qs = GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
|
|
|
qs = edb->select_wire_out_above_serial_id (edb->cls,
|
2019-08-25 16:18:24 +02:00
|
|
|
esession,
|
|
|
|
ppa.last_wire_out_serial_id,
|
|
|
|
&check_wire_out_cb,
|
|
|
|
&ac);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 > qs)
|
2017-03-15 14:19:57 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
ac.qs = qs;
|
2017-03-15 14:19:57 +01:00
|
|
|
}
|
2017-03-20 03:58:51 +01:00
|
|
|
while (NULL != (wfi = ac.fee_head))
|
|
|
|
{
|
|
|
|
GNUNET_CONTAINER_DLL_remove (ac.fee_head,
|
|
|
|
ac.fee_tail,
|
|
|
|
wfi);
|
|
|
|
GNUNET_free (wfi);
|
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != ac.qs)
|
2017-03-20 03:32:16 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == ac.qs);
|
|
|
|
return ac.qs;
|
2017-03-20 03:32:16 +01:00
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qsx)
|
|
|
|
ac.qs = adb->insert_wire_fee_summary (adb->cls,
|
2019-07-24 13:31:48 +02:00
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&total_aggregation_fee_income);
|
2017-03-20 04:17:06 +01:00
|
|
|
else
|
2017-06-25 01:46:19 +02:00
|
|
|
ac.qs = adb->update_wire_fee_summary (adb->cls,
|
2019-07-24 13:31:48 +02:00
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&total_aggregation_fee_income);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != ac.qs)
|
2017-03-20 04:17:06 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == ac.qs);
|
|
|
|
return ac.qs;
|
2017-03-20 04:17:06 +01:00
|
|
|
}
|
2018-10-27 21:27:23 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qsp)
|
|
|
|
qs = adb->update_auditor_progress_aggregation (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&ppa);
|
|
|
|
else
|
|
|
|
qs = adb->insert_auditor_progress_aggregation (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&ppa);
|
|
|
|
if (0 >= qs)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2019-08-25 16:18:24 +02:00
|
|
|
"Failed to update auditor DB, not recording progress\n");
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2019-08-25 16:18:24 +02:00
|
|
|
_ ("Concluded aggregation audit step at %llu\n"),
|
2018-10-27 21:27:23 +02:00
|
|
|
(unsigned long long) ppa.last_wire_out_serial_id);
|
|
|
|
|
2017-06-25 01:46:19 +02:00
|
|
|
return GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
2017-03-14 18:00:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
/* ************************* Analyze coins ******************** */
|
|
|
|
/* This logic checks that the exchange did the right thing for each
|
|
|
|
coin, checking deposits, refunds, refresh* and known_coins
|
|
|
|
tables */
|
2017-03-14 18:00:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Summary data we keep per denomination.
|
2017-03-14 18:00:17 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
struct DenominationSummary
|
2017-03-14 18:00:17 +01:00
|
|
|
{
|
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Total value of outstanding (not deposited) coins issued with this
|
|
|
|
* denomination key.
|
2017-03-14 18:00:17 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
struct TALER_Amount denom_balance;
|
2017-03-18 16:56:31 +01:00
|
|
|
|
2019-09-02 08:01:55 +02:00
|
|
|
/**
|
|
|
|
* Total losses made (once coins deposited exceed
|
|
|
|
* coins withdrawn and thus the @e denom_balance is
|
|
|
|
* effectively negative).
|
|
|
|
*/
|
|
|
|
struct TALER_Amount denom_loss;
|
|
|
|
|
2017-03-18 16:56:31 +01:00
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Total value of coins issued with this denomination key.
|
2017-03-18 16:56:31 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
struct TALER_Amount denom_risk;
|
2017-03-14 18:00:17 +01:00
|
|
|
|
2019-07-25 19:26:25 +02:00
|
|
|
/**
|
|
|
|
* Total value of coins subjected to payback with this denomination key.
|
|
|
|
*/
|
|
|
|
struct TALER_Amount denom_payback;
|
|
|
|
|
2018-10-28 11:30:02 +01:00
|
|
|
/**
|
|
|
|
* How many coins (not their amount!) of this denomination
|
|
|
|
* did the exchange issue overall?
|
|
|
|
*/
|
|
|
|
uint64_t num_issued;
|
|
|
|
|
2017-03-14 18:00:17 +01:00
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Denomination key information for this denomination.
|
2017-03-14 18:00:17 +01:00
|
|
|
*/
|
2019-10-09 14:22:42 +02:00
|
|
|
const struct TALER_DenominationKeyValidityPS *issue;
|
2017-03-14 18:00:17 +01:00
|
|
|
|
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* #GNUNET_YES if this record already existed in the DB.
|
|
|
|
* Used to decide between insert/update in
|
|
|
|
* #sync_denomination().
|
2017-03-14 18:00:17 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
int in_db;
|
2019-07-27 20:06:55 +02:00
|
|
|
|
2019-09-02 08:01:55 +02:00
|
|
|
/**
|
|
|
|
* Should we report an emergency for this denomination?
|
|
|
|
*/
|
|
|
|
int report_emergency;
|
|
|
|
|
2019-07-27 20:06:55 +02:00
|
|
|
/**
|
|
|
|
* #GNUNET_YES if this denomination was revoked.
|
|
|
|
*/
|
|
|
|
int was_revoked;
|
2017-03-18 16:56:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Closure for callbacks during #analyze_coins().
|
2017-03-18 16:56:31 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
struct CoinContext
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-03-14 18:00:17 +01:00
|
|
|
|
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Map for tracking information about denominations.
|
2017-03-14 18:00:17 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
struct GNUNET_CONTAINER_MultiHashMap *denom_summaries;
|
2017-03-14 18:00:17 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
/**
|
|
|
|
* Current write/replace offset in the circular @e summaries buffer.
|
|
|
|
*/
|
|
|
|
unsigned int summaries_off;
|
|
|
|
|
|
|
|
/**
|
2017-06-25 01:46:19 +02:00
|
|
|
* Transaction status code.
|
2017-03-20 02:29:33 +01:00
|
|
|
*/
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-03-14 18:00:17 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Initialize information about denomination from the database.
|
2017-03-18 16:56:31 +01:00
|
|
|
*
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param denom_hash hash of the public key of the denomination
|
|
|
|
* @param[out] ds summary to initialize
|
2017-06-25 01:46:19 +02:00
|
|
|
* @return transaction status code
|
2017-03-20 02:29:33 +01:00
|
|
|
*/
|
2017-06-25 01:46:19 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-03-20 02:29:33 +01:00
|
|
|
init_denomination (const struct GNUNET_HashCode *denom_hash,
|
|
|
|
struct DenominationSummary *ds)
|
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2019-07-27 20:06:55 +02:00
|
|
|
struct TALER_MasterSignatureP msig;
|
|
|
|
uint64_t rowid;
|
2017-03-20 02:29:33 +01:00
|
|
|
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = adb->get_denomination_balance (adb->cls,
|
2018-10-28 11:30:02 +01:00
|
|
|
asession,
|
|
|
|
denom_hash,
|
|
|
|
&ds->denom_balance,
|
2019-09-02 08:01:55 +02:00
|
|
|
&ds->denom_loss,
|
2018-10-28 11:30:02 +01:00
|
|
|
&ds->denom_risk,
|
2019-07-25 19:26:25 +02:00
|
|
|
&ds->denom_payback,
|
2018-10-28 11:30:02 +01:00
|
|
|
&ds->num_issued);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 > qs)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qs)
|
2017-03-20 02:29:33 +01:00
|
|
|
{
|
|
|
|
ds->in_db = GNUNET_YES;
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Starting balance for denomination `%s' is %s\n",
|
|
|
|
GNUNET_h2s (denom_hash),
|
|
|
|
TALER_amount2s (&ds->denom_balance));
|
2017-06-25 01:46:19 +02:00
|
|
|
return GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
2019-07-27 20:06:55 +02:00
|
|
|
qs = edb->get_denomination_revocation (edb->cls,
|
|
|
|
esession,
|
|
|
|
denom_hash,
|
|
|
|
&msig,
|
|
|
|
&rowid);
|
|
|
|
if (0 > qs)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
if (0 < qs)
|
|
|
|
{
|
|
|
|
/* check revocation signature */
|
|
|
|
struct TALER_MasterDenominationKeyRevocationPS rm;
|
|
|
|
|
2019-08-25 16:18:24 +02:00
|
|
|
rm.purpose.purpose = htonl (
|
|
|
|
TALER_SIGNATURE_MASTER_DENOMINATION_KEY_REVOKED);
|
2019-07-27 20:06:55 +02:00
|
|
|
rm.purpose.size = htonl (sizeof (rm));
|
|
|
|
rm.h_denom_pub = *denom_hash;
|
|
|
|
if (GNUNET_OK !=
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_CRYPTO_eddsa_verify (
|
|
|
|
TALER_SIGNATURE_MASTER_DENOMINATION_KEY_REVOKED,
|
|
|
|
&rm.purpose,
|
|
|
|
&msig.eddsa_signature,
|
|
|
|
&master_pub.eddsa_pub))
|
2019-07-27 20:06:55 +02:00
|
|
|
{
|
|
|
|
report_row_inconsistency ("denomination revocation table",
|
|
|
|
rowid,
|
|
|
|
"revocation signature invalid");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ds->was_revoked = GNUNET_YES;
|
|
|
|
}
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&ds->denom_balance));
|
2019-09-02 08:01:55 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&ds->denom_loss));
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&ds->denom_risk));
|
2019-07-25 19:26:25 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&ds->denom_payback));
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Starting balance for denomination `%s' is %s\n",
|
|
|
|
GNUNET_h2s (denom_hash),
|
|
|
|
TALER_amount2s (&ds->denom_balance));
|
2017-06-25 01:46:19 +02:00
|
|
|
return GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtain the denomination summary for the given @a dh
|
|
|
|
*
|
|
|
|
* @param cc our execution context
|
2019-10-09 14:22:42 +02:00
|
|
|
* @param issue denomination key information for @a dh
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param dh the denomination hash to use for the lookup
|
2017-03-18 16:56:31 +01:00
|
|
|
* @return NULL on error
|
2017-03-14 18:00:17 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
static struct DenominationSummary *
|
|
|
|
get_denomination_summary (struct CoinContext *cc,
|
2019-10-09 14:22:42 +02:00
|
|
|
const struct TALER_DenominationKeyValidityPS *issue,
|
2017-03-20 02:29:33 +01:00
|
|
|
const struct GNUNET_HashCode *dh)
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
struct DenominationSummary *ds;
|
2017-03-18 16:56:31 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
ds = GNUNET_CONTAINER_multihashmap_get (cc->denom_summaries,
|
|
|
|
dh);
|
|
|
|
if (NULL != ds)
|
|
|
|
return ds;
|
|
|
|
ds = GNUNET_new (struct DenominationSummary);
|
2019-10-09 14:22:42 +02:00
|
|
|
ds->issue = issue;
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 > (cc->qs = init_denomination (dh,
|
2019-07-24 13:31:48 +02:00
|
|
|
ds)))
|
2017-03-20 02:29:33 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (ds);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
GNUNET_CONTAINER_multihashmap_put (cc->denom_summaries,
|
|
|
|
dh,
|
|
|
|
ds,
|
|
|
|
GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
|
|
|
|
return ds;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write information about the current knowledge about a denomination key
|
|
|
|
* back to the database and update our global reporting data about the
|
|
|
|
* denomination. Also remove and free the memory of @a value.
|
|
|
|
*
|
|
|
|
* @param cls the `struct CoinContext`
|
2017-04-20 07:49:56 +02:00
|
|
|
* @param denom_hash the hash of the denomination key
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param value a `struct DenominationSummary`
|
|
|
|
* @return #GNUNET_OK (continue to iterate)
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sync_denomination (void *cls,
|
|
|
|
const struct GNUNET_HashCode *denom_hash,
|
|
|
|
void *value)
|
|
|
|
{
|
|
|
|
struct CoinContext *cc = cls;
|
|
|
|
struct DenominationSummary *ds = value;
|
2019-10-09 14:22:42 +02:00
|
|
|
const struct TALER_DenominationKeyValidityPS *issue = ds->issue;
|
2017-03-20 02:29:33 +01:00
|
|
|
struct GNUNET_TIME_Absolute now;
|
|
|
|
struct GNUNET_TIME_Absolute expire_deposit;
|
|
|
|
struct GNUNET_TIME_Absolute expire_deposit_grace;
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-03-20 02:29:33 +01:00
|
|
|
|
|
|
|
now = GNUNET_TIME_absolute_get ();
|
2019-10-09 14:22:42 +02:00
|
|
|
expire_deposit = GNUNET_TIME_absolute_ntoh (issue->expire_deposit);
|
2017-03-20 02:29:33 +01:00
|
|
|
/* add day grace period to deal with clocks not being perfectly synchronized */
|
|
|
|
expire_deposit_grace = GNUNET_TIME_absolute_add (expire_deposit,
|
|
|
|
DEPOSIT_GRACE_PERIOD);
|
|
|
|
if (now.abs_value_us > expire_deposit_grace.abs_value_us)
|
|
|
|
{
|
|
|
|
/* Denominationkey has expired, book remaining balance of
|
|
|
|
outstanding coins as revenue; and reduce cc->risk exposure. */
|
|
|
|
if (ds->in_db)
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = adb->del_denomination_balance (adb->cls,
|
2019-08-25 16:18:24 +02:00
|
|
|
asession,
|
|
|
|
denom_hash);
|
2017-03-20 02:29:33 +01:00
|
|
|
else
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
|
|
|
if ( (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qs) &&
|
2017-03-20 02:29:33 +01:00
|
|
|
( (0 != ds->denom_risk.value) ||
|
|
|
|
(0 != ds->denom_risk.fraction) ) )
|
|
|
|
{
|
|
|
|
/* The denomination expired and carried a balance; we can now
|
|
|
|
book the remaining balance as profit, and reduce our risk
|
|
|
|
exposure by the accumulated risk of the denomination. */
|
|
|
|
if (GNUNET_SYSERR ==
|
2017-11-06 00:03:08 +01:00
|
|
|
TALER_amount_subtract (&total_risk,
|
|
|
|
&total_risk,
|
2017-03-20 02:29:33 +01:00
|
|
|
&ds->denom_risk))
|
|
|
|
{
|
|
|
|
/* Holy smokes, our risk assessment was inconsistent!
|
|
|
|
This is really, really bad. */
|
|
|
|
GNUNET_break (0);
|
2017-06-25 01:46:19 +02:00
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
if ( (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qs) &&
|
2017-03-20 02:29:33 +01:00
|
|
|
( (0 != ds->denom_balance.value) ||
|
|
|
|
(0 != ds->denom_balance.fraction) ) )
|
|
|
|
{
|
|
|
|
/* book denom_balance coin expiration profits! */
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Denomination `%s' expired, booking %s in expiration profits\n",
|
|
|
|
GNUNET_h2s (denom_hash),
|
|
|
|
TALER_amount2s (&ds->denom_balance));
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT !=
|
|
|
|
(qs = adb->insert_historic_denom_revenue (adb->cls,
|
2019-07-25 19:26:25 +02:00
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
denom_hash,
|
|
|
|
expire_deposit,
|
|
|
|
&ds->denom_balance,
|
|
|
|
&ds->denom_payback)))
|
2017-03-20 02:29:33 +01:00
|
|
|
{
|
|
|
|
/* Failed to store profits? Bad database */
|
2019-07-24 13:31:48 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
2017-06-25 01:46:19 +02:00
|
|
|
cc->qs = qs;
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-11-04 16:20:09 +01:00
|
|
|
long long cnt;
|
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2018-11-04 16:20:09 +01:00
|
|
|
"Final balance for denomination `%s' is %s (%llu)\n",
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_h2s (denom_hash),
|
2018-11-04 16:20:09 +01:00
|
|
|
TALER_amount2s (&ds->denom_balance),
|
|
|
|
(unsigned long long) ds->num_issued);
|
|
|
|
cnt = edb->count_known_coins (edb->cls,
|
|
|
|
esession,
|
|
|
|
denom_hash);
|
|
|
|
if (0 > cnt)
|
|
|
|
{
|
|
|
|
/* Failed to obtain count? Bad database */
|
|
|
|
qs = (enum GNUNET_DB_QueryStatus) cnt;
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
cc->qs = qs;
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
else
|
2018-11-04 16:20:09 +01:00
|
|
|
{
|
2019-09-02 08:01:55 +02:00
|
|
|
if (ds->num_issued < (uint64_t) cnt)
|
2018-11-04 16:20:09 +01:00
|
|
|
{
|
2019-10-09 14:22:42 +02:00
|
|
|
report_emergency_by_count (issue,
|
2018-11-04 16:20:09 +01:00
|
|
|
ds->num_issued,
|
2019-09-02 08:01:55 +02:00
|
|
|
cnt,
|
2018-11-04 16:20:09 +01:00
|
|
|
&ds->denom_risk);
|
|
|
|
}
|
2019-09-02 08:01:55 +02:00
|
|
|
if (GNUNET_YES == ds->report_emergency)
|
|
|
|
{
|
2019-10-09 14:22:42 +02:00
|
|
|
report_emergency_by_amount (issue,
|
2019-09-02 08:01:55 +02:00
|
|
|
&ds->denom_risk,
|
|
|
|
&ds->denom_loss);
|
|
|
|
|
|
|
|
}
|
2018-11-04 16:20:09 +01:00
|
|
|
if (ds->in_db)
|
|
|
|
qs = adb->update_denomination_balance (adb->cls,
|
|
|
|
asession,
|
|
|
|
denom_hash,
|
|
|
|
&ds->denom_balance,
|
2019-09-02 08:01:55 +02:00
|
|
|
&ds->denom_loss,
|
2018-11-04 16:20:09 +01:00
|
|
|
&ds->denom_risk,
|
2019-07-25 19:26:25 +02:00
|
|
|
&ds->denom_payback,
|
2018-11-04 16:20:09 +01:00
|
|
|
ds->num_issued);
|
|
|
|
else
|
|
|
|
qs = adb->insert_denomination_balance (adb->cls,
|
|
|
|
asession,
|
|
|
|
denom_hash,
|
|
|
|
&ds->denom_balance,
|
2019-09-02 08:01:55 +02:00
|
|
|
&ds->denom_loss,
|
2018-11-04 16:20:09 +01:00
|
|
|
&ds->denom_risk,
|
2019-07-25 19:26:25 +02:00
|
|
|
&ds->denom_payback,
|
2018-11-04 16:20:09 +01:00
|
|
|
ds->num_issued);
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
cc->qs = qs;
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_assert (GNUNET_YES ==
|
|
|
|
GNUNET_CONTAINER_multihashmap_remove (cc->denom_summaries,
|
|
|
|
denom_hash,
|
|
|
|
ds));
|
|
|
|
GNUNET_free (ds);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != cc->qs)
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
return GNUNET_OK;
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Function called with details about all withdraw operations.
|
|
|
|
* Updates the denomination balance and the overall balance as
|
|
|
|
* we now have additional coins that have been issued.
|
|
|
|
*
|
|
|
|
* Note that the signature was already checked in
|
|
|
|
* #handle_reserve_out(), so we do not check it again here.
|
|
|
|
*
|
|
|
|
* @param cls our `struct CoinContext`
|
|
|
|
* @param rowid unique serial ID for the refresh session in our DB
|
|
|
|
* @param h_blind_ev blinded hash of the coin's public key
|
|
|
|
* @param denom_pub public denomination key of the deposited coin
|
|
|
|
* @param reserve_pub public key of the reserve
|
|
|
|
* @param reserve_sig signature over the withdraw operation (verified elsewhere)
|
|
|
|
* @param execution_date when did the wallet withdraw the coin
|
|
|
|
* @param amount_with_fee amount that was withdrawn
|
|
|
|
* @return #GNUNET_OK to continue to iterate, #GNUNET_SYSERR to stop
|
2017-03-18 16:56:31 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
static int
|
|
|
|
withdraw_cb (void *cls,
|
|
|
|
uint64_t rowid,
|
|
|
|
const struct GNUNET_HashCode *h_blind_ev,
|
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub,
|
|
|
|
const struct TALER_ReserveSignatureP *reserve_sig,
|
|
|
|
struct GNUNET_TIME_Absolute execution_date,
|
|
|
|
const struct TALER_Amount *amount_with_fee)
|
2017-03-14 18:00:17 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
struct CoinContext *cc = cls;
|
|
|
|
struct DenominationSummary *ds;
|
|
|
|
struct GNUNET_HashCode dh;
|
2019-10-09 14:22:42 +02:00
|
|
|
const struct TALER_DenominationKeyValidityPS *issue;
|
2017-03-20 02:29:33 +01:00
|
|
|
struct TALER_Amount value;
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-03-14 18:00:17 +01:00
|
|
|
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_assert (rowid >= ppc.last_withdraw_serial_id); /* should be monotonically increasing */
|
|
|
|
ppc.last_withdraw_serial_id = rowid + 1;
|
2017-03-20 02:45:33 +01:00
|
|
|
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = get_denomination_info (denom_pub,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue,
|
2019-07-24 13:31:48 +02:00
|
|
|
&dh);
|
2019-12-24 16:04:30 +01:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
|
|
|
{
|
|
|
|
report_row_inconsistency ("withdraw",
|
|
|
|
rowid,
|
|
|
|
"denomination key not found (foreign key constraint violated)");
|
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
2017-03-20 02:29:33 +01:00
|
|
|
{
|
2019-12-24 16:04:30 +01:00
|
|
|
/* This really ought to be a transient DB error. */
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
cc->qs = qs;
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
ds = get_denomination_summary (cc,
|
2019-10-09 14:22:42 +02:00
|
|
|
issue,
|
2017-03-20 02:29:33 +01:00
|
|
|
&dh);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (NULL == ds)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount_ntoh (&value,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue->value);
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Issued coin in denomination `%s' of total value %s\n",
|
|
|
|
GNUNET_h2s (&dh),
|
|
|
|
TALER_amount2s (&value));
|
2018-10-28 11:30:02 +01:00
|
|
|
ds->num_issued++;
|
2017-03-20 02:29:33 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&ds->denom_balance,
|
|
|
|
&ds->denom_balance,
|
|
|
|
&value))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-25 01:46:19 +02:00
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"New balance of denomination `%s' is %s\n",
|
|
|
|
GNUNET_h2s (&dh),
|
|
|
|
TALER_amount2s (&ds->denom_balance));
|
|
|
|
if (GNUNET_OK !=
|
2017-11-06 00:03:08 +01:00
|
|
|
TALER_amount_add (&total_escrow_balance,
|
|
|
|
&total_escrow_balance,
|
2017-03-20 02:29:33 +01:00
|
|
|
&value))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-25 01:46:19 +02:00
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-20 03:06:23 +01:00
|
|
|
if (GNUNET_OK !=
|
2017-11-06 00:03:08 +01:00
|
|
|
TALER_amount_add (&total_risk,
|
|
|
|
&total_risk,
|
2017-03-20 03:06:23 +01:00
|
|
|
&value))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-25 01:46:19 +02:00
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-20 03:06:23 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&ds->denom_risk,
|
|
|
|
&ds->denom_risk,
|
|
|
|
&value))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-25 01:46:19 +02:00
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-20 03:06:23 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
2017-03-14 18:00:17 +01:00
|
|
|
|
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
/**
|
|
|
|
* Closure for #reveal_data_cb().
|
|
|
|
*/
|
|
|
|
struct RevealContext
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Denomination public keys of the new coins.
|
|
|
|
*/
|
|
|
|
struct TALER_DenominationPublicKey *new_dps;
|
|
|
|
|
|
|
|
/**
|
2019-10-09 14:22:42 +02:00
|
|
|
* Size of the @a new_dp and @a new_dps arrays.
|
2017-11-27 23:42:17 +01:00
|
|
|
*/
|
|
|
|
unsigned int num_newcoins;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function called with information about a refresh order.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param rowid unique serial ID for the row in our database
|
|
|
|
* @param num_newcoins size of the @a rrcs array
|
|
|
|
* @param rrcs array of @a num_newcoins information about coins to be created
|
|
|
|
* @param num_tprivs number of entries in @a tprivs, should be #TALER_CNC_KAPPA - 1
|
|
|
|
* @param tprivs array of @e num_tprivs transfer private keys
|
|
|
|
* @param tp transfer public key information
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
reveal_data_cb (void *cls,
|
|
|
|
uint32_t num_newcoins,
|
|
|
|
const struct TALER_EXCHANGEDB_RefreshRevealedCoin *rrcs,
|
|
|
|
unsigned int num_tprivs,
|
|
|
|
const struct TALER_TransferPrivateKeyP *tprivs,
|
|
|
|
const struct TALER_TransferPublicKeyP *tp)
|
|
|
|
{
|
|
|
|
struct RevealContext *rctx = cls;
|
|
|
|
|
|
|
|
rctx->num_newcoins = num_newcoins;
|
|
|
|
rctx->new_dps = GNUNET_new_array (num_newcoins,
|
|
|
|
struct TALER_DenominationPublicKey);
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<num_newcoins; i++)
|
2017-11-27 23:42:17 +01:00
|
|
|
rctx->new_dps[i].rsa_public_key
|
|
|
|
= GNUNET_CRYPTO_rsa_public_key_dup (rrcs[i].denom_pub.rsa_public_key);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-03 06:21:51 +02:00
|
|
|
/**
|
|
|
|
* Check that the @a coin_pub is a known coin with a proper
|
|
|
|
* signature for denominatinon @a denom_pub. If not, report
|
|
|
|
* a loss of @a loss_potential.
|
|
|
|
*
|
|
|
|
* @param coin_pub public key of a coin
|
|
|
|
* @param denom_pub expected denomination of the coin
|
|
|
|
* @return database transaction status, on success
|
|
|
|
* #GNUNET_DB_STATUS_SUCCESS_ONE_RESULT
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
|
|
|
check_known_coin (const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
|
|
|
const struct TALER_Amount *loss_potential)
|
|
|
|
{
|
|
|
|
struct TALER_CoinPublicInfo ci;
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Checking denomination signature on %s\n",
|
|
|
|
TALER_B2S (coin_pub));
|
|
|
|
qs = edb->get_known_coin (edb->cls,
|
|
|
|
esession,
|
|
|
|
coin_pub,
|
|
|
|
&ci);
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
if (GNUNET_YES !=
|
|
|
|
TALER_test_coin_valid (&ci,
|
|
|
|
denom_pub))
|
|
|
|
{
|
|
|
|
report (report_bad_sig_losses,
|
|
|
|
json_pack ("{s:s, s:I, s:o, s:o}",
|
|
|
|
"operation", "known-coin",
|
|
|
|
"row", (json_int_t) -1,
|
|
|
|
"loss", TALER_JSON_from_amount (loss_potential),
|
|
|
|
"key_pub", GNUNET_JSON_from_data_auto (coin_pub)));
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_bad_sig_loss,
|
|
|
|
&total_bad_sig_loss,
|
|
|
|
loss_potential));
|
2019-09-05 03:56:27 +02:00
|
|
|
|
2019-09-03 06:21:51 +02:00
|
|
|
}
|
2019-09-05 03:56:27 +02:00
|
|
|
GNUNET_CRYPTO_rsa_signature_free (ci.denom_sig.rsa_signature);
|
2019-09-03 06:21:51 +02:00
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-18 16:56:31 +01:00
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Function called with details about coins that were melted, with the
|
|
|
|
* goal of auditing the refresh's execution. Verifies the signature
|
|
|
|
* and updates our information about coins outstanding (the old coin's
|
|
|
|
* denomination has less, the fresh coins increased outstanding
|
|
|
|
* balances).
|
2017-03-18 16:56:31 +01:00
|
|
|
*
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param cls closure
|
|
|
|
* @param rowid unique serial ID for the refresh session in our DB
|
|
|
|
* @param denom_pub denomination public key of @a coin_pub
|
|
|
|
* @param coin_pub public key of the coin
|
|
|
|
* @param coin_sig signature from the coin
|
|
|
|
* @param amount_with_fee amount that was deposited including fee
|
|
|
|
* @param noreveal_index which index was picked by the exchange in cut-and-choose
|
|
|
|
* @param session_hash what is the session hash
|
|
|
|
* @return #GNUNET_OK to continue to iterate, #GNUNET_SYSERR to stop
|
2017-03-18 16:56:31 +01:00
|
|
|
*/
|
|
|
|
static int
|
2017-03-20 02:29:33 +01:00
|
|
|
refresh_session_cb (void *cls,
|
|
|
|
uint64_t rowid,
|
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
const struct TALER_CoinSpendSignatureP *coin_sig,
|
|
|
|
const struct TALER_Amount *amount_with_fee,
|
2017-11-27 23:42:17 +01:00
|
|
|
uint32_t noreveal_index,
|
|
|
|
const struct TALER_RefreshCommitmentP *rc)
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
struct CoinContext *cc = cls;
|
|
|
|
struct TALER_RefreshMeltCoinAffirmationPS rmc;
|
2019-10-09 14:22:42 +02:00
|
|
|
const struct TALER_DenominationKeyValidityPS *issue;
|
2017-03-20 02:29:33 +01:00
|
|
|
struct DenominationSummary *dso;
|
|
|
|
struct TALER_Amount amount_without_fee;
|
|
|
|
struct TALER_Amount tmp;
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-03-18 16:56:31 +01:00
|
|
|
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_assert (rowid >= ppc.last_melt_serial_id); /* should be monotonically increasing */
|
|
|
|
ppc.last_melt_serial_id = rowid + 1;
|
2017-03-20 02:45:33 +01:00
|
|
|
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = get_denomination_info (denom_pub,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue,
|
2019-07-27 20:06:55 +02:00
|
|
|
NULL);
|
2019-12-24 16:04:30 +01:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
|
|
|
{
|
|
|
|
report_row_inconsistency ("refresh_melt",
|
|
|
|
rowid,
|
|
|
|
"denomination key not found (foreign key constraint violated)");
|
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
cc->qs = qs;
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2019-09-03 06:21:51 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT !=
|
|
|
|
check_known_coin (coin_pub,
|
|
|
|
denom_pub,
|
|
|
|
amount_with_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
cc->qs = qs;
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-18 16:56:31 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
/* verify melt signature */
|
|
|
|
rmc.purpose.purpose = htonl (TALER_SIGNATURE_WALLET_COIN_MELT);
|
|
|
|
rmc.purpose.size = htonl (sizeof (rmc));
|
2017-11-27 23:42:17 +01:00
|
|
|
rmc.rc = *rc;
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount_hton (&rmc.amount_with_fee,
|
|
|
|
amount_with_fee);
|
2019-10-09 14:22:42 +02:00
|
|
|
rmc.melt_fee = issue->fee_refresh;
|
2017-03-20 02:29:33 +01:00
|
|
|
rmc.coin_pub = *coin_pub;
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_MELT,
|
|
|
|
&rmc.purpose,
|
|
|
|
&coin_sig->eddsa_signature,
|
|
|
|
&coin_pub->eddsa_pub))
|
|
|
|
{
|
2017-11-06 19:11:43 +01:00
|
|
|
report (report_bad_sig_losses,
|
|
|
|
json_pack ("{s:s, s:I, s:o, s:o}",
|
|
|
|
"operation", "melt",
|
|
|
|
"row", (json_int_t) rowid,
|
|
|
|
"loss", TALER_JSON_from_amount (amount_with_fee),
|
|
|
|
"key_pub", GNUNET_JSON_from_data_auto (coin_pub)));
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_bad_sig_loss,
|
|
|
|
&total_bad_sig_loss,
|
|
|
|
amount_with_fee));
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Melting coin %s in denomination `%s' of value %s\n",
|
|
|
|
TALER_B2S (coin_pub),
|
2019-10-09 14:22:42 +02:00
|
|
|
GNUNET_h2s (&issue->denom_hash),
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount2s (amount_with_fee));
|
|
|
|
|
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
struct RevealContext reveal_ctx;
|
2017-03-20 02:29:33 +01:00
|
|
|
struct TALER_Amount refresh_cost;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (amount_with_fee->currency,
|
|
|
|
&refresh_cost));
|
2017-11-27 23:42:17 +01:00
|
|
|
memset (&reveal_ctx,
|
|
|
|
0,
|
|
|
|
sizeof (reveal_ctx));
|
|
|
|
qs = edb->get_refresh_reveal (edb->cls,
|
|
|
|
esession,
|
|
|
|
rc,
|
|
|
|
&reveal_data_cb,
|
|
|
|
&reveal_ctx);
|
|
|
|
if (0 > qs)
|
2017-03-20 02:29:33 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-11-27 23:42:17 +01:00
|
|
|
if ( (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs) ||
|
|
|
|
(0 == reveal_ctx.num_newcoins) )
|
2017-03-20 02:29:33 +01:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
/* This can happen if /refresh/reveal was not yet called or only
|
|
|
|
with invalid data, even if the exchange is correctly
|
|
|
|
operating. We still report it. */
|
|
|
|
report (report_refreshs_hanging,
|
|
|
|
json_pack ("{s:I, s:o, s:o}",
|
|
|
|
"row", (json_int_t) rowid,
|
|
|
|
"amount", TALER_JSON_from_amount (amount_with_fee),
|
|
|
|
"coin_pub", GNUNET_JSON_from_data_auto (coin_pub)));
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_refresh_hanging,
|
|
|
|
&total_refresh_hanging,
|
|
|
|
amount_with_fee));
|
|
|
|
return GNUNET_OK;
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2019-10-09 14:22:42 +02:00
|
|
|
const struct TALER_DenominationKeyValidityPS *new_issues[reveal_ctx.
|
|
|
|
num_newcoins];
|
2017-03-20 02:29:33 +01:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
/* Update outstanding amounts for all new coin's denominations, and check
|
|
|
|
that the resulting amounts are consistent with the value being refreshed. */
|
|
|
|
err = GNUNET_NO;
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<reveal_ctx.num_newcoins; i++)
|
2017-03-19 06:50:08 +01:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
/* lookup new coin denomination key */
|
|
|
|
qs = get_denomination_info (&reveal_ctx.new_dps[i],
|
2019-10-09 14:22:42 +02:00
|
|
|
&new_issues[i],
|
2017-11-27 23:42:17 +01:00
|
|
|
NULL);
|
2019-12-24 16:04:30 +01:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
|
|
|
{
|
|
|
|
report_row_inconsistency ("refresh_reveal",
|
|
|
|
rowid,
|
|
|
|
"denomination key not found (foreign key constraint violated)");
|
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
err = GNUNET_YES;
|
|
|
|
}
|
|
|
|
else if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
2017-11-27 23:42:17 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
cc->qs = qs;
|
|
|
|
err = GNUNET_YES;
|
|
|
|
}
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (
|
|
|
|
reveal_ctx.new_dps[i].rsa_public_key);
|
2017-11-27 23:42:17 +01:00
|
|
|
reveal_ctx.new_dps[i].rsa_public_key = NULL;
|
2017-03-19 06:50:08 +01:00
|
|
|
}
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_free (reveal_ctx.new_dps);
|
|
|
|
reveal_ctx.new_dps = NULL;
|
2017-03-20 02:29:33 +01:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
if (err)
|
|
|
|
return GNUNET_SYSERR;
|
2017-03-20 02:29:33 +01:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
/* calculate total refresh cost */
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<reveal_ctx.num_newcoins; i++)
|
2017-03-19 06:50:08 +01:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
/* update cost of refresh */
|
|
|
|
struct TALER_Amount fee;
|
|
|
|
struct TALER_Amount value;
|
|
|
|
|
|
|
|
TALER_amount_ntoh (&fee,
|
2019-10-09 14:22:42 +02:00
|
|
|
&new_issues[i]->fee_withdraw);
|
2017-11-27 23:42:17 +01:00
|
|
|
TALER_amount_ntoh (&value,
|
2019-10-09 14:22:42 +02:00
|
|
|
&new_issues[i]->value);
|
2017-11-27 23:42:17 +01:00
|
|
|
if ( (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&refresh_cost,
|
|
|
|
&refresh_cost,
|
|
|
|
&fee)) ||
|
|
|
|
(GNUNET_OK !=
|
|
|
|
TALER_amount_add (&refresh_cost,
|
|
|
|
&refresh_cost,
|
|
|
|
&value)) )
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-19 06:50:08 +01:00
|
|
|
}
|
2017-11-27 23:42:17 +01:00
|
|
|
|
|
|
|
/* compute contribution of old coin */
|
2017-03-20 03:06:23 +01:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
struct TALER_Amount melt_fee;
|
|
|
|
|
|
|
|
TALER_amount_ntoh (&melt_fee,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue->fee_refresh);
|
2017-11-27 23:42:17 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_subtract (&amount_without_fee,
|
|
|
|
amount_with_fee,
|
|
|
|
&melt_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-20 03:06:23 +01:00
|
|
|
}
|
2017-11-27 23:42:17 +01:00
|
|
|
|
|
|
|
/* check old coin covers complete expenses */
|
|
|
|
if (1 == TALER_amount_cmp (&refresh_cost,
|
|
|
|
&amount_without_fee))
|
2017-03-19 06:50:08 +01:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
/* refresh_cost > amount_without_fee */
|
|
|
|
report_amount_arithmetic_inconsistency ("melt (fee)",
|
|
|
|
rowid,
|
|
|
|
&amount_without_fee,
|
|
|
|
&refresh_cost,
|
|
|
|
-1);
|
|
|
|
return GNUNET_OK;
|
2017-03-19 06:50:08 +01:00
|
|
|
}
|
2017-11-27 23:42:17 +01:00
|
|
|
|
|
|
|
/* update outstanding denomination amounts */
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<reveal_ctx.num_newcoins; i++)
|
2017-03-20 03:06:23 +01:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
struct DenominationSummary *dsi;
|
|
|
|
struct TALER_Amount value;
|
|
|
|
|
|
|
|
dsi = get_denomination_summary (cc,
|
2019-10-09 14:22:42 +02:00
|
|
|
new_issues[i],
|
|
|
|
&new_issues[i]->denom_hash);
|
2017-11-27 23:42:17 +01:00
|
|
|
if (NULL == dsi)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
TALER_amount_ntoh (&value,
|
2019-10-09 14:22:42 +02:00
|
|
|
&new_issues[i]->value);
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Created fresh coin in denomination `%s' of value %s\n",
|
2019-10-09 14:22:42 +02:00
|
|
|
GNUNET_h2s (&new_issues[i]->denom_hash),
|
2017-11-27 23:42:17 +01:00
|
|
|
TALER_amount2s (&value));
|
2018-10-28 11:30:02 +01:00
|
|
|
dsi->num_issued++;
|
2017-11-27 23:42:17 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&dsi->denom_balance,
|
|
|
|
&dsi->denom_balance,
|
|
|
|
&value))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&dsi->denom_risk,
|
|
|
|
&dsi->denom_risk,
|
|
|
|
&value))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"New balance of denomination `%s' is %s\n",
|
2019-10-09 14:22:42 +02:00
|
|
|
GNUNET_h2s (&new_issues[i]->denom_hash),
|
2017-11-27 23:42:17 +01:00
|
|
|
TALER_amount2s (&dsi->denom_balance));
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&total_escrow_balance,
|
|
|
|
&total_escrow_balance,
|
|
|
|
&value))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&total_risk,
|
|
|
|
&total_risk,
|
|
|
|
&value))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-20 03:06:23 +01:00
|
|
|
}
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
2017-03-19 06:50:08 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
/* update old coin's denomination balance */
|
|
|
|
dso = get_denomination_summary (cc,
|
2019-10-09 14:22:42 +02:00
|
|
|
issue,
|
|
|
|
&issue->denom_hash);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (NULL == dso)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
if (GNUNET_SYSERR ==
|
|
|
|
TALER_amount_subtract (&tmp,
|
|
|
|
&dso->denom_balance,
|
|
|
|
amount_with_fee))
|
|
|
|
{
|
2019-09-02 08:01:55 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&dso->denom_loss,
|
|
|
|
&dso->denom_loss,
|
|
|
|
amount_with_fee));
|
|
|
|
dso->report_emergency = GNUNET_YES;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dso->denom_balance = tmp;
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
2019-09-28 20:53:44 +02:00
|
|
|
if (-1 == TALER_amount_cmp (&total_escrow_balance,
|
|
|
|
amount_with_fee))
|
2017-03-20 03:06:23 +01:00
|
|
|
{
|
2019-09-28 20:53:44 +02:00
|
|
|
/* This can theoretically happen if for example the exchange
|
|
|
|
never issued any coins (i.e. escrow balance is zero), but
|
|
|
|
accepted a forged coin (i.e. emergency situation after
|
|
|
|
private key compromise). In that case, we cannot even
|
|
|
|
subtract the profit we make from the fee from the escrow
|
2019-10-31 12:59:50 +01:00
|
|
|
balance. Tested as part of test-auditor.sh, case #18 */report_amount_arithmetic_inconsistency (
|
2019-09-28 20:53:44 +02:00
|
|
|
"subtracting refresh fee from escrow balance",
|
|
|
|
rowid,
|
|
|
|
&total_escrow_balance,
|
|
|
|
amount_with_fee,
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GNUNET_assert (GNUNET_SYSERR !=
|
|
|
|
TALER_amount_subtract (&total_escrow_balance,
|
|
|
|
&total_escrow_balance,
|
|
|
|
amount_with_fee));
|
2017-03-20 03:06:23 +01:00
|
|
|
}
|
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"New balance of denomination `%s' after melt is %s\n",
|
2019-10-09 14:22:42 +02:00
|
|
|
GNUNET_h2s (&issue->denom_hash),
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount2s (&dso->denom_balance));
|
|
|
|
|
2019-09-02 08:01:55 +02:00
|
|
|
/* update global melt fees */
|
2017-03-20 02:29:33 +01:00
|
|
|
{
|
|
|
|
struct TALER_Amount rfee;
|
|
|
|
|
|
|
|
TALER_amount_ntoh (&rfee,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue->fee_refresh);
|
2017-03-20 02:29:33 +01:00
|
|
|
if (GNUNET_OK !=
|
2017-11-06 00:03:08 +01:00
|
|
|
TALER_amount_add (&total_melt_fee_income,
|
|
|
|
&total_melt_fee_income,
|
2017-03-20 02:29:33 +01:00
|
|
|
&rfee))
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-25 01:46:19 +02:00
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-18 16:56:31 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
}
|
2017-03-18 16:56:31 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
/* We're good! */
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function called with details about deposits that have been made,
|
|
|
|
* with the goal of auditing the deposit's execution.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param rowid unique serial ID for the deposit in our DB
|
|
|
|
* @param timestamp when did the deposit happen
|
|
|
|
* @param merchant_pub public key of the merchant
|
|
|
|
* @param denom_pub denomination public key of @a coin_pub
|
|
|
|
* @param coin_pub public key of the coin
|
|
|
|
* @param coin_sig signature from the coin
|
|
|
|
* @param amount_with_fee amount that was deposited including fee
|
2017-05-29 01:15:41 +02:00
|
|
|
* @param h_contract_terms hash of the proposal data known to merchant and customer
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param refund_deadline by which the merchant adviced that he might want
|
|
|
|
* to get a refund
|
|
|
|
* @param wire_deadline by which the merchant adviced that he would like the
|
|
|
|
* wire transfer to be executed
|
|
|
|
* @param receiver_wire_account wire details for the merchant, NULL from iterate_matching_deposits()
|
|
|
|
* @param done flag set if the deposit was already executed (or not)
|
|
|
|
* @return #GNUNET_OK to continue to iterate, #GNUNET_SYSERR to stop
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
deposit_cb (void *cls,
|
|
|
|
uint64_t rowid,
|
|
|
|
struct GNUNET_TIME_Absolute timestamp,
|
|
|
|
const struct TALER_MerchantPublicKeyP *merchant_pub,
|
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
const struct TALER_CoinSpendSignatureP *coin_sig,
|
|
|
|
const struct TALER_Amount *amount_with_fee,
|
2017-05-29 01:15:41 +02:00
|
|
|
const struct GNUNET_HashCode *h_contract_terms,
|
2017-03-20 02:29:33 +01:00
|
|
|
struct GNUNET_TIME_Absolute refund_deadline,
|
|
|
|
struct GNUNET_TIME_Absolute wire_deadline,
|
|
|
|
const json_t *receiver_wire_account,
|
|
|
|
int done)
|
|
|
|
{
|
|
|
|
struct CoinContext *cc = cls;
|
2019-10-09 14:22:42 +02:00
|
|
|
const struct TALER_DenominationKeyValidityPS *issue;
|
2017-03-20 02:29:33 +01:00
|
|
|
struct DenominationSummary *ds;
|
|
|
|
struct TALER_DepositRequestPS dr;
|
|
|
|
struct TALER_Amount tmp;
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-03-20 02:29:33 +01:00
|
|
|
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_assert (rowid >= ppc.last_deposit_serial_id); /* should be monotonically increasing */
|
|
|
|
ppc.last_deposit_serial_id = rowid + 1;
|
2017-03-20 02:45:33 +01:00
|
|
|
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = get_denomination_info (denom_pub,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue,
|
2019-07-27 20:06:55 +02:00
|
|
|
NULL);
|
2019-12-24 16:04:30 +01:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
|
|
|
{
|
|
|
|
report_row_inconsistency ("deposits",
|
|
|
|
rowid,
|
|
|
|
"denomination key not found (foreign key constraint violated)");
|
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
cc->qs = qs;
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2019-09-03 06:21:51 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT !=
|
|
|
|
check_known_coin (coin_pub,
|
|
|
|
denom_pub,
|
|
|
|
amount_with_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
cc->qs = qs;
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
|
|
|
|
/* Verify deposit signature */
|
|
|
|
dr.purpose.purpose = htonl (TALER_SIGNATURE_WALLET_COIN_DEPOSIT);
|
|
|
|
dr.purpose.size = htonl (sizeof (dr));
|
2017-05-29 01:15:41 +02:00
|
|
|
dr.h_contract_terms = *h_contract_terms;
|
2017-03-20 02:29:33 +01:00
|
|
|
if (GNUNET_OK !=
|
2018-10-06 15:05:06 +02:00
|
|
|
TALER_JSON_merchant_wire_signature_hash (receiver_wire_account,
|
|
|
|
&dr.h_wire))
|
2017-03-20 02:29:33 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-25 01:46:19 +02:00
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-18 16:56:31 +01:00
|
|
|
return GNUNET_SYSERR;
|
2017-03-19 06:50:08 +01:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
dr.timestamp = GNUNET_TIME_absolute_hton (timestamp);
|
|
|
|
dr.refund_deadline = GNUNET_TIME_absolute_hton (refund_deadline);
|
|
|
|
TALER_amount_hton (&dr.amount_with_fee,
|
|
|
|
amount_with_fee);
|
2019-10-09 14:22:42 +02:00
|
|
|
dr.deposit_fee = issue->fee_deposit;
|
2017-03-20 02:29:33 +01:00
|
|
|
dr.merchant = *merchant_pub;
|
|
|
|
dr.coin_pub = *coin_pub;
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_DEPOSIT,
|
|
|
|
&dr.purpose,
|
|
|
|
&coin_sig->eddsa_signature,
|
|
|
|
&coin_pub->eddsa_pub))
|
2017-03-19 06:50:08 +01:00
|
|
|
{
|
2017-11-06 19:11:43 +01:00
|
|
|
report (report_bad_sig_losses,
|
|
|
|
json_pack ("{s:s, s:I, s:o, s:o}",
|
|
|
|
"operation", "deposit",
|
|
|
|
"row", (json_int_t) rowid,
|
|
|
|
"loss", TALER_JSON_from_amount (amount_with_fee),
|
|
|
|
"key_pub", GNUNET_JSON_from_data_auto (coin_pub)));
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_bad_sig_loss,
|
|
|
|
&total_bad_sig_loss,
|
|
|
|
amount_with_fee));
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_OK;
|
2017-03-19 06:50:08 +01:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Deposited coin %s in denomination `%s' of value %s\n",
|
|
|
|
TALER_B2S (coin_pub),
|
2019-10-09 14:22:42 +02:00
|
|
|
GNUNET_h2s (&issue->denom_hash),
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount2s (amount_with_fee));
|
2017-03-19 06:50:08 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
/* update old coin's denomination balance */
|
|
|
|
ds = get_denomination_summary (cc,
|
2019-10-09 14:22:42 +02:00
|
|
|
issue,
|
|
|
|
&issue->denom_hash);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (NULL == ds)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-19 06:50:08 +01:00
|
|
|
if (GNUNET_SYSERR ==
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount_subtract (&tmp,
|
|
|
|
&ds->denom_balance,
|
|
|
|
amount_with_fee))
|
2017-03-19 06:50:08 +01:00
|
|
|
{
|
2019-09-02 08:01:55 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&ds->denom_loss,
|
|
|
|
&ds->denom_loss,
|
|
|
|
amount_with_fee));
|
|
|
|
ds->report_emergency = GNUNET_YES;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ds->denom_balance = tmp;
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
2019-09-28 20:53:44 +02:00
|
|
|
|
|
|
|
if (-1 == TALER_amount_cmp (&total_escrow_balance,
|
|
|
|
amount_with_fee))
|
2017-03-20 03:06:23 +01:00
|
|
|
{
|
2019-09-28 20:53:44 +02:00
|
|
|
/* This can theoretically happen if for example the exchange
|
|
|
|
never issued any coins (i.e. escrow balance is zero), but
|
|
|
|
accepted a forged coin (i.e. emergency situation after
|
|
|
|
private key compromise). In that case, we cannot even
|
|
|
|
subtract the profit we make from the fee from the escrow
|
2019-10-31 12:59:50 +01:00
|
|
|
balance. Tested as part of test-auditor.sh, case #18 */report_amount_arithmetic_inconsistency (
|
2019-09-28 20:53:44 +02:00
|
|
|
"subtracting deposit fee from escrow balance",
|
|
|
|
rowid,
|
|
|
|
&total_escrow_balance,
|
|
|
|
amount_with_fee,
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GNUNET_assert (GNUNET_SYSERR !=
|
|
|
|
TALER_amount_subtract (&total_escrow_balance,
|
|
|
|
&total_escrow_balance,
|
|
|
|
amount_with_fee));
|
2017-03-20 03:06:23 +01:00
|
|
|
}
|
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"New balance of denomination `%s' after deposit is %s\n",
|
2019-10-09 14:22:42 +02:00
|
|
|
GNUNET_h2s (&issue->denom_hash),
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount2s (&ds->denom_balance));
|
|
|
|
|
|
|
|
/* update global up melt fees */
|
|
|
|
{
|
|
|
|
struct TALER_Amount dfee;
|
|
|
|
|
|
|
|
TALER_amount_ntoh (&dfee,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue->fee_deposit);
|
2017-03-20 02:29:33 +01:00
|
|
|
if (GNUNET_OK !=
|
2017-11-06 00:03:08 +01:00
|
|
|
TALER_amount_add (&total_deposit_fee_income,
|
|
|
|
&total_deposit_fee_income,
|
2017-03-20 02:29:33 +01:00
|
|
|
&dfee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-10-06 20:02:28 +02:00
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-18 16:56:31 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Function called with details about coins that were refunding,
|
|
|
|
* with the goal of auditing the refund's execution. Adds the
|
|
|
|
* refunded amount back to the outstanding balance of the respective
|
|
|
|
* denomination.
|
2017-03-18 16:56:31 +01:00
|
|
|
*
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param cls closure
|
|
|
|
* @param rowid unique serial ID for the refund in our DB
|
|
|
|
* @param denom_pub denomination public key of @a coin_pub
|
|
|
|
* @param coin_pub public key of the coin
|
|
|
|
* @param merchant_pub public key of the merchant
|
|
|
|
* @param merchant_sig signature of the merchant
|
2017-05-29 01:15:41 +02:00
|
|
|
* @param h_contract_terms hash of the proposal data known to merchant and customer
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param rtransaction_id refund transaction ID chosen by the merchant
|
|
|
|
* @param amount_with_fee amount that was deposited including fee
|
|
|
|
* @return #GNUNET_OK to continue to iterate, #GNUNET_SYSERR to stop
|
2017-03-18 16:56:31 +01:00
|
|
|
*/
|
2017-03-20 02:29:33 +01:00
|
|
|
static int
|
|
|
|
refund_cb (void *cls,
|
|
|
|
uint64_t rowid,
|
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
const struct TALER_MerchantPublicKeyP *merchant_pub,
|
|
|
|
const struct TALER_MerchantSignatureP *merchant_sig,
|
2017-05-29 01:15:41 +02:00
|
|
|
const struct GNUNET_HashCode *h_contract_terms,
|
2017-03-20 02:29:33 +01:00
|
|
|
uint64_t rtransaction_id,
|
|
|
|
const struct TALER_Amount *amount_with_fee)
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
struct CoinContext *cc = cls;
|
2019-10-09 14:22:42 +02:00
|
|
|
const struct TALER_DenominationKeyValidityPS *issue;
|
2017-03-20 02:29:33 +01:00
|
|
|
struct DenominationSummary *ds;
|
|
|
|
struct TALER_RefundRequestPS rr;
|
|
|
|
struct TALER_Amount amount_without_fee;
|
|
|
|
struct TALER_Amount refund_fee;
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-03-18 16:56:31 +01:00
|
|
|
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_assert (rowid >= ppc.last_refund_serial_id); /* should be monotonically increasing */
|
|
|
|
ppc.last_refund_serial_id = rowid + 1;
|
2017-03-20 02:45:33 +01:00
|
|
|
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = get_denomination_info (denom_pub,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue,
|
2019-07-24 13:31:48 +02:00
|
|
|
NULL);
|
2019-12-24 16:04:30 +01:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
|
|
|
{
|
|
|
|
report_row_inconsistency ("refunds",
|
|
|
|
rowid,
|
|
|
|
"denomination key not found (foreign key constraint violated)");
|
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_SYSERR;
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
/* verify refund signature */
|
|
|
|
rr.purpose.purpose = htonl (TALER_SIGNATURE_MERCHANT_REFUND);
|
|
|
|
rr.purpose.size = htonl (sizeof (rr));
|
2017-05-29 01:15:41 +02:00
|
|
|
rr.h_contract_terms = *h_contract_terms;
|
2017-03-20 02:29:33 +01:00
|
|
|
rr.coin_pub = *coin_pub;
|
|
|
|
rr.merchant = *merchant_pub;
|
|
|
|
rr.rtransaction_id = GNUNET_htonll (rtransaction_id);
|
|
|
|
TALER_amount_hton (&rr.refund_amount,
|
|
|
|
amount_with_fee);
|
2019-10-09 14:22:42 +02:00
|
|
|
rr.refund_fee = issue->fee_refund;
|
2017-03-20 02:29:33 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_MERCHANT_REFUND,
|
|
|
|
&rr.purpose,
|
|
|
|
&merchant_sig->eddsa_sig,
|
|
|
|
&merchant_pub->eddsa_pub))
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-11-06 19:11:43 +01:00
|
|
|
report (report_bad_sig_losses,
|
|
|
|
json_pack ("{s:s, s:I, s:o, s:o}",
|
|
|
|
"operation", "refund",
|
|
|
|
"row", (json_int_t) rowid,
|
|
|
|
"loss", TALER_JSON_from_amount (amount_with_fee),
|
|
|
|
"key_pub", GNUNET_JSON_from_data_auto (merchant_pub)));
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_bad_sig_loss,
|
|
|
|
&total_bad_sig_loss,
|
|
|
|
amount_with_fee));
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_OK;
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount_ntoh (&refund_fee,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue->fee_refund);
|
2017-03-20 02:29:33 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_subtract (&amount_without_fee,
|
|
|
|
amount_with_fee,
|
|
|
|
&refund_fee))
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-11-06 19:11:43 +01:00
|
|
|
report_amount_arithmetic_inconsistency ("refund (fee)",
|
|
|
|
rowid,
|
|
|
|
&amount_without_fee,
|
|
|
|
&refund_fee,
|
|
|
|
-1);
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_OK;
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Refunding coin %s in denomination `%s' value %s\n",
|
|
|
|
TALER_B2S (coin_pub),
|
2019-10-09 14:22:42 +02:00
|
|
|
GNUNET_h2s (&issue->denom_hash),
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount2s (amount_with_fee));
|
|
|
|
|
|
|
|
/* update coin's denomination balance */
|
|
|
|
ds = get_denomination_summary (cc,
|
2019-10-09 14:22:42 +02:00
|
|
|
issue,
|
|
|
|
&issue->denom_hash);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (NULL == ds)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&ds->denom_balance,
|
|
|
|
&ds->denom_balance,
|
|
|
|
&amount_without_fee))
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-03-18 17:47:44 +01:00
|
|
|
GNUNET_break (0);
|
2017-10-06 20:02:28 +02:00
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_SYSERR;
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
2017-03-20 03:06:23 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&ds->denom_risk,
|
|
|
|
&ds->denom_risk,
|
|
|
|
&amount_without_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-10-06 20:02:28 +02:00
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-20 03:06:23 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (GNUNET_OK !=
|
2017-11-06 00:03:08 +01:00
|
|
|
TALER_amount_add (&total_escrow_balance,
|
|
|
|
&total_escrow_balance,
|
2017-03-20 03:06:23 +01:00
|
|
|
&amount_without_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-10-06 20:02:28 +02:00
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-20 03:06:23 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (GNUNET_OK !=
|
2017-11-06 00:03:08 +01:00
|
|
|
TALER_amount_add (&total_risk,
|
|
|
|
&total_risk,
|
2017-03-20 03:06:23 +01:00
|
|
|
&amount_without_fee))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-10-06 20:02:28 +02:00
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-20 03:06:23 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"New balance of denomination `%s' after refund is %s\n",
|
2019-10-09 14:22:42 +02:00
|
|
|
GNUNET_h2s (&issue->denom_hash),
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_amount2s (&ds->denom_balance));
|
|
|
|
|
|
|
|
/* update total refund fee balance */
|
|
|
|
if (GNUNET_OK !=
|
2017-11-06 00:03:08 +01:00
|
|
|
TALER_amount_add (&total_refund_fee_income,
|
|
|
|
&total_refund_fee_income,
|
2017-03-20 02:29:33 +01:00
|
|
|
&refund_fee))
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_break (0);
|
2017-10-06 20:02:28 +02:00
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_SYSERR;
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
return GNUNET_OK;
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-25 19:26:25 +02:00
|
|
|
/**
|
|
|
|
* Check that the payback operation was properly initiated by a coin
|
|
|
|
* and update the denomination's losses accordingly.
|
|
|
|
*
|
|
|
|
* @param cls a `struct CoinContext *`
|
|
|
|
* @param rowid row identifier used to uniquely identify the payback operation
|
|
|
|
* @param amount how much should be added back to the reserve
|
|
|
|
* @param coin public information about the coin
|
2019-07-27 20:43:52 +02:00
|
|
|
* @param denom_pub public key of the denomionation of @a coin
|
2019-07-25 19:26:25 +02:00
|
|
|
* @param coin_sig signature with @e coin_pub of type #TALER_SIGNATURE_WALLET_COIN_PAYBACK
|
|
|
|
* @param coin_blind blinding factor used to blind the coin
|
|
|
|
* @return #GNUNET_OK to continue to iterate, #GNUNET_SYSERR to stop
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
check_payback (struct CoinContext *cc,
|
|
|
|
uint64_t rowid,
|
|
|
|
const struct TALER_Amount *amount,
|
|
|
|
const struct TALER_CoinPublicInfo *coin,
|
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
|
|
|
const struct TALER_CoinSpendSignatureP *coin_sig,
|
|
|
|
const struct TALER_DenominationBlindingKeyP *coin_blind)
|
|
|
|
{
|
|
|
|
struct TALER_PaybackRequestPS pr;
|
|
|
|
struct DenominationSummary *ds;
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2019-10-09 14:22:42 +02:00
|
|
|
const struct TALER_DenominationKeyValidityPS *issue;
|
2019-07-25 19:26:25 +02:00
|
|
|
|
2019-07-27 20:43:52 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_test_coin_valid (coin,
|
|
|
|
denom_pub))
|
|
|
|
{
|
|
|
|
report (report_bad_sig_losses,
|
|
|
|
json_pack ("{s:s, s:I, s:o, s:o}",
|
|
|
|
"operation", "payback",
|
|
|
|
"row", (json_int_t) rowid,
|
|
|
|
"loss", TALER_JSON_from_amount (amount),
|
2019-08-25 16:18:24 +02:00
|
|
|
"key_pub", GNUNET_JSON_from_data_auto (
|
|
|
|
&pr.h_denom_pub)));
|
2019-07-27 20:43:52 +02:00
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_bad_sig_loss,
|
|
|
|
&total_bad_sig_loss,
|
|
|
|
amount));
|
|
|
|
}
|
2019-07-25 19:26:25 +02:00
|
|
|
qs = get_denomination_info (denom_pub,
|
2019-10-09 14:22:42 +02:00
|
|
|
&issue,
|
2019-07-25 19:26:25 +02:00
|
|
|
&pr.h_denom_pub);
|
2019-12-24 16:04:30 +01:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
|
|
|
{
|
|
|
|
report_row_inconsistency ("payback",
|
|
|
|
rowid,
|
|
|
|
"denomination key not found (foreign key constraint violated)");
|
|
|
|
cc->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2019-07-25 19:26:25 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
|
|
|
{
|
|
|
|
/* The key not existing should be prevented by foreign key constraints,
|
|
|
|
so must be a transient DB error. */
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
cc->qs = qs;
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
pr.purpose.purpose = htonl (TALER_SIGNATURE_WALLET_COIN_PAYBACK);
|
|
|
|
pr.purpose.size = htonl (sizeof (pr));
|
|
|
|
pr.coin_pub = coin->coin_pub;
|
|
|
|
pr.coin_blind = *coin_blind;
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_PAYBACK,
|
|
|
|
&pr.purpose,
|
|
|
|
&coin_sig->eddsa_signature,
|
|
|
|
&coin->coin_pub.eddsa_pub))
|
|
|
|
{
|
|
|
|
report (report_bad_sig_losses,
|
|
|
|
json_pack ("{s:s, s:I, s:o, s:o}",
|
|
|
|
"operation", "payback",
|
|
|
|
"row", (json_int_t) rowid,
|
|
|
|
"loss", TALER_JSON_from_amount (amount),
|
2019-08-25 16:18:24 +02:00
|
|
|
"coin_pub", GNUNET_JSON_from_data_auto (
|
|
|
|
&coin->coin_pub)));
|
2019-07-25 19:26:25 +02:00
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_bad_sig_loss,
|
|
|
|
&total_bad_sig_loss,
|
|
|
|
amount));
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
ds = get_denomination_summary (cc,
|
2019-10-09 14:22:42 +02:00
|
|
|
issue,
|
|
|
|
&issue->denom_hash);
|
2019-07-27 20:06:55 +02:00
|
|
|
if (GNUNET_NO == ds->was_revoked)
|
|
|
|
{
|
|
|
|
/* Woopsie, we allowed payback on non-revoked denomination!? */
|
|
|
|
report (report_bad_sig_losses,
|
|
|
|
json_pack ("{s:s, s:I, s:o, s:o}",
|
|
|
|
"operation", "payback (denomination not revoked)",
|
|
|
|
"row", (json_int_t) rowid,
|
|
|
|
"loss", TALER_JSON_from_amount (amount),
|
2019-08-25 16:18:24 +02:00
|
|
|
"coin_pub", GNUNET_JSON_from_data_auto (
|
|
|
|
&coin->coin_pub)));
|
2019-07-27 20:06:55 +02:00
|
|
|
}
|
2019-07-25 19:26:25 +02:00
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&ds->denom_payback,
|
|
|
|
&ds->denom_payback,
|
|
|
|
amount));
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&total_payback_loss,
|
|
|
|
&total_payback_loss,
|
|
|
|
amount));
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-24 14:13:25 +02:00
|
|
|
/**
|
|
|
|
* Function called about paybacks the exchange has to perform.
|
|
|
|
*
|
2019-07-25 19:26:25 +02:00
|
|
|
* @param cls a `struct CoinContext *`
|
2019-07-24 14:13:25 +02:00
|
|
|
* @param rowid row identifier used to uniquely identify the payback operation
|
|
|
|
* @param timestamp when did we receive the payback request
|
|
|
|
* @param amount how much should be added back to the reserve
|
|
|
|
* @param reserve_pub public key of the reserve
|
|
|
|
* @param coin public information about the coin
|
|
|
|
* @param coin_sig signature with @e coin_pub of type #TALER_SIGNATURE_WALLET_COIN_PAYBACK
|
|
|
|
* @param coin_blind blinding factor used to blind the coin
|
|
|
|
* @return #GNUNET_OK to continue to iterate, #GNUNET_SYSERR to stop
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
payback_cb (void *cls,
|
|
|
|
uint64_t rowid,
|
|
|
|
struct GNUNET_TIME_Absolute timestamp,
|
|
|
|
const struct TALER_Amount *amount,
|
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub,
|
|
|
|
const struct TALER_CoinPublicInfo *coin,
|
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
|
|
|
const struct TALER_CoinSpendSignatureP *coin_sig,
|
2019-07-25 19:26:25 +02:00
|
|
|
const struct TALER_DenominationBlindingKeyP *coin_blind)
|
2019-07-24 14:13:25 +02:00
|
|
|
{
|
2019-07-25 19:26:25 +02:00
|
|
|
struct CoinContext *cc = cls;
|
|
|
|
|
|
|
|
return check_payback (cc,
|
|
|
|
rowid,
|
|
|
|
amount,
|
|
|
|
coin,
|
|
|
|
denom_pub,
|
|
|
|
coin_sig,
|
|
|
|
coin_blind);
|
2019-07-24 14:13:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function called about paybacks on refreshed coins the exchange has to
|
|
|
|
* perform.
|
|
|
|
*
|
2019-07-25 19:26:25 +02:00
|
|
|
* @param cls a `struct CoinContext *`
|
2019-07-24 14:13:25 +02:00
|
|
|
* @param rowid row identifier used to uniquely identify the payback operation
|
|
|
|
* @param timestamp when did we receive the payback request
|
|
|
|
* @param amount how much should be added back to the reserve
|
|
|
|
* @param old_coin_pub original coin that was refreshed to create @a coin
|
|
|
|
* @param coin public information about the coin
|
|
|
|
* @param coin_sig signature with @e coin_pub of type #TALER_SIGNATURE_WALLET_COIN_PAYBACK
|
|
|
|
* @param coin_blind blinding factor used to blind the coin
|
|
|
|
* @return #GNUNET_OK to continue to iterate, #GNUNET_SYSERR to stop
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
payback_refresh_cb (void *cls,
|
|
|
|
uint64_t rowid,
|
|
|
|
struct GNUNET_TIME_Absolute timestamp,
|
|
|
|
const struct TALER_Amount *amount,
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *old_coin_pub,
|
|
|
|
const struct TALER_CoinPublicInfo *coin,
|
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
|
|
|
const struct TALER_CoinSpendSignatureP *coin_sig,
|
|
|
|
const struct TALER_DenominationBlindingKeyP *coin_blind)
|
|
|
|
{
|
2019-07-25 19:26:25 +02:00
|
|
|
struct CoinContext *cc = cls;
|
|
|
|
|
|
|
|
return check_payback (cc,
|
|
|
|
rowid,
|
|
|
|
amount,
|
|
|
|
coin,
|
|
|
|
denom_pub,
|
|
|
|
coin_sig,
|
|
|
|
coin_blind);
|
2019-07-24 14:13:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-18 16:56:31 +01:00
|
|
|
/**
|
2017-03-20 02:29:33 +01:00
|
|
|
* Analyze the exchange's processing of coins.
|
2017-03-18 16:56:31 +01:00
|
|
|
*
|
2017-03-20 02:29:33 +01:00
|
|
|
* @param cls closure
|
2017-06-25 01:46:19 +02:00
|
|
|
* @return transaction status code
|
2017-03-18 16:56:31 +01:00
|
|
|
*/
|
2017-06-25 01:46:19 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-03-20 02:29:33 +01:00
|
|
|
analyze_coins (void *cls)
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-03-20 02:29:33 +01:00
|
|
|
struct CoinContext cc;
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
enum GNUNET_DB_QueryStatus qsx;
|
2018-10-27 21:27:23 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qsp;
|
2017-03-18 16:56:31 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Analyzing coins\n");
|
2018-10-27 21:27:23 +02:00
|
|
|
qsp = adb->get_auditor_progress_coin (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&ppc);
|
|
|
|
if (0 > qsp)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qsp);
|
|
|
|
return qsp;
|
|
|
|
}
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qsp)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE,
|
2019-08-25 16:18:24 +02:00
|
|
|
_ (
|
|
|
|
"First analysis using this auditor, starting audit from scratch\n"));
|
2018-10-27 21:27:23 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-12-03 12:39:32 +01:00
|
|
|
ppc_start = ppc;
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2019-08-25 16:18:24 +02:00
|
|
|
_ ("Resuming coin audit at %llu/%llu/%llu/%llu/%llu\n"),
|
2018-10-27 21:27:23 +02:00
|
|
|
(unsigned long long) ppc.last_deposit_serial_id,
|
|
|
|
(unsigned long long) ppc.last_melt_serial_id,
|
|
|
|
(unsigned long long) ppc.last_refund_serial_id,
|
2019-07-24 14:13:25 +02:00
|
|
|
(unsigned long long) ppc.last_withdraw_serial_id,
|
|
|
|
(unsigned long long) ppc.last_payback_refresh_serial_id);
|
2018-10-27 21:27:23 +02:00
|
|
|
}
|
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
/* setup 'cc' */
|
2017-06-25 01:46:19 +02:00
|
|
|
cc.qs = GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
2017-03-20 02:29:33 +01:00
|
|
|
cc.denom_summaries = GNUNET_CONTAINER_multihashmap_create (256,
|
2019-07-24 14:13:25 +02:00
|
|
|
GNUNET_NO);
|
2017-06-25 01:46:19 +02:00
|
|
|
qsx = adb->get_balance_summary (adb->cls,
|
2019-07-24 13:31:48 +02:00
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&total_escrow_balance,
|
|
|
|
&total_deposit_fee_income,
|
|
|
|
&total_melt_fee_income,
|
|
|
|
&total_refund_fee_income,
|
2019-07-25 19:26:25 +02:00
|
|
|
&total_risk,
|
2020-01-17 15:00:22 +01:00
|
|
|
&total_payback_loss,
|
|
|
|
&total_irregular_paybacks);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 > qsx)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qsx);
|
|
|
|
return qsx;
|
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
|
|
|
|
/* process withdrawals */
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 >
|
|
|
|
(qs = edb->select_reserves_out_above_serial_id (edb->cls,
|
2019-07-24 13:31:48 +02:00
|
|
|
esession,
|
2019-08-25 16:18:24 +02:00
|
|
|
ppc.
|
|
|
|
last_withdraw_serial_id,
|
2019-07-24 13:31:48 +02:00
|
|
|
&withdraw_cb,
|
|
|
|
&cc)) )
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
|
|
|
|
/* process refunds */
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 >
|
|
|
|
(qs = edb->select_refunds_above_serial_id (edb->cls,
|
2019-07-24 13:31:48 +02:00
|
|
|
esession,
|
|
|
|
ppc.last_refund_serial_id,
|
|
|
|
&refund_cb,
|
|
|
|
&cc)))
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
|
|
|
|
/* process refreshs */
|
2017-10-06 20:02:28 +02:00
|
|
|
if (0 >
|
2017-06-25 01:46:19 +02:00
|
|
|
(qs = edb->select_refreshs_above_serial_id (edb->cls,
|
2019-07-24 13:31:48 +02:00
|
|
|
esession,
|
|
|
|
ppc.last_melt_serial_id,
|
|
|
|
&refresh_session_cb,
|
|
|
|
&cc)))
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
2017-03-14 18:00:17 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
/* process deposits */
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 >
|
|
|
|
(qs = edb->select_deposits_above_serial_id (edb->cls,
|
2019-07-24 14:13:25 +02:00
|
|
|
esession,
|
|
|
|
ppc.last_deposit_serial_id,
|
|
|
|
&deposit_cb,
|
|
|
|
&cc)))
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* process paybacks */
|
|
|
|
if (0 >
|
|
|
|
(qs = edb->select_payback_above_serial_id (edb->cls,
|
|
|
|
esession,
|
|
|
|
ppc.last_payback_serial_id,
|
|
|
|
&payback_cb,
|
|
|
|
&cc)))
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
if (0 >
|
|
|
|
(qs = edb->select_payback_refresh_above_serial_id (edb->cls,
|
|
|
|
esession,
|
2019-08-25 16:18:24 +02:00
|
|
|
ppc.
|
|
|
|
last_payback_refresh_serial_id,
|
2019-07-24 14:13:25 +02:00
|
|
|
&payback_refresh_cb,
|
|
|
|
&cc)))
|
2017-03-18 16:56:31 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
|
|
|
|
/* sync 'cc' back to disk */
|
2017-06-25 01:46:19 +02:00
|
|
|
cc.qs = GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_CONTAINER_multihashmap_iterate (cc.denom_summaries,
|
|
|
|
&sync_denomination,
|
|
|
|
&cc);
|
|
|
|
GNUNET_CONTAINER_multihashmap_destroy (cc.denom_summaries);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 > cc.qs)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == cc.qs);
|
|
|
|
return cc.qs;
|
|
|
|
}
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qsx)
|
|
|
|
qs = adb->update_balance_summary (adb->cls,
|
2019-07-24 13:31:48 +02:00
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&total_escrow_balance,
|
|
|
|
&total_deposit_fee_income,
|
|
|
|
&total_melt_fee_income,
|
|
|
|
&total_refund_fee_income,
|
2019-07-25 19:26:25 +02:00
|
|
|
&total_risk,
|
2020-01-17 15:00:22 +01:00
|
|
|
&total_payback_loss,
|
|
|
|
&total_irregular_paybacks);
|
2017-03-20 02:29:33 +01:00
|
|
|
else
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = adb->insert_balance_summary (adb->cls,
|
2019-07-24 13:31:48 +02:00
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&total_escrow_balance,
|
|
|
|
&total_deposit_fee_income,
|
|
|
|
&total_melt_fee_income,
|
|
|
|
&total_refund_fee_income,
|
2019-07-25 19:26:25 +02:00
|
|
|
&total_risk,
|
2020-01-17 15:00:22 +01:00
|
|
|
&total_payback_loss,
|
|
|
|
&total_irregular_paybacks);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 >= qs)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2017-03-18 16:56:31 +01:00
|
|
|
}
|
2018-10-27 21:27:23 +02:00
|
|
|
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qsp)
|
|
|
|
qs = adb->update_auditor_progress_coin (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&ppc);
|
|
|
|
else
|
|
|
|
qs = adb->insert_auditor_progress_coin (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&ppc);
|
|
|
|
if (0 >= qs)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2019-08-25 16:18:24 +02:00
|
|
|
"Failed to update auditor DB, not recording progress\n");
|
2018-10-27 21:27:23 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2019-08-25 16:18:24 +02:00
|
|
|
_ ("Concluded coin audit step at %llu/%llu/%llu/%llu/%llu\n"),
|
2018-10-27 21:27:23 +02:00
|
|
|
(unsigned long long) ppc.last_deposit_serial_id,
|
|
|
|
(unsigned long long) ppc.last_melt_serial_id,
|
|
|
|
(unsigned long long) ppc.last_refund_serial_id,
|
2019-07-25 19:26:25 +02:00
|
|
|
(unsigned long long) ppc.last_withdraw_serial_id,
|
|
|
|
(unsigned long long) ppc.last_payback_refresh_serial_id);
|
2017-06-25 01:46:19 +02:00
|
|
|
return qs;
|
2016-11-17 14:31:44 +01:00
|
|
|
}
|
|
|
|
|
2016-10-06 15:17:10 +02:00
|
|
|
|
2018-11-04 17:36:56 +01:00
|
|
|
/* *************************** Analysis of deposit-confirmations ********** */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for #test_dc.
|
|
|
|
*/
|
|
|
|
struct DepositConfirmationContext
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* How many deposit confirmations did we NOT find in the #edb?
|
|
|
|
*/
|
|
|
|
unsigned long long missed_count;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* What is the total amount missing?
|
|
|
|
*/
|
|
|
|
struct TALER_Amount missed_amount;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lowest SerialID of the first coin we missed? (This is where we
|
|
|
|
* should resume next time).
|
|
|
|
*/
|
|
|
|
uint64_t first_missed_coin_serial;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lowest SerialID of the first coin we missed? (This is where we
|
|
|
|
* should resume next time).
|
|
|
|
*/
|
|
|
|
uint64_t last_seen_coin_serial;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Success or failure of (exchange) database operations within
|
|
|
|
* #test_dc.
|
|
|
|
*/
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a deposit confirmation from #adb, check that it is also
|
|
|
|
* in #edb. Update the deposit confirmation context accordingly.
|
|
|
|
*
|
|
|
|
* @param cls our `struct DepositConfirmationContext`
|
|
|
|
* @param serial_id row of the @a dc in the database
|
|
|
|
* @param dc the deposit confirmation we know
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
test_dc (void *cls,
|
|
|
|
uint64_t serial_id,
|
|
|
|
const struct TALER_AUDITORDB_DepositConfirmation *dc)
|
|
|
|
{
|
|
|
|
struct DepositConfirmationContext *dcc = cls;
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
struct TALER_EXCHANGEDB_Deposit dep;
|
|
|
|
|
|
|
|
dcc->last_seen_coin_serial = serial_id;
|
|
|
|
memset (&dep,
|
|
|
|
0,
|
|
|
|
sizeof (dep));
|
|
|
|
dep.coin.coin_pub = dc->coin_pub;
|
|
|
|
dep.h_contract_terms = dc->h_contract_terms;
|
|
|
|
dep.merchant_pub = dc->merchant;
|
|
|
|
dep.h_wire = dc->h_wire;
|
|
|
|
dep.refund_deadline = dc->refund_deadline;
|
|
|
|
|
|
|
|
qs = edb->have_deposit (edb->cls,
|
|
|
|
esession,
|
|
|
|
&dep,
|
|
|
|
GNUNET_NO /* do not check refund deadline */);
|
|
|
|
if (qs > 0)
|
2019-10-29 11:31:56 +01:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Found deposit %s in exchange database\n",
|
|
|
|
GNUNET_h2s (&dc->h_contract_terms));
|
|
|
|
return; /* found, all good */
|
|
|
|
}
|
2018-11-04 17:36:56 +01:00
|
|
|
if (qs < 0)
|
|
|
|
{
|
|
|
|
GNUNET_break (0); /* DB error, complain */
|
|
|
|
dcc->qs = qs;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* deposit confirmation missing! report! */
|
|
|
|
report (report_deposit_confirmation_inconsistencies,
|
2019-09-02 08:01:55 +02:00
|
|
|
json_pack ("{s:o, s:o, s:I, s:o}",
|
2018-11-04 17:36:56 +01:00
|
|
|
"timestamp",
|
2019-09-02 08:01:55 +02:00
|
|
|
json_from_time_abs (dc->timestamp),
|
2018-11-04 17:36:56 +01:00
|
|
|
"amount",
|
|
|
|
TALER_JSON_from_amount (&dc->amount_without_fee),
|
|
|
|
"rowid",
|
|
|
|
(json_int_t) serial_id,
|
|
|
|
"account",
|
|
|
|
GNUNET_JSON_from_data_auto (&dc->h_wire)));
|
|
|
|
dcc->first_missed_coin_serial = GNUNET_MIN (dcc->first_missed_coin_serial,
|
|
|
|
serial_id);
|
|
|
|
dcc->missed_count++;
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_add (&dcc->missed_amount,
|
|
|
|
&dcc->missed_amount,
|
|
|
|
&dc->amount_without_fee));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check that the deposit-confirmations that were reported to
|
|
|
|
* us by merchants are also in the exchange's database.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
|
|
|
analyze_deposit_confirmations (void *cls)
|
|
|
|
{
|
|
|
|
struct TALER_AUDITORDB_ProgressPointDepositConfirmation ppdc;
|
|
|
|
struct DepositConfirmationContext dcc;
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
enum GNUNET_DB_QueryStatus qsx;
|
|
|
|
enum GNUNET_DB_QueryStatus qsp;
|
|
|
|
|
2019-10-29 11:31:56 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2018-11-04 17:36:56 +01:00
|
|
|
"Analyzing deposit confirmations\n");
|
|
|
|
ppdc.last_deposit_confirmation_serial_id = 0;
|
|
|
|
qsp = adb->get_auditor_progress_deposit_confirmation (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&ppdc);
|
|
|
|
if (0 > qsp)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qsp);
|
|
|
|
return qsp;
|
|
|
|
}
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qsp)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE,
|
2019-08-25 16:18:24 +02:00
|
|
|
_ (
|
|
|
|
"First analysis using this auditor, starting audit from scratch\n"));
|
2018-11-04 17:36:56 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2019-08-25 16:18:24 +02:00
|
|
|
_ ("Resuming deposit confirmation audit at %llu\n"),
|
2018-11-04 17:36:56 +01:00
|
|
|
(unsigned long long) ppdc.last_deposit_confirmation_serial_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* setup 'cc' */
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&dcc.missed_amount));
|
|
|
|
dcc.qs = GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
|
|
|
dcc.missed_count = 0LLU;
|
|
|
|
dcc.first_missed_coin_serial = UINT64_MAX;
|
|
|
|
qsx = adb->get_deposit_confirmations (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
ppdc.last_deposit_confirmation_serial_id,
|
|
|
|
&test_dc,
|
|
|
|
&dcc);
|
|
|
|
if (0 > qsx)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qsx);
|
|
|
|
return qsx;
|
|
|
|
}
|
2019-10-29 11:31:56 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Analyzed %d deposit confirmations (above serial ID %llu)\n",
|
|
|
|
(int) qsx,
|
|
|
|
(unsigned long long) ppdc.last_deposit_confirmation_serial_id);
|
2018-11-04 17:36:56 +01:00
|
|
|
if (0 > dcc.qs)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == dcc.qs);
|
|
|
|
return dcc.qs;
|
|
|
|
}
|
|
|
|
if (UINT64_MAX == dcc.first_missed_coin_serial)
|
|
|
|
ppdc.last_deposit_confirmation_serial_id = dcc.last_seen_coin_serial;
|
|
|
|
else
|
|
|
|
ppdc.last_deposit_confirmation_serial_id = dcc.first_missed_coin_serial - 1;
|
|
|
|
|
|
|
|
/* sync 'cc' back to disk */
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qsp)
|
|
|
|
qs = adb->update_auditor_progress_deposit_confirmation (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&ppdc);
|
|
|
|
else
|
|
|
|
qs = adb->insert_auditor_progress_deposit_confirmation (adb->cls,
|
|
|
|
asession,
|
|
|
|
&master_pub,
|
|
|
|
&ppdc);
|
|
|
|
if (0 >= qs)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2019-08-25 16:18:24 +02:00
|
|
|
"Failed to update auditor DB, not recording progress\n");
|
2018-11-04 17:36:56 +01:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
number_missed_deposit_confirmations = (json_int_t) dcc.missed_count;
|
|
|
|
total_missed_deposit_confirmations = dcc.missed_amount;
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2019-08-25 16:18:24 +02:00
|
|
|
_ ("Concluded deposit confirmation audit step at %llu\n"),
|
2018-11-04 17:36:56 +01:00
|
|
|
(unsigned long long) ppdc.last_deposit_confirmation_serial_id);
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-14 15:13:50 +01:00
|
|
|
/* *************************** General transaction logic ****************** */
|
|
|
|
|
2017-03-14 12:22:03 +01:00
|
|
|
/**
|
2017-03-14 15:13:50 +01:00
|
|
|
* Type of an analysis function. Each analysis function runs in
|
|
|
|
* its own transaction scope and must thus be internally consistent.
|
2017-03-14 12:22:03 +01:00
|
|
|
*
|
|
|
|
* @param cls closure
|
2017-06-25 01:46:19 +02:00
|
|
|
* @return transaction status code
|
2017-03-14 12:22:03 +01:00
|
|
|
*/
|
2017-06-25 01:46:19 +02:00
|
|
|
typedef enum GNUNET_DB_QueryStatus
|
2017-03-14 12:22:03 +01:00
|
|
|
(*Analysis)(void *cls);
|
|
|
|
|
|
|
|
|
2017-03-14 15:13:50 +01:00
|
|
|
/**
|
|
|
|
* Perform the given @a analysis within a transaction scope.
|
|
|
|
* Commit on success.
|
|
|
|
*
|
|
|
|
* @param analysis analysis to run
|
|
|
|
* @param analysis_cls closure for @a analysis
|
|
|
|
* @return #GNUNET_OK if @a analysis succeessfully committed,
|
|
|
|
* #GNUNET_NO if we had an error on commit (retry may help)
|
|
|
|
* #GNUNET_SYSERR on hard errors
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
transact (Analysis analysis,
|
|
|
|
void *analysis_cls)
|
|
|
|
{
|
|
|
|
int ret;
|
2017-06-25 01:46:19 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-03-14 12:22:03 +01:00
|
|
|
|
2017-03-14 15:13:50 +01:00
|
|
|
ret = adb->start (adb->cls,
|
|
|
|
asession);
|
|
|
|
if (GNUNET_OK != ret)
|
2017-03-17 18:46:11 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2018-03-12 11:33:10 +01:00
|
|
|
edb->preflight (edb->cls,
|
|
|
|
esession);
|
2017-03-14 15:13:50 +01:00
|
|
|
ret = edb->start (edb->cls,
|
2018-03-12 11:33:10 +01:00
|
|
|
esession,
|
|
|
|
"auditor");
|
2017-03-14 15:13:50 +01:00
|
|
|
if (GNUNET_OK != ret)
|
2017-03-17 18:46:11 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2018-10-27 21:27:23 +02:00
|
|
|
qs = analysis (analysis_cls);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qs)
|
2017-03-17 18:46:11 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = edb->commit (edb->cls,
|
2018-03-12 11:33:10 +01:00
|
|
|
esession);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 > qs)
|
2017-03-14 15:13:50 +01:00
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2017-03-17 18:46:11 +01:00
|
|
|
"Exchange DB commit failed, rolling back transaction\n");
|
2017-03-14 15:13:50 +01:00
|
|
|
adb->rollback (adb->cls,
|
|
|
|
asession);
|
|
|
|
}
|
2017-03-17 18:46:11 +01:00
|
|
|
else
|
|
|
|
{
|
2017-06-25 01:46:19 +02:00
|
|
|
qs = adb->commit (adb->cls,
|
2019-08-25 16:18:24 +02:00
|
|
|
asession);
|
2017-06-25 01:46:19 +02:00
|
|
|
if (0 > qs)
|
2017-03-17 18:46:11 +01:00
|
|
|
{
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
2017-06-25 01:46:19 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2017-03-17 18:46:11 +01:00
|
|
|
"Auditor DB commit failed!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Processing failed, rolling back transaction\n");
|
|
|
|
adb->rollback (adb->cls,
|
|
|
|
asession);
|
|
|
|
edb->rollback (edb->cls,
|
|
|
|
esession);
|
|
|
|
}
|
2017-03-14 15:13:50 +01:00
|
|
|
clear_transaction_state_cache ();
|
2017-06-25 01:46:19 +02:00
|
|
|
return qs;
|
2017-03-14 12:22:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize DB sessions and run the analysis.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
setup_sessions_and_run ()
|
|
|
|
{
|
|
|
|
esession = edb->get_session (edb->cls);
|
|
|
|
if (NULL == esession)
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to initialize exchange session.\n");
|
|
|
|
global_ret = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
asession = adb->get_session (adb->cls);
|
|
|
|
if (NULL == asession)
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to initialize auditor session.\n");
|
|
|
|
global_ret = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
transact (&analyze_reserves,
|
|
|
|
NULL);
|
2017-03-19 01:09:00 +01:00
|
|
|
transact (&analyze_aggregations,
|
2017-03-14 18:00:17 +01:00
|
|
|
NULL);
|
2017-03-20 02:29:33 +01:00
|
|
|
transact (&analyze_coins,
|
|
|
|
NULL);
|
2018-11-04 17:36:56 +01:00
|
|
|
transact (&analyze_deposit_confirmations,
|
|
|
|
NULL);
|
2017-03-14 12:22:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-01-08 19:10:38 +01:00
|
|
|
/**
|
|
|
|
* Test if the given @a mpub matches the #master_pub.
|
|
|
|
* If so, set "found" to GNUNET_YES.
|
|
|
|
*
|
|
|
|
* @param cls a `int *` pointing to "found"
|
|
|
|
* @param mpub exchange master public key to compare
|
|
|
|
* @param exchange_url URL of the exchange (ignored)
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
test_master_present (void *cls,
|
2019-07-27 20:43:52 +02:00
|
|
|
const struct TALER_MasterPublicKeyP *mpub,
|
|
|
|
const char *exchange_url)
|
2019-01-08 19:10:38 +01:00
|
|
|
{
|
|
|
|
int *found = cls;
|
2019-02-14 14:23:16 +01:00
|
|
|
|
2019-01-08 19:10:38 +01:00
|
|
|
(void) exchange_url;
|
2019-04-08 15:24:51 +02:00
|
|
|
if (0 == GNUNET_memcmp (mpub,
|
|
|
|
&master_pub))
|
2019-01-08 19:10:38 +01:00
|
|
|
*found = GNUNET_YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-06 15:17:10 +02:00
|
|
|
/**
|
|
|
|
* Main function that will be run.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param args remaining command-line arguments
|
|
|
|
* @param cfgfile name of the configuration file used (for saving, can be NULL!)
|
2017-03-18 16:56:31 +01:00
|
|
|
* @param c configuration
|
2016-10-06 15:17:10 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
run (void *cls,
|
|
|
|
char *const *args,
|
|
|
|
const char *cfgfile,
|
2017-03-18 16:56:31 +01:00
|
|
|
const struct GNUNET_CONFIGURATION_Handle *c)
|
2016-10-06 15:17:10 +02:00
|
|
|
{
|
2017-11-12 14:11:05 +01:00
|
|
|
static const struct TALER_MasterPublicKeyP zeromp;
|
2017-11-06 00:03:08 +01:00
|
|
|
struct TALER_Amount income_fee_total;
|
2017-10-16 11:49:32 +02:00
|
|
|
json_t *report;
|
2019-01-08 19:10:38 +01:00
|
|
|
struct TALER_AUDITORDB_Session *as;
|
|
|
|
int found;
|
2017-11-06 00:03:08 +01:00
|
|
|
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Launching auditor\n");
|
2017-03-18 16:56:31 +01:00
|
|
|
cfg = c;
|
2019-12-03 12:39:32 +01:00
|
|
|
start_time = GNUNET_TIME_absolute_get ();
|
2019-04-08 15:24:51 +02:00
|
|
|
if (0 == GNUNET_memcmp (&zeromp,
|
|
|
|
&master_pub))
|
2017-11-12 14:11:05 +01:00
|
|
|
{
|
|
|
|
/* -m option not given, try configuration */
|
|
|
|
char *master_public_key_str;
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"exchange",
|
|
|
|
"MASTER_PUBLIC_KEY",
|
|
|
|
&master_public_key_str))
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Pass option -m or set it in the configuration!\n");
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"exchange",
|
|
|
|
"MASTER_PUBLIC_KEY");
|
|
|
|
global_ret = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CRYPTO_eddsa_public_key_from_string (master_public_key_str,
|
2019-08-25 16:18:24 +02:00
|
|
|
strlen (
|
|
|
|
master_public_key_str),
|
2017-11-12 14:11:05 +01:00
|
|
|
&master_pub.eddsa_pub))
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Invalid master public key given in configuration file.");
|
|
|
|
GNUNET_free (master_public_key_str);
|
|
|
|
global_ret = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
GNUNET_free (master_public_key_str);
|
|
|
|
} /* end of -m not given */
|
|
|
|
|
2019-12-24 20:21:54 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Taler auditor running for exchange master public key %s\n",
|
|
|
|
TALER_B2S (&master_pub));
|
|
|
|
|
2017-03-17 13:56:47 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"taler",
|
|
|
|
"CURRENCY",
|
|
|
|
¤cy))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"taler",
|
|
|
|
"CURRENCY");
|
|
|
|
global_ret = 1;
|
|
|
|
return;
|
|
|
|
}
|
2020-01-15 15:17:02 +01:00
|
|
|
{
|
2020-01-17 18:59:15 +01:00
|
|
|
char *rounding_str;
|
2020-01-15 15:17:02 +01:00
|
|
|
if (GNUNET_OK !=
|
2020-01-17 18:59:15 +01:00
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
2020-01-15 15:17:02 +01:00
|
|
|
"taler",
|
2020-01-17 18:59:15 +01:00
|
|
|
"CURRENCY_ROUND_UNIT",
|
|
|
|
&rounding_str))
|
2020-01-15 15:17:02 +01:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
2020-01-17 18:59:15 +01:00
|
|
|
"No [taler]/CURRENCY_ROUND_UNIT specified, defaulting to '0.01'.\n");
|
|
|
|
TALER_amount_get_zero (currency, ¤cy_round_unit);
|
|
|
|
currency_round_unit.fraction = TALER_AMOUNT_FRAC_BASE / 100;
|
2020-01-15 15:17:02 +01:00
|
|
|
}
|
2020-01-17 18:59:15 +01:00
|
|
|
else if (GNUNET_OK !=
|
|
|
|
TALER_string_to_amount (rounding_str,
|
|
|
|
¤cy_round_unit))
|
2020-01-15 15:17:02 +01:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2020-01-17 18:59:15 +01:00
|
|
|
"Invalid amount `%s' specified in `TALER' under `CURRENCY_ROUND_UNIT'\n",
|
|
|
|
rounding_str);
|
|
|
|
GNUNET_free (rounding_str);
|
|
|
|
global_ret = 1;
|
2020-01-15 15:17:02 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-04-20 21:38:02 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_time (cfg,
|
2019-08-25 16:18:24 +02:00
|
|
|
"exchangedb",
|
|
|
|
"IDLE_RESERVE_EXPIRATION_TIME",
|
|
|
|
&idle_reserve_expiration_time))
|
2017-04-20 21:38:02 +02:00
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"exchangedb",
|
|
|
|
"IDLE_RESERVE_EXPIRATION_TIME");
|
|
|
|
global_ret = 1;
|
|
|
|
return;
|
|
|
|
}
|
2016-10-06 15:17:10 +02:00
|
|
|
if (NULL ==
|
|
|
|
(edb = TALER_EXCHANGEDB_plugin_load (cfg)))
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to initialize exchange database plugin.\n");
|
|
|
|
global_ret = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (NULL ==
|
|
|
|
(adb = TALER_AUDITORDB_plugin_load (cfg)))
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to initialize auditor database plugin.\n");
|
|
|
|
global_ret = 1;
|
|
|
|
TALER_EXCHANGEDB_plugin_unload (edb);
|
|
|
|
return;
|
2019-01-08 19:10:38 +01:00
|
|
|
}
|
|
|
|
found = GNUNET_NO;
|
|
|
|
as = adb->get_session (adb->cls);
|
|
|
|
if (NULL == as)
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to start session with auditor database.\n");
|
|
|
|
global_ret = 1;
|
|
|
|
TALER_AUDITORDB_plugin_unload (adb);
|
|
|
|
TALER_EXCHANGEDB_plugin_unload (edb);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
(void) adb->list_exchanges (adb->cls,
|
2019-08-22 15:30:02 +02:00
|
|
|
as,
|
|
|
|
&test_master_present,
|
|
|
|
&found);
|
2019-01-08 19:10:38 +01:00
|
|
|
if (GNUNET_NO == found)
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Exchange's master public key `%s' not known to auditor DB. Did you forget to run `taler-auditor-exchange`?\n",
|
2019-08-22 15:30:02 +02:00
|
|
|
GNUNET_p2s (&master_pub.eddsa_pub));
|
2019-01-08 19:10:38 +01:00
|
|
|
global_ret = 1;
|
|
|
|
TALER_AUDITORDB_plugin_unload (adb);
|
|
|
|
TALER_EXCHANGEDB_plugin_unload (edb);
|
|
|
|
return;
|
2016-10-06 15:17:10 +02:00
|
|
|
}
|
2017-03-20 02:29:33 +01:00
|
|
|
if (restart)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"Full audit restart requested, dropping old audit data.\n");
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
2019-02-14 14:23:16 +01:00
|
|
|
adb->drop_tables (adb->cls,
|
|
|
|
GNUNET_NO));
|
2017-03-20 02:29:33 +01:00
|
|
|
TALER_AUDITORDB_plugin_unload (adb);
|
|
|
|
if (NULL ==
|
|
|
|
(adb = TALER_AUDITORDB_plugin_load (cfg)))
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to initialize auditor database plugin after drop.\n");
|
|
|
|
global_ret = 1;
|
|
|
|
TALER_EXCHANGEDB_plugin_unload (edb);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
adb->create_tables (adb->cls));
|
|
|
|
}
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Starting audit\n");
|
2017-11-06 00:03:08 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
2019-09-28 20:53:44 +02:00
|
|
|
&reported_emergency_loss));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&reported_emergency_risk_by_amount));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&reported_emergency_risk_by_count));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&reported_emergency_loss_by_count));
|
2017-11-06 00:03:08 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_escrow_balance));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_risk));
|
2019-07-25 19:26:25 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_payback_loss));
|
2020-01-17 15:00:22 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_irregular_paybacks));
|
2017-11-06 00:03:08 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_withdraw_fee_income));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_deposit_fee_income));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_melt_fee_income));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_refund_fee_income));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_aggregation_fee_income));
|
2017-11-06 14:54:52 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_balance_insufficient_loss));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_balance_summary_delta_plus));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_balance_summary_delta_minus));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_wire_out_delta_plus));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_wire_out_delta_minus));
|
2017-11-06 19:11:43 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_arithmetic_delta_plus));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_arithmetic_delta_minus));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_coin_delta_plus));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_coin_delta_minus));
|
2017-11-06 14:54:52 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_balance_reserve_not_closed));
|
2017-11-06 19:11:43 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_bad_sig_loss));
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&total_refresh_hanging));
|
2017-10-16 11:49:32 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2019-08-25 16:18:24 +02:00
|
|
|
(report_emergencies = json_array ()));
|
2019-09-02 08:01:55 +02:00
|
|
|
GNUNET_assert (NULL !=
|
|
|
|
(report_emergencies_by_count = json_array ()));
|
2017-10-16 11:49:32 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2019-08-25 16:18:24 +02:00
|
|
|
(report_row_inconsistencies = json_array ()));
|
2017-10-16 11:49:32 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2019-08-25 16:18:24 +02:00
|
|
|
(denomination_key_validity_withdraw_inconsistencies =
|
|
|
|
json_array ()));
|
2017-11-06 14:54:52 +01:00
|
|
|
GNUNET_assert (NULL !=
|
2019-08-25 16:18:24 +02:00
|
|
|
(report_reserve_balance_summary_wrong_inconsistencies =
|
|
|
|
json_array ()));
|
2017-10-16 11:49:32 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2019-08-25 16:18:24 +02:00
|
|
|
(report_reserve_balance_insufficient_inconsistencies =
|
|
|
|
json_array ()));
|
2017-11-06 14:54:52 +01:00
|
|
|
GNUNET_assert (NULL !=
|
2019-08-25 16:18:24 +02:00
|
|
|
(report_reserve_not_closed_inconsistencies = json_array ()));
|
2017-10-16 11:49:32 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2019-08-25 16:18:24 +02:00
|
|
|
(report_wire_out_inconsistencies = json_array ()));
|
2018-11-04 17:36:56 +01:00
|
|
|
GNUNET_assert (NULL !=
|
2019-08-25 16:18:24 +02:00
|
|
|
(report_deposit_confirmation_inconsistencies = json_array ()));
|
2017-10-16 11:49:32 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2019-08-25 16:18:24 +02:00
|
|
|
(report_coin_inconsistencies = json_array ()));
|
2017-10-16 11:49:32 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2019-08-25 16:18:24 +02:00
|
|
|
(report_aggregation_fee_balances = json_array ()));
|
2017-11-06 19:11:43 +01:00
|
|
|
GNUNET_assert (NULL !=
|
2019-08-25 16:18:24 +02:00
|
|
|
(report_amount_arithmetic_inconsistencies = json_array ()));
|
2017-11-06 19:11:43 +01:00
|
|
|
GNUNET_assert (NULL !=
|
2019-08-25 16:18:24 +02:00
|
|
|
(report_bad_sig_losses = json_array ()));
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_assert (NULL !=
|
2019-08-25 16:18:24 +02:00
|
|
|
(report_refreshs_hanging = json_array ()));
|
2017-11-20 14:20:09 +01:00
|
|
|
GNUNET_assert (NULL !=
|
2019-08-25 16:18:24 +02:00
|
|
|
(report_fee_time_inconsistencies = json_array ()));
|
2017-03-14 12:22:03 +01:00
|
|
|
setup_sessions_and_run ();
|
2017-03-20 02:29:33 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Audit complete\n");
|
2016-10-06 15:17:10 +02:00
|
|
|
TALER_AUDITORDB_plugin_unload (adb);
|
|
|
|
TALER_EXCHANGEDB_plugin_unload (edb);
|
2017-11-06 00:03:08 +01:00
|
|
|
|
|
|
|
GNUNET_assert (TALER_amount_add (&income_fee_total,
|
|
|
|
&total_withdraw_fee_income,
|
|
|
|
&total_deposit_fee_income));
|
|
|
|
GNUNET_assert (TALER_amount_add (&income_fee_total,
|
|
|
|
&income_fee_total,
|
|
|
|
&total_melt_fee_income));
|
|
|
|
GNUNET_assert (TALER_amount_add (&income_fee_total,
|
|
|
|
&income_fee_total,
|
|
|
|
&total_refund_fee_income));
|
|
|
|
GNUNET_assert (TALER_amount_add (&income_fee_total,
|
|
|
|
&income_fee_total,
|
|
|
|
&total_aggregation_fee_income));
|
|
|
|
report = json_pack ("{s:o, s:o, s:o, s:o, s:o,"
|
2017-11-06 14:54:52 +01:00
|
|
|
" s:o, s:o, s:o, s:o, s:o,"
|
|
|
|
" s:o, s:o, s:o, s:o, s:o,"
|
|
|
|
" s:o, s:o, s:o, s:o, s:o,"
|
2017-11-06 19:11:43 +01:00
|
|
|
" s:o, s:o, s:o, s:o, s:o,"
|
2017-11-20 14:20:09 +01:00
|
|
|
" s:o, s:o, s:o, s:o, s:o,"
|
2018-11-04 17:36:56 +01:00
|
|
|
" s:o, s:o, s:o, s:o, s:I,"
|
2019-09-28 20:53:44 +02:00
|
|
|
" s:o, s:o, s:o, s:o, s:o,"
|
2019-12-03 12:39:32 +01:00
|
|
|
" s:o, s:I, s:I, s:I, s:I,"
|
|
|
|
" s:I, s:I, s:I, s:I, s:I,"
|
|
|
|
" s:I, s:I, s:I, s:I, s:I,"
|
|
|
|
" s:I, s:I, s:I, s:I, s:I,"
|
|
|
|
" s:I, s:I, s:I, s:o, s:o }",
|
2017-11-06 00:03:08 +01:00
|
|
|
/* blocks of 5 for easier counting/matching to format string */
|
|
|
|
/* block */
|
2019-07-24 13:31:48 +02:00
|
|
|
"reserve_balance_insufficient_inconsistencies",
|
2017-11-06 14:54:52 +01:00
|
|
|
report_reserve_balance_insufficient_inconsistencies,
|
2019-09-04 04:06:16 +02:00
|
|
|
/* Tested in test-auditor.sh #3 */
|
2017-11-06 14:54:52 +01:00
|
|
|
"total_loss_balance_insufficient",
|
|
|
|
TALER_JSON_from_amount (&total_balance_insufficient_loss),
|
2019-09-04 04:06:16 +02:00
|
|
|
/* Tested in test-auditor.sh #3 */
|
2019-07-24 13:31:48 +02:00
|
|
|
"reserve_balance_summary_wrong_inconsistencies",
|
2017-11-06 14:54:52 +01:00
|
|
|
report_reserve_balance_summary_wrong_inconsistencies,
|
|
|
|
"total_balance_summary_delta_plus",
|
2019-08-25 16:18:24 +02:00
|
|
|
TALER_JSON_from_amount (
|
|
|
|
&total_balance_summary_delta_plus),
|
2017-11-06 14:54:52 +01:00
|
|
|
"total_balance_summary_delta_minus",
|
2019-08-25 16:18:24 +02:00
|
|
|
TALER_JSON_from_amount (
|
|
|
|
&total_balance_summary_delta_minus),
|
2017-11-06 14:54:52 +01:00
|
|
|
/* block */
|
|
|
|
"total_escrow_balance",
|
|
|
|
TALER_JSON_from_amount (&total_escrow_balance),
|
|
|
|
"total_active_risk",
|
|
|
|
TALER_JSON_from_amount (&total_risk),
|
|
|
|
"total_withdraw_fee_income",
|
|
|
|
TALER_JSON_from_amount (&total_withdraw_fee_income),
|
|
|
|
"total_deposit_fee_income",
|
|
|
|
TALER_JSON_from_amount (&total_deposit_fee_income),
|
|
|
|
"total_melt_fee_income",
|
|
|
|
TALER_JSON_from_amount (&total_melt_fee_income),
|
2017-11-08 19:07:21 +01:00
|
|
|
/* block */
|
2017-11-06 14:54:52 +01:00
|
|
|
"total_refund_fee_income",
|
|
|
|
TALER_JSON_from_amount (&total_refund_fee_income),
|
|
|
|
"income_fee_total",
|
|
|
|
TALER_JSON_from_amount (&income_fee_total),
|
2019-10-06 12:46:57 +02:00
|
|
|
/* Tested in test-auditor.sh #18 */
|
2019-07-24 13:31:48 +02:00
|
|
|
"emergencies",
|
2017-11-06 14:54:52 +01:00
|
|
|
report_emergencies,
|
2019-10-06 12:46:57 +02:00
|
|
|
/* Tested in test-auditor.sh #18 */
|
2019-09-28 20:53:44 +02:00
|
|
|
"emergencies_risk_by_amount",
|
|
|
|
TALER_JSON_from_amount (
|
|
|
|
&reported_emergency_risk_by_amount),
|
2019-10-06 12:46:57 +02:00
|
|
|
/* Tested in test-auditor.sh #21 */
|
2019-07-24 13:31:48 +02:00
|
|
|
"reserve_not_closed_inconsistencies",
|
2017-11-06 14:54:52 +01:00
|
|
|
report_reserve_not_closed_inconsistencies,
|
2017-11-08 19:07:21 +01:00
|
|
|
/* block */
|
2019-10-06 12:46:57 +02:00
|
|
|
/* Tested in test-auditor.sh #21 */
|
2017-11-06 14:54:52 +01:00
|
|
|
"total_balance_reserve_not_closed",
|
2019-08-25 16:18:24 +02:00
|
|
|
TALER_JSON_from_amount (
|
|
|
|
&total_balance_reserve_not_closed),
|
2019-07-25 19:26:25 +02:00
|
|
|
"wire_out_inconsistencies",
|
2017-11-06 14:54:52 +01:00
|
|
|
report_wire_out_inconsistencies,
|
|
|
|
"total_wire_out_delta_plus",
|
|
|
|
TALER_JSON_from_amount (&total_wire_out_delta_plus),
|
|
|
|
"total_wire_out_delta_minus",
|
|
|
|
TALER_JSON_from_amount (&total_wire_out_delta_minus),
|
2019-09-05 06:30:36 +02:00
|
|
|
/* Tested in test-auditor.sh #4/#5/#6/#7/#13 */
|
2017-11-06 19:11:43 +01:00
|
|
|
"bad_sig_losses",
|
|
|
|
report_bad_sig_losses,
|
2017-11-08 19:07:21 +01:00
|
|
|
/* block */
|
2019-09-05 06:30:36 +02:00
|
|
|
/* Tested in test-auditor.sh #4/#5/#6/#7/#13 */
|
2017-11-06 19:11:43 +01:00
|
|
|
"total_bad_sig_loss",
|
|
|
|
TALER_JSON_from_amount (&total_bad_sig_loss),
|
2019-09-05 10:03:56 +02:00
|
|
|
/* Tested in test-auditor.sh #14/#15 */
|
2019-07-24 13:31:48 +02:00
|
|
|
"row_inconsistencies",
|
2017-11-06 14:54:52 +01:00
|
|
|
report_row_inconsistencies,
|
2019-10-09 14:23:37 +02:00
|
|
|
/* Tested in test-auditor.sh #23 */
|
2019-07-24 13:31:48 +02:00
|
|
|
"denomination_key_validity_withdraw_inconsistencies",
|
2017-11-06 14:54:52 +01:00
|
|
|
denomination_key_validity_withdraw_inconsistencies,
|
2019-07-24 13:31:48 +02:00
|
|
|
"coin_inconsistencies",
|
2017-11-06 14:54:52 +01:00
|
|
|
report_coin_inconsistencies,
|
2017-11-06 19:11:43 +01:00
|
|
|
"total_coin_delta_plus",
|
|
|
|
TALER_JSON_from_amount (&total_coin_delta_plus),
|
2017-11-08 19:07:21 +01:00
|
|
|
/* block */
|
2017-11-06 19:11:43 +01:00
|
|
|
"total_coin_delta_minus",
|
|
|
|
TALER_JSON_from_amount (&total_coin_delta_minus),
|
|
|
|
"amount_arithmetic_inconsistencies",
|
|
|
|
report_amount_arithmetic_inconsistencies,
|
|
|
|
"total_arithmetic_delta_plus",
|
|
|
|
TALER_JSON_from_amount (&total_arithmetic_delta_plus),
|
|
|
|
"total_arithmetic_delta_minus",
|
|
|
|
TALER_JSON_from_amount (&total_arithmetic_delta_minus),
|
2019-07-24 13:31:48 +02:00
|
|
|
"total_aggregation_fee_income",
|
2017-11-20 14:20:09 +01:00
|
|
|
TALER_JSON_from_amount (&total_aggregation_fee_income),
|
2017-11-08 19:07:21 +01:00
|
|
|
/* block */
|
2017-11-20 14:20:09 +01:00
|
|
|
"wire_fee_time_inconsistencies",
|
2017-11-27 23:42:17 +01:00
|
|
|
report_fee_time_inconsistencies,
|
2019-09-05 06:30:36 +02:00
|
|
|
/* Tested in test-auditor.sh #12 */
|
2017-11-27 23:42:17 +01:00
|
|
|
"total_refresh_hanging",
|
|
|
|
TALER_JSON_from_amount (&total_refresh_hanging),
|
2019-09-05 06:30:36 +02:00
|
|
|
/* Tested in test-auditor.sh #12 */
|
2017-11-27 23:42:17 +01:00
|
|
|
"refresh_hanging",
|
2018-11-04 17:36:56 +01:00
|
|
|
report_refreshs_hanging,
|
|
|
|
"deposit_confirmation_inconsistencies",
|
|
|
|
report_deposit_confirmation_inconsistencies,
|
|
|
|
"missing_deposit_confirmation_count",
|
|
|
|
(json_int_t) number_missed_deposit_confirmations,
|
|
|
|
/* block */
|
|
|
|
"missing_deposit_confirmation_total",
|
2019-08-25 16:18:24 +02:00
|
|
|
TALER_JSON_from_amount (
|
|
|
|
&total_missed_deposit_confirmations),
|
2019-07-25 19:26:25 +02:00
|
|
|
"total_payback_loss",
|
2019-09-02 08:01:55 +02:00
|
|
|
TALER_JSON_from_amount (&total_payback_loss),
|
2019-10-06 12:46:57 +02:00
|
|
|
/* Tested in test-auditor.sh #18 */
|
2019-09-02 08:01:55 +02:00
|
|
|
"emergencies_by_count",
|
2019-09-28 20:53:44 +02:00
|
|
|
report_emergencies_by_count,
|
2019-10-06 12:46:57 +02:00
|
|
|
/* Tested in test-auditor.sh #18 */
|
2019-09-28 20:53:44 +02:00
|
|
|
"emergencies_risk_by_count",
|
|
|
|
TALER_JSON_from_amount (
|
|
|
|
&reported_emergency_risk_by_count),
|
2019-10-06 12:46:57 +02:00
|
|
|
/* Tested in test-auditor.sh #18 */
|
2019-09-28 20:53:44 +02:00
|
|
|
"emergencies_loss",
|
|
|
|
TALER_JSON_from_amount (&reported_emergency_loss),
|
|
|
|
/* block */
|
2019-10-06 12:46:57 +02:00
|
|
|
/* Tested in test-auditor.sh #18 */
|
2019-09-28 20:53:44 +02:00
|
|
|
"emergencies_loss_by_count",
|
2019-12-03 12:39:32 +01:00
|
|
|
TALER_JSON_from_amount (
|
|
|
|
&reported_emergency_loss_by_count),
|
|
|
|
"start_ppr_reserve_in_serial_id",
|
|
|
|
(json_int_t) ppr_start.last_reserve_in_serial_id,
|
|
|
|
"start_ppr_reserve_out_serial_id",
|
|
|
|
(json_int_t) ppr_start.last_reserve_out_serial_id,
|
|
|
|
"start_ppr_reserve_payback_serial_id",
|
|
|
|
(json_int_t) ppr_start.last_reserve_payback_serial_id,
|
|
|
|
"start_ppr_reserve_close_serial_id",
|
|
|
|
(json_int_t) ppr_start.last_reserve_close_serial_id,
|
|
|
|
/* block */
|
|
|
|
"end_ppr_reserve_in_serial_id",
|
|
|
|
(json_int_t) ppr.last_reserve_in_serial_id,
|
|
|
|
"end_ppr_reserve_out_serial_id",
|
|
|
|
(json_int_t) ppr.last_reserve_out_serial_id,
|
|
|
|
"end_ppr_reserve_payback_serial_id",
|
|
|
|
(json_int_t) ppr.last_reserve_payback_serial_id,
|
|
|
|
"end_ppr_reserve_close_serial_id",
|
|
|
|
(json_int_t) ppr.last_reserve_close_serial_id,
|
|
|
|
"start_ppa_wire_out_serial_id",
|
|
|
|
(json_int_t) ppa_start.last_wire_out_serial_id,
|
|
|
|
/* block */
|
|
|
|
"end_ppa_wire_out_serial_id",
|
|
|
|
(json_int_t) ppa.last_wire_out_serial_id,
|
|
|
|
"start_ppc_withdraw_serial_id",
|
|
|
|
(json_int_t) ppc_start.last_withdraw_serial_id,
|
|
|
|
"start_ppc_deposit_serial_id",
|
|
|
|
(json_int_t) ppc_start.last_deposit_serial_id,
|
|
|
|
"start_ppc_melt_serial_id",
|
|
|
|
(json_int_t) ppc_start.last_melt_serial_id,
|
|
|
|
"start_ppc_refund_serial_id",
|
|
|
|
(json_int_t) ppc_start.last_refund_serial_id,
|
|
|
|
/* block */
|
|
|
|
"start_ppc_payback_serial_id",
|
|
|
|
(json_int_t) ppc_start.last_payback_serial_id,
|
|
|
|
"start_ppc_payback_refresh_serial_id",
|
|
|
|
(json_int_t) ppc_start.last_payback_refresh_serial_id,
|
|
|
|
"end_ppc_withdraw_serial_id",
|
|
|
|
(json_int_t) ppc.last_withdraw_serial_id,
|
|
|
|
"end_ppc_deposit_serial_id",
|
|
|
|
(json_int_t) ppc.last_deposit_serial_id,
|
|
|
|
"end_ppc_melt_serial_id",
|
|
|
|
(json_int_t) ppc.last_melt_serial_id,
|
|
|
|
/* block */
|
|
|
|
"end_ppc_refund_serial_id",
|
|
|
|
(json_int_t) ppc.last_refund_serial_id,
|
|
|
|
"end_ppc_payback_serial_id",
|
|
|
|
(json_int_t) ppc.last_payback_serial_id,
|
|
|
|
"end_ppc_payback_refresh_serial_id",
|
|
|
|
(json_int_t) ppc.last_payback_refresh_serial_id,
|
|
|
|
"auditor_start_time", json_string (
|
|
|
|
GNUNET_STRINGS_absolute_time_to_string (start_time)),
|
|
|
|
"auditor_end_time", json_string (
|
|
|
|
GNUNET_STRINGS_absolute_time_to_string (
|
2020-01-17 15:00:22 +01:00
|
|
|
GNUNET_TIME_absolute_get ())),
|
|
|
|
"total_irregular_paybacks",
|
|
|
|
TALER_JSON_from_amount (&total_irregular_paybacks)
|
2019-07-25 19:26:25 +02:00
|
|
|
);
|
2017-11-08 19:07:21 +01:00
|
|
|
GNUNET_break (NULL != report);
|
2017-10-16 11:49:32 +02:00
|
|
|
json_dumpf (report,
|
2019-08-25 16:18:24 +02:00
|
|
|
stdout,
|
|
|
|
JSON_INDENT (2));
|
2017-10-16 11:49:32 +02:00
|
|
|
json_decref (report);
|
2016-10-06 15:17:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The main function of the database initialization tool.
|
|
|
|
* Used to initialize the Taler Exchange's database.
|
|
|
|
*
|
|
|
|
* @param argc number of arguments from the command line
|
|
|
|
* @param argv command line arguments
|
|
|
|
* @return 0 ok, 1 on error
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
main (int argc,
|
|
|
|
char *const *argv)
|
|
|
|
{
|
|
|
|
const struct GNUNET_GETOPT_CommandLineOption options[] = {
|
2017-11-12 14:11:05 +01:00
|
|
|
GNUNET_GETOPT_option_base32_auto ('m',
|
|
|
|
"exchange-key",
|
|
|
|
"KEY",
|
|
|
|
"public key of the exchange (Crockford base32 encoded)",
|
|
|
|
&master_pub),
|
2017-03-25 21:22:22 +01:00
|
|
|
GNUNET_GETOPT_option_flag ('r',
|
2019-07-24 13:31:48 +02:00
|
|
|
"restart",
|
|
|
|
"restart audit from the beginning (required on first run)",
|
|
|
|
&restart),
|
2016-10-06 15:17:10 +02:00
|
|
|
GNUNET_GETOPT_OPTION_END
|
|
|
|
};
|
|
|
|
|
|
|
|
/* force linker to link against libtalerutil; if we do
|
|
|
|
not do this, the linker may "optimize" libtalerutil
|
|
|
|
away and skip #TALER_OS_init(), which we do need */
|
|
|
|
(void) TALER_project_data_default ();
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
GNUNET_log_setup ("taler-auditor",
|
2017-03-20 04:29:42 +01:00
|
|
|
"MESSAGE",
|
2016-10-06 15:17:10 +02:00
|
|
|
NULL));
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PROGRAM_run (argc,
|
2019-07-24 13:31:48 +02:00
|
|
|
argv,
|
2016-10-06 15:17:10 +02:00
|
|
|
"taler-auditor",
|
2019-07-24 13:31:48 +02:00
|
|
|
"Audit Taler exchange database",
|
|
|
|
options,
|
|
|
|
&run,
|
|
|
|
NULL))
|
2016-10-06 15:17:10 +02:00
|
|
|
return 1;
|
|
|
|
return global_ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* end of taler-auditor.c */
|