2015-01-08 18:37:20 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2016-01-21 08:44:45 +01:00
|
|
|
Copyright (C) 2014, 2015, 2016 GNUnet e.V.
|
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"
|
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
|
|
|
|
2015-06-03 11:31:51 +02:00
|
|
|
/**
|
|
|
|
* Log a query error.
|
|
|
|
*
|
|
|
|
* @param result PQ result object of the query that failed
|
|
|
|
*/
|
2015-03-05 17:55:19 +01:00
|
|
|
#define QUERY_ERR(result) \
|
2016-06-05 22:03:09 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Query failed at %s:%u: %s (%s)\n", __FILE__, __LINE__, PQresultErrorMessage (result), PQresStatus (PQresultStatus (result)))
|
2015-03-05 17:55:19 +01:00
|
|
|
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-06-03 11:31:51 +02:00
|
|
|
/**
|
|
|
|
* Log a really unexpected PQ error.
|
|
|
|
*
|
|
|
|
* @param result PQ result object of the PQ operation that failed
|
|
|
|
*/
|
2015-03-05 17:53:15 +01:00
|
|
|
#define BREAK_DB_ERR(result) do { \
|
2015-06-03 11:31:51 +02:00
|
|
|
GNUNET_break (0); \
|
2016-06-05 22:03:09 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Database failure: %s (%s)\n", PQresultErrorMessage (result), PQresStatus (PQresultStatus (result))); \
|
2015-01-08 18:37:20 +01:00
|
|
|
} while (0)
|
|
|
|
|
2015-06-03 11:31:51 +02:00
|
|
|
|
2015-01-08 18:37:20 +01:00
|
|
|
/**
|
2015-06-03 11:31:51 +02:00
|
|
|
* Shorthand for exit jumps. Logs the current line number
|
|
|
|
* and jumps to the "EXITIF_exit" label.
|
|
|
|
*
|
|
|
|
* @param cond condition that must be TRUE to exit with an error
|
2015-01-08 18:37:20 +01:00
|
|
|
*/
|
|
|
|
#define EXITIF(cond) \
|
|
|
|
do { \
|
|
|
|
if (cond) { GNUNET_break (0); goto EXITIF_exit; } \
|
|
|
|
} while (0)
|
|
|
|
|
2015-01-26 12:22:26 +01:00
|
|
|
|
2015-06-03 11:31:51 +02:00
|
|
|
/**
|
|
|
|
* Execute an SQL statement and log errors on failure. Must be
|
|
|
|
* run in a function that has an "SQLEXEC_fail" label to jump
|
|
|
|
* to in case the SQL statement failed.
|
|
|
|
*
|
|
|
|
* @param conn database connection
|
|
|
|
* @param sql SQL statement to run
|
|
|
|
*/
|
|
|
|
#define SQLEXEC_(conn, sql) \
|
2015-03-05 16:05:06 +01:00
|
|
|
do { \
|
2015-06-03 11:31:51 +02:00
|
|
|
PGresult *result = PQexec (conn, sql); \
|
2015-03-05 16:05:06 +01:00
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result)) \
|
|
|
|
{ \
|
2015-03-05 17:53:15 +01:00
|
|
|
BREAK_DB_ERR (result); \
|
2015-06-03 11:31:51 +02:00
|
|
|
PQclear (result); \
|
2015-03-05 16:05:06 +01:00
|
|
|
goto SQLEXEC_fail; \
|
|
|
|
} \
|
2015-06-03 11:31:51 +02:00
|
|
|
PQclear (result); \
|
2015-03-05 16:05:06 +01:00
|
|
|
} while (0)
|
|
|
|
|
2015-06-03 11:43:57 +02:00
|
|
|
|
2015-06-03 11:31:51 +02:00
|
|
|
/**
|
|
|
|
* Run an SQL statement, ignoring errors and clearing the result.
|
|
|
|
*
|
|
|
|
* @param conn database connection
|
|
|
|
* @param sql SQL statement to run
|
|
|
|
*/
|
|
|
|
#define SQLEXEC_IGNORE_ERROR_(conn, sql) \
|
2015-05-14 14:28:29 +02:00
|
|
|
do { \
|
2015-06-03 11:31:51 +02:00
|
|
|
PGresult *result = PQexec (conn, sql); \
|
|
|
|
PQclear (result); \
|
2015-05-14 14:28:29 +02:00
|
|
|
} while (0)
|
|
|
|
|
2015-03-20 23:51:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle for a database session (per-thread, for transactions).
|
|
|
|
*/
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session
|
2015-03-20 23:51:28 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Postgres connection handle.
|
|
|
|
*/
|
|
|
|
PGconn *conn;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Type of the "cls" argument given to each of the functions in
|
|
|
|
* our API.
|
|
|
|
*/
|
|
|
|
struct PostgresClosure
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Thread-local database connection.
|
2015-06-03 11:43:57 +02:00
|
|
|
* Contains a pointer to `PGconn` or NULL.
|
2015-03-20 23:51:28 +01:00
|
|
|
*/
|
|
|
|
pthread_key_t db_conn_threadlocal;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Database connection string, as read from
|
|
|
|
* the configuration.
|
|
|
|
*/
|
2015-03-27 19:58:40 +01:00
|
|
|
char *connection_cfg_str;
|
2015-03-20 23:51:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-08-09 18:18:13 +02:00
|
|
|
/**
|
|
|
|
* Function called by libpq whenever it wants to log something.
|
|
|
|
* We already log whenever we care, so this function does nothing
|
|
|
|
* and merely exists to silence the libpq logging.
|
|
|
|
*
|
|
|
|
* @param arg NULL
|
|
|
|
* @param res information about some libpq event
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
pq_notice_receiver_cb (void *arg,
|
|
|
|
const PGresult *res)
|
|
|
|
{
|
|
|
|
/* do nothing, intentionally */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function called by libpq whenever it wants to log something.
|
|
|
|
* We log those using the Taler logger.
|
|
|
|
*
|
|
|
|
* @param arg NULL
|
|
|
|
* @param message information about some libpq event
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
pq_notice_processor_cb (void *arg,
|
|
|
|
const char *message)
|
|
|
|
{
|
|
|
|
GNUNET_log_from (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"pq",
|
|
|
|
"%s",
|
|
|
|
message);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-18 17:19:32 +02:00
|
|
|
/**
|
2016-05-31 09:34:45 +02:00
|
|
|
* Establish connection to the Postgres database
|
|
|
|
* and initialize callbacks for logging.
|
2016-05-18 17:19:32 +02:00
|
|
|
*
|
2016-05-31 09:34:45 +02:00
|
|
|
* @param pc configuration to use
|
|
|
|
* @return NULL on error
|
2016-05-18 17:19:32 +02:00
|
|
|
*/
|
2016-05-31 09:34:45 +02:00
|
|
|
static PGconn *
|
|
|
|
connect_to_postgres (struct PostgresClosure *pc)
|
2016-05-18 17:19:32 +02:00
|
|
|
{
|
|
|
|
PGconn *conn;
|
|
|
|
|
|
|
|
conn = PQconnectdb (pc->connection_cfg_str);
|
|
|
|
if (CONNECTION_OK !=
|
|
|
|
PQstatus (conn))
|
|
|
|
{
|
2016-11-21 17:53:07 +01:00
|
|
|
TALER_LOG_ERROR ("Database connection to '%s' failed: %s\n",
|
|
|
|
pc->connection_cfg_str,
|
2016-05-18 17:19:32 +02:00
|
|
|
PQerrorMessage (conn));
|
2016-05-31 09:34:45 +02:00
|
|
|
return NULL;
|
2016-05-18 17:19:32 +02:00
|
|
|
}
|
|
|
|
PQsetNoticeReceiver (conn,
|
|
|
|
&pq_notice_receiver_cb,
|
|
|
|
NULL);
|
|
|
|
PQsetNoticeProcessor (conn,
|
|
|
|
&pq_notice_processor_cb,
|
|
|
|
NULL);
|
2016-05-31 09:34:45 +02:00
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
PGconn *conn;
|
|
|
|
|
|
|
|
conn = connect_to_postgres (pc);
|
|
|
|
if (NULL == conn)
|
|
|
|
return GNUNET_SYSERR;
|
2016-05-18 17:19:32 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
|
|
|
"Dropping ALL tables\n");
|
|
|
|
SQLEXEC_ (conn,
|
|
|
|
"DROP TABLE IF EXISTS prewire;");
|
|
|
|
SQLEXEC_ (conn,
|
|
|
|
"DROP TABLE IF EXISTS aggregation_tracking;");
|
2017-03-04 16:49:33 +01:00
|
|
|
SQLEXEC_ (conn,
|
|
|
|
"DROP TABLE IF EXISTS wire_fee;");
|
2016-05-18 17:19:32 +02:00
|
|
|
SQLEXEC_ (conn,
|
|
|
|
"DROP TABLE IF EXISTS deposits;");
|
|
|
|
SQLEXEC_ (conn,
|
|
|
|
"DROP TABLE IF EXISTS refresh_out;");
|
|
|
|
SQLEXEC_ (conn,
|
|
|
|
"DROP TABLE IF EXISTS refresh_commit_coin;");
|
|
|
|
SQLEXEC_ (conn,
|
2016-08-05 16:08:19 +02:00
|
|
|
"DROP TABLE IF EXISTS refresh_transfer_public_key;");
|
2016-05-18 17:19:32 +02:00
|
|
|
SQLEXEC_ (conn,
|
|
|
|
"DROP TABLE IF EXISTS refunds;");
|
|
|
|
SQLEXEC_ (conn,
|
|
|
|
"DROP TABLE IF EXISTS refresh_order;");
|
|
|
|
SQLEXEC_ (conn,
|
|
|
|
"DROP TABLE IF EXISTS refresh_sessions CASCADE;");
|
|
|
|
SQLEXEC_ (conn,
|
|
|
|
"DROP TABLE IF EXISTS known_coins CASCADE;");
|
|
|
|
SQLEXEC_ (conn,
|
|
|
|
"DROP TABLE IF EXISTS reserves_out;");
|
|
|
|
SQLEXEC_ (conn,
|
|
|
|
"DROP TABLE IF EXISTS reserves_in;");
|
|
|
|
SQLEXEC_ (conn,
|
|
|
|
"DROP TABLE IF EXISTS reserves;");
|
|
|
|
SQLEXEC_ (conn,
|
|
|
|
"DROP TABLE IF EXISTS denominations CASCADE;");
|
2016-05-31 09:34:45 +02:00
|
|
|
PQfinish (conn);
|
2016-05-18 17:19:32 +02:00
|
|
|
return GNUNET_OK;
|
|
|
|
SQLEXEC_fail:
|
2016-05-31 09:34:45 +02:00
|
|
|
PQfinish (conn);
|
2016-05-18 17:19:32 +02:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
2015-03-05 16:05:06 +01:00
|
|
|
PGconn *conn;
|
|
|
|
|
2016-05-31 09:34:45 +02:00
|
|
|
conn = connect_to_postgres (pc);
|
|
|
|
if (NULL == conn)
|
2015-03-05 16:05:06 +01:00
|
|
|
return GNUNET_SYSERR;
|
2015-06-03 11:31:51 +02:00
|
|
|
#define SQLEXEC(sql) SQLEXEC_(conn, sql);
|
|
|
|
#define SQLEXEC_INDEX(sql) SQLEXEC_IGNORE_ERROR_(conn, sql);
|
2015-04-12 16:38:03 +02:00
|
|
|
/* Denomination table for holding the publicly available information of
|
2016-05-27 11:55:07 +02:00
|
|
|
denominations keys. The denominations are to be referred to using
|
|
|
|
foreign keys. */
|
2015-04-12 16:38:03 +02:00
|
|
|
SQLEXEC ("CREATE TABLE IF NOT EXISTS denominations"
|
2016-05-27 14:04:29 +02:00
|
|
|
"(denom_pub BYTEA PRIMARY KEY"
|
2015-06-11 14:58:23 +02:00
|
|
|
",master_pub BYTEA NOT NULL CHECK (LENGTH(master_pub)=32)"
|
|
|
|
",master_sig BYTEA NOT NULL CHECK (LENGTH(master_sig)=64)"
|
2015-04-12 16:38:03 +02:00
|
|
|
",valid_from INT8 NOT NULL"
|
|
|
|
",expire_withdraw INT8 NOT NULL"
|
2016-05-02 05:10:40 +02:00
|
|
|
",expire_deposit INT8 NOT NULL"
|
2015-04-12 16:38:03 +02:00
|
|
|
",expire_legal INT8 NOT NULL"
|
2015-05-06 11:47:12 +02:00
|
|
|
",coin_val INT8 NOT NULL" /* value of this denom */
|
|
|
|
",coin_frac INT4 NOT NULL" /* fractional value of this denom */
|
|
|
|
",coin_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL" /* assuming same currency for fees */
|
|
|
|
",fee_withdraw_val INT8 NOT NULL"
|
|
|
|
",fee_withdraw_frac INT4 NOT NULL"
|
|
|
|
",fee_withdraw_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL"
|
2015-05-25 22:47:00 +02:00
|
|
|
",fee_deposit_val INT8 NOT NULL"
|
|
|
|
",fee_deposit_frac INT4 NOT NULL"
|
|
|
|
",fee_deposit_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL"
|
2015-05-06 11:47:12 +02:00
|
|
|
",fee_refresh_val INT8 NOT NULL"
|
|
|
|
",fee_refresh_frac INT4 NOT NULL"
|
|
|
|
",fee_refresh_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL"
|
2016-04-20 01:50:26 +02:00
|
|
|
",fee_refund_val INT8 NOT NULL"
|
|
|
|
",fee_refund_frac INT4 NOT NULL"
|
|
|
|
",fee_refund_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL"
|
2015-04-12 16:38:03 +02:00
|
|
|
")");
|
2015-03-05 16:05:06 +01:00
|
|
|
/* reserves table is for summarization of a reserve. It is updated when new
|
2015-06-03 12:21:50 +02:00
|
|
|
funds are added and existing funds are withdrawn. The 'expiration_date'
|
|
|
|
can be used to eventually get rid of reserves that have not been used
|
|
|
|
for a very long time (either by refunding the owner or by greedily
|
2016-03-01 15:35:04 +01:00
|
|
|
grabbing the money, depending on the Exchange's terms of service) */
|
2015-03-05 16:05:06 +01:00
|
|
|
SQLEXEC ("CREATE TABLE IF NOT EXISTS reserves"
|
2016-05-24 20:32:05 +02:00
|
|
|
"(reserve_pub BYTEA PRIMARY KEY CHECK(LENGTH(reserve_pub)=32)"
|
2015-05-06 11:47:12 +02:00
|
|
|
",current_balance_val INT8 NOT NULL"
|
|
|
|
",current_balance_frac INT4 NOT NULL"
|
|
|
|
",current_balance_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL"
|
2015-03-05 16:05:06 +01:00
|
|
|
",expiration_date INT8 NOT NULL"
|
|
|
|
")");
|
2015-07-31 15:49:40 +02:00
|
|
|
/* index on reserves table */
|
|
|
|
SQLEXEC_INDEX ("CREATE INDEX reserves_reserve_pub_index ON "
|
|
|
|
"reserves (reserve_pub)");
|
2016-05-31 09:13:03 +02:00
|
|
|
SQLEXEC_INDEX ("CREATE INDEX reserves_expiration_index"
|
|
|
|
" ON reserves (expiration_date);");
|
2015-06-11 13:14:59 +02:00
|
|
|
/* reserves_in table collects the transactions which transfer funds
|
|
|
|
into the reserve. The rows of this table correspond to each
|
|
|
|
incoming transaction. */
|
2015-03-05 16:05:06 +01:00
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS reserves_in"
|
2016-10-06 16:33:07 +02:00
|
|
|
"(reserve_in_serial_id BIGSERIAL"
|
2016-10-06 16:30:19 +02:00
|
|
|
",reserve_pub BYTEA NOT NULL REFERENCES reserves (reserve_pub) ON DELETE CASCADE"
|
2016-05-27 15:34:24 +02:00
|
|
|
",credit_val INT8 NOT NULL"
|
|
|
|
",credit_frac INT4 NOT NULL"
|
|
|
|
",credit_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL"
|
2016-05-26 16:38:59 +02:00
|
|
|
",sender_account_details TEXT NOT NULL "
|
|
|
|
",transfer_details TEXT NOT NULL "
|
2015-06-11 13:14:59 +02:00
|
|
|
",execution_date INT8 NOT NULL"
|
2016-05-31 09:13:03 +02:00
|
|
|
",PRIMARY KEY (reserve_pub, transfer_details)"
|
2015-03-05 16:05:06 +01:00
|
|
|
");");
|
2015-05-13 15:57:35 +02:00
|
|
|
/* Create indices on reserves_in */
|
2016-05-31 09:13:03 +02:00
|
|
|
SQLEXEC_INDEX ("CREATE INDEX reserves_in_execution_index"
|
2015-06-11 13:14:59 +02:00
|
|
|
" ON reserves_in (execution_date);");
|
2015-05-07 13:29:11 +02:00
|
|
|
/* Table with the withdraw operations that have been performed on a reserve.
|
2015-06-05 15:04:21 +02:00
|
|
|
The 'h_blind_ev' is the hash of the blinded coin. It serves as a primary
|
|
|
|
key, as (broken) clients that use a non-random coin and blinding factor
|
|
|
|
should fail to even withdraw, as otherwise the coins will fail to deposit
|
|
|
|
(as they really must be unique). */
|
2015-06-11 13:02:57 +02:00
|
|
|
SQLEXEC ("CREATE TABLE IF NOT EXISTS reserves_out"
|
2016-10-06 16:33:07 +02:00
|
|
|
"(reserve_out_serial_id BIGSERIAL"
|
2016-10-06 16:30:19 +02:00
|
|
|
",h_blind_ev BYTEA PRIMARY KEY"
|
2016-05-27 14:04:29 +02:00
|
|
|
",denom_pub BYTEA NOT NULL REFERENCES denominations (denom_pub) ON DELETE CASCADE"
|
2015-03-09 15:35:35 +01:00
|
|
|
",denom_sig BYTEA NOT NULL"
|
2016-05-27 11:55:07 +02:00
|
|
|
",reserve_pub BYTEA NOT NULL REFERENCES reserves (reserve_pub) ON DELETE CASCADE"
|
2015-05-07 13:29:11 +02:00
|
|
|
",reserve_sig BYTEA NOT NULL CHECK (LENGTH(reserve_sig)=64)"
|
2015-06-11 13:02:57 +02:00
|
|
|
",execution_date INT8 NOT NULL"
|
|
|
|
",amount_with_fee_val INT8 NOT NULL"
|
|
|
|
",amount_with_fee_frac INT4 NOT NULL"
|
|
|
|
",amount_with_fee_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL"
|
2015-03-06 17:56:23 +01:00
|
|
|
");");
|
2015-06-11 13:02:57 +02:00
|
|
|
/* Index blindcoins(reserve_pub) for get_reserves_out statement */
|
2015-06-11 12:30:14 +02:00
|
|
|
SQLEXEC_INDEX ("CREATE INDEX reserves_out_reserve_pub_index ON"
|
2015-07-31 16:34:46 +02:00
|
|
|
" reserves_out (reserve_pub)");
|
2016-05-31 09:13:03 +02:00
|
|
|
SQLEXEC_INDEX ("CREATE INDEX reserves_out_execution_date ON "
|
|
|
|
"reserves_out (execution_date)");
|
2015-06-03 13:53:38 +02:00
|
|
|
/* Table with coins that have been (partially) spent, used to track
|
2015-11-24 14:42:31 +01:00
|
|
|
coin information only once. */
|
2015-03-05 16:05:06 +01:00
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS known_coins "
|
2016-05-24 20:32:05 +02:00
|
|
|
"(coin_pub BYTEA NOT NULL PRIMARY KEY CHECK (LENGTH(coin_pub)=32)"
|
2016-05-27 14:04:29 +02:00
|
|
|
",denom_pub BYTEA NOT NULL REFERENCES denominations (denom_pub) ON DELETE CASCADE"
|
2015-03-05 16:05:06 +01:00
|
|
|
",denom_sig BYTEA NOT NULL"
|
|
|
|
")");
|
2015-04-09 23:21:35 +02:00
|
|
|
/**
|
|
|
|
* The DB will show negative values for some values of the following fields as
|
|
|
|
* we use them as 16 bit unsigned integers
|
|
|
|
* @a num_newcoins
|
2016-05-16 11:55:47 +02:00
|
|
|
* @a noreveal_index
|
2015-05-07 13:29:11 +02:00
|
|
|
* Do not do arithmetic in SQL on these fields.
|
2015-06-03 13:50:10 +02:00
|
|
|
* NOTE: maybe we should instead forbid values >= 2^15 categorically?
|
2015-04-09 23:21:35 +02:00
|
|
|
*/
|
2015-03-05 16:05:06 +01:00
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS refresh_sessions "
|
2016-10-06 16:33:07 +02:00
|
|
|
"(melt_serial_id BIGSERIAL"
|
2016-10-06 16:30:19 +02:00
|
|
|
",session_hash BYTEA PRIMARY KEY CHECK (LENGTH(session_hash)=64)"
|
2016-05-27 11:55:07 +02:00
|
|
|
",old_coin_pub BYTEA NOT NULL REFERENCES known_coins (coin_pub) ON DELETE CASCADE"
|
2016-05-16 11:55:47 +02:00
|
|
|
",old_coin_sig BYTEA NOT NULL CHECK(LENGTH(old_coin_sig)=64)"
|
2015-06-03 16:29:30 +02:00
|
|
|
",amount_with_fee_val INT8 NOT NULL"
|
2015-08-12 10:07:57 +02:00
|
|
|
",amount_with_fee_frac INT4 NOT NULL"
|
2015-06-03 16:29:30 +02:00
|
|
|
",amount_with_fee_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL"
|
2016-05-16 11:55:47 +02:00
|
|
|
",num_newcoins INT2 NOT NULL"
|
|
|
|
",noreveal_index INT2 NOT NULL"
|
|
|
|
")");
|
2016-05-06 12:55:44 +02:00
|
|
|
|
2015-06-03 14:32:22 +02:00
|
|
|
/* Table with information about the desired denominations to be created
|
|
|
|
during a refresh operation; contains the denomination key for each
|
|
|
|
of the coins (for a given refresh session) */
|
2015-03-05 16:05:06 +01:00
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS refresh_order "
|
2016-05-27 11:55:07 +02:00
|
|
|
"(session_hash BYTEA NOT NULL REFERENCES refresh_sessions (session_hash) ON DELETE CASCADE"
|
2015-03-05 16:05:06 +01:00
|
|
|
",newcoin_index INT2 NOT NULL "
|
2016-05-27 14:04:29 +02:00
|
|
|
",denom_pub BYTEA NOT NULL REFERENCES denominations (denom_pub) ON DELETE CASCADE"
|
2015-03-24 16:56:06 +01:00
|
|
|
",PRIMARY KEY (session_hash, newcoin_index)"
|
2015-06-03 12:21:50 +02:00
|
|
|
")");
|
2015-06-03 14:32:22 +02:00
|
|
|
|
|
|
|
/* Table with the commitments for a refresh operation; includes
|
|
|
|
the session_hash for which this is the link information, the
|
|
|
|
oldcoin index and the cut-and-choose index (from 0 to #TALER_CNC_KAPPA-1),
|
|
|
|
as well as the actual link data (the transfer public key and the encrypted
|
2016-05-16 11:55:47 +02:00
|
|
|
link secret) */
|
2016-08-05 16:08:19 +02:00
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS refresh_transfer_public_key "
|
2016-08-11 23:28:33 +02:00
|
|
|
"(session_hash BYTEA NOT NULL PRIMARY KEY REFERENCES refresh_sessions (session_hash) ON DELETE CASCADE"
|
2015-05-07 13:29:11 +02:00
|
|
|
",transfer_pub BYTEA NOT NULL CHECK(LENGTH(transfer_pub)=32)"
|
2015-03-05 16:05:06 +01:00
|
|
|
")");
|
2016-05-27 15:34:24 +02:00
|
|
|
|
2015-06-03 14:32:22 +02:00
|
|
|
/* Table with the commitments for the new coins that are to be created
|
|
|
|
during a melting session. Includes the session, the cut-and-choose
|
|
|
|
index and the index of the new coin, and the envelope of the new
|
|
|
|
coin to be signed, as well as the encrypted information about the
|
|
|
|
private key and the blinding factor for the coin (for verification
|
2016-08-11 23:28:33 +02:00
|
|
|
in case this newcoin_index is chosen to be revealed) */
|
2015-06-03 14:39:45 +02:00
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS refresh_commit_coin "
|
2016-05-27 11:55:07 +02:00
|
|
|
"(session_hash BYTEA NOT NULL REFERENCES refresh_sessions (session_hash) ON DELETE CASCADE"
|
2015-06-03 16:29:30 +02:00
|
|
|
",newcoin_index INT2 NOT NULL"
|
2015-03-05 16:05:06 +01:00
|
|
|
",coin_ev BYTEA NOT NULL"
|
2016-08-11 23:28:33 +02:00
|
|
|
",UNIQUE (session_hash, newcoin_index)"
|
2015-03-05 16:05:06 +01:00
|
|
|
")");
|
2016-05-27 15:34:24 +02:00
|
|
|
SQLEXEC_INDEX("CREATE INDEX refresh_commit_coin_session_hash_index "
|
2016-08-11 23:28:33 +02:00
|
|
|
"ON refresh_commit_coin(session_hash, newcoin_index)");
|
2016-05-27 15:34:24 +02:00
|
|
|
|
|
|
|
|
2015-06-03 14:39:45 +02:00
|
|
|
/* Table with the signatures over coins generated during a refresh
|
|
|
|
operation. Needed to answer /refresh/link queries later. Stores
|
2015-06-11 12:30:14 +02:00
|
|
|
the coin signatures under the respective session hash and index. */
|
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS refresh_out "
|
2016-05-27 11:55:07 +02:00
|
|
|
"(session_hash BYTEA NOT NULL REFERENCES refresh_sessions (session_hash) ON DELETE CASCADE"
|
2015-03-05 16:05:06 +01:00
|
|
|
",newcoin_index INT2 NOT NULL"
|
2015-06-03 16:53:20 +02:00
|
|
|
",ev_sig BYTEA NOT NULL"
|
2016-05-31 09:13:03 +02:00
|
|
|
",UNIQUE (session_hash, newcoin_index)"
|
2015-03-05 16:05:06 +01:00
|
|
|
")");
|
2016-05-27 15:34:24 +02:00
|
|
|
SQLEXEC_INDEX("CREATE INDEX refresh_out_session_hash_index "
|
2016-05-31 09:13:03 +02:00
|
|
|
"ON refresh_out(session_hash, newcoin_index)");
|
2016-05-27 15:34:24 +02:00
|
|
|
|
2016-03-01 15:35:04 +01:00
|
|
|
/* This table contains the wire transfers the exchange is supposed to
|
2015-09-19 20:02:21 +02:00
|
|
|
execute to transmit funds to the merchants (and manage refunds). */
|
2015-03-05 16:05:06 +01:00
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS deposits "
|
2016-05-27 15:34:24 +02:00
|
|
|
"(deposit_serial_id BIGSERIAL PRIMARY KEY"
|
2016-05-27 11:55:07 +02:00
|
|
|
",coin_pub BYTEA NOT NULL REFERENCES known_coins (coin_pub) ON DELETE CASCADE"
|
2015-06-03 16:47:17 +02:00
|
|
|
",amount_with_fee_val INT8 NOT NULL"
|
|
|
|
",amount_with_fee_frac INT4 NOT NULL"
|
|
|
|
",amount_with_fee_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL"
|
2015-06-11 14:25:42 +02:00
|
|
|
",timestamp INT8 NOT NULL"
|
|
|
|
",refund_deadline INT8 NOT NULL"
|
2015-10-28 21:06:23 +01:00
|
|
|
",wire_deadline INT8 NOT NULL"
|
2015-05-07 13:29:11 +02:00
|
|
|
",merchant_pub BYTEA NOT NULL CHECK (LENGTH(merchant_pub)=32)"
|
2017-02-06 15:41:39 +01:00
|
|
|
",h_proposal_data BYTEA NOT NULL CHECK (LENGTH(h_proposal_data)=64)"
|
2015-05-07 13:29:11 +02:00
|
|
|
",h_wire BYTEA NOT NULL CHECK (LENGTH(h_wire)=64)"
|
|
|
|
",coin_sig BYTEA NOT NULL CHECK (LENGTH(coin_sig)=64)"
|
2015-03-05 16:05:06 +01:00
|
|
|
",wire TEXT NOT NULL"
|
2016-01-27 16:42:24 +01:00
|
|
|
",tiny BOOLEAN NOT NULL DEFAULT false"
|
|
|
|
",done BOOLEAN NOT NULL DEFAULT false"
|
2017-02-07 15:09:10 +01:00
|
|
|
",UNIQUE (coin_pub, h_proposal_data, merchant_pub)"
|
2015-03-05 16:05:06 +01:00
|
|
|
")");
|
2017-02-07 15:09:10 +01:00
|
|
|
/* Index for get_deposit statement on coin_pub, h_proposal_data and merchant_pub */
|
2015-07-31 15:06:07 +02:00
|
|
|
SQLEXEC_INDEX("CREATE INDEX deposits_coin_pub_index "
|
2017-02-07 15:09:10 +01:00
|
|
|
"ON deposits(coin_pub, h_proposal_data, merchant_pub)");
|
2016-05-27 15:34:24 +02:00
|
|
|
|
|
|
|
/* Table with information about coins that have been refunded. (Technically
|
|
|
|
one of the deposit operations that a coin was involved with is refunded.)*/
|
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS refunds "
|
2016-10-06 16:33:07 +02:00
|
|
|
"(refund_serial_id BIGSERIAL"
|
2016-10-06 16:30:19 +02:00
|
|
|
",coin_pub BYTEA NOT NULL REFERENCES known_coins (coin_pub) ON DELETE CASCADE"
|
2016-05-27 15:34:24 +02:00
|
|
|
",merchant_pub BYTEA NOT NULL CHECK(LENGTH(merchant_pub)=32)"
|
|
|
|
",merchant_sig BYTEA NOT NULL CHECK(LENGTH(merchant_sig)=64)"
|
2017-02-06 15:41:39 +01:00
|
|
|
",h_proposal_data BYTEA NOT NULL CHECK(LENGTH(h_proposal_data)=64)"
|
2016-05-27 15:34:24 +02:00
|
|
|
",rtransaction_id INT8 NOT NULL"
|
|
|
|
",amount_with_fee_val INT8 NOT NULL"
|
|
|
|
",amount_with_fee_frac INT4 NOT NULL"
|
|
|
|
",amount_with_fee_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL"
|
2017-02-07 15:09:10 +01:00
|
|
|
",PRIMARY KEY (coin_pub, merchant_pub, h_proposal_data, rtransaction_id)" /* this combo must be unique, and we usually select by coin_pub */
|
2016-05-27 15:34:24 +02:00
|
|
|
") ");
|
|
|
|
|
2016-01-21 08:44:45 +01:00
|
|
|
/* Table for the tracking API, mapping from wire transfer identifiers
|
|
|
|
to transactions and back */
|
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS aggregation_tracking "
|
2016-05-31 09:13:03 +02:00
|
|
|
"(deposit_serial_id INT8 PRIMARY KEY REFERENCES deposits (deposit_serial_id) ON DELETE CASCADE"
|
2016-05-27 15:34:24 +02:00
|
|
|
",wtid_raw BYTEA NOT NULL CHECK (LENGTH(wtid_raw)=" TALER_WIRE_TRANSFER_IDENTIFIER_LEN_STR ")"
|
2016-01-21 08:44:45 +01:00
|
|
|
",execution_time INT8 NOT NULL"
|
|
|
|
")");
|
|
|
|
/* Index for lookup_transactions statement on wtid */
|
|
|
|
SQLEXEC_INDEX("CREATE INDEX aggregation_tracking_wtid_index "
|
|
|
|
"ON aggregation_tracking(wtid_raw)");
|
|
|
|
|
2017-03-04 16:49:33 +01:00
|
|
|
|
|
|
|
/* Table for the wire fees. */
|
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS wire_fee "
|
|
|
|
"(wire_method VARCHAR NOT NULL"
|
|
|
|
",start_date INT8 NOT NULL"
|
|
|
|
",end_date INT8 NOT NULL"
|
|
|
|
",wire_fee_val INT8 NOT NULL"
|
|
|
|
",wire_fee_frac INT4 NOT NULL"
|
|
|
|
",wire_fee_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL"
|
|
|
|
",master_sig BYTEA NOT NULL CHECK (LENGTH(master_sig)=64)"
|
|
|
|
",PRIMARY KEY (wire_method, start_date)" /* this combo must be unique */
|
|
|
|
")");
|
|
|
|
/* Index for lookup_transactions statement on wtid */
|
|
|
|
SQLEXEC_INDEX("CREATE INDEX aggregation_tracking_wtid_index "
|
|
|
|
"ON aggregation_tracking(wtid_raw)");
|
|
|
|
|
|
|
|
|
2016-01-27 17:09:08 +01:00
|
|
|
/* This table contains the pre-commit data for
|
2016-03-01 15:35:04 +01:00
|
|
|
wire transfers the exchange is about to execute. */
|
2016-01-27 17:09:08 +01:00
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS prewire "
|
2016-05-27 12:03:26 +02:00
|
|
|
"(prewire_uuid BIGSERIAL PRIMARY KEY"
|
2016-01-27 17:09:08 +01:00
|
|
|
",type TEXT NOT NULL"
|
|
|
|
",finished BOOLEAN NOT NULL DEFAULT false"
|
|
|
|
",buf BYTEA NOT NULL"
|
|
|
|
")");
|
|
|
|
/* Index for prepare_data_iterate statement */
|
|
|
|
SQLEXEC_INDEX("CREATE INDEX prepare_iteration_index "
|
|
|
|
"ON prewire(type,finished)");
|
|
|
|
|
2016-01-21 08:44:45 +01:00
|
|
|
|
2015-03-05 16:05:06 +01:00
|
|
|
#undef SQLEXEC
|
2015-06-03 11:43:57 +02:00
|
|
|
#undef SQLEXEC_INDEX
|
2015-03-21 14:21:00 +01:00
|
|
|
|
2015-03-05 16:05:06 +01:00
|
|
|
PQfinish (conn);
|
|
|
|
return GNUNET_OK;
|
|
|
|
|
|
|
|
SQLEXEC_fail:
|
|
|
|
PQfinish (conn);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-31 20:53:19 +01:00
|
|
|
/**
|
|
|
|
* Setup prepared statements.
|
|
|
|
*
|
|
|
|
* @param db_conn connection handle to initialize
|
|
|
|
* @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
|
|
|
postgres_prepare (PGconn *db_conn)
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
|
|
|
PGresult *result;
|
|
|
|
|
2015-03-05 17:05:51 +01:00
|
|
|
#define PREPARE(name, sql, ...) \
|
|
|
|
do { \
|
|
|
|
result = PQprepare (db_conn, name, sql, __VA_ARGS__); \
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result)) \
|
|
|
|
{ \
|
2015-03-05 17:53:15 +01:00
|
|
|
BREAK_DB_ERR (result); \
|
2015-03-05 17:05:51 +01:00
|
|
|
PQclear (result); result = NULL; \
|
|
|
|
return GNUNET_SYSERR; \
|
|
|
|
} \
|
|
|
|
PQclear (result); result = NULL; \
|
|
|
|
} while (0);
|
|
|
|
|
2015-06-12 10:28:17 +02:00
|
|
|
/* Used in #postgres_insert_denomination_info() */
|
|
|
|
PREPARE ("denomination_insert",
|
2015-06-03 14:32:22 +02:00
|
|
|
"INSERT INTO denominations "
|
2016-05-27 14:04:29 +02:00
|
|
|
"(denom_pub"
|
2015-06-11 14:58:23 +02:00
|
|
|
",master_pub"
|
|
|
|
",master_sig"
|
2015-04-12 16:38:03 +02:00
|
|
|
",valid_from"
|
|
|
|
",expire_withdraw"
|
2016-05-02 05:10:40 +02:00
|
|
|
",expire_deposit"
|
2015-04-12 16:38:03 +02:00
|
|
|
",expire_legal"
|
2015-05-06 11:47:12 +02:00
|
|
|
",coin_val" /* value of this denom */
|
|
|
|
",coin_frac" /* fractional value of this denom */
|
|
|
|
",coin_curr" /* assuming same currency for fees */
|
|
|
|
",fee_withdraw_val"
|
|
|
|
",fee_withdraw_frac"
|
2015-05-25 22:47:00 +02:00
|
|
|
",fee_withdraw_curr" /* must match coin_curr */
|
|
|
|
",fee_deposit_val"
|
|
|
|
",fee_deposit_frac"
|
|
|
|
",fee_deposit_curr" /* must match coin_curr */
|
2015-05-06 11:47:12 +02:00
|
|
|
",fee_refresh_val"
|
|
|
|
",fee_refresh_frac"
|
2015-05-25 22:47:00 +02:00
|
|
|
",fee_refresh_curr" /* must match coin_curr */
|
2016-04-20 01:50:26 +02:00
|
|
|
",fee_refund_val"
|
|
|
|
",fee_refund_frac"
|
|
|
|
",fee_refund_curr" /* must match coin_curr */
|
2015-04-12 16:38:03 +02:00
|
|
|
") VALUES "
|
2015-06-11 14:58:23 +02:00
|
|
|
"($1, $2, $3, $4, $5, $6, $7, $8, $9, $10,"
|
2016-04-20 01:50:26 +02:00
|
|
|
" $11, $12, $13, $14, $15, $16, $17, $18,"
|
|
|
|
" $19, $20, $21, $22);",
|
|
|
|
22, NULL);
|
2015-06-03 15:41:09 +02:00
|
|
|
|
2015-06-12 10:28:17 +02:00
|
|
|
/* Used in #postgres_get_denomination_info() */
|
|
|
|
PREPARE ("denomination_get",
|
2015-06-12 10:55:03 +02:00
|
|
|
"SELECT"
|
2015-06-12 10:28:17 +02:00
|
|
|
" master_pub"
|
|
|
|
",master_sig"
|
|
|
|
",valid_from"
|
|
|
|
",expire_withdraw"
|
2016-05-02 05:10:40 +02:00
|
|
|
",expire_deposit"
|
2015-06-12 10:28:17 +02:00
|
|
|
",expire_legal"
|
|
|
|
",coin_val" /* value of this denom */
|
|
|
|
",coin_frac" /* fractional value of this denom */
|
|
|
|
",coin_curr" /* assuming same currency for fees */
|
|
|
|
",fee_withdraw_val"
|
|
|
|
",fee_withdraw_frac"
|
|
|
|
",fee_withdraw_curr" /* must match coin_curr */
|
|
|
|
",fee_deposit_val"
|
|
|
|
",fee_deposit_frac"
|
|
|
|
",fee_deposit_curr" /* must match coin_curr */
|
|
|
|
",fee_refresh_val"
|
|
|
|
",fee_refresh_frac"
|
|
|
|
",fee_refresh_curr" /* must match coin_curr */
|
2016-04-20 01:50:26 +02:00
|
|
|
",fee_refund_val"
|
|
|
|
",fee_refund_frac"
|
|
|
|
",fee_refund_curr" /* must match coin_curr */
|
2015-06-12 10:55:03 +02:00
|
|
|
" FROM denominations"
|
2016-05-27 14:04:29 +02:00
|
|
|
" WHERE denom_pub=$1;",
|
2015-06-12 10:28:17 +02:00
|
|
|
1, NULL);
|
2015-06-03 15:41:09 +02:00
|
|
|
|
|
|
|
/* Used in #postgres_reserve_get() */
|
|
|
|
PREPARE ("reserve_get",
|
2015-06-03 14:32:22 +02:00
|
|
|
"SELECT"
|
|
|
|
" current_balance_val"
|
2015-05-06 11:47:12 +02:00
|
|
|
",current_balance_frac"
|
|
|
|
",current_balance_curr"
|
2015-06-03 15:41:09 +02:00
|
|
|
",expiration_date"
|
|
|
|
" FROM reserves"
|
|
|
|
" WHERE reserve_pub=$1"
|
|
|
|
" LIMIT 1;",
|
2015-03-05 17:05:51 +01:00
|
|
|
1, NULL);
|
2015-06-03 15:41:09 +02:00
|
|
|
|
|
|
|
/* Used in #postgres_reserves_in_insert() when the reserve is new */
|
|
|
|
PREPARE ("reserve_create",
|
2015-06-03 12:21:50 +02:00
|
|
|
"INSERT INTO reserves "
|
|
|
|
"(reserve_pub"
|
|
|
|
",current_balance_val"
|
|
|
|
",current_balance_frac"
|
|
|
|
",current_balance_curr"
|
|
|
|
",expiration_date"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5);",
|
2015-03-05 18:16:32 +01:00
|
|
|
5, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2015-06-03 15:41:09 +02:00
|
|
|
/* Used in #postgres_reserves_update() when the reserve is updated */
|
|
|
|
PREPARE ("reserve_update",
|
2015-06-03 14:32:22 +02:00
|
|
|
"UPDATE reserves"
|
|
|
|
" SET"
|
2015-05-14 14:28:29 +02:00
|
|
|
" expiration_date=$1 "
|
2015-05-06 11:47:12 +02:00
|
|
|
",current_balance_val=$2 "
|
|
|
|
",current_balance_frac=$3 "
|
2015-05-14 14:28:29 +02:00
|
|
|
"WHERE current_balance_curr=$4 AND reserve_pub=$5",
|
2015-05-07 13:33:19 +02:00
|
|
|
5, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2015-06-03 15:41:09 +02:00
|
|
|
/* Used in #postgres_reserves_in_insert() to store transaction details */
|
|
|
|
PREPARE ("reserves_in_add_transaction",
|
2015-06-03 12:21:50 +02:00
|
|
|
"INSERT INTO reserves_in "
|
|
|
|
"(reserve_pub"
|
2016-05-27 15:34:24 +02:00
|
|
|
",credit_val"
|
|
|
|
",credit_frac"
|
|
|
|
",credit_curr"
|
2016-05-26 16:38:59 +02:00
|
|
|
",sender_account_details"
|
|
|
|
",transfer_details"
|
2015-06-11 13:14:59 +02:00
|
|
|
",execution_date"
|
2015-06-03 12:21:50 +02:00
|
|
|
") VALUES "
|
2016-05-26 16:38:59 +02:00
|
|
|
"($1, $2, $3, $4, $5, $6, $7);",
|
|
|
|
7, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-10-17 16:39:56 +02:00
|
|
|
|
|
|
|
/* Used in postgres_select_reserves_in_above_serial_id() to obtain inbound
|
|
|
|
transactions for reserves with serial id '\geq' the given parameter */
|
|
|
|
PREPARE ("audit_reserves_in_get_transactions_incr",
|
|
|
|
"SELECT"
|
|
|
|
" reserve_pub"
|
|
|
|
",credit_val"
|
|
|
|
",credit_frac"
|
|
|
|
",credit_curr"
|
|
|
|
",execution_date"
|
|
|
|
",sender_account_details"
|
|
|
|
",transfer_details"
|
2016-11-17 14:59:44 +01:00
|
|
|
",reserve_in_serial_id"
|
2016-10-17 16:39:56 +02:00
|
|
|
" FROM reserves_in"
|
|
|
|
" WHERE reserve_in_serial_id>=$1"
|
|
|
|
" ORDER BY reserve_in_serial_id",
|
|
|
|
1, NULL);
|
|
|
|
|
2015-06-03 15:41:09 +02:00
|
|
|
/* Used in #postgres_get_reserve_history() to obtain inbound transactions
|
|
|
|
for a reserve */
|
|
|
|
PREPARE ("reserves_in_get_transactions",
|
2015-03-09 17:05:35 +01:00
|
|
|
"SELECT"
|
2016-05-27 15:34:24 +02:00
|
|
|
" credit_val"
|
|
|
|
",credit_frac"
|
|
|
|
",credit_curr"
|
2015-06-11 13:38:47 +02:00
|
|
|
",execution_date"
|
2016-05-26 16:38:59 +02:00
|
|
|
",sender_account_details"
|
|
|
|
",transfer_details"
|
2015-06-03 12:29:09 +02:00
|
|
|
" FROM reserves_in"
|
|
|
|
" WHERE reserve_pub=$1",
|
2015-03-09 17:05:35 +01:00
|
|
|
1, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2015-06-11 12:30:14 +02:00
|
|
|
/* Used in #postgres_insert_withdraw_info() to store
|
2015-06-03 15:41:09 +02:00
|
|
|
the signature of a blinded coin with the blinded coin's
|
2015-09-19 22:08:49 +02:00
|
|
|
details before returning it during /reserve/withdraw. We store
|
2015-06-03 15:41:09 +02:00
|
|
|
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
|
|
|
|
authorizing the withdrawal. */
|
2015-06-11 12:30:14 +02:00
|
|
|
PREPARE ("insert_withdraw_info",
|
|
|
|
"INSERT INTO reserves_out "
|
2015-06-03 15:41:09 +02:00
|
|
|
"(h_blind_ev"
|
2015-06-03 12:29:09 +02:00
|
|
|
",denom_pub"
|
|
|
|
",denom_sig"
|
|
|
|
",reserve_pub"
|
|
|
|
",reserve_sig"
|
2015-06-11 13:02:57 +02:00
|
|
|
",execution_date"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
2015-06-03 12:29:09 +02:00
|
|
|
") VALUES "
|
2016-05-27 14:39:04 +02:00
|
|
|
"($1, $2, $3, $4, $5, $6, $7, $8, $9);",
|
|
|
|
9, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2015-06-11 12:30:14 +02:00
|
|
|
/* Used in #postgres_get_withdraw_info() to
|
2015-09-19 22:08:49 +02:00
|
|
|
locate the response for a /reserve/withdraw request
|
2015-06-03 15:41:09 +02:00
|
|
|
using the hash of the blinded message. Used to
|
2015-09-19 22:08:49 +02:00
|
|
|
make sure /reserve/withdraw requests are idempotent. */
|
2015-06-11 12:30:14 +02:00
|
|
|
PREPARE ("get_withdraw_info",
|
2015-06-03 14:32:22 +02:00
|
|
|
"SELECT"
|
2015-06-03 12:29:09 +02:00
|
|
|
" denom_pub"
|
|
|
|
",denom_sig"
|
|
|
|
",reserve_sig"
|
|
|
|
",reserve_pub"
|
2015-06-11 13:02:57 +02:00
|
|
|
",execution_date"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
2016-05-27 14:39:04 +02:00
|
|
|
",denom.fee_withdraw_val"
|
|
|
|
",denom.fee_withdraw_frac"
|
|
|
|
",denom.fee_withdraw_curr"
|
2015-06-11 12:30:14 +02:00
|
|
|
" FROM reserves_out"
|
2016-05-27 14:39:04 +02:00
|
|
|
" JOIN denominations denom USING (denom_pub)"
|
2015-06-03 15:41:09 +02:00
|
|
|
" WHERE h_blind_ev=$1",
|
2015-03-05 17:05:51 +01:00
|
|
|
1, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2015-06-03 15:41:09 +02:00
|
|
|
/* Used during #postgres_get_reserve_history() to
|
2015-09-19 22:08:49 +02:00
|
|
|
obtain all of the /reserve/withdraw operations that
|
2015-06-03 15:41:09 +02:00
|
|
|
have been performed on a given reserve. (i.e. to
|
|
|
|
demonstrate double-spending) */
|
2015-06-11 13:02:57 +02:00
|
|
|
PREPARE ("get_reserves_out",
|
2015-05-07 12:38:17 +02:00
|
|
|
"SELECT"
|
2015-06-03 15:41:09 +02:00
|
|
|
" h_blind_ev"
|
2015-06-03 12:29:09 +02:00
|
|
|
",denom_pub"
|
|
|
|
",denom_sig"
|
2015-03-09 17:05:35 +01:00
|
|
|
",reserve_sig"
|
2015-06-11 13:02:57 +02:00
|
|
|
",execution_date"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
2016-05-27 14:39:04 +02:00
|
|
|
",denom.fee_withdraw_val"
|
|
|
|
",denom.fee_withdraw_frac"
|
|
|
|
",denom.fee_withdraw_curr"
|
2015-06-11 12:30:14 +02:00
|
|
|
" FROM reserves_out"
|
2016-05-27 14:39:04 +02:00
|
|
|
" JOIN denominations denom USING (denom_pub)"
|
2015-03-09 17:05:35 +01:00
|
|
|
" WHERE reserve_pub=$1;",
|
|
|
|
1, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-10-17 16:39:56 +02:00
|
|
|
/* Used in #postgres_select_reserves_out_above_serial_id() */
|
|
|
|
PREPARE ("audit_get_reserves_out_incr",
|
|
|
|
"SELECT"
|
|
|
|
" h_blind_ev"
|
|
|
|
",denom_pub"
|
|
|
|
",denom_sig"
|
|
|
|
",reserve_sig"
|
|
|
|
",reserve_pub"
|
|
|
|
",execution_date"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
2016-11-17 14:59:44 +01:00
|
|
|
",reserve_out_serial_id"
|
2016-10-17 16:39:56 +02:00
|
|
|
" FROM reserves_out"
|
|
|
|
" WHERE reserve_out_serial_id>=$1"
|
|
|
|
" ORDER BY reserve_out_serial_id ASC",
|
|
|
|
1, NULL);
|
|
|
|
|
2015-06-03 15:59:25 +02:00
|
|
|
/* Used in #postgres_get_refresh_session() to fetch
|
|
|
|
high-level information about a refresh session */
|
2015-03-05 17:05:51 +01:00
|
|
|
PREPARE ("get_refresh_session",
|
2015-06-03 14:32:22 +02:00
|
|
|
"SELECT"
|
2016-05-16 11:55:47 +02:00
|
|
|
" old_coin_pub"
|
|
|
|
",old_coin_sig"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
2016-05-27 14:14:13 +02:00
|
|
|
",denom.fee_refresh_val "
|
|
|
|
",denom.fee_refresh_frac "
|
|
|
|
",denom.fee_refresh_curr "
|
2015-04-09 23:21:35 +02:00
|
|
|
",num_newcoins"
|
2015-03-05 17:05:51 +01:00
|
|
|
",noreveal_index"
|
2015-04-09 23:21:35 +02:00
|
|
|
" FROM refresh_sessions "
|
2016-05-27 14:14:13 +02:00
|
|
|
" JOIN known_coins ON (refresh_sessions.old_coin_pub = known_coins.coin_pub)"
|
|
|
|
" JOIN denominations denom USING (denom_pub)"
|
2015-05-07 13:33:19 +02:00
|
|
|
" WHERE session_hash=$1 ",
|
2015-03-05 17:05:51 +01:00
|
|
|
1, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-10-17 16:39:56 +02:00
|
|
|
/* Used in #postgres_select_refreshs_above_serial_id() to fetch
|
|
|
|
refresh session with id '\geq' the given parameter */
|
|
|
|
PREPARE ("audit_get_refresh_sessions_incr",
|
|
|
|
"SELECT"
|
|
|
|
" old_coin_pub"
|
|
|
|
",old_coin_sig"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
|
|
|
",num_newcoins"
|
|
|
|
",noreveal_index"
|
2016-11-17 14:59:44 +01:00
|
|
|
",melt_serial_id"
|
2016-10-17 16:39:56 +02:00
|
|
|
" FROM refresh_sessions"
|
|
|
|
" WHERE melt_serial_id>=$1"
|
|
|
|
" ORDER BY melt_serial_id ASC",
|
|
|
|
1, NULL);
|
|
|
|
|
2015-06-03 15:59:25 +02:00
|
|
|
/* Used in #postgres_create_refresh_session() to store
|
|
|
|
high-level information about a refresh session */
|
2015-04-10 10:39:59 +02:00
|
|
|
PREPARE ("insert_refresh_session",
|
2015-06-03 14:32:22 +02:00
|
|
|
"INSERT INTO refresh_sessions "
|
|
|
|
"(session_hash "
|
2016-05-16 11:55:47 +02:00
|
|
|
",old_coin_pub "
|
|
|
|
",old_coin_sig "
|
|
|
|
",amount_with_fee_val "
|
|
|
|
",amount_with_fee_frac "
|
|
|
|
",amount_with_fee_curr "
|
2015-04-10 10:39:59 +02:00
|
|
|
",num_newcoins "
|
|
|
|
",noreveal_index "
|
2015-06-03 14:32:22 +02:00
|
|
|
") VALUES "
|
2016-05-27 14:14:13 +02:00
|
|
|
"($1, $2, $3, $4, $5, $6, $7, $8);",
|
|
|
|
8, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2015-06-03 15:59:25 +02:00
|
|
|
/* Used in #postgres_get_known_coin() to fetch
|
|
|
|
the denomination public key and signature for
|
2016-03-01 15:35:04 +01:00
|
|
|
a coin known to the exchange. */
|
2015-03-05 17:05:51 +01:00
|
|
|
PREPARE ("get_known_coin",
|
2015-05-07 13:33:19 +02:00
|
|
|
"SELECT"
|
2015-06-03 12:35:30 +02:00
|
|
|
" denom_pub"
|
|
|
|
",denom_sig"
|
2016-01-22 13:45:32 +01:00
|
|
|
" FROM known_coins"
|
2015-06-03 12:35:30 +02:00
|
|
|
" WHERE coin_pub=$1",
|
2015-03-05 17:05:51 +01:00
|
|
|
1, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2015-06-03 15:59:25 +02:00
|
|
|
/* Used in #postgres_insert_known_coin() to store
|
|
|
|
the denomination public key and signature for
|
2016-03-01 15:35:04 +01:00
|
|
|
a coin known to the exchange. */
|
2015-03-05 17:05:51 +01:00
|
|
|
PREPARE ("insert_known_coin",
|
2015-06-03 14:32:22 +02:00
|
|
|
"INSERT INTO known_coins "
|
|
|
|
"(coin_pub"
|
2015-03-05 17:05:51 +01:00
|
|
|
",denom_pub"
|
|
|
|
",denom_sig"
|
2015-06-03 14:32:22 +02:00
|
|
|
") VALUES "
|
2015-06-03 15:59:25 +02:00
|
|
|
"($1,$2,$3);",
|
2015-05-25 17:40:27 +02:00
|
|
|
3, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2015-06-03 16:29:30 +02:00
|
|
|
/* Store information about the desired denominations for a
|
|
|
|
refresh operation, used in #postgres_insert_refresh_order() */
|
2015-03-05 17:05:51 +01:00
|
|
|
PREPARE ("insert_refresh_order",
|
2015-06-03 14:12:26 +02:00
|
|
|
"INSERT INTO refresh_order "
|
|
|
|
"(newcoin_index "
|
2015-03-24 16:56:06 +01:00
|
|
|
",session_hash "
|
2015-03-05 17:05:51 +01:00
|
|
|
",denom_pub "
|
2015-06-03 14:12:26 +02:00
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3);",
|
2015-03-05 17:05:51 +01:00
|
|
|
3, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2015-06-03 16:29:30 +02:00
|
|
|
/* Obtain information about the desired denominations for a
|
|
|
|
refresh operation, used in #postgres_get_refresh_order() */
|
|
|
|
PREPARE ("get_refresh_order",
|
|
|
|
"SELECT denom_pub"
|
|
|
|
" FROM refresh_order"
|
|
|
|
" WHERE session_hash=$1 AND newcoin_index=$2",
|
|
|
|
2, NULL);
|
|
|
|
|
2016-05-16 11:55:47 +02:00
|
|
|
/* Query the 'refresh_sessions' by coin public key */
|
|
|
|
PREPARE ("get_refresh_session_by_coin",
|
2015-06-11 16:21:40 +02:00
|
|
|
"SELECT"
|
2015-06-15 14:18:37 +02:00
|
|
|
" session_hash"
|
2016-05-16 11:55:47 +02:00
|
|
|
",old_coin_sig"
|
2015-06-11 16:21:40 +02:00
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
2016-05-27 14:14:13 +02:00
|
|
|
",denom.fee_refresh_val "
|
|
|
|
",denom.fee_refresh_frac "
|
|
|
|
",denom.fee_refresh_curr "
|
2016-05-16 11:55:47 +02:00
|
|
|
" FROM refresh_sessions"
|
2016-05-27 14:14:13 +02:00
|
|
|
" JOIN known_coins ON (refresh_sessions.old_coin_pub = known_coins.coin_pub)"
|
|
|
|
" JOIN denominations denom USING (denom_pub)"
|
2016-05-16 11:55:47 +02:00
|
|
|
" WHERE old_coin_pub=$1",
|
2015-06-11 16:21:40 +02:00
|
|
|
1, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-10-17 16:39:56 +02:00
|
|
|
/* Fetch refunds with rowid '\geq' the given parameter */
|
|
|
|
PREPARE ("audit_get_refunds_incr",
|
|
|
|
"SELECT"
|
|
|
|
" merchant_pub"
|
|
|
|
",merchant_sig"
|
2017-02-06 15:41:39 +01:00
|
|
|
",h_proposal_data"
|
2016-10-17 16:39:56 +02:00
|
|
|
",rtransaction_id"
|
|
|
|
",coin_pub"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
2016-11-17 14:59:44 +01:00
|
|
|
",refund_serial_id"
|
2016-10-17 16:39:56 +02:00
|
|
|
" FROM refunds"
|
|
|
|
" WHERE refund_serial_id>=$1"
|
|
|
|
" ORDER BY refund_serial_id ASC",
|
|
|
|
1, NULL);
|
|
|
|
|
2016-05-06 13:03:57 +02:00
|
|
|
/* Query the 'refunds' by coin public key */
|
|
|
|
PREPARE ("get_refunds_by_coin",
|
|
|
|
"SELECT"
|
|
|
|
" merchant_pub"
|
|
|
|
",merchant_sig"
|
2017-02-06 15:41:39 +01:00
|
|
|
",h_proposal_data"
|
2016-05-06 13:03:57 +02:00
|
|
|
",rtransaction_id"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
2016-05-27 14:34:57 +02:00
|
|
|
",denom.fee_refund_val "
|
|
|
|
",denom.fee_refund_frac "
|
|
|
|
",denom.fee_refund_curr "
|
2016-05-06 13:03:57 +02:00
|
|
|
" FROM refunds"
|
2016-05-27 14:34:57 +02:00
|
|
|
" JOIN known_coins USING (coin_pub)"
|
|
|
|
" JOIN denominations denom USING (denom_pub)"
|
2016-05-06 13:03:57 +02:00
|
|
|
" WHERE coin_pub=$1",
|
|
|
|
1, NULL);
|
|
|
|
|
|
|
|
|
2016-10-17 16:39:56 +02:00
|
|
|
|
2016-08-05 16:08:19 +02:00
|
|
|
/* Used in #postgres_insert_transfer_public_key() to
|
2015-06-03 16:29:30 +02:00
|
|
|
store commitments */
|
2016-08-05 16:08:19 +02:00
|
|
|
PREPARE ("insert_transfer_public_key",
|
|
|
|
"INSERT INTO refresh_transfer_public_key "
|
2015-06-03 14:32:22 +02:00
|
|
|
"(session_hash"
|
|
|
|
",transfer_pub"
|
|
|
|
") VALUES "
|
2016-08-11 23:28:33 +02:00
|
|
|
"($1, $2);",
|
2016-08-05 16:08:19 +02:00
|
|
|
3, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-08-05 16:08:19 +02:00
|
|
|
/* Used in #postgres_get_refresh_transfer_public_key() to
|
2015-06-03 16:29:30 +02:00
|
|
|
retrieve original commitments during /refresh/reveal */
|
2016-08-05 16:08:19 +02:00
|
|
|
PREPARE ("get_refresh_transfer_public_key",
|
2015-06-03 16:29:30 +02:00
|
|
|
"SELECT"
|
|
|
|
" transfer_pub"
|
2016-08-05 16:08:19 +02:00
|
|
|
" FROM refresh_transfer_public_key"
|
2016-08-11 23:28:33 +02:00
|
|
|
" WHERE session_hash=$1",
|
|
|
|
1, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2015-06-03 16:29:30 +02:00
|
|
|
/* Used in #postgres_insert_refresh_commit_coins() to
|
|
|
|
store coin commitments. */
|
2015-03-05 17:05:51 +01:00
|
|
|
PREPARE ("insert_refresh_commit_coin",
|
2015-06-03 14:32:22 +02:00
|
|
|
"INSERT INTO refresh_commit_coin "
|
|
|
|
"(session_hash"
|
|
|
|
",newcoin_index"
|
2015-06-03 16:29:30 +02:00
|
|
|
",coin_ev"
|
2015-06-03 14:32:22 +02:00
|
|
|
") VALUES "
|
2016-08-11 23:28:33 +02:00
|
|
|
"($1, $2, $3);",
|
|
|
|
3, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2015-06-03 16:29:30 +02:00
|
|
|
/* Used in #postgres_get_refresh_commit_coins() to
|
|
|
|
retrieve the original coin envelopes, to either be
|
|
|
|
verified or signed. */
|
|
|
|
PREPARE ("get_refresh_commit_coin",
|
|
|
|
"SELECT"
|
2016-08-05 16:08:19 +02:00
|
|
|
" coin_ev"
|
2015-06-03 16:29:30 +02:00
|
|
|
" FROM refresh_commit_coin"
|
2016-08-11 23:28:33 +02:00
|
|
|
" WHERE session_hash=$1 AND newcoin_index=$2",
|
|
|
|
2, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-03-01 15:35:04 +01:00
|
|
|
/* Store information about a /deposit the exchange is to execute.
|
2015-06-11 14:25:42 +02:00
|
|
|
Used in #postgres_insert_deposit(). */
|
2015-03-05 17:05:51 +01:00
|
|
|
PREPARE ("insert_deposit",
|
2015-06-03 14:32:22 +02:00
|
|
|
"INSERT INTO deposits "
|
|
|
|
"(coin_pub"
|
2015-06-03 16:47:17 +02:00
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
2015-06-11 14:25:42 +02:00
|
|
|
",timestamp"
|
|
|
|
",refund_deadline"
|
2015-10-28 21:06:23 +01:00
|
|
|
",wire_deadline"
|
2015-06-03 14:32:22 +02:00
|
|
|
",merchant_pub"
|
2017-02-06 15:41:39 +01:00
|
|
|
",h_proposal_data"
|
2015-06-03 14:32:22 +02:00
|
|
|
",h_wire"
|
|
|
|
",coin_sig"
|
|
|
|
",wire"
|
|
|
|
") VALUES "
|
2015-06-11 14:25:42 +02:00
|
|
|
"($1, $2, $3, $4, $5, $6, $7, $8, $9, $10,"
|
2017-02-07 16:19:04 +01:00
|
|
|
" $11, $12);",
|
2017-02-07 16:18:34 +01:00
|
|
|
12, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-05-06 12:55:44 +02:00
|
|
|
/* Used in #postgres_insert_refund() to store refund information */
|
|
|
|
PREPARE ("insert_refund",
|
|
|
|
"INSERT INTO refunds "
|
|
|
|
"(coin_pub "
|
|
|
|
",merchant_pub "
|
|
|
|
",merchant_sig "
|
2017-02-06 15:41:39 +01:00
|
|
|
",h_proposal_data "
|
2016-05-06 12:55:44 +02:00
|
|
|
",rtransaction_id "
|
|
|
|
",amount_with_fee_val "
|
|
|
|
",amount_with_fee_frac "
|
|
|
|
",amount_with_fee_curr "
|
|
|
|
") VALUES "
|
2017-02-07 16:20:36 +01:00
|
|
|
"($1, $2, $3, $4, $5, $6, $7, $8);",
|
|
|
|
8, NULL);
|
2016-05-06 12:55:44 +02:00
|
|
|
|
2015-06-03 16:47:17 +02:00
|
|
|
/* Fetch an existing deposit request, used to ensure idempotency
|
|
|
|
during /deposit processing. Used in #postgres_have_deposit(). */
|
2015-03-05 17:05:51 +01:00
|
|
|
PREPARE ("get_deposit",
|
2015-06-03 14:32:22 +02:00
|
|
|
"SELECT"
|
2015-06-12 11:57:10 +02:00
|
|
|
" amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
|
|
|
",timestamp"
|
|
|
|
",refund_deadline"
|
2015-10-28 21:06:23 +01:00
|
|
|
",wire_deadline"
|
2017-02-06 15:41:39 +01:00
|
|
|
",h_proposal_data"
|
2015-06-12 11:57:10 +02:00
|
|
|
",h_wire"
|
2015-06-03 14:32:22 +02:00
|
|
|
" FROM deposits"
|
2015-06-03 14:40:59 +02:00
|
|
|
" WHERE ("
|
|
|
|
" (coin_pub=$1) AND"
|
2017-02-07 15:09:10 +01:00
|
|
|
" (h_proposal_data=$2) AND"
|
2015-06-03 14:40:59 +02:00
|
|
|
" (merchant_pub=$3)"
|
2015-06-03 14:32:22 +02:00
|
|
|
" )",
|
2015-03-16 11:01:01 +01:00
|
|
|
3, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-10-17 16:39:56 +02:00
|
|
|
/* Fetch deposits with rowid '\geq' the given parameter */
|
2016-10-17 01:48:59 +02:00
|
|
|
PREPARE ("audit_get_deposits_incr",
|
|
|
|
"SELECT"
|
|
|
|
" amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
|
|
|
",timestamp"
|
|
|
|
",merchant_pub"
|
|
|
|
",coin_pub"
|
|
|
|
",coin_sig"
|
|
|
|
",refund_deadline"
|
|
|
|
",wire_deadline"
|
2017-02-06 15:41:39 +01:00
|
|
|
",h_proposal_data"
|
2016-10-17 01:48:59 +02:00
|
|
|
",wire"
|
2016-10-17 16:39:56 +02:00
|
|
|
",done"
|
2016-11-17 14:59:44 +01:00
|
|
|
",deposit_serial_id"
|
2016-10-17 01:48:59 +02:00
|
|
|
" FROM deposits"
|
|
|
|
" WHERE ("
|
|
|
|
" (deposit_serial_id>=$1)"
|
|
|
|
" )"
|
2016-10-17 16:39:56 +02:00
|
|
|
" ORDER BY deposit_serial_id ASC",
|
2016-10-17 01:48:59 +02:00
|
|
|
1, NULL);
|
|
|
|
|
2016-01-21 12:09:17 +01:00
|
|
|
/* Fetch an existing deposit request.
|
|
|
|
Used in #postgres_wire_lookup_deposit_wtid(). */
|
|
|
|
PREPARE ("get_deposit_for_wtid",
|
|
|
|
"SELECT"
|
|
|
|
" amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
2016-05-27 14:04:29 +02:00
|
|
|
",denom.fee_deposit_val"
|
|
|
|
",denom.fee_deposit_frac"
|
|
|
|
",denom.fee_deposit_curr"
|
2016-01-21 12:09:17 +01:00
|
|
|
",wire_deadline"
|
|
|
|
" FROM deposits"
|
2016-05-27 14:39:04 +02:00
|
|
|
" JOIN known_coins USING (coin_pub)"
|
2016-05-27 14:04:29 +02:00
|
|
|
" JOIN denominations denom USING (denom_pub)"
|
2016-01-21 12:09:17 +01:00
|
|
|
" WHERE ("
|
|
|
|
" (coin_pub=$1) AND"
|
2017-02-07 15:09:10 +01:00
|
|
|
" (merchant_pub=$2) AND"
|
|
|
|
" (h_proposal_data=$3) AND"
|
|
|
|
" (h_wire=$4)"
|
2016-01-21 12:09:17 +01:00
|
|
|
" )",
|
2017-02-07 15:09:10 +01:00
|
|
|
4, NULL);
|
2015-09-19 20:02:21 +02:00
|
|
|
|
2016-01-27 16:42:24 +01:00
|
|
|
/* Used in #postgres_get_ready_deposit() */
|
|
|
|
PREPARE ("deposits_get_ready",
|
2015-09-19 20:02:21 +02:00
|
|
|
"SELECT"
|
2016-05-27 15:34:24 +02:00
|
|
|
" deposit_serial_id"
|
2015-09-19 20:28:37 +02:00
|
|
|
",amount_with_fee_val"
|
2015-09-19 20:02:21 +02:00
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
2016-05-27 14:04:29 +02:00
|
|
|
",denom.fee_deposit_val"
|
|
|
|
",denom.fee_deposit_frac"
|
|
|
|
",denom.fee_deposit_curr"
|
2015-10-28 21:06:23 +01:00
|
|
|
",wire_deadline"
|
2017-02-06 15:41:39 +01:00
|
|
|
",h_proposal_data"
|
2015-09-19 20:02:21 +02:00
|
|
|
",wire"
|
2016-01-27 16:42:24 +01:00
|
|
|
",merchant_pub"
|
|
|
|
",coin_pub"
|
2015-09-19 20:02:21 +02:00
|
|
|
" FROM deposits"
|
2016-05-27 14:39:04 +02:00
|
|
|
" JOIN known_coins USING (coin_pub)"
|
2016-05-27 14:04:29 +02:00
|
|
|
" JOIN denominations denom USING (denom_pub)"
|
2016-01-27 16:42:24 +01:00
|
|
|
" WHERE"
|
|
|
|
" tiny=false AND"
|
2016-04-10 02:43:09 +02:00
|
|
|
" done=false AND"
|
2016-05-20 15:52:40 +02:00
|
|
|
" wire_deadline<=$1 AND"
|
|
|
|
" refund_deadline<$1"
|
2016-01-27 19:56:57 +01:00
|
|
|
" ORDER BY wire_deadline ASC"
|
2016-04-06 10:22:09 +02:00
|
|
|
" LIMIT 1",
|
2016-04-10 02:43:09 +02:00
|
|
|
1, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-01-27 16:42:24 +01:00
|
|
|
/* Used in #postgres_iterate_matching_deposits() */
|
|
|
|
PREPARE ("deposits_iterate_matching",
|
|
|
|
"SELECT"
|
2016-05-27 15:34:24 +02:00
|
|
|
" deposit_serial_id"
|
2016-01-27 16:42:24 +01:00
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
2016-05-27 14:04:29 +02:00
|
|
|
",denom.fee_deposit_val"
|
|
|
|
",denom.fee_deposit_frac"
|
|
|
|
",denom.fee_deposit_curr"
|
2016-01-27 16:42:24 +01:00
|
|
|
",wire_deadline"
|
2017-02-06 15:41:39 +01:00
|
|
|
",h_proposal_data"
|
2016-01-27 16:42:24 +01:00
|
|
|
",coin_pub"
|
|
|
|
" FROM deposits"
|
2016-05-27 14:39:04 +02:00
|
|
|
" JOIN known_coins USING (coin_pub)"
|
2016-05-27 14:04:29 +02:00
|
|
|
" JOIN denominations denom USING (denom_pub)"
|
2016-01-27 16:42:24 +01:00
|
|
|
" WHERE"
|
|
|
|
" merchant_pub=$1 AND"
|
|
|
|
" h_wire=$2 AND"
|
|
|
|
" done=false"
|
2016-01-27 19:56:57 +01:00
|
|
|
" ORDER BY wire_deadline ASC"
|
2016-04-06 10:22:09 +02:00
|
|
|
" LIMIT " TALER_EXCHANGEDB_MATCHING_DEPOSITS_LIMIT_STR,
|
|
|
|
2, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-01-27 16:42:24 +01:00
|
|
|
/* Used in #postgres_mark_deposit_tiny() */
|
|
|
|
PREPARE ("mark_deposit_tiny",
|
|
|
|
"UPDATE deposits"
|
|
|
|
" SET tiny=true"
|
2016-05-27 15:34:24 +02:00
|
|
|
" WHERE deposit_serial_id=$1",
|
2016-01-27 16:42:24 +01:00
|
|
|
1, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-01-27 16:42:24 +01:00
|
|
|
/* Used in #postgres_mark_deposit_done() */
|
|
|
|
PREPARE ("mark_deposit_done",
|
|
|
|
"UPDATE deposits"
|
|
|
|
" SET done=true"
|
2016-05-27 15:34:24 +02:00
|
|
|
" WHERE deposit_serial_id=$1",
|
2016-01-27 16:42:24 +01:00
|
|
|
1, NULL);
|
|
|
|
|
2016-05-06 12:55:44 +02:00
|
|
|
/* Used in #postgres_test_deposit_done() */
|
|
|
|
PREPARE ("test_deposit_done",
|
|
|
|
"SELECT done"
|
|
|
|
" FROM deposits"
|
|
|
|
" WHERE coin_pub=$1"
|
2017-02-07 15:09:10 +01:00
|
|
|
" AND merchant_pub=$2"
|
|
|
|
" AND h_proposal_data=$3"
|
|
|
|
" AND h_wire=$4",
|
2016-05-06 12:55:44 +02:00
|
|
|
5, NULL);
|
|
|
|
|
2015-06-03 16:47:17 +02:00
|
|
|
/* Used in #postgres_get_coin_transactions() to obtain information
|
|
|
|
about how a coin has been spend with /deposit requests. */
|
2015-04-10 16:22:03 +02:00
|
|
|
PREPARE ("get_deposit_with_coin_pub",
|
2015-06-03 14:32:22 +02:00
|
|
|
"SELECT"
|
2017-02-07 16:23:01 +01:00
|
|
|
" amount_with_fee_val"
|
2015-06-03 16:47:17 +02:00
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
2016-05-27 14:04:29 +02:00
|
|
|
",denom.fee_deposit_val"
|
|
|
|
",denom.fee_deposit_frac"
|
|
|
|
",denom.fee_deposit_curr"
|
2015-06-11 14:25:42 +02:00
|
|
|
",timestamp"
|
|
|
|
",refund_deadline"
|
2015-06-03 14:32:22 +02:00
|
|
|
",merchant_pub"
|
2017-02-06 15:41:39 +01:00
|
|
|
",h_proposal_data"
|
2015-06-03 14:32:22 +02:00
|
|
|
",h_wire"
|
|
|
|
",wire"
|
2015-06-11 14:25:42 +02:00
|
|
|
",coin_sig"
|
2015-06-03 14:32:22 +02:00
|
|
|
" FROM deposits"
|
2016-05-27 14:39:04 +02:00
|
|
|
" JOIN known_coins USING (coin_pub)"
|
2016-05-27 14:04:29 +02:00
|
|
|
" JOIN denominations denom USING (denom_pub)"
|
2015-06-03 14:32:22 +02:00
|
|
|
" WHERE coin_pub=$1",
|
2015-04-10 16:22:03 +02:00
|
|
|
1, NULL);
|
2015-05-13 15:57:35 +02:00
|
|
|
|
2015-06-11 12:30:14 +02:00
|
|
|
/* Used in #postgres_insert_refresh_out() to store the
|
2015-06-03 16:53:20 +02:00
|
|
|
generated signature(s) for future requests, i.e. /refresh/link */
|
2015-06-11 12:30:14 +02:00
|
|
|
PREPARE ("insert_refresh_out",
|
|
|
|
"INSERT INTO refresh_out "
|
2015-06-03 16:29:30 +02:00
|
|
|
"(session_hash"
|
|
|
|
",newcoin_index"
|
|
|
|
",ev_sig"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3)",
|
|
|
|
3, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-11-17 16:37:40 +01:00
|
|
|
/* Used in #postgres_get_refresh_out() to test if the
|
|
|
|
generated signature(s) already exists */
|
|
|
|
PREPARE ("get_refresh_out",
|
|
|
|
"SELECT ev_sig"
|
|
|
|
" FROM refresh_out"
|
|
|
|
" WHERE session_hash=$1"
|
|
|
|
" AND newcoin_index=$2",
|
|
|
|
2, NULL);
|
|
|
|
|
2015-06-15 14:18:37 +02:00
|
|
|
/* Used in #postgres_get_link_data_list(). We use the session_hash
|
2016-08-05 16:08:19 +02:00
|
|
|
to obtain the "noreveal_index" for that session, and then select the
|
2015-06-15 14:18:37 +02:00
|
|
|
corresponding signatures (ev_sig) and the denomination keys from
|
|
|
|
the respective tables (namely refresh_melts and refresh_order)
|
|
|
|
using the session_hash as the primary filter (on join) and the
|
|
|
|
'noreveal_index' to constrain the selection on the commitment.
|
|
|
|
We also want to get the triplet for each of the newcoins, so we
|
|
|
|
have another constraint to ensure we get each triplet with
|
|
|
|
matching "newcoin_index" values. NOTE: This may return many
|
|
|
|
results, both for different sessions and for the different coins
|
2016-03-01 15:35:04 +01:00
|
|
|
being exchangeed in the refresh ops. NOTE: There may be more
|
2015-06-15 14:18:37 +02:00
|
|
|
efficient ways to express the same query. */
|
2015-06-03 16:29:30 +02:00
|
|
|
PREPARE ("get_link",
|
2016-08-05 16:08:19 +02:00
|
|
|
"SELECT ev_sig,ro.denom_pub"
|
2016-05-16 11:55:47 +02:00
|
|
|
" FROM refresh_sessions rs "
|
2015-06-03 16:53:20 +02:00
|
|
|
" JOIN refresh_order ro USING (session_hash)"
|
|
|
|
" JOIN refresh_commit_coin rcc USING (session_hash)"
|
2015-06-11 12:30:14 +02:00
|
|
|
" JOIN refresh_out rc USING (session_hash)"
|
2015-06-15 14:18:37 +02:00
|
|
|
" WHERE ro.session_hash=$1"
|
2015-06-03 16:53:20 +02:00
|
|
|
" AND ro.newcoin_index=rcc.newcoin_index"
|
2016-08-11 23:28:33 +02:00
|
|
|
" AND ro.newcoin_index=rc.newcoin_index",
|
2015-06-03 16:29:30 +02:00
|
|
|
1, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2015-06-15 14:18:37 +02:00
|
|
|
/* Used in #postgres_get_transfer(). Given the public key of a
|
|
|
|
melted coin, we obtain the corresponding encrypted link secret
|
|
|
|
and the transfer public key. This is done by first finding
|
|
|
|
the session_hash(es) of all sessions the coin was melted into,
|
2016-05-16 11:55:47 +02:00
|
|
|
and then constraining the result to the selected "noreveal_index".
|
2015-06-15 14:18:37 +02:00
|
|
|
NOTE: This may (in theory) return multiple results, one per session
|
|
|
|
that the old coin was melted into. */
|
2015-06-03 16:29:30 +02:00
|
|
|
PREPARE ("get_transfer",
|
2016-08-05 16:08:19 +02:00
|
|
|
"SELECT transfer_pub,session_hash"
|
2016-05-16 11:55:47 +02:00
|
|
|
" FROM refresh_sessions rs"
|
2016-08-05 16:08:19 +02:00
|
|
|
" JOIN refresh_transfer_public_key rcl USING (session_hash)"
|
2016-08-11 23:28:33 +02:00
|
|
|
" WHERE rs.old_coin_pub=$1",
|
2015-06-03 16:29:30 +02:00
|
|
|
1, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-01-21 12:09:17 +01:00
|
|
|
/* Used in #postgres_lookup_wire_transfer */
|
2016-01-21 08:44:45 +01:00
|
|
|
PREPARE ("lookup_transactions",
|
|
|
|
"SELECT"
|
2017-02-06 15:41:39 +01:00
|
|
|
" deposits.h_proposal_data"
|
2017-03-04 16:49:33 +01:00
|
|
|
",deposits.wire"
|
2016-05-27 15:34:24 +02:00
|
|
|
",deposits.h_wire"
|
|
|
|
",deposits.coin_pub"
|
|
|
|
",deposits.merchant_pub"
|
2016-01-21 08:44:45 +01:00
|
|
|
",execution_time"
|
2016-05-27 15:34:24 +02:00
|
|
|
",deposits.amount_with_fee_val"
|
|
|
|
",deposits.amount_with_fee_frac"
|
|
|
|
",deposits.amount_with_fee_curr"
|
|
|
|
",denom.fee_deposit_val"
|
|
|
|
",denom.fee_deposit_frac"
|
|
|
|
",denom.fee_deposit_curr"
|
2016-01-21 08:44:45 +01:00
|
|
|
" FROM aggregation_tracking"
|
2016-05-27 15:34:24 +02:00
|
|
|
" JOIN deposits USING (deposit_serial_id)"
|
|
|
|
" JOIN known_coins USING (coin_pub)"
|
|
|
|
" JOIN denominations denom USING (denom_pub)"
|
2016-01-21 08:44:45 +01:00
|
|
|
" WHERE wtid_raw=$1",
|
|
|
|
1, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-01-21 08:44:45 +01:00
|
|
|
/* Used in #postgres_wire_lookup_deposit_wtid */
|
|
|
|
PREPARE ("lookup_deposit_wtid",
|
|
|
|
"SELECT"
|
2016-05-27 15:34:24 +02:00
|
|
|
" aggregation_tracking.wtid_raw"
|
|
|
|
",aggregation_tracking.execution_time"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
|
|
|
",denom.fee_deposit_val"
|
|
|
|
",denom.fee_deposit_frac"
|
|
|
|
",denom.fee_deposit_curr"
|
|
|
|
" FROM deposits"
|
|
|
|
" JOIN aggregation_tracking USING (deposit_serial_id)"
|
|
|
|
" JOIN known_coins USING (coin_pub)"
|
|
|
|
" JOIN denominations denom USING (denom_pub)"
|
|
|
|
" WHERE coin_pub=$1"
|
2017-02-06 15:41:39 +01:00
|
|
|
" AND h_proposal_data=$2"
|
2016-05-27 15:34:24 +02:00
|
|
|
" AND h_wire=$3"
|
2017-02-07 15:09:10 +01:00
|
|
|
" AND merchant_pub=$4",
|
|
|
|
4, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-01-21 08:44:45 +01:00
|
|
|
/* Used in #postgres_insert_aggregation_tracking */
|
|
|
|
PREPARE ("insert_aggregation_tracking",
|
|
|
|
"INSERT INTO aggregation_tracking "
|
2016-05-27 15:34:24 +02:00
|
|
|
"(deposit_serial_id"
|
2016-01-21 08:44:45 +01:00
|
|
|
",wtid_raw"
|
|
|
|
",execution_time"
|
|
|
|
") VALUES "
|
2016-05-27 15:34:24 +02:00
|
|
|
"($1, $2, $3)",
|
|
|
|
3, NULL);
|
2016-01-21 08:44:45 +01:00
|
|
|
|
2017-03-04 16:49:33 +01:00
|
|
|
/* Used in #postgres_get_wire_fee() */
|
|
|
|
PREPARE ("get_wire_fee",
|
|
|
|
"SELECT "
|
|
|
|
" start_date"
|
|
|
|
",end_date"
|
|
|
|
",wire_fee_val"
|
|
|
|
",wire_fee_frac"
|
|
|
|
",wire_fee_curr"
|
|
|
|
",master_sig"
|
|
|
|
" FROM wire_fee"
|
|
|
|
" WHERE wire_method=$1"
|
|
|
|
" AND start_date <= $2"
|
|
|
|
" AND end_date > $2",
|
|
|
|
2, NULL);
|
|
|
|
|
|
|
|
/* Used in #postgres_insert_wire_fee */
|
|
|
|
PREPARE ("insert_wire_fee",
|
|
|
|
"INSERT INTO wire_fee "
|
|
|
|
"(wire_method"
|
|
|
|
",start_date"
|
|
|
|
",end_date"
|
|
|
|
",wire_fee_val"
|
|
|
|
",wire_fee_frac"
|
|
|
|
",wire_fee_curr"
|
|
|
|
",master_sig"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6, $7)",
|
|
|
|
7, NULL);
|
|
|
|
|
2016-01-27 17:09:08 +01:00
|
|
|
|
|
|
|
/* Used in #postgres_wire_prepare_data_insert() to store
|
|
|
|
wire transfer information before actually committing it with the bank */
|
|
|
|
PREPARE ("wire_prepare_data_insert",
|
|
|
|
"INSERT INTO prewire "
|
|
|
|
"(type"
|
|
|
|
",buf"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2)",
|
|
|
|
2, NULL);
|
|
|
|
|
|
|
|
/* Used in #postgres_wire_prepare_data_mark_finished() */
|
|
|
|
PREPARE ("wire_prepare_data_mark_done",
|
|
|
|
"UPDATE prewire"
|
|
|
|
" SET finished=true"
|
2016-05-27 12:03:26 +02:00
|
|
|
" WHERE prewire_uuid=$1",
|
2016-01-27 17:09:08 +01:00
|
|
|
1, NULL);
|
|
|
|
|
2016-01-27 18:28:52 +01:00
|
|
|
/* Used in #postgres_wire_prepare_data_get() */
|
|
|
|
PREPARE ("wire_prepare_data_get",
|
2016-01-27 17:09:08 +01:00
|
|
|
"SELECT"
|
2016-05-27 12:03:26 +02:00
|
|
|
" prewire_uuid"
|
2016-05-03 07:57:49 +02:00
|
|
|
",type"
|
2016-01-27 17:09:08 +01:00
|
|
|
",buf"
|
|
|
|
" FROM prewire"
|
2016-05-31 09:34:45 +02:00
|
|
|
" WHERE finished=false"
|
2016-05-27 12:03:26 +02:00
|
|
|
" ORDER BY prewire_uuid ASC"
|
2016-01-27 17:09:08 +01:00
|
|
|
" LIMIT 1",
|
2016-05-03 07:57:49 +02:00
|
|
|
0, NULL);
|
2016-01-27 17:09:08 +01:00
|
|
|
|
2016-05-31 09:34:45 +02:00
|
|
|
/* Used in #postgres_gc() */
|
|
|
|
PREPARE ("gc_prewire",
|
|
|
|
"DELETE"
|
|
|
|
" FROM prewire"
|
|
|
|
" WHERE finished=true",
|
|
|
|
0, NULL);
|
2016-10-17 16:39:56 +02:00
|
|
|
|
|
|
|
/* Used in #postgres_select_prepare_above_serial_id() */
|
|
|
|
PREPARE ("audit_get_wire_incr",
|
|
|
|
"SELECT"
|
2016-10-17 17:24:38 +02:00
|
|
|
" type"
|
2016-10-17 16:39:56 +02:00
|
|
|
",buf"
|
2016-10-17 17:24:38 +02:00
|
|
|
",finished"
|
2016-11-17 14:59:44 +01:00
|
|
|
",prewire_uuid"
|
2016-10-17 16:39:56 +02:00
|
|
|
" FROM prewire"
|
|
|
|
" WHERE prewire_uuid>=$1"
|
|
|
|
" ORDER BY prewire_uuid ASC",
|
|
|
|
1, NULL);
|
|
|
|
|
2016-05-31 09:34:45 +02:00
|
|
|
PREPARE ("gc_denominations",
|
|
|
|
"DELETE"
|
|
|
|
" FROM denominations"
|
|
|
|
" WHERE expire_legal < $1",
|
|
|
|
1, NULL);
|
|
|
|
PREPARE ("gc_reserves",
|
|
|
|
"DELETE"
|
|
|
|
" FROM reserves"
|
|
|
|
" WHERE expiration_date < $1"
|
|
|
|
" AND current_balance_val = 0"
|
|
|
|
" AND current_balance_frac = 0",
|
|
|
|
1, NULL);
|
|
|
|
|
2015-01-28 22:18:53 +01:00
|
|
|
return GNUNET_OK;
|
2015-03-05 17:05:51 +01:00
|
|
|
#undef PREPARE
|
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;
|
2015-07-09 22:10:14 +02:00
|
|
|
PGconn *db_conn = session->conn;
|
2015-01-28 22:47:03 +01:00
|
|
|
|
2015-01-28 22:18:53 +01:00
|
|
|
if (NULL != db_conn)
|
|
|
|
PQfinish (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;
|
2015-01-08 18:37:20 +01:00
|
|
|
PGconn *db_conn;
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session;
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-03-20 23:51:28 +01:00
|
|
|
if (NULL != (session = pthread_getspecific (pc->db_conn_threadlocal)))
|
|
|
|
return session;
|
2016-05-31 09:34:45 +02:00
|
|
|
db_conn = connect_to_postgres (pc);
|
|
|
|
if (NULL == db_conn)
|
2015-01-08 18:37:20 +01:00
|
|
|
return NULL;
|
2015-01-28 22:47:03 +01:00
|
|
|
if (GNUNET_OK !=
|
2015-03-20 23:51:28 +01:00
|
|
|
postgres_prepare (db_conn))
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2016-05-31 09:34:45 +02:00
|
|
|
PQfinish (db_conn);
|
2015-01-08 18:37:20 +01:00
|
|
|
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;
|
|
|
|
if (0 != pthread_setspecific (pc->db_conn_threadlocal,
|
|
|
|
session))
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2015-05-07 13:59:56 +02:00
|
|
|
PQfinish (db_conn);
|
2015-03-20 23:51:28 +01:00
|
|
|
GNUNET_free (session);
|
2015-01-08 18:37:20 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2015-03-20 23:51:28 +01:00
|
|
|
return 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
|
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,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session)
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-01-28 22:18:53 +01:00
|
|
|
PGresult *result;
|
2017-03-14 15:36:19 +01:00
|
|
|
ExecStatusType ex;
|
2015-01-28 22:18:53 +01:00
|
|
|
|
2015-03-20 23:51:28 +01:00
|
|
|
result = PQexec (session->conn,
|
2016-07-13 16:02:08 +02:00
|
|
|
"START TRANSACTION ISOLATION LEVEL SERIALIZABLE");
|
2015-01-28 22:47:03 +01:00
|
|
|
if (PGRES_COMMAND_OK !=
|
2017-03-14 15:36:19 +01:00
|
|
|
(ex = PQresultStatus (result)))
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2017-03-14 15:36:19 +01:00
|
|
|
TALER_LOG_ERROR ("Failed to start transaction (%s): %s\n",
|
|
|
|
PQresStatus (ex),
|
|
|
|
PQerrorMessage (session->conn));
|
2015-01-28 22:18:53 +01:00
|
|
|
GNUNET_break (0);
|
2015-01-28 22:47:03 +01:00
|
|
|
PQclear (result);
|
2015-01-28 22:18:53 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
PQclear (result);
|
|
|
|
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
|
|
|
{
|
2015-01-28 22:18:53 +01:00
|
|
|
PGresult *result;
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-03-20 23:51:28 +01:00
|
|
|
result = PQexec (session->conn,
|
2015-01-28 22:47:03 +01:00
|
|
|
"ROLLBACK");
|
|
|
|
GNUNET_break (PGRES_COMMAND_OK ==
|
|
|
|
PQresultStatus (result));
|
2015-01-28 22:18:53 +01:00
|
|
|
PQclear (result);
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
2015-01-28 14:57:55 +01:00
|
|
|
|
|
|
|
|
2015-01-28 22:18:53 +01:00
|
|
|
/**
|
|
|
|
* Commit the current transaction of a database connection.
|
|
|
|
*
|
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 22:18:53 +01:00
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
|
|
|
postgres_commit (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session)
|
2015-01-28 14:57:55 +01:00
|
|
|
{
|
2015-01-28 22:18:53 +01:00
|
|
|
PGresult *result;
|
|
|
|
|
2015-03-20 23:51:28 +01:00
|
|
|
result = PQexec (session->conn,
|
2015-01-28 22:47:03 +01:00
|
|
|
"COMMIT");
|
|
|
|
if (PGRES_COMMAND_OK !=
|
|
|
|
PQresultStatus (result))
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2015-09-21 14:36:18 +02:00
|
|
|
const char *sqlstate;
|
|
|
|
|
|
|
|
sqlstate = PQresultErrorField (result,
|
|
|
|
PG_DIAG_SQLSTATE);
|
|
|
|
if (NULL == sqlstate)
|
|
|
|
{
|
|
|
|
/* very unexpected... */
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
/* 40P01: deadlock, 40001: serialization failure */
|
|
|
|
if ( (0 == strcmp (sqlstate,
|
|
|
|
"40P01")) ||
|
|
|
|
(0 == strcmp (sqlstate,
|
|
|
|
"40001")) )
|
|
|
|
{
|
|
|
|
/* These two can be retried and have a fair chance of working
|
|
|
|
the next time */
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"Database commit failure: %s\n",
|
|
|
|
sqlstate);
|
2015-01-28 22:47:03 +01:00
|
|
|
PQclear (result);
|
2015-01-28 22:18:53 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
2015-04-12 16:38:03 +02:00
|
|
|
* @return #GNUNET_OK on success; #GNUNET_SYSERR on failure
|
|
|
|
*/
|
|
|
|
static int
|
2015-06-12 10:28:17 +02:00
|
|
|
postgres_insert_denomination_info (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-06-12 10:28:17 +02:00
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
2016-03-01 15:35:04 +01:00
|
|
|
const struct TALER_EXCHANGEDB_DenominationKeyInformationP *issue)
|
2015-04-12 16:38:03 +02:00
|
|
|
{
|
|
|
|
PGresult *result;
|
|
|
|
int ret;
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
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),
|
|
|
|
GNUNET_PQ_query_param_absolute_time_nbo (&issue->properties.start),
|
|
|
|
GNUNET_PQ_query_param_absolute_time_nbo (&issue->properties.expire_withdraw),
|
2016-05-02 05:10:40 +02:00
|
|
|
GNUNET_PQ_query_param_absolute_time_nbo (&issue->properties.expire_deposit),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_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
|
|
|
};
|
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,
|
2016-10-17 01:48:59 +02:00
|
|
|
&issue->properties.fee_refund));
|
2015-06-03 15:41:09 +02:00
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2015-06-12 10:28:17 +02:00
|
|
|
"denomination_insert",
|
2015-04-12 16:38:03 +02:00
|
|
|
params);
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
2015-05-07 13:59:56 +02:00
|
|
|
ret = GNUNET_SYSERR;
|
2015-04-12 16:38:03 +02:00
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
}
|
|
|
|
else
|
2015-05-07 13:59:56 +02:00
|
|
|
{
|
2015-04-12 16:38:03 +02:00
|
|
|
ret = GNUNET_OK;
|
2015-05-07 13:59:56 +02:00
|
|
|
}
|
2015-04-12 16:38:03 +02:00
|
|
|
PQclear (result);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
2015-06-12 10:28:17 +02:00
|
|
|
* @param denom_pub the public key used for signing coins of this denomination
|
2015-06-12 10:46:42 +02:00
|
|
|
* @param[out] issue set to issue information with value, fees and other info about the coin, can be NULL
|
2015-06-12 10:28:17 +02:00
|
|
|
* @return #GNUNET_OK on success; #GNUNET_NO if no record was found, #GNUNET_SYSERR on failure
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
postgres_get_denomination_info (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-06-12 10:28:17 +02:00
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_DenominationKeyInformationP *issue)
|
2015-06-12 10:28:17 +02:00
|
|
|
{
|
|
|
|
PGresult *result;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_rsa_public_key (denom_pub->rsa_public_key),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-06-12 10:28:17 +02:00
|
|
|
};
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2015-06-12 10:46:42 +02:00
|
|
|
"denomination_get",
|
2015-06-12 10:28:17 +02:00
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
QUERY_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 == PQntuples (result))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
if (1 != PQntuples (result))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-06-12 10:46:42 +02:00
|
|
|
if (NULL == issue)
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
2015-06-12 10:28:17 +02:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("master_pub",
|
2015-07-06 10:16:49 +02:00
|
|
|
&issue->properties.master),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("master_sig",
|
2015-06-12 10:28:17 +02:00
|
|
|
&issue->signature),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_absolute_time_nbo ("valid_from",
|
2015-07-06 10:16:49 +02:00
|
|
|
&issue->properties.start),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_absolute_time_nbo ("expire_withdraw",
|
2015-07-06 10:16:49 +02:00
|
|
|
&issue->properties.expire_withdraw),
|
2016-05-02 05:10:40 +02:00
|
|
|
GNUNET_PQ_result_spec_absolute_time_nbo ("expire_deposit",
|
|
|
|
&issue->properties.expire_deposit),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_absolute_time_nbo ("expire_legal",
|
2015-07-06 10:16:49 +02:00
|
|
|
&issue->properties.expire_legal),
|
2015-06-12 10:28:17 +02:00
|
|
|
TALER_PQ_result_spec_amount_nbo ("coin",
|
2015-07-06 10:16:49 +02:00
|
|
|
&issue->properties.value),
|
2015-06-12 10:28:17 +02:00
|
|
|
TALER_PQ_result_spec_amount_nbo ("fee_withdraw",
|
2015-07-06 10:16:49 +02:00
|
|
|
&issue->properties.fee_withdraw),
|
2015-06-12 10:28:17 +02:00
|
|
|
TALER_PQ_result_spec_amount_nbo ("fee_deposit",
|
2015-07-06 10:16:49 +02:00
|
|
|
&issue->properties.fee_deposit),
|
2015-06-12 10:28:17 +02:00
|
|
|
TALER_PQ_result_spec_amount_nbo ("fee_refresh",
|
2015-07-06 10:16:49 +02:00
|
|
|
&issue->properties.fee_refresh),
|
2016-04-20 01:50:26 +02:00
|
|
|
TALER_PQ_result_spec_amount_nbo ("fee_refund",
|
|
|
|
&issue->properties.fee_refund),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2015-06-12 10:28:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
EXITIF (GNUNET_OK !=
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
2016-04-04 17:40:51 +02:00
|
|
|
rs,
|
|
|
|
0));
|
2015-06-12 10:28:17 +02:00
|
|
|
}
|
|
|
|
PQclear (result);
|
2016-05-06 23:51:15 +02:00
|
|
|
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);
|
2015-06-12 10:28:17 +02:00
|
|
|
return GNUNET_OK;
|
|
|
|
|
|
|
|
EXITIF_exit:
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
* @return #GNUNET_OK upon success; #GNUNET_SYSERR upon failure
|
2015-03-05 16:16:38 +01:00
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
|
|
|
postgres_reserve_get (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
struct TALER_EXCHANGEDB_Reserve *reserve)
|
2015-03-05 16:16:38 +01:00
|
|
|
{
|
|
|
|
PGresult *result;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type(&reserve->pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-03-05 16:16:38 +01:00
|
|
|
};
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2015-06-03 15:41:09 +02:00
|
|
|
"reserve_get",
|
2015-03-05 16:16:38 +01:00
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
2015-03-05 17:55:19 +01:00
|
|
|
QUERY_ERR (result);
|
2015-05-13 20:25:02 +02:00
|
|
|
PQclear (result);
|
2015-03-05 16:16:38 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 == PQntuples (result))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
2015-06-12 10:28:17 +02:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2015-06-12 10:28:17 +02:00
|
|
|
TALER_PQ_result_spec_amount("current_balance", &reserve->balance),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_absolute_time("expiration_date", &reserve->expiry),
|
|
|
|
GNUNET_PQ_result_spec_end
|
2015-06-12 10:28:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
EXITIF (GNUNET_OK !=
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
2016-11-17 15:12:01 +01:00
|
|
|
rs,
|
|
|
|
0));
|
2015-06-12 10:28:17 +02:00
|
|
|
}
|
2015-03-05 16:16:38 +01:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
|
|
|
|
|
|
|
EXITIF_exit:
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
* @return #GNUNET_OK upon successful update; #GNUNET_SYSERR upon any error
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
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
|
|
|
{
|
|
|
|
PGresult *result;
|
|
|
|
int ret;
|
|
|
|
|
2015-03-22 22:14:30 +01:00
|
|
|
if (NULL == reserve)
|
2015-03-05 18:16:32 +01:00
|
|
|
return GNUNET_SYSERR;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_absolute_time (&reserve->expiry),
|
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
|
|
|
};
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2015-06-03 15:41:09 +02:00
|
|
|
"reserve_update",
|
2015-03-05 18:16:32 +01:00
|
|
|
params);
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus(result))
|
|
|
|
{
|
|
|
|
QUERY_ERR (result);
|
|
|
|
ret = GNUNET_SYSERR;
|
|
|
|
}
|
2015-05-07 13:59:56 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = GNUNET_OK;
|
|
|
|
}
|
2015-03-05 18:16:32 +01:00
|
|
|
PQclear (result);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-06-05 13:48:57 +02:00
|
|
|
* Insert an incoming transaction into reserves. New reserves are also created
|
2015-05-15 17:24:27 +02:00
|
|
|
* through this function. Note that this API call starts (and stops) its
|
|
|
|
* own transaction scope (so the application must not do so).
|
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
|
2016-05-26 16:38:59 +02:00
|
|
|
* @param sender_account_details account information for the sender
|
|
|
|
* @param transfer_details information that uniquely identifies the transfer
|
2015-05-13 15:57:35 +02:00
|
|
|
* @return #GNUNET_OK upon success; #GNUNET_NO if the given
|
|
|
|
* @a details are already known for this @a reserve_pub,
|
|
|
|
* #GNUNET_SYSERR upon failures (DB error, incompatible currency)
|
2015-03-05 18:16:32 +01:00
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
|
|
|
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,
|
2016-05-26 16:38:59 +02:00
|
|
|
const json_t *sender_account_details,
|
|
|
|
const json_t *transfer_details)
|
2015-03-05 18:16:32 +01:00
|
|
|
{
|
|
|
|
PGresult *result;
|
|
|
|
int reserve_exists;
|
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
|
|
|
|
2016-05-20 14:25:02 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
postgres_start (cls,
|
|
|
|
session))
|
2015-03-05 18:16:32 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-05-13 15:57:35 +02:00
|
|
|
reserve.pub = *reserve_pub;
|
2015-03-20 23:51:28 +01:00
|
|
|
reserve_exists = postgres_reserve_get (cls,
|
|
|
|
session,
|
2015-05-13 15:57:35 +02:00
|
|
|
&reserve);
|
2015-03-05 18:16:32 +01:00
|
|
|
if (GNUNET_SYSERR == reserve_exists)
|
|
|
|
{
|
2015-05-15 17:24:27 +02:00
|
|
|
GNUNET_break (0);
|
|
|
|
goto rollback;
|
2015-03-05 18:16:32 +01:00
|
|
|
}
|
2015-07-01 00:01:21 +02:00
|
|
|
expiry = GNUNET_TIME_absolute_add (execution_time,
|
2015-06-11 13:14:59 +02:00
|
|
|
TALER_IDLE_RESERVE_EXPIRATION_TIME);
|
2015-03-05 18:16:32 +01:00
|
|
|
if (GNUNET_NO == reserve_exists)
|
|
|
|
{
|
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
|
|
|
|
as a foreign key. */
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (reserve_pub),
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_amount (balance),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_absolute_time (&expiry),
|
|
|
|
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");
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-05-26 16:38:59 +02:00
|
|
|
"reserve_create",
|
|
|
|
params);
|
2015-03-05 18:16:32 +01:00
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus(result))
|
|
|
|
{
|
|
|
|
QUERY_ERR (result);
|
2015-06-05 13:48:57 +02:00
|
|
|
PQclear (result);
|
2015-03-05 18:16:32 +01:00
|
|
|
goto rollback;
|
|
|
|
}
|
2015-03-07 14:01:26 +01:00
|
|
|
PQclear (result);
|
2015-06-05 13:48:57 +02:00
|
|
|
}
|
|
|
|
/* Create new incoming transaction, SQL "primary key" logic
|
|
|
|
is used to guard against duplicates. If a duplicate is
|
|
|
|
detected, we rollback (which really shouldn't undo
|
|
|
|
anything) and return #GNUNET_NO to indicate that this failure
|
|
|
|
is kind-of harmless (already executed). */
|
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),
|
2015-06-04 10:43:44 +02:00
|
|
|
TALER_PQ_query_param_amount (balance),
|
2016-05-26 16:38:59 +02:00
|
|
|
TALER_PQ_query_param_json (sender_account_details),
|
|
|
|
TALER_PQ_query_param_json (transfer_details),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_absolute_time (&execution_time),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-06-04 10:43:44 +02:00
|
|
|
};
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-05-26 16:38:59 +02:00
|
|
|
"reserves_in_add_transaction",
|
|
|
|
params);
|
2015-06-04 10:43:44 +02:00
|
|
|
}
|
2015-03-06 01:15:46 +01:00
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus(result))
|
2015-03-05 18:16:32 +01:00
|
|
|
{
|
2015-05-15 17:24:27 +02:00
|
|
|
const char *efield;
|
2015-06-02 12:52:05 +02:00
|
|
|
|
2015-05-15 17:24:27 +02:00
|
|
|
efield = PQresultErrorField (result,
|
|
|
|
PG_DIAG_SQLSTATE);
|
|
|
|
if ( (PGRES_FATAL_ERROR == PQresultStatus(result)) &&
|
|
|
|
(NULL != strstr ("23505", /* unique violation */
|
|
|
|
efield)) )
|
|
|
|
{
|
|
|
|
/* This means we had the same reserve/justification/details
|
|
|
|
before */
|
2016-05-20 14:25:02 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"Uniqueness violation, deposit details already known\n");
|
2015-05-15 17:24:27 +02:00
|
|
|
PQclear (result);
|
|
|
|
postgres_rollback (cls,
|
|
|
|
session);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
2015-03-05 18:16:32 +01:00
|
|
|
QUERY_ERR (result);
|
2015-08-13 23:16:31 +02:00
|
|
|
PQclear (result);
|
2015-03-05 18:16:32 +01:00
|
|
|
goto rollback;
|
|
|
|
}
|
2015-03-18 18:55:41 +01:00
|
|
|
PQclear (result);
|
2015-06-05 13:48:57 +02:00
|
|
|
|
|
|
|
if (GNUNET_YES == reserve_exists)
|
|
|
|
{
|
|
|
|
/* 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
|
|
|
|
never actually have to rollback anything. */
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Reserve updated_reserve;
|
2015-06-05 13:48:57 +02:00
|
|
|
|
|
|
|
updated_reserve.pub = reserve.pub;
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&updated_reserve.balance,
|
|
|
|
&reserve.balance,
|
|
|
|
balance))
|
|
|
|
{
|
|
|
|
/* currency overflow or incompatible currency */
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"Attempt to deposit incompatible amount into reserve\n");
|
|
|
|
goto rollback;
|
|
|
|
}
|
|
|
|
updated_reserve.expiry = GNUNET_TIME_absolute_max (expiry,
|
|
|
|
reserve.expiry);
|
|
|
|
if (GNUNET_OK != reserves_update (cls,
|
2015-06-04 10:35:37 +02:00
|
|
|
session,
|
2015-06-05 13:48:57 +02:00
|
|
|
&updated_reserve))
|
|
|
|
goto rollback;
|
|
|
|
}
|
2015-03-20 23:51:28 +01:00
|
|
|
if (GNUNET_OK != postgres_commit (cls,
|
|
|
|
session))
|
2017-03-14 15:36:19 +01:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"Failed to commit transaction adding amount to reserve\n");
|
2015-03-05 18:16:32 +01:00
|
|
|
return GNUNET_SYSERR;
|
2017-03-14 15:36:19 +01:00
|
|
|
}
|
2015-03-05 18:16:32 +01:00
|
|
|
return GNUNET_OK;
|
2015-06-05 13:48:57 +02:00
|
|
|
|
2015-03-05 18:16:32 +01:00
|
|
|
rollback:
|
2016-05-20 14:25:02 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"Transaction failed, doing rollback\n");
|
2015-03-20 23:51:28 +01:00
|
|
|
postgres_rollback (cls,
|
|
|
|
session);
|
2015-03-05 18:16:32 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-01-29 00:09:48 +01: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
|
|
|
|
* @return #GNUNET_SYSERR on internal error
|
|
|
|
* #GNUNET_NO if the collectable was not found
|
|
|
|
* #GNUNET_YES on success
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
2015-06-11 12:30:14 +02:00
|
|
|
postgres_get_withdraw_info (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-06-11 13:02:57 +02:00
|
|
|
const struct GNUNET_HashCode *h_blind,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_CollectableBlindcoin *collectable)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
|
|
|
PGresult *result;
|
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
|
|
|
};
|
2015-03-07 14:03:01 +01:00
|
|
|
int ret;
|
2015-01-28 22:18:53 +01:00
|
|
|
|
2015-03-07 14:03:01 +01:00
|
|
|
ret = GNUNET_SYSERR;
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2015-06-11 12:30:14 +02:00
|
|
|
"get_withdraw_info",
|
2015-01-28 22:18:53 +01:00
|
|
|
params);
|
|
|
|
|
2015-03-07 14:03:01 +01:00
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2015-03-07 14:03:01 +01:00
|
|
|
QUERY_ERR (result);
|
|
|
|
goto cleanup;
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
|
|
|
if (0 == PQntuples (result))
|
|
|
|
{
|
2015-03-07 14:03:01 +01:00
|
|
|
ret = GNUNET_NO;
|
|
|
|
goto cleanup;
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
2015-06-11 13:02:57 +02:00
|
|
|
&collectable->denom_pub.rsa_public_key),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("denom_sig",
|
2015-06-11 13:02:57 +02:00
|
|
|
&collectable->sig.rsa_signature),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("reserve_sig",
|
2015-06-11 13:02:57 +02:00
|
|
|
&collectable->reserve_sig),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("reserve_pub",
|
2015-06-11 13:02:57 +02:00
|
|
|
&collectable->reserve_pub),
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&collectable->amount_with_fee),
|
2016-05-27 14:39:04 +02:00
|
|
|
TALER_PQ_result_spec_amount ("fee_withdraw",
|
2015-06-11 13:02:57 +02:00
|
|
|
&collectable->withdraw_fee),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2015-06-11 13:02:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
0))
|
2015-06-11 13:02:57 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
2015-06-05 15:04:21 +02:00
|
|
|
collectable->h_coin_envelope = *h_blind;
|
2015-03-07 14:03:01 +01:00
|
|
|
ret = GNUNET_YES;
|
|
|
|
|
|
|
|
cleanup:
|
2015-01-28 22:18:53 +01:00
|
|
|
PQclear (result);
|
2015-03-07 14:03:01 +01:00
|
|
|
return ret;
|
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
|
|
|
|
* @return #GNUNET_SYSERR on internal error
|
2016-11-17 15:53:16 +01:00
|
|
|
* #GNUNET_NO if we failed but should retry the transaction
|
2015-01-28 22:18:53 +01:00
|
|
|
* #GNUNET_YES on success
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
2015-06-11 12:30:14 +02:00
|
|
|
postgres_insert_withdraw_info (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_EXCHANGEDB_CollectableBlindcoin *collectable)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
|
|
|
PGresult *result;
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Reserve reserve;
|
2015-05-06 17:05:24 +02:00
|
|
|
int ret = GNUNET_SYSERR;
|
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),
|
|
|
|
GNUNET_PQ_query_param_rsa_public_key (collectable->denom_pub.rsa_public_key),
|
|
|
|
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),
|
|
|
|
GNUNET_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
|
|
|
};
|
2015-05-06 17:05:24 +02:00
|
|
|
|
2015-06-11 13:14:59 +02:00
|
|
|
now = GNUNET_TIME_absolute_get ();
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2015-06-11 12:30:14 +02:00
|
|
|
"insert_withdraw_info",
|
2015-03-07 13:56:26 +01:00
|
|
|
params);
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2015-03-09 15:35:35 +01:00
|
|
|
QUERY_ERR (result);
|
2015-07-01 14:11:54 +02:00
|
|
|
goto cleanup;
|
2015-03-18 13:50:03 +01:00
|
|
|
}
|
2015-03-22 22:14:30 +01:00
|
|
|
reserve.pub = collectable->reserve_pub;
|
2015-03-20 23:51:28 +01:00
|
|
|
if (GNUNET_OK != postgres_reserve_get (cls,
|
|
|
|
session,
|
|
|
|
&reserve))
|
2015-06-05 15:04:21 +02:00
|
|
|
{
|
|
|
|
/* Should have been checked before we got here... */
|
|
|
|
GNUNET_break (0);
|
2015-07-01 14:11:54 +02:00
|
|
|
goto cleanup;
|
2015-06-05 15:04:21 +02:00
|
|
|
}
|
2015-03-18 18:56:48 +01:00
|
|
|
if (GNUNET_SYSERR ==
|
|
|
|
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,
|
|
|
|
"Withdrawal from reserve `%s' refused due to balance missmatch. Retrying.\n",
|
|
|
|
TALER_B2S (&collectable->reserve_pub));
|
|
|
|
ret = GNUNET_NO;
|
2015-07-01 14:11:54 +02:00
|
|
|
goto cleanup;
|
2015-06-05 15:04:21 +02:00
|
|
|
}
|
2015-06-11 13:14:59 +02:00
|
|
|
expiry = GNUNET_TIME_absolute_add (now,
|
|
|
|
TALER_IDLE_RESERVE_EXPIRATION_TIME);
|
|
|
|
reserve.expiry = GNUNET_TIME_absolute_max (expiry,
|
|
|
|
reserve.expiry);
|
2015-06-04 10:35:37 +02:00
|
|
|
if (GNUNET_OK != reserves_update (cls,
|
|
|
|
session,
|
|
|
|
&reserve))
|
2015-03-18 13:50:03 +01:00
|
|
|
{
|
2015-07-01 14:11:54 +02:00
|
|
|
GNUNET_break (0);
|
2015-03-07 13:56:26 +01:00
|
|
|
goto cleanup;
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
2015-07-01 14:11:54 +02:00
|
|
|
ret = GNUNET_OK;
|
2015-03-07 13:56:26 +01:00
|
|
|
cleanup:
|
|
|
|
PQclear (result);
|
|
|
|
return ret;
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-29 00:09:48 +01:00
|
|
|
/**
|
|
|
|
* Get all of the transaction history associated with the specified
|
|
|
|
* reserve.
|
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session connection to use
|
2015-01-29 00:09:48 +01:00
|
|
|
* @param reserve_pub public key of the reserve
|
|
|
|
* @return known transaction history (NULL if reserve is unknown)
|
|
|
|
*/
|
2016-03-01 15:35:04 +01:00
|
|
|
static struct TALER_EXCHANGEDB_ReserveHistory *
|
2015-03-20 23:51:28 +01:00
|
|
|
postgres_get_reserve_history (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-03-27 19:58:40 +01:00
|
|
|
const struct TALER_ReservePublicKeyP *reserve_pub)
|
2015-01-29 00:09:48 +01:00
|
|
|
{
|
|
|
|
PGresult *result;
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_ReserveHistory *rh;
|
|
|
|
struct TALER_EXCHANGEDB_ReserveHistory *rh_tail;
|
2015-03-09 17:05:35 +01:00
|
|
|
int rows;
|
|
|
|
int ret;
|
2015-01-29 00:09:48 +01:00
|
|
|
|
2015-03-09 17:05:35 +01:00
|
|
|
rh = NULL;
|
2015-06-05 15:04:21 +02:00
|
|
|
rh_tail = NULL;
|
2015-03-09 17:05:35 +01:00
|
|
|
ret = GNUNET_SYSERR;
|
2015-01-29 00:09:48 +01:00
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_BankTransfer *bt;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (reserve_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-03-09 17:05:35 +01:00
|
|
|
};
|
2015-01-29 00:09:48 +01:00
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-06-05 22:03:09 +02:00
|
|
|
"reserves_in_get_transactions",
|
|
|
|
params);
|
2015-03-09 17:05:35 +01:00
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
QUERY_ERR (result);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if (0 == (rows = PQntuples (result)))
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"Asked to fetch history for an unknown reserve.\n");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
while (0 < rows)
|
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
bt = GNUNET_new (struct TALER_EXCHANGEDB_BankTransfer);
|
2015-03-09 17:05:35 +01:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2016-05-27 15:34:24 +02:00
|
|
|
TALER_PQ_result_spec_amount ("credit",
|
2015-06-11 13:38:47 +02:00
|
|
|
&bt->amount),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_absolute_time ("execution_date",
|
2015-06-11 13:38:47 +02:00
|
|
|
&bt->execution_date),
|
2016-05-26 16:38:59 +02:00
|
|
|
TALER_PQ_result_spec_json ("sender_account_details",
|
|
|
|
&bt->sender_account_details),
|
|
|
|
TALER_PQ_result_spec_json ("transfer_details",
|
|
|
|
&bt->transfer_details),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2015-06-11 13:38:47 +02:00
|
|
|
};
|
2016-04-04 17:40:51 +02:00
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
--rows))
|
2015-06-11 13:38:47 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (bt);
|
|
|
|
PQclear (result);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2015-03-09 17:05:35 +01:00
|
|
|
}
|
2015-03-22 22:14:30 +01:00
|
|
|
bt->reserve_pub = *reserve_pub;
|
2015-06-05 15:04:21 +02:00
|
|
|
if (NULL != rh_tail)
|
2015-03-09 17:05:35 +01:00
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
rh_tail->next = GNUNET_new (struct TALER_EXCHANGEDB_ReserveHistory);
|
2015-06-05 15:04:21 +02:00
|
|
|
rh_tail = rh_tail->next;
|
2015-03-09 17:05:35 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
rh_tail = GNUNET_new (struct TALER_EXCHANGEDB_ReserveHistory);
|
2015-06-05 15:04:21 +02:00
|
|
|
rh = rh_tail;
|
2015-03-09 17:05:35 +01:00
|
|
|
}
|
2016-03-01 15:35:04 +01:00
|
|
|
rh_tail->type = TALER_EXCHANGEDB_RO_BANK_TO_EXCHANGE;
|
2015-06-05 15:04:21 +02:00
|
|
|
rh_tail->details.bank = bt;
|
2017-03-14 15:36:19 +01:00
|
|
|
} /* end of 'while (0 < rows)' */
|
2015-06-05 15:04:21 +02:00
|
|
|
PQclear (result);
|
2015-01-29 00:09:48 +01:00
|
|
|
}
|
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (reserve_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-03-09 17:05:35 +01:00
|
|
|
};
|
2015-06-05 15:05:28 +02:00
|
|
|
|
|
|
|
GNUNET_assert (NULL != rh);
|
|
|
|
GNUNET_assert (NULL != rh_tail);
|
|
|
|
GNUNET_assert (NULL == rh_tail->next);
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2017-03-08 11:59:01 +01:00
|
|
|
"get_reserves_out",
|
|
|
|
params);
|
2015-03-09 17:05:35 +01:00
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
2015-01-29 00:09:48 +01:00
|
|
|
{
|
2015-03-09 17:05:35 +01:00
|
|
|
QUERY_ERR (result);
|
2015-06-05 15:04:21 +02:00
|
|
|
PQclear (result);
|
2015-03-09 17:05:35 +01:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2015-06-05 15:05:28 +02:00
|
|
|
rows = PQntuples (result);
|
2015-03-09 17:05:35 +01:00
|
|
|
while (0 < rows)
|
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_CollectableBlindcoin *cbc;
|
2015-06-11 13:02:57 +02:00
|
|
|
|
2016-03-01 15:35:04 +01:00
|
|
|
cbc = GNUNET_new (struct TALER_EXCHANGEDB_CollectableBlindcoin);
|
2015-03-09 17:05:35 +01:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_blind_ev",
|
2015-06-11 13:02:57 +02:00
|
|
|
&cbc->h_coin_envelope),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
2015-06-11 13:02:57 +02:00
|
|
|
&cbc->denom_pub.rsa_public_key),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("denom_sig",
|
2015-06-11 13:02:57 +02:00
|
|
|
&cbc->sig.rsa_signature),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("reserve_sig",
|
2015-06-11 13:02:57 +02:00
|
|
|
&cbc->reserve_sig),
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&cbc->amount_with_fee),
|
2016-05-27 14:39:04 +02:00
|
|
|
TALER_PQ_result_spec_amount ("fee_withdraw",
|
2015-06-11 13:02:57 +02:00
|
|
|
&cbc->withdraw_fee),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2015-06-11 13:02:57 +02:00
|
|
|
};
|
2016-04-04 17:40:51 +02:00
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
--rows))
|
2015-06-11 13:02:57 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (cbc);
|
|
|
|
PQclear (result);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
cbc->reserve_pub = *reserve_pub;
|
2015-03-09 17:05:35 +01:00
|
|
|
}
|
2016-03-01 15:35:04 +01:00
|
|
|
rh_tail->next = GNUNET_new (struct TALER_EXCHANGEDB_ReserveHistory);
|
2015-06-05 15:04:21 +02:00
|
|
|
rh_tail = rh_tail->next;
|
2016-03-01 15:35:04 +01:00
|
|
|
rh_tail->type = TALER_EXCHANGEDB_RO_WITHDRAW_COIN;
|
2015-06-05 15:04:21 +02:00
|
|
|
rh_tail->details.withdraw = cbc;
|
2017-03-14 15:36:19 +01:00
|
|
|
} /* end of 'while (0 < rows)' */
|
2015-06-05 15:04:21 +02:00
|
|
|
ret = GNUNET_OK;
|
|
|
|
PQclear (result);
|
2015-01-29 00:09:48 +01:00
|
|
|
}
|
2015-03-09 17:05:35 +01:00
|
|
|
cleanup:
|
|
|
|
if (GNUNET_SYSERR == ret)
|
|
|
|
{
|
2015-03-22 13:02:11 +01:00
|
|
|
common_free_reserve_history (cls,
|
|
|
|
rh);
|
2015-03-09 17:05:35 +01:00
|
|
|
rh = NULL;
|
|
|
|
}
|
|
|
|
return rh;
|
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
|
|
|
|
* @return #GNUNET_YES if we know this operation,
|
2015-08-09 18:03:42 +02:00
|
|
|
* #GNUNET_NO if this exact deposit is unknown to us
|
|
|
|
* #GNUNET_SYSERR on DB error
|
2015-01-28 22:18:53 +01:00
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
|
|
|
postgres_have_deposit (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_EXCHANGEDB_Deposit *deposit)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
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-02-07 15:09:10 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->h_proposal_data),
|
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
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2015-01-28 22:18:53 +01:00
|
|
|
"get_deposit",
|
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK !=
|
|
|
|
PQresultStatus (result))
|
|
|
|
{
|
2015-03-05 17:53:15 +01:00
|
|
|
BREAK_DB_ERR (result);
|
2015-06-12 11:47:01 +02:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 == PQntuples (result))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now we check that the other information in @a deposit
|
|
|
|
also matches, and if not report inconsistencies. */
|
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Deposit deposit2;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2015-06-12 11:47:01 +02:00
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&deposit2.amount_with_fee),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_absolute_time ("timestamp",
|
2015-06-12 11:47:01 +02:00
|
|
|
&deposit2.timestamp),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_absolute_time ("refund_deadline",
|
2015-06-12 11:47:01 +02:00
|
|
|
&deposit2.refund_deadline),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_absolute_time ("wire_deadline",
|
2015-10-28 21:06:23 +01:00
|
|
|
&deposit2.wire_deadline),
|
2017-02-06 15:41:39 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_proposal_data",
|
|
|
|
&deposit2.h_proposal_data),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_wire",
|
2015-06-12 11:47:01 +02:00
|
|
|
&deposit2.h_wire),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2015-06-12 11:47:01 +02:00
|
|
|
};
|
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
0))
|
2015-06-12 11:47:01 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-06-12 11:57:10 +02:00
|
|
|
if ( (0 != TALER_amount_cmp (&deposit->amount_with_fee,
|
|
|
|
&deposit2.amount_with_fee)) ||
|
|
|
|
(deposit->timestamp.abs_value_us !=
|
|
|
|
deposit2.timestamp.abs_value_us) ||
|
|
|
|
(deposit->refund_deadline.abs_value_us !=
|
|
|
|
deposit2.refund_deadline.abs_value_us) ||
|
2017-02-06 15:41:39 +01:00
|
|
|
(0 != memcmp (&deposit->h_proposal_data,
|
|
|
|
&deposit2.h_proposal_data,
|
2015-06-12 11:57:10 +02:00
|
|
|
sizeof (struct GNUNET_HashCode))) ||
|
|
|
|
(0 != memcmp (&deposit->h_wire,
|
|
|
|
&deposit2.h_wire,
|
|
|
|
sizeof (struct GNUNET_HashCode))) )
|
2015-06-12 11:47:01 +02:00
|
|
|
{
|
2015-08-09 18:03:42 +02:00
|
|
|
/* Inconsistencies detected! Does not match! (We might want to
|
2015-06-12 11:47:01 +02:00
|
|
|
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 */
|
|
|
|
PQclear (result);
|
2015-08-09 18:03:42 +02:00
|
|
|
return GNUNET_NO;
|
2015-06-12 11:47:01 +02:00
|
|
|
}
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
2015-03-16 11:01:01 +01:00
|
|
|
PQclear (result);
|
2015-06-12 11:47:01 +02:00
|
|
|
return GNUNET_YES;
|
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
|
2016-05-27 15:34:24 +02:00
|
|
|
* @param deposit_serial_id identifies the deposit row to modify
|
2016-01-27 16:42:24 +01:00
|
|
|
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
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
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-01-27 16:42:24 +01:00
|
|
|
"mark_deposit_tiny",
|
|
|
|
params);
|
|
|
|
if (PGRES_COMMAND_OK !=
|
|
|
|
PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
* @param deposit the deposit to check
|
|
|
|
* @return #GNUNET_YES if is is marked done done, #GNUNET_NO if not,
|
|
|
|
* #GNUNET_SYSERR on error (deposit unknown)
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
postgres_test_deposit_done (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_EXCHANGEDB_Deposit *deposit)
|
|
|
|
{
|
2016-05-06 12:55:44 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->coin.coin_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->merchant_pub),
|
2017-02-06 15:41:39 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->h_proposal_data),
|
2016-05-06 12:55:44 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->h_wire),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
|
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
|
|
|
"test_deposit_done",
|
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK !=
|
|
|
|
PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 == PQntuples (result))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-05-21 19:22:03 +02:00
|
|
|
if (1 != PQntuples (result))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-05-06 12:55:44 +02:00
|
|
|
|
|
|
|
{
|
2016-05-21 19:22:03 +02:00
|
|
|
uint8_t done = 0;
|
2016-05-06 12:55:44 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2016-05-21 19:22:03 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("done",
|
|
|
|
&done),
|
2016-05-06 12:55:44 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2016-11-17 15:12:01 +01:00
|
|
|
|
2016-05-06 12:55:44 +02:00
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
0))
|
2016-05-06 12:55:44 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return (done ? GNUNET_YES : GNUNET_NO);
|
|
|
|
}
|
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
|
2016-05-27 15:34:24 +02:00
|
|
|
* @param deposit_serial_id identifies the deposit row to modify
|
2016-01-27 16:42:24 +01:00
|
|
|
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
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
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-01-27 16:42:24 +01:00
|
|
|
"mark_deposit_done",
|
|
|
|
params);
|
|
|
|
if (PGRES_COMMAND_OK !=
|
|
|
|
PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
* @return number of rows processed, 0 if none exist,
|
|
|
|
* #GNUNET_SYSERR on error
|
|
|
|
*/
|
|
|
|
static int
|
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
|
|
|
{
|
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[] = {
|
2016-04-10 02:43:09 +02:00
|
|
|
GNUNET_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
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
unsigned int n;
|
2016-01-27 16:42:24 +01:00
|
|
|
int ret;
|
2015-09-19 20:28:37 +02:00
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-01-27 16:42:24 +01:00
|
|
|
"deposits_get_ready",
|
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK !=
|
2015-09-19 20:28:37 +02:00
|
|
|
PQresultStatus (result))
|
|
|
|
{
|
2016-01-27 16:42:24 +01:00
|
|
|
BREAK_DB_ERR (result);
|
2015-09-19 20:28:37 +02:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-01-27 16:42:24 +01:00
|
|
|
if (0 == (n = PQntuples (result)))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
GNUNET_break (1 == n);
|
|
|
|
{
|
|
|
|
struct TALER_Amount amount_with_fee;
|
|
|
|
struct TALER_Amount deposit_fee;
|
|
|
|
struct GNUNET_TIME_Absolute wire_deadline;
|
2017-02-06 15:41:39 +01:00
|
|
|
struct GNUNET_HashCode h_proposal_data;
|
2016-01-27 16:42:24 +01:00
|
|
|
struct TALER_MerchantPublicKeyP merchant_pub;
|
|
|
|
struct TALER_CoinSpendPublicKeyP coin_pub;
|
|
|
|
uint64_t serial_id;
|
|
|
|
json_t *wire;
|
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",
|
2016-01-27 16:42:24 +01:00
|
|
|
&serial_id),
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&amount_with_fee),
|
2016-05-27 14:04:29 +02:00
|
|
|
TALER_PQ_result_spec_amount ("fee_deposit",
|
2016-01-27 16:42:24 +01:00
|
|
|
&deposit_fee),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_absolute_time ("wire_deadline",
|
2016-01-27 16:42:24 +01:00
|
|
|
&wire_deadline),
|
2017-02-06 15:41:39 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_proposal_data",
|
|
|
|
&h_proposal_data),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_pub",
|
2016-01-27 16:42:24 +01:00
|
|
|
&merchant_pub),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub",
|
2016-01-27 16:42:24 +01:00
|
|
|
&coin_pub),
|
|
|
|
TALER_PQ_result_spec_json ("wire",
|
|
|
|
&wire),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2016-01-27 16:42:24 +01:00
|
|
|
};
|
2016-04-04 17:40:51 +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,
|
|
|
|
0))
|
2016-01-27 16:42:24 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
ret = deposit_cb (deposit_cb_cls,
|
|
|
|
serial_id,
|
|
|
|
&merchant_pub,
|
|
|
|
&coin_pub,
|
|
|
|
&amount_with_fee,
|
|
|
|
&deposit_fee,
|
2017-02-06 15:41:39 +01:00
|
|
|
&h_proposal_data,
|
2016-01-27 16:42:24 +01:00
|
|
|
wire_deadline,
|
|
|
|
wire);
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2016-01-27 16:42:24 +01:00
|
|
|
PQclear (result);
|
|
|
|
}
|
|
|
|
return (GNUNET_OK == ret) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
* @return number of rows processed, 0 if none exist,
|
|
|
|
* #GNUNET_SYSERR on error
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
postgres_iterate_matching_deposits (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2016-01-27 16:42:24 +01:00
|
|
|
const struct GNUNET_HashCode *h_wire,
|
|
|
|
const struct TALER_MerchantPublicKeyP *merchant_pub,
|
2016-03-01 15:35:04 +01:00
|
|
|
TALER_EXCHANGEDB_DepositIterator deposit_cb,
|
2016-01-27 16:42:24 +01:00
|
|
|
void *deposit_cb_cls,
|
|
|
|
uint32_t limit)
|
|
|
|
{
|
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
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
unsigned int i;
|
|
|
|
unsigned int n;
|
2015-09-19 20:28:37 +02:00
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-04-06 10:22:09 +02:00
|
|
|
"deposits_iterate_matching",
|
|
|
|
params);
|
2015-09-19 20:28:37 +02:00
|
|
|
if (PGRES_TUPLES_OK !=
|
|
|
|
PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 == (n = PQntuples (result)))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return 0;
|
|
|
|
}
|
2016-01-27 16:42:24 +01:00
|
|
|
if (n > limit)
|
|
|
|
n = limit;
|
2015-09-19 20:28:37 +02:00
|
|
|
for (i=0;i<n;i++)
|
|
|
|
{
|
|
|
|
struct TALER_Amount amount_with_fee;
|
|
|
|
struct TALER_Amount deposit_fee;
|
2015-10-28 21:06:23 +01:00
|
|
|
struct GNUNET_TIME_Absolute wire_deadline;
|
2017-02-06 15:41:39 +01:00
|
|
|
struct GNUNET_HashCode h_proposal_data;
|
2016-01-27 16:42:24 +01:00
|
|
|
struct TALER_CoinSpendPublicKeyP coin_pub;
|
|
|
|
uint64_t serial_id;
|
2015-09-19 20:28:37 +02:00
|
|
|
int ret;
|
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",
|
2016-04-06 10:22:09 +02:00
|
|
|
&serial_id),
|
2015-09-19 20:28:37 +02:00
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&amount_with_fee),
|
2016-05-27 14:04:29 +02:00
|
|
|
TALER_PQ_result_spec_amount ("fee_deposit",
|
2015-09-19 20:28:37 +02:00
|
|
|
&deposit_fee),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_absolute_time ("wire_deadline",
|
2016-04-06 10:22:09 +02:00
|
|
|
&wire_deadline),
|
2017-02-06 15:41:39 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_proposal_data",
|
|
|
|
&h_proposal_data),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub",
|
2016-04-06 10:22:09 +02:00
|
|
|
&coin_pub),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2015-09-19 20:28:37 +02:00
|
|
|
};
|
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2015-09-19 20:28:37 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
ret = deposit_cb (deposit_cb_cls,
|
2016-01-27 16:42:24 +01:00
|
|
|
serial_id,
|
2016-04-06 10:22:09 +02:00
|
|
|
merchant_pub,
|
2016-01-27 16:42:24 +01:00
|
|
|
&coin_pub,
|
2015-09-19 20:28:37 +02:00
|
|
|
&amount_with_fee,
|
|
|
|
&deposit_fee,
|
2017-02-06 15:41:39 +01:00
|
|
|
&h_proposal_data,
|
2015-10-28 21:06:23 +01:00
|
|
|
wire_deadline,
|
2016-01-27 16:42:24 +01:00
|
|
|
NULL);
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2015-09-19 20:28:37 +02:00
|
|
|
if (GNUNET_OK != ret)
|
|
|
|
break;
|
|
|
|
}
|
2016-04-10 02:14:07 +02:00
|
|
|
PQclear (result);
|
2015-09-19 20:28:37 +02:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
* @return #GNUNET_SYSERR upon error; #GNUNET_NO if no coin is found; #GNUNET_OK
|
|
|
|
* if upon succesfullying retrieving the record data info @a
|
|
|
|
* coin_info
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
get_known_coin (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
struct TALER_CoinPublicInfo *coin_info)
|
|
|
|
{
|
|
|
|
PGresult *result;
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
int nrows;
|
|
|
|
|
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
|
|
|
"get_known_coin",
|
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
nrows = PQntuples (result);
|
|
|
|
if (0 == nrows)
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
GNUNET_assert (1 == nrows); /* due to primary key */
|
|
|
|
if (NULL == coin_info)
|
2016-06-11 18:22:33 +02:00
|
|
|
{
|
|
|
|
PQclear (result);
|
2016-05-08 15:44:44 +02:00
|
|
|
return GNUNET_YES;
|
2016-06-11 18:22:33 +02:00
|
|
|
}
|
2016-05-08 15:44:44 +02:00
|
|
|
{
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
2016-06-11 18:22:33 +02:00
|
|
|
&coin_info->denom_pub.rsa_public_key),
|
2016-05-08 15:44:44 +02:00
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("denom_sig",
|
2016-06-11 18:22:33 +02:00
|
|
|
&coin_info->denom_sig.rsa_signature),
|
2016-05-08 15:44:44 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
0))
|
2016-05-08 15:44:44 +02:00
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
coin_info->coin_pub = *coin_pub;
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert a coin we know of into the DB. The coin can then be referenced by
|
|
|
|
* tables for deposits, refresh and refund functionality.
|
|
|
|
*
|
|
|
|
* @param cls plugin closure
|
|
|
|
* @param session the shared database session
|
|
|
|
* @param coin_info the public coin info
|
|
|
|
* @return #GNUNET_SYSERR upon error; #GNUNET_OK upon success
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
insert_known_coin (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_CoinPublicInfo *coin_info)
|
|
|
|
{
|
|
|
|
PGresult *result;
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&coin_info->coin_pub),
|
|
|
|
GNUNET_PQ_query_param_rsa_public_key (coin_info->denom_pub.rsa_public_key),
|
|
|
|
GNUNET_PQ_query_param_rsa_signature (coin_info->denom_sig.rsa_signature),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
|
|
|
"insert_known_coin",
|
|
|
|
params);
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
2015-01-28 22:18:53 +01:00
|
|
|
* @param deposit deposit information to store
|
|
|
|
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
|
|
|
postgres_insert_deposit (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_EXCHANGEDB_Deposit *deposit)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2015-03-14 15:02:54 +01:00
|
|
|
PGresult *result;
|
|
|
|
int ret;
|
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),
|
|
|
|
GNUNET_PQ_query_param_absolute_time (&deposit->timestamp),
|
|
|
|
GNUNET_PQ_query_param_absolute_time (&deposit->refund_deadline),
|
|
|
|
GNUNET_PQ_query_param_absolute_time (&deposit->wire_deadline),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->merchant_pub),
|
2017-02-06 15:41:39 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&deposit->h_proposal_data),
|
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),
|
2016-05-06 12:55:44 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2016-05-08 15:44:44 +02:00
|
|
|
|
|
|
|
/* check if the coin is already known */
|
|
|
|
ret = get_known_coin (cls,
|
|
|
|
session,
|
|
|
|
&deposit->coin.coin_pub,
|
|
|
|
NULL);
|
|
|
|
if (GNUNET_SYSERR == ret)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (GNUNET_NO == ret) /* if not, insert it */
|
|
|
|
{
|
|
|
|
if (GNUNET_SYSERR ==
|
|
|
|
insert_known_coin (cls,
|
|
|
|
session,
|
|
|
|
&deposit->coin))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-06 12:55:44 +02:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
|
|
|
"insert_deposit",
|
|
|
|
params);
|
2015-01-28 22:18:53 +01:00
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
2015-03-05 17:53:15 +01:00
|
|
|
BREAK_DB_ERR (result);
|
2015-06-05 15:26:41 +02:00
|
|
|
ret = GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = GNUNET_OK;
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
|
|
|
PQclear (result);
|
2015-03-14 15:02:54 +01:00
|
|
|
return ret;
|
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
|
|
|
|
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
postgres_insert_refund (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct TALER_EXCHANGEDB_Refund *refund)
|
|
|
|
{
|
2016-05-06 12:55:44 +02:00
|
|
|
PGresult *result;
|
|
|
|
int ret;
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&refund->coin.coin_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&refund->merchant_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&refund->merchant_sig),
|
2017-02-06 15:41:39 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&refund->h_proposal_data),
|
2016-05-06 12:55:44 +02:00
|
|
|
GNUNET_PQ_query_param_uint64 (&refund->rtransaction_id),
|
|
|
|
TALER_PQ_query_param_amount (&refund->refund_amount),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
GNUNET_assert (GNUNET_YES ==
|
|
|
|
TALER_amount_cmp_currency (&refund->refund_amount,
|
|
|
|
&refund->refund_fee));
|
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
|
|
|
"insert_refund",
|
|
|
|
params);
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
ret = GNUNET_SYSERR;
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = GNUNET_OK;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return ret;
|
2016-05-05 22:57:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-29 20:00:21 +01:00
|
|
|
/**
|
2015-03-24 16:56:06 +01:00
|
|
|
* Lookup refresh session data under the given @a session_hash.
|
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
|
2015-03-24 16:56:06 +01:00
|
|
|
* @param session_hash hash over the melt to use to locate the session
|
2015-06-05 15:41:03 +02:00
|
|
|
* @param[out] refresh_session where to store the result, can be NULL
|
|
|
|
* to just check if the session exists
|
2015-01-29 20:00:21 +01:00
|
|
|
* @return #GNUNET_YES on success,
|
|
|
|
* #GNUNET_NO if not found,
|
|
|
|
* #GNUNET_SYSERR on DB failure
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
|
|
|
postgres_get_refresh_session (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-03-24 16:56:06 +01:00
|
|
|
const struct GNUNET_HashCode *session_hash,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_RefreshSession *refresh_session)
|
2015-01-29 20:00:21 +01:00
|
|
|
{
|
2015-04-09 23:21:35 +02:00
|
|
|
PGresult *result;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-01-29 20:00:21 +01:00
|
|
|
};
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-05-19 17:11:35 +02:00
|
|
|
"get_refresh_session",
|
|
|
|
params);
|
2015-01-29 20:00:21 +01:00
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
2015-04-09 23:21:35 +02:00
|
|
|
BREAK_DB_ERR (result);
|
2015-06-05 15:41:03 +02:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
2015-01-29 20:00:21 +01:00
|
|
|
}
|
|
|
|
if (0 == PQntuples (result))
|
2015-04-09 23:21:35 +02:00
|
|
|
{
|
2015-06-05 15:41:03 +02:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
2015-04-09 23:21:35 +02:00
|
|
|
}
|
2015-01-29 20:00:21 +01:00
|
|
|
GNUNET_assert (1 == PQntuples (result));
|
2015-03-20 23:51:28 +01:00
|
|
|
if (NULL == refresh_session)
|
2015-04-09 23:21:35 +02:00
|
|
|
{
|
2015-06-05 15:41:03 +02:00
|
|
|
/* We're done if the caller is only interested in whether the
|
|
|
|
* session exists or not */
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_YES;
|
2015-04-09 23:21:35 +02:00
|
|
|
}
|
2015-06-11 12:08:15 +02:00
|
|
|
memset (refresh_session,
|
|
|
|
0,
|
2016-03-01 15:35:04 +01:00
|
|
|
sizeof (struct TALER_EXCHANGEDB_RefreshSession));
|
2015-01-29 20:00:21 +01:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_uint16 ("num_newcoins",
|
2016-05-19 17:11:35 +02:00
|
|
|
&refresh_session->num_newcoins),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_uint16 ("noreveal_index",
|
2016-05-19 17:11:35 +02:00
|
|
|
&refresh_session->noreveal_index),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("old_coin_pub",
|
|
|
|
&refresh_session->melt.coin.coin_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("old_coin_sig",
|
|
|
|
&refresh_session->melt.coin_sig),
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&refresh_session->melt.amount_with_fee),
|
2016-05-27 14:14:13 +02:00
|
|
|
TALER_PQ_result_spec_amount ("fee_refresh",
|
2016-05-19 17:11:35 +02:00
|
|
|
&refresh_session->melt.melt_fee),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2015-06-05 15:41:03 +02:00
|
|
|
};
|
2016-05-19 17:11:35 +02:00
|
|
|
|
2015-06-11 12:08:15 +02:00
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
0))
|
2015-06-05 15:41:03 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-01-29 20:00:21 +01:00
|
|
|
}
|
2015-06-05 15:41:03 +02:00
|
|
|
PQclear (result);
|
2016-05-16 11:55:47 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
get_known_coin (cls,
|
|
|
|
session,
|
|
|
|
&refresh_session->melt.coin.coin_pub,
|
|
|
|
&refresh_session->melt.coin))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
refresh_session->melt.session_hash = *session_hash;
|
2015-06-05 15:41:03 +02:00
|
|
|
return GNUNET_YES;
|
2015-01-29 20:00:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-03-24 16:56:06 +01:00
|
|
|
* Store new refresh session data under the given @a session_hash.
|
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
|
2015-03-24 16:56:06 +01:00
|
|
|
* @param session_hash hash over the melt to use to locate the session
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param refresh_session session data to store
|
2015-01-29 20:00:21 +01:00
|
|
|
* @return #GNUNET_YES on success,
|
|
|
|
* #GNUNET_SYSERR on DB failure
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
|
|
|
postgres_create_refresh_session (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-03-24 16:56:06 +01:00
|
|
|
const struct GNUNET_HashCode *session_hash,
|
2016-03-01 15:35:04 +01:00
|
|
|
const struct TALER_EXCHANGEDB_RefreshSession *refresh_session)
|
2015-01-29 20:00:21 +01:00
|
|
|
{
|
2015-04-10 10:39:59 +02:00
|
|
|
PGresult *result;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (session_hash),
|
2016-05-16 11:55:47 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (&refresh_session->melt.coin.coin_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&refresh_session->melt.coin_sig),
|
|
|
|
TALER_PQ_query_param_amount (&refresh_session->melt.amount_with_fee),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_uint16 (&refresh_session->num_newcoins),
|
|
|
|
GNUNET_PQ_query_param_uint16 (&refresh_session->noreveal_index),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-01-29 20:00:21 +01:00
|
|
|
};
|
2015-05-25 22:50:57 +02:00
|
|
|
int ret;
|
2015-01-28 22:18:53 +01:00
|
|
|
|
2015-05-25 22:50:57 +02:00
|
|
|
/* check if the coin is already known */
|
2015-06-12 10:55:03 +02:00
|
|
|
ret = get_known_coin (cls,
|
|
|
|
session,
|
2016-05-16 11:55:47 +02:00
|
|
|
&refresh_session->melt.coin.coin_pub,
|
2015-06-12 10:55:03 +02:00
|
|
|
NULL);
|
2015-05-25 22:50:57 +02:00
|
|
|
if (GNUNET_SYSERR == ret)
|
2015-06-05 15:48:00 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2015-05-25 22:50:57 +02:00
|
|
|
return GNUNET_SYSERR;
|
2015-06-05 15:48:00 +02:00
|
|
|
}
|
2015-05-25 22:50:57 +02:00
|
|
|
if (GNUNET_NO == ret) /* if not, insert it */
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2016-05-08 15:44:44 +02:00
|
|
|
if (GNUNET_SYSERR ==
|
|
|
|
insert_known_coin (cls,
|
|
|
|
session,
|
2016-05-16 11:55:47 +02:00
|
|
|
&refresh_session->melt.coin))
|
2015-06-05 15:48:00 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
2015-05-25 22:50:57 +02:00
|
|
|
return GNUNET_SYSERR;
|
2015-06-05 15:48:00 +02:00
|
|
|
}
|
2015-01-28 22:18:53 +01:00
|
|
|
}
|
2016-05-16 11:55:47 +02:00
|
|
|
/* insert session */
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-05-16 11:55:47 +02:00
|
|
|
"insert_refresh_session",
|
2015-05-25 22:50:57 +02:00
|
|
|
params);
|
2015-01-28 22:18:53 +01:00
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
2015-03-05 17:53:15 +01:00
|
|
|
BREAK_DB_ERR (result);
|
2015-01-28 22:18:53 +01:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
2015-01-28 14:57:55 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
2015-01-28 22:18:53 +01:00
|
|
|
|
|
|
|
|
2015-01-30 15:34:01 +01:00
|
|
|
/**
|
|
|
|
* Store in the database which coin(s) we want to create
|
|
|
|
* in a given refresh operation.
|
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session database connection
|
2015-03-24 16:56:06 +01:00
|
|
|
* @param session_hash hash to identify refresh session
|
2015-03-22 14:21:16 +01:00
|
|
|
* @param num_newcoins number of coins to generate, size of the @a denom_pubs array
|
|
|
|
* @param denom_pubs array denominations of the coins to create
|
2015-01-30 15:34:01 +01:00
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
* #GNUNET_SYSERR on internal error
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
|
|
|
postgres_insert_refresh_order (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-03-24 16:56:06 +01:00
|
|
|
const struct GNUNET_HashCode *session_hash,
|
2015-03-22 14:21:16 +01:00
|
|
|
uint16_t num_newcoins,
|
2015-03-22 22:14:30 +01:00
|
|
|
const struct TALER_DenominationPublicKey *denom_pubs)
|
2015-01-30 15:34:01 +01:00
|
|
|
{
|
2015-06-11 14:46:03 +02:00
|
|
|
unsigned int i;
|
2015-01-30 15:34:01 +01:00
|
|
|
|
2015-06-11 14:46:03 +02:00
|
|
|
for (i=0;i<(unsigned int) num_newcoins;i++)
|
2015-01-30 15:34:01 +01:00
|
|
|
{
|
2015-06-11 14:46:03 +02:00
|
|
|
uint16_t newcoin_off = (uint16_t) i;
|
|
|
|
PGresult *result;
|
|
|
|
|
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint16 (&newcoin_off),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
GNUNET_PQ_query_param_rsa_public_key (denom_pubs[i].rsa_public_key),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-06-11 14:46:03 +02:00
|
|
|
};
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2015-06-11 14:46:03 +02:00
|
|
|
"insert_refresh_order",
|
|
|
|
params);
|
|
|
|
}
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 != strcmp ("1", PQcmdTuples (result)))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-01-30 15:34:01 +01:00
|
|
|
PQclear (result);
|
|
|
|
}
|
2015-06-11 14:46:03 +02:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We allocated some @a denom_pubs information, but now need
|
|
|
|
* to abort. Free allocated memory.
|
|
|
|
*
|
|
|
|
* @param denom_pubs data to free (but not the array itself)
|
|
|
|
* @param denom_pubs_len length of @a denom_pubs array
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
free_dpk_result (struct TALER_DenominationPublicKey *denom_pubs,
|
|
|
|
unsigned int denom_pubs_len)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i=0;i<denom_pubs_len;i++)
|
2015-01-30 15:34:01 +01:00
|
|
|
{
|
2015-06-11 14:46:03 +02:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (denom_pubs[i].rsa_public_key);
|
|
|
|
denom_pubs[i].rsa_public_key = NULL;
|
2015-01-30 15:34:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-03-22 14:21:16 +01:00
|
|
|
* Lookup in the database the coins that we want to
|
2015-01-30 15:34:01 +01:00
|
|
|
* create in the given refresh operation.
|
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session database connection
|
2015-03-24 16:56:06 +01:00
|
|
|
* @param session_hash hash to identify refresh session
|
2015-03-28 15:42:07 +01:00
|
|
|
* @param num_newcoins size of the array of the @a denom_pubs array
|
2015-03-22 14:21:16 +01:00
|
|
|
* @param denom_pubs where to store the deomination keys
|
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
* #GNUNET_SYSERR on internal error
|
2015-01-30 15:34:01 +01:00
|
|
|
*/
|
2015-03-22 14:21:16 +01:00
|
|
|
static int
|
2015-03-20 23:51:28 +01:00
|
|
|
postgres_get_refresh_order (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-03-24 16:56:06 +01:00
|
|
|
const struct GNUNET_HashCode *session_hash,
|
2015-03-22 14:21:16 +01:00
|
|
|
uint16_t num_newcoins,
|
2015-03-22 22:14:30 +01:00
|
|
|
struct TALER_DenominationPublicKey *denom_pubs)
|
2015-01-30 15:34:01 +01:00
|
|
|
{
|
2015-06-11 14:46:03 +02:00
|
|
|
unsigned int i;
|
2015-01-30 15:34:01 +01:00
|
|
|
|
2015-06-11 14:46:03 +02:00
|
|
|
for (i=0;i<(unsigned int) num_newcoins;i++)
|
2015-01-30 15:34:01 +01:00
|
|
|
{
|
2015-06-11 14:46:03 +02:00
|
|
|
uint16_t newcoin_off = (uint16_t) i;
|
|
|
|
PGresult *result;
|
2015-01-30 15:34:01 +01:00
|
|
|
|
2015-06-11 14:46:03 +02:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
GNUNET_PQ_query_param_uint16 (&newcoin_off),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-06-11 14:46:03 +02:00
|
|
|
};
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2015-06-11 14:46:03 +02:00
|
|
|
"get_refresh_order",
|
|
|
|
params);
|
|
|
|
}
|
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
free_dpk_result (denom_pubs, i);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 == PQntuples (result))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
/* FIXME: may want to distinguish between different error cases! */
|
|
|
|
free_dpk_result (denom_pubs, i);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
GNUNET_assert (1 == PQntuples (result));
|
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
2015-06-11 14:46:03 +02:00
|
|
|
&denom_pubs[i].rsa_public_key),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2015-06-11 14:46:03 +02:00
|
|
|
};
|
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
0))
|
2015-06-11 14:46:03 +02:00
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
GNUNET_break (0);
|
|
|
|
free_dpk_result (denom_pubs, i);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
}
|
2015-01-30 15:34:01 +01:00
|
|
|
}
|
2015-03-22 14:21:16 +01:00
|
|
|
return GNUNET_OK;
|
2015-01-30 15:34:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-29 20:18:04 +01:00
|
|
|
/**
|
|
|
|
* Store information about the commitment of the
|
|
|
|
* given coin for the given refresh session 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 to use
|
2015-03-24 16:56:06 +01:00
|
|
|
* @param session_hash hash to identify refresh session
|
2015-03-22 14:21:16 +01:00
|
|
|
* @param num_newcoins coin index size of the @a commit_coins array
|
|
|
|
* @param commit_coins array of coin commitments to store
|
2015-01-29 20:18:04 +01:00
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
* #GNUNET_SYSERR on error
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
2015-03-22 14:21:16 +01:00
|
|
|
postgres_insert_refresh_commit_coins (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-03-24 16:56:06 +01:00
|
|
|
const struct GNUNET_HashCode *session_hash,
|
2015-06-11 12:08:15 +02:00
|
|
|
uint16_t num_newcoins,
|
2016-03-01 15:35:04 +01:00
|
|
|
const struct TALER_EXCHANGEDB_RefreshCommitCoin *commit_coins)
|
2015-01-29 20:18:04 +01:00
|
|
|
{
|
2015-06-10 11:14:05 +02:00
|
|
|
PGresult *result;
|
2015-06-11 14:40:07 +02:00
|
|
|
unsigned int i;
|
|
|
|
uint16_t coin_off;
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2015-06-11 14:40:07 +02:00
|
|
|
for (i=0;i<(unsigned int) num_newcoins;i++)
|
2015-06-10 11:14:05 +02:00
|
|
|
{
|
2015-06-11 14:40:07 +02:00
|
|
|
coin_off = (uint16_t) i;
|
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
GNUNET_PQ_query_param_uint16 (&coin_off),
|
|
|
|
GNUNET_PQ_query_param_fixed_size (commit_coins[i].coin_ev,
|
2016-05-24 20:32:05 +02:00
|
|
|
commit_coins[i].coin_ev_size),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_end
|
2015-06-11 14:40:07 +02:00
|
|
|
};
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2015-06-11 14:40:07 +02:00
|
|
|
"insert_refresh_commit_coin",
|
|
|
|
params);
|
|
|
|
}
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 != strcmp ("1", PQcmdTuples (result)))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-01-29 20:18:04 +01:00
|
|
|
PQclear (result);
|
|
|
|
}
|
2015-06-11 14:40:07 +02:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We allocated some @a commit_coin information, but now need
|
|
|
|
* to abort. Free allocated memory.
|
|
|
|
*
|
2016-05-19 18:37:31 +02:00
|
|
|
* @param cls unused
|
2015-06-11 14:40:07 +02:00
|
|
|
* @param commit_coins_len length of @a commit_coins array
|
2016-05-19 18:37:31 +02:00
|
|
|
* @param commit_coins data to free (but not the array itself)
|
2015-06-11 14:40:07 +02:00
|
|
|
*/
|
|
|
|
static void
|
2016-05-19 18:37:31 +02:00
|
|
|
postgres_free_refresh_commit_coins (void *cls,
|
|
|
|
unsigned int commit_coins_len,
|
|
|
|
struct TALER_EXCHANGEDB_RefreshCommitCoin *commit_coins)
|
2015-06-11 14:40:07 +02:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i=0;i<commit_coins_len;i++)
|
2015-01-29 20:18:04 +01:00
|
|
|
{
|
2015-06-11 14:40:07 +02:00
|
|
|
GNUNET_free (commit_coins[i].coin_ev);
|
|
|
|
commit_coins[i].coin_ev = NULL;
|
|
|
|
commit_coins[i].coin_ev_size = 0;
|
2015-01-29 20:18:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtain information about the commitment of the
|
|
|
|
* given coin of the given refresh session from the database.
|
|
|
|
*
|
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-03-24 16:56:06 +01:00
|
|
|
* @param session_hash hash to identify refresh session
|
2015-06-11 14:40:07 +02:00
|
|
|
* @param num_newcoins size of the @a commit_coins array
|
|
|
|
* @param[out] commit_coins array of coin commitments to return
|
2015-01-29 20:18:04 +01:00
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
* #GNUNET_NO if not found
|
|
|
|
* #GNUNET_SYSERR on error
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
2015-03-22 14:21:16 +01:00
|
|
|
postgres_get_refresh_commit_coins (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-03-24 16:56:06 +01:00
|
|
|
const struct GNUNET_HashCode *session_hash,
|
2015-06-11 14:40:07 +02:00
|
|
|
uint16_t num_newcoins,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_RefreshCommitCoin *commit_coins)
|
2015-01-29 20:18:04 +01:00
|
|
|
{
|
2015-06-11 14:40:07 +02:00
|
|
|
unsigned int i;
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2015-06-11 14:40:07 +02:00
|
|
|
for (i=0;i<(unsigned int) num_newcoins;i++)
|
2015-01-29 20:18:04 +01:00
|
|
|
{
|
2015-06-11 14:40:07 +02:00
|
|
|
uint16_t newcoin_off = (uint16_t) i;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
GNUNET_PQ_query_param_uint16 (&newcoin_off),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-06-11 14:40:07 +02:00
|
|
|
};
|
|
|
|
void *c_buf;
|
|
|
|
size_t c_buf_size;
|
|
|
|
PGresult *result;
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2015-06-11 14:40:07 +02:00
|
|
|
"get_refresh_commit_coin",
|
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
2016-11-17 15:12:01 +01:00
|
|
|
postgres_free_refresh_commit_coins (cls,
|
|
|
|
i,
|
|
|
|
commit_coins);
|
2015-06-11 14:40:07 +02:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 == PQntuples (result))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
2016-11-17 15:12:01 +01:00
|
|
|
postgres_free_refresh_commit_coins (cls,
|
|
|
|
i,
|
|
|
|
commit_coins);
|
2015-06-11 14:40:07 +02:00
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_variable_size ("coin_ev",
|
2016-05-24 20:13:31 +02:00
|
|
|
&c_buf,
|
|
|
|
&c_buf_size),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2015-06-11 14:40:07 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_YES !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
0))
|
2015-06-11 14:40:07 +02:00
|
|
|
{
|
|
|
|
PQclear (result);
|
2016-11-17 15:12:01 +01:00
|
|
|
postgres_free_refresh_commit_coins (cls,
|
|
|
|
i,
|
|
|
|
commit_coins);
|
2015-06-11 14:40:07 +02:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
}
|
2015-01-29 20:18:04 +01:00
|
|
|
PQclear (result);
|
2015-06-11 14:40:07 +02:00
|
|
|
commit_coins[i].coin_ev = c_buf;
|
|
|
|
commit_coins[i].coin_ev_size = c_buf_size;
|
2015-01-29 20:18:04 +01:00
|
|
|
}
|
|
|
|
return GNUNET_YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store the commitment to the given (encrypted) refresh link data
|
|
|
|
* for the given refresh session.
|
|
|
|
*
|
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-03-24 16:56:06 +01:00
|
|
|
* @param session_hash hash to identify refresh session
|
2016-08-05 16:08:19 +02:00
|
|
|
* @param tp transfer public key to store
|
2015-01-29 20:18:04 +01:00
|
|
|
* @return #GNUNET_SYSERR on internal error, #GNUNET_OK on success
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
2016-08-05 16:08:19 +02:00
|
|
|
postgres_insert_refresh_transfer_public_key (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct GNUNET_HashCode *session_hash,
|
|
|
|
const struct TALER_TransferPublicKeyP *tp)
|
2015-01-29 20:18:04 +01:00
|
|
|
{
|
2016-05-16 11:55:47 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (session_hash),
|
2016-08-05 16:08:19 +02:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (tp),
|
2016-05-16 11:55:47 +02:00
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2016-05-16 11:55:47 +02:00
|
|
|
PGresult *result;
|
2015-09-14 11:56:37 +02:00
|
|
|
|
2016-05-16 11:55:47 +02:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-08-05 16:08:19 +02:00
|
|
|
"insert_transfer_public_key",
|
2016-05-16 11:55:47 +02:00
|
|
|
params);
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
2015-08-17 03:07:48 +02:00
|
|
|
PQclear (result);
|
2016-05-16 11:55:47 +02:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0 != strcmp ("1", PQcmdTuples (result)))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
2015-01-29 20:18:04 +01:00
|
|
|
}
|
2016-05-16 11:55:47 +02:00
|
|
|
PQclear (result);
|
2015-01-29 20:18:04 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtain the commited (encrypted) refresh link data
|
|
|
|
* for the given refresh session.
|
|
|
|
*
|
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-03-24 16:56:06 +01:00
|
|
|
* @param session_hash hash to identify refresh session
|
2016-08-05 16:08:19 +02:00
|
|
|
* @param[out] tp information to return
|
2015-01-29 20:18:04 +01:00
|
|
|
* @return #GNUNET_SYSERR on internal error,
|
|
|
|
* #GNUNET_NO if commitment was not found
|
|
|
|
* #GNUNET_OK on success
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
2016-08-05 16:08:19 +02:00
|
|
|
postgres_get_refresh_transfer_public_key (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct GNUNET_HashCode *session_hash,
|
|
|
|
struct TALER_TransferPublicKeyP *tp)
|
2015-01-29 20:18:04 +01:00
|
|
|
{
|
2016-05-16 11:55:47 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
PGresult *result;
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2016-05-16 11:55:47 +02:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-08-05 16:08:19 +02:00
|
|
|
"get_refresh_transfer_public_key",
|
2016-05-16 11:55:47 +02:00
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
2015-01-29 20:18:04 +01:00
|
|
|
{
|
2016-05-16 11:55:47 +02:00
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 == PQntuples (result))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("transfer_pub",
|
2016-08-05 16:08:19 +02:00
|
|
|
tp),
|
2016-05-16 11:55:47 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
2015-06-11 12:08:15 +02:00
|
|
|
};
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2016-05-16 11:55:47 +02:00
|
|
|
if (GNUNET_YES !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
0))
|
2015-06-11 12:08:15 +02:00
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 11:55:47 +02:00
|
|
|
PQclear (result);
|
2015-01-29 20:18:04 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-17 16:37:40 +01:00
|
|
|
/**
|
|
|
|
* Insert signature of a new coin generated during refresh into
|
|
|
|
* the database indexed by the refresh session and the index
|
|
|
|
* of the coin. This data is later used should an old coin
|
|
|
|
* be used to try to obtain the private keys during "/refresh/link".
|
|
|
|
*
|
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session database connection
|
|
|
|
* @param session_hash hash to identify refresh session
|
|
|
|
* @param newcoin_index coin index
|
|
|
|
* @param ev_sig coin signature
|
|
|
|
* @return #GNUNET_OK on success, #GNUNET_NO if we have no such result
|
|
|
|
* #GNUNET_SYSERR on error
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
postgres_get_refresh_out (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
const struct GNUNET_HashCode *session_hash,
|
|
|
|
uint16_t newcoin_index,
|
|
|
|
struct TALER_DenominationSignature *ev_sig)
|
|
|
|
{
|
|
|
|
PGresult *result;
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
GNUNET_PQ_query_param_uint16 (&newcoin_index),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("ev_sig",
|
|
|
|
&ev_sig->rsa_signature),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
|
|
|
"get_refresh_out",
|
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (1 != PQntuples (result))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
0))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-31 20:53:19 +01:00
|
|
|
/**
|
|
|
|
* Insert signature of a new coin generated during refresh into
|
|
|
|
* the database indexed by the refresh session and the index
|
|
|
|
* of the coin. This data is later used should an old coin
|
|
|
|
* be used to try to obtain the private keys during "/refresh/link".
|
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session database connection
|
2015-03-24 16:56:06 +01:00
|
|
|
* @param session_hash hash to identify refresh session
|
2015-01-31 20:53:19 +01:00
|
|
|
* @param newcoin_index coin index
|
|
|
|
* @param ev_sig coin signature
|
|
|
|
* @return #GNUNET_OK on success
|
2016-11-17 16:37:40 +01:00
|
|
|
* #GNUNET_SYSERR on error
|
2015-01-31 20:53:19 +01:00
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
2015-06-11 12:30:14 +02:00
|
|
|
postgres_insert_refresh_out (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-06-11 12:30:14 +02:00
|
|
|
const struct GNUNET_HashCode *session_hash,
|
|
|
|
uint16_t newcoin_index,
|
|
|
|
const struct TALER_DenominationSignature *ev_sig)
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
|
|
|
PGresult *result;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
GNUNET_PQ_query_param_uint16 (&newcoin_index),
|
|
|
|
GNUNET_PQ_query_param_rsa_signature (ev_sig->rsa_signature),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-06-10 15:20:57 +02:00
|
|
|
};
|
2015-01-31 20:53:19 +01:00
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-05-19 17:11:35 +02:00
|
|
|
"insert_refresh_out",
|
|
|
|
params);
|
2015-01-31 20:53:19 +01:00
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
2015-03-05 17:53:15 +01:00
|
|
|
BREAK_DB_ERR (result);
|
2015-01-31 20:53:19 +01:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtain the link data of a coin, that is the encrypted link
|
|
|
|
* information, the denomination keys and the signatures.
|
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
|
|
|
* @param session database connection
|
2015-06-15 14:18:37 +02:00
|
|
|
* @param session_hash refresh session to get linkage data for
|
|
|
|
* @return all known link data for the session
|
2015-01-31 20:53:19 +01:00
|
|
|
*/
|
2016-03-01 15:35:04 +01:00
|
|
|
static struct TALER_EXCHANGEDB_LinkDataList *
|
2015-03-22 13:02:11 +01:00
|
|
|
postgres_get_link_data_list (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-06-15 14:18:37 +02:00
|
|
|
const struct GNUNET_HashCode *session_hash)
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_LinkDataList *ldl;
|
2015-06-10 15:20:57 +02:00
|
|
|
int i;
|
2015-06-10 15:48:03 +02:00
|
|
|
int nrows;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-01-31 20:53:19 +01:00
|
|
|
};
|
2015-06-11 16:25:32 +02:00
|
|
|
PGresult *result;
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2015-06-11 16:25:32 +02:00
|
|
|
"get_link",
|
|
|
|
params);
|
2015-01-31 20:53:19 +01:00
|
|
|
ldl = NULL;
|
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
2015-03-05 17:53:15 +01:00
|
|
|
BREAK_DB_ERR (result);
|
2015-01-31 20:53:19 +01:00
|
|
|
PQclear (result);
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-06-10 15:48:03 +02:00
|
|
|
nrows = PQntuples (result);
|
|
|
|
if (0 == nrows)
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-08-07 23:21:49 +02:00
|
|
|
for (i = nrows-1; i >= 0; i--)
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
2016-03-21 14:40:57 +01:00
|
|
|
struct GNUNET_CRYPTO_RsaPublicKey *denom_pub;
|
|
|
|
struct GNUNET_CRYPTO_RsaSignature *sig;
|
2016-05-24 20:13:31 +02:00
|
|
|
struct TALER_EXCHANGEDB_LinkDataList *pos;
|
2015-01-31 20:53:19 +01:00
|
|
|
|
2016-05-24 20:13:31 +02:00
|
|
|
pos = GNUNET_new (struct TALER_EXCHANGEDB_LinkDataList);
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
2016-05-24 20:13:31 +02:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("ev_sig",
|
|
|
|
&sig),
|
|
|
|
GNUNET_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&denom_pub),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
2016-05-26 16:38:59 +02:00
|
|
|
|
2016-05-24 20:13:31 +02:00
|
|
|
if (GNUNET_OK !=
|
2016-08-07 23:21:49 +02:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2016-05-24 20:13:31 +02:00
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
GNUNET_break (0);
|
|
|
|
common_free_link_data_list (cls,
|
|
|
|
ldl);
|
|
|
|
GNUNET_free (pos);
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-01-31 20:53:19 +01:00
|
|
|
}
|
|
|
|
pos->next = ldl;
|
2015-03-22 22:14:30 +01:00
|
|
|
pos->denom_pub.rsa_public_key = denom_pub;
|
|
|
|
pos->ev_sig.rsa_signature = sig;
|
2015-01-31 20:53:19 +01:00
|
|
|
ldl = pos;
|
|
|
|
}
|
2016-06-11 18:22:33 +02:00
|
|
|
PQclear (result);
|
2015-01-31 20:53:19 +01:00
|
|
|
return ldl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtain shared secret and transfer public key from the public key of
|
|
|
|
* the coin. This information and the link information returned by
|
2015-03-22 13:02:11 +01:00
|
|
|
* #postgres_get_link_data_list() enable the owner of an old coin to
|
|
|
|
* determine the private keys of the new coins after the melt.
|
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
|
2015-01-31 20:53:19 +01:00
|
|
|
* @param coin_pub public key of the coin
|
2015-06-15 14:18:37 +02:00
|
|
|
* @param tdc function to call for each session the coin was melted into
|
|
|
|
* @param tdc_cls closure for @a tdc
|
2015-01-31 20:53:19 +01:00
|
|
|
* @return #GNUNET_OK on success,
|
|
|
|
* #GNUNET_NO on failure (not found)
|
|
|
|
* #GNUNET_SYSERR on internal failure (database issue)
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
|
|
|
postgres_get_transfer (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-05-16 14:15:34 +02:00
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
2016-03-01 15:35:04 +01:00
|
|
|
TALER_EXCHANGEDB_TransferDataCallback tdc,
|
2015-06-15 14:18:37 +02:00
|
|
|
void *tdc_cls)
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-01-31 20:53:19 +01:00
|
|
|
};
|
2015-06-10 15:31:38 +02:00
|
|
|
PGresult *result;
|
2015-06-15 14:18:37 +02:00
|
|
|
int nrows;
|
|
|
|
int i;
|
2015-01-31 20:53:19 +01:00
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2015-06-10 15:31:38 +02:00
|
|
|
"get_transfer",
|
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK !=
|
|
|
|
PQresultStatus (result))
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
2015-03-05 17:53:15 +01:00
|
|
|
BREAK_DB_ERR (result);
|
2015-01-31 20:53:19 +01:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-06-15 14:18:37 +02:00
|
|
|
nrows = PQntuples (result);
|
|
|
|
if (0 == nrows)
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
2015-08-14 23:09:34 +02:00
|
|
|
/* no matches found */
|
2015-01-31 20:53:19 +01:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
2015-06-15 14:18:37 +02:00
|
|
|
for (i=0;i<nrows;i++)
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
2015-06-15 14:18:37 +02:00
|
|
|
struct GNUNET_HashCode session_hash;
|
|
|
|
struct TALER_TransferPublicKeyP transfer_pub;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("transfer_pub", &transfer_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("session_hash", &session_hash),
|
|
|
|
GNUNET_PQ_result_spec_end
|
2015-06-10 15:31:38 +02:00
|
|
|
};
|
2015-01-31 20:53:19 +01:00
|
|
|
|
2015-06-10 15:31:38 +02:00
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2015-06-10 15:31:38 +02:00
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-06-15 14:18:37 +02:00
|
|
|
tdc (tdc_cls,
|
|
|
|
&session_hash,
|
2016-08-05 16:08:19 +02:00
|
|
|
&transfer_pub);
|
2015-06-10 15:31:38 +02:00
|
|
|
}
|
2015-01-31 20:53:19 +01:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2015-01-28 22:18:53 +01:00
|
|
|
/**
|
|
|
|
* Compile a list of all (historic) transactions performed
|
2016-05-06 13:03:57 +02:00
|
|
|
* with the given coin (/refresh/melt, /deposit and /refund operations).
|
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 database connection
|
2015-01-28 22:18:53 +01:00
|
|
|
* @param coin_pub coin to investigate
|
|
|
|
* @return list of transactions, NULL if coin is fresh
|
|
|
|
*/
|
2016-03-01 15:35:04 +01:00
|
|
|
static struct TALER_EXCHANGEDB_TransactionList *
|
2015-03-20 23:51:28 +01:00
|
|
|
postgres_get_coin_transactions (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2015-05-16 14:15:34 +02:00
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_TransactionList *head;
|
2015-04-10 16:22:03 +02:00
|
|
|
|
|
|
|
head = NULL;
|
|
|
|
/* check deposits */
|
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&coin_pub->eddsa_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-04-10 16:22:03 +02:00
|
|
|
};
|
2015-06-10 15:48:03 +02:00
|
|
|
int nrows;
|
2015-04-10 16:22:03 +02:00
|
|
|
int i;
|
2015-06-10 15:48:03 +02:00
|
|
|
PGresult *result;
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_TransactionList *tl;
|
2015-06-10 15:48:03 +02:00
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-05-16 11:55:47 +02:00
|
|
|
"get_deposit_with_coin_pub",
|
|
|
|
params);
|
2015-04-10 16:22:03 +02:00
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
QUERY_ERR (result);
|
2015-07-09 22:29:10 +02:00
|
|
|
PQclear (result);
|
2015-04-10 16:22:03 +02:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
nrows = PQntuples (result);
|
2015-06-10 15:48:03 +02:00
|
|
|
for (i = 0; i < nrows; i++)
|
2015-04-10 16:22:03 +02:00
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Deposit *deposit;
|
2015-06-10 15:48:03 +02:00
|
|
|
|
2016-03-01 15:35:04 +01:00
|
|
|
deposit = GNUNET_new (struct TALER_EXCHANGEDB_Deposit);
|
2015-04-10 16:22:03 +02:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2015-06-11 14:25:42 +02:00
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&deposit->amount_with_fee),
|
2016-05-27 14:04:29 +02:00
|
|
|
TALER_PQ_result_spec_amount ("fee_deposit",
|
2015-06-11 14:25:42 +02:00
|
|
|
&deposit->deposit_fee),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_absolute_time ("timestamp",
|
2016-05-16 11:55:47 +02:00
|
|
|
&deposit->timestamp),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_absolute_time ("refund_deadline",
|
2016-05-16 11:55:47 +02:00
|
|
|
&deposit->refund_deadline),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_pub",
|
2016-05-16 11:55:47 +02:00
|
|
|
&deposit->merchant_pub),
|
2017-02-06 15:41:39 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_proposal_data",
|
|
|
|
&deposit->h_proposal_data),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_wire",
|
2016-05-16 11:55:47 +02:00
|
|
|
&deposit->h_wire),
|
2015-06-11 12:10:54 +02:00
|
|
|
TALER_PQ_result_spec_json ("wire",
|
2016-05-26 16:38:59 +02:00
|
|
|
&deposit->receiver_wire_account),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_sig",
|
2015-06-11 14:25:42 +02:00
|
|
|
&deposit->csig),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2015-06-10 15:48:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2015-06-10 15:48:03 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (deposit);
|
2015-07-09 22:29:10 +02:00
|
|
|
PQclear (result);
|
2015-06-10 15:48:03 +02:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2015-06-11 14:25:42 +02:00
|
|
|
deposit->coin.coin_pub = *coin_pub;
|
2015-04-10 16:22:03 +02:00
|
|
|
}
|
2016-03-01 15:35:04 +01:00
|
|
|
tl = GNUNET_new (struct TALER_EXCHANGEDB_TransactionList);
|
2015-06-10 15:48:03 +02:00
|
|
|
tl->next = head;
|
2016-03-01 15:35:04 +01:00
|
|
|
tl->type = TALER_EXCHANGEDB_TT_DEPOSIT;
|
2015-04-10 16:22:03 +02:00
|
|
|
tl->details.deposit = deposit;
|
2016-05-21 19:22:03 +02:00
|
|
|
if (GNUNET_SYSERR == get_known_coin (cls,
|
|
|
|
session,
|
|
|
|
&deposit->coin.coin_pub,
|
|
|
|
&deposit->coin))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (deposit);
|
|
|
|
PQclear (result);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2015-06-10 15:48:03 +02:00
|
|
|
head = tl;
|
2015-04-10 16:22:03 +02:00
|
|
|
continue;
|
|
|
|
}
|
2015-07-09 22:29:10 +02:00
|
|
|
PQclear (result);
|
2015-04-10 16:22:03 +02:00
|
|
|
}
|
2015-06-10 15:48:03 +02:00
|
|
|
/* Handle refreshing */
|
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&coin_pub->eddsa_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
2015-06-11 16:21:40 +02:00
|
|
|
};
|
|
|
|
int nrows;
|
|
|
|
int i;
|
|
|
|
PGresult *result;
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_TransactionList *tl;
|
2015-06-11 16:21:40 +02:00
|
|
|
|
2016-05-06 13:03:57 +02:00
|
|
|
/* check if the melt records exist and get them */
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-05-16 11:55:47 +02:00
|
|
|
"get_refresh_session_by_coin",
|
|
|
|
params);
|
2015-06-11 16:21:40 +02:00
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
nrows = PQntuples (result);
|
|
|
|
for (i=0;i<nrows;i++)
|
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_RefreshMelt *melt;
|
2015-06-11 16:21:40 +02:00
|
|
|
|
2016-03-01 15:35:04 +01:00
|
|
|
melt = GNUNET_new (struct TALER_EXCHANGEDB_RefreshMelt);
|
2015-06-11 16:21:40 +02:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("session_hash",
|
2016-05-16 11:55:47 +02:00
|
|
|
&melt->session_hash),
|
2015-06-11 16:21:40 +02:00
|
|
|
/* oldcoin_index not needed */
|
2016-05-16 11:55:47 +02:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("old_coin_sig",
|
|
|
|
&melt->coin_sig),
|
2015-06-11 16:21:40 +02:00
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&melt->amount_with_fee),
|
2016-05-27 14:14:13 +02:00
|
|
|
TALER_PQ_result_spec_amount ("fee_refresh",
|
2015-06-11 16:21:40 +02:00
|
|
|
&melt->melt_fee),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2015-06-11 16:21:40 +02:00
|
|
|
};
|
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2015-06-11 16:21:40 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (melt);
|
2015-07-09 22:29:10 +02:00
|
|
|
PQclear (result);
|
2015-06-11 16:21:40 +02:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2015-08-17 23:38:00 +02:00
|
|
|
melt->coin.coin_pub = *coin_pub;
|
2015-06-11 16:21:40 +02:00
|
|
|
}
|
2016-03-01 15:35:04 +01:00
|
|
|
tl = GNUNET_new (struct TALER_EXCHANGEDB_TransactionList);
|
2015-06-11 16:21:40 +02:00
|
|
|
tl->next = head;
|
2016-03-01 15:35:04 +01:00
|
|
|
tl->type = TALER_EXCHANGEDB_TT_REFRESH_MELT;
|
2015-06-11 16:21:40 +02:00
|
|
|
tl->details.melt = melt;
|
2016-05-21 19:22:03 +02:00
|
|
|
if (GNUNET_SYSERR == get_known_coin (cls,
|
|
|
|
session,
|
|
|
|
coin_pub,
|
|
|
|
&melt->coin))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (melt);
|
|
|
|
PQclear (result);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2015-06-11 16:21:40 +02:00
|
|
|
head = tl;
|
|
|
|
continue;
|
|
|
|
}
|
2015-07-09 22:29:10 +02:00
|
|
|
PQclear (result);
|
2015-06-10 15:48:03 +02:00
|
|
|
}
|
2016-05-06 13:03:57 +02:00
|
|
|
/* handle refunds */
|
|
|
|
{
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (&coin_pub->eddsa_pub),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
int nrows;
|
|
|
|
int i;
|
|
|
|
PGresult *result;
|
|
|
|
struct TALER_EXCHANGEDB_TransactionList *tl;
|
|
|
|
|
|
|
|
/* check if a refund records exist and get them */
|
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
|
|
|
"get_refunds_by_coin",
|
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
nrows = PQntuples (result);
|
|
|
|
for (i=0;i<nrows;i++)
|
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_Refund *refund;
|
|
|
|
|
|
|
|
refund = GNUNET_new (struct TALER_EXCHANGEDB_Refund);
|
|
|
|
{
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_pub",
|
|
|
|
&refund->merchant_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_sig",
|
|
|
|
&refund->merchant_sig),
|
2017-02-06 15:41:39 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_proposal_data",
|
|
|
|
&refund->h_proposal_data),
|
2016-05-06 13:03:57 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("rtransaction_id",
|
|
|
|
&refund->rtransaction_id),
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&refund->refund_amount),
|
2016-05-27 14:34:57 +02:00
|
|
|
TALER_PQ_result_spec_amount ("fee_refund",
|
2016-05-06 13:03:57 +02:00
|
|
|
&refund->refund_fee),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
if (GNUNET_OK !=
|
2016-11-17 15:12:01 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
i))
|
2016-05-06 13:03:57 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (refund);
|
|
|
|
PQclear (result);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
refund->coin.coin_pub = *coin_pub;
|
|
|
|
}
|
|
|
|
tl = GNUNET_new (struct TALER_EXCHANGEDB_TransactionList);
|
|
|
|
tl->next = head;
|
|
|
|
tl->type = TALER_EXCHANGEDB_TT_REFUND;
|
|
|
|
tl->details.refund = refund;
|
2016-06-11 18:22:33 +02:00
|
|
|
if (GNUNET_SYSERR ==
|
|
|
|
get_known_coin (cls,
|
|
|
|
session,
|
|
|
|
coin_pub,
|
|
|
|
&refund->coin))
|
2016-05-21 19:22:03 +02:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (refund);
|
|
|
|
PQclear (result);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2016-05-06 13:03:57 +02:00
|
|
|
head = tl;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
}
|
2015-06-10 15:48:03 +02:00
|
|
|
return head;
|
2015-04-10 16:22:03 +02:00
|
|
|
cleanup:
|
|
|
|
if (NULL != head)
|
2015-06-10 15:48:03 +02:00
|
|
|
common_free_coin_transaction_list (cls,
|
|
|
|
head);
|
2015-01-28 22:18:53 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-17 18:19:09 +01:00
|
|
|
/**
|
2016-02-07 15:02:49 +01:00
|
|
|
* Lookup the list of Taler transactions that were aggregated
|
2016-01-20 18:50:19 +01:00
|
|
|
* into a wire transfer by the respective @a wtid.
|
2016-01-17 18:19:09 +01:00
|
|
|
*
|
|
|
|
* @param cls closure
|
2016-01-21 11:24:18 +01:00
|
|
|
* @param session database connection
|
2016-01-20 18:50:19 +01:00
|
|
|
* @param wtid the raw wire transfer identifier we used
|
2016-01-17 18:19:09 +01:00
|
|
|
* @param cb function to call on each transaction found
|
|
|
|
* @param cb_cls closure for @a cb
|
2016-01-21 12:09:17 +01:00
|
|
|
* @return #GNUNET_OK on success, #GNUNET_SYSERR on database errors,
|
|
|
|
* #GNUNET_NO if we found no results
|
2016-01-17 18:19:09 +01:00
|
|
|
*/
|
|
|
|
static int
|
2016-01-21 12:09:17 +01:00
|
|
|
postgres_lookup_wire_transfer (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2016-01-21 12:09:17 +01:00
|
|
|
const struct TALER_WireTransferIdentifierRawP *wtid,
|
2016-03-01 15:35:04 +01:00
|
|
|
TALER_EXCHANGEDB_WireTransferDataCallback cb,
|
2016-01-21 12:09:17 +01:00
|
|
|
void *cb_cls)
|
2016-01-17 18:19:09 +01:00
|
|
|
{
|
2016-01-21 12:09:17 +01:00
|
|
|
PGresult *result;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (wtid),
|
|
|
|
GNUNET_PQ_query_param_end
|
2016-01-21 12:09:17 +01:00
|
|
|
};
|
|
|
|
int nrows;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* check if the melt record exists and get it */
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-09-26 14:50:49 +02:00
|
|
|
"lookup_transactions",
|
|
|
|
params);
|
2016-01-21 12:09:17 +01:00
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
nrows = PQntuples (result);
|
|
|
|
if (0 == nrows)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"lookup_wire_transfer() returned 0 matching rows\n");
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
for (i=0;i<nrows;i++)
|
|
|
|
{
|
2017-02-06 15:41:39 +01:00
|
|
|
struct GNUNET_HashCode h_proposal_data;
|
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;
|
2017-03-04 16:49:33 +01:00
|
|
|
json_t *wire;
|
|
|
|
json_t *t;
|
|
|
|
const char *wire_method;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2017-02-06 15:41:39 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_proposal_data", &h_proposal_data),
|
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),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub", &coin_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_pub", &merchant_pub),
|
|
|
|
GNUNET_PQ_result_spec_absolute_time ("execution_time", &exec_time),
|
2016-05-27 15:34:24 +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
|
|
|
};
|
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);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-03-04 16:49:33 +01:00
|
|
|
t = json_object_get (wire, "type");
|
|
|
|
if (NULL == t)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
wire_method = json_string_value (t);
|
|
|
|
if (NULL == wire_method)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-01-21 12:09:17 +01:00
|
|
|
cb (cb_cls,
|
|
|
|
&merchant_pub,
|
2017-03-04 16:49:33 +01:00
|
|
|
wire_method,
|
2016-01-21 12:09:17 +01:00
|
|
|
&h_wire,
|
2016-09-26 14:50:49 +02:00
|
|
|
exec_time,
|
2017-02-06 15:41:39 +01:00
|
|
|
&h_proposal_data,
|
2016-01-21 12:09:17 +01:00
|
|
|
&coin_pub,
|
2016-05-27 15:34:24 +02:00
|
|
|
&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
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
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-02-06 15:41:39 +01:00
|
|
|
* @param h_proposal_data 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
|
2016-01-21 12:09:17 +01:00
|
|
|
* @return #GNUNET_OK on success, #GNUNET_SYSERR on DB errors,
|
|
|
|
* #GNUNET_NO if nothing was found
|
2015-12-09 15:36:34 +01:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
postgres_wire_lookup_deposit_wtid (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2017-02-06 15:41:39 +01:00
|
|
|
const struct GNUNET_HashCode *h_proposal_data,
|
2015-12-09 15:36:34 +01:00
|
|
|
const struct GNUNET_HashCode *h_wire,
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
const struct TALER_MerchantPublicKeyP *merchant_pub,
|
2016-06-09 19:18:13 +02:00
|
|
|
TALER_EXCHANGEDB_TrackTransactionCallback cb,
|
2015-12-09 15:36:34 +01:00
|
|
|
void *cb_cls)
|
|
|
|
{
|
2016-01-21 12:09:17 +01:00
|
|
|
PGresult *result;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_pub),
|
2017-02-06 15:41:39 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_proposal_data),
|
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
|
|
|
};
|
|
|
|
int nrows;
|
|
|
|
|
|
|
|
/* check if the melt record exists and get it */
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-05-27 15:34:24 +02:00
|
|
|
"lookup_deposit_wtid",
|
|
|
|
params);
|
2016-01-21 12:09:17 +01:00
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
nrows = PQntuples (result);
|
|
|
|
if (0 == nrows)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
2016-01-22 17:21:14 +01:00
|
|
|
"lookup_deposit_wtid returned 0 matching rows\n");
|
2016-01-21 12:09:17 +01:00
|
|
|
PQclear (result);
|
|
|
|
|
|
|
|
/* 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! */
|
2016-01-21 12:09:17 +01:00
|
|
|
{
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_QueryParam params2[] = {
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (coin_pub),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (merchant_pub),
|
2017-02-06 15:41:39 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_proposal_data),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_query_param_auto_from_type (h_wire),
|
|
|
|
GNUNET_PQ_query_param_end
|
2016-01-21 12:09:17 +01:00
|
|
|
};
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-05-27 15:34:24 +02:00
|
|
|
"get_deposit_for_wtid",
|
|
|
|
params2);
|
2016-01-21 12:09:17 +01:00
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nrows = PQntuples (result);
|
|
|
|
if (0 == nrows)
|
|
|
|
{
|
2016-01-22 17:21:14 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"get_deposit_for_wtid returned 0 matching rows\n");
|
2016-01-21 12:09:17 +01:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ok, we're aware of the transaction, but it has not yet been
|
|
|
|
executed */
|
|
|
|
{
|
|
|
|
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;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2016-05-27 15:34:24 +02:00
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee", &amount_with_fee),
|
|
|
|
TALER_PQ_result_spec_amount ("fee_deposit", &deposit_fee),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_absolute_time ("wire_deadline", &exec_time),
|
|
|
|
GNUNET_PQ_result_spec_end
|
2016-01-21 12:09:17 +01:00
|
|
|
};
|
2016-01-22 17:21:14 +01:00
|
|
|
|
2017-03-05 18:18:23 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
0))
|
2016-01-21 12:09:17 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
cb (cb_cls,
|
|
|
|
NULL,
|
2016-05-27 15:34:24 +02:00
|
|
|
&amount_with_fee,
|
|
|
|
&deposit_fee,
|
2016-01-21 12:09:17 +01:00
|
|
|
exec_time);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (1 != nrows)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
struct TALER_WireTransferIdentifierRawP wtid;
|
|
|
|
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;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("wtid_raw", &wtid),
|
|
|
|
GNUNET_PQ_result_spec_absolute_time ("execution_time", &exec_time),
|
2016-05-27 15:34:24 +02:00
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee", &amount_with_fee),
|
|
|
|
TALER_PQ_result_spec_amount ("fee_deposit", &deposit_fee),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2016-01-21 12:09:17 +01:00
|
|
|
};
|
2017-03-05 18:18:23 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
0))
|
2016-01-21 12:09:17 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
cb (cb_cls,
|
|
|
|
&wtid,
|
2016-05-27 15:34:24 +02:00
|
|
|
&amount_with_fee,
|
|
|
|
&deposit_fee,
|
2016-01-21 12:09:17 +01:00
|
|
|
exec_time);
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
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
|
|
|
|
* @param execution_time when did we execute the transaction
|
2016-01-21 08:44:45 +01:00
|
|
|
* @return #GNUNET_OK on success, #GNUNET_SYSERR on DB errors
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
postgres_insert_aggregation_tracking (void *cls,
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
2016-01-21 08:44:45 +01:00
|
|
|
const struct TALER_WireTransferIdentifierRawP *wtid,
|
2016-05-27 15:34:24 +02:00
|
|
|
unsigned long long deposit_serial_id,
|
|
|
|
struct GNUNET_TIME_Absolute execution_time)
|
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_absolute_time (&execution_time),
|
|
|
|
GNUNET_PQ_query_param_end
|
2016-01-21 11:24:18 +01:00
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-01-21 11:24:18 +01:00
|
|
|
"insert_aggregation_tracking",
|
|
|
|
params);
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 != strcmp ("1", PQcmdTuples (result)))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
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
|
|
|
|
* @param[out] master_sig signature over the above by the exchange master key
|
|
|
|
* @return #GNUNET_OK on success, #GNUNET_NO if no fee is known
|
|
|
|
* #GNUNET_SYSERR on failure
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
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,
|
|
|
|
struct TALER_MasterSignatureP *master_sig)
|
|
|
|
{
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_string (type),
|
|
|
|
GNUNET_PQ_query_param_absolute_time (&date),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_absolute_time ("start_date", start_date),
|
|
|
|
GNUNET_PQ_result_spec_absolute_time ("end_date", end_date),
|
|
|
|
TALER_PQ_result_spec_amount ("wire_fee", wire_fee),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("master_sig", master_sig),
|
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
int nrows;
|
|
|
|
|
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
|
|
|
"get_wire_fee",
|
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK !=
|
|
|
|
PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
nrows = PQntuples (result);
|
|
|
|
if (0 == nrows)
|
|
|
|
{
|
|
|
|
/* no matches found */
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
if (1 != nrows)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
0))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
* @param master_sig signature over the above by the exchange master key
|
|
|
|
* @return #GNUNET_OK on success, #GNUNET_NO if the record exists,
|
|
|
|
* #GNUNET_SYSERR on failure
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
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,
|
|
|
|
const struct TALER_MasterSignatureP *master_sig)
|
|
|
|
{
|
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_string (type),
|
|
|
|
GNUNET_PQ_query_param_absolute_time (&start_date),
|
|
|
|
GNUNET_PQ_query_param_absolute_time (&end_date),
|
|
|
|
TALER_PQ_query_param_amount (wire_fee),
|
|
|
|
GNUNET_PQ_query_param_auto_from_type (master_sig),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
struct TALER_Amount wf;
|
|
|
|
struct TALER_MasterSignatureP sig;
|
|
|
|
struct GNUNET_TIME_Absolute sd;
|
|
|
|
struct GNUNET_TIME_Absolute ed;
|
|
|
|
|
|
|
|
if (GNUNET_OK ==
|
|
|
|
postgres_get_wire_fee (cls,
|
|
|
|
session,
|
|
|
|
type,
|
|
|
|
start_date,
|
|
|
|
&sd,
|
|
|
|
&ed,
|
|
|
|
&wf,
|
|
|
|
&sig))
|
|
|
|
{
|
|
|
|
if (0 != memcmp (&sig,
|
|
|
|
master_sig,
|
|
|
|
sizeof (sig)))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 != TALER_amount_cmp (wire_fee,
|
|
|
|
&wf))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if ( (sd.abs_value_us != start_date.abs_value_us) ||
|
|
|
|
(ed.abs_value_us != end_date.abs_value_us) )
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
/* equal record already exists */
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
|
|
|
"insert_wire_fee",
|
|
|
|
params);
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 != strcmp ("1", PQcmdTuples (result)))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
2016-01-27 18:28:52 +01:00
|
|
|
* @param type type of the wire transfer (i.e. "sepa")
|
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
|
|
|
|
* @return #GNUNET_OK on success, #GNUNET_SYSERR on DB errors
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
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-01-27 18:28:52 +01:00
|
|
|
PGresult *result;
|
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
|
|
|
};
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-01-27 18:28:52 +01:00
|
|
|
"wire_prepare_data_insert",
|
|
|
|
params);
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
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
|
2016-01-27 16:46:51 +01:00
|
|
|
* @return #GNUNET_OK on success, #GNUNET_SYSERR on DB errors
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
postgres_wire_prepare_data_mark_finished (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: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
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-01-27 18:28:52 +01:00
|
|
|
"wire_prepare_data_mark_done",
|
|
|
|
params);
|
|
|
|
if (PGRES_COMMAND_OK !=
|
|
|
|
PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
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
|
|
|
|
* @return #GNUNET_OK on success,
|
|
|
|
* #GNUNET_NO if there are no entries,
|
|
|
|
* #GNUNET_SYSERR on DB errors
|
|
|
|
*/
|
|
|
|
static int
|
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
|
|
|
{
|
2016-01-27 18:28:52 +01:00
|
|
|
PGresult *result;
|
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
|
|
|
};
|
|
|
|
|
2016-02-06 17:39:18 +01:00
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-01-27 18:28:52 +01:00
|
|
|
"wire_prepare_data_get",
|
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
QUERY_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 == PQntuples (result))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
if (1 != PQntuples (result))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2016-05-27 12:03:26 +02:00
|
|
|
uint64_t prewire_uuid;
|
2016-05-03 07:57:49 +02:00
|
|
|
char *type;
|
2016-01-27 18:28:52 +01:00
|
|
|
void *buf = NULL;
|
|
|
|
size_t buf_size;
|
2016-02-06 17:39:18 +01:00
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
2016-05-27 12:03:26 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("prewire_uuid",
|
|
|
|
&prewire_uuid),
|
2016-05-03 07:57:49 +02:00
|
|
|
GNUNET_PQ_result_spec_string ("type",
|
|
|
|
&type),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_variable_size ("buf",
|
2016-05-03 07:57:49 +02:00
|
|
|
&buf,
|
|
|
|
&buf_size),
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_result_spec_end
|
2016-01-27 18:28:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_extract_result (result,
|
2016-01-27 18:28:52 +01:00
|
|
|
rs,
|
|
|
|
0))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
cb (cb_cls,
|
2016-05-27 12:03:26 +02:00
|
|
|
prewire_uuid,
|
2016-05-03 07:57:49 +02:00
|
|
|
type,
|
2016-01-27 18:28:52 +01:00
|
|
|
buf,
|
|
|
|
buf_size);
|
2016-02-06 17:39:18 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2016-01-27 18:28:52 +01:00
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
2016-01-27 16:46:51 +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)
|
|
|
|
{
|
2016-05-31 09:34:45 +02:00
|
|
|
struct PostgresClosure *pc = cls;
|
|
|
|
struct GNUNET_TIME_Absolute now;
|
|
|
|
struct GNUNET_PQ_QueryParam params_none[] = {
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
struct GNUNET_PQ_QueryParam params_time[] = {
|
|
|
|
GNUNET_PQ_query_param_absolute_time (&now),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
PGconn *conn;
|
|
|
|
PGresult *result;
|
|
|
|
|
|
|
|
now = GNUNET_TIME_absolute_get ();
|
|
|
|
conn = connect_to_postgres (pc);
|
|
|
|
if (NULL == conn)
|
|
|
|
return GNUNET_SYSERR;
|
2016-05-31 10:39:11 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
postgres_prepare (conn))
|
|
|
|
{
|
|
|
|
PQfinish (conn);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-05-31 09:34:45 +02:00
|
|
|
result = GNUNET_PQ_exec_prepared (conn,
|
|
|
|
"gc_prewire",
|
|
|
|
params_none);
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
2016-06-11 18:22:33 +02:00
|
|
|
PQclear (result);
|
2016-05-31 09:34:45 +02:00
|
|
|
PQfinish (conn);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-06-11 18:22:33 +02:00
|
|
|
PQclear (result);
|
2016-05-31 09:34:45 +02:00
|
|
|
result = GNUNET_PQ_exec_prepared (conn,
|
|
|
|
"gc_denominations",
|
|
|
|
params_time);
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
2016-06-11 18:22:33 +02:00
|
|
|
PQclear (result);
|
2016-05-31 09:34:45 +02:00
|
|
|
PQfinish (conn);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-06-11 18:22:33 +02:00
|
|
|
PQclear (result);
|
2016-05-31 09:34:45 +02:00
|
|
|
result = GNUNET_PQ_exec_prepared (conn,
|
|
|
|
"gc_reserves",
|
|
|
|
params_time);
|
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
2016-06-11 18:22:33 +02:00
|
|
|
PQclear (result);
|
2016-05-31 09:34:45 +02:00
|
|
|
PQfinish (conn);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-06-11 18:22:33 +02:00
|
|
|
PQclear (result);
|
2016-05-31 09:34:45 +02:00
|
|
|
PQfinish (conn);
|
2016-05-31 09:13:03 +02:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-09 01:17:37 +02:00
|
|
|
/**
|
|
|
|
* Select deposits above @a serial_id 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
|
|
|
|
* @return #GNUNET_OK on success,
|
|
|
|
* #GNUNET_SYSERR on DB errors
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
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-17 01:48:59 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&serial_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
2016-10-20 23:28:36 +02:00
|
|
|
"audit_get_deposits_incr",
|
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK !=
|
2016-10-17 01:48:59 +02:00
|
|
|
PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
int nrows;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
nrows = PQntuples (result);
|
|
|
|
if (0 == nrows)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
2016-10-17 16:39:56 +02:00
|
|
|
"select_deposits_above_serial_id() returned 0 matching rows\n");
|
2016-10-17 01:48:59 +02:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
for (i=0;i<nrows;i++)
|
|
|
|
{
|
2016-10-17 16:39:56 +02:00
|
|
|
struct TALER_EXCHANGEDB_Deposit deposit;
|
|
|
|
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[] = {
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&deposit.amount_with_fee),
|
|
|
|
GNUNET_PQ_result_spec_absolute_time ("timestamp",
|
|
|
|
&deposit.timestamp),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_pub",
|
|
|
|
&deposit.merchant_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub",
|
|
|
|
&deposit.coin.coin_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_sig",
|
|
|
|
&deposit.csig),
|
|
|
|
GNUNET_PQ_result_spec_absolute_time ("refund_deadline",
|
|
|
|
&deposit.refund_deadline),
|
|
|
|
GNUNET_PQ_result_spec_absolute_time ("wire_deadline",
|
|
|
|
&deposit.wire_deadline),
|
2017-02-06 15:41:39 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_proposal_data",
|
|
|
|
&deposit.h_proposal_data),
|
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
|
|
|
|
};
|
|
|
|
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);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
cb (cb_cls,
|
2016-11-17 14:59:44 +01:00
|
|
|
rowid,
|
2016-10-17 16:39:56 +02:00
|
|
|
&deposit.merchant_pub,
|
|
|
|
&deposit.coin.coin_pub,
|
|
|
|
&deposit.csig,
|
|
|
|
&deposit.amount_with_fee,
|
2017-02-06 15:41:39 +01:00
|
|
|
&deposit.h_proposal_data,
|
2016-10-17 16:39:56 +02:00
|
|
|
deposit.refund_deadline,
|
|
|
|
deposit.wire_deadline,
|
|
|
|
deposit.receiver_wire_account,
|
|
|
|
done);
|
2017-03-05 18:18:23 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2016-10-17 01:48:59 +02:00
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Select refresh sessions above @a serial_id 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
|
|
|
|
* @return #GNUNET_OK on success,
|
|
|
|
* #GNUNET_SYSERR on DB errors
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
postgres_select_refreshs_above_serial_id (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
uint64_t serial_id,
|
|
|
|
TALER_EXCHANGEDB_RefreshSessionCallback cb,
|
|
|
|
void *cb_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
|
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
|
|
|
"audit_get_refresh_sessions_incr",
|
|
|
|
params);
|
|
|
|
|
2016-10-20 23:28:36 +02:00
|
|
|
if (PGRES_TUPLES_OK !=
|
2016-10-17 16:39:56 +02:00
|
|
|
PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
int nrows;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
nrows = PQntuples (result);
|
|
|
|
if (0 == nrows)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"select_refreshs_above_serial_id() returned 0 matching rows\n");
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i=0;i<nrows;i++)
|
|
|
|
{
|
|
|
|
struct TALER_CoinSpendPublicKeyP coin_pub;
|
|
|
|
struct TALER_CoinSpendSignatureP coin_sig;
|
|
|
|
struct TALER_Amount amount_with_fee;
|
|
|
|
uint16_t num_newcoins;
|
|
|
|
uint16_t noreveal_index;
|
2016-11-17 14:59:44 +01:00
|
|
|
uint64_t rowid;
|
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 ("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),
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&amount_with_fee),
|
|
|
|
GNUNET_PQ_result_spec_uint16 ("num_newcoins",
|
|
|
|
&num_newcoins),
|
|
|
|
GNUNET_PQ_result_spec_uint16 ("noreveal_index",
|
|
|
|
&noreveal_index),
|
2016-11-17 14:59:44 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("melt_serial_id",
|
|
|
|
&rowid),
|
2016-10-17 16:39:56 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
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);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
cb (cb_cls,
|
2016-11-17 14:59:44 +01:00
|
|
|
rowid,
|
2016-10-17 16:39:56 +02:00
|
|
|
&coin_pub,
|
|
|
|
&coin_sig,
|
|
|
|
&amount_with_fee,
|
|
|
|
num_newcoins,
|
|
|
|
noreveal_index);
|
2017-03-05 18:18:23 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2016-10-17 16:39:56 +02:00
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Select refunds above @a serial_id 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
|
|
|
|
* @return #GNUNET_OK on success,
|
|
|
|
* #GNUNET_SYSERR on DB errors
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
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-17 16:39:56 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&serial_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
|
|
|
"audit_get_refunds_incr",
|
|
|
|
params);
|
2016-10-20 23:28:36 +02:00
|
|
|
if (PGRES_TUPLES_OK !=
|
2016-10-17 16:39:56 +02:00
|
|
|
PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
int nrows;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
nrows = PQntuples (result);
|
|
|
|
if (0 == nrows)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"select_refunds_above_serial_id() returned 0 matching rows\n");
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
for (i=0;i<nrows;i++)
|
|
|
|
{
|
|
|
|
struct TALER_EXCHANGEDB_Refund refund;
|
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",
|
|
|
|
&refund.merchant_pub),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("merchant_sig",
|
|
|
|
&refund.merchant_sig),
|
2017-02-06 15:41:39 +01:00
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("h_proposal_data",
|
|
|
|
&refund.h_proposal_data),
|
2016-10-17 16:39:56 +02:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("rtransaction_id",
|
|
|
|
&refund.rtransaction_id),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("coin_pub",
|
|
|
|
&refund.coin.coin_pub),
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&refund.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
|
|
|
|
};
|
|
|
|
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);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
cb (cb_cls,
|
2016-11-17 14:59:44 +01:00
|
|
|
rowid,
|
2016-10-17 16:39:56 +02:00
|
|
|
&refund.coin.coin_pub,
|
|
|
|
&refund.merchant_pub,
|
|
|
|
&refund.merchant_sig,
|
2017-02-06 15:41:39 +01:00
|
|
|
&refund.h_proposal_data,
|
2016-10-17 16:39:56 +02:00
|
|
|
refund.rtransaction_id,
|
|
|
|
&refund.refund_amount);
|
2017-03-05 18:18:23 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2016-10-17 16:39:56 +02:00
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Select inbound wire transfers into reserves_in above @a serial_id
|
|
|
|
* 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
|
|
|
|
* @return #GNUNET_OK on success,
|
|
|
|
* #GNUNET_SYSERR on DB errors
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
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-17 16:39:56 +02:00
|
|
|
struct GNUNET_PQ_QueryParam params[] = {
|
|
|
|
GNUNET_PQ_query_param_uint64 (&serial_id),
|
|
|
|
GNUNET_PQ_query_param_end
|
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
|
|
|
"audit_reserves_in_get_transactions_incr",
|
|
|
|
params);
|
2016-10-20 23:28:36 +02:00
|
|
|
if (PGRES_TUPLES_OK !=
|
2016-10-17 16:39:56 +02:00
|
|
|
PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
int nrows;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
nrows = PQntuples (result);
|
|
|
|
if (0 == nrows)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"select_reserves_in_above_serial_id() returned 0 matching rows\n");
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i=0;i<nrows;i++)
|
|
|
|
{
|
|
|
|
struct TALER_ReservePublicKeyP reserve_pub;
|
|
|
|
struct TALER_Amount credit;
|
|
|
|
json_t *sender_account_details;
|
|
|
|
json_t *transfer_details;
|
|
|
|
struct GNUNET_TIME_Absolute execution_date;
|
2016-11-17 14:59:44 +01:00
|
|
|
uint64_t rowid;
|
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),
|
|
|
|
TALER_PQ_result_spec_amount ("credit",
|
|
|
|
&credit),
|
|
|
|
GNUNET_PQ_result_spec_absolute_time("execution_date",
|
|
|
|
&execution_date),
|
|
|
|
TALER_PQ_result_spec_json ("sender_account_details",
|
2016-11-17 12:07:16 +01:00
|
|
|
&sender_account_details),
|
2016-10-17 16:39:56 +02:00
|
|
|
TALER_PQ_result_spec_json ("transfer_details",
|
|
|
|
&transfer_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
|
|
|
};
|
|
|
|
|
|
|
|
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);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
cb (cb_cls,
|
2016-11-17 14:59:44 +01:00
|
|
|
rowid,
|
2016-10-17 16:39:56 +02:00
|
|
|
&reserve_pub,
|
|
|
|
&credit,
|
|
|
|
sender_account_details,
|
|
|
|
transfer_details,
|
|
|
|
execution_date);
|
2017-03-05 18:18:23 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2016-10-17 16:39:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Select withdraw operations from reserves_out above @a serial_id
|
|
|
|
* 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
|
|
|
|
* @return #GNUNET_OK on success,
|
|
|
|
* #GNUNET_SYSERR on DB errors
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
postgres_select_reserves_out_above_serial_id (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
uint64_t serial_id,
|
|
|
|
TALER_EXCHANGEDB_WithdrawCallback cb,
|
|
|
|
void *cb_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
|
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
|
|
|
"audit_get_reserves_out_incr",
|
|
|
|
params);
|
2016-10-20 23:28:36 +02:00
|
|
|
if (PGRES_TUPLES_OK !=
|
2016-10-17 16:39:56 +02:00
|
|
|
PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
int nrows;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
nrows = PQntuples (result);
|
|
|
|
if (0 == nrows)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"select_reserves_out_above_serial_id() returned 0 matching rows\n");
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
for (i=0;i<nrows;i++)
|
|
|
|
{
|
|
|
|
struct GNUNET_HashCode h_blind_ev;
|
|
|
|
struct TALER_DenominationPublicKey denom_pub;
|
|
|
|
struct TALER_DenominationSignature denom_sig;
|
|
|
|
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),
|
|
|
|
GNUNET_PQ_result_spec_rsa_signature ("denom_sig",
|
|
|
|
&denom_sig.rsa_signature),
|
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),
|
|
|
|
GNUNET_PQ_result_spec_absolute_time ("execution_date",
|
|
|
|
&execution_date),
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&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
|
|
|
|
};
|
|
|
|
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);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
cb (cb_cls,
|
2016-11-17 14:59:44 +01:00
|
|
|
rowid,
|
2016-10-17 16:39:56 +02:00
|
|
|
&h_blind_ev,
|
|
|
|
&denom_pub,
|
|
|
|
&denom_sig,
|
|
|
|
&reserve_pub,
|
|
|
|
&reserve_sig,
|
|
|
|
execution_date,
|
|
|
|
&amount_with_fee);
|
2017-03-05 18:18:23 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2016-10-17 16:39:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function called to select all wire transfers the exchange
|
|
|
|
* executed or plans to execute.
|
|
|
|
*
|
|
|
|
* @param cls closure
|
|
|
|
* @param session database connection
|
|
|
|
* @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 #GNUNET_OK on success,
|
|
|
|
* #GNUNET_NO if there are no entries,
|
|
|
|
* #GNUNET_SYSERR on DB errors
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
postgres_select_prepare_above_serial_id (void *cls,
|
|
|
|
struct TALER_EXCHANGEDB_Session *session,
|
|
|
|
uint64_t serial_id,
|
|
|
|
TALER_EXCHANGEDB_WirePreparationCallback cb,
|
|
|
|
void *cb_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
|
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
result = GNUNET_PQ_exec_prepared (session->conn,
|
|
|
|
"audit_get_wire_incr",
|
|
|
|
params);
|
2016-10-20 23:28:36 +02:00
|
|
|
if (PGRES_TUPLES_OK !=
|
2016-10-17 17:24:38 +02:00
|
|
|
PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
int nrows;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
nrows = PQntuples (result);
|
|
|
|
if (0 == nrows)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"select_prepare_above_serial_id() returned 0 matching rows\n");
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
for (i=0;i<nrows;i++)
|
|
|
|
{
|
|
|
|
char *wire_method;
|
|
|
|
void *buf;
|
|
|
|
size_t buf_size;
|
|
|
|
uint8_t finished;
|
2016-11-17 14:59:44 +01:00
|
|
|
uint64_t uuid;
|
2016-10-17 17:24:38 +02:00
|
|
|
|
|
|
|
struct GNUNET_PQ_ResultSpec rs[] = {
|
|
|
|
GNUNET_PQ_result_spec_string ("type",
|
|
|
|
&wire_method),
|
|
|
|
GNUNET_PQ_result_spec_variable_size ("buf",
|
|
|
|
&buf,
|
|
|
|
&buf_size),
|
|
|
|
GNUNET_PQ_result_spec_auto_from_type ("finished",
|
|
|
|
&finished),
|
2016-11-17 14:59:44 +01:00
|
|
|
GNUNET_PQ_result_spec_uint64 ("prewire_uuid",
|
|
|
|
&uuid),
|
2016-10-17 17:24:38 +02:00
|
|
|
GNUNET_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
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);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
cb (cb_cls,
|
2016-11-17 14:59:44 +01:00
|
|
|
uuid,
|
2016-10-17 17:24:38 +02:00
|
|
|
wire_method,
|
|
|
|
buf,
|
|
|
|
buf_size,
|
|
|
|
finished);
|
2017-03-05 18:18:23 +01:00
|
|
|
GNUNET_PQ_cleanup_result (rs);
|
2016-10-17 17:24:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
2016-10-09 01:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
2016-03-01 15:35:04 +01: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
|
|
|
{
|
2015-03-20 23:51:28 +01:00
|
|
|
struct GNUNET_CONFIGURATION_Handle *cfg = cls;
|
|
|
|
struct PostgresClosure *pg;
|
2016-03-01 15:35:04 +01:00
|
|
|
struct TALER_EXCHANGEDB_Plugin *plugin;
|
2016-05-19 18:26:06 +02:00
|
|
|
const char *ec;
|
2015-03-20 23:51:28 +01:00
|
|
|
|
|
|
|
pg = GNUNET_new (struct PostgresClosure);
|
|
|
|
|
|
|
|
if (0 != pthread_key_create (&pg->db_conn_threadlocal,
|
|
|
|
&db_conn_destroy))
|
|
|
|
{
|
2015-03-27 19:58:40 +01:00
|
|
|
TALER_LOG_ERROR ("Cannnot create pthread key.\n");
|
2016-01-24 16:34:03 +01:00
|
|
|
GNUNET_free (pg);
|
2015-03-20 23:51:28 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2016-05-19 18:26:06 +02:00
|
|
|
ec = getenv ("TALER_EXCHANGEDB_POSTGRES_CONFIG");
|
|
|
|
if (NULL != ec)
|
2015-03-20 23:51:28 +01:00
|
|
|
{
|
2016-05-19 18:26:06 +02:00
|
|
|
pg->connection_cfg_str = GNUNET_strdup (ec);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-05-19 18:37:31 +02:00
|
|
|
if (GNUNET_OK !=
|
2016-05-19 18:26:06 +02:00
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"exchangedb-postgres",
|
|
|
|
"db_conn_str",
|
|
|
|
&pg->connection_cfg_str))
|
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"exchangedb-postgres",
|
|
|
|
"db_conn_str");
|
|
|
|
GNUNET_free (pg);
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-03-20 23:51:28 +01:00
|
|
|
}
|
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;
|
|
|
|
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;
|
2015-03-22 12:49:48 +01:00
|
|
|
plugin->reserve_get = &postgres_reserve_get;
|
|
|
|
plugin->reserves_in_insert = &postgres_reserves_in_insert;
|
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;
|
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;
|
2015-03-22 12:49:48 +01:00
|
|
|
plugin->get_refresh_session = &postgres_get_refresh_session;
|
|
|
|
plugin->create_refresh_session = &postgres_create_refresh_session;
|
|
|
|
plugin->insert_refresh_order = &postgres_insert_refresh_order;
|
|
|
|
plugin->get_refresh_order = &postgres_get_refresh_order;
|
2015-03-22 14:21:16 +01:00
|
|
|
plugin->insert_refresh_commit_coins = &postgres_insert_refresh_commit_coins;
|
|
|
|
plugin->get_refresh_commit_coins = &postgres_get_refresh_commit_coins;
|
2016-05-19 18:37:31 +02:00
|
|
|
plugin->free_refresh_commit_coins = &postgres_free_refresh_commit_coins;
|
2016-08-05 16:08:19 +02:00
|
|
|
plugin->insert_refresh_transfer_public_key = &postgres_insert_refresh_transfer_public_key;
|
|
|
|
plugin->get_refresh_transfer_public_key = &postgres_get_refresh_transfer_public_key;
|
2016-11-17 16:37:40 +01:00
|
|
|
plugin->get_refresh_out = &postgres_get_refresh_out;
|
2015-06-11 12:30:14 +02:00
|
|
|
plugin->insert_refresh_out = &postgres_insert_refresh_out;
|
2015-03-22 13:02:11 +01:00
|
|
|
plugin->get_link_data_list = &postgres_get_link_data_list;
|
|
|
|
plugin->free_link_data_list = &common_free_link_data_list;
|
2015-03-22 12:49:48 +01:00
|
|
|
plugin->get_transfer = &postgres_get_transfer;
|
|
|
|
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;
|
2015-12-09 15:36:34 +01:00
|
|
|
plugin->wire_lookup_deposit_wtid = &postgres_wire_lookup_deposit_wtid;
|
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;
|
2016-01-27 16:46:51 +01:00
|
|
|
plugin->wire_prepare_data_insert = &postgres_wire_prepare_data_insert;
|
|
|
|
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;
|
2016-05-31 09:13:03 +02:00
|
|
|
plugin->gc = &postgres_gc;
|
2016-10-09 01:17:37 +02:00
|
|
|
plugin->select_deposits_above_serial_id = &postgres_select_deposits_above_serial_id;
|
|
|
|
plugin->select_refreshs_above_serial_id = &postgres_select_refreshs_above_serial_id;
|
|
|
|
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_out_above_serial_id = &postgres_select_reserves_out_above_serial_id;
|
|
|
|
plugin->select_prepare_above_serial_id = &postgres_select_prepare_above_serial_id;
|
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;
|
|
|
|
|
2015-03-27 19:58:40 +01:00
|
|
|
GNUNET_free (pg->connection_cfg_str);
|
2015-03-20 23:51:28 +01:00
|
|
|
GNUNET_free (pg);
|
|
|
|
GNUNET_free (plugin);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-03-01 15:35:04 +01:00
|
|
|
/* end of plugin_exchangedb_postgres.c */
|