2015-01-08 18:37:20 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2015-03-16 18:19:05 +01:00
|
|
|
Copyright (C) 2014, 2015 Christian Grothoff (and other contributing authors)
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
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
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file taler-mint-reservemod.c
|
2015-03-17 14:54:04 +01:00
|
|
|
* @brief Modify reserves. Allows manipulation of reserve balances.
|
2015-01-08 18:37:20 +01:00
|
|
|
* @author Florian Dold
|
|
|
|
* @author Benedikt Mueller
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include <gnunet/gnunet_util_lib.h>
|
|
|
|
#include <libpq-fe.h>
|
|
|
|
#include "taler_util.h"
|
|
|
|
#include "taler_signatures.h"
|
2015-03-28 12:29:35 +01:00
|
|
|
#include "taler_pq_lib.h"
|
2015-03-20 23:51:28 +01:00
|
|
|
#include "taler_mintdb_plugin.h"
|
2015-03-28 11:06:00 +01:00
|
|
|
#include "taler_mintdb_lib.h"
|
2015-01-28 15:06:09 +01:00
|
|
|
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-03-16 18:19:05 +01:00
|
|
|
/**
|
|
|
|
* Director of the mint, containing the keys.
|
|
|
|
*/
|
2015-03-27 19:58:40 +01:00
|
|
|
static char *mint_directory;
|
2015-03-16 18:19:05 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Public key of the reserve to manipulate.
|
|
|
|
*/
|
2015-01-08 18:37:20 +01:00
|
|
|
static struct GNUNET_CRYPTO_EddsaPublicKey *reserve_pub;
|
2015-01-28 15:06:09 +01:00
|
|
|
|
2015-03-16 18:19:05 +01:00
|
|
|
/**
|
|
|
|
* Handle to the mint's configuration
|
|
|
|
*/
|
|
|
|
static struct GNUNET_CONFIGURATION_Handle *cfg;
|
2015-01-28 15:06:09 +01:00
|
|
|
|
2015-03-16 18:19:05 +01:00
|
|
|
/**
|
|
|
|
* Database connection handle.
|
|
|
|
*/
|
2015-01-08 18:37:20 +01:00
|
|
|
static PGconn *db_conn;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-03-16 18:19:05 +01:00
|
|
|
* Create a new or add to existing reserve. Fails if currencies do
|
|
|
|
* not match.
|
2015-01-28 14:55:25 +01:00
|
|
|
*
|
2015-01-08 18:37:20 +01:00
|
|
|
* @param denom denomination to add
|
2015-03-16 18:19:05 +01:00
|
|
|
* @return #GNUNET_OK on success,
|
|
|
|
* #GNUNET_SYSERR on error
|
2015-01-08 18:37:20 +01:00
|
|
|
*/
|
2015-03-17 14:54:04 +01:00
|
|
|
// FIXME: this should use the DB abstraction layer. (#3717)
|
|
|
|
// FIXME: this should be done by adding an inbound transaction
|
|
|
|
// to the table with the transactions for this reserve,
|
|
|
|
// not by modifying some 'total' value for the reserve!
|
|
|
|
// (we should in fact probably never modify, always just append!) (#3633)
|
2015-01-29 20:45:45 +01:00
|
|
|
static int
|
2015-01-08 18:37:20 +01:00
|
|
|
reservemod_add (struct TALER_Amount denom)
|
|
|
|
{
|
|
|
|
PGresult *result;
|
2015-03-16 18:19:05 +01:00
|
|
|
const void *param_values[] = {
|
|
|
|
reserve_pub
|
|
|
|
};
|
|
|
|
int param_lengths[] = {
|
|
|
|
sizeof(struct GNUNET_CRYPTO_EddsaPublicKey)
|
|
|
|
};
|
|
|
|
int param_formats[] = {
|
|
|
|
1
|
|
|
|
};
|
|
|
|
struct TALER_Amount old_denom;
|
|
|
|
struct TALER_Amount new_denom;
|
|
|
|
struct TALER_AmountNBO new_denom_nbo;
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-03-16 18:19:05 +01:00
|
|
|
result = PQexecParams (db_conn,
|
|
|
|
"SELECT balance_value, balance_fraction, balance_currency"
|
|
|
|
" FROM reserves"
|
|
|
|
" WHERE reserve_pub=$1"
|
|
|
|
" LIMIT 1;",
|
|
|
|
1,
|
|
|
|
NULL,
|
|
|
|
(const char * const *) param_values,
|
|
|
|
param_lengths,
|
|
|
|
param_formats,
|
|
|
|
1);
|
2015-01-08 18:37:20 +01:00
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Select failed: %s\n",
|
|
|
|
PQresultErrorMessage (result));
|
2015-01-08 18:37:20 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 == PQntuples (result))
|
|
|
|
{
|
|
|
|
struct GNUNET_TIME_AbsoluteNBO exnbo;
|
|
|
|
uint32_t value = htonl (denom.value);
|
|
|
|
uint32_t fraction = htonl (denom.fraction);
|
|
|
|
const void *param_values[] = {
|
|
|
|
reserve_pub,
|
|
|
|
&value,
|
|
|
|
&fraction,
|
2015-01-28 14:55:25 +01:00
|
|
|
denom.currency,
|
2015-03-16 18:19:05 +01:00
|
|
|
&exnbo
|
|
|
|
};
|
|
|
|
int param_lengths[] = {
|
|
|
|
sizeof (struct GNUNET_CRYPTO_EddsaPublicKey),
|
|
|
|
sizeof (uint32_t),
|
|
|
|
sizeof (uint32_t),
|
|
|
|
strlen (denom.currency),
|
|
|
|
sizeof (struct GNUNET_TIME_AbsoluteNBO)
|
|
|
|
};
|
|
|
|
int param_formats[] = {
|
|
|
|
1, 1, 1, 1, 1
|
|
|
|
};
|
|
|
|
|
|
|
|
exnbo = GNUNET_TIME_absolute_hton (GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_YEARS));
|
2015-01-08 18:37:20 +01:00
|
|
|
result = PQexecParams (db_conn,
|
2015-03-16 18:19:05 +01:00
|
|
|
"INSERT INTO reserves (reserve_pub, balance_value, balance_fraction, balance_currency, expiration_date)"
|
|
|
|
" VALUES ($1,$2,$3,$4,$5);",
|
|
|
|
5,
|
|
|
|
NULL,
|
|
|
|
(const char **) param_values,
|
|
|
|
param_lengths,
|
|
|
|
param_formats,
|
|
|
|
1);
|
2015-01-28 14:55:25 +01:00
|
|
|
|
2015-01-08 18:37:20 +01:00
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Insert failed: %s\n",
|
|
|
|
PQresultErrorMessage (result));
|
2015-01-08 18:37:20 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-01-28 14:55:25 +01:00
|
|
|
}
|
|
|
|
else
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
|
|
|
const void *param_values[] = {
|
|
|
|
&new_denom_nbo.value,
|
|
|
|
&new_denom_nbo.fraction,
|
|
|
|
reserve_pub
|
|
|
|
};
|
2015-03-16 18:19:05 +01:00
|
|
|
int param_lengths[] = {
|
|
|
|
sizeof (new_denom_nbo.value),
|
|
|
|
sizeof (new_denom_nbo.fraction),
|
|
|
|
sizeof (struct GNUNET_CRYPTO_EddsaPublicKey)
|
|
|
|
};
|
|
|
|
int param_formats[] = {
|
|
|
|
1, 1, 1
|
|
|
|
};
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-01-29 20:45:45 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2015-03-27 19:58:40 +01:00
|
|
|
TALER_PQ_extract_amount (result, 0,
|
2015-01-29 20:45:45 +01:00
|
|
|
"balance_value",
|
|
|
|
"balance_fraction",
|
|
|
|
"balance_currency",
|
|
|
|
&old_denom));
|
2015-03-18 18:55:41 +01:00
|
|
|
TALER_amount_add (&new_denom,
|
|
|
|
&old_denom,
|
|
|
|
&denom);
|
|
|
|
TALER_amount_hton (&new_denom_nbo,
|
|
|
|
&new_denom);
|
2015-01-08 18:37:20 +01:00
|
|
|
result = PQexecParams (db_conn,
|
2015-03-16 18:19:05 +01:00
|
|
|
"UPDATE reserves"
|
|
|
|
" SET balance_value = $1, balance_fraction = $2, status_sig = NULL, status_sign_pub = NULL"
|
|
|
|
" WHERE reserve_pub = $3;",
|
|
|
|
3,
|
|
|
|
NULL,
|
|
|
|
(const char **) param_values,
|
|
|
|
param_lengths,
|
|
|
|
param_formats,
|
|
|
|
1);
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Update failed: %s\n",
|
|
|
|
PQresultErrorMessage (result));
|
2015-01-08 18:37:20 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-03-24 00:00:16 +01:00
|
|
|
/* Yes, for historic reasons libpq returns a 'const char *'... */
|
2015-03-16 18:19:05 +01:00
|
|
|
if (0 != strcmp ("1",
|
|
|
|
PQcmdTuples (result)))
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Update failed (updated `%s' tupes instead of '1')\n",
|
2015-01-08 18:37:20 +01:00
|
|
|
PQcmdTuples (result));
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-01-28 14:55:25 +01:00
|
|
|
}
|
|
|
|
return GNUNET_OK;
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The main function of the reservemod tool
|
|
|
|
*
|
|
|
|
* @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)
|
|
|
|
{
|
|
|
|
static char *reserve_pub_str;
|
|
|
|
static char *add_str;
|
|
|
|
static const struct GNUNET_GETOPT_CommandLineOption options[] = {
|
2015-04-13 13:49:42 +02:00
|
|
|
{'a', "add", "DENOM",
|
|
|
|
"value to add", 1,
|
|
|
|
&GNUNET_GETOPT_set_string, &add_str},
|
2015-01-08 18:37:20 +01:00
|
|
|
{'d', "mint-dir", "DIR",
|
|
|
|
"mint directory with keys to update", 1,
|
2015-03-27 19:58:40 +01:00
|
|
|
&GNUNET_GETOPT_set_filename, &mint_directory},
|
2015-04-13 13:49:42 +02:00
|
|
|
TALER_GETOPT_OPTION_HELP ("Deposit funds into a Taler reserve"),
|
2015-01-08 18:37:20 +01:00
|
|
|
{'R', "reserve", "KEY",
|
|
|
|
"reserve (public key) to modify", 1,
|
|
|
|
&GNUNET_GETOPT_set_string, &reserve_pub_str},
|
2015-04-13 13:49:42 +02:00
|
|
|
GNUNET_GETOPT_OPTION_VERSION (VERSION "-" VCS_VERSION),
|
2015-01-08 18:37:20 +01:00
|
|
|
GNUNET_GETOPT_OPTION_END
|
|
|
|
};
|
2015-03-27 19:58:40 +01:00
|
|
|
char *connection_cfg_str;
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-03-16 18:19:05 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
GNUNET_log_setup ("taler-mint-reservemod",
|
|
|
|
"WARNING",
|
|
|
|
NULL));
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-03-17 14:54:04 +01:00
|
|
|
if (GNUNET_GETOPT_run ("taler-mint-reservemod",
|
2015-03-16 18:19:05 +01:00
|
|
|
options,
|
|
|
|
argc, argv) < 0)
|
2015-01-08 18:37:20 +01:00
|
|
|
return 1;
|
2015-03-27 19:58:40 +01:00
|
|
|
if (NULL == mint_directory)
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Mint directory not given\n");
|
2015-01-08 18:37:20 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
reserve_pub = GNUNET_new (struct GNUNET_CRYPTO_EddsaPublicKey);
|
|
|
|
if ((NULL == reserve_pub_str) ||
|
2015-01-28 15:06:09 +01:00
|
|
|
(GNUNET_OK !=
|
|
|
|
GNUNET_STRINGS_string_to_data (reserve_pub_str,
|
|
|
|
strlen (reserve_pub_str),
|
|
|
|
reserve_pub,
|
|
|
|
sizeof (struct GNUNET_CRYPTO_EddsaPublicKey))))
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Parsing reserve key invalid\n");
|
2015-01-08 18:37:20 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2015-03-27 19:58:40 +01:00
|
|
|
cfg = TALER_config_load (mint_directory);
|
2015-01-28 15:06:09 +01:00
|
|
|
if (NULL == cfg)
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to load mint configuration\n");
|
2015-01-08 18:37:20 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2015-01-28 15:06:09 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"mint",
|
|
|
|
"db",
|
2015-03-27 19:58:40 +01:00
|
|
|
&connection_cfg_str))
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Database configuration string not found\n");
|
|
|
|
return 1;
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
2015-03-27 19:58:40 +01:00
|
|
|
db_conn = PQconnectdb (connection_cfg_str);
|
2015-01-08 18:37:20 +01:00
|
|
|
if (CONNECTION_OK != PQstatus (db_conn))
|
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Database connection failed: %s\n",
|
|
|
|
PQerrorMessage (db_conn));
|
2015-01-08 18:37:20 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (NULL != add_str)
|
|
|
|
{
|
|
|
|
struct TALER_Amount add_value;
|
2015-03-16 18:19:05 +01:00
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_string_to_amount (add_str,
|
|
|
|
&add_value))
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to parse currency amount `%s'\n",
|
|
|
|
add_str);
|
2015-01-08 18:37:20 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2015-03-16 18:19:05 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
reservemod_add (add_value))
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to update reserve.\n");
|
2015-01-08 18:37:20 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2015-03-16 18:19:05 +01:00
|
|
|
|
|
|
|
/* end taler-mint-reservemod.c */
|