2015-01-08 18:37:20 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2020-01-17 01:23:56 +01:00
|
|
|
Copyright (C) 2014--2020 Taler Systems SA
|
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
|
2016-07-07 17:55:25 +02:00
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
2015-01-08 18:37:20 +01:00
|
|
|
*/
|
2015-08-13 23:16:31 +02:00
|
|
|
|
2015-01-08 18:37:20 +01:00
|
|
|
/**
|
2016-03-01 15:35:04 +01:00
|
|
|
* @file plugin_exchangedb_postgres.c
|
|
|
|
* @brief Low-level (statement-level) Postgres database access for the exchange
|
2015-01-08 18:37:20 +01:00
|
|
|
* @author Florian Dold
|
2015-01-28 22:35:57 +01:00
|
|
|
* @author Christian Grothoff
|
2015-03-05 16:05:06 +01:00
|
|
|
* @author Sree Harsha Totakura
|
2016-10-18 12:34:57 +02:00
|
|
|
* @author Marcello Stanisci
|
2015-01-08 18:37:20 +01:00
|
|
|
*/
|
|
|
|
#include "platform.h"
|
2017-11-27 23:42:17 +01:00
|
|
|
#include "taler_error_codes.h"
|
2015-03-27 19:58:40 +01:00
|
|
|
#include "taler_pq_lib.h"
|
2016-03-01 15:35:04 +01:00
|
|
|
#include "taler_exchangedb_plugin.h"
|
2015-01-08 18:37:20 +01:00
|
|
|
#include <pthread.h>
|
2015-03-20 23:51:28 +01:00
|
|
|
#include <libpq-fe.h>
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2016-03-01 15:35:04 +01:00
|
|
|
#include "plugin_exchangedb_common.c"
|
2015-03-05 16:05:06 +01:00
|
|
|
|
2018-08-10 22:30:38 +02:00
|
|
|
/**
|
|
|
|
* Set to 1 to enable Postgres auto_explain module. This will
|
|
|
|
* slow down things a _lot_, but also provide extensive logging
|
|
|
|
* in the Postgres database logger for performance analysis.
|
|
|
|
*/
|
|
|
|
#define AUTO_EXPLAIN 1
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2020-03-20 18:38:57 +01:00
|
|
|
/**
|
|
|
|
* Should we explicitly lock certain individual tables prior to SELECT+INSERT
|
|
|
|
* combis?
|
|
|
|
*/
|
|
|
|
#define EXPLICIT_LOCKS 0
|
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Wrapper macro to add the currency from the plugin's state
|
|
|
|
* when fetching amounts from the database.
|
|
|
|
*
|
|
|
|
* @param field name of the database field to fetch amount from
|
2020-01-18 13:07:29 +01:00
|
|
|
* @param[out] amountp pointer to amount to set
|
2019-08-17 21:35:21 +02:00
|
|
|
*/
|
2019-08-25 16:18:24 +02:00
|
|
|
#define TALER_PQ_RESULT_SPEC_AMOUNT(field,amountp) TALER_PQ_result_spec_amount ( \
|
|
|
|
field,pg->currency,amountp)
|
2019-08-17 21:35:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrapper macro to add the currency from the plugin's state
|
|
|
|
* when fetching amounts from the database. NBO variant.
|
|
|
|
*
|
|
|
|
* @param field name of the database field to fetch amount from
|
2020-01-18 13:07:29 +01:00
|
|
|
* @param[out] amountp pointer to amount to set
|
2019-08-17 21:35:21 +02:00
|
|
|
*/
|
2019-10-11 23:28:05 +02:00
|
|
|
#define TALER_PQ_RESULT_SPEC_AMOUNT_NBO(field, \
|
2019-08-25 16:18:24 +02:00
|
|
|
amountp) TALER_PQ_result_spec_amount_nbo ( \
|
|
|
|
field,pg->currency,amountp)
|
2019-08-17 21:35:21 +02:00
|
|
|
|
2015-06-03 11:31:51 +02:00
|
|
|
/**
|
2017-03-18 03:44:59 +01:00
|
|
|
* Log a really unexpected PQ error with all the details we can get hold of.
|
2015-06-03 11:31:51 +02:00
|
|
|
*
|
|
|
|
* @param result PQ result object of the PQ operation that failed
|
2017-03-18 03:44:59 +01:00
|
|
|
* @param conn SQL connection that was used
|
2015-06-03 11:31:51 +02:00
|
|
|
*/
|
2019-10-11 23:28:05 +02:00
|
|
|
#define BREAK_DB_ERR(result,conn) do { \
|
|
|
|
GNUNET_break (0); \
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR, \
|
|
|
|
"Database failure: %s/%s/%s/%s/%s", \
|
|
|
|
PQresultErrorField (result, PG_DIAG_MESSAGE_PRIMARY), \
|
|
|
|
PQresultErrorField (result, PG_DIAG_MESSAGE_DETAIL), \
|
|
|
|
PQresultErrorMessage (result), \
|
|
|
|
PQresStatus (PQresultStatus (result)), \
|
|
|
|
PQerrorMessage (conn)); \
|
2019-08-25 16:18:24 +02:00
|
|
|
} while (0)
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-06-03 11:31:51 +02:00
|
|
|
|
2015-03-20 23:51:28 +01:00
|
|
|
/**
|
2020-01-15 12:34:54 +01:00
|
|
|
* Handler for a database session (per-thread, for transactions).
|
2015-03-20 23:51:28 +01:00
|
|
|
*/
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session
|
2015-03-20 23:51:28 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Postgres connection handle.
|
|
|
|
*/
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_Context *conn;
|
2017-05-25 02:06:03 +02:00
|
|
|
|
2018-03-12 11:33:10 +01:00
|
|
|
/**
|
|
|
|
* Name of the current transaction, for debugging.
|
|
|
|
*/
|
|
|
|
const char *transaction_name;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2015-03-20 23:51:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Type of the "cls" argument given to each of the functions in
|
|
|
|
* our API.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Thread-local database connection.
|
2019-10-11 23:28:05 +02:00
|
|
|
* Contains a pointer to `struct GNUNET_PQ_Context` or NULL.
|
2015-03-20 23:51:28 +01:00
|
|
|
*/
|
|
|
|
pthread_key_t db_conn_threadlocal;
|
|
|
|
|
2020-02-09 15:53:28 +01:00
|
|
|
/**
|
|
|
|
* Our configuration.
|
|
|
|
*/
|
|
|
|
const struct GNUNET_CONFIGURATION_Handle *cfg;
|
|
|
|
|
2020-01-17 03:08:30 +01:00
|
|
|
/**
|
|
|
|
* Directory with SQL statements to run to create tables.
|
|
|
|
*/
|
|
|
|
char *sql_dir;
|
|
|
|
|
2017-04-20 21:38:02 +02:00
|
|
|
/**
|
|
|
|
* After how long should idle reserves be closed?
|
|
|
|
*/
|
|
|
|
struct GNUNET_TIME_Relative idle_reserve_expiration_time;
|
2019-07-24 12:19:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* After how long should reserves that have seen withdraw operations
|
|
|
|
* be garbage collected?
|
|
|
|
*/
|
|
|
|
struct GNUNET_TIME_Relative legal_reserve_expiration_time;
|
2019-08-17 21:35:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Which currency should we assume all amounts to be in?
|
|
|
|
*/
|
|
|
|
char *currency;
|
2020-01-20 11:15:19 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Session to be used if the thread is @e main_self.
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGEDB_Session *main_session;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle for the main() thread of the program.
|
|
|
|
*/
|
|
|
|
pthread_t main_self;
|
2015-03-20 23:51:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-05-31 09:34:45 +02:00
|
|
|
/**
|
|
|
|
* Drop all Taler tables. This should only be used by testcases.
|
|
|
|
*
|
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @return #GNUNET_OK upon success; #GNUNET_SYSERR upon failure
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
postgres_drop_tables (void *cls)
|
|
|
|
{
|
|
|
|
struct PostgresClosure *pc = cls;
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_Context *conn;
|
2020-02-09 16:34:40 +01:00
|
|
|
|
|
|
|
conn = GNUNET_PQ_connect_with_cfg (pc->cfg,
|
|
|
|
"exchangedb-postgres",
|
|
|
|
"drop",
|
|
|
|
NULL,
|
|
|
|
NULL);
|
2016-05-31 09:34:45 +02:00
|
|
|
if (NULL == conn)
|
|
|
|
return GNUNET_SYSERR;
|
2019-10-11 23:28:05 +02:00
|
|
|
GNUNET_PQ_disconnect (conn);
|
|
|
|
return GNUNET_OK;
|
2016-05-18 17:19:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-05 16:05:06 +01:00
|
|
|
/**
|
|
|
|
* Create the necessary tables if they are not present
|
|
|
|
*
|
2015-03-21 14:21:00 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
2015-03-05 16:05:06 +01:00
|
|
|
* @return #GNUNET_OK upon success; #GNUNET_SYSERR upon failure
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
2016-05-02 06:36:58 +02:00
|
|
|
postgres_create_tables (void *cls)
|
2015-03-05 16:05:06 +01:00
|
|
|
{
|
2015-03-21 14:21:00 +01:00
|
|
|
struct PostgresClosure *pc = cls;
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_Context *conn;
|
2015-03-05 16:05:06 +01:00
|
|
|
|
2020-02-09 15:53:28 +01:00
|
|
|
conn = GNUNET_PQ_connect_with_cfg (pc->cfg,
|
|
|
|
"exchangedb-postgres",
|
2020-02-09 16:34:40 +01:00
|
|
|
"exchange-",
|
2020-02-09 15:53:28 +01:00
|
|
|
NULL,
|
|
|
|
NULL);
|
2016-05-31 09:34:45 +02:00
|
|
|
if (NULL == conn)
|
2015-03-05 16:05:06 +01:00
|
|
|
return GNUNET_SYSERR;
|
2019-10-11 23:28:05 +02:00
|
|
|
GNUNET_PQ_disconnect (conn);
|
|
|
|
return GNUNET_OK;
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-28 22:18:53 +01:00
|
|
|
/**
|
|
|
|
* Close thread-local database connection when a thread is destroyed.
|
|
|
|
*
|
2015-03-28 15:42:07 +01:00
|
|
|
* @param cls closure we get from pthreads (the db handle)
|
2015-01-28 22:18:53 +01:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
db_conn_destroy (void *cls)
|
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session = cls;
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_Context *db_conn;
|
2015-01-28 22:47:03 +01:00
|
|
|
|
2017-07-04 23:33:57 +02:00
|
|
|
if (NULL == session)
|
|
|
|
return;
|
|
|
|
db_conn = session->conn;
|
2019-10-11 23:28:05 +02:00
|
|
|
session->conn = NULL;
|
2015-01-28 22:18:53 +01:00
|
|
|
if (NULL != db_conn)
|
2019-10-26 20:35:36 +02:00
|
|
|
GNUNET_PQ_disconnect (db_conn);
|
2015-07-09 22:10:14 +02:00
|
|
|
GNUNET_free (session);
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
|
|
|
|
2015-01-27 14:55:05 +01:00
|
|
|
|
2015-01-08 18:37:20 +01:00
|
|
|
/**
|
|
|
|
* Get the thread-local database-handle.
|
|
|
|
* Connect to the db if the connection does not exist yet.
|
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
2015-01-28 22:18:53 +01:00
|
|
|
* @return the database connection, or NULL on error
|
2015-01-08 18:37:20 +01:00
|
|
|
*/
|
2016-03-01 15:35:04 +01:00
|
|
|
static struct TALER_EXCHANGEDB_Session *
|
2016-05-02 06:36:58 +02:00
|
|
|
postgres_get_session (void *cls)
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-03-20 23:51:28 +01:00
|
|
|
struct PostgresClosure *pc = cls;
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_Context *db_conn;
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session;
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2020-01-20 11:15:19 +01:00
|
|
|
if (pthread_equal (pc->main_self,
|
|
|
|
pthread_self ()))
|
|
|
|
session = pc->main_session;
|
|
|
|
else
|
|
|
|
session = pthread_getspecific (pc->db_conn_threadlocal);
|
|
|
|
if (NULL != session)
|
2017-07-04 23:28:03 +02:00
|
|
|
{
|
2019-10-11 23:28:05 +02:00
|
|
|
GNUNET_PQ_reconnect_if_down (session->conn);
|
|
|
|
return session;
|
2017-07-04 23:28:03 +02:00
|
|
|
}
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2018-08-10 22:30:38 +02:00
|
|
|
#if AUTO_EXPLAIN
|
2019-10-11 23:28:05 +02:00
|
|
|
/* Enable verbose logging to see where queries do not
|
|
|
|
properly use indices */
|
2018-08-10 22:30:38 +02:00
|
|
|
struct GNUNET_PQ_ExecuteStatement es[] = {
|
2019-05-09 12:55:09 +02:00
|
|
|
GNUNET_PQ_make_try_execute ("LOAD 'auto_explain';"),
|
|
|
|
GNUNET_PQ_make_try_execute ("SET auto_explain.log_min_duration=50;"),
|
|
|
|
GNUNET_PQ_make_try_execute ("SET auto_explain.log_timing=TRUE;"),
|
|
|
|
GNUNET_PQ_make_try_execute ("SET auto_explain.log_analyze=TRUE;"),
|
2020-08-08 20:01:56 +02:00
|
|
|
/* https://wiki.postgresql.org/wiki/Serializable suggests to really
|
|
|
|
force the default to 'serializable' if SSI is to be used. */
|
|
|
|
GNUNET_PQ_make_try_execute (
|
|
|
|
"SET SESSION CHARACTERISTICS AS TRANSACTION ISOLATION LEVEL SERIALIZABLE;"),
|
2019-05-09 12:55:09 +02:00
|
|
|
GNUNET_PQ_make_try_execute ("SET enable_sort=OFF;"),
|
|
|
|
GNUNET_PQ_make_try_execute ("SET enable_seqscan=OFF;"),
|
2018-08-10 22:30:38 +02:00
|
|
|
GNUNET_PQ_EXECUTE_STATEMENT_END
|
|
|
|
};
|
2019-10-11 23:28:05 +02:00
|
|
|
#else
|
|
|
|
struct GNUNET_PQ_ExecuteStatement *es = NULL;
|
2018-08-10 22:30:38 +02:00
|
|
|
#endif
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_PreparedStatement ps[] = {
|
|
|
|
/* Used in #postgres_insert_denomination_info() */
|
|
|
|
GNUNET_PQ_make_prepare ("denomination_insert",
|
|
|
|
"INSERT INTO denominations "
|
|
|
|
"(denom_pub_hash"
|
|
|
|
",denom_pub"
|
|
|
|
",master_pub"
|
|
|
|
",master_sig"
|
|
|
|
",valid_from"
|
|
|
|
",expire_withdraw"
|
|
|
|
",expire_deposit"
|
|
|
|
",expire_legal"
|
|
|
|
",coin_val" /* value of this denom */
|
|
|
|
",coin_frac" /* fractional value of this denom */
|
|
|
|
",fee_withdraw_val"
|
|
|
|
",fee_withdraw_frac"
|
|
|
|
",fee_deposit_val"
|
|
|
|
",fee_deposit_frac"
|
|
|
|
",fee_refresh_val"
|
|
|
|
",fee_refresh_frac"
|
|
|
|
",fee_refund_val"
|
|
|
|
",fee_refund_frac"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6, $7, $8, $9, $10,"
|
|
|
|
" $11, $12, $13, $14, $15, $16, $17, $18);",
|
|
|
|
18),
|
|
|
|
/* Used in #postgres_iterate_denomination_info() */
|
|
|
|
GNUNET_PQ_make_prepare ("denomination_iterate",
|
|
|
|
"SELECT"
|
|
|
|
" master_pub"
|
|
|
|
",master_sig"
|
|
|
|
",valid_from"
|
|
|
|
",expire_withdraw"
|
|
|
|
",expire_deposit"
|
|
|
|
",expire_legal"
|
|
|
|
",coin_val" /* value of this denom */
|
|
|
|
",coin_frac" /* fractional value of this denom */
|
|
|
|
",fee_withdraw_val"
|
|
|
|
",fee_withdraw_frac"
|
|
|
|
",fee_deposit_val"
|
|
|
|
",fee_deposit_frac"
|
|
|
|
",fee_refresh_val"
|
|
|
|
",fee_refresh_frac"
|
|
|
|
",fee_refund_val"
|
|
|
|
",fee_refund_frac"
|
|
|
|
",denom_pub"
|
|
|
|
" FROM denominations;",
|
|
|
|
0),
|
|
|
|
/* Used in #postgres_get_denomination_info() */
|
|
|
|
GNUNET_PQ_make_prepare ("denomination_get",
|
|
|
|
"SELECT"
|
|
|
|
" master_pub"
|
|
|
|
",master_sig"
|
|
|
|
",valid_from"
|
|
|
|
",expire_withdraw"
|
|
|
|
",expire_deposit"
|
|
|
|
",expire_legal"
|
|
|
|
",coin_val" /* value of this denom */
|
|
|
|
",coin_frac" /* fractional value of this denom */
|
|
|
|
",fee_withdraw_val"
|
|
|
|
",fee_withdraw_frac"
|
|
|
|
",fee_deposit_val"
|
|
|
|
",fee_deposit_frac"
|
|
|
|
",fee_refresh_val"
|
|
|
|
",fee_refresh_frac"
|
|
|
|
",fee_refund_val"
|
|
|
|
",fee_refund_frac"
|
|
|
|
" FROM denominations"
|
|
|
|
" WHERE denom_pub_hash=$1;",
|
|
|
|
1),
|
|
|
|
/* Used in #postgres_insert_denomination_revocation() */
|
|
|
|
GNUNET_PQ_make_prepare ("denomination_revocation_insert",
|
|
|
|
"INSERT INTO denomination_revocations "
|
|
|
|
"(denom_pub_hash"
|
|
|
|
",master_sig"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2);",
|
|
|
|
2),
|
|
|
|
/* Used in #postgres_get_denomination_revocation() */
|
|
|
|
GNUNET_PQ_make_prepare ("denomination_revocation_get",
|
|
|
|
"SELECT"
|
|
|
|
" master_sig"
|
|
|
|
",denom_revocations_serial_id"
|
|
|
|
" FROM denomination_revocations"
|
|
|
|
" WHERE denom_pub_hash=$1;",
|
|
|
|
1),
|
2020-03-05 23:02:38 +01:00
|
|
|
/* Used in #postgres_reserves_get() */
|
|
|
|
GNUNET_PQ_make_prepare ("reserves_get",
|
2019-10-11 23:28:05 +02:00
|
|
|
"SELECT"
|
|
|
|
" current_balance_val"
|
|
|
|
",current_balance_frac"
|
|
|
|
",expiration_date"
|
|
|
|
",gc_date"
|
|
|
|
" FROM reserves"
|
|
|
|
" WHERE reserve_pub=$1"
|
2020-08-08 20:01:56 +02:00
|
|
|
" LIMIT 1;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
|
|
|
/* Used in #postgres_reserves_in_insert() when the reserve is new */
|
|
|
|
GNUNET_PQ_make_prepare ("reserve_create",
|
|
|
|
"INSERT INTO reserves "
|
|
|
|
"(reserve_pub"
|
|
|
|
",account_details"
|
|
|
|
",current_balance_val"
|
|
|
|
",current_balance_frac"
|
|
|
|
",expiration_date"
|
|
|
|
",gc_date"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6);",
|
|
|
|
6),
|
|
|
|
/* Used in #postgres_insert_reserve_closed() */
|
|
|
|
GNUNET_PQ_make_prepare ("reserves_close_insert",
|
|
|
|
"INSERT INTO reserves_close "
|
|
|
|
"(reserve_pub"
|
|
|
|
",execution_date"
|
|
|
|
",wtid"
|
|
|
|
",receiver_account"
|
|
|
|
",amount_val"
|
|
|
|
",amount_frac"
|
|
|
|
",closing_fee_val"
|
|
|
|
",closing_fee_frac"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6, $7, $8);",
|
|
|
|
8),
|
|
|
|
/* Used in #reserves_update() when the reserve is updated */
|
|
|
|
GNUNET_PQ_make_prepare ("reserve_update",
|
|
|
|
"UPDATE reserves"
|
|
|
|
" SET"
|
|
|
|
" expiration_date=$1"
|
|
|
|
",gc_date=$2"
|
|
|
|
",current_balance_val=$3"
|
|
|
|
",current_balance_frac=$4"
|
|
|
|
" WHERE"
|
|
|
|
" reserve_pub=$5;",
|
|
|
|
5),
|
2020-08-10 08:12:01 +02:00
|
|
|
/* Used in #insert_withdraw_info() when coins are withdrawn from the reserve */
|
|
|
|
GNUNET_PQ_make_prepare ("reserve_reduce",
|
|
|
|
"UPDATE reserves"
|
|
|
|
" SET"
|
|
|
|
" gc_date="
|
|
|
|
" CASE WHEN (reserves.gc_date > $2)"
|
|
|
|
" THEN reserves.gc_date"
|
|
|
|
" ELSE $2"
|
|
|
|
" END"
|
|
|
|
",current_balance_val="
|
|
|
|
" CASE WHEN (reserves.current_balance_frac >= $4)"
|
|
|
|
" THEN reserves.current_balance_val - $3"
|
|
|
|
" ELSE reserves.current_balance_val - $3 - 1"
|
|
|
|
" END"
|
|
|
|
",current_balance_frac="
|
|
|
|
" CASE WHEN (reserves.current_balance_frac >= $4)"
|
|
|
|
" THEN reserves.current_balance_frac - $4"
|
|
|
|
" ELSE 100000000 + reserves.current_balance_frac - $4"
|
|
|
|
" END"
|
|
|
|
" WHERE reserve_pub=$1"
|
|
|
|
" AND current_balance_val >= $3"
|
|
|
|
" AND ( (current_balance_frac >= $4) OR"
|
|
|
|
" (current_balance_val > $3) )",
|
|
|
|
4),
|
2019-10-11 23:28:05 +02:00
|
|
|
/* Used in #postgres_reserves_in_insert() to store transaction details */
|
|
|
|
GNUNET_PQ_make_prepare ("reserves_in_add_transaction",
|
|
|
|
"INSERT INTO reserves_in "
|
|
|
|
"(reserve_pub"
|
|
|
|
",wire_reference"
|
|
|
|
",credit_val"
|
|
|
|
",credit_frac"
|
|
|
|
",exchange_account_section"
|
|
|
|
",sender_account_details"
|
|
|
|
",execution_date"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6, $7) "
|
|
|
|
"ON CONFLICT DO NOTHING;",
|
|
|
|
7),
|
|
|
|
/* Used in postgres_select_reserves_in_above_serial_id() to obtain inbound
|
|
|
|
transactions for reserves with serial id '\geq' the given parameter */
|
|
|
|
GNUNET_PQ_make_prepare ("reserves_in_get_latest_wire_reference",
|
|
|
|
"SELECT"
|
|
|
|
" wire_reference"
|
|
|
|
" FROM reserves_in"
|
|
|
|
" WHERE exchange_account_section=$1"
|
|
|
|
" ORDER BY reserve_in_serial_id DESC"
|
|
|
|
" LIMIT 1;",
|
|
|
|
1),
|
|
|
|
/* Used in postgres_select_reserves_in_above_serial_id() to obtain inbound
|
|
|
|
transactions for reserves with serial id '\geq' the given parameter */
|
|
|
|
GNUNET_PQ_make_prepare ("audit_reserves_in_get_transactions_incr",
|
|
|
|
"SELECT"
|
|
|
|
" reserve_pub"
|
|
|
|
",wire_reference"
|
|
|
|
",credit_val"
|
|
|
|
",credit_frac"
|
|
|
|
",execution_date"
|
|
|
|
",sender_account_details"
|
|
|
|
",reserve_in_serial_id"
|
|
|
|
" FROM reserves_in"
|
|
|
|
" WHERE reserve_in_serial_id>=$1"
|
|
|
|
" ORDER BY reserve_in_serial_id;",
|
|
|
|
1),
|
|
|
|
/* Used in postgres_select_reserves_in_above_serial_id() to obtain inbound
|
|
|
|
transactions for reserves with serial id '\geq' the given parameter */
|
|
|
|
GNUNET_PQ_make_prepare (
|
|
|
|
"audit_reserves_in_get_transactions_incr_by_account",
|
|
|
|
"SELECT"
|
|
|
|
" reserve_pub"
|
|
|
|
",wire_reference"
|
|
|
|
",credit_val"
|
|
|
|
",credit_frac"
|
|
|
|
",execution_date"
|
|
|
|
",sender_account_details"
|
|
|
|
",reserve_in_serial_id"
|
|
|
|
" FROM reserves_in"
|
|
|
|
" WHERE reserve_in_serial_id>=$1 AND exchange_account_section=$2"
|
|
|
|
" ORDER BY reserve_in_serial_id;",
|
|
|
|
2),
|
|
|
|
/* Used in #postgres_get_reserve_history() to obtain inbound transactions
|
|
|
|
for a reserve */
|
|
|
|
GNUNET_PQ_make_prepare ("reserves_in_get_transactions",
|
|
|
|
"SELECT"
|
|
|
|
" wire_reference"
|
|
|
|
",credit_val"
|
|
|
|
",credit_frac"
|
|
|
|
",execution_date"
|
|
|
|
",sender_account_details"
|
|
|
|
" FROM reserves_in"
|
2020-08-08 20:01:56 +02:00
|
|
|
" WHERE reserve_pub=$1;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
|
|
|
/* Lock withdraw table; NOTE: we may want to eventually shard the
|
|
|
|
deposit table to avoid this lock being the main point of
|
|
|
|
contention limiting transaction performance. */
|
|
|
|
GNUNET_PQ_make_prepare ("lock_withdraw",
|
|
|
|
"LOCK TABLE reserves_out;",
|
|
|
|
0),
|
|
|
|
/* Used in #postgres_insert_withdraw_info() to store
|
|
|
|
the signature of a blinded coin with the blinded coin's
|
|
|
|
details before returning it during /reserve/withdraw. We store
|
|
|
|
the coin's denomination information (public key, signature)
|
|
|
|
and the blinded message as well as the reserve that the coin
|
|
|
|
is being withdrawn from and the signature of the message
|
2019-10-31 12:59:50 +01:00
|
|
|
authorizing the withdrawal. */GNUNET_PQ_make_prepare ("insert_withdraw_info",
|
2019-10-11 23:28:05 +02:00
|
|
|
"INSERT INTO reserves_out "
|
|
|
|
"(h_blind_ev"
|
|
|
|
",denom_pub_hash"
|
|
|
|
",denom_sig"
|
|
|
|
",reserve_pub"
|
|
|
|
",reserve_sig"
|
|
|
|
",execution_date"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6, $7, $8);",
|
|
|
|
8),
|
|
|
|
/* Used in #postgres_get_withdraw_info() to
|
|
|
|
locate the response for a /reserve/withdraw request
|
|
|
|
using the hash of the blinded message. Used to
|
|
|
|
make sure /reserve/withdraw requests are idempotent. */
|
|
|
|
GNUNET_PQ_make_prepare ("get_withdraw_info",
|
|
|
|
"SELECT"
|
|
|
|
" denom_pub_hash"
|
|
|
|
",denom_sig"
|
|
|
|
",reserve_sig"
|
|
|
|
",reserve_pub"
|
|
|
|
",execution_date"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",denom.fee_withdraw_val"
|
|
|
|
",denom.fee_withdraw_frac"
|
|
|
|
" FROM reserves_out"
|
|
|
|
" JOIN denominations denom"
|
|
|
|
" USING (denom_pub_hash)"
|
2020-08-08 20:01:56 +02:00
|
|
|
" WHERE h_blind_ev=$1;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
|
|
|
/* Used during #postgres_get_reserve_history() to
|
|
|
|
obtain all of the /reserve/withdraw operations that
|
|
|
|
have been performed on a given reserve. (i.e. to
|
|
|
|
demonstrate double-spending) */
|
|
|
|
GNUNET_PQ_make_prepare ("get_reserves_out",
|
|
|
|
"SELECT"
|
|
|
|
" h_blind_ev"
|
|
|
|
",denom_pub_hash"
|
|
|
|
",denom_sig"
|
|
|
|
",reserve_sig"
|
|
|
|
",execution_date"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",denom.fee_withdraw_val"
|
|
|
|
",denom.fee_withdraw_frac"
|
|
|
|
" FROM reserves_out"
|
|
|
|
" JOIN denominations denom"
|
|
|
|
" USING (denom_pub_hash)"
|
2020-08-08 20:01:56 +02:00
|
|
|
" WHERE reserve_pub=$1;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
2020-03-05 23:02:38 +01:00
|
|
|
/* Used in #postgres_select_withdrawals_above_serial_id() */
|
2019-10-11 23:28:05 +02:00
|
|
|
GNUNET_PQ_make_prepare ("audit_get_reserves_out_incr",
|
|
|
|
"SELECT"
|
|
|
|
" h_blind_ev"
|
|
|
|
",denom.denom_pub"
|
|
|
|
",reserve_sig"
|
|
|
|
",reserve_pub"
|
|
|
|
",execution_date"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",reserve_out_serial_id"
|
|
|
|
" FROM reserves_out"
|
|
|
|
" JOIN denominations denom"
|
|
|
|
" USING (denom_pub_hash)"
|
|
|
|
" WHERE reserve_out_serial_id>=$1"
|
|
|
|
" ORDER BY reserve_out_serial_id ASC;",
|
|
|
|
1),
|
|
|
|
|
|
|
|
/* Used in #postgres_count_known_coins() */
|
|
|
|
GNUNET_PQ_make_prepare ("count_known_coins",
|
|
|
|
"SELECT"
|
|
|
|
" COUNT(*) AS count"
|
|
|
|
" FROM known_coins"
|
|
|
|
" WHERE denom_pub_hash=$1;",
|
|
|
|
1),
|
|
|
|
/* Used in #postgres_get_known_coin() to fetch
|
|
|
|
the denomination public key and signature for
|
|
|
|
a coin known to the exchange. */
|
|
|
|
GNUNET_PQ_make_prepare ("get_known_coin",
|
|
|
|
"SELECT"
|
|
|
|
" denom_pub_hash"
|
|
|
|
",denom_sig"
|
|
|
|
" FROM known_coins"
|
2020-08-08 20:01:56 +02:00
|
|
|
" WHERE coin_pub=$1;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
2020-01-17 12:52:24 +01:00
|
|
|
/* Used in #postgres_get_coin_denomination() to fetch
|
|
|
|
the denomination public key hash for
|
|
|
|
a coin known to the exchange. */
|
|
|
|
GNUNET_PQ_make_prepare ("get_coin_denomination",
|
|
|
|
"SELECT"
|
|
|
|
" denom_pub_hash"
|
|
|
|
" FROM known_coins"
|
2020-03-20 18:38:57 +01:00
|
|
|
" WHERE coin_pub=$1"
|
|
|
|
" FOR SHARE;",
|
2020-01-17 12:52:24 +01:00
|
|
|
1),
|
2019-10-11 23:28:05 +02:00
|
|
|
/* Lock deposit table; NOTE: we may want to eventually shard the
|
|
|
|
deposit table to avoid this lock being the main point of
|
|
|
|
contention limiting transaction performance. */
|
|
|
|
GNUNET_PQ_make_prepare ("lock_known_coins",
|
|
|
|
"LOCK TABLE known_coins;",
|
|
|
|
0),
|
|
|
|
/* Used in #postgres_insert_known_coin() to store
|
|
|
|
the denomination public key and signature for
|
|
|
|
a coin known to the exchange. */
|
|
|
|
GNUNET_PQ_make_prepare ("insert_known_coin",
|
|
|
|
"INSERT INTO known_coins "
|
|
|
|
"(coin_pub"
|
|
|
|
",denom_pub_hash"
|
|
|
|
",denom_sig"
|
|
|
|
") VALUES "
|
|
|
|
"($1,$2,$3);",
|
|
|
|
3),
|
|
|
|
|
|
|
|
/* Used in #postgres_insert_melt() to store
|
|
|
|
high-level information about a melt operation */
|
|
|
|
GNUNET_PQ_make_prepare ("insert_melt",
|
|
|
|
"INSERT INTO refresh_commitments "
|
|
|
|
"(rc "
|
|
|
|
",old_coin_pub "
|
|
|
|
",old_coin_sig "
|
|
|
|
",amount_with_fee_val "
|
|
|
|
",amount_with_fee_frac "
|
|
|
|
",noreveal_index "
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6);",
|
|
|
|
6),
|
|
|
|
/* Used in #postgres_get_melt() to fetch
|
|
|
|
high-level information about a melt operation */
|
|
|
|
GNUNET_PQ_make_prepare ("get_melt",
|
|
|
|
"SELECT"
|
|
|
|
" kc.denom_pub_hash"
|
|
|
|
",denom.fee_refresh_val"
|
|
|
|
",denom.fee_refresh_frac"
|
|
|
|
",old_coin_pub"
|
|
|
|
",old_coin_sig"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",noreveal_index"
|
|
|
|
" FROM refresh_commitments"
|
|
|
|
" JOIN known_coins kc"
|
|
|
|
" ON (refresh_commitments.old_coin_pub = kc.coin_pub)"
|
|
|
|
" JOIN denominations denom"
|
|
|
|
" ON (kc.denom_pub_hash = denom.denom_pub_hash)"
|
|
|
|
" WHERE rc=$1;",
|
|
|
|
1),
|
|
|
|
/* Used in #postgres_get_melt_index() to fetch
|
|
|
|
the noreveal index from a previous melt operation */
|
|
|
|
GNUNET_PQ_make_prepare ("get_melt_index",
|
|
|
|
"SELECT"
|
|
|
|
" noreveal_index"
|
|
|
|
" FROM refresh_commitments"
|
|
|
|
" WHERE rc=$1;",
|
|
|
|
1),
|
2020-03-05 23:02:38 +01:00
|
|
|
/* Used in #postgres_select_refreshes_above_serial_id() to fetch
|
2019-10-11 23:28:05 +02:00
|
|
|
refresh session with id '\geq' the given parameter */
|
|
|
|
GNUNET_PQ_make_prepare ("audit_get_refresh_commitments_incr",
|
|
|
|
"SELECT"
|
|
|
|
" denom.denom_pub"
|
|
|
|
",old_coin_pub"
|
|
|
|
",old_coin_sig"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",noreveal_index"
|
|
|
|
",melt_serial_id"
|
|
|
|
",rc"
|
|
|
|
" FROM refresh_commitments"
|
|
|
|
" JOIN known_coins kc"
|
|
|
|
" ON (refresh_commitments.old_coin_pub = kc.coin_pub)"
|
|
|
|
" JOIN denominations denom"
|
|
|
|
" ON (kc.denom_pub_hash = denom.denom_pub_hash)"
|
|
|
|
" WHERE melt_serial_id>=$1"
|
|
|
|
" ORDER BY melt_serial_id ASC;",
|
|
|
|
1),
|
|
|
|
/* Query the 'refresh_commitments' by coin public key */
|
|
|
|
GNUNET_PQ_make_prepare ("get_refresh_session_by_coin",
|
|
|
|
"SELECT"
|
|
|
|
" rc"
|
|
|
|
",old_coin_sig"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
2020-07-08 15:46:51 +02:00
|
|
|
",kc.denom_pub_hash"
|
2019-10-11 23:28:05 +02:00
|
|
|
",denom.fee_refresh_val "
|
|
|
|
",denom.fee_refresh_frac "
|
|
|
|
",melt_serial_id"
|
|
|
|
" FROM refresh_commitments"
|
2020-07-08 15:46:51 +02:00
|
|
|
" JOIN known_coins kc"
|
|
|
|
" ON (refresh_commitments.old_coin_pub = kc.coin_pub)"
|
|
|
|
" JOIN denominations denom"
|
|
|
|
" USING (denom_pub_hash)"
|
2019-10-11 23:28:05 +02:00
|
|
|
" WHERE old_coin_pub=$1;",
|
|
|
|
1),
|
|
|
|
|
|
|
|
/* Store information about the desired denominations for a
|
|
|
|
refresh operation, used in #postgres_insert_refresh_reveal() */
|
|
|
|
GNUNET_PQ_make_prepare ("insert_refresh_revealed_coin",
|
|
|
|
"INSERT INTO refresh_revealed_coins "
|
|
|
|
"(rc "
|
2020-03-05 23:49:47 +01:00
|
|
|
",freshcoin_index "
|
2019-10-11 23:28:05 +02:00
|
|
|
",link_sig "
|
|
|
|
",denom_pub_hash "
|
|
|
|
",coin_ev"
|
|
|
|
",h_coin_ev"
|
|
|
|
",ev_sig"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6, $7);",
|
|
|
|
7),
|
|
|
|
/* Obtain information about the coins created in a refresh
|
|
|
|
operation, used in #postgres_get_refresh_reveal() */
|
|
|
|
GNUNET_PQ_make_prepare ("get_refresh_revealed_coins",
|
|
|
|
"SELECT "
|
2020-03-05 23:49:47 +01:00
|
|
|
" freshcoin_index"
|
2019-10-11 23:28:05 +02:00
|
|
|
",denom.denom_pub"
|
|
|
|
",link_sig"
|
|
|
|
",coin_ev"
|
|
|
|
",ev_sig"
|
|
|
|
" FROM refresh_revealed_coins"
|
|
|
|
" JOIN denominations denom "
|
|
|
|
" USING (denom_pub_hash)"
|
|
|
|
" WHERE rc=$1"
|
2020-08-08 20:01:56 +02:00
|
|
|
" ORDER BY freshcoin_index ASC;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
|
|
|
|
|
|
|
/* Used in #postgres_insert_refresh_reveal() to store the transfer
|
|
|
|
keys we learned */
|
|
|
|
GNUNET_PQ_make_prepare ("insert_refresh_transfer_keys",
|
|
|
|
"INSERT INTO refresh_transfer_keys "
|
|
|
|
"(rc"
|
|
|
|
",transfer_pub"
|
|
|
|
",transfer_privs"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3);",
|
|
|
|
3),
|
|
|
|
/* Used in #postgres_get_refresh_reveal() to retrieve transfer
|
|
|
|
keys from /refresh/reveal */
|
|
|
|
GNUNET_PQ_make_prepare ("get_refresh_transfer_keys",
|
|
|
|
"SELECT"
|
|
|
|
" transfer_pub"
|
|
|
|
",transfer_privs"
|
|
|
|
" FROM refresh_transfer_keys"
|
|
|
|
" WHERE rc=$1;",
|
|
|
|
1),
|
|
|
|
|
|
|
|
|
|
|
|
/* Used in #postgres_insert_refund() to store refund information */
|
|
|
|
GNUNET_PQ_make_prepare ("insert_refund",
|
|
|
|
"INSERT INTO refunds "
|
|
|
|
"(coin_pub "
|
|
|
|
",merchant_pub "
|
|
|
|
",merchant_sig "
|
|
|
|
",h_contract_terms "
|
|
|
|
",rtransaction_id "
|
|
|
|
",amount_with_fee_val "
|
|
|
|
",amount_with_fee_frac "
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6, $7);",
|
|
|
|
7),
|
|
|
|
/* Query the 'refunds' by coin public key */
|
|
|
|
GNUNET_PQ_make_prepare ("get_refunds_by_coin",
|
|
|
|
"SELECT"
|
|
|
|
" merchant_pub"
|
|
|
|
",merchant_sig"
|
|
|
|
",h_contract_terms"
|
|
|
|
",rtransaction_id"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",denom.fee_refund_val "
|
|
|
|
",denom.fee_refund_frac "
|
|
|
|
",refund_serial_id"
|
|
|
|
" FROM refunds"
|
|
|
|
" JOIN known_coins USING (coin_pub)"
|
|
|
|
" JOIN denominations denom USING (denom_pub_hash)"
|
|
|
|
" WHERE coin_pub=$1;",
|
|
|
|
1),
|
2020-01-17 15:43:04 +01:00
|
|
|
/* Query the 'refunds' by coin public key, merchant_pub and contract hash */
|
|
|
|
GNUNET_PQ_make_prepare ("get_refunds_by_coin_and_contract",
|
|
|
|
"SELECT"
|
|
|
|
" amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
" FROM refunds"
|
|
|
|
" WHERE"
|
|
|
|
" coin_pub=$1"
|
|
|
|
" AND merchant_pub=$2"
|
|
|
|
" AND h_contract_terms=$3;",
|
|
|
|
3),
|
2019-10-11 23:28:05 +02:00
|
|
|
/* Fetch refunds with rowid '\geq' the given parameter */
|
|
|
|
GNUNET_PQ_make_prepare ("audit_get_refunds_incr",
|
|
|
|
"SELECT"
|
|
|
|
" merchant_pub"
|
|
|
|
",merchant_sig"
|
|
|
|
",h_contract_terms"
|
|
|
|
",rtransaction_id"
|
|
|
|
",denom.denom_pub"
|
|
|
|
",coin_pub"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",refund_serial_id"
|
|
|
|
" FROM refunds"
|
|
|
|
" JOIN known_coins kc USING (coin_pub)"
|
|
|
|
" JOIN denominations denom ON (kc.denom_pub_hash = denom.denom_pub_hash)"
|
|
|
|
" WHERE refund_serial_id>=$1"
|
|
|
|
" ORDER BY refund_serial_id ASC;",
|
|
|
|
1),
|
|
|
|
/* Lock deposit table; NOTE: we may want to eventually shard the
|
|
|
|
deposit table to avoid this lock being the main point of
|
|
|
|
contention limiting transaction performance. */
|
|
|
|
GNUNET_PQ_make_prepare ("lock_deposit",
|
|
|
|
"LOCK TABLE deposits;",
|
|
|
|
0),
|
|
|
|
/* Store information about a /deposit the exchange is to execute.
|
|
|
|
Used in #postgres_insert_deposit(). */
|
|
|
|
GNUNET_PQ_make_prepare ("insert_deposit",
|
|
|
|
"INSERT INTO deposits "
|
|
|
|
"(coin_pub"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
2020-05-07 20:22:02 +02:00
|
|
|
",wallet_timestamp"
|
2019-10-11 23:28:05 +02:00
|
|
|
",refund_deadline"
|
|
|
|
",wire_deadline"
|
|
|
|
",merchant_pub"
|
|
|
|
",h_contract_terms"
|
|
|
|
",h_wire"
|
|
|
|
",coin_sig"
|
|
|
|
",wire"
|
2020-05-07 20:22:02 +02:00
|
|
|
",exchange_timestamp"
|
2019-10-11 23:28:05 +02:00
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6, $7, $8, $9, $10,"
|
2020-05-07 20:22:02 +02:00
|
|
|
" $11, $12);",
|
|
|
|
12),
|
2019-10-11 23:28:05 +02:00
|
|
|
/* Fetch an existing deposit request, used to ensure idempotency
|
|
|
|
during /deposit processing. Used in #postgres_have_deposit(). */
|
|
|
|
GNUNET_PQ_make_prepare ("get_deposit",
|
|
|
|
"SELECT"
|
|
|
|
" amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
2020-05-07 20:22:02 +02:00
|
|
|
",denominations.fee_deposit_val"
|
|
|
|
",denominations.fee_deposit_frac"
|
|
|
|
",wallet_timestamp"
|
|
|
|
",exchange_timestamp"
|
2019-10-11 23:28:05 +02:00
|
|
|
",refund_deadline"
|
|
|
|
",wire_deadline"
|
|
|
|
",h_contract_terms"
|
|
|
|
",h_wire"
|
|
|
|
" FROM deposits"
|
2020-05-07 20:22:02 +02:00
|
|
|
" JOIN known_coins USING (coin_pub)"
|
|
|
|
" JOIN denominations USING (denom_pub_hash)"
|
2019-10-11 23:28:05 +02:00
|
|
|
" WHERE ((coin_pub=$1)"
|
|
|
|
" AND (merchant_pub=$3)"
|
2020-08-08 20:01:56 +02:00
|
|
|
" AND (h_contract_terms=$2));",
|
2019-10-11 23:28:05 +02:00
|
|
|
3),
|
|
|
|
/* Fetch deposits with rowid '\geq' the given parameter */
|
|
|
|
GNUNET_PQ_make_prepare ("audit_get_deposits_incr",
|
|
|
|
"SELECT"
|
|
|
|
" amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
2020-05-07 20:22:02 +02:00
|
|
|
",wallet_timestamp"
|
|
|
|
",exchange_timestamp"
|
2019-10-11 23:28:05 +02:00
|
|
|
",merchant_pub"
|
|
|
|
",denom.denom_pub"
|
|
|
|
",coin_pub"
|
|
|
|
",coin_sig"
|
|
|
|
",refund_deadline"
|
|
|
|
",wire_deadline"
|
|
|
|
",h_contract_terms"
|
|
|
|
",wire"
|
|
|
|
",done"
|
|
|
|
",deposit_serial_id"
|
|
|
|
" FROM deposits"
|
|
|
|
" JOIN known_coins USING (coin_pub)"
|
|
|
|
" JOIN denominations denom USING (denom_pub_hash)"
|
|
|
|
" WHERE ("
|
|
|
|
" (deposit_serial_id>=$1)"
|
|
|
|
" )"
|
|
|
|
" ORDER BY deposit_serial_id ASC;",
|
|
|
|
1),
|
|
|
|
/* Fetch an existing deposit request.
|
2020-03-05 23:49:47 +01:00
|
|
|
Used in #postgres_lookup_transfer_by_deposit(). */
|
2019-10-11 23:28:05 +02:00
|
|
|
GNUNET_PQ_make_prepare ("get_deposit_for_wtid",
|
|
|
|
"SELECT"
|
|
|
|
" amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",denom.fee_deposit_val"
|
|
|
|
",denom.fee_deposit_frac"
|
|
|
|
",wire_deadline"
|
|
|
|
" FROM deposits"
|
|
|
|
" JOIN known_coins USING (coin_pub)"
|
|
|
|
" JOIN denominations denom USING (denom_pub_hash)"
|
|
|
|
" WHERE ("
|
|
|
|
" (coin_pub=$1)"
|
|
|
|
" AND (merchant_pub=$2)"
|
|
|
|
" AND (h_contract_terms=$3)"
|
|
|
|
" AND (h_wire=$4)"
|
|
|
|
" );",
|
|
|
|
4),
|
|
|
|
/* Used in #postgres_get_ready_deposit() */
|
|
|
|
GNUNET_PQ_make_prepare ("deposits_get_ready",
|
|
|
|
"SELECT"
|
|
|
|
" deposit_serial_id"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",denom.fee_deposit_val"
|
|
|
|
",denom.fee_deposit_frac"
|
|
|
|
",wire_deadline"
|
|
|
|
",h_contract_terms"
|
|
|
|
",wire"
|
|
|
|
",merchant_pub"
|
|
|
|
",coin_pub"
|
2020-05-07 20:22:02 +02:00
|
|
|
",exchange_timestamp"
|
|
|
|
",wallet_timestamp"
|
2019-10-11 23:28:05 +02:00
|
|
|
" FROM deposits"
|
|
|
|
" JOIN known_coins USING (coin_pub)"
|
|
|
|
" JOIN denominations denom USING (denom_pub_hash)"
|
|
|
|
" WHERE tiny=FALSE"
|
|
|
|
" AND done=FALSE"
|
|
|
|
" AND wire_deadline<=$1"
|
|
|
|
" AND refund_deadline<$1"
|
|
|
|
" ORDER BY wire_deadline ASC"
|
|
|
|
" LIMIT 1;",
|
|
|
|
1),
|
|
|
|
/* Used in #postgres_iterate_matching_deposits() */
|
|
|
|
GNUNET_PQ_make_prepare ("deposits_iterate_matching",
|
|
|
|
"SELECT"
|
|
|
|
" deposit_serial_id"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",denom.fee_deposit_val"
|
|
|
|
",denom.fee_deposit_frac"
|
|
|
|
",h_contract_terms"
|
|
|
|
",coin_pub"
|
|
|
|
" FROM deposits"
|
|
|
|
" JOIN known_coins"
|
|
|
|
" USING (coin_pub)"
|
|
|
|
" JOIN denominations denom"
|
|
|
|
" USING (denom_pub_hash)"
|
|
|
|
" WHERE"
|
|
|
|
" merchant_pub=$1 AND"
|
|
|
|
" h_wire=$2 AND"
|
|
|
|
" done=FALSE"
|
|
|
|
" ORDER BY wire_deadline ASC"
|
|
|
|
" LIMIT "
|
2020-03-05 23:02:38 +01:00
|
|
|
TALER_QUOTE (
|
|
|
|
TALER_EXCHANGEDB_MATCHING_DEPOSITS_LIMIT) ";",
|
2019-10-11 23:28:05 +02:00
|
|
|
2),
|
|
|
|
/* Used in #postgres_mark_deposit_tiny() */
|
|
|
|
GNUNET_PQ_make_prepare ("mark_deposit_tiny",
|
|
|
|
"UPDATE deposits"
|
|
|
|
" SET tiny=TRUE"
|
|
|
|
" WHERE deposit_serial_id=$1",
|
|
|
|
1),
|
|
|
|
/* Used in #postgres_mark_deposit_done() */
|
|
|
|
GNUNET_PQ_make_prepare ("mark_deposit_done",
|
|
|
|
"UPDATE deposits"
|
|
|
|
" SET done=TRUE"
|
|
|
|
" WHERE deposit_serial_id=$1;",
|
|
|
|
1),
|
|
|
|
/* Used in #postgres_test_deposit_done() */
|
|
|
|
GNUNET_PQ_make_prepare ("test_deposit_done",
|
|
|
|
"SELECT done"
|
|
|
|
" FROM deposits"
|
|
|
|
" WHERE coin_pub=$1"
|
|
|
|
" AND merchant_pub=$2"
|
|
|
|
" AND h_contract_terms=$3"
|
|
|
|
" AND h_wire=$4;",
|
|
|
|
5),
|
|
|
|
/* Used in #postgres_get_coin_transactions() to obtain information
|
|
|
|
about how a coin has been spend with /deposit requests. */
|
|
|
|
GNUNET_PQ_make_prepare ("get_deposit_with_coin_pub",
|
|
|
|
"SELECT"
|
|
|
|
" amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",denom.fee_deposit_val"
|
|
|
|
",denom.fee_deposit_frac"
|
2020-07-08 15:46:51 +02:00
|
|
|
",kc.denom_pub_hash"
|
2020-05-07 20:22:02 +02:00
|
|
|
",wallet_timestamp"
|
2019-10-11 23:28:05 +02:00
|
|
|
",refund_deadline"
|
|
|
|
",wire_deadline"
|
|
|
|
",merchant_pub"
|
|
|
|
",h_contract_terms"
|
|
|
|
",h_wire"
|
|
|
|
",wire"
|
|
|
|
",coin_sig"
|
|
|
|
",deposit_serial_id"
|
|
|
|
" FROM deposits"
|
2020-07-08 15:46:51 +02:00
|
|
|
" JOIN known_coins kc"
|
2019-10-11 23:28:05 +02:00
|
|
|
" USING (coin_pub)"
|
|
|
|
" JOIN denominations denom"
|
|
|
|
" USING (denom_pub_hash)"
|
2020-08-08 20:01:56 +02:00
|
|
|
" WHERE coin_pub=$1;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
|
|
|
|
|
|
|
/* Used in #postgres_get_link_data(). */
|
|
|
|
GNUNET_PQ_make_prepare ("get_link",
|
|
|
|
"SELECT "
|
|
|
|
" tp.transfer_pub"
|
|
|
|
",denoms.denom_pub"
|
|
|
|
",rrc.ev_sig"
|
|
|
|
",rrc.link_sig"
|
|
|
|
" FROM refresh_commitments"
|
|
|
|
" JOIN refresh_revealed_coins rrc"
|
|
|
|
" USING (rc)"
|
|
|
|
" JOIN refresh_transfer_keys tp"
|
|
|
|
" USING (rc)"
|
|
|
|
" JOIN denominations denoms"
|
|
|
|
" ON (rrc.denom_pub_hash = denoms.denom_pub_hash)"
|
|
|
|
" WHERE old_coin_pub=$1"
|
|
|
|
" ORDER BY tp.transfer_pub",
|
|
|
|
1),
|
|
|
|
/* Used in #postgres_lookup_wire_transfer */
|
|
|
|
GNUNET_PQ_make_prepare ("lookup_transactions",
|
|
|
|
"SELECT"
|
|
|
|
" aggregation_serial_id"
|
|
|
|
",deposits.h_contract_terms"
|
|
|
|
",deposits.wire"
|
|
|
|
",deposits.h_wire"
|
|
|
|
",deposits.coin_pub"
|
|
|
|
",deposits.merchant_pub"
|
|
|
|
",wire_out.execution_date"
|
|
|
|
",deposits.amount_with_fee_val"
|
|
|
|
",deposits.amount_with_fee_frac"
|
|
|
|
",denom.fee_deposit_val"
|
|
|
|
",denom.fee_deposit_frac"
|
|
|
|
",denom.denom_pub"
|
|
|
|
" FROM aggregation_tracking"
|
|
|
|
" JOIN deposits"
|
|
|
|
" USING (deposit_serial_id)"
|
|
|
|
" JOIN known_coins"
|
|
|
|
" USING (coin_pub)"
|
|
|
|
" JOIN denominations denom"
|
|
|
|
" USING (denom_pub_hash)"
|
|
|
|
" JOIN wire_out"
|
|
|
|
" USING (wtid_raw)"
|
|
|
|
" WHERE wtid_raw=$1;",
|
|
|
|
1),
|
2020-03-05 23:49:47 +01:00
|
|
|
/* Used in #postgres_lookup_transfer_by_deposit */
|
2019-10-11 23:28:05 +02:00
|
|
|
GNUNET_PQ_make_prepare ("lookup_deposit_wtid",
|
|
|
|
"SELECT"
|
|
|
|
" aggregation_tracking.wtid_raw"
|
|
|
|
",wire_out.execution_date"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",denom.fee_deposit_val"
|
|
|
|
",denom.fee_deposit_frac"
|
|
|
|
" FROM deposits"
|
|
|
|
" JOIN aggregation_tracking"
|
|
|
|
" USING (deposit_serial_id)"
|
|
|
|
" JOIN known_coins"
|
|
|
|
" USING (coin_pub)"
|
|
|
|
" JOIN denominations denom"
|
|
|
|
" USING (denom_pub_hash)"
|
|
|
|
" JOIN wire_out"
|
|
|
|
" USING (wtid_raw)"
|
|
|
|
" WHERE coin_pub=$1"
|
|
|
|
" AND h_contract_terms=$2"
|
|
|
|
" AND h_wire=$3"
|
|
|
|
" AND merchant_pub=$4;",
|
|
|
|
4),
|
|
|
|
/* Used in #postgres_insert_aggregation_tracking */
|
|
|
|
GNUNET_PQ_make_prepare ("insert_aggregation_tracking",
|
|
|
|
"INSERT INTO aggregation_tracking "
|
|
|
|
"(deposit_serial_id"
|
|
|
|
",wtid_raw"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2);",
|
|
|
|
2),
|
|
|
|
/* Used in #postgres_get_wire_fee() */
|
|
|
|
GNUNET_PQ_make_prepare ("get_wire_fee",
|
|
|
|
"SELECT "
|
|
|
|
" start_date"
|
|
|
|
",end_date"
|
|
|
|
",wire_fee_val"
|
|
|
|
",wire_fee_frac"
|
|
|
|
",closing_fee_val"
|
|
|
|
",closing_fee_frac"
|
|
|
|
",master_sig"
|
|
|
|
" FROM wire_fee"
|
|
|
|
" WHERE wire_method=$1"
|
|
|
|
" AND start_date <= $2"
|
|
|
|
" AND end_date > $2;",
|
|
|
|
2),
|
|
|
|
/* Used in #postgres_insert_wire_fee */
|
|
|
|
GNUNET_PQ_make_prepare ("insert_wire_fee",
|
|
|
|
"INSERT INTO wire_fee "
|
|
|
|
"(wire_method"
|
|
|
|
",start_date"
|
|
|
|
",end_date"
|
|
|
|
",wire_fee_val"
|
|
|
|
",wire_fee_frac"
|
|
|
|
",closing_fee_val"
|
|
|
|
",closing_fee_frac"
|
|
|
|
",master_sig"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6, $7, $8);",
|
|
|
|
8),
|
|
|
|
/* Used in #postgres_store_wire_transfer_out */
|
|
|
|
GNUNET_PQ_make_prepare ("insert_wire_out",
|
|
|
|
"INSERT INTO wire_out "
|
|
|
|
"(execution_date"
|
|
|
|
",wtid_raw"
|
|
|
|
",wire_target"
|
|
|
|
",exchange_account_section"
|
|
|
|
",amount_val"
|
|
|
|
",amount_frac"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6);",
|
|
|
|
6),
|
|
|
|
/* Used in #postgres_wire_prepare_data_insert() to store
|
|
|
|
wire transfer information before actually committing it with the bank */
|
|
|
|
GNUNET_PQ_make_prepare ("wire_prepare_data_insert",
|
|
|
|
"INSERT INTO prewire "
|
|
|
|
"(type"
|
|
|
|
",buf"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2);",
|
|
|
|
2),
|
|
|
|
/* Used in #postgres_wire_prepare_data_mark_finished() */
|
|
|
|
GNUNET_PQ_make_prepare ("wire_prepare_data_mark_done",
|
|
|
|
"UPDATE prewire"
|
|
|
|
" SET finished=true"
|
|
|
|
" WHERE prewire_uuid=$1;",
|
|
|
|
1),
|
|
|
|
/* Used in #postgres_wire_prepare_data_get() */
|
|
|
|
GNUNET_PQ_make_prepare ("wire_prepare_data_get",
|
|
|
|
"SELECT"
|
|
|
|
" prewire_uuid"
|
|
|
|
",type"
|
|
|
|
",buf"
|
|
|
|
" FROM prewire"
|
|
|
|
" WHERE finished=false"
|
|
|
|
" ORDER BY prewire_uuid ASC"
|
|
|
|
" LIMIT 1;",
|
|
|
|
0),
|
|
|
|
|
|
|
|
/* Used in #postgres_select_deposits_missing_wire */
|
|
|
|
GNUNET_PQ_make_prepare ("deposits_get_overdue",
|
|
|
|
"SELECT"
|
|
|
|
" deposit_serial_id"
|
|
|
|
",coin_pub"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",wire"
|
|
|
|
",wire_deadline"
|
|
|
|
",tiny"
|
|
|
|
",done"
|
|
|
|
" FROM deposits"
|
|
|
|
" WHERE wire_deadline >= $1"
|
|
|
|
" AND wire_deadline < $2"
|
|
|
|
" AND NOT (EXISTS (SELECT 1"
|
|
|
|
" FROM refunds"
|
|
|
|
" WHERE (refunds.coin_pub = deposits.coin_pub))"
|
|
|
|
" OR EXISTS (SELECT 1"
|
|
|
|
" FROM aggregation_tracking"
|
|
|
|
" WHERE (aggregation_tracking.deposit_serial_id = deposits.deposit_serial_id)))"
|
|
|
|
" ORDER BY wire_deadline ASC",
|
|
|
|
2),
|
|
|
|
/* Used in #postgres_select_wire_out_above_serial_id() */
|
|
|
|
GNUNET_PQ_make_prepare ("audit_get_wire_incr",
|
|
|
|
"SELECT"
|
|
|
|
" wireout_uuid"
|
|
|
|
",execution_date"
|
|
|
|
",wtid_raw"
|
|
|
|
",wire_target"
|
|
|
|
",amount_val"
|
|
|
|
",amount_frac"
|
|
|
|
" FROM wire_out"
|
|
|
|
" WHERE wireout_uuid>=$1"
|
|
|
|
" ORDER BY wireout_uuid ASC;",
|
|
|
|
1),
|
|
|
|
/* Used in #postgres_select_wire_out_above_serial_id_by_account() */
|
|
|
|
GNUNET_PQ_make_prepare ("audit_get_wire_incr_by_account",
|
|
|
|
"SELECT"
|
|
|
|
" wireout_uuid"
|
|
|
|
",execution_date"
|
|
|
|
",wtid_raw"
|
|
|
|
",wire_target"
|
|
|
|
",amount_val"
|
|
|
|
",amount_frac"
|
|
|
|
" FROM wire_out"
|
|
|
|
" WHERE wireout_uuid>=$1 AND exchange_account_section=$2"
|
|
|
|
" ORDER BY wireout_uuid ASC;",
|
|
|
|
2),
|
2020-01-18 23:49:37 +01:00
|
|
|
/* Used in #postgres_insert_recoup_request() to store recoup
|
2019-10-11 23:28:05 +02:00
|
|
|
information */
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_make_prepare ("recoup_insert",
|
|
|
|
"INSERT INTO recoup "
|
2019-10-11 23:28:05 +02:00
|
|
|
"(coin_pub"
|
|
|
|
",coin_sig"
|
|
|
|
",coin_blind"
|
|
|
|
",amount_val"
|
|
|
|
",amount_frac"
|
|
|
|
",timestamp"
|
|
|
|
",h_blind_ev"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6, $7);",
|
|
|
|
7),
|
2020-03-20 09:22:29 +01:00
|
|
|
/* Used in #postgres_insert_recoup_refresh_request() to store recoup-refresh
|
2019-10-11 23:28:05 +02:00
|
|
|
information */
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_make_prepare ("recoup_refresh_insert",
|
|
|
|
"INSERT INTO recoup_refresh "
|
2019-10-11 23:28:05 +02:00
|
|
|
"(coin_pub"
|
|
|
|
",coin_sig"
|
|
|
|
",coin_blind"
|
|
|
|
",amount_val"
|
|
|
|
",amount_frac"
|
|
|
|
",timestamp"
|
|
|
|
",h_blind_ev"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6, $7);",
|
|
|
|
7),
|
2020-01-18 23:49:37 +01:00
|
|
|
/* Used in #postgres_select_recoup_above_serial_id() to obtain recoup transactions */
|
|
|
|
GNUNET_PQ_make_prepare ("recoup_get_incr",
|
2019-10-11 23:28:05 +02:00
|
|
|
"SELECT"
|
2020-01-18 23:49:37 +01:00
|
|
|
" recoup_uuid"
|
2019-10-11 23:28:05 +02:00
|
|
|
",timestamp"
|
|
|
|
",ro.reserve_pub"
|
|
|
|
",coin_pub"
|
|
|
|
",coin_sig"
|
|
|
|
",coin_blind"
|
|
|
|
",h_blind_ev"
|
|
|
|
",coins.denom_pub_hash"
|
|
|
|
",coins.denom_sig"
|
2020-03-26 20:54:41 +01:00
|
|
|
",denoms.denom_pub"
|
2019-10-11 23:28:05 +02:00
|
|
|
",amount_val"
|
|
|
|
",amount_frac"
|
2020-01-18 23:49:37 +01:00
|
|
|
" FROM recoup"
|
2019-10-11 23:28:05 +02:00
|
|
|
" JOIN known_coins coins"
|
|
|
|
" USING (coin_pub)"
|
|
|
|
" JOIN reserves_out ro"
|
|
|
|
" USING (h_blind_ev)"
|
|
|
|
" JOIN denominations denoms"
|
|
|
|
" ON (coins.denom_pub_hash = denoms.denom_pub_hash)"
|
2020-01-18 23:49:37 +01:00
|
|
|
" WHERE recoup_uuid>=$1"
|
|
|
|
" ORDER BY recoup_uuid ASC;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
2020-01-18 23:49:37 +01:00
|
|
|
/* Used in #postgres_select_recoup_refresh_above_serial_id() to obtain
|
|
|
|
recoup-refresh transactions */
|
|
|
|
GNUNET_PQ_make_prepare ("recoup_refresh_get_incr",
|
2019-10-11 23:28:05 +02:00
|
|
|
"SELECT"
|
2020-01-18 23:49:37 +01:00
|
|
|
" recoup_refresh_uuid"
|
2019-10-11 23:28:05 +02:00
|
|
|
",timestamp"
|
|
|
|
",rc.old_coin_pub"
|
2020-03-26 20:54:41 +01:00
|
|
|
",old_coins.denom_pub_hash AS old_denom_pub_hash"
|
|
|
|
",recoup_refresh.coin_pub"
|
2019-10-11 23:28:05 +02:00
|
|
|
",coin_sig"
|
|
|
|
",coin_blind"
|
|
|
|
",denoms.denom_pub"
|
2020-03-26 20:54:41 +01:00
|
|
|
",h_blind_ev"
|
|
|
|
",new_coins.denom_pub_hash"
|
|
|
|
",new_coins.denom_sig"
|
2019-10-11 23:28:05 +02:00
|
|
|
",amount_val"
|
|
|
|
",amount_frac"
|
2020-01-18 23:49:37 +01:00
|
|
|
" FROM recoup_refresh"
|
2020-03-26 20:54:41 +01:00
|
|
|
" INNER JOIN refresh_revealed_coins rrc"
|
2020-03-26 20:06:23 +01:00
|
|
|
" ON (rrc.h_coin_ev = h_blind_ev)"
|
2020-03-26 20:54:41 +01:00
|
|
|
" INNER JOIN refresh_commitments rc"
|
2019-10-11 23:28:05 +02:00
|
|
|
" ON (rrc.rc = rc.rc)"
|
2020-03-26 20:54:41 +01:00
|
|
|
" INNER JOIN known_coins old_coins"
|
|
|
|
" ON (rc.old_coin_pub = old_coins.coin_pub)"
|
|
|
|
" INNER JOIN known_coins new_coins"
|
|
|
|
" ON (new_coins.coin_pub = recoup_refresh.coin_pub)"
|
|
|
|
" INNER JOIN denominations denoms"
|
|
|
|
" ON (new_coins.denom_pub_hash = denoms.denom_pub_hash)"
|
2020-01-18 23:49:37 +01:00
|
|
|
" WHERE recoup_refresh_uuid>=$1"
|
|
|
|
" ORDER BY recoup_refresh_uuid ASC;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
|
|
|
/* Used in #postgres_select_reserve_closed_above_serial_id() to
|
|
|
|
obtain information about closed reserves */
|
|
|
|
GNUNET_PQ_make_prepare ("reserves_close_get_incr",
|
|
|
|
"SELECT"
|
|
|
|
" close_uuid"
|
|
|
|
",reserve_pub"
|
|
|
|
",execution_date"
|
|
|
|
",wtid"
|
|
|
|
",receiver_account"
|
|
|
|
",amount_val"
|
|
|
|
",amount_frac"
|
|
|
|
",closing_fee_val"
|
|
|
|
",closing_fee_frac"
|
|
|
|
" FROM reserves_close"
|
|
|
|
" WHERE close_uuid>=$1"
|
|
|
|
" ORDER BY close_uuid ASC;",
|
|
|
|
1),
|
2020-01-18 23:49:37 +01:00
|
|
|
/* Used in #postgres_get_reserve_history() to obtain recoup transactions
|
2019-10-11 23:28:05 +02:00
|
|
|
for a reserve */
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_make_prepare ("recoup_by_reserve",
|
2019-10-11 23:28:05 +02:00
|
|
|
"SELECT"
|
|
|
|
" coin_pub"
|
|
|
|
",coin_sig"
|
|
|
|
",coin_blind"
|
|
|
|
",amount_val"
|
|
|
|
",amount_frac"
|
|
|
|
",timestamp"
|
|
|
|
",coins.denom_pub_hash"
|
|
|
|
",coins.denom_sig"
|
2020-01-18 23:49:37 +01:00
|
|
|
" FROM recoup"
|
2019-10-11 23:28:05 +02:00
|
|
|
" JOIN known_coins coins"
|
|
|
|
" USING (coin_pub)"
|
|
|
|
" JOIN reserves_out ro"
|
|
|
|
" USING (h_blind_ev)"
|
2020-08-08 20:01:56 +02:00
|
|
|
" WHERE ro.reserve_pub=$1;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
2020-01-18 23:49:37 +01:00
|
|
|
/* Used in #postgres_get_coin_transactions() to obtain recoup transactions
|
2019-10-11 23:28:05 +02:00
|
|
|
affecting old coins of refreshed coins */
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_make_prepare ("recoup_by_old_coin",
|
2019-10-11 23:28:05 +02:00
|
|
|
"SELECT"
|
|
|
|
" coin_pub"
|
|
|
|
",coin_sig"
|
|
|
|
",coin_blind"
|
|
|
|
",amount_val"
|
|
|
|
",amount_frac"
|
|
|
|
",timestamp"
|
|
|
|
",coins.denom_pub_hash"
|
|
|
|
",coins.denom_sig"
|
2020-01-18 23:49:37 +01:00
|
|
|
",recoup_refresh_uuid"
|
|
|
|
" FROM recoup_refresh"
|
2020-07-08 15:46:51 +02:00
|
|
|
" JOIN known_coins coins"
|
|
|
|
" USING (coin_pub)"
|
2019-10-11 23:28:05 +02:00
|
|
|
" WHERE h_blind_ev IN"
|
|
|
|
" (SELECT rrc.h_coin_ev"
|
|
|
|
" FROM refresh_commitments"
|
|
|
|
" JOIN refresh_revealed_coins rrc"
|
|
|
|
" USING (rc)"
|
2020-08-08 20:01:56 +02:00
|
|
|
" WHERE old_coin_pub=$1);",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
|
|
|
/* Used in #postgres_get_reserve_history() */
|
|
|
|
GNUNET_PQ_make_prepare ("close_by_reserve",
|
|
|
|
"SELECT"
|
|
|
|
" amount_val"
|
|
|
|
",amount_frac"
|
|
|
|
",closing_fee_val"
|
|
|
|
",closing_fee_frac"
|
|
|
|
",execution_date"
|
|
|
|
",receiver_account"
|
|
|
|
",wtid"
|
|
|
|
" FROM reserves_close"
|
2020-08-08 20:01:56 +02:00
|
|
|
" WHERE reserve_pub=$1;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
|
|
|
/* Used in #postgres_get_expired_reserves() */
|
|
|
|
GNUNET_PQ_make_prepare ("get_expired_reserves",
|
|
|
|
"SELECT"
|
|
|
|
" expiration_date"
|
|
|
|
",account_details"
|
|
|
|
",reserve_pub"
|
|
|
|
",current_balance_val"
|
|
|
|
",current_balance_frac"
|
|
|
|
" FROM reserves"
|
|
|
|
" WHERE expiration_date<=$1"
|
|
|
|
" AND (current_balance_val != 0 "
|
|
|
|
" OR current_balance_frac != 0)"
|
|
|
|
" ORDER BY expiration_date ASC"
|
|
|
|
" LIMIT 1;",
|
|
|
|
1),
|
2020-01-18 23:49:37 +01:00
|
|
|
/* Used in #postgres_get_coin_transactions() to obtain recoup transactions
|
2019-10-11 23:28:05 +02:00
|
|
|
for a coin */
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_make_prepare ("recoup_by_coin",
|
2019-10-11 23:28:05 +02:00
|
|
|
"SELECT"
|
|
|
|
" ro.reserve_pub"
|
2020-07-08 15:46:51 +02:00
|
|
|
",coins.denom_pub_hash"
|
2019-10-11 23:28:05 +02:00
|
|
|
",coin_sig"
|
|
|
|
",coin_blind"
|
|
|
|
",amount_val"
|
|
|
|
",amount_frac"
|
|
|
|
",timestamp"
|
2020-01-18 23:49:37 +01:00
|
|
|
",recoup_uuid"
|
|
|
|
" FROM recoup"
|
2020-07-08 15:46:51 +02:00
|
|
|
" JOIN reserves_out ro"
|
|
|
|
" USING (h_blind_ev)"
|
|
|
|
" JOIN known_coins coins"
|
|
|
|
" USING (coin_pub)"
|
2020-08-08 20:01:56 +02:00
|
|
|
" WHERE recoup.coin_pub=$1;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
2020-01-18 23:49:37 +01:00
|
|
|
/* Used in #postgres_get_coin_transactions() to obtain recoup transactions
|
2019-10-11 23:28:05 +02:00
|
|
|
for a refreshed coin */
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_make_prepare ("recoup_by_refreshed_coin",
|
2019-10-11 23:28:05 +02:00
|
|
|
"SELECT"
|
|
|
|
" rc.old_coin_pub"
|
|
|
|
",coin_sig"
|
|
|
|
",coin_blind"
|
|
|
|
",amount_val"
|
|
|
|
",amount_frac"
|
|
|
|
",timestamp"
|
|
|
|
",coins.denom_pub_hash"
|
|
|
|
",coins.denom_sig"
|
2020-01-18 23:49:37 +01:00
|
|
|
",recoup_refresh_uuid"
|
|
|
|
" FROM recoup_refresh"
|
2019-10-11 23:28:05 +02:00
|
|
|
" JOIN refresh_revealed_coins rrc"
|
2020-03-20 09:22:29 +01:00
|
|
|
" ON (rrc.h_coin_ev = h_blind_ev)"
|
2019-10-11 23:28:05 +02:00
|
|
|
" JOIN refresh_commitments rc"
|
|
|
|
" ON (rrc.rc = rc.rc)"
|
|
|
|
" JOIN known_coins coins"
|
|
|
|
" USING (coin_pub)"
|
2020-08-08 20:01:56 +02:00
|
|
|
" WHERE coin_pub=$1;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
|
|
|
/* Used in #postgres_get_reserve_by_h_blind() */
|
|
|
|
GNUNET_PQ_make_prepare ("reserve_by_h_blind",
|
|
|
|
"SELECT"
|
|
|
|
" reserve_pub"
|
|
|
|
" FROM reserves_out"
|
|
|
|
" WHERE h_blind_ev=$1"
|
2020-08-08 20:01:56 +02:00
|
|
|
" LIMIT 1;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
|
|
|
/* Used in #postgres_get_old_coin_by_h_blind() */
|
|
|
|
GNUNET_PQ_make_prepare ("old_coin_by_h_blind",
|
|
|
|
"SELECT"
|
|
|
|
" rcom.old_coin_pub"
|
|
|
|
" FROM refresh_revealed_coins"
|
|
|
|
" JOIN refresh_commitments rcom"
|
|
|
|
" USING (rc)"
|
|
|
|
" WHERE h_coin_ev=$1"
|
2020-08-08 20:01:56 +02:00
|
|
|
" LIMIT 1;",
|
2019-10-11 23:28:05 +02:00
|
|
|
1),
|
|
|
|
/* used in #postgres_commit */
|
|
|
|
GNUNET_PQ_make_prepare ("do_commit",
|
|
|
|
"COMMIT",
|
|
|
|
0),
|
|
|
|
GNUNET_PQ_PREPARED_STATEMENT_END
|
|
|
|
};
|
2018-08-10 22:30:38 +02:00
|
|
|
|
2020-02-09 16:34:40 +01:00
|
|
|
db_conn = GNUNET_PQ_connect_with_cfg (pc->cfg,
|
|
|
|
"exchangedb-postgres",
|
|
|
|
NULL,
|
|
|
|
es,
|
|
|
|
ps);
|
2019-10-11 23:28:05 +02:00
|
|
|
}
|
|
|
|
if (NULL == db_conn)
|
|
|
|
return NULL;
|
2016-03-01 15:35:04 +01:00
|
|
|
session = GNUNET_new (struct TALER_EXCHANGEDB_Session);
|
2015-03-20 23:51:28 +01:00
|
|
|
session->conn = db_conn;
|
2020-01-20 11:15:19 +01:00
|
|
|
if (pthread_equal (pc->main_self,
|
|
|
|
pthread_self ()))
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2020-01-20 11:15:19 +01:00
|
|
|
pc->main_session = session;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (0 != pthread_setspecific (pc->db_conn_threadlocal,
|
|
|
|
session))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_PQ_disconnect (db_conn);
|
|
|
|
GNUNET_free (session);
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
2015-03-20 23:51:28 +01:00
|
|
|
return session;
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
|
|
|
|
2020-01-15 15:44:24 +01:00
|
|
|
|
2020-01-15 12:34:54 +01:00
|
|
|
/**
|
|
|
|
* Do a pre-flight check that we are not in an uncommitted transaction.
|
|
|
|
* If we are, try to commit the previous transaction and output a warning.
|
|
|
|
* Does not return anything, as we will continue regardless of the outcome.
|
|
|
|
*
|
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session the database connection
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
postgres_preflight (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session);
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
/**
|
2015-01-28 22:18:53 +01:00
|
|
|
* Start a transaction.
|
2015-01-08 18:37:20 +01:00
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session the database connection
|
2018-03-12 11:33:10 +01:00
|
|
|
* @param name unique name identifying the transaction (for debugging)
|
2019-10-11 23:28:05 +02:00
|
|
|
* must point to a constant
|
2015-01-28 22:18:53 +01:00
|
|
|
* @return #GNUNET_OK on success
|
2015-01-08 18:37:20 +01:00
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
|
|
|
postgres_start (void *cls,
|
2018-03-12 11:33:10 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const char *name)
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_ExecuteStatement es[] = {
|
|
|
|
GNUNET_PQ_make_execute ("START TRANSACTION ISOLATION LEVEL SERIALIZABLE"),
|
|
|
|
GNUNET_PQ_EXECUTE_STATEMENT_END
|
|
|
|
};
|
2015-01-28 22:18:53 +01:00
|
|
|
|
2020-01-16 00:11:51 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Starting transaction named: %s\n",
|
|
|
|
name);
|
|
|
|
|
2020-01-15 12:34:54 +01:00
|
|
|
postgres_preflight (cls,
|
|
|
|
session);
|
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2018-08-10 22:30:38 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Starting transaction on %p\n",
|
|
|
|
session->conn);
|
2019-10-11 23:28:05 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_exec_statements (session->conn,
|
|
|
|
es))
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2019-10-11 23:28:05 +02:00
|
|
|
TALER_LOG_ERROR ("Failed to start transaction\n");
|
2015-01-28 22:18:53 +01:00
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2018-03-12 11:33:10 +01:00
|
|
|
session->transaction_name = name;
|
2015-01-28 22:18:53 +01:00
|
|
|
return GNUNET_OK;
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-01-28 22:18:53 +01:00
|
|
|
* Roll back the current transaction of a database connection.
|
2015-01-08 18:37:20 +01:00
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session the database connection
|
2015-01-28 14:57:55 +01:00
|
|
|
* @return #GNUNET_OK on success
|
2015-01-08 18:37:20 +01:00
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static void
|
|
|
|
postgres_rollback (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session)
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_ExecuteStatement es[] = {
|
|
|
|
GNUNET_PQ_make_execute ("ROLLBACK"),
|
|
|
|
GNUNET_PQ_EXECUTE_STATEMENT_END
|
|
|
|
};
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2018-08-10 22:30:38 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Rolling back transaction on %p\n",
|
|
|
|
session->conn);
|
2019-10-11 23:28:05 +02:00
|
|
|
GNUNET_break (GNUNET_OK ==
|
|
|
|
GNUNET_PQ_exec_statements (session->conn,
|
|
|
|
es));
|
2018-03-12 11:33:10 +01:00
|
|
|
session->transaction_name = NULL;
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-25 02:06:03 +02:00
|
|
|
/**
|
|
|
|
* Commit the current transaction of a database connection.
|
|
|
|
*
|
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session the database connection
|
2017-06-11 01:59:09 +02:00
|
|
|
* @return final transaction status
|
2017-05-25 02:06:03 +02:00
|
|
|
*/
|
2017-06-11 01:59:09 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-05-25 02:06:03 +02:00
|
|
|
postgres_commit (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session)
|
|
|
|
{
|
2017-06-11 01:59:09 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2018-03-12 11:33:10 +01:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-05-25 02:06:03 +02:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2018-03-12 11:33:10 +01:00
|
|
|
qs = GNUNET_PQ_eval_prepared_non_select (session->conn,
|
|
|
|
"do_commit",
|
|
|
|
params);
|
|
|
|
session->transaction_name = NULL;
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Do a pre-flight check that we are not in an uncommitted transaction.
|
|
|
|
* If we are, try to commit the previous transaction and output a warning.
|
|
|
|
* Does not return anything, as we will continue regardless of the outcome.
|
|
|
|
*
|
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session the database connection
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
postgres_preflight (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session)
|
|
|
|
{
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_ExecuteStatement es[] = {
|
2020-01-15 12:34:54 +01:00
|
|
|
GNUNET_PQ_make_execute ("ROLLBACK"),
|
2019-10-11 23:28:05 +02:00
|
|
|
GNUNET_PQ_EXECUTE_STATEMENT_END
|
|
|
|
};
|
2018-03-12 11:33:10 +01:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2018-03-12 11:33:10 +01:00
|
|
|
if (NULL == session->transaction_name)
|
|
|
|
return; /* all good */
|
2019-10-11 23:28:05 +02:00
|
|
|
if (GNUNET_OK ==
|
|
|
|
GNUNET_PQ_exec_statements (session->conn,
|
|
|
|
es))
|
2018-03-12 11:33:10 +01:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2020-01-16 00:11:51 +01:00
|
|
|
"BUG: Preflight check rolled back transaction `%s'!\n",
|
2018-03-12 11:33:10 +01:00
|
|
|
session->transaction_name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2020-01-16 00:11:51 +01:00
|
|
|
"BUG: Preflight check failed to rollback transaction `%s'!\n",
|
2018-03-12 11:33:10 +01:00
|
|
|
session->transaction_name);
|
|
|
|
}
|
|
|
|
session->transaction_name = NULL;
|
2017-05-25 02:06:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-12 16:38:03 +02:00
|
|
|
/**
|
2015-06-04 10:28:21 +02:00
|
|
|
* Insert a denomination key's public information into the database for
|
|
|
|
* reference by auditors and other consistency checks.
|
2015-04-12 16:38:03 +02:00
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
2015-05-16 18:26:34 +02:00
|
|
|
* @param session connection to use
|
2015-06-11 14:58:23 +02:00
|
|
|
* @param denom_pub the public key used for signing coins of this denomination
|
|
|
|
* @param issue issuing information with value, fees and other info about the coin
|
2017-06-15 22:10:12 +02:00
|
|
|
* @return status of the query
|
2015-04-12 16:38:03 +02:00
|
|
|
*/
|
2017-06-15 22:10:12 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_denomination_info (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
|
|
|
const struct TALER_EXCHANGEDB_DenominationKeyInformationP *issue)
|
2015-04-12 16:38:03 +02:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2017-04-16 18:34:31 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&issue->properties.denom_hash),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_rsa_public_key (denom_pub->rsa_public_key),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&issue->properties.master),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&issue->signature),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time_nbo (&issue->properties.start),
|
|
|
|
TALER_PQ_query_param_absolute_time_nbo (&issue->properties.expire_withdraw),
|
|
|
|
TALER_PQ_query_param_absolute_time_nbo (&issue->properties.expire_deposit),
|
|
|
|
TALER_PQ_query_param_absolute_time_nbo (&issue->properties.expire_legal),
|
2015-07-06 10:16:49 +02:00
|
|
|
TALER_PQ_query_param_amount_nbo (&issue->properties.value),
|
|
|
|
TALER_PQ_query_param_amount_nbo (&issue->properties.fee_withdraw),
|
|
|
|
TALER_PQ_query_param_amount_nbo (&issue->properties.fee_deposit),
|
|
|
|
TALER_PQ_query_param_amount_nbo (&issue->properties.fee_refresh),
|
2016-04-20 01:50:26 +02:00
|
|
|
TALER_PQ_query_param_amount_nbo (&issue->properties.fee_refund),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
2015-04-12 16:38:03 +02:00
|
|
|
};
|
2017-04-02 00:05:20 +02:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2015-06-03 15:41:09 +02:00
|
|
|
/* check fees match coin currency */
|
|
|
|
GNUNET_assert (GNUNET_YES ==
|
2015-07-06 10:16:49 +02:00
|
|
|
TALER_amount_cmp_currency_nbo (&issue->properties.value,
|
|
|
|
&issue->properties.fee_withdraw));
|
2015-06-03 15:41:09 +02:00
|
|
|
GNUNET_assert (GNUNET_YES ==
|
2015-07-06 10:16:49 +02:00
|
|
|
TALER_amount_cmp_currency_nbo (&issue->properties.value,
|
|
|
|
&issue->properties.fee_deposit));
|
2015-06-03 15:41:09 +02:00
|
|
|
GNUNET_assert (GNUNET_YES ==
|
2015-07-06 10:16:49 +02:00
|
|
|
TALER_amount_cmp_currency_nbo (&issue->properties.value,
|
|
|
|
&issue->properties.fee_refresh));
|
2016-04-20 01:50:26 +02:00
|
|
|
GNUNET_assert (GNUNET_YES ==
|
|
|
|
TALER_amount_cmp_currency_nbo (&issue->properties.value,
|
2019-08-25 16:18:24 +02:00
|
|
|
&issue->properties.fee_refund));
|
2015-06-03 15:41:09 +02:00
|
|
|
|
2017-06-15 22:10:12 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"denomination_insert",
|
|
|
|
params);
|
2015-04-12 16:38:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-12 10:28:17 +02:00
|
|
|
/**
|
|
|
|
* Fetch information about a denomination key.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
2015-07-05 13:35:47 +02:00
|
|
|
* @param session connection to use
|
2019-05-02 21:16:51 +02:00
|
|
|
* @param denom_pub_hash hash of the public key used for signing coins of this denomination
|
2017-06-23 13:16:12 +02:00
|
|
|
* @param[out] issue set to issue information with value, fees and other info about the coin
|
|
|
|
* @return transaction status code
|
2015-06-12 10:28:17 +02:00
|
|
|
*/
|
2017-06-23 13:16:12 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_get_denomination_info (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct GNUNET_HashCode *denom_pub_hash,
|
|
|
|
struct TALER_EXCHANGEDB_DenominationKeyInformationP *issue)
|
2015-06-12 10:28:17 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-06-23 13:16:12 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2019-05-02 21:16:51 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (denom_pub_hash),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
2015-06-12 10:28:17 +02:00
|
|
|
};
|
2017-06-23 13:16:12 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("master_pub",
|
2019-08-17 21:35:21 +02:00
|
|
|
&issue->properties.master),
|
2017-06-23 13:16:12 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("master_sig",
|
2019-08-17 21:35:21 +02:00
|
|
|
&issue->signature),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time_nbo ("valid_from",
|
2019-08-17 21:35:21 +02:00
|
|
|
&issue->properties.start),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time_nbo ("expire_withdraw",
|
2019-08-17 21:35:21 +02:00
|
|
|
&issue->properties.expire_withdraw),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time_nbo ("expire_deposit",
|
2019-08-17 21:35:21 +02:00
|
|
|
&issue->properties.expire_deposit),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time_nbo ("expire_legal",
|
2019-08-17 21:35:21 +02:00
|
|
|
&issue->properties.expire_legal),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT_NBO ("coin",
|
|
|
|
&issue->properties.value),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT_NBO ("fee_withdraw",
|
|
|
|
&issue->properties.fee_withdraw),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT_NBO ("fee_deposit",
|
|
|
|
&issue->properties.fee_deposit),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT_NBO ("fee_refresh",
|
|
|
|
&issue->properties.fee_refresh),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT_NBO ("fee_refund",
|
|
|
|
&issue->properties.fee_refund),
|
2017-06-23 13:16:12 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2015-06-12 10:28:17 +02:00
|
|
|
|
2017-06-23 13:16:12 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"denomination_get",
|
|
|
|
params,
|
|
|
|
rs);
|
2017-06-23 13:16:12 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
|
|
|
return qs;
|
2019-08-25 16:18:24 +02:00
|
|
|
issue->properties.purpose.size = htonl (sizeof (struct
|
|
|
|
TALER_DenominationKeyValidityPS));
|
|
|
|
issue->properties.purpose.purpose = htonl (
|
|
|
|
TALER_SIGNATURE_MASTER_DENOMINATION_KEY_VALIDITY);
|
2019-05-02 21:16:51 +02:00
|
|
|
issue->properties.denom_hash = *denom_pub_hash;
|
2017-06-23 13:16:12 +02:00
|
|
|
return qs;
|
2015-06-12 10:28:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-16 23:52:12 +01:00
|
|
|
/**
|
|
|
|
* Closure for #domination_cb_helper()
|
|
|
|
*/
|
2019-02-16 21:38:12 +01:00
|
|
|
struct DenomIteratorContext
|
|
|
|
{
|
2019-02-16 23:52:12 +01:00
|
|
|
/**
|
|
|
|
* Function to call with the results.
|
|
|
|
*/
|
2020-03-05 23:02:38 +01:00
|
|
|
TALER_EXCHANGEDB_DenominationCallback cb;
|
2019-02-16 23:52:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure to pass to @e cb
|
|
|
|
*/
|
2019-02-16 21:38:12 +01:00
|
|
|
void *cb_cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
2019-02-16 21:38:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function for #postgres_iterate_denomination_info().
|
|
|
|
* Calls the callback with each denomination key.
|
|
|
|
*
|
|
|
|
* @param cls a `struct DenomIteratorContext`
|
|
|
|
* @param result db results
|
|
|
|
* @param num_results number of results in @a result
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
domination_cb_helper (void *cls,
|
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
|
|
|
{
|
|
|
|
struct DenomIteratorContext *dic = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = dic->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2019-02-16 21:38:12 +01:00
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_DenominationKeyInformationP issue;
|
|
|
|
struct TALER_DenominationPublicKey denom_pub;
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("master_pub",
|
|
|
|
&issue.properties.master),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("master_sig",
|
|
|
|
&issue.signature),
|
|
|
|
TALER_PQ_result_spec_absolute_time_nbo ("valid_from",
|
|
|
|
&issue.properties.start),
|
|
|
|
TALER_PQ_result_spec_absolute_time_nbo ("expire_withdraw",
|
|
|
|
&issue.properties.expire_withdraw),
|
|
|
|
TALER_PQ_result_spec_absolute_time_nbo ("expire_deposit",
|
|
|
|
&issue.properties.expire_deposit),
|
|
|
|
TALER_PQ_result_spec_absolute_time_nbo ("expire_legal",
|
|
|
|
&issue.properties.expire_legal),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT_NBO ("coin",
|
|
|
|
&issue.properties.value),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT_NBO ("fee_withdraw",
|
|
|
|
&issue.properties.fee_withdraw),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT_NBO ("fee_deposit",
|
|
|
|
&issue.properties.fee_deposit),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT_NBO ("fee_refresh",
|
|
|
|
&issue.properties.fee_refresh),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT_NBO ("fee_refund",
|
|
|
|
&issue.properties.fee_refund),
|
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&denom_pub.rsa_public_key),
|
|
|
|
GNUNET_PQ_result_spec_end
|
2019-02-16 21:38:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
issue.properties.purpose.size
|
|
|
|
= htonl (sizeof (struct TALER_DenominationKeyValidityPS));
|
|
|
|
issue.properties.purpose.purpose
|
|
|
|
= htonl (TALER_SIGNATURE_MASTER_DENOMINATION_KEY_VALIDITY);
|
|
|
|
GNUNET_CRYPTO_rsa_public_key_hash (denom_pub.rsa_public_key,
|
|
|
|
&issue.properties.denom_hash);
|
|
|
|
dic->cb (dic->cb_cls,
|
|
|
|
&denom_pub,
|
|
|
|
&issue);
|
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (denom_pub.rsa_public_key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-14 13:41:46 +01:00
|
|
|
/**
|
|
|
|
* Fetch information about all known denomination keys.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param cb function to call on each denomination key
|
|
|
|
* @param cb_cls closure for @a cb
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
|
|
|
postgres_iterate_denomination_info (void *cls,
|
2020-03-05 23:02:38 +01:00
|
|
|
TALER_EXCHANGEDB_DenominationCallback cb,
|
2019-02-14 13:41:46 +01:00
|
|
|
void *cb_cls)
|
|
|
|
{
|
2019-02-16 21:38:12 +01:00
|
|
|
struct PostgresClosure *pc = cls;
|
2019-02-14 13:41:46 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2019-02-16 21:38:12 +01:00
|
|
|
struct DenomIteratorContext dic = {
|
|
|
|
.cb = cb,
|
2019-08-17 21:35:21 +02:00
|
|
|
.cb_cls = cb_cls,
|
|
|
|
.pg = pc
|
2019-02-16 21:38:12 +01:00
|
|
|
};
|
2020-07-05 16:32:15 +02:00
|
|
|
struct TALER_EXCHANGEDB_Session *session;
|
2019-02-14 13:41:46 +01:00
|
|
|
|
2020-07-05 16:32:15 +02:00
|
|
|
session = postgres_get_session (pc);
|
|
|
|
if (NULL == session)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"denomination_iterate",
|
|
|
|
params,
|
|
|
|
&domination_cb_helper,
|
|
|
|
&dic);
|
2019-02-14 13:41:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-05 16:16:38 +01:00
|
|
|
/**
|
|
|
|
* Get the summary of a reserve.
|
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session the database connection handle
|
2015-06-04 10:35:37 +02:00
|
|
|
* @param[in,out] reserve the reserve data. The public key of the reserve should be
|
|
|
|
* set in this structure; it is used to query the database. The balance
|
2015-03-05 16:31:33 +01:00
|
|
|
* and expiration are then filled accordingly.
|
2017-06-11 02:12:56 +02:00
|
|
|
* @return transaction status
|
2015-03-05 16:16:38 +01:00
|
|
|
*/
|
2017-06-11 02:12:56 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-05 23:02:38 +01:00
|
|
|
postgres_reserves_get (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
struct TALER_EXCHANGEDB_Reserve *reserve)
|
2015-03-05 16:16:38 +01:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&reserve->pub),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
2015-03-05 16:16:38 +01:00
|
|
|
};
|
2017-06-11 02:12:56 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-25 16:18:24 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("current_balance", &reserve->balance),
|
|
|
|
TALER_PQ_result_spec_absolute_time ("expiration_date", &reserve->expiry),
|
|
|
|
TALER_PQ_result_spec_absolute_time ("gc_date", &reserve->gc),
|
2017-06-11 02:12:56 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2015-03-05 16:16:38 +01:00
|
|
|
|
2017-06-11 02:12:56 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2020-03-05 23:02:38 +01:00
|
|
|
"reserves_get",
|
2017-06-11 02:12:56 +02:00
|
|
|
params,
|
|
|
|
rs);
|
2015-03-05 16:16:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-05 18:16:32 +01:00
|
|
|
/**
|
|
|
|
* Updates a reserve with the data from the given reserve structure.
|
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session the database connection
|
2015-03-05 18:16:32 +01:00
|
|
|
* @param reserve the reserve structure whose data will be used to update the
|
|
|
|
* corresponding record in the database.
|
2017-06-18 14:43:28 +02:00
|
|
|
* @return transaction status
|
2015-03-05 18:16:32 +01:00
|
|
|
*/
|
2017-06-18 14:43:28 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2015-06-04 10:35:37 +02:00
|
|
|
reserves_update (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_EXCHANGEDB_Reserve *reserve)
|
2015-03-05 18:16:32 +01:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (&reserve->expiry),
|
2019-07-24 12:19:36 +02:00
|
|
|
TALER_PQ_query_param_absolute_time (&reserve->gc),
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_amount (&reserve->balance),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&reserve->pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-03-05 18:16:32 +01:00
|
|
|
};
|
2017-05-14 15:44:36 +02:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-06-18 14:43:28 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-07-21 20:15:11 +02:00
|
|
|
"reserve_update",
|
|
|
|
params);
|
2015-03-05 18:16:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-06-05 13:48:57 +02:00
|
|
|
* Insert an incoming transaction into reserves. New reserves are also created
|
2020-01-17 20:07:57 +01:00
|
|
|
* through this function.
|
2015-03-05 18:16:32 +01:00
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session the database connection handle
|
2015-05-13 15:57:35 +02:00
|
|
|
* @param reserve_pub public key of the reserve
|
2015-03-05 18:16:32 +01:00
|
|
|
* @param balance the amount that has to be added to the reserve
|
2015-07-01 00:01:21 +02:00
|
|
|
* @param execution_time when was the amount added
|
2018-04-02 14:24:45 +02:00
|
|
|
* @param sender_account_details account information for the sender (payto://-URL)
|
|
|
|
* @param exchange_account_section name of the section in the configuration for the exchange's
|
|
|
|
* account into which the deposit was made
|
2020-01-11 15:19:56 +01:00
|
|
|
* @param wire_ref unique reference identifying the wire transfer
|
2017-06-23 14:13:54 +02:00
|
|
|
* @return transaction status code
|
2015-03-05 18:16:32 +01:00
|
|
|
*/
|
2017-06-23 14:13:54 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2015-03-20 23:51:28 +01:00
|
|
|
postgres_reserves_in_insert (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-05-13 20:25:02 +02:00
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub,
|
2015-03-20 23:51:28 +01:00
|
|
|
const struct TALER_Amount *balance,
|
2015-07-01 00:01:21 +02:00
|
|
|
struct GNUNET_TIME_Absolute execution_time,
|
2018-04-02 14:24:45 +02:00
|
|
|
const char *sender_account_details,
|
|
|
|
const char *exchange_account_section,
|
2020-01-11 15:19:56 +01:00
|
|
|
uint64_t wire_ref)
|
2015-03-05 18:16:32 +01:00
|
|
|
{
|
2017-04-20 21:38:02 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-06-11 02:12:56 +02:00
|
|
|
enum GNUNET_DB_QueryStatus reserve_exists;
|
2017-06-23 14:13:54 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Reserve reserve;
|
2015-06-11 13:14:59 +02:00
|
|
|
struct GNUNET_TIME_Absolute expiry;
|
2015-01-29 00:09:48 +01:00
|
|
|
|
2015-05-13 15:57:35 +02:00
|
|
|
reserve.pub = *reserve_pub;
|
2020-03-05 23:02:38 +01:00
|
|
|
reserve_exists = postgres_reserves_get (cls,
|
|
|
|
session,
|
|
|
|
&reserve);
|
2017-06-11 02:12:56 +02:00
|
|
|
if (0 > reserve_exists)
|
2015-03-05 18:16:32 +01:00
|
|
|
{
|
2018-08-11 10:55:50 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == reserve_exists);
|
2017-06-23 14:13:54 +02:00
|
|
|
return reserve_exists;
|
2015-03-05 18:16:32 +01:00
|
|
|
}
|
2017-06-11 17:04:54 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Creating reserve %s with expiration in %s\n",
|
|
|
|
TALER_B2S (reserve_pub),
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_STRINGS_relative_time_to_string (
|
|
|
|
pg->idle_reserve_expiration_time,
|
|
|
|
GNUNET_NO));
|
2015-07-01 00:01:21 +02:00
|
|
|
expiry = GNUNET_TIME_absolute_add (execution_time,
|
2017-04-20 21:38:02 +02:00
|
|
|
pg->idle_reserve_expiration_time);
|
2019-07-24 12:19:36 +02:00
|
|
|
(void) GNUNET_TIME_round_abs (&expiry);
|
2017-06-11 02:12:56 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == reserve_exists)
|
2015-03-05 18:16:32 +01:00
|
|
|
{
|
2015-06-05 13:48:57 +02:00
|
|
|
/* New reserve, create balance for the first time; we do this
|
|
|
|
before adding the actual transaction to "reserves_in", as
|
|
|
|
for a new reserve it can't be a duplicate 'add' operation,
|
|
|
|
and as the 'add' operation may need the reserve entry
|
2019-10-31 12:59:50 +01:00
|
|
|
as a foreign key. */struct GNUNET_PQ_QueryParam params[] = {
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (reserve_pub),
|
2018-04-02 14:24:45 +02:00
|
|
|
GNUNET_PQ_query_param_string (sender_account_details),
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_amount (balance),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (&expiry),
|
2019-07-24 12:19:36 +02:00
|
|
|
TALER_PQ_query_param_absolute_time (&expiry),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
2015-03-05 18:16:32 +01:00
|
|
|
};
|
2015-06-04 10:43:44 +02:00
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Reserve does not exist; creating a new one\n");
|
2017-06-23 14:13:54 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-07-24 12:19:36 +02:00
|
|
|
"reserve_create",
|
|
|
|
params);
|
2017-06-23 14:13:54 +02:00
|
|
|
if (0 > qs)
|
2018-04-04 17:01:59 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_HARD_ERROR != qs);
|
2017-06-23 14:13:54 +02:00
|
|
|
return qs;
|
2018-04-04 17:01:59 +02:00
|
|
|
}
|
2017-06-23 14:13:54 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
2015-03-05 18:16:32 +01:00
|
|
|
{
|
2017-06-23 14:13:54 +02:00
|
|
|
/* Maybe DB did not detect serializiability error already,
|
2019-07-24 12:19:36 +02:00
|
|
|
but clearly there must be one. Still odd. */
|
2017-06-23 14:13:54 +02:00
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_DB_STATUS_SOFT_ERROR;
|
2015-03-05 18:16:32 +01:00
|
|
|
}
|
2015-06-05 13:48:57 +02:00
|
|
|
}
|
2018-02-05 21:49:35 +01:00
|
|
|
/* Create new incoming transaction, "ON CONFLICT DO NOTHING"
|
|
|
|
is used to guard against duplicates. */
|
2015-06-04 10:43:44 +02:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&reserve.pub),
|
2020-01-11 15:19:56 +01:00
|
|
|
GNUNET_PQ_query_param_uint64 (&wire_ref),
|
2015-06-04 10:43:44 +02:00
|
|
|
TALER_PQ_query_param_amount (balance),
|
2018-04-02 14:24:45 +02:00
|
|
|
GNUNET_PQ_query_param_string (exchange_account_section),
|
|
|
|
GNUNET_PQ_query_param_string (sender_account_details),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (&execution_time),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
2015-06-04 10:43:44 +02:00
|
|
|
};
|
|
|
|
|
2017-06-23 14:13:54 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-07-24 12:19:36 +02:00
|
|
|
"reserves_in_add_transaction",
|
|
|
|
params);
|
2017-06-23 14:13:54 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
2018-04-04 17:01:59 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_HARD_ERROR != qs);
|
2017-06-23 14:13:54 +02:00
|
|
|
return qs;
|
2018-04-04 17:01:59 +02:00
|
|
|
}
|
2015-03-05 18:16:32 +01:00
|
|
|
}
|
2015-06-05 13:48:57 +02:00
|
|
|
|
2017-06-11 02:12:56 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == reserve_exists)
|
2015-06-05 13:48:57 +02:00
|
|
|
{
|
|
|
|
/* If the reserve already existed, we need to still update the
|
|
|
|
balance; we do this after checking for duplication, as
|
|
|
|
otherwise we might have to actually pay the cost to roll this
|
|
|
|
back for duplicate transactions; like this, we should virtually
|
2019-10-31 12:59:50 +01:00
|
|
|
never actually have to rollback anything. */struct TALER_EXCHANGEDB_Reserve updated_reserve;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2015-06-05 13:48:57 +02:00
|
|
|
updated_reserve.pub = reserve.pub;
|
2020-04-08 23:52:01 +02:00
|
|
|
if (0 >
|
2015-06-05 13:48:57 +02:00
|
|
|
TALER_amount_add (&updated_reserve.balance,
|
|
|
|
&reserve.balance,
|
|
|
|
balance))
|
|
|
|
{
|
|
|
|
/* currency overflow or incompatible currency */
|
2018-04-04 17:01:59 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2015-06-05 13:48:57 +02:00
|
|
|
"Attempt to deposit incompatible amount into reserve\n");
|
2017-06-23 14:13:54 +02:00
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
2015-06-05 13:48:57 +02:00
|
|
|
}
|
|
|
|
updated_reserve.expiry = GNUNET_TIME_absolute_max (expiry,
|
|
|
|
reserve.expiry);
|
2019-07-24 12:19:36 +02:00
|
|
|
(void) GNUNET_TIME_round_abs (&updated_reserve.expiry);
|
|
|
|
updated_reserve.gc = GNUNET_TIME_absolute_max (updated_reserve.expiry,
|
|
|
|
reserve.gc);
|
|
|
|
(void) GNUNET_TIME_round_abs (&updated_reserve.gc);
|
2017-06-23 14:13:54 +02:00
|
|
|
return reserves_update (cls,
|
2019-07-21 20:15:11 +02:00
|
|
|
session,
|
|
|
|
&updated_reserve);
|
2017-03-14 15:36:19 +01:00
|
|
|
}
|
2017-06-23 14:13:54 +02:00
|
|
|
return GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
2015-03-05 18:16:32 +01:00
|
|
|
}
|
2015-01-29 00:09:48 +01:00
|
|
|
|
|
|
|
|
2017-05-08 13:31:28 +02:00
|
|
|
/**
|
|
|
|
* Obtain the most recent @a wire_reference that was inserted via @e reserves_in_insert.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param session the database session handle
|
2018-04-02 14:24:45 +02:00
|
|
|
* @param exchange_account_name name of the section in the exchange's configuration
|
|
|
|
* for the account that we are tracking here
|
2020-01-18 13:07:29 +01:00
|
|
|
* @param[out] wire_reference set to unique reference identifying the wire transfer
|
2017-06-23 14:37:53 +02:00
|
|
|
* @return transaction status code
|
2017-05-08 13:31:28 +02:00
|
|
|
*/
|
2017-06-23 14:37:53 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_get_latest_reserve_in_reference (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const char *exchange_account_name,
|
|
|
|
uint64_t *wire_reference)
|
2017-05-08 13:31:28 +02:00
|
|
|
{
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2018-04-02 14:24:45 +02:00
|
|
|
GNUNET_PQ_query_param_string (exchange_account_name),
|
2017-05-08 13:31:28 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-06-23 14:37:53 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2020-01-11 15:19:56 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("wire_reference",
|
|
|
|
wire_reference),
|
2017-06-23 14:37:53 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-05-08 13:31:28 +02:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-06-23 14:37:53 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"reserves_in_get_latest_wire_reference",
|
|
|
|
params,
|
|
|
|
rs);
|
2017-05-08 13:31:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-28 22:18:53 +01:00
|
|
|
/**
|
2015-09-19 22:08:49 +02:00
|
|
|
* Locate the response for a /reserve/withdraw request under the
|
2015-01-28 22:18:53 +01:00
|
|
|
* key of the hash of the blinded message.
|
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session database connection to use
|
2015-06-11 13:46:27 +02:00
|
|
|
* @param h_blind hash of the blinded coin to be signed (will match
|
|
|
|
* `h_coin_envelope` in the @a collectable to be returned)
|
2015-01-28 22:18:53 +01:00
|
|
|
* @param collectable corresponding collectable coin (blind signature)
|
|
|
|
* if a coin is found
|
2017-06-19 00:00:21 +02:00
|
|
|
* @return statement execution status
|
2015-01-28 22:18:53 +01:00
|
|
|
*/
|
2017-06-19 00:00:21 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_get_withdraw_info (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct GNUNET_HashCode *h_blind,
|
|
|
|
struct TALER_EXCHANGEDB_CollectableBlindcoin *collectable)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_blind),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-01-28 22:18:53 +01:00
|
|
|
};
|
2017-06-19 00:00:21 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-05-02 21:16:51 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("denom_pub_hash",
|
|
|
|
&collectable->denom_pub_hash),
|
2017-06-19 00:00:21 +02:00
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("denom_sig",
|
2019-05-02 21:16:51 +02:00
|
|
|
&collectable->sig.rsa_signature),
|
2017-06-19 00:00:21 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("reserve_sig",
|
2019-08-17 21:35:21 +02:00
|
|
|
&collectable->reserve_sig),
|
2017-06-19 00:00:21 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("reserve_pub",
|
2019-08-17 21:35:21 +02:00
|
|
|
&collectable->reserve_pub),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
|
|
|
&collectable->amount_with_fee),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("fee_withdraw",
|
|
|
|
&collectable->withdraw_fee),
|
2017-06-19 00:00:21 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2020-03-20 18:38:57 +01:00
|
|
|
#if EXPLICIT_LOCKS
|
|
|
|
struct GNUNET_PQ_QueryParam no_params[] = {
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2019-06-05 21:26:27 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2015-06-11 13:02:57 +02:00
|
|
|
|
2019-06-05 21:26:27 +02:00
|
|
|
if (0 > (qs = GNUNET_PQ_eval_prepared_non_select (session->conn,
|
|
|
|
"lock_withdraw",
|
|
|
|
no_params)))
|
|
|
|
return qs;
|
2020-03-20 18:38:57 +01:00
|
|
|
#endif
|
2015-06-05 15:04:21 +02:00
|
|
|
collectable->h_coin_envelope = *h_blind;
|
2017-06-19 00:00:21 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-06-05 21:26:27 +02:00
|
|
|
"get_withdraw_info",
|
|
|
|
params,
|
|
|
|
rs);
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store collectable bit coin under the corresponding
|
|
|
|
* hash of the blinded message.
|
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session database connection to use
|
2015-01-28 22:18:53 +01:00
|
|
|
* @param collectable corresponding collectable coin (blind signature)
|
|
|
|
* if a coin is found
|
2017-06-19 00:00:21 +02:00
|
|
|
* @return query execution status
|
2015-01-28 22:18:53 +01:00
|
|
|
*/
|
2017-06-19 00:00:21 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_withdraw_info (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_EXCHANGEDB_CollectableBlindcoin *collectable)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2017-04-20 21:38:02 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Reserve reserve;
|
2015-06-11 13:14:59 +02:00
|
|
|
struct GNUNET_TIME_Absolute now;
|
|
|
|
struct GNUNET_TIME_Absolute expiry;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&collectable->h_coin_envelope),
|
2019-05-02 21:16:51 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&collectable->denom_pub_hash),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_rsa_signature (collectable->sig.rsa_signature),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&collectable->reserve_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&collectable->reserve_sig),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (&now),
|
2015-06-11 13:02:57 +02:00
|
|
|
TALER_PQ_query_param_amount (&collectable->amount_with_fee),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
2015-03-07 13:56:26 +01:00
|
|
|
};
|
2017-06-18 14:43:28 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2015-05-06 17:05:24 +02:00
|
|
|
|
2015-06-11 13:14:59 +02:00
|
|
|
now = GNUNET_TIME_absolute_get ();
|
2017-11-30 17:17:37 +01:00
|
|
|
(void) GNUNET_TIME_round_abs (&now);
|
2017-06-19 00:00:21 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-07-24 11:57:03 +02:00
|
|
|
"insert_withdraw_info",
|
|
|
|
params);
|
2017-06-19 00:00:21 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2017-06-19 00:00:21 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2015-03-18 13:50:03 +01:00
|
|
|
}
|
2017-04-02 00:05:20 +02:00
|
|
|
|
2020-08-10 08:12:01 +02:00
|
|
|
#if 0
|
2017-04-02 00:05:20 +02:00
|
|
|
/* update reserve balance */
|
2015-03-22 22:14:30 +01:00
|
|
|
reserve.pub = collectable->reserve_pub;
|
2017-06-11 02:12:56 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT !=
|
2020-03-05 23:02:38 +01:00
|
|
|
(qs = postgres_reserves_get (cls,
|
|
|
|
session,
|
|
|
|
&reserve)))
|
2015-06-05 15:04:21 +02:00
|
|
|
{
|
|
|
|
/* Should have been checked before we got here... */
|
2017-06-19 00:00:21 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
|
|
|
qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
2015-06-05 15:04:21 +02:00
|
|
|
}
|
2020-04-08 23:52:01 +02:00
|
|
|
if (0 >
|
2015-03-18 18:56:48 +01:00
|
|
|
TALER_amount_subtract (&reserve.balance,
|
|
|
|
&reserve.balance,
|
2015-06-11 13:02:57 +02:00
|
|
|
&collectable->amount_with_fee))
|
2015-06-05 15:04:21 +02:00
|
|
|
{
|
2016-11-17 15:53:16 +01:00
|
|
|
/* The reserve history was checked to make sure there is enough of a balance
|
|
|
|
left before we tried this; however, concurrent operations may have changed
|
|
|
|
the situation by now. We should re-try the transaction. */
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2020-01-20 02:11:03 +01:00
|
|
|
"Withdrawal from reserve `%s' refused due to balance mismatch. Retrying.\n",
|
2016-11-17 15:53:16 +01:00
|
|
|
TALER_B2S (&collectable->reserve_pub));
|
2020-08-10 08:12:01 +02:00
|
|
|
return GNUNET_DB_STATUS_SOFT_ERROR; // FIXME: really soft error? would retry help!?
|
2015-06-05 15:04:21 +02:00
|
|
|
}
|
2015-06-11 13:14:59 +02:00
|
|
|
expiry = GNUNET_TIME_absolute_add (now,
|
2019-07-24 12:19:36 +02:00
|
|
|
pg->legal_reserve_expiration_time);
|
|
|
|
reserve.gc = GNUNET_TIME_absolute_max (expiry,
|
|
|
|
reserve.gc);
|
|
|
|
(void) GNUNET_TIME_round_abs (&reserve.gc);
|
2017-06-18 14:43:28 +02:00
|
|
|
qs = reserves_update (cls,
|
2019-07-21 20:15:11 +02:00
|
|
|
session,
|
|
|
|
&reserve);
|
2017-06-19 00:00:21 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_HARD_ERROR != qs);
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
2015-03-18 13:50:03 +01:00
|
|
|
{
|
2015-07-01 14:11:54 +02:00
|
|
|
GNUNET_break (0);
|
2017-06-19 00:00:21 +02:00
|
|
|
qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
2020-08-10 08:12:01 +02:00
|
|
|
#else
|
|
|
|
{
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&collectable->reserve_pub),
|
|
|
|
TALER_PQ_query_param_absolute_time (&expiry),
|
|
|
|
TALER_PQ_query_param_amount (&collectable->amount_with_fee),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
|
|
|
expiry = GNUNET_TIME_absolute_add (now,
|
|
|
|
pg->legal_reserve_expiration_time);
|
|
|
|
qs = GNUNET_PQ_eval_prepared_non_select (session->conn,
|
|
|
|
"reserve_reduce",
|
|
|
|
params);
|
|
|
|
if (0 == qs)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"Withdrawal from reserve `%s' refused due to balance mismatch.\n",
|
|
|
|
TALER_B2S (&collectable->reserve_pub));
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2017-06-19 00:00:21 +02:00
|
|
|
return qs;
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-29 00:09:48 +01:00
|
|
|
/**
|
2017-06-18 22:48:54 +02:00
|
|
|
* Closure for callbacks invoked via #postgres_get_reserve_history.
|
2015-01-29 00:09:48 +01:00
|
|
|
*/
|
2017-06-18 22:48:54 +02:00
|
|
|
struct ReserveHistoryContext
|
2015-01-29 00:09:48 +01:00
|
|
|
{
|
2017-06-18 22:48:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Which reserve are we building the history for?
|
2017-09-26 12:30:24 +02:00
|
|
|
*/
|
2017-06-18 22:48:54 +02:00
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
/**
|
|
|
|
* Where we build the history.
|
|
|
|
*/
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_ReserveHistory *rh;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
/**
|
|
|
|
* Tail of @e rh list.
|
|
|
|
*/
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_ReserveHistory *rh_tail;
|
2015-01-29 00:09:48 +01:00
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
/**
|
|
|
|
* Set to #GNUNET_SYSERR on serious internal errors during
|
|
|
|
* the callbacks.
|
2017-09-26 12:30:24 +02:00
|
|
|
*/
|
2017-06-18 22:48:54 +02:00
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Append and return a fresh element to the reserve
|
|
|
|
* history kept in @a rhc.
|
|
|
|
*
|
|
|
|
* @param rhc where the history is kept
|
|
|
|
* @return the fresh element that was added
|
2017-09-26 12:30:24 +02:00
|
|
|
*/
|
2017-06-18 22:48:54 +02:00
|
|
|
static struct TALER_EXCHANGEDB_ReserveHistory *
|
|
|
|
append_rh (struct ReserveHistoryContext *rhc)
|
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_ReserveHistory *tail;
|
|
|
|
|
|
|
|
tail = GNUNET_new (struct TALER_EXCHANGEDB_ReserveHistory);
|
|
|
|
if (NULL != rhc->rh_tail)
|
|
|
|
{
|
|
|
|
rhc->rh_tail->next = tail;
|
|
|
|
rhc->rh_tail = tail;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rhc->rh_tail = tail;
|
|
|
|
rhc->rh = tail;
|
|
|
|
}
|
|
|
|
return tail;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add bank transfers to result set for #postgres_get_reserve_history.
|
|
|
|
*
|
|
|
|
* @param cls a `struct ReserveHistoryContext *`
|
|
|
|
* @param result SQL result
|
|
|
|
* @param num_results number of rows in @a result
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
add_bank_to_exchange (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-18 22:48:54 +02:00
|
|
|
{
|
|
|
|
struct ReserveHistoryContext *rhc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = rhc->pg;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
while (0 < num_results)
|
2015-01-29 00:09:48 +01:00
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_BankTransfer *bt;
|
2017-06-18 22:48:54 +02:00
|
|
|
struct TALER_EXCHANGEDB_ReserveHistory *tail;
|
2015-01-29 00:09:48 +01:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
bt = GNUNET_new (struct TALER_EXCHANGEDB_BankTransfer);
|
2015-03-09 17:05:35 +01:00
|
|
|
{
|
2017-06-18 22:48:54 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_PQ_result_spec_variable_size ("wire_reference",
|
|
|
|
&bt->wire_reference,
|
|
|
|
&bt->wire_reference_size),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("credit",
|
|
|
|
&bt->amount),
|
|
|
|
TALER_PQ_result_spec_absolute_time ("execution_date",
|
|
|
|
&bt->execution_date),
|
|
|
|
GNUNET_PQ_result_spec_string ("sender_account_details",
|
2018-04-02 14:24:45 +02:00
|
|
|
&bt->sender_account_details),
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
2017-06-18 22:48:54 +02:00
|
|
|
};
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
if (GNUNET_OK !=
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
--num_results))
|
2015-03-09 17:05:35 +01:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (bt);
|
|
|
|
rhc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2015-03-09 17:05:35 +01:00
|
|
|
}
|
|
|
|
}
|
2017-06-18 22:48:54 +02:00
|
|
|
bt->reserve_pub = *rhc->reserve_pub;
|
|
|
|
tail = append_rh (rhc);
|
|
|
|
tail->type = TALER_EXCHANGEDB_RO_BANK_TO_EXCHANGE;
|
|
|
|
tail->details.bank = bt;
|
2019-10-11 23:28:05 +02:00
|
|
|
} /* end of 'while (0 < rows)' */
|
2017-06-18 22:48:54 +02:00
|
|
|
}
|
2015-06-11 13:02:57 +02:00
|
|
|
|
2017-04-19 14:40:43 +02:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
/**
|
|
|
|
* Add coin withdrawals to result set for #postgres_get_reserve_history.
|
|
|
|
*
|
|
|
|
* @param cls a `struct ReserveHistoryContext *`
|
|
|
|
* @param result SQL result
|
|
|
|
* @param num_results number of rows in @a result
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
add_withdraw_coin (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-18 22:48:54 +02:00
|
|
|
{
|
|
|
|
struct ReserveHistoryContext *rhc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = rhc->pg;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
while (0 < num_results)
|
2017-04-02 18:02:07 +02:00
|
|
|
{
|
2017-06-18 22:48:54 +02:00
|
|
|
struct TALER_EXCHANGEDB_CollectableBlindcoin *cbc;
|
|
|
|
struct TALER_EXCHANGEDB_ReserveHistory *tail;
|
2017-04-02 18:02:07 +02:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
cbc = GNUNET_new (struct TALER_EXCHANGEDB_CollectableBlindcoin);
|
2017-04-02 18:02:07 +02:00
|
|
|
{
|
2017-06-18 22:48:54 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_blind_ev",
|
2019-08-17 21:35:21 +02:00
|
|
|
&cbc->h_coin_envelope),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("denom_pub_hash",
|
|
|
|
&cbc->denom_pub_hash),
|
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("denom_sig",
|
|
|
|
&cbc->sig.rsa_signature),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("reserve_sig",
|
|
|
|
&cbc->reserve_sig),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
|
|
|
&cbc->amount_with_fee),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("fee_withdraw",
|
|
|
|
&cbc->withdraw_fee),
|
|
|
|
GNUNET_PQ_result_spec_end
|
2017-06-18 22:48:54 +02:00
|
|
|
};
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
if (GNUNET_OK !=
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
--num_results))
|
2017-04-02 18:02:07 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (cbc);
|
|
|
|
rhc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2017-04-02 18:02:07 +02:00
|
|
|
}
|
2017-06-18 22:48:54 +02:00
|
|
|
}
|
|
|
|
cbc->reserve_pub = *rhc->reserve_pub;
|
|
|
|
tail = append_rh (rhc);
|
|
|
|
tail->type = TALER_EXCHANGEDB_RO_WITHDRAW_COIN;
|
|
|
|
tail->details.withdraw = cbc;
|
2017-04-02 18:02:07 +02:00
|
|
|
}
|
2017-06-18 22:48:54 +02:00
|
|
|
}
|
2017-04-02 18:02:07 +02:00
|
|
|
|
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
/**
|
2020-01-18 23:49:37 +01:00
|
|
|
* Add recoups to result set for #postgres_get_reserve_history.
|
2017-06-18 22:48:54 +02:00
|
|
|
*
|
|
|
|
* @param cls a `struct ReserveHistoryContext *`
|
|
|
|
* @param result SQL result
|
|
|
|
* @param num_results number of rows in @a result
|
|
|
|
*/
|
|
|
|
static void
|
2020-01-18 23:49:37 +01:00
|
|
|
add_recoup (void *cls,
|
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-18 22:48:54 +02:00
|
|
|
{
|
|
|
|
struct ReserveHistoryContext *rhc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = rhc->pg;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
while (0 < num_results)
|
2017-04-19 14:40:43 +02:00
|
|
|
{
|
2020-01-18 23:49:37 +01:00
|
|
|
struct TALER_EXCHANGEDB_Recoup *recoup;
|
2017-06-18 22:48:54 +02:00
|
|
|
struct TALER_EXCHANGEDB_ReserveHistory *tail;
|
2017-04-19 14:40:43 +02:00
|
|
|
|
2020-01-18 23:49:37 +01:00
|
|
|
recoup = GNUNET_new (struct TALER_EXCHANGEDB_Recoup);
|
2017-04-19 14:40:43 +02:00
|
|
|
{
|
2017-06-18 22:48:54 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->value),
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin.coin_pub),
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_blind",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin_blind),
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_sig",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin_sig),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_result_spec_absolute_time ("timestamp",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->timestamp),
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("denom_pub_hash",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin.denom_pub_hash),
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("denom_sig",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin.denom_sig.
|
2019-08-25 16:18:24 +02:00
|
|
|
rsa_signature),
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
2017-06-18 22:48:54 +02:00
|
|
|
};
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
if (GNUNET_OK !=
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
--num_results))
|
2017-04-19 14:40:43 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_break (0);
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_free (recoup);
|
2019-08-17 21:35:21 +02:00
|
|
|
rhc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2017-04-19 14:40:43 +02:00
|
|
|
}
|
2017-06-18 22:48:54 +02:00
|
|
|
}
|
2020-01-18 23:49:37 +01:00
|
|
|
recoup->reserve_pub = *rhc->reserve_pub;
|
2017-06-18 22:48:54 +02:00
|
|
|
tail = append_rh (rhc);
|
2020-01-18 23:49:37 +01:00
|
|
|
tail->type = TALER_EXCHANGEDB_RO_RECOUP_COIN;
|
|
|
|
tail->details.recoup = recoup;
|
2019-10-11 23:28:05 +02:00
|
|
|
} /* end of 'while (0 < rows)' */
|
2017-06-18 22:48:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add exchange-to-bank transfers to result set for
|
|
|
|
* #postgres_get_reserve_history.
|
|
|
|
*
|
|
|
|
* @param cls a `struct ReserveHistoryContext *`
|
|
|
|
* @param result SQL result
|
|
|
|
* @param num_results number of rows in @a result
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
add_exchange_to_bank (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-18 22:48:54 +02:00
|
|
|
{
|
|
|
|
struct ReserveHistoryContext *rhc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = rhc->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
while (0 < num_results)
|
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_ClosingTransfer *closing;
|
|
|
|
struct TALER_EXCHANGEDB_ReserveHistory *tail;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
closing = GNUNET_new (struct TALER_EXCHANGEDB_ClosingTransfer);
|
|
|
|
{
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-25 16:18:24 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount",
|
|
|
|
&closing->amount),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("closing_fee",
|
|
|
|
&closing->closing_fee),
|
|
|
|
TALER_PQ_result_spec_absolute_time ("execution_date",
|
|
|
|
&closing->execution_date),
|
|
|
|
GNUNET_PQ_result_spec_string ("receiver_account",
|
2018-04-02 14:24:45 +02:00
|
|
|
&closing->receiver_account_details),
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("wtid",
|
|
|
|
&closing->wtid),
|
|
|
|
GNUNET_PQ_result_spec_end
|
2017-06-18 22:48:54 +02:00
|
|
|
};
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
if (GNUNET_OK !=
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
--num_results))
|
2017-04-19 14:40:43 +02:00
|
|
|
{
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (closing);
|
|
|
|
rhc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2017-04-19 14:40:43 +02:00
|
|
|
}
|
2017-06-18 22:48:54 +02:00
|
|
|
}
|
|
|
|
closing->reserve_pub = *rhc->reserve_pub;
|
|
|
|
tail = append_rh (rhc);
|
|
|
|
tail->type = TALER_EXCHANGEDB_RO_EXCHANGE_TO_BANK;
|
|
|
|
tail->details.closing = closing;
|
2019-10-11 23:28:05 +02:00
|
|
|
} /* end of 'while (0 < rows)' */
|
2017-06-18 22:48:54 +02:00
|
|
|
}
|
2017-04-02 18:02:07 +02:00
|
|
|
|
2017-05-05 13:41:32 +02:00
|
|
|
|
2017-06-18 22:48:54 +02:00
|
|
|
/**
|
|
|
|
* Get all of the transaction history associated with the specified
|
|
|
|
* reserve.
|
|
|
|
*
|
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session connection to use
|
|
|
|
* @param reserve_pub public key of the reserve
|
|
|
|
* @param[out] rhp set to known transaction history (NULL if reserve is unknown)
|
|
|
|
* @return transaction status
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
|
|
|
postgres_get_reserve_history (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub,
|
2019-08-17 21:35:21 +02:00
|
|
|
struct TALER_EXCHANGEDB_ReserveHistory **rhp)
|
2017-06-18 22:48:54 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-06-18 22:48:54 +02:00
|
|
|
struct ReserveHistoryContext rhc;
|
2019-08-25 16:18:24 +02:00
|
|
|
struct
|
|
|
|
{
|
2017-06-18 22:48:54 +02:00
|
|
|
/**
|
|
|
|
* Name of the prepared statement to run.
|
|
|
|
*/
|
|
|
|
const char *statement;
|
|
|
|
/**
|
|
|
|
* Function to use to process the results.
|
|
|
|
*/
|
|
|
|
GNUNET_PQ_PostgresResultHandler cb;
|
|
|
|
} work[] = {
|
|
|
|
/** #TALER_EXCHANGEDB_RO_BANK_TO_EXCHANGE */
|
|
|
|
{ "reserves_in_get_transactions",
|
|
|
|
add_bank_to_exchange },
|
|
|
|
/** #TALER_EXCHANGEDB_RO_WITHDRAW_COIN */
|
|
|
|
{ "get_reserves_out",
|
|
|
|
&add_withdraw_coin },
|
2020-01-18 23:49:37 +01:00
|
|
|
/** #TALER_EXCHANGEDB_RO_RECOUP_COIN */
|
|
|
|
{ "recoup_by_reserve",
|
|
|
|
&add_recoup },
|
2017-06-18 22:48:54 +02:00
|
|
|
/** #TALER_EXCHANGEDB_RO_EXCHANGE_TO_BANK */
|
|
|
|
{ "close_by_reserve",
|
|
|
|
&add_exchange_to_bank },
|
|
|
|
/* List terminator */
|
|
|
|
{ NULL,
|
|
|
|
NULL }
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (reserve_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
|
|
|
rhc.reserve_pub = reserve_pub;
|
|
|
|
rhc.rh = NULL;
|
|
|
|
rhc.rh_tail = NULL;
|
2019-08-17 21:35:21 +02:00
|
|
|
rhc.pg = pg;
|
2017-06-18 22:48:54 +02:00
|
|
|
rhc.status = GNUNET_OK;
|
2017-09-26 12:30:24 +02:00
|
|
|
qs = GNUNET_DB_STATUS_SUCCESS_NO_RESULTS; /* make static analysis happy */
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; NULL != work[i].cb; i++)
|
2017-06-18 22:48:54 +02:00
|
|
|
{
|
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-08-25 16:18:24 +02:00
|
|
|
work[i].statement,
|
|
|
|
params,
|
|
|
|
work[i].cb,
|
|
|
|
&rhc);
|
2017-06-18 22:48:54 +02:00
|
|
|
if ( (0 > qs) ||
|
2019-08-25 16:18:24 +02:00
|
|
|
(GNUNET_OK != rhc.status) )
|
2017-06-18 22:48:54 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ( (qs < 0) ||
|
|
|
|
(rhc.status != GNUNET_OK) )
|
2015-03-09 17:05:35 +01:00
|
|
|
{
|
2015-03-22 13:02:11 +01:00
|
|
|
common_free_reserve_history (cls,
|
2017-06-18 22:48:54 +02:00
|
|
|
rhc.rh);
|
|
|
|
rhc.rh = NULL;
|
|
|
|
if (qs >= 0)
|
|
|
|
{
|
|
|
|
/* status == SYSERR is a very hard error... */
|
|
|
|
qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
}
|
2015-03-09 17:05:35 +01:00
|
|
|
}
|
2017-09-26 12:30:24 +02:00
|
|
|
*rhp = rhc.rh;
|
2017-06-18 22:48:54 +02:00
|
|
|
return qs;
|
2015-01-29 00:09:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-28 22:18:53 +01:00
|
|
|
/**
|
|
|
|
* Check if we have the specified deposit already in the database.
|
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session database connection
|
2015-01-28 22:18:53 +01:00
|
|
|
* @param deposit deposit to search for
|
2020-03-31 20:57:11 +02:00
|
|
|
* @param check_extras whether to check extra fields match or not
|
2020-05-07 20:22:02 +02:00
|
|
|
* @param[out] deposit_fee set to the deposit fee the exchange charged
|
|
|
|
* @param[out] exchange_timestamp set to the time when the exchange received the deposit
|
2017-06-18 21:47:05 +02:00
|
|
|
* @return 1 if we know this operation,
|
|
|
|
* 0 if this exact deposit is unknown to us,
|
|
|
|
* otherwise transaction error status
|
2015-01-28 22:18:53 +01:00
|
|
|
*/
|
2017-06-18 21:47:05 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2015-03-20 23:51:28 +01:00
|
|
|
postgres_have_deposit (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2018-11-04 17:36:56 +01:00
|
|
|
const struct TALER_EXCHANGEDB_Deposit *deposit,
|
2020-05-07 20:22:02 +02:00
|
|
|
int check_extras,
|
|
|
|
struct TALER_Amount *deposit_fee,
|
|
|
|
struct GNUNET_TIME_Absolute *exchange_timestamp)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->coin.coin_pub),
|
2017-05-29 01:15:41 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->h_contract_terms),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->merchant_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-01-28 22:18:53 +01:00
|
|
|
};
|
2017-06-18 21:47:05 +02:00
|
|
|
struct TALER_EXCHANGEDB_Deposit deposit2;
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
2019-04-18 14:38:24 +02:00
|
|
|
&deposit2.amount_with_fee),
|
2020-05-07 20:22:02 +02:00
|
|
|
TALER_PQ_result_spec_absolute_time ("wallet_timestamp",
|
2019-04-18 14:38:24 +02:00
|
|
|
&deposit2.timestamp),
|
2020-05-07 20:22:02 +02:00
|
|
|
TALER_PQ_result_spec_absolute_time ("exchange_timestamp",
|
|
|
|
exchange_timestamp),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("refund_deadline",
|
2019-04-18 14:38:24 +02:00
|
|
|
&deposit2.refund_deadline),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("wire_deadline",
|
2019-04-18 14:38:24 +02:00
|
|
|
&deposit2.wire_deadline),
|
2020-05-07 20:22:02 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("fee_deposit",
|
|
|
|
deposit_fee),
|
2017-06-18 21:47:05 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_wire",
|
2019-04-18 14:38:24 +02:00
|
|
|
&deposit2.h_wire),
|
2017-06-18 21:47:05 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2020-03-20 18:38:57 +01:00
|
|
|
#if EXPLICIT_LOCKS
|
|
|
|
struct GNUNET_PQ_QueryParam no_params[] = {
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2015-06-12 11:47:01 +02:00
|
|
|
|
2019-06-05 21:26:27 +02:00
|
|
|
if (0 > (qs = GNUNET_PQ_eval_prepared_non_select (session->conn,
|
|
|
|
"lock_deposit",
|
|
|
|
no_params)))
|
|
|
|
return qs;
|
2020-03-20 18:38:57 +01:00
|
|
|
#endif
|
2018-08-10 22:30:38 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Getting deposits for coin %s\n",
|
|
|
|
TALER_B2S (&deposit->coin.coin_pub));
|
2017-06-18 21:47:05 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-04-18 14:38:24 +02:00
|
|
|
"get_deposit",
|
|
|
|
params,
|
|
|
|
rs);
|
2017-06-18 21:47:05 +02:00
|
|
|
if (0 >= qs)
|
|
|
|
return qs;
|
2015-06-12 11:47:01 +02:00
|
|
|
/* Now we check that the other information in @a deposit
|
|
|
|
also matches, and if not report inconsistencies. */
|
2018-11-04 17:36:56 +01:00
|
|
|
if ( ( (check_extras) &&
|
|
|
|
( (0 != TALER_amount_cmp (&deposit->amount_with_fee,
|
|
|
|
&deposit2.amount_with_fee)) ||
|
|
|
|
(deposit->timestamp.abs_value_us !=
|
|
|
|
deposit2.timestamp.abs_value_us) ) ) ||
|
2017-06-18 21:47:05 +02:00
|
|
|
(deposit->refund_deadline.abs_value_us !=
|
2018-11-04 17:36:56 +01:00
|
|
|
deposit2.refund_deadline.abs_value_us) ||
|
2019-04-08 20:43:23 +02:00
|
|
|
(0 != GNUNET_memcmp (&deposit->h_wire,
|
|
|
|
&deposit2.h_wire) ) )
|
2015-06-12 11:47:01 +02:00
|
|
|
{
|
2017-06-18 21:47:05 +02:00
|
|
|
/* Inconsistencies detected! Does not match! (We might want to
|
|
|
|
expand the API with a 'get_deposit' function to return the
|
|
|
|
original transaction details to be used for an error message
|
|
|
|
in the future!) #3838 */
|
2019-10-11 23:28:05 +02:00
|
|
|
return 0; /* Counts as if the transaction was not there */
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
2017-06-18 21:47:05 +02:00
|
|
|
return 1;
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-19 20:28:37 +02:00
|
|
|
/**
|
2016-01-27 16:42:24 +01:00
|
|
|
* Mark a deposit as tiny, thereby declaring that it cannot be
|
|
|
|
* executed by itself and should no longer be returned by
|
|
|
|
* @e iterate_ready_deposits()
|
2015-09-19 20:28:37 +02:00
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param session connection to the database
|
2017-04-20 07:49:56 +02:00
|
|
|
* @param rowid identifies the deposit row to modify
|
2017-06-18 15:02:35 +02:00
|
|
|
* @return query result status
|
2016-01-27 16:42:24 +01:00
|
|
|
*/
|
2017-06-18 15:02:35 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2016-01-27 16:42:24 +01:00
|
|
|
postgres_mark_deposit_tiny (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2016-11-17 14:31:44 +01:00
|
|
|
uint64_t rowid)
|
2016-01-27 16:42:24 +01:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2016-11-17 14:31:44 +01:00
|
|
|
GNUNET_PQ_query_param_uint64 (&rowid),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
2016-01-27 16:42:24 +01:00
|
|
|
};
|
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-06-18 15:02:35 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"mark_deposit_tiny",
|
|
|
|
params);
|
2016-01-27 16:42:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-05 22:57:55 +02:00
|
|
|
/**
|
|
|
|
* Test if a deposit was marked as done, thereby declaring that it cannot be
|
|
|
|
* refunded anymore.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param session connection to the database
|
2020-01-16 23:49:34 +01:00
|
|
|
* @param coin_pub the coin to check for deposit
|
|
|
|
* @param merchant_pub merchant to receive the deposit
|
|
|
|
* @param h_contract_terms contract terms of the deposit
|
|
|
|
* @param h_wire hash of the merchant's wire details
|
2017-06-19 16:07:34 +02:00
|
|
|
* @return #GNUNET_DB_STATUS_SUCCESS_ONE_RESULT if is is marked done,
|
|
|
|
* #GNUNET_DB_STATUS_SUCCESS_NO_RESULTS if not,
|
|
|
|
* otherwise transaction error status (incl. deposit unknown)
|
2016-05-05 22:57:55 +02:00
|
|
|
*/
|
2017-06-19 16:07:34 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2016-05-05 22:57:55 +02:00
|
|
|
postgres_test_deposit_done (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2020-01-16 23:49:34 +01:00
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
const struct TALER_MerchantPublicKeyP *merchant_pub,
|
|
|
|
const struct GNUNET_HashCode *h_contract_terms,
|
|
|
|
const struct GNUNET_HashCode *h_wire)
|
2016-05-05 22:57:55 +02:00
|
|
|
{
|
2016-05-06 12:55:44 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2020-01-16 23:49:34 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (merchant_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_contract_terms),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_wire),
|
2016-05-06 12:55:44 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-06-19 16:07:34 +02:00
|
|
|
uint8_t done = 0;
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("done",
|
2019-08-17 21:35:21 +02:00
|
|
|
&done),
|
2017-06-19 16:07:34 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2016-11-17 15:12:01 +01:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-06-19 16:07:34 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"test_deposit_done",
|
|
|
|
params,
|
|
|
|
rs);
|
2017-06-19 16:07:34 +02:00
|
|
|
if (qs < 0)
|
|
|
|
return qs;
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR; /* deposit MUST exist */
|
|
|
|
return (done
|
2019-08-25 16:18:24 +02:00
|
|
|
? GNUNET_DB_STATUS_SUCCESS_ONE_RESULT
|
|
|
|
: GNUNET_DB_STATUS_SUCCESS_NO_RESULTS);
|
2016-05-05 22:57:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-27 16:42:24 +01:00
|
|
|
/**
|
|
|
|
* Mark a deposit as done, thereby declaring that it cannot be
|
|
|
|
* executed at all anymore, and should no longer be returned by
|
|
|
|
* @e iterate_ready_deposits() or @e iterate_matching_deposits().
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param session connection to the database
|
2017-04-20 07:49:56 +02:00
|
|
|
* @param rowid identifies the deposit row to modify
|
2017-06-18 15:02:35 +02:00
|
|
|
* @return query result status
|
2016-01-27 16:42:24 +01:00
|
|
|
*/
|
2017-06-18 15:02:35 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2016-01-27 16:42:24 +01:00
|
|
|
postgres_mark_deposit_done (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2016-11-17 14:31:44 +01:00
|
|
|
uint64_t rowid)
|
2016-01-27 16:42:24 +01:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2016-11-17 14:31:44 +01:00
|
|
|
GNUNET_PQ_query_param_uint64 (&rowid),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
2016-01-27 16:42:24 +01:00
|
|
|
};
|
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-06-18 15:02:35 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"mark_deposit_done",
|
|
|
|
params);
|
2016-01-27 16:42:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtain information about deposits that are ready to be executed.
|
|
|
|
* Such deposits must not be marked as "tiny" or "done", and the
|
|
|
|
* execution time must be in the past.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param session connection to the database
|
|
|
|
* @param deposit_cb function to call for ONE such deposit
|
2015-09-19 20:28:37 +02:00
|
|
|
* @param deposit_cb_cls closure for @a deposit_cb
|
2017-06-24 12:15:11 +02:00
|
|
|
* @return transaction status code
|
2015-09-19 20:28:37 +02:00
|
|
|
*/
|
2017-06-24 12:15:11 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2016-01-27 16:42:24 +01:00
|
|
|
postgres_get_ready_deposit (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
TALER_EXCHANGEDB_DepositIterator deposit_cb,
|
2016-01-27 16:42:24 +01:00
|
|
|
void *deposit_cb_cls)
|
2015-09-19 20:28:37 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-04-10 02:43:09 +02:00
|
|
|
struct GNUNET_TIME_Absolute now = GNUNET_TIME_absolute_get ();
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (&now),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
2015-09-19 20:28:37 +02:00
|
|
|
};
|
2017-06-24 12:15:11 +02:00
|
|
|
struct TALER_Amount amount_with_fee;
|
|
|
|
struct TALER_Amount deposit_fee;
|
|
|
|
struct GNUNET_TIME_Absolute wire_deadline;
|
2020-05-07 20:22:02 +02:00
|
|
|
struct GNUNET_TIME_Absolute wallet_timestamp;
|
|
|
|
struct GNUNET_TIME_Absolute exchange_timestamp;
|
2017-06-24 12:15:11 +02:00
|
|
|
struct GNUNET_HashCode h_contract_terms;
|
|
|
|
struct TALER_MerchantPublicKeyP merchant_pub;
|
|
|
|
struct TALER_CoinSpendPublicKeyP coin_pub;
|
|
|
|
uint64_t serial_id;
|
|
|
|
json_t *wire;
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_uint64 ("deposit_serial_id",
|
2019-08-17 21:35:21 +02:00
|
|
|
&serial_id),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
|
|
|
&amount_with_fee),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("fee_deposit",
|
|
|
|
&deposit_fee),
|
2020-05-07 20:22:02 +02:00
|
|
|
TALER_PQ_result_spec_absolute_time ("exchange_timestamp",
|
|
|
|
&exchange_timestamp),
|
|
|
|
TALER_PQ_result_spec_absolute_time ("wallet_timestamp",
|
|
|
|
&wallet_timestamp),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("wire_deadline",
|
2019-08-17 21:35:21 +02:00
|
|
|
&wire_deadline),
|
2017-06-24 12:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_contract_terms",
|
2019-08-17 21:35:21 +02:00
|
|
|
&h_contract_terms),
|
2017-06-24 12:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_pub",
|
2019-08-17 21:35:21 +02:00
|
|
|
&merchant_pub),
|
2017-06-24 12:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub",
|
2019-08-17 21:35:21 +02:00
|
|
|
&coin_pub),
|
2017-06-24 12:15:11 +02:00
|
|
|
TALER_PQ_result_spec_json ("wire",
|
2018-04-02 14:24:45 +02:00
|
|
|
&wire),
|
2017-06-24 12:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2015-09-19 20:28:37 +02:00
|
|
|
|
2017-11-30 17:17:37 +01:00
|
|
|
(void) GNUNET_TIME_round_abs (&now);
|
2017-09-12 15:34:38 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2019-08-17 21:35:21 +02:00
|
|
|
"Finding ready deposits by deadline %s (%llu)\n",
|
|
|
|
GNUNET_STRINGS_absolute_time_to_string (now),
|
|
|
|
(unsigned long long) now.abs_value_us);
|
2017-09-12 15:34:38 +02:00
|
|
|
|
2017-06-24 12:15:11 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"deposits_get_ready",
|
|
|
|
params,
|
|
|
|
rs);
|
2017-06-24 12:15:11 +02:00
|
|
|
if (qs <= 0)
|
|
|
|
return qs;
|
2018-06-27 16:49:23 +02:00
|
|
|
|
2017-06-24 12:15:11 +02:00
|
|
|
qs = deposit_cb (deposit_cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
serial_id,
|
2020-05-07 20:22:02 +02:00
|
|
|
exchange_timestamp,
|
|
|
|
wallet_timestamp,
|
2019-08-17 21:35:21 +02:00
|
|
|
&merchant_pub,
|
|
|
|
&coin_pub,
|
|
|
|
&amount_with_fee,
|
|
|
|
&deposit_fee,
|
|
|
|
&h_contract_terms,
|
|
|
|
wire_deadline,
|
|
|
|
wire);
|
2017-06-24 12:15:11 +02:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for #match_deposit_cb().
|
|
|
|
*/
|
|
|
|
struct MatchingDepositContext
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Function to call for each result
|
|
|
|
*/
|
2020-07-08 12:35:01 +02:00
|
|
|
TALER_EXCHANGEDB_MatchingDepositIterator deposit_cb;
|
2017-06-24 12:15:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for @e deposit_cb.
|
|
|
|
*/
|
|
|
|
void *deposit_cb_cls;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Public key of the merchant against which we are matching.
|
|
|
|
*/
|
|
|
|
const struct TALER_MerchantPublicKeyP *merchant_pub;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2017-06-24 12:15:11 +02:00
|
|
|
/**
|
|
|
|
* Maximum number of results to return.
|
|
|
|
*/
|
|
|
|
uint32_t limit;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loop counter, actual number of results returned.
|
|
|
|
*/
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set to #GNUNET_SYSERR on hard errors.
|
|
|
|
*/
|
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function for #postgres_iterate_matching_deposits().
|
|
|
|
* To be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct MatchingDepositContext *`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-24 12:15:11 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
match_deposit_cb (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-24 12:15:11 +02:00
|
|
|
{
|
|
|
|
struct MatchingDepositContext *mdc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = mdc->pg;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-24 12:15:11 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Found %u/%u matching deposits\n",
|
2019-08-17 21:35:21 +02:00
|
|
|
num_results,
|
|
|
|
mdc->limit);
|
2017-06-24 12:15:11 +02:00
|
|
|
num_results = GNUNET_MIN (num_results,
|
2019-08-17 21:35:21 +02:00
|
|
|
mdc->limit);
|
2019-08-25 16:18:24 +02:00
|
|
|
for (mdc->i = 0; mdc->i<num_results; mdc->i++)
|
2016-01-27 16:42:24 +01:00
|
|
|
{
|
|
|
|
struct TALER_Amount amount_with_fee;
|
|
|
|
struct TALER_Amount deposit_fee;
|
2017-05-29 01:15:41 +02:00
|
|
|
struct GNUNET_HashCode h_contract_terms;
|
2016-01-27 16:42:24 +01:00
|
|
|
struct TALER_CoinSpendPublicKeyP coin_pub;
|
|
|
|
uint64_t serial_id;
|
2017-06-24 12:15:11 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2016-05-27 15:34:24 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("deposit_serial_id",
|
2017-06-24 12:15:11 +02:00
|
|
|
&serial_id),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
2016-01-27 16:42:24 +01:00
|
|
|
&amount_with_fee),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("fee_deposit",
|
2016-01-27 16:42:24 +01:00
|
|
|
&deposit_fee),
|
2017-05-29 01:15:41 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_contract_terms",
|
2017-06-24 12:15:11 +02:00
|
|
|
&h_contract_terms),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub",
|
2017-06-24 12:15:11 +02:00
|
|
|
&coin_pub),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2016-01-27 16:42:24 +01:00
|
|
|
};
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2016-01-27 16:42:24 +01:00
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
2017-06-24 12:15:11 +02:00
|
|
|
mdc->i))
|
2016-01-27 16:42:24 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 12:15:11 +02:00
|
|
|
mdc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2016-01-27 16:42:24 +01:00
|
|
|
}
|
2017-06-24 12:15:11 +02:00
|
|
|
qs = mdc->deposit_cb (mdc->deposit_cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
serial_id,
|
|
|
|
&coin_pub,
|
|
|
|
&amount_with_fee,
|
|
|
|
&deposit_fee,
|
2020-07-08 12:35:01 +02:00
|
|
|
&h_contract_terms);
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2017-06-24 12:15:11 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
|
|
|
break;
|
2016-01-27 16:42:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtain information about other pending deposits for the same
|
|
|
|
* destination. Those deposits must not already be "done".
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param session connection to the database
|
|
|
|
* @param h_wire destination of the wire transfer
|
|
|
|
* @param merchant_pub public key of the merchant
|
|
|
|
* @param deposit_cb function to call for each deposit
|
|
|
|
* @param deposit_cb_cls closure for @a deposit_cb
|
|
|
|
* @param limit maximum number of matching deposits to return
|
2017-06-24 00:41:41 +02:00
|
|
|
* @return transaction status code, if positive:
|
|
|
|
* number of rows processed, 0 if none exist
|
2016-01-27 16:42:24 +01:00
|
|
|
*/
|
2017-06-24 12:15:11 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_iterate_matching_deposits (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct GNUNET_HashCode *h_wire,
|
|
|
|
const struct TALER_MerchantPublicKeyP *merchant_pub,
|
2020-07-08 12:35:01 +02:00
|
|
|
TALER_EXCHANGEDB_MatchingDepositIterator deposit_cb,
|
2020-03-07 00:28:07 +01:00
|
|
|
void *deposit_cb_cls,
|
|
|
|
uint32_t limit)
|
2016-01-27 16:42:24 +01:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (merchant_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_wire),
|
|
|
|
GNUNET_PQ_query_param_end
|
2016-01-27 16:42:24 +01:00
|
|
|
};
|
2017-06-24 12:15:11 +02:00
|
|
|
struct MatchingDepositContext mdc;
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2015-09-19 20:28:37 +02:00
|
|
|
|
2017-06-24 12:15:11 +02:00
|
|
|
mdc.deposit_cb = deposit_cb;
|
|
|
|
mdc.deposit_cb_cls = deposit_cb_cls;
|
|
|
|
mdc.merchant_pub = merchant_pub;
|
2019-08-17 21:35:21 +02:00
|
|
|
mdc.pg = pg;
|
2017-06-24 12:15:11 +02:00
|
|
|
mdc.limit = limit;
|
|
|
|
mdc.status = GNUNET_OK;
|
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"deposits_iterate_matching",
|
|
|
|
params,
|
|
|
|
&match_deposit_cb,
|
|
|
|
&mdc);
|
2017-06-24 12:15:11 +02:00
|
|
|
if (GNUNET_OK != mdc.status)
|
2015-09-19 20:28:37 +02:00
|
|
|
{
|
2017-06-24 12:15:11 +02:00
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
2015-09-19 20:28:37 +02:00
|
|
|
}
|
2017-06-24 12:15:11 +02:00
|
|
|
if (qs >= 0)
|
|
|
|
return mdc.i;
|
|
|
|
return qs;
|
2015-09-19 20:28:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-08 15:44:44 +02:00
|
|
|
/**
|
|
|
|
* Retrieve the record for a known coin.
|
|
|
|
*
|
|
|
|
* @param cls the plugin closure
|
|
|
|
* @param session the database session handle
|
|
|
|
* @param coin_pub the public key of the coin to search for
|
|
|
|
* @param coin_info place holder for the returned coin information object
|
2017-06-24 16:15:42 +02:00
|
|
|
* @return transaction status code
|
2016-05-08 15:44:44 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2019-06-26 21:34:52 +02:00
|
|
|
postgres_get_known_coin (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
struct TALER_CoinPublicInfo *coin_info)
|
2016-05-08 15:44:44 +02:00
|
|
|
{
|
2019-06-26 23:58:48 +02:00
|
|
|
struct PostgresClosure *pc = cls;
|
2016-05-08 15:44:44 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-05-02 21:16:51 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("denom_pub_hash",
|
|
|
|
&coin_info->denom_pub_hash),
|
2017-06-24 16:15:42 +02:00
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("denom_sig",
|
2019-08-17 21:35:21 +02:00
|
|
|
&coin_info->denom_sig.rsa_signature),
|
2017-06-24 16:15:42 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2018-08-10 22:30:38 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Getting known coin data for coin %s\n",
|
|
|
|
TALER_B2S (coin_pub));
|
2016-05-08 15:44:44 +02:00
|
|
|
coin_info->coin_pub = *coin_pub;
|
2019-06-26 23:58:48 +02:00
|
|
|
if (NULL == session)
|
|
|
|
session = postgres_get_session (pc);
|
2020-07-05 16:32:15 +02:00
|
|
|
if (NULL == session)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
2017-06-24 16:15:42 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"get_known_coin",
|
|
|
|
params,
|
|
|
|
rs);
|
2016-05-08 15:44:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-17 12:52:24 +01:00
|
|
|
/**
|
|
|
|
* Retrieve the denomination of a known coin.
|
|
|
|
*
|
|
|
|
* @param cls the plugin closure
|
|
|
|
* @param session the database session handle
|
|
|
|
* @param coin_pub the public key of the coin to search for
|
2020-01-18 13:07:29 +01:00
|
|
|
* @param[out] denom_hash where to store the hash of the coins denomination
|
2020-01-17 12:52:24 +01:00
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_get_coin_denomination (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
struct GNUNET_HashCode *denom_hash)
|
2020-01-17 12:52:24 +01:00
|
|
|
{
|
|
|
|
struct PostgresClosure *pc = cls;
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("denom_pub_hash",
|
|
|
|
denom_hash),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Getting coin denomination of coin %s\n",
|
|
|
|
TALER_B2S (coin_pub));
|
|
|
|
if (NULL == session)
|
|
|
|
session = postgres_get_session (pc);
|
2020-07-05 16:32:15 +02:00
|
|
|
if (NULL == session)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
2020-01-17 12:52:24 +01:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
|
|
|
"get_coin_denomination",
|
|
|
|
params,
|
|
|
|
rs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-08 15:44:44 +02:00
|
|
|
/**
|
2017-04-16 18:34:31 +02:00
|
|
|
* Insert a coin we know of into the DB. The coin can then be
|
|
|
|
* referenced by tables for deposits, refresh and refund
|
|
|
|
* functionality.
|
2016-05-08 15:44:44 +02:00
|
|
|
*
|
|
|
|
* @param cls plugin closure
|
|
|
|
* @param session the shared database session
|
|
|
|
* @param coin_info the public coin info
|
2017-06-18 15:13:13 +02:00
|
|
|
* @return query result status
|
2016-05-08 15:44:44 +02:00
|
|
|
*/
|
2017-06-18 15:13:13 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2016-05-08 15:44:44 +02:00
|
|
|
insert_known_coin (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_CoinPublicInfo *coin_info)
|
|
|
|
{
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&coin_info->coin_pub),
|
2019-05-02 21:16:51 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&coin_info->denom_pub_hash),
|
2016-05-08 15:44:44 +02:00
|
|
|
GNUNET_PQ_query_param_rsa_signature (coin_info->denom_sig.rsa_signature),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-04-16 18:34:31 +02:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2018-08-10 22:30:38 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Creating known coin %s\n",
|
|
|
|
TALER_B2S (&coin_info->coin_pub));
|
2017-06-18 15:13:13 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-08-25 16:18:24 +02:00
|
|
|
"insert_known_coin",
|
|
|
|
params);
|
2016-05-08 15:44:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-28 11:38:45 +01:00
|
|
|
/**
|
|
|
|
* Count the number of known coins by denomination.
|
|
|
|
*
|
|
|
|
* @param cls database connection plugin state
|
|
|
|
* @param session database session
|
|
|
|
* @param denom_pub_hash denomination to count by
|
|
|
|
* @return number of coins if non-negative, otherwise an `enum GNUNET_DB_QueryStatus`
|
|
|
|
*/
|
|
|
|
static long long
|
|
|
|
postgres_count_known_coins (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct GNUNET_HashCode *denom_pub_hash)
|
|
|
|
{
|
|
|
|
uint64_t count;
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (denom_pub_hash),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_uint64 ("count",
|
|
|
|
&count),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2018-10-28 11:38:45 +01:00
|
|
|
qs = GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-06-26 20:43:08 +02:00
|
|
|
"count_known_coins",
|
|
|
|
params,
|
|
|
|
rs);
|
2018-10-28 11:38:45 +01:00
|
|
|
if (0 > qs)
|
|
|
|
return (long long) qs;
|
|
|
|
return (long long) count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Make sure the given @a coin is known to the database.
|
|
|
|
*
|
|
|
|
* @param cls database connection plugin state
|
|
|
|
* @param session database session
|
|
|
|
* @param coin the coin that must be made known
|
|
|
|
* @return database transaction status, non-negative on success
|
2017-09-26 12:30:24 +02:00
|
|
|
*/
|
2020-07-08 19:36:08 +02:00
|
|
|
static enum TALER_EXCHANGEDB_CoinKnownStatus
|
2018-08-19 16:01:57 +02:00
|
|
|
postgres_ensure_coin_known (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_CoinPublicInfo *coin)
|
2017-06-24 16:15:42 +02:00
|
|
|
{
|
2018-08-19 16:01:57 +02:00
|
|
|
struct PostgresClosure *pc = cls;
|
2017-06-24 16:15:42 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
struct TALER_CoinPublicInfo known_coin;
|
2020-03-20 18:38:57 +01:00
|
|
|
#if EXPLICIT_LOCKS
|
2019-08-26 03:09:38 +02:00
|
|
|
struct GNUNET_PQ_QueryParam no_params[] = {
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
|
|
|
if (0 > (qs = GNUNET_PQ_eval_prepared_non_select (session->conn,
|
|
|
|
"lock_known_coins",
|
|
|
|
no_params)))
|
|
|
|
return qs;
|
2020-03-20 18:38:57 +01:00
|
|
|
#endif
|
2017-06-24 16:15:42 +02:00
|
|
|
|
|
|
|
/* check if the coin is already known */
|
2020-07-08 19:36:08 +02:00
|
|
|
// FIXME: modify to not also fetch the RSA signature, needlessly costly!
|
2019-06-26 21:34:52 +02:00
|
|
|
qs = postgres_get_known_coin (pc,
|
|
|
|
session,
|
|
|
|
&coin->coin_pub,
|
|
|
|
&known_coin);
|
2020-07-08 19:36:08 +02:00
|
|
|
switch (qs)
|
2017-11-27 23:42:17 +01:00
|
|
|
{
|
2020-07-08 19:36:08 +02:00
|
|
|
case GNUNET_DB_STATUS_HARD_ERROR:
|
|
|
|
return TALER_EXCHANGEDB_CKS_SOFT_FAIL;
|
|
|
|
case GNUNET_DB_STATUS_SOFT_ERROR:
|
|
|
|
return TALER_EXCHANGEDB_CKS_HARD_FAIL;
|
|
|
|
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_CRYPTO_rsa_signature_free (known_coin.denom_sig.rsa_signature);
|
2020-07-08 19:36:08 +02:00
|
|
|
if (0 == GNUNET_memcmp (&known_coin.denom_pub_hash,
|
|
|
|
&coin->denom_pub_hash))
|
|
|
|
return TALER_EXCHANGEDB_CKS_PRESENT;
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return TALER_EXCHANGEDB_CKS_CONFLICT;
|
|
|
|
case GNUNET_DB_STATUS_SUCCESS_NO_RESULTS:
|
|
|
|
break;
|
2017-11-27 23:42:17 +01:00
|
|
|
}
|
2020-07-08 19:36:08 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/* if not known, insert it */
|
2018-08-19 16:01:57 +02:00
|
|
|
qs = insert_known_coin (pc,
|
2019-08-25 16:18:24 +02:00
|
|
|
session,
|
|
|
|
coin);
|
2020-07-08 19:36:08 +02:00
|
|
|
switch (qs)
|
2017-06-24 16:15:42 +02:00
|
|
|
{
|
2020-07-08 19:36:08 +02:00
|
|
|
case GNUNET_DB_STATUS_HARD_ERROR:
|
|
|
|
return TALER_EXCHANGEDB_CKS_SOFT_FAIL;
|
|
|
|
case GNUNET_DB_STATUS_SOFT_ERROR:
|
|
|
|
return TALER_EXCHANGEDB_CKS_HARD_FAIL;
|
|
|
|
case GNUNET_DB_STATUS_SUCCESS_NO_RESULTS:
|
|
|
|
GNUNET_break (0);
|
|
|
|
return TALER_EXCHANGEDB_CKS_HARD_FAIL;
|
|
|
|
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
|
|
|
|
break;
|
2017-06-24 16:15:42 +02:00
|
|
|
}
|
2020-07-08 19:36:08 +02:00
|
|
|
return TALER_EXCHANGEDB_CKS_ADDED;
|
2017-06-24 16:15:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-28 22:18:53 +01:00
|
|
|
/**
|
2015-06-05 15:26:41 +02:00
|
|
|
* Insert information about deposited coin into the database.
|
2015-01-28 22:18:53 +01:00
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session connection to the database
|
2020-05-07 20:22:02 +02:00
|
|
|
* @param exchange_timestamp time the exchange received the deposit request
|
2015-01-28 22:18:53 +01:00
|
|
|
* @param deposit deposit information to store
|
2017-06-18 15:13:13 +02:00
|
|
|
* @return query result status
|
2015-01-28 22:18:53 +01:00
|
|
|
*/
|
2017-06-18 15:13:13 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2015-03-20 23:51:28 +01:00
|
|
|
postgres_insert_deposit (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2020-05-07 20:22:02 +02:00
|
|
|
struct GNUNET_TIME_Absolute exchange_timestamp,
|
2016-03-01 15:35:04 +01:00
|
|
|
const struct TALER_EXCHANGEDB_Deposit *deposit)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2016-05-06 12:55:44 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->coin.coin_pub),
|
|
|
|
TALER_PQ_query_param_amount (&deposit->amount_with_fee),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (&deposit->timestamp),
|
|
|
|
TALER_PQ_query_param_absolute_time (&deposit->refund_deadline),
|
|
|
|
TALER_PQ_query_param_absolute_time (&deposit->wire_deadline),
|
2016-05-06 12:55:44 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->merchant_pub),
|
2017-05-29 01:15:41 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->h_contract_terms),
|
2016-05-06 12:55:44 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->h_wire),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->csig),
|
2016-05-26 16:38:59 +02:00
|
|
|
TALER_PQ_query_param_json (deposit->receiver_wire_account),
|
2020-05-07 20:22:02 +02:00
|
|
|
TALER_PQ_query_param_absolute_time (&exchange_timestamp),
|
2016-05-06 12:55:44 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2016-05-08 15:44:44 +02:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-09-12 15:34:38 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2019-08-25 16:18:24 +02:00
|
|
|
"Inserting deposit to be executed at %s (%llu/%llu)\n",
|
|
|
|
GNUNET_STRINGS_absolute_time_to_string (deposit->wire_deadline),
|
|
|
|
(unsigned long long) deposit->wire_deadline.abs_value_us,
|
|
|
|
(unsigned long long) deposit->refund_deadline.abs_value_us);
|
2017-06-18 15:13:13 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-08-25 16:18:24 +02:00
|
|
|
"insert_deposit",
|
|
|
|
params);
|
2015-01-28 14:57:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-05 22:57:55 +02:00
|
|
|
/**
|
|
|
|
* Insert information about refunded coin into the database.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param session connection to the database
|
|
|
|
* @param refund refund information to store
|
2017-06-18 21:47:05 +02:00
|
|
|
* @return query result status
|
2016-05-05 22:57:55 +02:00
|
|
|
*/
|
2017-06-18 21:47:05 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2016-05-05 22:57:55 +02:00
|
|
|
postgres_insert_refund (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_EXCHANGEDB_Refund *refund)
|
|
|
|
{
|
2016-05-06 12:55:44 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&refund->coin.coin_pub),
|
2020-01-16 23:49:34 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&refund->details.merchant_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&refund->details.merchant_sig),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&refund->details.h_contract_terms),
|
|
|
|
GNUNET_PQ_query_param_uint64 (&refund->details.rtransaction_id),
|
|
|
|
TALER_PQ_query_param_amount (&refund->details.refund_amount),
|
2016-05-06 12:55:44 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-05-25 02:06:03 +02:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2016-05-06 12:55:44 +02:00
|
|
|
GNUNET_assert (GNUNET_YES ==
|
2020-01-16 23:49:34 +01:00
|
|
|
TALER_amount_cmp_currency (&refund->details.refund_amount,
|
|
|
|
&refund->details.refund_fee));
|
2017-06-18 21:47:05 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"insert_refund",
|
|
|
|
params);
|
2016-05-05 22:57:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-02 14:43:15 +01:00
|
|
|
/**
|
|
|
|
* Closure for #get_refunds_cb().
|
|
|
|
*/
|
|
|
|
struct SelectRefundContext
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Function to call on each result.
|
|
|
|
*/
|
|
|
|
TALER_EXCHANGEDB_RefundCoinCallback cb;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for @a cb.
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
|
|
|
|
2018-01-02 14:43:15 +01:00
|
|
|
/**
|
|
|
|
* Set to #GNUNET_SYSERR on error.
|
2018-01-15 15:18:00 +01:00
|
|
|
*/
|
2018-01-02 14:43:15 +01:00
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct SelectRefundContext *`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2018-01-02 14:43:15 +01:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
get_refunds_cb (void *cls,
|
2019-08-25 16:18:24 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2018-01-02 14:43:15 +01:00
|
|
|
{
|
|
|
|
struct SelectRefundContext *srctx = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = srctx->pg;
|
2018-01-02 14:43:15 +01:00
|
|
|
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2018-01-02 14:43:15 +01:00
|
|
|
{
|
|
|
|
struct TALER_Amount amount_with_fee;
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
|
|
|
&amount_with_fee),
|
2018-01-02 14:43:15 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2018-01-02 14:43:15 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
srctx->status = GNUNET_SYSERR;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (GNUNET_OK !=
|
2019-08-17 21:35:21 +02:00
|
|
|
srctx->cb (srctx->cb_cls,
|
2020-01-17 15:43:04 +01:00
|
|
|
&amount_with_fee))
|
2018-01-02 14:43:15 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-01-17 15:43:04 +01:00
|
|
|
* Select refunds by @a coin_pub, @a merchant_pub and @a h_contract.
|
2018-01-02 14:43:15 +01:00
|
|
|
*
|
|
|
|
* @param cls closure of plugin
|
|
|
|
* @param session database handle to use
|
|
|
|
* @param coin_pub coin to get refunds for
|
2020-01-17 15:43:04 +01:00
|
|
|
* @param merchant_pub merchant to get refunds for
|
2020-01-18 13:23:10 +01:00
|
|
|
* @param h_contract contract (hash) to get refunds for
|
2018-01-02 14:43:15 +01:00
|
|
|
* @param cb function to call for each refund found
|
|
|
|
* @param cb_cls closure for @a cb
|
|
|
|
* @return query result status
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_select_refunds_by_coin (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
const struct TALER_MerchantPublicKeyP *merchant_pub,
|
|
|
|
const struct GNUNET_HashCode *h_contract,
|
|
|
|
TALER_EXCHANGEDB_RefundCoinCallback cb,
|
|
|
|
void *cb_cls)
|
2018-01-02 14:43:15 +01:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-01-02 14:43:15 +01:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_pub),
|
2020-01-17 15:43:04 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (merchant_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_contract),
|
2018-01-02 14:43:15 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct SelectRefundContext srctx = {
|
|
|
|
.cb = cb,
|
|
|
|
.cb_cls = cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
.pg = pg,
|
2018-01-02 14:43:15 +01:00
|
|
|
.status = GNUNET_OK
|
|
|
|
};
|
|
|
|
|
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2020-01-17 15:43:04 +01:00
|
|
|
"get_refunds_by_coin_and_contract",
|
2018-01-02 14:43:15 +01:00
|
|
|
params,
|
|
|
|
&get_refunds_cb,
|
|
|
|
&srctx);
|
|
|
|
if (GNUNET_SYSERR == srctx.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-29 20:00:21 +01:00
|
|
|
/**
|
2017-11-27 23:42:17 +01:00
|
|
|
* Lookup refresh melt commitment data under the given @a rc.
|
2015-01-29 20:00:21 +01:00
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
2019-06-26 15:34:14 +02:00
|
|
|
* @param session database handle to use, NULL if not run in any transaction
|
2017-11-27 23:42:17 +01:00
|
|
|
* @param rc commitment hash to use to locate the operation
|
2020-02-29 16:42:10 +01:00
|
|
|
* @param[out] melt where to store the result; note that
|
|
|
|
* melt->session.coin.denom_sig will be set to NULL
|
2019-10-11 23:28:05 +02:00
|
|
|
* and is not fetched by this routine (as it is not needed by the client)
|
2017-06-20 22:30:15 +02:00
|
|
|
* @return transaction status
|
2015-01-29 20:00:21 +01:00
|
|
|
*/
|
2017-06-20 22:30:15 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-11-27 23:42:17 +01:00
|
|
|
postgres_get_melt (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_RefreshCommitmentP *rc,
|
2020-03-04 12:10:11 +01:00
|
|
|
struct TALER_EXCHANGEDB_Melt *melt)
|
2015-01-29 20:00:21 +01:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (rc),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
2015-01-29 20:00:21 +01:00
|
|
|
};
|
2017-06-20 22:30:15 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-05-02 21:16:51 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("denom_pub_hash",
|
2020-02-29 16:42:10 +01:00
|
|
|
&melt->session.coin.
|
2019-08-25 16:18:24 +02:00
|
|
|
denom_pub_hash),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("fee_refresh",
|
2020-02-29 16:42:10 +01:00
|
|
|
&melt->melt_fee),
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_PQ_result_spec_uint32 ("noreveal_index",
|
2020-02-29 16:42:10 +01:00
|
|
|
&melt->session.noreveal_index),
|
2017-06-20 22:30:15 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("old_coin_pub",
|
2020-02-29 16:42:10 +01:00
|
|
|
&melt->session.coin.coin_pub),
|
2017-06-20 22:30:15 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("old_coin_sig",
|
2020-02-29 16:42:10 +01:00
|
|
|
&melt->session.coin_sig),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
2020-02-29 16:42:10 +01:00
|
|
|
&melt->session.amount_with_fee),
|
2017-06-20 22:30:15 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2015-01-29 20:00:21 +01:00
|
|
|
|
2020-02-29 16:42:10 +01:00
|
|
|
melt->session.coin.denom_sig.rsa_signature = NULL;
|
2019-06-26 15:34:14 +02:00
|
|
|
if (NULL == session)
|
2019-08-17 21:35:21 +02:00
|
|
|
session = postgres_get_session (pg);
|
2020-07-05 16:32:15 +02:00
|
|
|
if (NULL == session)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
2017-06-20 22:30:15 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-08-25 16:18:24 +02:00
|
|
|
"get_melt",
|
|
|
|
params,
|
|
|
|
rs);
|
2020-02-29 16:42:10 +01:00
|
|
|
melt->session.rc = *rc;
|
2017-06-20 22:30:15 +02:00
|
|
|
return qs;
|
2015-01-29 20:00:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-19 11:01:40 +02:00
|
|
|
/**
|
|
|
|
* Lookup noreveal index of a previous melt operation under the given
|
|
|
|
* @a rc.
|
|
|
|
*
|
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session database handle to use
|
|
|
|
* @param rc commitment hash to use to locate the operation
|
2020-01-18 13:07:29 +01:00
|
|
|
* @param[out] noreveal_index returns the "gamma" value selected by the
|
|
|
|
* exchange which is the index of the transfer key that is
|
|
|
|
* not to be revealed to the exchange
|
2018-10-19 11:01:40 +02:00
|
|
|
* @return transaction status
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
|
|
|
postgres_get_melt_index (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_RefreshCommitmentP *rc,
|
|
|
|
uint32_t *noreveal_index)
|
|
|
|
{
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (rc),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_uint32 ("noreveal_index",
|
2019-08-17 21:35:21 +02:00
|
|
|
noreveal_index),
|
2018-10-19 11:01:40 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2018-10-19 11:01:40 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
|
|
|
"get_melt_index",
|
|
|
|
params,
|
|
|
|
rs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-29 20:00:21 +01:00
|
|
|
/**
|
2017-11-27 23:42:17 +01:00
|
|
|
* Store new refresh melt commitment data.
|
2015-01-29 20:00:21 +01:00
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session database handle to use
|
|
|
|
* @param refresh_session session data to store
|
2017-06-22 11:49:40 +02:00
|
|
|
* @return query status for the transaction
|
2015-01-29 20:00:21 +01:00
|
|
|
*/
|
2017-06-22 11:49:40 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_melt (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_EXCHANGEDB_Refresh *refresh_session)
|
2015-01-29 20:00:21 +01:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&refresh_session->rc),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&refresh_session->coin.coin_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&refresh_session->coin_sig),
|
|
|
|
TALER_PQ_query_param_amount (&refresh_session->amount_with_fee),
|
|
|
|
GNUNET_PQ_query_param_uint32 (&refresh_session->noreveal_index),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
2015-01-29 20:00:21 +01:00
|
|
|
};
|
2015-01-28 22:18:53 +01:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-06-22 11:49:40 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-08-25 16:18:24 +02:00
|
|
|
"insert_melt",
|
|
|
|
params);
|
2015-01-28 14:57:55 +01:00
|
|
|
}
|
2015-01-28 22:18:53 +01:00
|
|
|
|
|
|
|
|
2015-01-30 15:34:01 +01:00
|
|
|
/**
|
2017-11-27 23:42:17 +01:00
|
|
|
* Store in the database which coin(s) the wallet wanted to create
|
|
|
|
* in a given refresh operation and all of the other information
|
|
|
|
* we learned or created in the /refresh/reveal step.
|
2015-01-30 15:34:01 +01:00
|
|
|
*
|
2017-11-27 23:42:17 +01:00
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param session database connection
|
2017-11-27 23:42:17 +01:00
|
|
|
* @param rc identify commitment and thus refresh operation
|
2020-01-18 13:23:10 +01:00
|
|
|
* @param num_rrcs number of coins to generate, size of the @a rrcs array
|
2017-11-27 23:42:17 +01:00
|
|
|
* @param rrcs information about the new coins
|
|
|
|
* @param num_tprivs number of entries in @a tprivs, should be #TALER_CNC_KAPPA - 1
|
|
|
|
* @param tprivs transfer private keys to store
|
|
|
|
* @param tp public key to store
|
2017-06-22 11:49:40 +02:00
|
|
|
* @return query status for the transaction
|
2015-01-30 15:34:01 +01:00
|
|
|
*/
|
2017-06-22 11:49:40 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_refresh_reveal (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_RefreshCommitmentP *rc,
|
|
|
|
uint32_t num_rrcs,
|
|
|
|
const struct TALER_EXCHANGEDB_RefreshRevealedCoin *rrcs,
|
|
|
|
unsigned int num_tprivs,
|
|
|
|
const struct TALER_TransferPrivateKeyP *tprivs,
|
|
|
|
const struct TALER_TransferPublicKeyP *tp)
|
2015-01-30 15:34:01 +01:00
|
|
|
{
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-11-27 23:42:17 +01:00
|
|
|
if (TALER_CNC_KAPPA != num_tprivs + 1)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
}
|
2019-08-25 16:18:24 +02:00
|
|
|
for (uint32_t i = 0; i<num_rrcs; i++)
|
2015-01-30 15:34:01 +01:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
const struct TALER_EXCHANGEDB_RefreshRevealedCoin *rrc = &rrcs[i];
|
|
|
|
struct GNUNET_HashCode denom_pub_hash;
|
2019-07-23 23:25:24 +02:00
|
|
|
struct GNUNET_HashCode h_coin_ev;
|
2017-11-27 23:42:17 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (rc),
|
|
|
|
GNUNET_PQ_query_param_uint32 (&i),
|
2019-06-26 15:34:14 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&rrc->orig_coin_link_sig),
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&denom_pub_hash),
|
|
|
|
GNUNET_PQ_query_param_fixed_size (rrc->coin_ev,
|
|
|
|
rrc->coin_ev_size),
|
2019-07-23 23:25:24 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&h_coin_ev),
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_PQ_query_param_rsa_signature (rrc->coin_sig.rsa_signature),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2015-06-11 14:46:03 +02:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_hash (rrc->denom_pub.rsa_public_key,
|
|
|
|
&denom_pub_hash);
|
2019-07-23 23:25:24 +02:00
|
|
|
GNUNET_CRYPTO_hash (rrc->coin_ev,
|
|
|
|
rrc->coin_ev_size,
|
|
|
|
&h_coin_ev);
|
2017-11-27 23:42:17 +01:00
|
|
|
qs = GNUNET_PQ_eval_prepared_non_select (session->conn,
|
|
|
|
"insert_refresh_revealed_coin",
|
|
|
|
params);
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (rc),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (tp),
|
|
|
|
GNUNET_PQ_query_param_fixed_size (tprivs,
|
2019-08-25 16:18:24 +02:00
|
|
|
num_tprivs * sizeof (struct
|
|
|
|
TALER_TransferPrivateKeyP)),
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
|
|
|
"insert_refresh_transfer_keys",
|
|
|
|
params);
|
2015-01-30 15:34:01 +01:00
|
|
|
}
|
2015-06-11 14:46:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-11-27 23:42:17 +01:00
|
|
|
* Context where we aggregate data from the database.
|
|
|
|
* Closure for #add_revealed_coins().
|
2015-06-11 14:46:03 +02:00
|
|
|
*/
|
2017-11-27 23:42:17 +01:00
|
|
|
struct GetRevealContext
|
2015-06-11 14:46:03 +02:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
/**
|
|
|
|
* Array of revealed coins we obtained from the DB.
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGEDB_RefreshRevealedCoin *rrcs;
|
2015-01-30 15:34:01 +01:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
/**
|
|
|
|
* Length of the @a rrcs array.
|
|
|
|
*/
|
|
|
|
unsigned int rrcs_len;
|
2015-01-30 15:34:01 +01:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
/**
|
|
|
|
* Set to an error code if we ran into trouble.
|
|
|
|
*/
|
2017-12-09 23:46:05 +01:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-11-27 23:42:17 +01:00
|
|
|
};
|
2015-06-11 14:40:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-11-27 23:42:17 +01:00
|
|
|
* Function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
2015-06-11 14:40:07 +02:00
|
|
|
*
|
2017-11-27 23:42:17 +01:00
|
|
|
* @param cls closure of type `struct GetRevealContext`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2015-06-11 14:40:07 +02:00
|
|
|
*/
|
|
|
|
static void
|
2017-11-27 23:42:17 +01:00
|
|
|
add_revealed_coins (void *cls,
|
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2015-06-11 14:40:07 +02:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
struct GetRevealContext *grctx = cls;
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
if (0 == num_results)
|
|
|
|
return;
|
|
|
|
grctx->rrcs = GNUNET_new_array (num_results,
|
|
|
|
struct TALER_EXCHANGEDB_RefreshRevealedCoin);
|
|
|
|
grctx->rrcs_len = num_results;
|
|
|
|
for (unsigned int i = 0; i < num_results; i++)
|
2015-01-29 20:18:04 +01:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
struct TALER_EXCHANGEDB_RefreshRevealedCoin *rrc = &grctx->rrcs[i];
|
|
|
|
uint32_t off;
|
2017-06-20 22:30:15 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2020-03-05 23:49:47 +01:00
|
|
|
GNUNET_PQ_result_spec_uint32 ("freshcoin_index",
|
2017-11-27 23:42:17 +01:00
|
|
|
&off),
|
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
2019-08-17 21:35:21 +02:00
|
|
|
&rrc->denom_pub.rsa_public_key),
|
2019-06-26 15:34:14 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("link_sig",
|
|
|
|
&rrc->orig_coin_link_sig),
|
2017-06-20 22:30:15 +02:00
|
|
|
GNUNET_PQ_result_spec_variable_size ("coin_ev",
|
2019-08-17 21:35:21 +02:00
|
|
|
(void **) &rrc->coin_ev,
|
|
|
|
&rrc->coin_ev_size),
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("ev_sig",
|
|
|
|
&rrc->coin_sig.rsa_signature),
|
2017-06-20 22:30:15 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2015-06-11 14:40:07 +02:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_break (0);
|
2017-12-09 23:46:05 +01:00
|
|
|
grctx->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-11-27 23:42:17 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (off != i)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-12-09 23:46:05 +01:00
|
|
|
grctx->qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-11-27 23:42:17 +01:00
|
|
|
return;
|
2015-06-11 14:40:07 +02:00
|
|
|
}
|
2015-01-29 20:18:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-11-27 23:42:17 +01:00
|
|
|
* Lookup in the database the coins that we want to
|
|
|
|
* create in the given refresh operation.
|
2015-01-29 20:18:04 +01:00
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
2017-11-27 23:42:17 +01:00
|
|
|
* @param session database connection
|
|
|
|
* @param rc identify commitment and thus refresh operation
|
|
|
|
* @param cb function to call with the results
|
|
|
|
* @param cb_cls closure for @a cb
|
2017-06-20 22:30:15 +02:00
|
|
|
* @return transaction status
|
2015-01-29 20:18:04 +01:00
|
|
|
*/
|
2017-06-20 22:30:15 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-11-27 23:42:17 +01:00
|
|
|
postgres_get_refresh_reveal (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_RefreshCommitmentP *rc,
|
|
|
|
TALER_EXCHANGEDB_RefreshCallback cb,
|
|
|
|
void *cb_cls)
|
2015-01-29 20:18:04 +01:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
struct GetRevealContext grctx;
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
struct TALER_TransferPublicKeyP tp;
|
|
|
|
void *tpriv;
|
|
|
|
size_t tpriv_size;
|
2016-05-16 11:55:47 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (rc),
|
2016-05-16 11:55:47 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-06-20 22:30:15 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("transfer_pub",
|
2019-06-26 15:34:14 +02:00
|
|
|
&tp),
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_PQ_result_spec_variable_size ("transfer_privs",
|
|
|
|
&tpriv,
|
|
|
|
&tpriv_size),
|
2017-06-20 22:30:15 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-11-27 23:42:17 +01:00
|
|
|
/* First get the coins */
|
|
|
|
memset (&grctx,
|
|
|
|
0,
|
|
|
|
sizeof (grctx));
|
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
|
|
|
"get_refresh_revealed_coins",
|
|
|
|
params,
|
|
|
|
&add_revealed_coins,
|
|
|
|
&grctx);
|
|
|
|
switch (qs)
|
|
|
|
{
|
|
|
|
case GNUNET_DB_STATUS_HARD_ERROR:
|
|
|
|
case GNUNET_DB_STATUS_SOFT_ERROR:
|
|
|
|
case GNUNET_DB_STATUS_SUCCESS_NO_RESULTS:
|
|
|
|
goto cleanup;
|
|
|
|
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
|
2019-10-11 23:28:05 +02:00
|
|
|
default: /* can have more than one result */
|
2017-11-27 23:42:17 +01:00
|
|
|
break;
|
|
|
|
}
|
2017-12-09 23:46:05 +01:00
|
|
|
switch (grctx.qs)
|
|
|
|
{
|
|
|
|
case GNUNET_DB_STATUS_HARD_ERROR:
|
|
|
|
case GNUNET_DB_STATUS_SOFT_ERROR:
|
|
|
|
goto cleanup;
|
|
|
|
case GNUNET_DB_STATUS_SUCCESS_NO_RESULTS:
|
2019-10-11 23:28:05 +02:00
|
|
|
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT: /* should be impossible */
|
2017-12-09 23:46:05 +01:00
|
|
|
break;
|
|
|
|
}
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
/* now also get the transfer keys (public and private) */
|
|
|
|
qs = GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
|
|
|
"get_refresh_transfer_keys",
|
|
|
|
params,
|
|
|
|
rs);
|
|
|
|
switch (qs)
|
|
|
|
{
|
|
|
|
case GNUNET_DB_STATUS_HARD_ERROR:
|
|
|
|
case GNUNET_DB_STATUS_SOFT_ERROR:
|
|
|
|
case GNUNET_DB_STATUS_SUCCESS_NO_RESULTS:
|
|
|
|
goto cleanup;
|
|
|
|
case GNUNET_DB_STATUS_SUCCESS_ONE_RESULT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
GNUNET_assert (0);
|
|
|
|
}
|
|
|
|
if ( (0 != tpriv_size % sizeof (struct TALER_TransferPrivateKeyP)) ||
|
2019-08-25 16:18:24 +02:00
|
|
|
(TALER_CNC_KAPPA - 1 != tpriv_size / sizeof (struct
|
|
|
|
TALER_TransferPrivateKeyP)) )
|
2017-11-27 23:42:17 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2016-11-17 16:37:40 +01:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
/* Pass result back to application */
|
|
|
|
cb (cb_cls,
|
|
|
|
grctx.rrcs_len,
|
|
|
|
grctx.rrcs,
|
|
|
|
tpriv_size / sizeof (struct TALER_TransferPrivateKeyP),
|
|
|
|
(const struct TALER_TransferPrivateKeyP *) tpriv,
|
|
|
|
&tp);
|
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2016-11-17 16:37:40 +01:00
|
|
|
|
2019-10-05 15:42:08 +02:00
|
|
|
cleanup:
|
2017-11-27 23:42:17 +01:00
|
|
|
for (unsigned int i = 0; i < grctx.rrcs_len; i++)
|
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_RefreshRevealedCoin *rrc = &grctx.rrcs[i];
|
2016-11-17 16:37:40 +01:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
if (NULL != rrc->denom_pub.rsa_public_key)
|
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (rrc->denom_pub.rsa_public_key);
|
|
|
|
if (NULL != rrc->coin_sig.rsa_signature)
|
|
|
|
GNUNET_CRYPTO_rsa_signature_free (rrc->coin_sig.rsa_signature);
|
2020-07-05 16:58:43 +02:00
|
|
|
GNUNET_free (rrc->coin_ev);
|
2017-11-27 23:42:17 +01:00
|
|
|
}
|
2020-07-05 16:58:43 +02:00
|
|
|
GNUNET_free (grctx.rrcs);
|
2015-01-31 20:53:19 +01:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
return qs;
|
2015-01-31 20:53:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-20 13:40:17 +02:00
|
|
|
* Closure for #add_ldl().
|
2015-01-31 20:53:19 +01:00
|
|
|
*/
|
2017-06-20 13:40:17 +02:00
|
|
|
struct LinkDataContext
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
2017-09-26 12:30:24 +02:00
|
|
|
/**
|
2017-11-27 23:42:17 +01:00
|
|
|
* Function to call on each result.
|
|
|
|
*/
|
2020-03-04 12:10:11 +01:00
|
|
|
TALER_EXCHANGEDB_LinkCallback ldc;
|
2017-11-27 23:42:17 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for @e ldc.
|
2017-09-26 12:30:24 +02:00
|
|
|
*/
|
2017-11-27 23:42:17 +01:00
|
|
|
void *ldc_cls;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Last transfer public key for which we have information in @e last.
|
|
|
|
* Only valid if @e last is non-NULL.
|
|
|
|
*/
|
|
|
|
struct TALER_TransferPublicKeyP transfer_pub;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Link data for @e transfer_pub
|
|
|
|
*/
|
2020-03-04 12:10:11 +01:00
|
|
|
struct TALER_EXCHANGEDB_LinkList *last;
|
2015-06-11 16:25:32 +02:00
|
|
|
|
2017-06-20 13:40:17 +02:00
|
|
|
/**
|
|
|
|
* Status, set to #GNUNET_SYSERR on errors,
|
|
|
|
*/
|
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
2015-01-31 20:53:19 +01:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
/**
|
|
|
|
* Free memory of the link data list.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state (unused)
|
|
|
|
* @param ldl link data list to release
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
free_link_data_list (void *cls,
|
2020-03-04 12:10:11 +01:00
|
|
|
struct TALER_EXCHANGEDB_LinkList *ldl)
|
2017-11-27 23:42:17 +01:00
|
|
|
{
|
2020-03-04 12:10:11 +01:00
|
|
|
struct TALER_EXCHANGEDB_LinkList *next;
|
2017-11-27 23:42:17 +01:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-11-27 23:42:17 +01:00
|
|
|
while (NULL != ldl)
|
|
|
|
{
|
|
|
|
next = ldl->next;
|
|
|
|
if (NULL != ldl->denom_pub.rsa_public_key)
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (ldl->denom_pub.rsa_public_key);
|
|
|
|
if (NULL != ldl->ev_sig.rsa_signature)
|
|
|
|
GNUNET_CRYPTO_rsa_signature_free (ldl->ev_sig.rsa_signature);
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_free (ldl);
|
|
|
|
ldl = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-20 13:40:17 +02:00
|
|
|
/**
|
|
|
|
* Function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct LinkDataContext *`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-20 13:40:17 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
add_ldl (void *cls,
|
2019-06-26 15:34:14 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-20 13:40:17 +02:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
struct LinkDataContext *ldctx = cls;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-20 13:40:17 +02:00
|
|
|
for (int i = num_results - 1; i >= 0; i--)
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
2020-03-04 12:10:11 +01:00
|
|
|
struct TALER_EXCHANGEDB_LinkList *pos;
|
2017-11-27 23:42:17 +01:00
|
|
|
struct TALER_TransferPublicKeyP transfer_pub;
|
2015-01-31 20:53:19 +01:00
|
|
|
|
2020-03-04 12:10:11 +01:00
|
|
|
pos = GNUNET_new (struct TALER_EXCHANGEDB_LinkList);
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
2016-05-24 20:13:31 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("transfer_pub",
|
|
|
|
&transfer_pub),
|
2019-06-26 15:34:14 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("link_sig",
|
|
|
|
&pos->orig_coin_link_sig),
|
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("ev_sig",
|
|
|
|
&pos->ev_sig.rsa_signature),
|
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&pos->denom_pub.rsa_public_key),
|
|
|
|
GNUNET_PQ_result_spec_end
|
2016-05-24 20:13:31 +02:00
|
|
|
};
|
2016-05-26 16:38:59 +02:00
|
|
|
|
2016-05-24 20:13:31 +02:00
|
|
|
if (GNUNET_OK !=
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
2016-08-07 23:21:49 +02:00
|
|
|
rs,
|
|
|
|
i))
|
2016-05-24 20:13:31 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (pos);
|
|
|
|
ldctx->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2016-05-24 20:13:31 +02:00
|
|
|
}
|
2015-01-31 20:53:19 +01:00
|
|
|
}
|
2017-11-27 23:42:17 +01:00
|
|
|
if ( (NULL != ldctx->last) &&
|
2019-04-08 20:43:23 +02:00
|
|
|
(0 == GNUNET_memcmp (&transfer_pub,
|
|
|
|
&ldctx->transfer_pub)) )
|
2017-11-27 23:42:17 +01:00
|
|
|
{
|
|
|
|
pos->next = ldctx->last;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (NULL != ldctx->last)
|
|
|
|
{
|
|
|
|
ldctx->ldc (ldctx->ldc_cls,
|
|
|
|
&ldctx->transfer_pub,
|
|
|
|
ldctx->last);
|
|
|
|
free_link_data_list (cls,
|
|
|
|
ldctx->last);
|
|
|
|
}
|
|
|
|
ldctx->transfer_pub = transfer_pub;
|
|
|
|
}
|
|
|
|
ldctx->last = pos;
|
2015-01-31 20:53:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-20 13:40:17 +02:00
|
|
|
* Obtain the link data of a coin, that is the encrypted link
|
|
|
|
* information, the denomination keys and the signatures.
|
2015-01-31 20:53:19 +01:00
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session database connection
|
2017-11-27 23:42:17 +01:00
|
|
|
* @param coin_pub public key of the coin
|
|
|
|
* @param ldc function to call for each session the coin was melted into
|
|
|
|
* @param ldc_cls closure for @a tdc
|
2017-06-20 13:40:17 +02:00
|
|
|
* @return transaction status code
|
2015-01-31 20:53:19 +01:00
|
|
|
*/
|
2017-06-20 13:40:17 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-11-27 23:42:17 +01:00
|
|
|
postgres_get_link_data (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
2020-03-04 12:10:11 +01:00
|
|
|
TALER_EXCHANGEDB_LinkCallback ldc,
|
2017-11-27 23:42:17 +01:00
|
|
|
void *ldc_cls)
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_pub),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
2015-01-31 20:53:19 +01:00
|
|
|
};
|
2017-06-20 13:40:17 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-11-27 23:42:17 +01:00
|
|
|
struct LinkDataContext ldctx;
|
2015-01-31 20:53:19 +01:00
|
|
|
|
2017-11-27 23:42:17 +01:00
|
|
|
ldctx.ldc = ldc;
|
|
|
|
ldctx.ldc_cls = ldc_cls;
|
|
|
|
ldctx.last = NULL;
|
|
|
|
ldctx.status = GNUNET_OK;
|
2017-06-20 13:40:17 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-06-26 15:34:14 +02:00
|
|
|
"get_link",
|
|
|
|
params,
|
|
|
|
&add_ldl,
|
|
|
|
&ldctx);
|
2017-11-27 23:42:17 +01:00
|
|
|
if (NULL != ldctx.last)
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
if (GNUNET_OK == ldctx.status)
|
2015-06-10 15:31:38 +02:00
|
|
|
{
|
2017-11-27 23:42:17 +01:00
|
|
|
/* call callback one more time! */
|
|
|
|
ldc (ldc_cls,
|
|
|
|
&ldctx.transfer_pub,
|
|
|
|
ldctx.last);
|
2015-06-10 15:31:38 +02:00
|
|
|
}
|
2017-11-27 23:42:17 +01:00
|
|
|
free_link_data_list (cls,
|
|
|
|
ldctx.last);
|
|
|
|
ldctx.last = NULL;
|
2015-06-10 15:31:38 +02:00
|
|
|
}
|
2017-11-27 23:42:17 +01:00
|
|
|
if (GNUNET_OK != ldctx.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
2017-06-20 13:40:17 +02:00
|
|
|
return qs;
|
2015-01-31 20:53:19 +01:00
|
|
|
}
|
|
|
|
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2015-01-28 22:18:53 +01:00
|
|
|
/**
|
2017-06-19 16:07:34 +02:00
|
|
|
* Closure for callbacks called from #postgres_get_coin_transactions()
|
2015-01-28 22:18:53 +01:00
|
|
|
*/
|
2017-06-19 16:07:34 +02:00
|
|
|
struct CoinHistoryContext
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2017-06-19 16:07:34 +02:00
|
|
|
/**
|
|
|
|
* Head of the coin's history list.
|
|
|
|
*/
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_TransactionList *head;
|
2015-04-10 16:22:03 +02:00
|
|
|
|
2017-06-19 16:07:34 +02:00
|
|
|
/**
|
|
|
|
* Public key of the coin we are building the history for.
|
|
|
|
*/
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for all callbacks of this database plugin.
|
|
|
|
*/
|
|
|
|
void *db_cls;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Database session we are using.
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGEDB_Session *session;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
|
|
|
|
2017-06-19 16:07:34 +02:00
|
|
|
/**
|
2020-04-22 21:21:48 +02:00
|
|
|
* Set to 'true' if the transaction failed.
|
2017-09-26 12:30:24 +02:00
|
|
|
*/
|
2020-04-22 21:21:48 +02:00
|
|
|
bool failed;
|
2020-04-23 11:55:10 +02:00
|
|
|
|
|
|
|
/**
|
2020-04-24 00:52:33 +02:00
|
|
|
* Set to 'true' if we found a deposit or melt (for invariant check).
|
2020-04-23 11:55:10 +02:00
|
|
|
*/
|
2020-04-24 00:52:33 +02:00
|
|
|
bool have_deposit_or_melt;
|
2017-06-19 16:07:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct CoinHistoryContext`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-19 16:07:34 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
add_coin_deposit (void *cls,
|
2019-07-21 20:15:11 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-19 16:07:34 +02:00
|
|
|
{
|
|
|
|
struct CoinHistoryContext *chc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = chc->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2017-06-19 16:07:34 +02:00
|
|
|
for (unsigned int i = 0; i < num_results; i++)
|
2015-04-10 16:22:03 +02:00
|
|
|
{
|
2020-01-16 23:49:34 +01:00
|
|
|
struct TALER_EXCHANGEDB_DepositListEntry *deposit;
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_TransactionList *tl;
|
2019-09-03 03:45:18 +02:00
|
|
|
uint64_t serial_id;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2020-04-24 00:52:33 +02:00
|
|
|
chc->have_deposit_or_melt = true;
|
2020-01-16 23:49:34 +01:00
|
|
|
deposit = GNUNET_new (struct TALER_EXCHANGEDB_DepositListEntry);
|
2015-04-10 16:22:03 +02:00
|
|
|
{
|
2017-06-19 16:07:34 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
2019-07-21 20:15:11 +02:00
|
|
|
&deposit->amount_with_fee),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("fee_deposit",
|
2019-07-21 20:15:11 +02:00
|
|
|
&deposit->deposit_fee),
|
2020-05-07 20:22:02 +02:00
|
|
|
TALER_PQ_result_spec_absolute_time ("wallet_timestamp",
|
2019-07-21 20:15:11 +02:00
|
|
|
&deposit->timestamp),
|
|
|
|
TALER_PQ_result_spec_absolute_time ("refund_deadline",
|
|
|
|
&deposit->refund_deadline),
|
|
|
|
TALER_PQ_result_spec_absolute_time ("wire_deadline",
|
|
|
|
&deposit->wire_deadline),
|
2020-07-08 15:46:51 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("denom_pub_hash",
|
|
|
|
&deposit->h_denom_pub),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_pub",
|
|
|
|
&deposit->merchant_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_contract_terms",
|
|
|
|
&deposit->h_contract_terms),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_wire",
|
|
|
|
&deposit->h_wire),
|
|
|
|
TALER_PQ_result_spec_json ("wire",
|
2018-04-02 14:24:45 +02:00
|
|
|
&deposit->receiver_wire_account),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_sig",
|
|
|
|
&deposit->csig),
|
2019-09-03 03:45:18 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("deposit_serial_id",
|
|
|
|
&serial_id),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
2017-06-19 16:07:34 +02:00
|
|
|
};
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-19 16:07:34 +02:00
|
|
|
if (GNUNET_OK !=
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2016-05-21 19:22:03 +02:00
|
|
|
{
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (deposit);
|
2020-04-22 21:21:48 +02:00
|
|
|
chc->failed = true;
|
2019-07-21 20:15:11 +02:00
|
|
|
return;
|
2016-05-21 19:22:03 +02:00
|
|
|
}
|
2015-04-10 16:22:03 +02:00
|
|
|
}
|
2017-06-19 16:07:34 +02:00
|
|
|
tl = GNUNET_new (struct TALER_EXCHANGEDB_TransactionList);
|
|
|
|
tl->next = chc->head;
|
|
|
|
tl->type = TALER_EXCHANGEDB_TT_DEPOSIT;
|
|
|
|
tl->details.deposit = deposit;
|
2019-09-03 03:45:18 +02:00
|
|
|
tl->serial_id = serial_id;
|
2017-06-19 16:07:34 +02:00
|
|
|
chc->head = tl;
|
2015-04-10 16:22:03 +02:00
|
|
|
}
|
2017-06-19 16:07:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct CoinHistoryContext`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-19 16:07:34 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
add_coin_melt (void *cls,
|
2019-07-21 20:15:11 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-19 16:07:34 +02:00
|
|
|
{
|
|
|
|
struct CoinHistoryContext *chc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = chc->pg;
|
2017-06-19 16:07:34 +02:00
|
|
|
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2015-06-10 15:48:03 +02:00
|
|
|
{
|
2020-03-04 11:47:22 +01:00
|
|
|
struct TALER_EXCHANGEDB_MeltListEntry *melt;
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_TransactionList *tl;
|
2019-09-03 03:45:18 +02:00
|
|
|
uint64_t serial_id;
|
2015-06-11 16:21:40 +02:00
|
|
|
|
2020-04-24 00:52:33 +02:00
|
|
|
chc->have_deposit_or_melt = true;
|
2020-03-04 11:47:22 +01:00
|
|
|
melt = GNUNET_new (struct TALER_EXCHANGEDB_MeltListEntry);
|
2015-06-11 16:21:40 +02:00
|
|
|
{
|
2017-06-19 16:07:34 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("rc",
|
2020-01-16 23:49:34 +01:00
|
|
|
&melt->rc),
|
2019-07-21 20:15:11 +02:00
|
|
|
/* oldcoin_index not needed */
|
2020-07-08 15:46:51 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("denom_pub_hash",
|
|
|
|
&melt->h_denom_pub),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("old_coin_sig",
|
2020-01-16 23:49:34 +01:00
|
|
|
&melt->coin_sig),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
2020-01-16 23:49:34 +01:00
|
|
|
&melt->amount_with_fee),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("fee_refresh",
|
2019-07-21 20:15:11 +02:00
|
|
|
&melt->melt_fee),
|
2019-09-03 03:45:18 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("melt_serial_id",
|
|
|
|
&serial_id),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
2017-06-19 16:07:34 +02:00
|
|
|
};
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-19 16:07:34 +02:00
|
|
|
if (GNUNET_OK !=
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2016-05-21 19:22:03 +02:00
|
|
|
{
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (melt);
|
2020-04-22 21:21:48 +02:00
|
|
|
chc->failed = true;
|
2019-07-21 20:15:11 +02:00
|
|
|
return;
|
2016-05-21 19:22:03 +02:00
|
|
|
}
|
2015-06-11 16:21:40 +02:00
|
|
|
}
|
2017-06-19 16:07:34 +02:00
|
|
|
tl = GNUNET_new (struct TALER_EXCHANGEDB_TransactionList);
|
|
|
|
tl->next = chc->head;
|
2020-03-04 11:47:22 +01:00
|
|
|
tl->type = TALER_EXCHANGEDB_TT_MELT;
|
2017-06-19 16:07:34 +02:00
|
|
|
tl->details.melt = melt;
|
2019-09-03 03:45:18 +02:00
|
|
|
tl->serial_id = serial_id;
|
2017-06-19 16:07:34 +02:00
|
|
|
chc->head = tl;
|
2015-06-10 15:48:03 +02:00
|
|
|
}
|
2017-06-19 16:07:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct CoinHistoryContext`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-19 16:07:34 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
add_coin_refund (void *cls,
|
2019-07-21 20:15:11 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-19 16:07:34 +02:00
|
|
|
{
|
|
|
|
struct CoinHistoryContext *chc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = chc->pg;
|
2017-06-19 16:07:34 +02:00
|
|
|
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2016-05-06 13:03:57 +02:00
|
|
|
{
|
2020-01-16 23:49:34 +01:00
|
|
|
struct TALER_EXCHANGEDB_RefundListEntry *refund;
|
2016-05-06 13:03:57 +02:00
|
|
|
struct TALER_EXCHANGEDB_TransactionList *tl;
|
2019-09-03 03:45:18 +02:00
|
|
|
uint64_t serial_id;
|
2016-05-06 13:03:57 +02:00
|
|
|
|
2020-01-16 23:49:34 +01:00
|
|
|
refund = GNUNET_new (struct TALER_EXCHANGEDB_RefundListEntry);
|
2016-05-06 13:03:57 +02:00
|
|
|
{
|
2017-06-19 16:07:34 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_pub",
|
|
|
|
&refund->merchant_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_sig",
|
|
|
|
&refund->merchant_sig),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_contract_terms",
|
|
|
|
&refund->h_contract_terms),
|
|
|
|
GNUNET_PQ_result_spec_uint64 ("rtransaction_id",
|
|
|
|
&refund->rtransaction_id),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
2019-07-21 20:15:11 +02:00
|
|
|
&refund->refund_amount),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("fee_refund",
|
2019-07-21 20:15:11 +02:00
|
|
|
&refund->refund_fee),
|
2019-09-03 03:45:18 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("refund_serial_id",
|
|
|
|
&serial_id),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
2017-06-19 16:07:34 +02:00
|
|
|
};
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-19 16:07:34 +02:00
|
|
|
if (GNUNET_OK !=
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2016-05-21 19:22:03 +02:00
|
|
|
{
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (refund);
|
2020-04-22 21:21:48 +02:00
|
|
|
chc->failed = true;
|
2019-07-21 20:15:11 +02:00
|
|
|
return;
|
2016-05-21 19:22:03 +02:00
|
|
|
}
|
2016-05-06 13:03:57 +02:00
|
|
|
}
|
2017-06-19 16:07:34 +02:00
|
|
|
tl = GNUNET_new (struct TALER_EXCHANGEDB_TransactionList);
|
|
|
|
tl->next = chc->head;
|
|
|
|
tl->type = TALER_EXCHANGEDB_TT_REFUND;
|
|
|
|
tl->details.refund = refund;
|
2019-09-03 03:45:18 +02:00
|
|
|
tl->serial_id = serial_id;
|
2017-06-19 16:07:34 +02:00
|
|
|
chc->head = tl;
|
2016-05-06 13:03:57 +02:00
|
|
|
}
|
2017-06-19 16:07:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-21 20:15:11 +02:00
|
|
|
/**
|
|
|
|
* Function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct CoinHistoryContext`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2019-07-21 20:15:11 +02:00
|
|
|
*/
|
|
|
|
static void
|
2020-01-18 23:49:37 +01:00
|
|
|
add_old_coin_recoup (void *cls,
|
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2019-07-21 20:15:11 +02:00
|
|
|
{
|
|
|
|
struct CoinHistoryContext *chc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = chc->pg;
|
2019-07-21 20:15:11 +02:00
|
|
|
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2019-07-21 20:15:11 +02:00
|
|
|
{
|
2020-01-18 23:49:37 +01:00
|
|
|
struct TALER_EXCHANGEDB_RecoupRefreshListEntry *recoup;
|
2019-07-21 20:15:11 +02:00
|
|
|
struct TALER_EXCHANGEDB_TransactionList *tl;
|
2019-09-03 03:45:18 +02:00
|
|
|
uint64_t serial_id;
|
2019-07-21 20:15:11 +02:00
|
|
|
|
2020-01-18 23:49:37 +01:00
|
|
|
recoup = GNUNET_new (struct TALER_EXCHANGEDB_RecoupRefreshListEntry);
|
2019-07-21 20:15:11 +02:00
|
|
|
{
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin.coin_pub),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_sig",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin_sig),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_blind",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin_blind),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->value),
|
2019-07-21 20:15:11 +02:00
|
|
|
TALER_PQ_result_spec_absolute_time ("timestamp",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->timestamp),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("denom_pub_hash",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin.denom_pub_hash),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("denom_sig",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin.denom_sig.
|
2019-08-25 16:18:24 +02:00
|
|
|
rsa_signature),
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("recoup_refresh_uuid",
|
2019-09-03 03:45:18 +02:00
|
|
|
&serial_id),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_free (recoup);
|
2020-04-22 21:21:48 +02:00
|
|
|
chc->failed = true;
|
2019-07-21 20:15:11 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-01-18 23:49:37 +01:00
|
|
|
recoup->old_coin_pub = *chc->coin_pub;
|
2019-07-21 20:15:11 +02:00
|
|
|
}
|
|
|
|
tl = GNUNET_new (struct TALER_EXCHANGEDB_TransactionList);
|
|
|
|
tl->next = chc->head;
|
2020-01-18 23:49:37 +01:00
|
|
|
tl->type = TALER_EXCHANGEDB_TT_OLD_COIN_RECOUP;
|
|
|
|
tl->details.old_coin_recoup = recoup;
|
2019-09-03 03:45:18 +02:00
|
|
|
tl->serial_id = serial_id;
|
2019-07-21 20:15:11 +02:00
|
|
|
chc->head = tl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-19 16:07:34 +02:00
|
|
|
/**
|
|
|
|
* Function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct CoinHistoryContext`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-19 16:07:34 +02:00
|
|
|
*/
|
|
|
|
static void
|
2020-01-18 23:49:37 +01:00
|
|
|
add_coin_recoup (void *cls,
|
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-19 16:07:34 +02:00
|
|
|
{
|
|
|
|
struct CoinHistoryContext *chc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = chc->pg;
|
2017-06-19 16:07:34 +02:00
|
|
|
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2017-04-02 18:17:29 +02:00
|
|
|
{
|
2020-01-18 23:49:37 +01:00
|
|
|
struct TALER_EXCHANGEDB_RecoupListEntry *recoup;
|
2017-04-02 18:17:29 +02:00
|
|
|
struct TALER_EXCHANGEDB_TransactionList *tl;
|
2019-09-03 03:45:18 +02:00
|
|
|
uint64_t serial_id;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2020-01-18 23:49:37 +01:00
|
|
|
recoup = GNUNET_new (struct TALER_EXCHANGEDB_RecoupListEntry);
|
2017-04-02 18:17:29 +02:00
|
|
|
{
|
2017-06-19 16:07:34 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("reserve_pub",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->reserve_pub),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_sig",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin_sig),
|
2020-07-08 15:46:51 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("denom_pub_hash",
|
|
|
|
&recoup->h_denom_pub),
|
2020-01-16 23:49:34 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_blind",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin_blind),
|
2020-01-16 23:49:34 +01:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->value),
|
2019-07-21 20:15:11 +02:00
|
|
|
TALER_PQ_result_spec_absolute_time ("timestamp",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->timestamp),
|
|
|
|
GNUNET_PQ_result_spec_uint64 ("recoup_uuid",
|
2019-09-03 03:45:18 +02:00
|
|
|
&serial_id),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
2017-06-19 16:07:34 +02:00
|
|
|
};
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-19 16:07:34 +02:00
|
|
|
if (GNUNET_OK !=
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2017-04-02 18:17:29 +02:00
|
|
|
{
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_break (0);
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_free (recoup);
|
2020-04-22 21:21:48 +02:00
|
|
|
chc->failed = true;
|
2019-07-21 20:15:11 +02:00
|
|
|
return;
|
2017-04-02 18:17:29 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-19 16:07:34 +02:00
|
|
|
tl = GNUNET_new (struct TALER_EXCHANGEDB_TransactionList);
|
|
|
|
tl->next = chc->head;
|
2020-01-18 23:49:37 +01:00
|
|
|
tl->type = TALER_EXCHANGEDB_TT_RECOUP;
|
|
|
|
tl->details.recoup = recoup;
|
2019-09-03 03:45:18 +02:00
|
|
|
tl->serial_id = serial_id;
|
2017-06-19 16:07:34 +02:00
|
|
|
chc->head = tl;
|
2017-04-02 18:17:29 +02:00
|
|
|
}
|
2017-06-19 16:07:34 +02:00
|
|
|
}
|
2017-04-02 18:17:29 +02:00
|
|
|
|
2017-06-19 16:07:34 +02:00
|
|
|
|
2019-07-21 20:15:11 +02:00
|
|
|
/**
|
|
|
|
* Function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct CoinHistoryContext`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2019-07-21 20:15:11 +02:00
|
|
|
*/
|
|
|
|
static void
|
2020-01-18 23:49:37 +01:00
|
|
|
add_coin_recoup_refresh (void *cls,
|
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2019-07-21 20:15:11 +02:00
|
|
|
{
|
|
|
|
struct CoinHistoryContext *chc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = chc->pg;
|
2019-07-21 20:15:11 +02:00
|
|
|
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2019-07-21 20:15:11 +02:00
|
|
|
{
|
2020-01-18 23:49:37 +01:00
|
|
|
struct TALER_EXCHANGEDB_RecoupRefreshListEntry *recoup;
|
2019-07-21 20:15:11 +02:00
|
|
|
struct TALER_EXCHANGEDB_TransactionList *tl;
|
2019-09-03 03:45:18 +02:00
|
|
|
uint64_t serial_id;
|
2019-07-21 20:15:11 +02:00
|
|
|
|
2020-01-18 23:49:37 +01:00
|
|
|
recoup = GNUNET_new (struct TALER_EXCHANGEDB_RecoupRefreshListEntry);
|
2019-07-21 20:15:11 +02:00
|
|
|
{
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("old_coin_pub",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->old_coin_pub),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_sig",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin_sig),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_blind",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin_blind),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->value),
|
2019-07-21 20:15:11 +02:00
|
|
|
TALER_PQ_result_spec_absolute_time ("timestamp",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->timestamp),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("denom_pub_hash",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin.denom_pub_hash),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("denom_sig",
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup->coin.denom_sig.
|
2019-08-25 16:18:24 +02:00
|
|
|
rsa_signature),
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("recoup_refresh_uuid",
|
2019-09-03 03:45:18 +02:00
|
|
|
&serial_id),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_free (recoup);
|
2020-04-22 21:21:48 +02:00
|
|
|
chc->failed = true;
|
2019-07-21 20:15:11 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-01-18 23:49:37 +01:00
|
|
|
recoup->coin.coin_pub = *chc->coin_pub;
|
2019-07-21 20:15:11 +02:00
|
|
|
}
|
|
|
|
tl = GNUNET_new (struct TALER_EXCHANGEDB_TransactionList);
|
|
|
|
tl->next = chc->head;
|
2020-01-18 23:49:37 +01:00
|
|
|
tl->type = TALER_EXCHANGEDB_TT_RECOUP_REFRESH;
|
|
|
|
tl->details.recoup_refresh = recoup;
|
2019-09-03 03:45:18 +02:00
|
|
|
tl->serial_id = serial_id;
|
2019-07-21 20:15:11 +02:00
|
|
|
chc->head = tl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-19 17:19:27 +02:00
|
|
|
/**
|
|
|
|
* Work we need to do.
|
|
|
|
*/
|
|
|
|
struct Work
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* SQL prepared statement name.
|
|
|
|
*/
|
|
|
|
const char *statement;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to call to handle the result(s).
|
|
|
|
*/
|
|
|
|
GNUNET_PQ_PostgresResultHandler cb;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-06-19 16:07:34 +02:00
|
|
|
/**
|
2019-07-21 20:15:11 +02:00
|
|
|
* Compile a list of all (historic) transactions performed with the given coin
|
2020-01-18 23:49:37 +01:00
|
|
|
* (/refresh/melt, /deposit, /refund and /recoup operations).
|
2017-06-19 16:07:34 +02:00
|
|
|
*
|
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session database connection
|
|
|
|
* @param coin_pub coin to investigate
|
2020-01-18 23:49:37 +01:00
|
|
|
* @param include_recoup should recoup transactions be included in the @a tlp
|
2017-06-19 16:07:34 +02:00
|
|
|
* @param[out] tlp set to list of transactions, NULL if coin is fresh
|
|
|
|
* @return database transaction status
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_get_coin_transactions (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
int include_recoup,
|
|
|
|
struct TALER_EXCHANGEDB_TransactionList **tlp)
|
2017-06-19 16:07:34 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-08-19 17:19:27 +02:00
|
|
|
static const struct Work work_op[] = {
|
|
|
|
/** #TALER_EXCHANGEDB_TT_DEPOSIT */
|
|
|
|
{ "get_deposit_with_coin_pub",
|
|
|
|
&add_coin_deposit },
|
2020-03-04 11:47:22 +01:00
|
|
|
/** #TALER_EXCHANGEDB_TT_MELT */
|
2018-08-19 17:19:27 +02:00
|
|
|
{ "get_refresh_session_by_coin",
|
|
|
|
&add_coin_melt },
|
|
|
|
/** #TALER_EXCHANGEDB_TT_REFUND */
|
|
|
|
{ "get_refunds_by_coin",
|
|
|
|
&add_coin_refund },
|
|
|
|
{ NULL, NULL }
|
2017-06-19 16:07:34 +02:00
|
|
|
};
|
2018-08-19 17:19:27 +02:00
|
|
|
static const struct Work work_wp[] = {
|
2017-06-19 16:07:34 +02:00
|
|
|
/** #TALER_EXCHANGEDB_TT_DEPOSIT */
|
|
|
|
{ "get_deposit_with_coin_pub",
|
|
|
|
&add_coin_deposit },
|
2020-03-04 11:47:22 +01:00
|
|
|
/** #TALER_EXCHANGEDB_TT_MELT */
|
2017-06-19 16:07:34 +02:00
|
|
|
{ "get_refresh_session_by_coin",
|
|
|
|
&add_coin_melt },
|
|
|
|
/** #TALER_EXCHANGEDB_TT_REFUND */
|
|
|
|
{ "get_refunds_by_coin",
|
|
|
|
&add_coin_refund },
|
2020-01-18 23:49:37 +01:00
|
|
|
/** #TALER_EXCHANGEDB_TT_OLD_COIN_RECOUP */
|
|
|
|
{ "recoup_by_old_coin",
|
|
|
|
&add_old_coin_recoup },
|
|
|
|
/** #TALER_EXCHANGEDB_TT_RECOUP */
|
|
|
|
{ "recoup_by_coin",
|
|
|
|
&add_coin_recoup },
|
|
|
|
/** #TALER_EXCHANGEDB_TT_RECOUP_REFRESH */
|
|
|
|
{ "recoup_by_refreshed_coin",
|
|
|
|
&add_coin_recoup_refresh },
|
2017-06-19 16:07:34 +02:00
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
2018-08-19 17:19:27 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2019-08-25 16:18:24 +02:00
|
|
|
const struct Work *work;
|
2020-03-16 18:29:44 +01:00
|
|
|
struct CoinHistoryContext chc = {
|
|
|
|
.head = NULL,
|
|
|
|
.coin_pub = coin_pub,
|
|
|
|
.session = session,
|
|
|
|
.pg = pg,
|
|
|
|
.db_cls = cls
|
|
|
|
};
|
2017-06-19 16:07:34 +02:00
|
|
|
|
2020-01-18 23:49:37 +01:00
|
|
|
work = (GNUNET_YES == include_recoup) ? work_wp : work_op;
|
2018-08-10 22:30:38 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Getting transactions for coin %s\n",
|
|
|
|
TALER_B2S (coin_pub));
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; NULL != work[i].statement; i++)
|
2017-06-19 16:07:34 +02:00
|
|
|
{
|
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-07-21 20:15:11 +02:00
|
|
|
work[i].statement,
|
|
|
|
params,
|
|
|
|
work[i].cb,
|
|
|
|
&chc);
|
2020-07-10 22:33:04 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Coin %s yielded %d transactions of type %s\n",
|
|
|
|
TALER_B2S (coin_pub),
|
|
|
|
qs,
|
|
|
|
work[i].statement);
|
2017-06-19 16:07:34 +02:00
|
|
|
if ( (0 > qs) ||
|
2020-04-22 21:21:48 +02:00
|
|
|
(chc.failed) )
|
2017-06-19 16:07:34 +02:00
|
|
|
{
|
|
|
|
if (NULL != chc.head)
|
2019-07-21 20:15:11 +02:00
|
|
|
common_free_coin_transaction_list (cls,
|
|
|
|
chc.head);
|
2017-06-19 16:07:34 +02:00
|
|
|
*tlp = NULL;
|
2020-04-22 21:21:48 +02:00
|
|
|
if (chc.failed)
|
|
|
|
qs = GNUNET_DB_STATUS_HARD_ERROR;
|
2017-06-19 16:07:34 +02:00
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*tlp = chc.head;
|
|
|
|
if (NULL == chc.head)
|
|
|
|
return GNUNET_DB_STATUS_SUCCESS_NO_RESULTS;
|
2020-04-24 00:52:33 +02:00
|
|
|
GNUNET_break (chc.have_deposit_or_melt);
|
2017-06-19 16:07:34 +02:00
|
|
|
return GNUNET_DB_STATUS_SUCCESS_ONE_RESULT;
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-17 18:19:09 +01:00
|
|
|
/**
|
2017-06-19 20:12:00 +02:00
|
|
|
* Closure for #handle_wt_result.
|
2016-01-17 18:19:09 +01:00
|
|
|
*/
|
2017-06-19 20:12:00 +02:00
|
|
|
struct WireTransferResultContext
|
2016-01-17 18:19:09 +01:00
|
|
|
{
|
2017-06-19 20:12:00 +02:00
|
|
|
/**
|
|
|
|
* Function to call on each result.
|
|
|
|
*/
|
2020-03-05 22:38:19 +01:00
|
|
|
TALER_EXCHANGEDB_AggregationDataCallback cb;
|
2016-01-21 12:09:17 +01:00
|
|
|
|
2017-06-19 20:12:00 +02:00
|
|
|
/**
|
|
|
|
* Closure for @e cb.
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
|
|
|
|
2017-06-19 20:12:00 +02:00
|
|
|
/**
|
|
|
|
* Set to #GNUNET_SYSERR on serious errors.
|
|
|
|
*/
|
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results. Helper function
|
|
|
|
* for #postgres_lookup_wire_transfer().
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct WireTransferResultContext *`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-19 20:12:00 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
handle_wt_result (void *cls,
|
2019-07-21 20:15:11 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-19 20:12:00 +02:00
|
|
|
{
|
|
|
|
struct WireTransferResultContext *ctx = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = ctx->pg;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2016-01-21 12:09:17 +01:00
|
|
|
{
|
2017-03-18 17:47:44 +01:00
|
|
|
uint64_t rowid;
|
2017-05-29 01:15:41 +02:00
|
|
|
struct GNUNET_HashCode h_contract_terms;
|
2016-01-21 12:09:17 +01:00
|
|
|
struct GNUNET_HashCode h_wire;
|
|
|
|
struct TALER_CoinSpendPublicKeyP coin_pub;
|
|
|
|
struct TALER_MerchantPublicKeyP merchant_pub;
|
|
|
|
struct GNUNET_TIME_Absolute exec_time;
|
2016-05-27 15:34:24 +02:00
|
|
|
struct TALER_Amount amount_with_fee;
|
|
|
|
struct TALER_Amount deposit_fee;
|
2019-07-27 20:43:52 +02:00
|
|
|
struct TALER_DenominationPublicKey denom_pub;
|
2017-03-04 16:49:33 +01:00
|
|
|
json_t *wire;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2017-03-18 17:47:44 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("aggregation_serial_id", &rowid),
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_contract_terms",
|
|
|
|
&h_contract_terms),
|
2017-03-04 16:49:33 +01:00
|
|
|
TALER_PQ_result_spec_json ("wire", &wire),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_wire", &h_wire),
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&denom_pub.rsa_public_key),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub", &coin_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_pub", &merchant_pub),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("execution_date", &exec_time),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee", &amount_with_fee),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("fee_deposit", &deposit_fee),
|
2017-03-04 16:49:33 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2016-01-21 12:09:17 +01:00
|
|
|
};
|
2017-03-18 17:47:44 +01:00
|
|
|
|
2016-09-26 14:50:49 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2016-01-21 12:09:17 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-19 20:12:00 +02:00
|
|
|
ctx->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2016-01-21 12:09:17 +01:00
|
|
|
}
|
2017-06-19 20:12:00 +02:00
|
|
|
ctx->cb (ctx->cb_cls,
|
2019-07-27 20:43:52 +02:00
|
|
|
rowid,
|
|
|
|
&merchant_pub,
|
|
|
|
&h_wire,
|
2018-04-02 14:24:45 +02:00
|
|
|
wire,
|
2019-07-27 20:43:52 +02:00
|
|
|
exec_time,
|
|
|
|
&h_contract_terms,
|
|
|
|
&denom_pub,
|
|
|
|
&coin_pub,
|
|
|
|
&amount_with_fee,
|
|
|
|
&deposit_fee);
|
2017-03-05 18:18:23 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2016-01-21 12:09:17 +01:00
|
|
|
}
|
2017-06-19 20:12:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lookup the list of Taler transactions that were aggregated
|
|
|
|
* into a wire transfer by the respective @a wtid.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param wtid the raw wire transfer identifier we used
|
|
|
|
* @param cb function to call on each transaction found
|
|
|
|
* @param cb_cls closure for @a cb
|
|
|
|
* @return query status of the transaction
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_lookup_wire_transfer (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_WireTransferIdentifierRawP *wtid,
|
|
|
|
TALER_EXCHANGEDB_AggregationDataCallback cb,
|
|
|
|
void *cb_cls)
|
2017-06-19 20:12:00 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-06-19 20:12:00 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (wtid),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct WireTransferResultContext ctx;
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-19 20:12:00 +02:00
|
|
|
ctx.cb = cb;
|
|
|
|
ctx.cb_cls = cb_cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
ctx.pg = pg;
|
2017-06-19 20:12:00 +02:00
|
|
|
ctx.status = GNUNET_OK;
|
|
|
|
/* check if the melt record exists and get it */
|
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-07-27 20:43:52 +02:00
|
|
|
"lookup_transactions",
|
|
|
|
params,
|
|
|
|
&handle_wt_result,
|
|
|
|
&ctx);
|
2017-06-19 20:12:00 +02:00
|
|
|
if (GNUNET_OK != ctx.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
2016-01-17 18:19:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-09 15:36:34 +01:00
|
|
|
/**
|
|
|
|
* Try to find the wire transfer details for a deposit operation.
|
|
|
|
* If we did not execute the deposit yet, return when it is supposed
|
|
|
|
* to be executed.
|
2016-01-17 18:19:09 +01:00
|
|
|
*
|
2015-12-09 15:36:34 +01:00
|
|
|
* @param cls closure
|
2016-01-21 11:24:18 +01:00
|
|
|
* @param session database connection
|
2017-05-29 01:15:41 +02:00
|
|
|
* @param h_contract_terms hash of the proposal data
|
2015-12-09 15:36:34 +01:00
|
|
|
* @param h_wire hash of merchant wire details
|
|
|
|
* @param coin_pub public key of deposited coin
|
|
|
|
* @param merchant_pub merchant public key
|
|
|
|
* @param cb function to call with the result
|
|
|
|
* @param cb_cls closure to pass to @a cb
|
2017-06-19 20:46:24 +02:00
|
|
|
* @return transaction status code
|
2019-10-11 23:28:05 +02:00
|
|
|
- */
|
2017-06-19 20:46:24 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_lookup_transfer_by_deposit (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct GNUNET_HashCode *h_contract_terms,
|
|
|
|
const struct GNUNET_HashCode *h_wire,
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
const struct TALER_MerchantPublicKeyP *merchant_pub,
|
|
|
|
TALER_EXCHANGEDB_WireTransferByCoinCallback cb,
|
|
|
|
void *cb_cls)
|
2015-12-09 15:36:34 +01:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-06-19 20:46:24 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_pub),
|
2017-05-29 01:15:41 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_contract_terms),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_wire),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (merchant_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
2016-01-21 12:09:17 +01:00
|
|
|
};
|
2017-06-19 20:46:24 +02:00
|
|
|
struct TALER_WireTransferIdentifierRawP wtid;
|
|
|
|
struct GNUNET_TIME_Absolute exec_time;
|
|
|
|
struct TALER_Amount amount_with_fee;
|
|
|
|
struct TALER_Amount deposit_fee;
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("wtid_raw", &wtid),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("execution_date", &exec_time),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee", &amount_with_fee),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("fee_deposit", &deposit_fee),
|
2017-06-19 20:46:24 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2016-01-21 12:09:17 +01:00
|
|
|
/* check if the melt record exists and get it */
|
2017-06-19 20:46:24 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-08-25 16:18:24 +02:00
|
|
|
"lookup_deposit_wtid",
|
|
|
|
params,
|
|
|
|
rs);
|
2017-06-19 20:46:24 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qs)
|
2016-01-21 12:09:17 +01:00
|
|
|
{
|
2017-06-19 20:46:24 +02:00
|
|
|
cb (cb_cls,
|
|
|
|
&wtid,
|
|
|
|
&amount_with_fee,
|
|
|
|
&deposit_fee,
|
|
|
|
exec_time);
|
|
|
|
return qs;
|
2016-01-21 12:09:17 +01:00
|
|
|
}
|
2017-06-19 20:46:24 +02:00
|
|
|
if (0 > qs)
|
|
|
|
return qs;
|
2016-01-21 12:09:17 +01:00
|
|
|
|
2017-06-19 20:46:24 +02:00
|
|
|
GNUNET_assert (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs);
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
2019-08-17 21:35:21 +02:00
|
|
|
"lookup_deposit_wtid returned 0 matching rows\n");
|
2017-06-19 20:46:24 +02:00
|
|
|
{
|
2016-01-21 12:09:17 +01:00
|
|
|
/* Check if transaction exists in deposits, so that we just
|
|
|
|
do not have a WTID yet, if so, do call the CB with a NULL wtid
|
2016-06-11 19:58:06 +02:00
|
|
|
and return #GNUNET_YES! */
|
2017-06-19 20:46:24 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params2[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (merchant_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_contract_terms),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_wire),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2016-01-21 12:09:17 +01:00
|
|
|
struct GNUNET_TIME_Absolute exec_time;
|
2016-05-27 15:34:24 +02:00
|
|
|
struct TALER_Amount amount_with_fee;
|
|
|
|
struct TALER_Amount deposit_fee;
|
2017-06-19 20:46:24 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs2[] = {
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee", &amount_with_fee),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("fee_deposit", &deposit_fee),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("wire_deadline", &exec_time),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2016-01-21 12:09:17 +01:00
|
|
|
};
|
2017-06-19 20:46:24 +02:00
|
|
|
|
|
|
|
qs = GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"get_deposit_for_wtid",
|
|
|
|
params2,
|
|
|
|
rs2);
|
2017-06-19 20:46:24 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qs)
|
2016-01-21 12:09:17 +01:00
|
|
|
{
|
2017-06-19 20:46:24 +02:00
|
|
|
/* Ok, we're aware of the transaction, but it has not yet been
|
2019-10-11 23:28:05 +02:00
|
|
|
executed */
|
2017-06-19 20:46:24 +02:00
|
|
|
cb (cb_cls,
|
|
|
|
NULL,
|
|
|
|
&amount_with_fee,
|
|
|
|
&deposit_fee,
|
|
|
|
exec_time);
|
|
|
|
return qs;
|
2016-01-21 12:09:17 +01:00
|
|
|
}
|
2017-06-19 20:46:24 +02:00
|
|
|
return qs;
|
2016-01-21 12:09:17 +01:00
|
|
|
}
|
2015-12-09 15:36:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-21 08:44:45 +01:00
|
|
|
/**
|
|
|
|
* Function called to insert aggregation information into the DB.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
2016-01-21 11:24:18 +01:00
|
|
|
* @param session database connection
|
2016-01-21 08:44:45 +01:00
|
|
|
* @param wtid the raw wire transfer identifier we used
|
2016-05-27 15:34:24 +02:00
|
|
|
* @param deposit_serial_id row in the deposits table for which this is aggregation data
|
2017-06-24 12:15:11 +02:00
|
|
|
* @return transaction status code
|
2016-01-21 08:44:45 +01:00
|
|
|
*/
|
2017-06-24 12:15:11 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_aggregation_tracking (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_WireTransferIdentifierRawP *wtid,
|
|
|
|
unsigned long long deposit_serial_id)
|
2016-01-21 08:44:45 +01:00
|
|
|
{
|
2016-05-27 15:34:24 +02:00
|
|
|
uint64_t rid = deposit_serial_id;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2016-05-27 15:34:24 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&rid),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (wtid),
|
|
|
|
GNUNET_PQ_query_param_end
|
2016-01-21 11:24:18 +01:00
|
|
|
};
|
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-06-24 12:15:11 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"insert_aggregation_tracking",
|
|
|
|
params);
|
2016-01-21 08:44:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-04 16:49:33 +01:00
|
|
|
/**
|
|
|
|
* Obtain wire fee from database.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param type type of wire transfer the fee applies for
|
|
|
|
* @param date for which date do we want the fee?
|
|
|
|
* @param[out] start_date when does the fee go into effect
|
|
|
|
* @param[out] end_date when does the fee end being valid
|
|
|
|
* @param[out] wire_fee how high is the wire transfer fee
|
2018-01-04 00:41:19 +01:00
|
|
|
* @param[out] closing_fee how high is the closing fee
|
2017-03-04 16:49:33 +01:00
|
|
|
* @param[out] master_sig signature over the above by the exchange master key
|
2017-06-19 20:12:00 +02:00
|
|
|
* @return status of the transaction
|
2017-03-04 16:49:33 +01:00
|
|
|
*/
|
2017-06-19 20:12:00 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-03-04 16:49:33 +01:00
|
|
|
postgres_get_wire_fee (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const char *type,
|
|
|
|
struct GNUNET_TIME_Absolute date,
|
|
|
|
struct GNUNET_TIME_Absolute *start_date,
|
|
|
|
struct GNUNET_TIME_Absolute *end_date,
|
|
|
|
struct TALER_Amount *wire_fee,
|
2019-08-17 21:35:21 +02:00
|
|
|
struct TALER_Amount *closing_fee,
|
2017-03-04 16:49:33 +01:00
|
|
|
struct TALER_MasterSignatureP *master_sig)
|
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-03-04 16:49:33 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_string (type),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (&date),
|
2017-03-04 16:49:33 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("start_date", start_date),
|
|
|
|
TALER_PQ_result_spec_absolute_time ("end_date", end_date),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("wire_fee", wire_fee),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("closing_fee", closing_fee),
|
2017-03-04 16:49:33 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("master_sig", master_sig),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
2017-06-19 20:12:00 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"get_wire_fee",
|
|
|
|
params,
|
|
|
|
rs);
|
2017-03-04 16:49:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert wire transfer fee into database.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param type type of wire transfer this fee applies for
|
|
|
|
* @param start_date when does the fee go into effect
|
|
|
|
* @param end_date when does the fee end being valid
|
|
|
|
* @param wire_fee how high is the wire transfer fee
|
2018-01-04 00:41:19 +01:00
|
|
|
* @param closing_fee how high is the closing fee
|
2017-03-04 16:49:33 +01:00
|
|
|
* @param master_sig signature over the above by the exchange master key
|
2017-06-24 12:15:11 +02:00
|
|
|
* @return transaction status code
|
2017-03-04 16:49:33 +01:00
|
|
|
*/
|
2017-06-24 12:15:11 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-03-04 16:49:33 +01:00
|
|
|
postgres_insert_wire_fee (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const char *type,
|
|
|
|
struct GNUNET_TIME_Absolute start_date,
|
|
|
|
struct GNUNET_TIME_Absolute end_date,
|
|
|
|
const struct TALER_Amount *wire_fee,
|
2018-01-04 00:41:19 +01:00
|
|
|
const struct TALER_Amount *closing_fee,
|
2017-03-04 16:49:33 +01:00
|
|
|
const struct TALER_MasterSignatureP *master_sig)
|
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-03-04 16:49:33 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_string (type),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (&start_date),
|
|
|
|
TALER_PQ_query_param_absolute_time (&end_date),
|
2017-03-04 16:49:33 +01:00
|
|
|
TALER_PQ_query_param_amount (wire_fee),
|
2018-01-04 00:41:19 +01:00
|
|
|
TALER_PQ_query_param_amount (closing_fee),
|
2017-03-04 16:49:33 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_sig),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct TALER_Amount wf;
|
2018-01-04 00:41:19 +01:00
|
|
|
struct TALER_Amount cf;
|
2017-03-04 16:49:33 +01:00
|
|
|
struct TALER_MasterSignatureP sig;
|
|
|
|
struct GNUNET_TIME_Absolute sd;
|
|
|
|
struct GNUNET_TIME_Absolute ed;
|
2017-06-24 12:15:11 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-03-04 16:49:33 +01:00
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
qs = postgres_get_wire_fee (pg,
|
|
|
|
session,
|
|
|
|
type,
|
|
|
|
start_date,
|
|
|
|
&sd,
|
|
|
|
&ed,
|
|
|
|
&wf,
|
|
|
|
&cf,
|
|
|
|
&sig);
|
2017-06-24 12:15:11 +02:00
|
|
|
if (qs < 0)
|
|
|
|
return qs;
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qs)
|
2017-03-04 16:49:33 +01:00
|
|
|
{
|
2019-04-08 20:43:23 +02:00
|
|
|
if (0 != GNUNET_memcmp (&sig,
|
|
|
|
master_sig))
|
2017-03-04 16:49:33 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 12:15:11 +02:00
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-04 16:49:33 +01:00
|
|
|
}
|
|
|
|
if (0 != TALER_amount_cmp (wire_fee,
|
|
|
|
&wf))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 12:15:11 +02:00
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-04 16:49:33 +01:00
|
|
|
}
|
2018-01-04 00:41:19 +01:00
|
|
|
if (0 != TALER_amount_cmp (closing_fee,
|
|
|
|
&cf))
|
2019-08-25 16:18:24 +02:00
|
|
|
{
|
2018-01-04 00:41:19 +01:00
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
}
|
2017-03-04 16:49:33 +01:00
|
|
|
if ( (sd.abs_value_us != start_date.abs_value_us) ||
|
|
|
|
(ed.abs_value_us != end_date.abs_value_us) )
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 12:15:11 +02:00
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
2017-03-04 16:49:33 +01:00
|
|
|
}
|
|
|
|
/* equal record already exists */
|
2017-06-24 12:15:11 +02:00
|
|
|
return GNUNET_DB_STATUS_SUCCESS_NO_RESULTS;
|
2017-03-04 16:49:33 +01:00
|
|
|
}
|
|
|
|
|
2017-06-24 12:15:11 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"insert_wire_fee",
|
|
|
|
params);
|
2017-03-04 16:49:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-20 21:38:02 +02:00
|
|
|
/**
|
2017-06-24 00:41:41 +02:00
|
|
|
* Closure for #reserve_expired_cb().
|
2017-04-20 21:38:02 +02:00
|
|
|
*/
|
2017-06-24 00:41:41 +02:00
|
|
|
struct ExpiredReserveContext
|
2017-04-20 21:38:02 +02:00
|
|
|
{
|
2017-06-24 00:41:41 +02:00
|
|
|
/**
|
|
|
|
* Function to call for each expired reserve.
|
|
|
|
*/
|
|
|
|
TALER_EXCHANGEDB_ReserveExpiredCallback rec;
|
2017-04-20 21:38:02 +02:00
|
|
|
|
2017-06-24 00:41:41 +02:00
|
|
|
/**
|
|
|
|
* Closure to give to @e rec.
|
|
|
|
*/
|
|
|
|
void *rec_cls;
|
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
|
|
|
|
2017-06-24 00:41:41 +02:00
|
|
|
/**
|
|
|
|
* Set to #GNUNET_SYSERR on error.
|
|
|
|
*/
|
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-24 00:41:41 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
reserve_expired_cb (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-24 00:41:41 +02:00
|
|
|
{
|
|
|
|
struct ExpiredReserveContext *erc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = erc->pg;
|
2017-06-24 00:41:41 +02:00
|
|
|
int ret;
|
2017-04-20 21:38:02 +02:00
|
|
|
|
2017-06-24 00:41:41 +02:00
|
|
|
ret = GNUNET_OK;
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2017-04-20 21:38:02 +02:00
|
|
|
{
|
|
|
|
struct GNUNET_TIME_Absolute exp_date;
|
2018-04-02 14:24:45 +02:00
|
|
|
char *account_details;
|
2017-04-20 21:38:02 +02:00
|
|
|
struct TALER_ReservePublicKeyP reserve_pub;
|
|
|
|
struct TALER_Amount remaining_balance;
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("expiration_date",
|
2019-08-17 21:35:21 +02:00
|
|
|
&exp_date),
|
2018-04-02 14:24:45 +02:00
|
|
|
GNUNET_PQ_result_spec_string ("account_details",
|
|
|
|
&account_details),
|
2017-04-20 21:38:02 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("reserve_pub",
|
2019-08-17 21:35:21 +02:00
|
|
|
&reserve_pub),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("current_balance",
|
|
|
|
&remaining_balance),
|
2017-04-20 21:38:02 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-05-05 13:41:32 +02:00
|
|
|
|
2017-04-20 21:38:02 +02:00
|
|
|
if (GNUNET_OK !=
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2017-04-20 21:38:02 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 00:41:41 +02:00
|
|
|
ret = GNUNET_SYSERR;
|
|
|
|
break;
|
2017-04-20 21:38:02 +02:00
|
|
|
}
|
2017-06-24 00:41:41 +02:00
|
|
|
ret = erc->rec (erc->rec_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
&reserve_pub,
|
|
|
|
&remaining_balance,
|
|
|
|
account_details,
|
|
|
|
exp_date);
|
2017-04-20 21:38:02 +02:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
|
|
|
if (GNUNET_OK != ret)
|
|
|
|
break;
|
|
|
|
}
|
2017-06-24 00:41:41 +02:00
|
|
|
erc->status = ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtain information about expired reserves and their
|
|
|
|
* remaining balances.
|
|
|
|
*
|
|
|
|
* @param cls closure of the plugin
|
|
|
|
* @param session database connection
|
|
|
|
* @param now timestamp based on which we decide expiration
|
|
|
|
* @param rec function to call on expired reserves
|
|
|
|
* @param rec_cls closure for @a rec
|
|
|
|
* @return transaction status
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
|
|
|
postgres_get_expired_reserves (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
struct GNUNET_TIME_Absolute now,
|
|
|
|
TALER_EXCHANGEDB_ReserveExpiredCallback rec,
|
|
|
|
void *rec_cls)
|
2017-06-24 00:41:41 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-06-24 00:41:41 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (&now),
|
2017-06-24 00:41:41 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct ExpiredReserveContext ectx;
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-24 00:41:41 +02:00
|
|
|
ectx.rec = rec;
|
|
|
|
ectx.rec_cls = rec_cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
ectx.pg = pg;
|
2017-06-24 00:41:41 +02:00
|
|
|
ectx.status = GNUNET_OK;
|
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"get_expired_reserves",
|
|
|
|
params,
|
|
|
|
&reserve_expired_cb,
|
|
|
|
&ectx);
|
2017-06-24 00:41:41 +02:00
|
|
|
if (GNUNET_OK != ectx.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
2017-04-20 21:38:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-19 18:44:14 +02:00
|
|
|
/**
|
|
|
|
* Insert reserve close operation into database.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param reserve_pub which reserve is this about?
|
|
|
|
* @param execution_date when did we perform the transfer?
|
|
|
|
* @param receiver_account to which account do we transfer?
|
2017-05-08 12:44:40 +02:00
|
|
|
* @param wtid wire transfer details
|
2017-04-19 18:44:14 +02:00
|
|
|
* @param amount_with_fee amount we charged to the reserve
|
|
|
|
* @param closing_fee how high is the closing fee
|
2017-06-24 00:41:41 +02:00
|
|
|
* @return transaction status code
|
2017-04-19 18:44:14 +02:00
|
|
|
*/
|
2017-06-24 00:41:41 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_reserve_closed (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub,
|
|
|
|
struct GNUNET_TIME_Absolute execution_date,
|
|
|
|
const char *receiver_account,
|
|
|
|
const struct TALER_WireTransferIdentifierRawP *wtid,
|
|
|
|
const struct TALER_Amount *amount_with_fee,
|
|
|
|
const struct TALER_Amount *closing_fee)
|
2017-04-19 18:44:14 +02:00
|
|
|
{
|
2017-04-20 21:38:02 +02:00
|
|
|
struct TALER_EXCHANGEDB_Reserve reserve;
|
2017-04-19 18:44:14 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (reserve_pub),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (&execution_date),
|
2017-05-08 12:44:40 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (wtid),
|
2018-04-02 14:24:45 +02:00
|
|
|
GNUNET_PQ_query_param_string (receiver_account),
|
2017-04-19 18:44:14 +02:00
|
|
|
TALER_PQ_query_param_amount (amount_with_fee),
|
|
|
|
TALER_PQ_query_param_amount (closing_fee),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2020-04-08 23:52:01 +02:00
|
|
|
enum TALER_AmountArithmeticResult ret;
|
2017-06-11 02:12:56 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-05-05 13:41:32 +02:00
|
|
|
|
2017-06-24 00:41:41 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-07-24 12:19:36 +02:00
|
|
|
"reserves_close_insert",
|
|
|
|
params);
|
2017-06-24 00:41:41 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
|
|
|
return qs;
|
2017-04-20 21:38:02 +02:00
|
|
|
|
|
|
|
/* update reserve balance */
|
|
|
|
reserve.pub = *reserve_pub;
|
2017-06-11 02:12:56 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT !=
|
2020-03-05 23:02:38 +01:00
|
|
|
(qs = postgres_reserves_get (cls,
|
|
|
|
session,
|
|
|
|
&reserve)))
|
2017-04-20 21:38:02 +02:00
|
|
|
{
|
2017-05-25 19:38:34 +02:00
|
|
|
/* Existence should have been checked before we got here... */
|
2017-06-24 00:41:41 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
|
|
|
|
qs = GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
2017-04-20 21:38:02 +02:00
|
|
|
}
|
|
|
|
ret = TALER_amount_subtract (&reserve.balance,
|
2019-07-24 12:19:36 +02:00
|
|
|
&reserve.balance,
|
|
|
|
amount_with_fee);
|
2020-04-08 23:52:01 +02:00
|
|
|
if (ret < 0)
|
2017-04-20 21:38:02 +02:00
|
|
|
{
|
|
|
|
/* The reserve history was checked to make sure there is enough of a balance
|
|
|
|
left before we tried this; however, concurrent operations may have changed
|
|
|
|
the situation by now. We should re-try the transaction. */
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
2020-01-20 02:11:03 +01:00
|
|
|
"Closing of reserve `%s' refused due to balance mismatch. Retrying.\n",
|
2017-04-20 21:38:02 +02:00
|
|
|
TALER_B2S (reserve_pub));
|
2017-06-24 00:41:41 +02:00
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
2017-04-20 21:38:02 +02:00
|
|
|
}
|
2020-04-08 23:52:01 +02:00
|
|
|
GNUNET_break (TALER_AAR_RESULT_ZERO == ret);
|
2017-06-24 00:41:41 +02:00
|
|
|
return reserves_update (cls,
|
2019-07-21 20:15:11 +02:00
|
|
|
session,
|
|
|
|
&reserve);
|
2017-04-19 18:44:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-27 16:46:51 +01:00
|
|
|
/**
|
|
|
|
* Function called to insert wire transfer commit data into the DB.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
2019-06-08 19:55:18 +02:00
|
|
|
* @param type type of the wire transfer (i.e. "iban")
|
2016-01-27 16:46:51 +01:00
|
|
|
* @param buf buffer with wire transfer preparation data
|
|
|
|
* @param buf_size number of bytes in @a buf
|
2017-06-24 00:41:41 +02:00
|
|
|
* @return query status code
|
2016-01-27 16:46:51 +01:00
|
|
|
*/
|
2017-06-24 00:41:41 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2016-01-27 16:46:51 +01:00
|
|
|
postgres_wire_prepare_data_insert (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2016-01-27 16:46:51 +01:00
|
|
|
const char *type,
|
|
|
|
const char *buf,
|
|
|
|
size_t buf_size)
|
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2016-04-03 21:41:26 +02:00
|
|
|
GNUNET_PQ_query_param_string (type),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_fixed_size (buf, buf_size),
|
|
|
|
GNUNET_PQ_query_param_end
|
2016-01-27 18:28:52 +01:00
|
|
|
};
|
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-06-24 00:41:41 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"wire_prepare_data_insert",
|
|
|
|
params);
|
2016-01-27 16:46:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function called to mark wire transfer commit data as finished.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
2016-01-27 18:28:52 +01:00
|
|
|
* @param rowid which entry to mark as finished
|
2017-06-24 12:15:11 +02:00
|
|
|
* @return transaction status code
|
2016-01-27 16:46:51 +01:00
|
|
|
*/
|
2017-06-24 12:15:11 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2016-01-27 16:46:51 +01:00
|
|
|
postgres_wire_prepare_data_mark_finished (void *cls,
|
2019-08-25 16:18:24 +02:00
|
|
|
struct TALER_EXCHANGEDB_Session *
|
|
|
|
session,
|
2016-11-17 14:31:44 +01:00
|
|
|
uint64_t rowid)
|
2016-01-27 16:46:51 +01:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2016-11-17 14:31:44 +01:00
|
|
|
GNUNET_PQ_query_param_uint64 (&rowid),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
2016-01-27 18:28:52 +01:00
|
|
|
};
|
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-06-24 12:15:11 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"wire_prepare_data_mark_done",
|
|
|
|
params);
|
2016-01-27 16:46:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2016-01-27 18:28:52 +01:00
|
|
|
* Function called to get an unfinished wire transfer
|
2016-01-27 16:46:51 +01:00
|
|
|
* preparation data. Fetches at most one item.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param cb function to call for ONE unfinished item
|
|
|
|
* @param cb_cls closure for @a cb
|
2017-06-24 12:15:11 +02:00
|
|
|
* @return transaction status code
|
2016-01-27 16:46:51 +01:00
|
|
|
*/
|
2017-06-24 12:15:11 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2016-01-27 18:28:52 +01:00
|
|
|
postgres_wire_prepare_data_get (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2016-10-09 00:57:31 +02:00
|
|
|
TALER_EXCHANGEDB_WirePreparationIterator cb,
|
2016-01-27 18:28:52 +01:00
|
|
|
void *cb_cls)
|
2016-01-27 16:46:51 +01:00
|
|
|
{
|
2017-06-24 12:15:11 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_end
|
2016-01-27 18:28:52 +01:00
|
|
|
};
|
2017-06-24 12:15:11 +02:00
|
|
|
uint64_t prewire_uuid;
|
|
|
|
char *type;
|
|
|
|
void *buf = NULL;
|
|
|
|
size_t buf_size;
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_uint64 ("prewire_uuid",
|
2019-08-17 21:35:21 +02:00
|
|
|
&prewire_uuid),
|
2017-06-24 12:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_string ("type",
|
2019-08-17 21:35:21 +02:00
|
|
|
&type),
|
2017-06-24 12:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_variable_size ("buf",
|
2019-08-17 21:35:21 +02:00
|
|
|
&buf,
|
|
|
|
&buf_size),
|
2017-06-24 12:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2016-01-27 18:28:52 +01:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-06-24 12:15:11 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"wire_prepare_data_get",
|
|
|
|
params,
|
|
|
|
rs);
|
2017-06-24 12:15:11 +02:00
|
|
|
if (0 >= qs)
|
|
|
|
return qs;
|
|
|
|
cb (cb_cls,
|
|
|
|
prewire_uuid,
|
|
|
|
type,
|
|
|
|
buf,
|
|
|
|
buf_size);
|
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
|
|
|
return qs;
|
2016-01-27 16:46:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-18 03:44:59 +01:00
|
|
|
/**
|
|
|
|
* Start a transaction where we transiently violate the foreign
|
|
|
|
* constraints on the "wire_out" table as we insert aggregations
|
|
|
|
* and only add the wire transfer out at the end.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
|
|
|
* @param session connection to use
|
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
postgres_start_deferred_wire_out (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session)
|
|
|
|
{
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_ExecuteStatement es[] = {
|
|
|
|
GNUNET_PQ_make_execute ("SET CONSTRAINTS wire_out_ref DEFERRED"),
|
|
|
|
GNUNET_PQ_EXECUTE_STATEMENT_END
|
|
|
|
};
|
2017-03-18 03:44:59 +01:00
|
|
|
|
2018-03-12 11:39:31 +01:00
|
|
|
postgres_preflight (cls,
|
|
|
|
session);
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
postgres_start (cls,
|
|
|
|
session,
|
|
|
|
"deferred wire out"))
|
2017-03-18 03:44:59 +01:00
|
|
|
return GNUNET_SYSERR;
|
2019-10-11 23:28:05 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_exec_statements (session->conn,
|
|
|
|
es))
|
2017-03-18 03:44:59 +01:00
|
|
|
{
|
2019-08-25 16:18:24 +02:00
|
|
|
TALER_LOG_ERROR (
|
2019-10-11 23:28:05 +02:00
|
|
|
"Failed to defer wire_out_ref constraint on transaction\n");
|
2017-03-18 03:44:59 +01:00
|
|
|
GNUNET_break (0);
|
2018-03-12 11:39:31 +01:00
|
|
|
postgres_rollback (cls,
|
|
|
|
session);
|
2017-03-18 03:44:59 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-18 02:40:27 +01:00
|
|
|
/**
|
|
|
|
* Store information about an outgoing wire transfer that was executed.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param date time of the wire transfer
|
|
|
|
* @param wtid subject of the wire transfer
|
2017-05-08 13:18:36 +02:00
|
|
|
* @param wire_account details about the receiver account of the wire transfer
|
2018-04-02 21:12:18 +02:00
|
|
|
* @param exchange_account_section configuration section of the exchange specifying the
|
|
|
|
* exchange's bank account being used
|
2017-03-18 02:40:27 +01:00
|
|
|
* @param amount amount that was transmitted
|
2017-06-24 12:15:11 +02:00
|
|
|
* @return transaction status code
|
2017-03-18 02:40:27 +01:00
|
|
|
*/
|
2017-06-24 12:15:11 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_store_wire_transfer_out (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
struct GNUNET_TIME_Absolute date,
|
|
|
|
const struct TALER_WireTransferIdentifierRawP *wtid,
|
|
|
|
const json_t *wire_account,
|
|
|
|
const char *exchange_account_section,
|
|
|
|
const struct TALER_Amount *amount)
|
2017-03-18 02:40:27 +01:00
|
|
|
{
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (&date),
|
2017-03-18 02:40:27 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (wtid),
|
2017-05-08 13:18:36 +02:00
|
|
|
TALER_PQ_query_param_json (wire_account),
|
2018-04-02 21:12:18 +02:00
|
|
|
GNUNET_PQ_query_param_string (exchange_account_section),
|
2017-03-18 02:40:27 +01:00
|
|
|
TALER_PQ_query_param_amount (amount),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-06-24 12:15:11 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"insert_wire_out",
|
|
|
|
params);
|
2017-03-18 02:40:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-31 09:13:03 +02:00
|
|
|
/**
|
|
|
|
* Function called to perform "garbage collection" on the
|
|
|
|
* database, expiring records we no longer require.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @return #GNUNET_OK on success,
|
|
|
|
* #GNUNET_SYSERR on DB errors
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
postgres_gc (void *cls)
|
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-05-31 09:34:45 +02:00
|
|
|
struct GNUNET_TIME_Absolute now;
|
2017-07-14 17:43:07 +02:00
|
|
|
struct GNUNET_TIME_Absolute long_ago;
|
2016-05-31 09:34:45 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params_none[] = {
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_QueryParam params_time[] = {
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (&now),
|
2016-05-31 09:34:45 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-07-14 17:43:07 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params_ancient_time[] = {
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (&long_ago),
|
2017-07-14 17:43:07 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_Context *conn;
|
2017-06-24 16:15:42 +02:00
|
|
|
int ret;
|
2017-07-14 17:43:07 +02:00
|
|
|
|
2016-05-31 09:34:45 +02:00
|
|
|
now = GNUNET_TIME_absolute_get ();
|
2017-11-30 17:17:37 +01:00
|
|
|
(void) GNUNET_TIME_round_abs (&now);
|
2017-07-14 17:43:07 +02:00
|
|
|
/* Keep wire fees for 10 years, that should always
|
|
|
|
be enough _and_ they are tiny so it does not
|
|
|
|
matter to make this tight */
|
|
|
|
long_ago = GNUNET_TIME_absolute_subtract (now,
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_TIME_relative_multiply (
|
|
|
|
GNUNET_TIME_UNIT_YEARS,
|
|
|
|
10));
|
2016-05-31 09:34:45 +02:00
|
|
|
{
|
2019-10-11 23:28:05 +02:00
|
|
|
struct GNUNET_PQ_PreparedStatement ps[] = {
|
|
|
|
/* Used in #postgres_gc() */
|
|
|
|
GNUNET_PQ_make_prepare ("gc_prewire",
|
|
|
|
"DELETE"
|
|
|
|
" FROM prewire"
|
|
|
|
" WHERE finished=true;",
|
|
|
|
0),
|
|
|
|
GNUNET_PQ_make_prepare ("gc_reserves",
|
|
|
|
"DELETE"
|
|
|
|
" FROM reserves"
|
|
|
|
" WHERE gc_date < $1"
|
|
|
|
" AND current_balance_val = 0"
|
|
|
|
" AND current_balance_frac = 0;",
|
|
|
|
1),
|
|
|
|
GNUNET_PQ_make_prepare ("gc_wire_fee",
|
|
|
|
"DELETE"
|
|
|
|
" FROM wire_fee"
|
|
|
|
" WHERE end_date < $1;",
|
|
|
|
1),
|
|
|
|
GNUNET_PQ_make_prepare ("gc_denominations",
|
|
|
|
"DELETE"
|
|
|
|
" FROM denominations"
|
|
|
|
" WHERE expire_legal < $1;",
|
|
|
|
1),
|
|
|
|
GNUNET_PQ_PREPARED_STATEMENT_END
|
|
|
|
};
|
|
|
|
|
2020-02-09 16:34:40 +01:00
|
|
|
conn = GNUNET_PQ_connect_with_cfg (pg->cfg,
|
|
|
|
"exchangedb-postgres",
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
ps);
|
2016-05-31 09:34:45 +02:00
|
|
|
}
|
2019-10-11 23:28:05 +02:00
|
|
|
if (NULL == conn)
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
ret = GNUNET_OK;
|
|
|
|
if ( (0 > GNUNET_PQ_eval_prepared_non_select (conn,
|
|
|
|
"gc_reserves",
|
|
|
|
params_time)) ||
|
|
|
|
(0 > GNUNET_PQ_eval_prepared_non_select (conn,
|
|
|
|
"gc_prewire",
|
|
|
|
params_none)) ||
|
|
|
|
(0 > GNUNET_PQ_eval_prepared_non_select (conn,
|
|
|
|
"gc_wire_fee",
|
|
|
|
params_ancient_time)) )
|
|
|
|
ret = GNUNET_SYSERR;
|
|
|
|
/* This one may fail due to foreign key constraints from
|
2020-01-18 23:49:37 +01:00
|
|
|
recoup and reserves_out tables to known_coins; these
|
2019-10-11 23:28:05 +02:00
|
|
|
are NOT using 'ON DROP CASCADE' and might keep denomination
|
|
|
|
keys alive for a bit longer, thus causing this statement
|
2019-10-31 12:59:50 +01:00
|
|
|
to fail. */(void) GNUNET_PQ_eval_prepared_non_select (conn,
|
2019-10-11 23:28:05 +02:00
|
|
|
"gc_denominations",
|
|
|
|
params_time);
|
|
|
|
GNUNET_PQ_disconnect (conn);
|
2017-06-24 16:15:42 +02:00
|
|
|
return ret;
|
2016-05-31 09:13:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-09 01:17:37 +02:00
|
|
|
/**
|
2017-06-24 16:15:42 +02:00
|
|
|
* Closure for #deposit_serial_helper_cb().
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
struct DepositSerialContext
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2016-10-17 01:48:59 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Callback to call.
|
|
|
|
*/
|
|
|
|
TALER_EXCHANGEDB_DepositCallback cb;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Closure for @e cb.
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Status code, set to #GNUNET_SYSERR on hard errors.
|
2017-09-26 12:30:24 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct DepositSerialContext`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-24 16:15:42 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
deposit_serial_helper_cb (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-24 16:15:42 +02:00
|
|
|
{
|
|
|
|
struct DepositSerialContext *dsc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = dsc->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2016-10-17 01:48:59 +02:00
|
|
|
{
|
2016-10-17 16:39:56 +02:00
|
|
|
struct TALER_EXCHANGEDB_Deposit deposit;
|
2020-05-07 20:22:02 +02:00
|
|
|
struct GNUNET_TIME_Absolute exchange_timestamp;
|
2017-03-19 01:55:37 +01:00
|
|
|
struct TALER_DenominationPublicKey denom_pub;
|
2016-10-17 16:39:56 +02:00
|
|
|
uint8_t done = 0;
|
2016-11-17 14:59:44 +01:00
|
|
|
uint64_t rowid;
|
2016-10-17 16:39:56 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
2016-10-17 16:39:56 +02:00
|
|
|
&deposit.amount_with_fee),
|
2020-05-07 20:22:02 +02:00
|
|
|
TALER_PQ_result_spec_absolute_time ("wallet_timestamp",
|
2016-10-17 16:39:56 +02:00
|
|
|
&deposit.timestamp),
|
2020-05-07 20:22:02 +02:00
|
|
|
TALER_PQ_result_spec_absolute_time ("exchange_timestamp",
|
|
|
|
&exchange_timestamp),
|
2016-10-17 16:39:56 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_pub",
|
|
|
|
&deposit.merchant_pub),
|
2017-03-19 01:55:37 +01:00
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&denom_pub.rsa_public_key),
|
2016-10-17 16:39:56 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub",
|
2019-08-25 16:18:24 +02:00
|
|
|
&deposit.coin.coin_pub),
|
2016-10-17 16:39:56 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_sig",
|
2019-08-25 16:18:24 +02:00
|
|
|
&deposit.csig),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("refund_deadline",
|
2019-08-25 16:18:24 +02:00
|
|
|
&deposit.refund_deadline),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("wire_deadline",
|
2019-08-25 16:18:24 +02:00
|
|
|
&deposit.wire_deadline),
|
2017-05-29 01:15:41 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_contract_terms",
|
2019-08-25 16:18:24 +02:00
|
|
|
&deposit.h_contract_terms),
|
2016-10-17 16:39:56 +02:00
|
|
|
TALER_PQ_result_spec_json ("wire",
|
|
|
|
&deposit.receiver_wire_account),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("done",
|
|
|
|
&done),
|
2016-11-17 14:59:44 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("deposit_serial_id",
|
|
|
|
&rowid),
|
2016-10-17 16:39:56 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
int ret;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2016-10-17 16:39:56 +02:00
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2016-10-17 16:39:56 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 16:15:42 +02:00
|
|
|
dsc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2016-10-17 16:39:56 +02:00
|
|
|
}
|
2017-06-24 16:15:42 +02:00
|
|
|
ret = dsc->cb (dsc->cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
rowid,
|
2020-05-07 20:22:02 +02:00
|
|
|
exchange_timestamp,
|
2019-08-17 21:35:21 +02:00
|
|
|
deposit.timestamp,
|
|
|
|
&deposit.merchant_pub,
|
|
|
|
&denom_pub,
|
|
|
|
&deposit.coin.coin_pub,
|
|
|
|
&deposit.csig,
|
|
|
|
&deposit.amount_with_fee,
|
|
|
|
&deposit.h_contract_terms,
|
|
|
|
deposit.refund_deadline,
|
|
|
|
deposit.wire_deadline,
|
|
|
|
deposit.receiver_wire_account,
|
|
|
|
done);
|
2017-03-05 18:18:23 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2017-04-04 15:38:58 +02:00
|
|
|
if (GNUNET_OK != ret)
|
|
|
|
break;
|
2016-10-17 01:48:59 +02:00
|
|
|
}
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-24 16:15:42 +02:00
|
|
|
* Select deposits above @a serial_id in monotonically increasing
|
2016-10-09 01:17:37 +02:00
|
|
|
* order.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param serial_id highest serial ID to exclude (select strictly larger)
|
|
|
|
* @param cb function to call on each result
|
|
|
|
* @param cb_cls closure for @a cb
|
2017-06-24 16:15:42 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_select_deposits_above_serial_id (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
uint64_t serial_id,
|
|
|
|
TALER_EXCHANGEDB_DepositCallback cb,
|
|
|
|
void *cb_cls)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-10-17 16:39:56 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&serial_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
struct DepositSerialContext dsc = {
|
|
|
|
.cb = cb,
|
|
|
|
.cb_cls = cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
.pg = pg,
|
2017-06-24 16:15:42 +02:00
|
|
|
.status = GNUNET_OK
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2016-10-17 16:39:56 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"audit_get_deposits_incr",
|
|
|
|
params,
|
|
|
|
&deposit_serial_helper_cb,
|
|
|
|
&dsc);
|
2017-06-24 16:15:42 +02:00
|
|
|
if (GNUNET_OK != dsc.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
|
|
|
}
|
2016-10-17 16:39:56 +02:00
|
|
|
|
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Closure for #refreshs_serial_helper_cb().
|
|
|
|
*/
|
|
|
|
struct RefreshsSerialContext
|
|
|
|
{
|
2016-10-17 16:39:56 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Callback to call.
|
|
|
|
*/
|
2020-03-04 12:10:11 +01:00
|
|
|
TALER_EXCHANGEDB_RefreshesCallback cb;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Closure for @e cb.
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
2019-08-25 16:18:24 +02:00
|
|
|
*/
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Status code, set to #GNUNET_SYSERR on hard errors.
|
2017-09-26 12:30:24 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct RefreshsSerialContext`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-24 16:15:42 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
refreshs_serial_helper_cb (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-24 16:15:42 +02:00
|
|
|
{
|
|
|
|
struct RefreshsSerialContext *rsc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = rsc->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2017-06-24 16:15:42 +02:00
|
|
|
{
|
|
|
|
struct TALER_DenominationPublicKey denom_pub;
|
|
|
|
struct TALER_CoinSpendPublicKeyP coin_pub;
|
|
|
|
struct TALER_CoinSpendSignatureP coin_sig;
|
|
|
|
struct TALER_Amount amount_with_fee;
|
2017-11-27 23:42:17 +01:00
|
|
|
uint32_t noreveal_index;
|
2017-06-24 16:15:42 +02:00
|
|
|
uint64_t rowid;
|
2017-11-27 23:42:17 +01:00
|
|
|
struct TALER_RefreshCommitmentP rc;
|
2016-10-17 16:39:56 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2017-03-19 01:55:37 +01:00
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&denom_pub.rsa_public_key),
|
2016-10-20 23:28:36 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("old_coin_pub",
|
|
|
|
&coin_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("old_coin_sig",
|
2016-10-17 16:39:56 +02:00
|
|
|
&coin_sig),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
2016-10-17 16:39:56 +02:00
|
|
|
&amount_with_fee),
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_PQ_result_spec_uint32 ("noreveal_index",
|
2016-10-17 16:39:56 +02:00
|
|
|
&noreveal_index),
|
2016-11-17 14:59:44 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("melt_serial_id",
|
|
|
|
&rowid),
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("rc",
|
|
|
|
&rc),
|
2016-10-17 16:39:56 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
int ret;
|
|
|
|
|
2016-10-17 16:39:56 +02:00
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2016-10-17 16:39:56 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 16:15:42 +02:00
|
|
|
rsc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2016-10-17 16:39:56 +02:00
|
|
|
}
|
2017-06-24 16:15:42 +02:00
|
|
|
ret = rsc->cb (rsc->cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
rowid,
|
|
|
|
&denom_pub,
|
|
|
|
&coin_pub,
|
|
|
|
&coin_sig,
|
|
|
|
&amount_with_fee,
|
|
|
|
noreveal_index,
|
|
|
|
&rc);
|
2017-03-05 18:18:23 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2017-04-04 15:38:58 +02:00
|
|
|
if (GNUNET_OK != ret)
|
|
|
|
break;
|
2016-10-17 16:39:56 +02:00
|
|
|
}
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-24 16:15:42 +02:00
|
|
|
* Select refresh sessions above @a serial_id in monotonically increasing
|
2016-10-09 01:17:37 +02:00
|
|
|
* order.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param serial_id highest serial ID to exclude (select strictly larger)
|
|
|
|
* @param cb function to call on each result
|
|
|
|
* @param cb_cls closure for @a cb
|
2017-06-24 16:15:42 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_select_refreshes_above_serial_id (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
uint64_t serial_id,
|
|
|
|
TALER_EXCHANGEDB_RefreshesCallback cb,
|
|
|
|
void *cb_cls)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-10-17 16:39:56 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&serial_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
struct RefreshsSerialContext rsc = {
|
|
|
|
.cb = cb,
|
|
|
|
.cb_cls = cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
.pg = pg,
|
2017-06-24 16:15:42 +02:00
|
|
|
.status = GNUNET_OK
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-04-04 15:38:58 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"audit_get_refresh_commitments_incr",
|
|
|
|
params,
|
|
|
|
&refreshs_serial_helper_cb,
|
|
|
|
&rsc);
|
2017-06-24 16:15:42 +02:00
|
|
|
if (GNUNET_OK != rsc.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
|
|
|
}
|
2016-10-17 16:39:56 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for #refunds_serial_helper_cb().
|
|
|
|
*/
|
|
|
|
struct RefundsSerialContext
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback to call.
|
|
|
|
*/
|
|
|
|
TALER_EXCHANGEDB_RefundCallback cb;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Closure for @e cb.
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Status code, set to #GNUNET_SYSERR on hard errors.
|
2017-09-26 12:30:24 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct RefundsSerialContext`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-24 16:15:42 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
refunds_serial_helper_cb (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-24 16:15:42 +02:00
|
|
|
{
|
|
|
|
struct RefundsSerialContext *rsc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = rsc->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2016-10-17 16:39:56 +02:00
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_Refund refund;
|
2017-03-19 01:55:37 +01:00
|
|
|
struct TALER_DenominationPublicKey denom_pub;
|
2016-11-17 14:59:44 +01:00
|
|
|
uint64_t rowid;
|
2016-10-17 16:39:56 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_pub",
|
2020-01-16 23:49:34 +01:00
|
|
|
&refund.details.merchant_pub),
|
2016-10-17 16:39:56 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_sig",
|
2020-01-16 23:49:34 +01:00
|
|
|
&refund.details.merchant_sig),
|
2017-05-29 01:15:41 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_contract_terms",
|
2020-01-16 23:49:34 +01:00
|
|
|
&refund.details.h_contract_terms),
|
2016-10-17 16:39:56 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("rtransaction_id",
|
2020-01-16 23:49:34 +01:00
|
|
|
&refund.details.rtransaction_id),
|
2017-03-19 01:55:37 +01:00
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&denom_pub.rsa_public_key),
|
2016-10-17 16:39:56 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub",
|
2019-08-25 16:18:24 +02:00
|
|
|
&refund.coin.coin_pub),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
2020-01-16 23:49:34 +01:00
|
|
|
&refund.details.refund_amount),
|
2016-11-17 14:59:44 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("refund_serial_id",
|
|
|
|
&rowid),
|
2016-10-17 16:39:56 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
int ret;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2016-10-17 16:39:56 +02:00
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2016-10-17 16:39:56 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 16:15:42 +02:00
|
|
|
rsc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2016-10-17 16:39:56 +02:00
|
|
|
}
|
2017-06-24 16:15:42 +02:00
|
|
|
ret = rsc->cb (rsc->cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
rowid,
|
|
|
|
&denom_pub,
|
|
|
|
&refund.coin.coin_pub,
|
2020-01-16 23:49:34 +01:00
|
|
|
&refund.details.merchant_pub,
|
|
|
|
&refund.details.merchant_sig,
|
|
|
|
&refund.details.h_contract_terms,
|
|
|
|
refund.details.rtransaction_id,
|
|
|
|
&refund.details.refund_amount);
|
2017-03-05 18:18:23 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2017-04-04 15:38:58 +02:00
|
|
|
if (GNUNET_OK != ret)
|
|
|
|
break;
|
2016-10-17 16:39:56 +02:00
|
|
|
}
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-24 16:15:42 +02:00
|
|
|
* Select refunds above @a serial_id in monotonically increasing
|
|
|
|
* order.
|
2016-10-09 01:17:37 +02:00
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param serial_id highest serial ID to exclude (select strictly larger)
|
|
|
|
* @param cb function to call on each result
|
|
|
|
* @param cb_cls closure for @a cb
|
2017-06-24 16:15:42 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_select_refunds_above_serial_id (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
uint64_t serial_id,
|
|
|
|
TALER_EXCHANGEDB_RefundCallback cb,
|
|
|
|
void *cb_cls)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-10-17 16:39:56 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&serial_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
struct RefundsSerialContext rsc = {
|
|
|
|
.cb = cb,
|
|
|
|
.cb_cls = cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
.pg = pg,
|
2017-06-24 16:15:42 +02:00
|
|
|
.status = GNUNET_OK
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2016-10-17 16:39:56 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"audit_get_refunds_incr",
|
|
|
|
params,
|
|
|
|
&refunds_serial_helper_cb,
|
|
|
|
&rsc);
|
2017-06-24 16:15:42 +02:00
|
|
|
if (GNUNET_OK != rsc.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for #reserves_in_serial_helper_cb().
|
|
|
|
*/
|
|
|
|
struct ReservesInSerialContext
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback to call.
|
|
|
|
*/
|
|
|
|
TALER_EXCHANGEDB_ReserveInCallback cb;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Closure for @e cb.
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Status code, set to #GNUNET_SYSERR on hard errors.
|
2017-09-26 12:30:24 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct ReservesInSerialContext`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-24 16:15:42 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
reserves_in_serial_helper_cb (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-24 16:15:42 +02:00
|
|
|
{
|
|
|
|
struct ReservesInSerialContext *risc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = risc->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2016-10-17 16:39:56 +02:00
|
|
|
{
|
|
|
|
struct TALER_ReservePublicKeyP reserve_pub;
|
|
|
|
struct TALER_Amount credit;
|
2018-04-02 14:24:45 +02:00
|
|
|
char *sender_account_details;
|
2016-10-17 16:39:56 +02:00
|
|
|
struct GNUNET_TIME_Absolute execution_date;
|
2016-11-17 14:59:44 +01:00
|
|
|
uint64_t rowid;
|
2020-01-11 15:19:56 +01:00
|
|
|
uint64_t wire_reference;
|
2016-10-17 16:39:56 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2016-10-20 23:28:36 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("reserve_pub",
|
2016-10-17 16:39:56 +02:00
|
|
|
&reserve_pub),
|
2020-01-11 15:19:56 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("wire_reference",
|
|
|
|
&wire_reference),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("credit",
|
2016-10-17 16:39:56 +02:00
|
|
|
&credit),
|
2019-08-25 16:18:24 +02:00
|
|
|
TALER_PQ_result_spec_absolute_time ("execution_date",
|
2016-10-17 16:39:56 +02:00
|
|
|
&execution_date),
|
2018-04-02 14:24:45 +02:00
|
|
|
GNUNET_PQ_result_spec_string ("sender_account_details",
|
|
|
|
&sender_account_details),
|
2016-11-17 14:59:44 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("reserve_in_serial_id",
|
|
|
|
&rowid),
|
2016-10-24 12:40:28 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
2016-10-17 16:39:56 +02:00
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
int ret;
|
2016-10-17 16:39:56 +02:00
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2016-10-17 16:39:56 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 16:15:42 +02:00
|
|
|
risc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2016-10-17 16:39:56 +02:00
|
|
|
}
|
2017-06-24 16:15:42 +02:00
|
|
|
ret = risc->cb (risc->cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
rowid,
|
|
|
|
&reserve_pub,
|
|
|
|
&credit,
|
|
|
|
sender_account_details,
|
|
|
|
wire_reference,
|
|
|
|
execution_date);
|
2017-03-05 18:18:23 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2017-04-04 15:38:58 +02:00
|
|
|
if (GNUNET_OK != ret)
|
|
|
|
break;
|
2016-10-17 16:39:56 +02:00
|
|
|
}
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-24 16:15:42 +02:00
|
|
|
* Select inbound wire transfers into reserves_in above @a serial_id
|
2016-10-09 01:17:37 +02:00
|
|
|
* in monotonically increasing order.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param serial_id highest serial ID to exclude (select strictly larger)
|
|
|
|
* @param cb function to call on each result
|
|
|
|
* @param cb_cls closure for @a cb
|
2017-06-24 16:15:42 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_select_reserves_in_above_serial_id (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
uint64_t serial_id,
|
|
|
|
TALER_EXCHANGEDB_ReserveInCallback cb,
|
|
|
|
void *cb_cls)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-10-17 16:39:56 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&serial_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
struct ReservesInSerialContext risc = {
|
|
|
|
.cb = cb,
|
|
|
|
.cb_cls = cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
.pg = pg,
|
2017-06-24 16:15:42 +02:00
|
|
|
.status = GNUNET_OK
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"audit_reserves_in_get_transactions_incr",
|
|
|
|
params,
|
|
|
|
&reserves_in_serial_helper_cb,
|
|
|
|
&risc);
|
2017-06-24 16:15:42 +02:00
|
|
|
if (GNUNET_OK != risc.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
|
|
|
}
|
2016-10-17 16:39:56 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
|
2018-04-02 21:12:18 +02:00
|
|
|
/**
|
|
|
|
* Select inbound wire transfers into reserves_in above @a serial_id
|
|
|
|
* in monotonically increasing order by account.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param account_name name of the account to select by
|
|
|
|
* @param serial_id highest serial ID to exclude (select strictly larger)
|
|
|
|
* @param cb function to call on each result
|
|
|
|
* @param cb_cls closure for @a cb
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_select_reserves_in_above_serial_id_by_account (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const char *account_name,
|
|
|
|
uint64_t serial_id,
|
|
|
|
TALER_EXCHANGEDB_ReserveInCallback cb,
|
|
|
|
void *cb_cls)
|
2018-04-02 21:12:18 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-04-02 21:12:18 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&serial_id),
|
|
|
|
GNUNET_PQ_query_param_string (account_name),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct ReservesInSerialContext risc = {
|
|
|
|
.cb = cb,
|
|
|
|
.cb_cls = cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
.pg = pg,
|
2018-04-02 21:12:18 +02:00
|
|
|
.status = GNUNET_OK
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
|
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"audit_reserves_in_get_transactions_incr_by_account",
|
|
|
|
params,
|
|
|
|
&reserves_in_serial_helper_cb,
|
|
|
|
&risc);
|
2018-04-02 21:12:18 +02:00
|
|
|
if (GNUNET_OK != risc.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Closure for #reserves_out_serial_helper_cb().
|
|
|
|
*/
|
|
|
|
struct ReservesOutSerialContext
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback to call.
|
|
|
|
*/
|
|
|
|
TALER_EXCHANGEDB_WithdrawCallback cb;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Closure for @e cb.
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Status code, set to #GNUNET_SYSERR on hard errors.
|
2017-09-26 12:30:24 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct ReservesOutSerialContext`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-24 16:15:42 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
reserves_out_serial_helper_cb (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-24 16:15:42 +02:00
|
|
|
{
|
|
|
|
struct ReservesOutSerialContext *rosc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = rosc->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2016-10-17 16:39:56 +02:00
|
|
|
{
|
|
|
|
struct GNUNET_HashCode h_blind_ev;
|
|
|
|
struct TALER_DenominationPublicKey denom_pub;
|
|
|
|
struct TALER_ReservePublicKeyP reserve_pub;
|
|
|
|
struct TALER_ReserveSignatureP reserve_sig;
|
|
|
|
struct GNUNET_TIME_Absolute execution_date;
|
|
|
|
struct TALER_Amount amount_with_fee;
|
2016-11-17 14:59:44 +01:00
|
|
|
uint64_t rowid;
|
2016-10-17 16:39:56 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_blind_ev",
|
|
|
|
&h_blind_ev),
|
2016-10-20 23:28:36 +02:00
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&denom_pub.rsa_public_key),
|
2016-10-17 16:39:56 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("reserve_pub",
|
|
|
|
&reserve_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("reserve_sig",
|
|
|
|
&reserve_sig),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("execution_date",
|
2019-08-25 16:18:24 +02:00
|
|
|
&execution_date),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
2016-10-17 16:39:56 +02:00
|
|
|
&amount_with_fee),
|
2016-11-17 14:59:44 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("reserve_out_serial_id",
|
|
|
|
&rowid),
|
2016-10-17 16:39:56 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
int ret;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2016-10-17 16:39:56 +02:00
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2016-10-17 16:39:56 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 16:15:42 +02:00
|
|
|
rosc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2016-10-17 16:39:56 +02:00
|
|
|
}
|
2017-06-24 16:15:42 +02:00
|
|
|
ret = rosc->cb (rosc->cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
rowid,
|
|
|
|
&h_blind_ev,
|
|
|
|
&denom_pub,
|
|
|
|
&reserve_pub,
|
|
|
|
&reserve_sig,
|
|
|
|
execution_date,
|
|
|
|
&amount_with_fee);
|
2017-03-05 18:18:23 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2017-04-04 15:38:58 +02:00
|
|
|
if (GNUNET_OK != ret)
|
|
|
|
break;
|
2016-10-17 16:39:56 +02:00
|
|
|
}
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-24 16:15:42 +02:00
|
|
|
* Select withdraw operations from reserves_out above @a serial_id
|
|
|
|
* in monotonically increasing order.
|
2016-10-09 01:17:37 +02:00
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param serial_id highest serial ID to exclude (select strictly larger)
|
2017-06-24 16:15:42 +02:00
|
|
|
* @param cb function to call on each result
|
2016-10-09 01:17:37 +02:00
|
|
|
* @param cb_cls closure for @a cb
|
2017-06-24 16:15:42 +02:00
|
|
|
* @return transaction status code
|
2016-10-09 01:17:37 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_select_withdrawals_above_serial_id (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
uint64_t serial_id,
|
|
|
|
TALER_EXCHANGEDB_WithdrawCallback cb,
|
|
|
|
void *cb_cls)
|
2016-10-09 01:17:37 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2016-10-17 17:24:38 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&serial_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
struct ReservesOutSerialContext rosc = {
|
|
|
|
.cb = cb,
|
|
|
|
.cb_cls = cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
.pg = pg,
|
2017-06-24 16:15:42 +02:00
|
|
|
.status = GNUNET_OK
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
|
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"audit_get_reserves_out_incr",
|
|
|
|
params,
|
|
|
|
&reserves_out_serial_helper_cb,
|
|
|
|
&rosc);
|
2017-06-24 16:15:42 +02:00
|
|
|
if (GNUNET_OK != rosc.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for #wire_out_serial_helper_cb().
|
|
|
|
*/
|
|
|
|
struct WireOutSerialContext
|
|
|
|
{
|
2017-04-04 15:38:58 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Callback to call.
|
|
|
|
*/
|
|
|
|
TALER_EXCHANGEDB_WireTransferOutCallback cb;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Closure for @e cb.
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Status code, set to #GNUNET_SYSERR on hard errors.
|
2017-09-26 12:30:24 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
int status;
|
|
|
|
};
|
2016-10-17 17:24:38 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct WireOutSerialContext`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-24 16:15:42 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
wire_out_serial_helper_cb (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-24 16:15:42 +02:00
|
|
|
{
|
|
|
|
struct WireOutSerialContext *wosc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = wosc->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2016-10-17 17:24:38 +02:00
|
|
|
{
|
2017-03-18 02:40:27 +01:00
|
|
|
uint64_t rowid;
|
|
|
|
struct GNUNET_TIME_Absolute date;
|
|
|
|
struct TALER_WireTransferIdentifierRawP wtid;
|
|
|
|
json_t *wire;
|
|
|
|
struct TALER_Amount amount;
|
2016-10-17 17:24:38 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2017-03-18 02:40:27 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("wireout_uuid",
|
|
|
|
&rowid),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("execution_date",
|
2019-08-25 16:18:24 +02:00
|
|
|
&date),
|
2017-03-18 02:40:27 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("wtid_raw",
|
|
|
|
&wtid),
|
|
|
|
TALER_PQ_result_spec_json ("wire_target",
|
|
|
|
&wire),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount",
|
2017-03-18 02:40:27 +01:00
|
|
|
&amount),
|
2016-10-17 17:24:38 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
int ret;
|
2016-10-17 17:24:38 +02:00
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
2016-11-17 14:59:44 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
2016-11-17 15:12:01 +01:00
|
|
|
i))
|
2016-10-17 17:24:38 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 16:15:42 +02:00
|
|
|
wosc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2016-10-17 17:24:38 +02:00
|
|
|
}
|
2017-06-24 16:15:42 +02:00
|
|
|
ret = wosc->cb (wosc->cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
rowid,
|
|
|
|
date,
|
|
|
|
&wtid,
|
|
|
|
wire,
|
|
|
|
&amount);
|
2017-04-04 15:38:58 +02:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
|
|
|
if (GNUNET_OK != ret)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-24 16:15:42 +02:00
|
|
|
* Function called to select all wire transfers the exchange
|
|
|
|
* executed.
|
2017-04-04 15:38:58 +02:00
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
2017-06-24 16:15:42 +02:00
|
|
|
* @param serial_id highest serial ID to exclude (select strictly larger)
|
2017-04-04 15:38:58 +02:00
|
|
|
* @param cb function to call for ONE unfinished item
|
|
|
|
* @param cb_cls closure for @a cb
|
2017-06-24 16:15:42 +02:00
|
|
|
* @return transaction status code
|
2017-04-04 15:38:58 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_select_wire_out_above_serial_id (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
uint64_t serial_id,
|
|
|
|
TALER_EXCHANGEDB_WireTransferOutCallback cb,
|
|
|
|
void *cb_cls)
|
2017-04-04 15:38:58 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-04-04 15:38:58 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&serial_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
struct WireOutSerialContext wosc = {
|
|
|
|
.cb = cb,
|
|
|
|
.cb_cls = cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
.pg = pg,
|
2017-06-24 16:15:42 +02:00
|
|
|
.status = GNUNET_OK
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-04-04 15:38:58 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"audit_get_wire_incr",
|
|
|
|
params,
|
|
|
|
&wire_out_serial_helper_cb,
|
|
|
|
&wosc);
|
2017-06-24 16:15:42 +02:00
|
|
|
if (GNUNET_OK != wosc.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-04-02 21:12:18 +02:00
|
|
|
/**
|
|
|
|
* Function called to select all wire transfers the exchange
|
|
|
|
* executed by account.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param account_name account to select
|
|
|
|
* @param serial_id highest serial ID to exclude (select strictly larger)
|
|
|
|
* @param cb function to call for ONE unfinished item
|
|
|
|
* @param cb_cls closure for @a cb
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_select_wire_out_above_serial_id_by_account (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const char *account_name,
|
|
|
|
uint64_t serial_id,
|
|
|
|
TALER_EXCHANGEDB_WireTransferOutCallback cb,
|
|
|
|
void *cb_cls)
|
2018-04-02 21:12:18 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2018-04-02 21:12:18 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&serial_id),
|
|
|
|
GNUNET_PQ_query_param_string (account_name),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct WireOutSerialContext wosc = {
|
|
|
|
.cb = cb,
|
|
|
|
.cb_cls = cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
.pg = pg,
|
2018-04-02 21:12:18 +02:00
|
|
|
.status = GNUNET_OK
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
|
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"audit_get_wire_incr_by_account",
|
|
|
|
params,
|
|
|
|
&wire_out_serial_helper_cb,
|
|
|
|
&wosc);
|
2018-04-02 21:12:18 +02:00
|
|
|
if (GNUNET_OK != wosc.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
2020-01-18 23:49:37 +01:00
|
|
|
* Closure for #recoup_serial_helper_cb().
|
2017-06-24 16:15:42 +02:00
|
|
|
*/
|
2020-01-18 23:49:37 +01:00
|
|
|
struct RecoupSerialContext
|
2017-06-24 16:15:42 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback to call.
|
|
|
|
*/
|
2020-01-18 23:49:37 +01:00
|
|
|
TALER_EXCHANGEDB_RecoupCallback cb;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Closure for @e cb.
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Status code, set to #GNUNET_SYSERR on hard errors.
|
2017-09-26 12:30:24 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
2020-01-18 23:49:37 +01:00
|
|
|
* @param cls closure of type `struct RecoupSerialContext`
|
2017-06-24 16:15:42 +02:00
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-24 16:15:42 +02:00
|
|
|
*/
|
|
|
|
static void
|
2020-01-18 23:49:37 +01:00
|
|
|
recoup_serial_helper_cb (void *cls,
|
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-24 16:15:42 +02:00
|
|
|
{
|
2020-01-18 23:49:37 +01:00
|
|
|
struct RecoupSerialContext *psc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = psc->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2017-04-04 15:38:58 +02:00
|
|
|
{
|
|
|
|
uint64_t rowid;
|
|
|
|
struct TALER_ReservePublicKeyP reserve_pub;
|
2017-04-04 16:27:27 +02:00
|
|
|
struct TALER_CoinPublicInfo coin;
|
2017-04-04 15:38:58 +02:00
|
|
|
struct TALER_CoinSpendSignatureP coin_sig;
|
|
|
|
struct TALER_DenominationBlindingKeyP coin_blind;
|
|
|
|
struct TALER_Amount amount;
|
2020-03-26 20:54:41 +01:00
|
|
|
struct TALER_DenominationPublicKey denom_pub;
|
2017-04-04 15:38:58 +02:00
|
|
|
struct GNUNET_HashCode h_blind_ev;
|
|
|
|
struct GNUNET_TIME_Absolute timestamp;
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2020-01-18 23:49:37 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("recoup_uuid",
|
2017-04-04 15:38:58 +02:00
|
|
|
&rowid),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("timestamp",
|
2019-08-25 16:18:24 +02:00
|
|
|
×tamp),
|
2017-04-04 15:38:58 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("reserve_pub",
|
|
|
|
&reserve_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub",
|
2017-04-04 16:27:27 +02:00
|
|
|
&coin.coin_pub),
|
2020-03-26 20:54:41 +01:00
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&denom_pub.rsa_public_key),
|
2017-04-04 15:38:58 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_sig",
|
|
|
|
&coin_sig),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_blind",
|
|
|
|
&coin_blind),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_blind_ev",
|
|
|
|
&h_blind_ev),
|
2019-05-02 21:16:51 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("denom_pub_hash",
|
|
|
|
&coin.denom_pub_hash),
|
2017-04-04 16:27:27 +02:00
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("denom_sig",
|
|
|
|
&coin.denom_sig.rsa_signature),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount",
|
2017-04-04 15:38:58 +02:00
|
|
|
&amount),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
int ret;
|
2017-04-04 15:38:58 +02:00
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 16:15:42 +02:00
|
|
|
psc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2017-04-04 15:38:58 +02:00
|
|
|
}
|
2017-06-24 16:15:42 +02:00
|
|
|
ret = psc->cb (psc->cb_cls,
|
2019-07-21 20:15:11 +02:00
|
|
|
rowid,
|
|
|
|
timestamp,
|
|
|
|
&amount,
|
|
|
|
&reserve_pub,
|
|
|
|
&coin,
|
2019-05-02 21:16:51 +02:00
|
|
|
&denom_pub,
|
2019-07-21 20:15:11 +02:00
|
|
|
&coin_sig,
|
|
|
|
&coin_blind);
|
2017-03-05 18:18:23 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2017-04-04 15:38:58 +02:00
|
|
|
if (GNUNET_OK != ret)
|
|
|
|
break;
|
2016-10-17 17:24:38 +02:00
|
|
|
}
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-19 21:28:47 +02:00
|
|
|
/**
|
2020-01-18 23:49:37 +01:00
|
|
|
* Function called to select recoup requests the exchange
|
2017-06-24 16:15:42 +02:00
|
|
|
* received, ordered by serial ID (monotonically increasing).
|
2017-04-19 21:28:47 +02:00
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param serial_id lowest serial ID to include (select larger or equal)
|
|
|
|
* @param cb function to call for ONE unfinished item
|
|
|
|
* @param cb_cls closure for @a cb
|
2017-06-24 16:15:42 +02:00
|
|
|
* @return transaction status code
|
2017-04-19 21:28:47 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_select_recoup_above_serial_id (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
uint64_t serial_id,
|
|
|
|
TALER_EXCHANGEDB_RecoupCallback cb,
|
|
|
|
void *cb_cls)
|
2017-04-19 21:28:47 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-04-19 21:28:47 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&serial_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2020-01-18 23:49:37 +01:00
|
|
|
struct RecoupSerialContext psc = {
|
2017-06-24 16:15:42 +02:00
|
|
|
.cb = cb,
|
|
|
|
.cb_cls = cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
.pg = pg,
|
2017-06-24 16:15:42 +02:00
|
|
|
.status = GNUNET_OK
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2020-01-18 23:49:37 +01:00
|
|
|
"recoup_get_incr",
|
2019-08-25 16:18:24 +02:00
|
|
|
params,
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup_serial_helper_cb,
|
2019-08-25 16:18:24 +02:00
|
|
|
&psc);
|
2017-06-24 16:15:42 +02:00
|
|
|
if (GNUNET_OK != psc.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
|
|
|
}
|
2017-04-19 21:28:47 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
|
2019-07-21 20:15:11 +02:00
|
|
|
/**
|
2020-01-18 23:49:37 +01:00
|
|
|
* Closure for #recoup_refresh_serial_helper_cb().
|
2019-07-21 20:15:11 +02:00
|
|
|
*/
|
2020-01-18 23:49:37 +01:00
|
|
|
struct RecoupRefreshSerialContext
|
2019-07-21 20:15:11 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback to call.
|
|
|
|
*/
|
2020-01-18 23:49:37 +01:00
|
|
|
TALER_EXCHANGEDB_RecoupRefreshCallback cb;
|
2019-07-21 20:15:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for @e cb.
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2019-07-21 20:15:11 +02:00
|
|
|
/**
|
|
|
|
* Status code, set to #GNUNET_SYSERR on hard errors.
|
|
|
|
*/
|
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
2020-01-18 23:49:37 +01:00
|
|
|
* @param cls closure of type `struct RecoupRefreshSerialContext`
|
2019-07-21 20:15:11 +02:00
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2019-07-21 20:15:11 +02:00
|
|
|
*/
|
|
|
|
static void
|
2020-01-18 23:49:37 +01:00
|
|
|
recoup_refresh_serial_helper_cb (void *cls,
|
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2019-07-21 20:15:11 +02:00
|
|
|
{
|
2020-01-18 23:49:37 +01:00
|
|
|
struct RecoupRefreshSerialContext *psc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = psc->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2019-07-21 20:15:11 +02:00
|
|
|
{
|
|
|
|
uint64_t rowid;
|
|
|
|
struct TALER_CoinSpendPublicKeyP old_coin_pub;
|
|
|
|
struct TALER_CoinPublicInfo coin;
|
|
|
|
struct TALER_CoinSpendSignatureP coin_sig;
|
|
|
|
struct TALER_DenominationBlindingKeyP coin_blind;
|
|
|
|
struct TALER_DenominationPublicKey denom_pub;
|
2020-03-26 20:54:41 +01:00
|
|
|
struct GNUNET_HashCode old_denom_pub_hash;
|
2019-07-21 20:15:11 +02:00
|
|
|
struct TALER_Amount amount;
|
|
|
|
struct GNUNET_HashCode h_blind_ev;
|
|
|
|
struct GNUNET_TIME_Absolute timestamp;
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2020-03-26 20:06:23 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("recoup_refresh_uuid",
|
2019-07-21 20:15:11 +02:00
|
|
|
&rowid),
|
|
|
|
TALER_PQ_result_spec_absolute_time ("timestamp",
|
2019-08-25 16:18:24 +02:00
|
|
|
×tamp),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("old_coin_pub",
|
|
|
|
&old_coin_pub),
|
2020-03-26 20:54:41 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("old_denom_pub_hash",
|
|
|
|
&old_denom_pub_hash),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub",
|
|
|
|
&coin.coin_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_sig",
|
|
|
|
&coin_sig),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_blind",
|
|
|
|
&coin_blind),
|
2020-03-26 20:54:41 +01:00
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&denom_pub.rsa_public_key),
|
2019-07-21 20:15:11 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_blind_ev",
|
|
|
|
&h_blind_ev),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("denom_pub_hash",
|
|
|
|
&coin.denom_pub_hash),
|
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("denom_sig",
|
|
|
|
&coin.denom_sig.rsa_signature),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount",
|
2019-07-21 20:15:11 +02:00
|
|
|
&amount),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
psc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ret = psc->cb (psc->cb_cls,
|
|
|
|
rowid,
|
|
|
|
timestamp,
|
|
|
|
&amount,
|
|
|
|
&old_coin_pub,
|
2020-03-26 20:54:41 +01:00
|
|
|
&old_denom_pub_hash,
|
2019-07-21 20:15:11 +02:00
|
|
|
&coin,
|
|
|
|
&denom_pub,
|
|
|
|
&coin_sig,
|
|
|
|
&coin_blind);
|
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
|
|
|
if (GNUNET_OK != ret)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-01-18 23:49:37 +01:00
|
|
|
* Function called to select recoup requests the exchange received for
|
2019-07-21 20:15:11 +02:00
|
|
|
* refreshed coins, ordered by serial ID (monotonically increasing).
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param serial_id lowest serial ID to include (select larger or equal)
|
|
|
|
* @param cb function to call for ONE unfinished item
|
|
|
|
* @param cb_cls closure for @a cb
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_select_recoup_refresh_above_serial_id (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
uint64_t serial_id,
|
|
|
|
TALER_EXCHANGEDB_RecoupRefreshCallback cb,
|
|
|
|
void *cb_cls)
|
2019-07-21 20:15:11 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2019-07-21 20:15:11 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&serial_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2020-01-18 23:49:37 +01:00
|
|
|
struct RecoupRefreshSerialContext psc = {
|
2019-07-21 20:15:11 +02:00
|
|
|
.cb = cb,
|
|
|
|
.cb_cls = cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
.pg = pg,
|
2019-07-21 20:15:11 +02:00
|
|
|
.status = GNUNET_OK
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
|
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2020-01-18 23:49:37 +01:00
|
|
|
"recoup_refresh_get_incr",
|
2019-07-21 20:15:11 +02:00
|
|
|
params,
|
2020-01-18 23:49:37 +01:00
|
|
|
&recoup_refresh_serial_helper_cb,
|
2019-07-21 20:15:11 +02:00
|
|
|
&psc);
|
|
|
|
if (GNUNET_OK != psc.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Closure for #reserve_closed_serial_helper_cb().
|
|
|
|
*/
|
|
|
|
struct ReserveClosedSerialContext
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback to call.
|
|
|
|
*/
|
|
|
|
TALER_EXCHANGEDB_ReserveClosedCallback cb;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Closure for @e cb.
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin's context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
/**
|
|
|
|
* Status code, set to #GNUNET_SYSERR on hard errors.
|
2017-09-26 12:30:24 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to be called with the results of a SELECT statement
|
|
|
|
* that has returned @a num_results results.
|
|
|
|
*
|
|
|
|
* @param cls closure of type `struct ReserveClosedSerialContext`
|
|
|
|
* @param result the postgres result
|
2020-01-17 22:17:48 +01:00
|
|
|
* @param num_results the number of results in @a result
|
2017-06-24 16:15:42 +02:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
reserve_closed_serial_helper_cb (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-06-24 16:15:42 +02:00
|
|
|
{
|
|
|
|
struct ReserveClosedSerialContext *rcsc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = rcsc->pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i<num_results; i++)
|
2017-04-19 21:28:47 +02:00
|
|
|
{
|
|
|
|
uint64_t rowid;
|
|
|
|
struct TALER_ReservePublicKeyP reserve_pub;
|
2018-04-02 14:24:45 +02:00
|
|
|
char *receiver_account;
|
2017-04-20 21:38:02 +02:00
|
|
|
struct TALER_WireTransferIdentifierRawP wtid;
|
2017-04-19 21:28:47 +02:00
|
|
|
struct TALER_Amount amount_with_fee;
|
|
|
|
struct TALER_Amount closing_fee;
|
|
|
|
struct GNUNET_TIME_Absolute execution_date;
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_uint64 ("close_uuid",
|
|
|
|
&rowid),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("reserve_pub",
|
|
|
|
&reserve_pub),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("execution_date",
|
2019-08-25 16:18:24 +02:00
|
|
|
&execution_date),
|
2017-05-08 12:44:40 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("wtid",
|
2019-08-17 21:35:21 +02:00
|
|
|
&wtid),
|
2018-04-02 14:24:45 +02:00
|
|
|
GNUNET_PQ_result_spec_string ("receiver_account",
|
|
|
|
&receiver_account),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount",
|
2017-04-19 21:28:47 +02:00
|
|
|
&amount_with_fee),
|
2019-08-17 21:35:21 +02:00
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("closing_fee",
|
2017-04-19 21:28:47 +02:00
|
|
|
&closing_fee),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-06-24 16:15:42 +02:00
|
|
|
int ret;
|
2017-04-19 21:28:47 +02:00
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-24 16:15:42 +02:00
|
|
|
rcsc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
2017-04-19 21:28:47 +02:00
|
|
|
}
|
2017-06-24 16:15:42 +02:00
|
|
|
ret = rcsc->cb (rcsc->cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
rowid,
|
|
|
|
execution_date,
|
|
|
|
&amount_with_fee,
|
|
|
|
&closing_fee,
|
|
|
|
&reserve_pub,
|
|
|
|
receiver_account,
|
|
|
|
&wtid);
|
2017-04-19 21:28:47 +02:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
|
|
|
if (GNUNET_OK != ret)
|
|
|
|
break;
|
|
|
|
}
|
2017-06-24 16:15:42 +02:00
|
|
|
}
|
2017-04-19 21:28:47 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function called to select reserve close operations the aggregator
|
|
|
|
* triggered, ordered by serial ID (monotonically increasing).
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param serial_id lowest serial ID to include (select larger or equal)
|
|
|
|
* @param cb function to call for ONE unfinished item
|
|
|
|
* @param cb_cls closure for @a cb
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_select_reserve_closed_above_serial_id (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
uint64_t serial_id,
|
|
|
|
TALER_EXCHANGEDB_ReserveClosedCallback cb,
|
|
|
|
void *cb_cls)
|
2019-08-25 16:18:24 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-06-24 16:15:42 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&serial_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct ReserveClosedSerialContext rcsc = {
|
|
|
|
.cb = cb,
|
|
|
|
.cb_cls = cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
.pg = pg,
|
2017-06-24 16:15:42 +02:00
|
|
|
.status = GNUNET_OK
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-09-26 12:30:24 +02:00
|
|
|
|
2017-06-24 16:15:42 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"reserves_close_get_incr",
|
|
|
|
params,
|
|
|
|
&reserve_closed_serial_helper_cb,
|
|
|
|
&rcsc);
|
2017-06-24 16:15:42 +02:00
|
|
|
if (GNUNET_OK != rcsc.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
2017-04-19 21:28:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-01 23:43:55 +02:00
|
|
|
/**
|
2020-01-18 23:49:37 +01:00
|
|
|
* Function called to add a request for an emergency recoup for a
|
2017-04-01 23:43:55 +02:00
|
|
|
* coin. The funds are to be added back to the reserve. The function
|
|
|
|
* should return the @a deadline by which the exchange will trigger a
|
|
|
|
* wire transfer back to the customer's account for the reserve.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param reserve_pub public key of the reserve that is being refunded
|
2017-04-04 16:27:27 +02:00
|
|
|
* @param coin information about the coin
|
2020-01-18 23:49:37 +01:00
|
|
|
* @param coin_sig signature of the coin of type #TALER_SIGNATURE_WALLET_COIN_RECOUP
|
2017-04-01 23:43:55 +02:00
|
|
|
* @param coin_blind blinding key of the coin
|
|
|
|
* @param amount total amount to be paid back
|
2017-04-20 07:49:56 +02:00
|
|
|
* @param h_blind_ev hash of the blinded coin's envelope (must match reserves_out entry)
|
2017-04-03 16:40:31 +02:00
|
|
|
* @param timestamp current time (rounded)
|
2017-06-19 17:53:42 +02:00
|
|
|
* @return transaction result status
|
2017-04-01 23:43:55 +02:00
|
|
|
*/
|
2017-06-19 17:53:42 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_recoup_request (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub,
|
|
|
|
const struct TALER_CoinPublicInfo *coin,
|
|
|
|
const struct TALER_CoinSpendSignatureP *coin_sig,
|
|
|
|
const struct TALER_DenominationBlindingKeyP *coin_blind,
|
|
|
|
const struct TALER_Amount *amount,
|
|
|
|
const struct GNUNET_HashCode *h_blind_ev,
|
|
|
|
struct GNUNET_TIME_Absolute timestamp)
|
2017-04-01 23:43:55 +02:00
|
|
|
{
|
2017-04-20 21:38:02 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-04-02 00:05:20 +02:00
|
|
|
struct GNUNET_TIME_Absolute expiry;
|
|
|
|
struct TALER_EXCHANGEDB_Reserve reserve;
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2017-04-04 16:27:27 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&coin->coin_pub),
|
2017-04-02 00:05:20 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_sig),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_blind),
|
|
|
|
TALER_PQ_query_param_amount (amount),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (×tamp),
|
2017-04-02 18:02:07 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_blind_ev),
|
2017-04-02 00:05:20 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-06-18 14:43:28 +02:00
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
2017-04-04 16:27:27 +02:00
|
|
|
|
2020-01-18 23:49:37 +01:00
|
|
|
/* now store actual recoup information */
|
2017-06-19 17:53:42 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2020-01-18 23:49:37 +01:00
|
|
|
"recoup_insert",
|
2019-07-21 20:15:11 +02:00
|
|
|
params);
|
2017-06-19 17:53:42 +02:00
|
|
|
if (0 > qs)
|
2017-04-02 00:05:20 +02:00
|
|
|
{
|
2017-06-19 17:53:42 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2017-04-02 00:05:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Update reserve balance */
|
|
|
|
reserve.pub = *reserve_pub;
|
2020-03-05 23:02:38 +01:00
|
|
|
qs = postgres_reserves_get (cls,
|
|
|
|
session,
|
|
|
|
&reserve);
|
2017-06-19 17:53:42 +02:00
|
|
|
if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != qs)
|
2017-04-02 00:05:20 +02:00
|
|
|
{
|
2017-06-19 17:53:42 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2017-04-02 00:05:20 +02:00
|
|
|
}
|
2020-04-08 23:52:01 +02:00
|
|
|
if (0 >
|
2017-04-02 00:05:20 +02:00
|
|
|
TALER_amount_add (&reserve.balance,
|
|
|
|
&reserve.balance,
|
|
|
|
amount))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2017-06-19 17:53:42 +02:00
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
2017-04-02 00:05:20 +02:00
|
|
|
}
|
2020-07-10 22:33:04 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Inserting recoup for coin %s\n",
|
|
|
|
TALER_B2S (&coin->coin_pub));
|
2019-07-24 12:19:36 +02:00
|
|
|
expiry = GNUNET_TIME_absolute_add (timestamp,
|
|
|
|
pg->legal_reserve_expiration_time);
|
|
|
|
reserve.gc = GNUNET_TIME_absolute_max (expiry,
|
|
|
|
reserve.gc);
|
|
|
|
(void) GNUNET_TIME_round_abs (&reserve.gc);
|
2017-04-03 16:40:31 +02:00
|
|
|
expiry = GNUNET_TIME_absolute_add (timestamp,
|
2017-04-20 21:38:02 +02:00
|
|
|
pg->idle_reserve_expiration_time);
|
2017-04-02 00:05:20 +02:00
|
|
|
reserve.expiry = GNUNET_TIME_absolute_max (expiry,
|
|
|
|
reserve.expiry);
|
2019-07-24 12:19:36 +02:00
|
|
|
(void) GNUNET_TIME_round_abs (&reserve.expiry);
|
2017-06-18 14:43:28 +02:00
|
|
|
qs = reserves_update (cls,
|
2019-07-21 20:15:11 +02:00
|
|
|
session,
|
|
|
|
&reserve);
|
2017-06-18 14:43:28 +02:00
|
|
|
if (0 >= qs)
|
2017-04-02 00:05:20 +02:00
|
|
|
{
|
2017-06-19 17:53:42 +02:00
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
2017-04-02 00:05:20 +02:00
|
|
|
}
|
2017-06-19 17:53:42 +02:00
|
|
|
return qs;
|
2017-04-01 23:43:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-21 20:15:11 +02:00
|
|
|
/**
|
2020-01-18 23:49:37 +01:00
|
|
|
* Function called to add a request for an emergency recoup for a
|
2019-07-21 20:15:11 +02:00
|
|
|
* refreshed coin. The funds are to be added back to the original coin
|
|
|
|
* (which is implied via @a h_blind_ev, see the prepared statement
|
2020-01-18 23:49:37 +01:00
|
|
|
* "recoup_by_old_coin" used in #postgres_get_coin_transactions()).
|
2019-07-21 20:15:11 +02:00
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @param coin public information about the refreshed coin
|
2020-01-18 23:49:37 +01:00
|
|
|
* @param coin_sig signature of the coin of type #TALER_SIGNATURE_WALLET_COIN_RECOUP
|
2019-07-21 20:15:11 +02:00
|
|
|
* @param coin_blind blinding key of the coin
|
|
|
|
* @param h_blind_ev blinded envelope, as calculated by the exchange
|
|
|
|
* @param amount total amount to be paid back
|
|
|
|
* @param h_blind_ev hash of the blinded coin's envelope (must match reserves_out entry)
|
|
|
|
* @param timestamp a timestamp to store
|
|
|
|
* @return transaction result status
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_recoup_refresh_request (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_CoinPublicInfo *coin,
|
|
|
|
const struct TALER_CoinSpendSignatureP *coin_sig,
|
|
|
|
const struct TALER_DenominationBlindingKeyP *coin_blind,
|
|
|
|
const struct TALER_Amount *amount,
|
|
|
|
const struct GNUNET_HashCode *h_blind_ev,
|
|
|
|
struct GNUNET_TIME_Absolute timestamp)
|
2019-07-21 20:15:11 +02:00
|
|
|
{
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&coin->coin_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_sig),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_blind),
|
|
|
|
TALER_PQ_query_param_amount (amount),
|
|
|
|
TALER_PQ_query_param_absolute_time (×tamp),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_blind_ev),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2020-01-18 23:49:37 +01:00
|
|
|
/* now store actual recoup information */
|
2020-07-10 22:33:04 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Inserting recoup-refresh for coin %s\n",
|
|
|
|
TALER_B2S (&coin->coin_pub));
|
2019-07-21 20:15:11 +02:00
|
|
|
qs = GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2020-01-18 23:49:37 +01:00
|
|
|
"recoup_refresh_insert",
|
2019-07-21 20:15:11 +02:00
|
|
|
params);
|
|
|
|
if (0 > qs)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR == qs);
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-01 23:43:55 +02:00
|
|
|
/**
|
|
|
|
* Obtain information about which reserve a coin was generated
|
|
|
|
* from given the hash of the blinded coin.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session a session
|
|
|
|
* @param h_blind_ev hash of the blinded coin
|
|
|
|
* @param[out] reserve_pub set to information about the reserve (on success only)
|
2017-06-19 17:53:42 +02:00
|
|
|
* @return transaction status code
|
2017-04-01 23:43:55 +02:00
|
|
|
*/
|
2017-06-19 17:53:42 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2017-04-01 23:43:55 +02:00
|
|
|
postgres_get_reserve_by_h_blind (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct GNUNET_HashCode *h_blind_ev,
|
|
|
|
struct TALER_ReservePublicKeyP *reserve_pub)
|
|
|
|
{
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_blind_ev),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2017-06-19 17:53:42 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("reserve_pub",
|
2019-08-17 21:35:21 +02:00
|
|
|
reserve_pub),
|
2017-06-19 17:53:42 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2017-04-01 23:43:55 +02:00
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-06-19 17:53:42 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-07-23 20:27:41 +02:00
|
|
|
"reserve_by_h_blind",
|
|
|
|
params,
|
|
|
|
rs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtain information about which old coin a coin was refreshed
|
|
|
|
* given the hash of the blinded (fresh) coin.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session a session
|
|
|
|
* @param h_blind_ev hash of the blinded coin
|
2020-01-18 13:23:10 +01:00
|
|
|
* @param[out] old_coin_pub set to information about the old coin (on success only)
|
2019-07-23 20:27:41 +02:00
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
|
|
|
postgres_get_old_coin_by_h_blind (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct GNUNET_HashCode *h_blind_ev,
|
|
|
|
struct TALER_CoinSpendPublicKeyP *old_coin_pub)
|
|
|
|
{
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_blind_ev),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("old_coin_pub",
|
|
|
|
old_coin_pub),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2019-07-23 20:27:41 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
|
|
|
"old_coin_by_h_blind",
|
|
|
|
params,
|
|
|
|
rs);
|
2017-04-01 23:43:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-08 22:01:13 +02:00
|
|
|
/**
|
|
|
|
* Store information that a denomination key was revoked
|
|
|
|
* in the database.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session a session
|
|
|
|
* @param denom_pub_hash hash of the revoked denomination key
|
|
|
|
* @param master_sig signature affirming the revocation
|
2017-06-23 13:16:12 +02:00
|
|
|
* @return transaction status code
|
2017-04-08 22:01:13 +02:00
|
|
|
*/
|
2017-06-23 13:16:12 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_insert_denomination_revocation (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct GNUNET_HashCode *denom_pub_hash,
|
|
|
|
const struct TALER_MasterSignatureP *master_sig)
|
2017-04-08 22:01:13 +02:00
|
|
|
{
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (denom_pub_hash),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_sig),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-06-23 13:16:12 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_non_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"denomination_revocation_insert",
|
|
|
|
params);
|
2017-04-08 22:01:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtain information about a denomination key's revocation from
|
|
|
|
* the database.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session a session
|
|
|
|
* @param denom_pub_hash hash of the revoked denomination key
|
|
|
|
* @param[out] master_sig signature affirming the revocation
|
2017-04-16 17:21:26 +02:00
|
|
|
* @param[out] rowid row where the information is stored
|
2017-06-24 16:15:42 +02:00
|
|
|
* @return transaction status code
|
2017-04-08 22:01:13 +02:00
|
|
|
*/
|
2017-06-24 16:15:42 +02:00
|
|
|
static enum GNUNET_DB_QueryStatus
|
2020-03-07 00:28:07 +01:00
|
|
|
postgres_get_denomination_revocation (
|
|
|
|
void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct GNUNET_HashCode *denom_pub_hash,
|
|
|
|
struct TALER_MasterSignatureP *master_sig,
|
|
|
|
uint64_t *rowid)
|
2017-04-08 22:01:13 +02:00
|
|
|
{
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (denom_pub_hash),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("master_sig", master_sig),
|
2017-04-16 17:21:26 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("denom_revocations_serial_id", rowid),
|
2017-04-08 22:01:13 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
2019-10-29 18:04:04 +01:00
|
|
|
(void) cls;
|
2017-06-24 16:15:42 +02:00
|
|
|
return GNUNET_PQ_eval_prepared_singleton_select (session->conn,
|
2019-08-17 21:35:21 +02:00
|
|
|
"denomination_revocation_get",
|
|
|
|
params,
|
|
|
|
rs);
|
2017-04-08 22:01:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-10-16 17:25:13 +02:00
|
|
|
/**
|
|
|
|
* Closure for #missing_wire_cb().
|
|
|
|
*/
|
|
|
|
struct MissingWireContext
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Function to call per result.
|
|
|
|
*/
|
|
|
|
TALER_EXCHANGEDB_WireMissingCallback cb;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closure for @e cb.
|
|
|
|
*/
|
|
|
|
void *cb_cls;
|
|
|
|
|
2019-08-17 21:35:21 +02:00
|
|
|
/**
|
|
|
|
* Plugin context.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure *pg;
|
2019-08-25 16:18:24 +02:00
|
|
|
|
2017-10-16 17:25:13 +02:00
|
|
|
/**
|
|
|
|
* Set to #GNUNET_SYSERR on error.
|
|
|
|
*/
|
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoke the callback for each result.
|
|
|
|
*
|
|
|
|
* @param cls a `struct MissingWireContext *`
|
|
|
|
* @param result SQL result
|
|
|
|
* @param num_results number of rows in @a result
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
missing_wire_cb (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
PGresult *result,
|
|
|
|
unsigned int num_results)
|
2017-10-16 17:25:13 +02:00
|
|
|
{
|
|
|
|
struct MissingWireContext *mwc = cls;
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = mwc->pg;
|
2017-10-16 17:25:13 +02:00
|
|
|
|
|
|
|
while (0 < num_results)
|
|
|
|
{
|
|
|
|
uint64_t rowid;
|
|
|
|
struct TALER_CoinSpendPublicKeyP coin_pub;
|
|
|
|
struct TALER_Amount amount;
|
|
|
|
json_t *wire;
|
|
|
|
struct GNUNET_TIME_Absolute deadline;
|
2018-01-15 15:18:00 +01:00
|
|
|
uint8_t tiny;
|
|
|
|
uint8_t done;
|
2017-10-16 17:25:13 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_uint64 ("deposit_serial_id",
|
2019-08-17 21:35:21 +02:00
|
|
|
&rowid),
|
2017-10-16 17:25:13 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub",
|
2019-08-17 21:35:21 +02:00
|
|
|
&coin_pub),
|
|
|
|
TALER_PQ_RESULT_SPEC_AMOUNT ("amount_with_fee",
|
|
|
|
&amount),
|
2017-10-16 17:25:13 +02:00
|
|
|
TALER_PQ_result_spec_json ("wire",
|
2018-04-02 14:24:45 +02:00
|
|
|
&wire),
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_result_spec_absolute_time ("wire_deadline",
|
2019-08-17 21:35:21 +02:00
|
|
|
&deadline),
|
2018-01-15 15:18:00 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("tiny",
|
|
|
|
&tiny),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("done",
|
|
|
|
&done),
|
2017-10-16 17:25:13 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
--num_results))
|
2017-10-16 17:25:13 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
mwc->status = GNUNET_SYSERR;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mwc->cb (mwc->cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
rowid,
|
|
|
|
&coin_pub,
|
|
|
|
&amount,
|
|
|
|
wire,
|
|
|
|
deadline,
|
|
|
|
tiny,
|
|
|
|
done);
|
2017-10-16 17:25:13 +02:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Select all of those deposits in the database for which we do
|
|
|
|
* not have a wire transfer (or a refund) and which should have
|
|
|
|
* been deposited between @a start_date and @a end_date.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session a session
|
|
|
|
* @param start_date lower bound on the requested wire execution date
|
|
|
|
* @param end_date upper bound on the requested wire execution date
|
|
|
|
* @param cb function to call on all such deposits
|
|
|
|
* @param cb_cls closure for @a cb
|
|
|
|
* @return transaction status code
|
|
|
|
*/
|
|
|
|
static enum GNUNET_DB_QueryStatus
|
|
|
|
postgres_select_deposits_missing_wire (void *cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
struct GNUNET_TIME_Absolute start_date,
|
|
|
|
struct GNUNET_TIME_Absolute end_date,
|
|
|
|
TALER_EXCHANGEDB_WireMissingCallback cb,
|
|
|
|
void *cb_cls)
|
2017-10-16 17:25:13 +02:00
|
|
|
{
|
2019-08-17 21:35:21 +02:00
|
|
|
struct PostgresClosure *pg = cls;
|
2017-10-16 17:25:13 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
2017-11-30 17:17:37 +01:00
|
|
|
TALER_PQ_query_param_absolute_time (&start_date),
|
|
|
|
TALER_PQ_query_param_absolute_time (&end_date),
|
2017-10-16 17:25:13 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2019-08-25 16:18:24 +02:00
|
|
|
struct MissingWireContext mwc = {
|
2017-10-16 17:25:13 +02:00
|
|
|
.cb = cb,
|
|
|
|
.cb_cls = cb_cls,
|
2019-08-17 21:35:21 +02:00
|
|
|
.pg = pg,
|
2017-10-16 17:25:13 +02:00
|
|
|
.status = GNUNET_OK
|
|
|
|
};
|
|
|
|
enum GNUNET_DB_QueryStatus qs;
|
|
|
|
|
|
|
|
qs = GNUNET_PQ_eval_prepared_multi_select (session->conn,
|
2019-08-25 16:18:24 +02:00
|
|
|
"deposits_get_overdue",
|
|
|
|
params,
|
|
|
|
&missing_wire_cb,
|
|
|
|
&mwc);
|
2017-10-16 17:25:13 +02:00
|
|
|
if (GNUNET_OK != mwc.status)
|
|
|
|
return GNUNET_DB_STATUS_HARD_ERROR;
|
|
|
|
return qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-28 22:47:03 +01:00
|
|
|
/**
|
2015-03-20 23:51:28 +01:00
|
|
|
* Initialize Postgres database subsystem.
|
2015-01-28 22:47:03 +01:00
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls a configuration instance
|
2018-07-06 15:24:03 +02:00
|
|
|
* @return NULL on error, otherwise a `struct
|
|
|
|
* TALER_EXCHANGEDB_Plugin`
|
2015-01-28 22:47:03 +01:00
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
void *
|
2016-03-01 15:35:04 +01:00
|
|
|
libtaler_plugin_exchangedb_postgres_init (void *cls)
|
2015-01-28 22:47:03 +01:00
|
|
|
{
|
2020-02-09 15:53:28 +01:00
|
|
|
const struct GNUNET_CONFIGURATION_Handle *cfg = cls;
|
2015-03-20 23:51:28 +01:00
|
|
|
struct PostgresClosure *pg;
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Plugin *plugin;
|
2015-03-20 23:51:28 +01:00
|
|
|
|
|
|
|
pg = GNUNET_new (struct PostgresClosure);
|
2020-02-09 15:53:28 +01:00
|
|
|
pg->cfg = cfg;
|
2020-01-20 11:15:19 +01:00
|
|
|
pg->main_self = pthread_self (); /* loaded while single-threaded! */
|
2020-01-17 03:08:30 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_filename (cfg,
|
|
|
|
"exchangedb-postgres",
|
|
|
|
"SQL_DIR",
|
|
|
|
&pg->sql_dir))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"exchangedb-postgres",
|
|
|
|
"CONFIG");
|
|
|
|
GNUNET_free (pg);
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-03-20 23:51:28 +01:00
|
|
|
if (0 != pthread_key_create (&pg->db_conn_threadlocal,
|
|
|
|
&db_conn_destroy))
|
|
|
|
{
|
2020-03-31 20:57:11 +02:00
|
|
|
TALER_LOG_ERROR ("Cannot create pthread key.\n");
|
2020-01-17 03:08:30 +01:00
|
|
|
GNUNET_free (pg->sql_dir);
|
2016-01-24 16:34:03 +01:00
|
|
|
GNUNET_free (pg);
|
2015-03-20 23:51:28 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2019-07-24 12:19:36 +02:00
|
|
|
if ( (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_time (cfg,
|
|
|
|
"exchangedb",
|
|
|
|
"IDLE_RESERVE_EXPIRATION_TIME",
|
2019-08-25 16:18:24 +02:00
|
|
|
&pg->idle_reserve_expiration_time))
|
|
|
|
||
|
2019-07-24 12:19:36 +02:00
|
|
|
(GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_time (cfg,
|
|
|
|
"exchangedb",
|
|
|
|
"LEGAL_RESERVE_EXPIRATION_TIME",
|
|
|
|
&pg->legal_reserve_expiration_time)) )
|
2017-04-20 21:38:02 +02:00
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"exchangedb",
|
2019-07-24 12:19:36 +02:00
|
|
|
"LEGAL/IDLE_RESERVE_EXPIRATION_TIME");
|
2020-01-17 03:08:30 +01:00
|
|
|
GNUNET_free (pg->sql_dir);
|
2017-04-20 21:38:02 +02:00
|
|
|
GNUNET_free (pg);
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-08-17 21:35:21 +02:00
|
|
|
if (GNUNET_OK !=
|
2020-03-15 20:08:38 +01:00
|
|
|
TALER_config_get_currency (cfg,
|
|
|
|
&pg->currency))
|
2019-08-17 21:35:21 +02:00
|
|
|
{
|
2020-01-17 03:08:30 +01:00
|
|
|
GNUNET_free (pg->sql_dir);
|
2019-08-17 21:35:21 +02:00
|
|
|
GNUNET_free (pg);
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-03-01 15:35:04 +01:00
|
|
|
plugin = GNUNET_new (struct TALER_EXCHANGEDB_Plugin);
|
2015-03-20 23:51:28 +01:00
|
|
|
plugin->cls = pg;
|
2015-03-22 12:49:48 +01:00
|
|
|
plugin->get_session = &postgres_get_session;
|
2016-05-02 06:36:58 +02:00
|
|
|
plugin->drop_tables = &postgres_drop_tables;
|
2015-03-22 12:49:48 +01:00
|
|
|
plugin->create_tables = &postgres_create_tables;
|
|
|
|
plugin->start = &postgres_start;
|
|
|
|
plugin->commit = &postgres_commit;
|
2018-03-12 11:33:10 +01:00
|
|
|
plugin->preflight = &postgres_preflight;
|
2015-03-22 12:49:48 +01:00
|
|
|
plugin->rollback = &postgres_rollback;
|
2015-06-12 10:28:17 +02:00
|
|
|
plugin->insert_denomination_info = &postgres_insert_denomination_info;
|
|
|
|
plugin->get_denomination_info = &postgres_get_denomination_info;
|
2019-02-14 13:41:46 +01:00
|
|
|
plugin->iterate_denomination_info = &postgres_iterate_denomination_info;
|
2020-03-05 23:02:38 +01:00
|
|
|
plugin->reserves_get = &postgres_reserves_get;
|
2015-03-22 12:49:48 +01:00
|
|
|
plugin->reserves_in_insert = &postgres_reserves_in_insert;
|
2019-08-25 16:18:24 +02:00
|
|
|
plugin->get_latest_reserve_in_reference =
|
|
|
|
&postgres_get_latest_reserve_in_reference;
|
2015-06-11 12:30:14 +02:00
|
|
|
plugin->get_withdraw_info = &postgres_get_withdraw_info;
|
|
|
|
plugin->insert_withdraw_info = &postgres_insert_withdraw_info;
|
2015-03-22 12:49:48 +01:00
|
|
|
plugin->get_reserve_history = &postgres_get_reserve_history;
|
2015-03-22 13:02:11 +01:00
|
|
|
plugin->free_reserve_history = &common_free_reserve_history;
|
2018-10-28 11:38:45 +01:00
|
|
|
plugin->count_known_coins = &postgres_count_known_coins;
|
2018-08-19 16:01:57 +02:00
|
|
|
plugin->ensure_coin_known = &postgres_ensure_coin_known;
|
2019-06-26 21:34:52 +02:00
|
|
|
plugin->get_known_coin = &postgres_get_known_coin;
|
2020-01-17 12:52:24 +01:00
|
|
|
plugin->get_coin_denomination = &postgres_get_coin_denomination;
|
2015-03-22 12:49:48 +01:00
|
|
|
plugin->have_deposit = &postgres_have_deposit;
|
2016-01-27 16:42:24 +01:00
|
|
|
plugin->mark_deposit_tiny = &postgres_mark_deposit_tiny;
|
2016-05-05 22:57:55 +02:00
|
|
|
plugin->test_deposit_done = &postgres_test_deposit_done;
|
2016-01-27 16:42:24 +01:00
|
|
|
plugin->mark_deposit_done = &postgres_mark_deposit_done;
|
|
|
|
plugin->get_ready_deposit = &postgres_get_ready_deposit;
|
|
|
|
plugin->iterate_matching_deposits = &postgres_iterate_matching_deposits;
|
2015-03-22 12:49:48 +01:00
|
|
|
plugin->insert_deposit = &postgres_insert_deposit;
|
2016-05-05 22:57:55 +02:00
|
|
|
plugin->insert_refund = &postgres_insert_refund;
|
2018-01-02 14:43:15 +01:00
|
|
|
plugin->select_refunds_by_coin = &postgres_select_refunds_by_coin;
|
2017-11-27 23:42:17 +01:00
|
|
|
plugin->insert_melt = &postgres_insert_melt;
|
|
|
|
plugin->get_melt = &postgres_get_melt;
|
2018-10-19 11:01:40 +02:00
|
|
|
plugin->get_melt_index = &postgres_get_melt_index;
|
2017-11-27 23:42:17 +01:00
|
|
|
plugin->insert_refresh_reveal = &postgres_insert_refresh_reveal;
|
|
|
|
plugin->get_refresh_reveal = &postgres_get_refresh_reveal;
|
|
|
|
plugin->get_link_data = &postgres_get_link_data;
|
2015-03-22 12:49:48 +01:00
|
|
|
plugin->get_coin_transactions = &postgres_get_coin_transactions;
|
2015-03-22 13:02:11 +01:00
|
|
|
plugin->free_coin_transaction_list = &common_free_coin_transaction_list;
|
2016-01-21 12:09:17 +01:00
|
|
|
plugin->lookup_wire_transfer = &postgres_lookup_wire_transfer;
|
2020-03-05 23:49:47 +01:00
|
|
|
plugin->lookup_transfer_by_deposit = &postgres_lookup_transfer_by_deposit;
|
2016-01-21 08:44:45 +01:00
|
|
|
plugin->insert_aggregation_tracking = &postgres_insert_aggregation_tracking;
|
2017-03-04 16:49:33 +01:00
|
|
|
plugin->insert_wire_fee = &postgres_insert_wire_fee;
|
|
|
|
plugin->get_wire_fee = &postgres_get_wire_fee;
|
2017-04-20 21:38:02 +02:00
|
|
|
plugin->get_expired_reserves = &postgres_get_expired_reserves;
|
2017-04-19 18:44:14 +02:00
|
|
|
plugin->insert_reserve_closed = &postgres_insert_reserve_closed;
|
2016-01-27 16:46:51 +01:00
|
|
|
plugin->wire_prepare_data_insert = &postgres_wire_prepare_data_insert;
|
2019-08-25 16:18:24 +02:00
|
|
|
plugin->wire_prepare_data_mark_finished =
|
|
|
|
&postgres_wire_prepare_data_mark_finished;
|
2016-01-27 18:28:52 +01:00
|
|
|
plugin->wire_prepare_data_get = &postgres_wire_prepare_data_get;
|
2017-03-18 03:44:59 +01:00
|
|
|
plugin->start_deferred_wire_out = &postgres_start_deferred_wire_out;
|
2017-03-18 02:40:27 +01:00
|
|
|
plugin->store_wire_transfer_out = &postgres_store_wire_transfer_out;
|
2016-05-31 09:13:03 +02:00
|
|
|
plugin->gc = &postgres_gc;
|
2018-04-02 21:12:18 +02:00
|
|
|
plugin->select_deposits_above_serial_id
|
|
|
|
= &postgres_select_deposits_above_serial_id;
|
2020-03-05 23:02:38 +01:00
|
|
|
plugin->select_refreshes_above_serial_id
|
|
|
|
= &postgres_select_refreshes_above_serial_id;
|
2018-04-02 21:12:18 +02:00
|
|
|
plugin->select_refunds_above_serial_id
|
|
|
|
= &postgres_select_refunds_above_serial_id;
|
|
|
|
plugin->select_reserves_in_above_serial_id
|
|
|
|
= &postgres_select_reserves_in_above_serial_id;
|
|
|
|
plugin->select_reserves_in_above_serial_id_by_account
|
|
|
|
= &postgres_select_reserves_in_above_serial_id_by_account;
|
2020-03-05 23:02:38 +01:00
|
|
|
plugin->select_withdrawals_above_serial_id
|
|
|
|
= &postgres_select_withdrawals_above_serial_id;
|
2018-04-02 21:12:18 +02:00
|
|
|
plugin->select_wire_out_above_serial_id
|
|
|
|
= &postgres_select_wire_out_above_serial_id;
|
|
|
|
plugin->select_wire_out_above_serial_id_by_account
|
|
|
|
= &postgres_select_wire_out_above_serial_id_by_account;
|
2020-01-18 23:49:37 +01:00
|
|
|
plugin->select_recoup_above_serial_id
|
|
|
|
= &postgres_select_recoup_above_serial_id;
|
|
|
|
plugin->select_recoup_refresh_above_serial_id
|
|
|
|
= &postgres_select_recoup_refresh_above_serial_id;
|
2018-04-02 21:12:18 +02:00
|
|
|
plugin->select_reserve_closed_above_serial_id
|
|
|
|
= &postgres_select_reserve_closed_above_serial_id;
|
2020-01-18 23:49:37 +01:00
|
|
|
plugin->insert_recoup_request
|
|
|
|
= &postgres_insert_recoup_request;
|
|
|
|
plugin->insert_recoup_refresh_request
|
|
|
|
= &postgres_insert_recoup_refresh_request;
|
2018-04-02 21:12:18 +02:00
|
|
|
plugin->get_reserve_by_h_blind
|
|
|
|
= &postgres_get_reserve_by_h_blind;
|
2019-07-23 20:27:41 +02:00
|
|
|
plugin->get_old_coin_by_h_blind
|
|
|
|
= &postgres_get_old_coin_by_h_blind;
|
2018-04-02 21:12:18 +02:00
|
|
|
plugin->insert_denomination_revocation
|
|
|
|
= &postgres_insert_denomination_revocation;
|
|
|
|
plugin->get_denomination_revocation
|
|
|
|
= &postgres_get_denomination_revocation;
|
|
|
|
plugin->select_deposits_missing_wire
|
|
|
|
= &postgres_select_deposits_missing_wire;
|
2018-07-06 15:24:03 +02:00
|
|
|
|
2015-03-20 23:51:28 +01:00
|
|
|
return plugin;
|
2015-01-28 22:47:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-20 23:51:28 +01:00
|
|
|
/**
|
|
|
|
* Shutdown Postgres database subsystem.
|
|
|
|
*
|
2016-03-01 15:35:04 +01:00
|
|
|
* @param cls a `struct TALER_EXCHANGEDB_Plugin`
|
2015-03-20 23:51:28 +01:00
|
|
|
* @return NULL (always)
|
|
|
|
*/
|
|
|
|
void *
|
2016-03-01 15:35:04 +01:00
|
|
|
libtaler_plugin_exchangedb_postgres_done (void *cls)
|
2015-03-20 23:51:28 +01:00
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Plugin *plugin = cls;
|
2015-03-20 23:51:28 +01:00
|
|
|
struct PostgresClosure *pg = plugin->cls;
|
|
|
|
|
2020-01-20 11:15:19 +01:00
|
|
|
/* If we launched a session for the main thread,
|
|
|
|
kill it here before we unload */
|
2020-01-20 12:10:44 +01:00
|
|
|
db_conn_destroy (pg->main_session);
|
2020-01-17 03:08:30 +01:00
|
|
|
GNUNET_free (pg->sql_dir);
|
2019-09-05 03:53:47 +02:00
|
|
|
GNUNET_free (pg->currency);
|
2015-03-20 23:51:28 +01:00
|
|
|
GNUNET_free (pg);
|
|
|
|
GNUNET_free (plugin);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-10-31 12:59:50 +01:00
|
|
|
|
2016-03-01 15:35:04 +01:00
|
|
|
/* end of plugin_exchangedb_postgres.c */
|