2016-05-30 15:08:12 +02:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
Copyright (C) 2014, 2015, 2016 GNUnet e.V. and INRIA
|
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU Lesser General Public License as published by the Free Software
|
|
|
|
Foundation; either version 2.1, 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
|
|
|
|
A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along with
|
|
|
|
TALER; see the file COPYING.LGPL. If not, If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file src/benchmark/taler-exchange-benchmark.c
|
|
|
|
* @brief exchange's benchmark
|
|
|
|
* @author Marcello Stanisci
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
2016-06-03 14:18:42 +02:00
|
|
|
#include "taler_util.h"
|
|
|
|
#include "taler_signatures.h"
|
|
|
|
#include "taler_exchange_service.h"
|
|
|
|
#include "taler_json_lib.h"
|
2016-05-30 15:08:12 +02:00
|
|
|
#include <gnunet/gnunet_util_lib.h>
|
|
|
|
#include <gnunet/gnunet_curl_lib.h>
|
|
|
|
#include <microhttpd.h>
|
2016-06-08 17:11:33 +02:00
|
|
|
#include <jansson.h>
|
2016-05-30 15:08:12 +02:00
|
|
|
|
2016-06-09 17:22:15 +02:00
|
|
|
#define RUNXCG
|
|
|
|
|
2016-05-30 18:45:57 +02:00
|
|
|
/**
|
|
|
|
* How many coins the benchmark should operate on
|
|
|
|
*/
|
2016-06-03 01:23:16 +02:00
|
|
|
static unsigned int pool_size = 100;
|
|
|
|
|
2016-06-08 16:12:31 +02:00
|
|
|
/**
|
|
|
|
* Configuration file path
|
|
|
|
*/
|
|
|
|
static char *config_file;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Configuation object (used to get BANK_URI)
|
|
|
|
*/
|
|
|
|
struct GNUNET_CONFIGURATION_Handle *cfg;
|
|
|
|
|
2016-06-03 01:23:16 +02:00
|
|
|
/**
|
2016-06-09 17:22:15 +02:00
|
|
|
* How many reserves ought to be created given the pool size
|
2016-06-03 01:23:16 +02:00
|
|
|
*/
|
|
|
|
static unsigned int nreserves;
|
|
|
|
|
2016-06-08 17:11:33 +02:00
|
|
|
/**
|
|
|
|
* Bank details of who creates reserves
|
|
|
|
*/
|
|
|
|
json_t *sender_details;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bank details of who deposits coins
|
|
|
|
*/
|
|
|
|
json_t *merchant_details;
|
|
|
|
|
2016-06-03 01:23:16 +02:00
|
|
|
/**
|
|
|
|
* Needed information for a reserve. Other values are the same for all reserves, therefore defined in global variables
|
|
|
|
*/
|
|
|
|
struct Reserve {
|
|
|
|
/**
|
|
|
|
* Set (by the interpreter) to the reserve's private key
|
|
|
|
* we used to fill the reserve.
|
|
|
|
*/
|
|
|
|
struct TALER_ReservePrivateKeyP reserve_priv;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set to the API's handle during the operation.
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGE_AdminAddIncomingHandle *aih;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-06-09 23:35:05 +02:00
|
|
|
/**
|
|
|
|
* Array of denomination keys needed to perform the 4 KUDOS
|
|
|
|
* refresh operation
|
|
|
|
*/
|
|
|
|
const struct TALER_EXCHANGE_DenomPublicKey **refresh_pk;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Size of `refresh_pk`
|
|
|
|
*/
|
|
|
|
unsigned int refresh_pk_len;
|
2016-06-03 19:39:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Same blinding key for all coins
|
|
|
|
*/
|
|
|
|
struct TALER_DenominationBlindingKeyP blinding_key;
|
|
|
|
|
2016-06-03 01:23:16 +02:00
|
|
|
/**
|
2016-06-04 01:29:42 +02:00
|
|
|
* Information regarding a coin
|
2016-06-03 01:23:16 +02:00
|
|
|
*/
|
|
|
|
struct Coin {
|
|
|
|
/**
|
|
|
|
* Index in the reserve's global array indicating which
|
|
|
|
* reserve this coin is to be retrieved
|
|
|
|
*/
|
|
|
|
unsigned int reserve_index;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If @e amount is NULL, this specifies the denomination key to
|
|
|
|
* use. Otherwise, this will be set (by the interpreter) to the
|
|
|
|
* denomination PK matching @e amount.
|
|
|
|
*/
|
2016-06-07 16:58:55 +02:00
|
|
|
const struct TALER_EXCHANGE_DenomPublicKey *pk;
|
2016-06-03 01:23:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set (by the interpreter) to the exchange's signature over the
|
|
|
|
* coin's public key.
|
|
|
|
*/
|
|
|
|
struct TALER_DenominationSignature sig;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set (by the interpreter) to the coin's private key.
|
|
|
|
*/
|
|
|
|
struct TALER_CoinSpendPrivateKeyP coin_priv;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Blinding key used for the operation.
|
|
|
|
*/
|
|
|
|
struct TALER_DenominationBlindingKeyP blinding_key;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Withdraw handle (while operation is running).
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGE_ReserveWithdrawHandle *wsh;
|
|
|
|
|
2016-06-06 16:53:42 +02:00
|
|
|
/**
|
|
|
|
* Deposit handle (while operation is running).
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGE_DepositHandle *dh;
|
|
|
|
|
2016-06-09 23:35:05 +02:00
|
|
|
/**
|
|
|
|
* Flag indicating if the coin is going to be refreshed
|
|
|
|
*/
|
|
|
|
unsigned int refresh;
|
|
|
|
|
2016-06-07 16:58:55 +02:00
|
|
|
/**
|
|
|
|
* Refresh melt handle
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGE_RefreshMeltHandle *rmh;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Refresh reveal handle
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGE_RefreshRevealHandle *rrh;
|
|
|
|
|
2016-06-03 01:23:16 +02:00
|
|
|
};
|
2016-05-30 17:16:01 +02:00
|
|
|
|
2016-05-30 18:45:57 +02:00
|
|
|
/**
|
|
|
|
* Context for running the #ctx's event loop.
|
|
|
|
*/
|
|
|
|
static struct GNUNET_CURL_RescheduleContext *rc;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Benchmark's task
|
|
|
|
*/
|
|
|
|
struct GNUNET_SCHEDULER_Task *benchmark_task;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Main execution context for the main loop of the exchange.
|
|
|
|
*/
|
|
|
|
static struct GNUNET_CURL_Context *ctx;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle to access the exchange.
|
|
|
|
*/
|
|
|
|
static struct TALER_EXCHANGE_Handle *exchange;
|
|
|
|
|
2016-06-03 01:23:16 +02:00
|
|
|
/**
|
|
|
|
* The array of all reserves
|
|
|
|
*/
|
|
|
|
static struct Reserve *reserves;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The array of all coins
|
|
|
|
*/
|
|
|
|
static struct Coin *coins;
|
|
|
|
|
2016-06-04 01:29:42 +02:00
|
|
|
/**
|
|
|
|
* Indices of spent coins (the first element always indicates
|
|
|
|
* the total number of elements, including itself)
|
|
|
|
*/
|
|
|
|
static unsigned int *spent_coins;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Current number of spent coins
|
|
|
|
*/
|
|
|
|
static unsigned int spent_coins_size = 0;
|
|
|
|
|
2016-06-06 16:53:42 +02:00
|
|
|
/**
|
|
|
|
* Transaction id counter
|
|
|
|
*/
|
|
|
|
static unsigned int transaction_id = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This key (usually provided by merchants) is needed when depositing coins,
|
|
|
|
* even though there is no merchant acting in the benchmark
|
|
|
|
*/
|
|
|
|
static struct TALER_MerchantPrivateKeyP merchant_priv;
|
2016-06-03 01:23:16 +02:00
|
|
|
|
2016-05-30 15:08:12 +02:00
|
|
|
/**
|
|
|
|
* URI under which the exchange is reachable during the benchmark.
|
|
|
|
*/
|
2016-06-08 16:12:31 +02:00
|
|
|
#define EXCHANGE_URI "http://localhost:8081/"
|
2016-05-30 18:45:57 +02:00
|
|
|
|
2016-06-03 01:23:16 +02:00
|
|
|
/**
|
|
|
|
* How many coins (AKA withdraw operations) per reserve should be withdrawn
|
|
|
|
*/
|
|
|
|
#define COINS_PER_RESERVE 12
|
|
|
|
|
2016-06-07 16:58:55 +02:00
|
|
|
/**
|
2016-06-08 16:12:31 +02:00
|
|
|
* Used currency (read from /keys' output)
|
2016-06-07 16:58:55 +02:00
|
|
|
*/
|
2016-06-08 16:12:31 +02:00
|
|
|
static char *currency;
|
2016-06-07 16:58:55 +02:00
|
|
|
|
2016-06-04 01:29:42 +02:00
|
|
|
/**
|
|
|
|
* Large enough value to allow having 12 coins per reserve without parsing
|
|
|
|
* /keys in the first place
|
|
|
|
*/
|
2016-06-08 16:12:31 +02:00
|
|
|
#define RESERVE_VALUE 1000
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The benchmark withdraws always the same denomination, since the calculation
|
|
|
|
* for refreshing is statically done (at least in its very first version).
|
|
|
|
*/
|
|
|
|
#define COIN_VALUE 5
|
2016-06-04 01:29:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Probability a coin can be spent
|
|
|
|
*/
|
|
|
|
#define SPEND_PROBABILITY 0.1
|
|
|
|
|
2016-06-07 16:58:55 +02:00
|
|
|
/**
|
|
|
|
* Probability a coin can be refreshed
|
|
|
|
*/
|
|
|
|
#define REFRESH_PROBABILITY 0.1
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Refreshed once. For each batch of deposits, only one
|
|
|
|
* coin will be refreshed, according to #REFRESH_PROBABILITY
|
|
|
|
*/
|
|
|
|
static unsigned int refreshed_once = GNUNET_NO;
|
2016-06-06 23:53:54 +02:00
|
|
|
|
2016-06-04 01:29:42 +02:00
|
|
|
static unsigned int
|
|
|
|
eval_probability (float probability)
|
|
|
|
{
|
|
|
|
unsigned int random;
|
|
|
|
float random_01;
|
2016-06-06 23:53:54 +02:00
|
|
|
|
2016-06-04 01:29:42 +02:00
|
|
|
random = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, UINT32_MAX);
|
|
|
|
random_01 = (float) random / UINT32_MAX;
|
|
|
|
return random_01 <= probability ? GNUNET_OK : GNUNET_NO;
|
|
|
|
}
|
|
|
|
|
2016-06-06 23:53:54 +02:00
|
|
|
|
2016-06-04 01:29:42 +02:00
|
|
|
static void
|
|
|
|
do_shutdown (void *cls);
|
|
|
|
|
2016-06-06 23:53:54 +02:00
|
|
|
|
2016-06-04 01:29:42 +02:00
|
|
|
/**
|
|
|
|
* Shutdown benchmark in case of errors
|
|
|
|
*
|
|
|
|
* @param msg error message to print in logs
|
|
|
|
*/
|
2016-06-03 01:23:16 +02:00
|
|
|
static void
|
2016-06-06 23:53:54 +02:00
|
|
|
fail (const char *msg)
|
2016-06-04 01:29:42 +02:00
|
|
|
{
|
2016-06-06 23:53:54 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"%s\n",
|
|
|
|
msg);
|
2016-06-04 01:29:42 +02:00
|
|
|
GNUNET_SCHEDULER_shutdown ();
|
2016-06-08 16:12:31 +02:00
|
|
|
return;
|
2016-06-04 01:29:42 +02:00
|
|
|
}
|
2016-06-03 01:23:16 +02:00
|
|
|
|
2016-06-06 23:53:54 +02:00
|
|
|
|
2016-06-07 16:58:55 +02:00
|
|
|
/**
|
|
|
|
* Find denomination key matching the given amount.
|
|
|
|
*
|
|
|
|
* @param keys array of keys to search
|
|
|
|
* @param amount coin value to look for
|
|
|
|
* @return NULL if no matching key was found
|
|
|
|
*/
|
|
|
|
static const struct TALER_EXCHANGE_DenomPublicKey *
|
|
|
|
find_pk (const struct TALER_EXCHANGE_Keys *keys,
|
|
|
|
const struct TALER_Amount *amount)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
struct GNUNET_TIME_Absolute now;
|
|
|
|
struct TALER_EXCHANGE_DenomPublicKey *pk;
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
now = GNUNET_TIME_absolute_get ();
|
|
|
|
for (i=0;i<keys->num_denom_keys;i++)
|
|
|
|
{
|
|
|
|
pk = &keys->denom_keys[i];
|
|
|
|
if ( (0 == TALER_amount_cmp (amount,
|
|
|
|
&pk->value)) &&
|
|
|
|
(now.abs_value_us >= pk->valid_from.abs_value_us) &&
|
|
|
|
(now.abs_value_us < pk->withdraw_valid_until.abs_value_us) )
|
|
|
|
return pk;
|
|
|
|
}
|
|
|
|
/* do 2nd pass to check if expiration times are to blame for failure */
|
|
|
|
str = TALER_amount_to_string (amount);
|
|
|
|
for (i=0;i<keys->num_denom_keys;i++)
|
|
|
|
{
|
|
|
|
pk = &keys->denom_keys[i];
|
|
|
|
if ( (0 == TALER_amount_cmp (amount,
|
|
|
|
&pk->value)) &&
|
|
|
|
( (now.abs_value_us < pk->valid_from.abs_value_us) ||
|
|
|
|
(now.abs_value_us > pk->withdraw_valid_until.abs_value_us) ) )
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"Have denomination key for `%s', but with wrong expiration range %llu vs [%llu,%llu)\n",
|
|
|
|
str,
|
|
|
|
(unsigned long long) now.abs_value_us,
|
|
|
|
(unsigned long long) pk->valid_from.abs_value_us,
|
|
|
|
(unsigned long long) pk->withdraw_valid_until.abs_value_us);
|
|
|
|
GNUNET_free (str);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"No denomination key for amount %s found\n",
|
|
|
|
str);
|
|
|
|
GNUNET_free (str);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-06 16:53:42 +02:00
|
|
|
/**
|
|
|
|
* Function called with the result of a /deposit operation.
|
|
|
|
*
|
|
|
|
* @param cls closure with the interpreter state
|
|
|
|
* @param http_status HTTP response code, #MHD_HTTP_OK (200) for successful deposit;
|
|
|
|
* 0 if the exchange's reply is bogus (fails to follow the protocol)
|
2016-06-07 15:14:44 +02:00
|
|
|
* @param exchange_pub public key used by the exchange for signing
|
2016-06-06 16:53:42 +02:00
|
|
|
* @param obj the received JSON reply, should be kept as proof (and, in case of errors,
|
|
|
|
* be forwarded to the customer)
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
deposit_cb (void *cls,
|
|
|
|
unsigned int http_status,
|
2016-06-07 15:14:44 +02:00
|
|
|
const struct TALER_ExchangePublicKeyP *exchange_pub,
|
2016-06-06 16:53:42 +02:00
|
|
|
const json_t *obj)
|
|
|
|
{
|
2016-06-06 23:55:31 +02:00
|
|
|
unsigned int coin_index = (unsigned int) (long) cls;
|
2016-06-06 16:53:42 +02:00
|
|
|
|
2016-06-06 22:40:33 +02:00
|
|
|
coins[coin_index].dh = NULL;
|
2016-06-06 16:53:42 +02:00
|
|
|
if (MHD_HTTP_OK != http_status)
|
|
|
|
{
|
|
|
|
fail ("At least one coin has not been deposited, status: %d\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Coin #%d correctly spent!\n", coin_index);
|
|
|
|
GNUNET_array_append (spent_coins, spent_coins_size, coin_index);
|
|
|
|
spent_coins_size++;
|
2016-06-09 23:35:05 +02:00
|
|
|
if (GNUNET_YES == coins[coin_index].refresh)
|
2016-06-07 16:58:55 +02:00
|
|
|
{
|
|
|
|
/* TODO: all the refresh logic here */
|
2016-06-09 23:35:05 +02:00
|
|
|
struct TALER_Amount melt_amount;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This version of benchmark knows only 5 KUDOS coins, and refreshes
|
|
|
|
* 4 KUDOS out of 5.
|
|
|
|
*/
|
|
|
|
TALER_amount_get_zero (currency, &melt_amount);
|
|
|
|
melt_amount.value = 4;
|
|
|
|
#if 0
|
|
|
|
TALER_EXCHANGE_refresh_prepare (&coins[coin_index].priv,
|
|
|
|
&melt_amount,
|
|
|
|
&coins[coin_index].sig,
|
|
|
|
&coins[coin_index].pk,
|
|
|
|
);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-06-07 16:58:55 +02:00
|
|
|
refreshed_once = GNUNET_YES;
|
|
|
|
}
|
2016-06-09 23:35:05 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"size of refry; %d\n",
|
|
|
|
refresh_pk_len);
|
2016-06-06 16:53:42 +02:00
|
|
|
}
|
|
|
|
|
2016-06-04 01:29:42 +02:00
|
|
|
/**
|
|
|
|
* Function called upon completion of our /reserve/withdraw request.
|
2016-06-06 22:40:33 +02:00
|
|
|
* This is merely the function which spends withdrawn coins
|
2016-06-04 01:29:42 +02:00
|
|
|
*
|
|
|
|
* @param cls closure with the interpreter state
|
|
|
|
* @param http_status HTTP response code, #MHD_HTTP_OK (200) for successful status request
|
|
|
|
* 0 if the exchange's reply is bogus (fails to follow the protocol)
|
|
|
|
* @param sig signature over the coin, NULL on error
|
|
|
|
* @param full_response full response from the exchange (for logging, in case of errors)
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
reserve_withdraw_cb (void *cls,
|
|
|
|
unsigned int http_status,
|
|
|
|
const struct TALER_DenominationSignature *sig,
|
|
|
|
const json_t *full_response)
|
|
|
|
{
|
|
|
|
|
2016-06-06 23:53:54 +02:00
|
|
|
unsigned int coin_index = (unsigned int) (long) cls;
|
2016-06-04 01:29:42 +02:00
|
|
|
|
2016-06-06 22:40:33 +02:00
|
|
|
coins[coin_index].wsh = NULL;
|
2016-06-04 01:29:42 +02:00
|
|
|
if (MHD_HTTP_OK != http_status)
|
2016-06-09 17:22:15 +02:00
|
|
|
{
|
2016-06-04 01:29:42 +02:00
|
|
|
fail ("At least one coin has not correctly been withdrawn\n");
|
2016-06-09 17:22:15 +02:00
|
|
|
return;
|
|
|
|
}
|
2016-06-06 23:53:54 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"%d-th coin withdrawn\n",
|
|
|
|
coin_index);
|
2016-06-04 01:29:42 +02:00
|
|
|
coins[coin_index].sig.rsa_signature =
|
|
|
|
GNUNET_CRYPTO_rsa_signature_dup (sig->rsa_signature);
|
|
|
|
if (GNUNET_OK == eval_probability (SPEND_PROBABILITY))
|
|
|
|
{
|
2016-06-06 16:53:42 +02:00
|
|
|
struct TALER_Amount amount;
|
|
|
|
struct GNUNET_TIME_Absolute wire_deadline;
|
|
|
|
struct GNUNET_TIME_Absolute timestamp;
|
|
|
|
struct GNUNET_TIME_Absolute refund_deadline;
|
|
|
|
struct GNUNET_HashCode h_contract;
|
|
|
|
struct TALER_CoinSpendPublicKeyP coin_pub;
|
|
|
|
struct TALER_DepositRequestPS dr;
|
|
|
|
struct TALER_MerchantPublicKeyP merchant_pub;
|
|
|
|
struct TALER_CoinSpendSignatureP coin_sig;
|
|
|
|
|
|
|
|
GNUNET_CRYPTO_eddsa_key_get_public (&coins[coin_index].coin_priv.eddsa_priv,
|
|
|
|
&coin_pub.eddsa_pub);
|
|
|
|
GNUNET_CRYPTO_random_block (GNUNET_CRYPTO_QUALITY_WEAK,
|
|
|
|
&h_contract,
|
|
|
|
sizeof (h_contract));
|
2016-06-06 23:55:31 +02:00
|
|
|
timestamp = GNUNET_TIME_absolute_get ();
|
2016-06-06 16:53:42 +02:00
|
|
|
wire_deadline = GNUNET_TIME_absolute_add (timestamp, GNUNET_TIME_UNIT_WEEKS);
|
|
|
|
refund_deadline = GNUNET_TIME_absolute_add (timestamp, GNUNET_TIME_UNIT_DAYS);
|
|
|
|
GNUNET_TIME_round_abs (×tamp);
|
|
|
|
GNUNET_TIME_round_abs (&wire_deadline);
|
|
|
|
GNUNET_TIME_round_abs (&refund_deadline);
|
2016-06-07 16:58:55 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Spending %d-th coin\n", coin_index);
|
2016-06-09 23:35:05 +02:00
|
|
|
|
|
|
|
if (GNUNET_YES == eval_probability (REFRESH_PROBABILITY)
|
|
|
|
&& GNUNET_NO == refreshed_once)
|
|
|
|
{
|
|
|
|
struct TALER_Amount one;
|
|
|
|
TALER_amount_get_zero (currency, &one);
|
|
|
|
one.value = 1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If the coin is going to be refreshed, only 1 unit
|
|
|
|
* of currency will be spent, since 4 units are going
|
|
|
|
* to be refreshed
|
|
|
|
*/
|
|
|
|
TALER_amount_subtract (&amount,
|
|
|
|
&one,
|
|
|
|
&coins[coin_index].pk->fee_deposit);
|
|
|
|
coins[coin_index].refresh = GNUNET_YES;
|
|
|
|
refreshed_once = GNUNET_YES;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TALER_amount_subtract (&amount,
|
|
|
|
&coins[coin_index].pk->value,
|
|
|
|
&coins[coin_index].pk->fee_deposit);
|
|
|
|
}
|
2016-06-06 16:53:42 +02:00
|
|
|
memset (&dr, 0, sizeof (dr));
|
|
|
|
dr.purpose.size = htonl (sizeof (struct TALER_DepositRequestPS));
|
|
|
|
dr.purpose.purpose = htonl (TALER_SIGNATURE_WALLET_COIN_DEPOSIT);
|
|
|
|
dr.h_contract = h_contract;
|
|
|
|
TALER_JSON_hash (merchant_details,
|
|
|
|
&dr.h_wire);
|
|
|
|
|
|
|
|
dr.timestamp = GNUNET_TIME_absolute_hton (timestamp);
|
|
|
|
dr.refund_deadline = GNUNET_TIME_absolute_hton (refund_deadline);
|
|
|
|
dr.transaction_id = GNUNET_htonll (transaction_id);
|
|
|
|
|
|
|
|
TALER_amount_hton (&dr.amount_with_fee,
|
|
|
|
&amount);
|
|
|
|
TALER_amount_hton (&dr.deposit_fee,
|
|
|
|
&coins[coin_index].pk->fee_deposit);
|
|
|
|
|
|
|
|
GNUNET_CRYPTO_eddsa_key_get_public (&merchant_priv.eddsa_priv,
|
|
|
|
&merchant_pub.eddsa_pub);
|
|
|
|
dr.merchant = merchant_pub;
|
|
|
|
dr.coin_pub = coin_pub;
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
GNUNET_CRYPTO_eddsa_sign (&coins[coin_index].coin_priv.eddsa_priv,
|
|
|
|
&dr.purpose,
|
|
|
|
&coin_sig.eddsa_signature));
|
|
|
|
|
|
|
|
coins[coin_index].dh = TALER_EXCHANGE_deposit (exchange,
|
|
|
|
&amount,
|
|
|
|
wire_deadline,
|
|
|
|
merchant_details,
|
|
|
|
&h_contract,
|
|
|
|
&coin_pub,
|
|
|
|
&coins[coin_index].sig,
|
|
|
|
&coins[coin_index].pk->key,
|
|
|
|
timestamp,
|
|
|
|
transaction_id,
|
|
|
|
&merchant_pub,
|
|
|
|
refund_deadline,
|
|
|
|
&coin_sig,
|
|
|
|
&deposit_cb,
|
2016-06-06 23:55:31 +02:00
|
|
|
(void *) (long) coin_index);
|
2016-06-06 16:53:42 +02:00
|
|
|
if (NULL == coins[coin_index].dh)
|
|
|
|
{
|
|
|
|
json_decref (merchant_details);
|
|
|
|
fail ("An error occurred while calling deposit API\n");
|
2016-06-09 17:22:15 +02:00
|
|
|
return;
|
2016-06-06 16:53:42 +02:00
|
|
|
}
|
|
|
|
transaction_id++;
|
2016-06-04 01:29:42 +02:00
|
|
|
}
|
|
|
|
}
|
2016-06-06 23:53:54 +02:00
|
|
|
|
|
|
|
|
2016-06-03 01:23:16 +02:00
|
|
|
/**
|
|
|
|
* Function called upon completion of our /admin/add/incoming request.
|
2016-06-07 16:58:55 +02:00
|
|
|
* Its duty is withdrawing coins on the freshly created reserve.
|
2016-06-03 01:23:16 +02:00
|
|
|
*
|
|
|
|
* @param cls closure with the interpreter state
|
|
|
|
* @param http_status HTTP response code, #MHD_HTTP_OK (200) for successful status request
|
|
|
|
* 0 if the exchange's reply is bogus (fails to follow the protocol)
|
|
|
|
* @param full_response full response from the exchange (for logging, in case of errors)
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
add_incoming_cb (void *cls,
|
|
|
|
unsigned int http_status,
|
|
|
|
const json_t *full_response)
|
|
|
|
{
|
2016-06-06 23:53:54 +02:00
|
|
|
unsigned int reserve_index = (unsigned int) (long) cls;
|
2016-06-04 01:29:42 +02:00
|
|
|
struct GNUNET_CRYPTO_EddsaPrivateKey *coin_priv;
|
|
|
|
unsigned int i;
|
|
|
|
unsigned int coin_index;
|
2016-06-07 16:58:55 +02:00
|
|
|
struct TALER_Amount amount;
|
2016-06-09 23:35:05 +02:00
|
|
|
const struct TALER_EXCHANGE_Keys *keys;
|
2016-06-04 01:29:42 +02:00
|
|
|
|
2016-06-09 23:35:05 +02:00
|
|
|
keys = TALER_EXCHANGE_get_keys (exchange);
|
2016-06-04 01:29:42 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"/admin/add/incoming callback called on %d-th reserve\n",
|
|
|
|
reserve_index);
|
2016-06-03 19:39:04 +02:00
|
|
|
reserves[reserve_index].aih = NULL;
|
2016-06-04 01:29:42 +02:00
|
|
|
if (MHD_HTTP_OK != http_status)
|
|
|
|
fail ("At least one reserve failed in being created\n");
|
2016-06-06 23:53:54 +02:00
|
|
|
|
2016-06-04 01:29:42 +02:00
|
|
|
for (i=0; i < COINS_PER_RESERVE; i++)
|
|
|
|
{
|
|
|
|
coin_priv = GNUNET_CRYPTO_eddsa_key_create ();
|
|
|
|
coin_index = reserve_index * COINS_PER_RESERVE + i;
|
|
|
|
coins[coin_index].coin_priv.eddsa_priv = *coin_priv;
|
|
|
|
coins[coin_index].reserve_index = reserve_index;
|
2016-06-08 16:12:31 +02:00
|
|
|
TALER_amount_get_zero (currency, &amount);
|
|
|
|
amount.value = COIN_VALUE;
|
2016-06-07 16:58:55 +02:00
|
|
|
GNUNET_assert (NULL != (coins[coin_index].pk = find_pk (keys, &amount)));
|
2016-06-04 01:29:42 +02:00
|
|
|
GNUNET_free (coin_priv);
|
|
|
|
coins[coin_index].wsh =
|
|
|
|
TALER_EXCHANGE_reserve_withdraw (exchange,
|
|
|
|
coins[coin_index].pk,
|
|
|
|
&reserves[reserve_index].reserve_priv,
|
|
|
|
&coins[coin_index].coin_priv,
|
|
|
|
&blinding_key,
|
|
|
|
reserve_withdraw_cb,
|
2016-06-06 23:53:54 +02:00
|
|
|
(void *) (long) coin_index);
|
2016-06-04 01:29:42 +02:00
|
|
|
}
|
2016-06-03 01:23:16 +02:00
|
|
|
}
|
|
|
|
|
2016-06-06 23:53:54 +02:00
|
|
|
|
2016-05-30 18:45:57 +02:00
|
|
|
/**
|
2016-06-07 16:58:55 +02:00
|
|
|
* Benchmark runner.
|
2016-05-30 18:45:57 +02:00
|
|
|
*
|
2016-05-30 18:57:16 +02:00
|
|
|
* @param cls closure for benchmark_run()
|
2016-05-30 18:45:57 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
benchmark_run (void *cls)
|
|
|
|
{
|
2016-06-03 01:23:16 +02:00
|
|
|
unsigned int i;
|
|
|
|
struct GNUNET_CRYPTO_EddsaPrivateKey *priv;
|
|
|
|
json_t *transfer_details;
|
|
|
|
char *uuid;
|
|
|
|
struct TALER_ReservePublicKeyP reserve_pub;
|
|
|
|
struct GNUNET_TIME_Absolute execution_date;
|
|
|
|
struct TALER_Amount reserve_amount;
|
2016-06-06 23:53:54 +02:00
|
|
|
|
2016-06-06 16:53:42 +02:00
|
|
|
priv = GNUNET_CRYPTO_eddsa_key_create ();
|
|
|
|
merchant_priv.eddsa_priv = *priv;
|
|
|
|
GNUNET_free (priv);
|
|
|
|
|
2016-06-03 19:39:04 +02:00
|
|
|
GNUNET_CRYPTO_random_block (GNUNET_CRYPTO_QUALITY_WEAK,
|
|
|
|
&blinding_key,
|
|
|
|
sizeof (blinding_key));
|
2016-06-08 16:12:31 +02:00
|
|
|
TALER_amount_get_zero (currency, &reserve_amount);
|
|
|
|
reserve_amount.value = RESERVE_VALUE;
|
2016-06-03 01:23:16 +02:00
|
|
|
execution_date = GNUNET_TIME_absolute_get ();
|
|
|
|
GNUNET_TIME_round_abs (&execution_date);
|
|
|
|
|
2016-06-06 23:53:54 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"benchmark_run() invoked\n");
|
2016-06-03 01:23:16 +02:00
|
|
|
nreserves = pool_size / COINS_PER_RESERVE;
|
2016-06-09 17:22:15 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
2016-06-06 23:53:54 +02:00
|
|
|
"creating %d reserves\n",
|
|
|
|
nreserves);
|
2016-06-03 01:23:16 +02:00
|
|
|
|
2016-06-06 23:53:54 +02:00
|
|
|
reserves = GNUNET_new_array (nreserves,
|
|
|
|
struct Reserve);
|
|
|
|
coins = GNUNET_new_array (COINS_PER_RESERVE * nreserves,
|
|
|
|
struct Coin);
|
2016-05-30 18:57:16 +02:00
|
|
|
|
2016-06-03 01:23:16 +02:00
|
|
|
for (i=0;i < nreserves && 0 < nreserves;i++)
|
|
|
|
{
|
|
|
|
priv = GNUNET_CRYPTO_eddsa_key_create ();
|
|
|
|
reserves[i].reserve_priv.eddsa_priv = *priv;
|
|
|
|
GNUNET_free (priv);
|
|
|
|
GNUNET_asprintf (&uuid, "{ \"uuid\":%d}", i);
|
|
|
|
transfer_details = json_loads (uuid, JSON_REJECT_DUPLICATES, NULL);
|
|
|
|
GNUNET_free (uuid);
|
|
|
|
GNUNET_CRYPTO_eddsa_key_get_public (&reserves[i].reserve_priv.eddsa_priv,
|
|
|
|
&reserve_pub.eddsa_pub);
|
|
|
|
|
|
|
|
reserves[i].aih = TALER_EXCHANGE_admin_add_incoming (exchange,
|
|
|
|
&reserve_pub,
|
|
|
|
&reserve_amount,
|
|
|
|
execution_date,
|
|
|
|
sender_details,
|
|
|
|
transfer_details,
|
2016-06-04 01:29:42 +02:00
|
|
|
&add_incoming_cb,
|
2016-06-06 23:53:54 +02:00
|
|
|
(void *) (long) i);
|
|
|
|
GNUNET_assert (NULL != reserves[i].aih);
|
2016-06-03 01:23:16 +02:00
|
|
|
json_decref (transfer_details);
|
|
|
|
}
|
|
|
|
json_decref (sender_details);
|
2016-06-06 23:53:54 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"benchmark_run() returns\n");
|
2016-05-30 18:45:57 +02:00
|
|
|
}
|
|
|
|
|
2016-06-09 23:35:05 +02:00
|
|
|
/**
|
|
|
|
* Populates the global array of denominations which will
|
|
|
|
* be withdrawn in a refresh operation. It sums up 4 KUDOS,
|
|
|
|
* since that is the only amount refreshed so far by the benchmark
|
|
|
|
*
|
|
|
|
* @param NULL-terminated array of value.fraction pairs
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
build_refresh (char **list)
|
|
|
|
{
|
|
|
|
char *amount_str;
|
|
|
|
struct TALER_Amount amount;
|
|
|
|
unsigned int i;
|
|
|
|
const struct TALER_EXCHANGE_DenomPublicKey *picked_denom;
|
|
|
|
const struct TALER_EXCHANGE_Keys *keys;
|
|
|
|
|
|
|
|
keys = TALER_EXCHANGE_get_keys (exchange);
|
|
|
|
for (i=0; list[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
size_t size;
|
|
|
|
GNUNET_asprintf (&amount_str, "%s:%s", currency, list[i]);
|
|
|
|
TALER_string_to_amount (amount_str, &amount);
|
|
|
|
picked_denom = find_pk (keys, &amount);
|
|
|
|
size = (size_t) i;
|
|
|
|
GNUNET_array_append (refresh_pk, size, picked_denom);
|
|
|
|
GNUNET_free (amount_str);
|
|
|
|
}
|
|
|
|
refresh_pk_len = i;
|
|
|
|
}
|
|
|
|
|
2016-06-06 23:53:54 +02:00
|
|
|
|
2016-05-30 18:45:57 +02:00
|
|
|
/**
|
|
|
|
* Functions of this type are called to provide the retrieved signing and
|
|
|
|
* denomination keys of the exchange. No TALER_EXCHANGE_*() functions should be called
|
|
|
|
* in this callback.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
2016-06-09 23:35:05 +02:00
|
|
|
* @param _keys information about keys of the exchange
|
2016-05-30 18:45:57 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
cert_cb (void *cls,
|
2016-06-04 01:29:42 +02:00
|
|
|
const struct TALER_EXCHANGE_Keys *_keys)
|
2016-05-30 18:45:57 +02:00
|
|
|
{
|
|
|
|
/* check that keys is OK */
|
|
|
|
#define ERR(cond) do { if(!(cond)) break; GNUNET_break (0); GNUNET_SCHEDULER_shutdown(); return; } while (0)
|
2016-06-04 01:29:42 +02:00
|
|
|
ERR (NULL == _keys);
|
|
|
|
ERR (0 == _keys->num_sign_keys);
|
2016-05-30 18:45:57 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Read %u signing keys\n",
|
2016-06-04 01:29:42 +02:00
|
|
|
_keys->num_sign_keys);
|
|
|
|
ERR (0 == _keys->num_denom_keys);
|
2016-05-30 18:45:57 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Read %u denomination keys\n",
|
2016-06-04 01:29:42 +02:00
|
|
|
_keys->num_denom_keys);
|
2016-05-30 18:45:57 +02:00
|
|
|
#undef ERR
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Certificate callback invoked, invoking benchmark_run()\n");
|
2016-06-08 16:12:31 +02:00
|
|
|
currency = _keys->denom_keys[0].value.currency;
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Using currency: %s\n", currency);
|
2016-06-09 23:35:05 +02:00
|
|
|
|
|
|
|
char *refresh_denoms[] = {
|
|
|
|
"2",
|
|
|
|
"1",
|
|
|
|
"0.01",
|
|
|
|
"0.01",
|
|
|
|
"0.01",
|
|
|
|
"0.01",
|
|
|
|
"0.01",
|
|
|
|
"0.01",
|
|
|
|
"0.01",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
build_refresh (refresh_denoms);
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO, "lenght: %d\n", refresh_pk_len);
|
|
|
|
|
2016-05-30 18:45:57 +02:00
|
|
|
benchmark_task = GNUNET_SCHEDULER_add_now (&benchmark_run,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
2016-06-06 23:53:54 +02:00
|
|
|
|
2016-05-30 18:45:57 +02:00
|
|
|
/**
|
2016-06-07 16:58:55 +02:00
|
|
|
* Function run when the benchmark terminates (good or bad).
|
2016-05-30 18:45:57 +02:00
|
|
|
* Cleans up our state.
|
|
|
|
*
|
|
|
|
* @param cls the interpreter state.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
do_shutdown (void *cls)
|
|
|
|
{
|
2016-06-03 02:28:57 +02:00
|
|
|
unsigned int i;
|
|
|
|
|
2016-06-06 22:40:33 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO, "shutting down..\n");
|
2016-06-03 02:28:57 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* WARNING: all the non NULL handles must correspond to non completed
|
|
|
|
* calls (AKA calls for which the callback function has not been called).
|
|
|
|
* If not, it segfaults
|
|
|
|
*/
|
|
|
|
for (i=0; i<nreserves && 0<nreserves; i++)
|
|
|
|
{
|
|
|
|
if (NULL != reserves[i].aih)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Cancelling %d-th reserve\n", i);
|
|
|
|
TALER_EXCHANGE_admin_add_incoming_cancel(reserves[i].aih);
|
|
|
|
reserves[i].aih = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i=0; i<COINS_PER_RESERVE * nreserves && 0<nreserves; i++)
|
|
|
|
{
|
|
|
|
if (NULL != coins[i].wsh)
|
|
|
|
{
|
|
|
|
TALER_EXCHANGE_reserve_withdraw_cancel(coins[i].wsh);
|
|
|
|
coins[i].wsh = NULL;
|
2016-06-06 23:55:31 +02:00
|
|
|
}
|
2016-06-06 16:53:42 +02:00
|
|
|
if (NULL != coins[i].dh)
|
|
|
|
{
|
|
|
|
TALER_EXCHANGE_deposit_cancel(coins[i].dh);
|
|
|
|
coins[i].dh = NULL;
|
2016-06-06 23:53:54 +02:00
|
|
|
}
|
2016-06-07 16:58:55 +02:00
|
|
|
if (NULL != coins[i].rmh)
|
|
|
|
{
|
|
|
|
TALER_EXCHANGE_refresh_melt_cancel(coins[i].rmh);
|
|
|
|
coins[i].rmh = NULL;
|
|
|
|
}
|
|
|
|
if (NULL != coins[i].rrh)
|
|
|
|
{
|
|
|
|
TALER_EXCHANGE_refresh_reveal_cancel(coins[i].rrh);
|
|
|
|
coins[i].rmh = NULL;
|
|
|
|
}
|
2016-06-03 02:28:57 +02:00
|
|
|
}
|
|
|
|
|
2016-06-08 17:34:46 +02:00
|
|
|
if (NULL != sender_details)
|
|
|
|
json_decref (sender_details);
|
|
|
|
if (NULL != merchant_details)
|
2016-06-09 23:35:05 +02:00
|
|
|
json_decref (merchant_details);
|
2016-06-08 17:34:46 +02:00
|
|
|
|
2016-06-03 01:23:16 +02:00
|
|
|
GNUNET_free_non_null (reserves);
|
|
|
|
GNUNET_free_non_null (coins);
|
2016-06-04 01:48:20 +02:00
|
|
|
GNUNET_free_non_null (spent_coins);
|
2016-06-06 22:40:33 +02:00
|
|
|
|
|
|
|
if (NULL != exchange)
|
|
|
|
{
|
|
|
|
TALER_EXCHANGE_disconnect (exchange);
|
|
|
|
exchange = NULL;
|
|
|
|
}
|
|
|
|
if (NULL != ctx)
|
|
|
|
{
|
|
|
|
GNUNET_CURL_fini (ctx);
|
|
|
|
ctx = NULL;
|
|
|
|
}
|
|
|
|
if (NULL != rc)
|
|
|
|
{
|
|
|
|
GNUNET_CURL_gnunet_rc_destroy (rc);
|
|
|
|
rc = NULL;
|
|
|
|
}
|
2016-05-30 18:45:57 +02:00
|
|
|
}
|
2016-05-30 15:08:12 +02:00
|
|
|
|
2016-06-06 23:53:54 +02:00
|
|
|
|
2016-05-30 17:16:01 +02:00
|
|
|
/**
|
|
|
|
* Main function that will be run by the scheduler.
|
2016-05-30 15:08:12 +02:00
|
|
|
*
|
2016-05-30 17:16:01 +02:00
|
|
|
* @param cls closure
|
2016-05-30 15:08:12 +02:00
|
|
|
*/
|
2016-05-30 17:16:01 +02:00
|
|
|
static void
|
|
|
|
run (void *cls)
|
|
|
|
{
|
2016-06-08 17:11:33 +02:00
|
|
|
char *sender_details_filename;
|
|
|
|
char *merchant_details_filename;
|
2016-06-08 16:12:31 +02:00
|
|
|
|
2016-06-06 23:53:54 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"running run()\n");
|
2016-06-08 16:12:31 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"gotten pool_size of %d\n",
|
|
|
|
pool_size);
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"config file: %s\n",
|
|
|
|
config_file);
|
2016-06-09 23:35:05 +02:00
|
|
|
|
2016-06-08 16:12:31 +02:00
|
|
|
if (NULL == config_file)
|
2016-06-09 17:22:15 +02:00
|
|
|
{
|
2016-06-08 16:12:31 +02:00
|
|
|
fail ("-c option is mandatory\n");
|
2016-06-09 17:22:15 +02:00
|
|
|
return;
|
|
|
|
}
|
2016-06-08 16:12:31 +02:00
|
|
|
|
|
|
|
/**
|
2016-06-08 17:11:33 +02:00
|
|
|
* Read sender_details.json here
|
2016-06-08 16:12:31 +02:00
|
|
|
*/
|
|
|
|
cfg = GNUNET_CONFIGURATION_create ();
|
|
|
|
if (GNUNET_SYSERR == GNUNET_CONFIGURATION_parse (cfg, config_file))
|
2016-06-09 17:22:15 +02:00
|
|
|
{
|
2016-06-08 16:12:31 +02:00
|
|
|
fail ("failed to parse configuration file\n");
|
2016-06-09 17:22:15 +02:00
|
|
|
return;
|
|
|
|
}
|
2016-06-08 17:11:33 +02:00
|
|
|
if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_filename (cfg,
|
|
|
|
"benchmark",
|
|
|
|
"sender_details",
|
|
|
|
&sender_details_filename))
|
2016-06-09 17:22:15 +02:00
|
|
|
{
|
2016-06-08 17:11:33 +02:00
|
|
|
fail ("failed to get SENDER_DETAILS value\n");
|
2016-06-09 17:22:15 +02:00
|
|
|
return;
|
|
|
|
}
|
2016-06-08 17:11:33 +02:00
|
|
|
|
|
|
|
sender_details = json_load_file (sender_details_filename,
|
|
|
|
JSON_REJECT_DUPLICATES,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_filename (cfg,
|
|
|
|
"benchmark",
|
|
|
|
"merchant_details",
|
|
|
|
&merchant_details_filename))
|
2016-06-09 17:22:15 +02:00
|
|
|
{
|
2016-06-08 17:11:33 +02:00
|
|
|
fail ("failed to get MERCHANT_DETAILS value\n");
|
2016-06-09 17:22:15 +02:00
|
|
|
return;
|
|
|
|
}
|
2016-06-08 17:11:33 +02:00
|
|
|
merchant_details = json_load_file (merchant_details_filename,
|
|
|
|
JSON_REJECT_DUPLICATES,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
GNUNET_CONFIGURATION_destroy (cfg);
|
2016-06-06 23:53:54 +02:00
|
|
|
GNUNET_array_append (spent_coins,
|
|
|
|
spent_coins_size,
|
|
|
|
1);
|
2016-06-04 01:29:42 +02:00
|
|
|
spent_coins_size++;
|
2016-06-03 01:23:16 +02:00
|
|
|
reserves = NULL;
|
|
|
|
coins = NULL;
|
2016-05-30 18:45:57 +02:00
|
|
|
ctx = GNUNET_CURL_init (&GNUNET_CURL_gnunet_scheduler_reschedule,
|
|
|
|
&rc);
|
|
|
|
GNUNET_assert (NULL != ctx);
|
|
|
|
rc = GNUNET_CURL_gnunet_rc_create (ctx);
|
|
|
|
exchange = TALER_EXCHANGE_connect (ctx,
|
|
|
|
EXCHANGE_URI,
|
|
|
|
&cert_cb, NULL,
|
|
|
|
TALER_EXCHANGE_OPTION_END);
|
|
|
|
GNUNET_assert (NULL != exchange);
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "connected to exchange\n");
|
|
|
|
GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL);
|
2016-05-30 17:16:01 +02:00
|
|
|
}
|
|
|
|
|
2016-06-06 23:53:54 +02:00
|
|
|
|
2016-05-30 15:08:12 +02:00
|
|
|
int
|
|
|
|
main (int argc,
|
|
|
|
char * const *argv)
|
|
|
|
{
|
2016-05-30 18:57:16 +02:00
|
|
|
|
2016-06-09 17:22:15 +02:00
|
|
|
#ifdef RUNXCG
|
2016-06-08 16:12:31 +02:00
|
|
|
struct GNUNET_OS_Process *proc;
|
|
|
|
struct GNUNET_OS_Process *exchanged;
|
|
|
|
unsigned int cnt;
|
2016-06-09 17:22:15 +02:00
|
|
|
#endif
|
2016-06-08 16:12:31 +02:00
|
|
|
|
2016-05-30 18:45:57 +02:00
|
|
|
GNUNET_log_setup ("taler-exchange-benchmark",
|
|
|
|
"WARNING",
|
|
|
|
NULL);
|
2016-05-30 17:16:01 +02:00
|
|
|
const struct GNUNET_GETOPT_CommandLineOption options[] = {
|
|
|
|
{'s', "pool-size", NULL,
|
|
|
|
"How many coins this benchmark should instantiate", GNUNET_YES,
|
2016-06-08 16:12:31 +02:00
|
|
|
&GNUNET_GETOPT_set_uint, &pool_size},
|
|
|
|
{'c', "config", NULL,
|
|
|
|
"Configuration file", GNUNET_YES,
|
|
|
|
&GNUNET_GETOPT_set_string, &config_file}
|
2016-05-30 17:16:01 +02:00
|
|
|
};
|
|
|
|
|
2016-05-30 18:45:57 +02:00
|
|
|
GNUNET_assert (GNUNET_SYSERR !=
|
|
|
|
GNUNET_GETOPT_run ("taler-exchange-benchmark",
|
|
|
|
options, argc, argv));
|
2016-06-09 17:22:15 +02:00
|
|
|
#ifdef RUNXCG
|
2016-06-08 16:12:31 +02:00
|
|
|
proc = GNUNET_OS_start_process (GNUNET_NO,
|
|
|
|
GNUNET_OS_INHERIT_STD_ALL,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-exchange-keyup",
|
|
|
|
"taler-exchange-keyup",
|
|
|
|
NULL);
|
|
|
|
if (NULL == proc)
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to run taler-exchange-keyup. Check your PATH.\n");
|
|
|
|
return 77;
|
|
|
|
}
|
|
|
|
|
|
|
|
GNUNET_OS_process_wait (proc);
|
|
|
|
GNUNET_OS_process_destroy (proc);
|
|
|
|
|
|
|
|
proc = GNUNET_OS_start_process (GNUNET_NO,
|
|
|
|
GNUNET_OS_INHERIT_STD_ALL,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-exchange-dbinit",
|
|
|
|
"taler-exchange-dbinit",
|
|
|
|
"-r",
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
|
|
if (NULL == proc)
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to run taler-exchange-dbinit. Check your PATH.\n");
|
|
|
|
return 77;
|
|
|
|
}
|
|
|
|
GNUNET_OS_process_wait (proc);
|
|
|
|
GNUNET_OS_process_destroy (proc);
|
|
|
|
|
|
|
|
exchanged = GNUNET_OS_start_process (GNUNET_NO,
|
|
|
|
GNUNET_OS_INHERIT_STD_ALL,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
"taler-exchange-httpd",
|
|
|
|
"taler-exchange-httpd",
|
|
|
|
NULL);
|
|
|
|
if (NULL == exchanged)
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to run taler-exchange-httpd. Check your PATH.\n");
|
|
|
|
return 77;
|
|
|
|
}
|
|
|
|
|
|
|
|
cnt = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
fprintf (stderr, ".");
|
|
|
|
sleep (1);
|
|
|
|
cnt++;
|
|
|
|
if (cnt > 60)
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"\nFailed to start taler-exchange-httpd\n");
|
|
|
|
GNUNET_OS_process_kill (exchanged,
|
|
|
|
SIGKILL);
|
|
|
|
GNUNET_OS_process_wait (exchanged);
|
|
|
|
GNUNET_OS_process_destroy (exchanged);
|
|
|
|
return 77;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (0 != system ("wget -q -t 1 -T 1 " EXCHANGE_URI "keys -o /dev/null -O /dev/null"));
|
|
|
|
fprintf (stderr, "\n");
|
2016-06-09 17:22:15 +02:00
|
|
|
#endif
|
2016-06-08 16:12:31 +02:00
|
|
|
|
2016-05-30 17:16:01 +02:00
|
|
|
GNUNET_SCHEDULER_run (&run, NULL);
|
2016-06-09 17:22:15 +02:00
|
|
|
#ifdef RUNXCG
|
2016-06-08 16:12:31 +02:00
|
|
|
GNUNET_OS_process_wait (exchanged);
|
|
|
|
GNUNET_OS_process_destroy (exchanged);
|
2016-06-09 17:22:15 +02:00
|
|
|
#endif
|
2016-06-08 16:12:31 +02:00
|
|
|
|
2016-06-03 01:23:16 +02:00
|
|
|
return GNUNET_OK;
|
2016-05-30 15:08:12 +02:00
|
|
|
}
|