2015-01-08 18:37:20 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2015-02-08 00:16:22 +01:00
|
|
|
Copyright (C) 2014, 2015 Christian Grothoff (and other contributing authors)
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
2015-08-13 23:16:31 +02:00
|
|
|
|
2015-01-08 18:37:20 +01:00
|
|
|
/**
|
2015-03-20 23:51:28 +01:00
|
|
|
* @file plugin_mintdb_postgres.c
|
|
|
|
* @brief Low-level (statement-level) Postgres database access for the mint
|
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
|
2015-01-08 18:37:20 +01:00
|
|
|
*/
|
|
|
|
#include "platform.h"
|
2015-03-27 19:58:40 +01:00
|
|
|
#include "taler_pq_lib.h"
|
2015-03-20 23:51:28 +01:00
|
|
|
#include "taler_mintdb_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
|
|
|
|
2015-03-22 13:02:11 +01:00
|
|
|
#include "plugin_mintdb_common.c"
|
2015-03-05 16:05:06 +01:00
|
|
|
|
2015-06-03 11:31:51 +02:00
|
|
|
/**
|
|
|
|
* For testing / experiments, we set the Postgres schema to
|
|
|
|
* #TALER_TEMP_SCHEMA_NAME so we can easily purge everything
|
|
|
|
* associated with a test. We *also* should use the database
|
|
|
|
* "talercheck" instead of "taler" for testing, but we're doing
|
|
|
|
* both: better safe than sorry.
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
#define TALER_TEMP_SCHEMA_NAME "taler_temporary"
|
2015-01-08 18:37:20 +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) \
|
2015-03-06 01:15:46 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Query failed at %s:%u: %s\n", __FILE__, __LINE__, PQresultErrorMessage (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); \
|
2015-01-08 18:37:20 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Database failure: %s\n", PQresultErrorMessage (result)); \
|
|
|
|
} 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).
|
|
|
|
*/
|
|
|
|
struct TALER_MINTDB_Session
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 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-03-05 16:05:06 +01:00
|
|
|
/**
|
|
|
|
* Set the given connection to use a temporary schema
|
|
|
|
*
|
|
|
|
* @param db the database connection
|
|
|
|
* @return #GNUNET_OK upon success; #GNUNET_SYSERR upon error
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
set_temporary_schema (PGconn *db)
|
|
|
|
{
|
|
|
|
SQLEXEC_(db,
|
|
|
|
"CREATE SCHEMA IF NOT EXISTS " TALER_TEMP_SCHEMA_NAME ";"
|
2015-06-03 11:31:51 +02:00
|
|
|
"SET search_path to " TALER_TEMP_SCHEMA_NAME ";");
|
2015-03-05 16:05:06 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
SQLEXEC_fail:
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Drop the temporary taler schema. This is only useful for testcases
|
|
|
|
*
|
2015-03-20 23:51:28 +01:00
|
|
|
* @param cls the `struct PostgresClosure` with the plugin-specific state
|
2015-03-28 15:42:07 +01:00
|
|
|
* @param session database session to use
|
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
|
|
|
|
postgres_drop_temporary (void *cls,
|
|
|
|
struct TALER_MINTDB_Session *session)
|
2015-03-05 16:05:06 +01:00
|
|
|
{
|
2015-08-09 18:18:13 +02:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
|
2015-07-13 23:51:15 +02:00
|
|
|
"Dropping temporary tables\n");
|
2015-03-20 23:51:28 +01:00
|
|
|
SQLEXEC_ (session->conn,
|
2015-06-03 11:31:51 +02:00
|
|
|
"DROP SCHEMA " TALER_TEMP_SCHEMA_NAME " CASCADE;");
|
2015-03-05 16:05:06 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
SQLEXEC_fail:
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
* @param temporary should we use a temporary schema
|
|
|
|
* @return #GNUNET_OK upon success; #GNUNET_SYSERR upon failure
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
2015-03-21 14:21:00 +01:00
|
|
|
postgres_create_tables (void *cls,
|
2015-03-20 23:51:28 +01:00
|
|
|
int temporary)
|
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;
|
|
|
|
|
2015-03-27 19:58:40 +01:00
|
|
|
conn = PQconnectdb (pc->connection_cfg_str);
|
2015-03-05 16:05:06 +01:00
|
|
|
if (CONNECTION_OK != PQstatus (conn))
|
|
|
|
{
|
2015-03-27 19:58:40 +01:00
|
|
|
TALER_LOG_ERROR ("Database connection failed: %s\n",
|
2015-06-02 12:52:05 +02:00
|
|
|
PQerrorMessage (conn));
|
2015-05-07 14:36:49 +02:00
|
|
|
PQfinish (conn);
|
2015-03-05 16:05:06 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-08-09 18:18:13 +02:00
|
|
|
PQsetNoticeReceiver (conn,
|
|
|
|
&pq_notice_receiver_cb,
|
|
|
|
NULL);
|
|
|
|
PQsetNoticeProcessor (conn,
|
|
|
|
&pq_notice_processor_cb,
|
|
|
|
NULL);
|
2015-03-21 14:21:00 +01:00
|
|
|
if ( (GNUNET_YES == temporary) &&
|
|
|
|
(GNUNET_SYSERR == set_temporary_schema (conn)))
|
2015-03-05 16:05:06 +01:00
|
|
|
{
|
|
|
|
PQfinish (conn);
|
|
|
|
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
|
2015-04-29 12:40:59 +02:00
|
|
|
denominations keys. The denominations are to be referred to by using
|
|
|
|
foreign keys. The denominations are deleted by a housekeeping tool;
|
2015-06-03 15:41:09 +02:00
|
|
|
hence, do not use `ON DELETE CASCADE' on these rows in the tables
|
2015-04-29 12:40:59 +02:00
|
|
|
referencing these rows */
|
2015-04-12 16:38:03 +02:00
|
|
|
SQLEXEC ("CREATE TABLE IF NOT EXISTS denominations"
|
2015-06-03 12:21:50 +02:00
|
|
|
"(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"
|
|
|
|
",expire_spend INT8 NOT NULL"
|
|
|
|
",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"
|
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
|
|
|
|
grabbing the money, depending on the Mint's terms of service) */
|
2015-03-05 16:05:06 +01:00
|
|
|
SQLEXEC ("CREATE TABLE IF NOT EXISTS reserves"
|
2015-06-03 12:21:50 +02:00
|
|
|
"(reserve_pub BYTEA PRIMARY KEY"
|
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)");
|
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"
|
2015-06-03 12:21:50 +02:00
|
|
|
"(reserve_pub BYTEA REFERENCES reserves (reserve_pub) ON DELETE CASCADE"
|
2015-05-06 11:47:12 +02:00
|
|
|
",balance_val INT8 NOT NULL"
|
|
|
|
",balance_frac INT4 NOT NULL"
|
|
|
|
",balance_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL"
|
2015-06-11 14:25:42 +02:00
|
|
|
",details TEXT NOT NULL "
|
2015-06-11 13:14:59 +02:00
|
|
|
",execution_date INT8 NOT NULL"
|
2015-05-14 14:28:29 +02:00
|
|
|
",PRIMARY KEY (reserve_pub,details)"
|
2015-03-05 16:05:06 +01:00
|
|
|
");");
|
2015-05-13 15:57:35 +02:00
|
|
|
/* Create indices on reserves_in */
|
2015-05-14 14:37:12 +02:00
|
|
|
SQLEXEC_INDEX ("CREATE INDEX reserves_in_reserve_pub_index"
|
2015-05-14 14:28:29 +02:00
|
|
|
" ON reserves_in (reserve_pub);");
|
2015-05-14 14:37:12 +02:00
|
|
|
SQLEXEC_INDEX ("CREATE INDEX reserves_in_reserve_pub_details_index"
|
2015-05-14 14:28:29 +02:00
|
|
|
" ON reserves_in (reserve_pub,details);");
|
2015-06-11 13:14:59 +02:00
|
|
|
SQLEXEC_INDEX ("CREATE INDEX execution_index"
|
|
|
|
" 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"
|
2015-06-03 15:41:09 +02:00
|
|
|
"(h_blind_ev BYTEA PRIMARY KEY"
|
2015-04-29 12:40:59 +02:00
|
|
|
",denom_pub BYTEA NOT NULL REFERENCES denominations (pub)"
|
2015-03-09 15:35:35 +01:00
|
|
|
",denom_sig BYTEA NOT NULL"
|
2015-05-07 13:29:11 +02:00
|
|
|
",reserve_pub BYTEA NOT NULL CHECK (LENGTH(reserve_pub)=32) REFERENCES reserves (reserve_pub) ON DELETE CASCADE"
|
|
|
|
",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"
|
|
|
|
",withdraw_fee_val INT8 NOT NULL"
|
|
|
|
",withdraw_fee_frac INT4 NOT NULL"
|
|
|
|
",withdraw_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)");
|
|
|
|
SQLEXEC_INDEX ("CREATE INDEX reserves_out_h_blind_ev_index ON "
|
|
|
|
"reserves_out (h_blind_ev)");
|
2015-06-03 13:53:38 +02:00
|
|
|
/* Table with coins that have been (partially) spent, used to track
|
|
|
|
coin information only once.
|
2015-06-03 12:35:30 +02:00
|
|
|
TODO: maybe eliminate, this might be over-normalization (#3811) */
|
2015-03-05 16:05:06 +01:00
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS known_coins "
|
2015-06-03 12:21:50 +02:00
|
|
|
"(coin_pub BYTEA NOT NULL PRIMARY KEY"
|
2015-04-29 12:40:59 +02:00
|
|
|
",denom_pub BYTEA NOT NULL REFERENCES denominations (pub)"
|
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_oldcoins
|
|
|
|
* @a num_newcoins
|
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 "
|
2015-06-03 12:21:50 +02:00
|
|
|
"(session_hash BYTEA PRIMARY KEY CHECK (LENGTH(session_hash)=64)"
|
2015-04-09 23:21:35 +02:00
|
|
|
",num_oldcoins INT2 NOT NULL"
|
|
|
|
",num_newcoins INT2 NOT NULL"
|
2015-03-05 16:05:06 +01:00
|
|
|
",noreveal_index INT2 NOT NULL"
|
2015-06-03 12:21:50 +02:00
|
|
|
")");
|
2015-06-03 13:53:38 +02:00
|
|
|
/* Table with coins that have been melted. Gives the coin's public
|
|
|
|
key (coin_pub), the melting session, the index of this coin in that
|
|
|
|
session, the signature affirming the melting and the amount that
|
|
|
|
this coin contributed to the melting session.
|
|
|
|
*/
|
2015-05-25 22:50:57 +02:00
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS refresh_melts "
|
2015-06-03 12:21:50 +02:00
|
|
|
"(coin_pub BYTEA NOT NULL REFERENCES known_coins (coin_pub)"
|
2015-06-15 14:18:37 +02:00
|
|
|
",session_hash BYTEA NOT NULL REFERENCES refresh_sessions (session_hash)"
|
2015-05-25 22:50:57 +02:00
|
|
|
",oldcoin_index INT2 NOT NULL"
|
|
|
|
",coin_sig BYTEA NOT NULL CHECK(LENGTH(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"
|
2015-06-11 13:52:45 +02:00
|
|
|
",melt_fee_val INT8 NOT NULL"
|
2015-08-12 10:07:57 +02:00
|
|
|
",melt_fee_frac INT4 NOT NULL"
|
2015-06-11 13:52:45 +02:00
|
|
|
",melt_fee_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL"
|
2015-06-15 14:18:37 +02:00
|
|
|
",PRIMARY KEY (session_hash, oldcoin_index)" /* a coin can be used only
|
2015-05-27 14:22:25 +02:00
|
|
|
once in a refresh session */
|
2015-05-25 22:50:57 +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 "
|
2015-06-03 12:21:50 +02:00
|
|
|
"(session_hash BYTEA NOT NULL CHECK (LENGTH(session_hash)=64) REFERENCES refresh_sessions (session_hash)"
|
2015-03-05 16:05:06 +01:00
|
|
|
",newcoin_index INT2 NOT NULL "
|
2015-06-11 15:06:49 +02:00
|
|
|
",denom_pub BYTEA NOT NULL REFERENCES denominations (pub)"
|
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
|
|
|
|
link secret).
|
|
|
|
NOTE: We might want to simplify this and not have the oldcoin_index
|
|
|
|
and instead store all link secrets, one after the other, in one big BYTEA.
|
|
|
|
(#3814) */
|
2015-06-03 14:39:45 +02:00
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS refresh_commit_link "
|
2015-06-03 12:21:50 +02:00
|
|
|
"(session_hash BYTEA NOT NULL REFERENCES refresh_sessions (session_hash)"
|
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
|
|
|
",link_secret_enc BYTEA NOT NULL"
|
|
|
|
",oldcoin_index INT2 NOT NULL"
|
|
|
|
",cnc_index INT2 NOT NULL"
|
|
|
|
")");
|
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
|
|
|
|
in case this cnc_index is chosen to be revealed)
|
|
|
|
|
|
|
|
NOTE: We might want to simplify this and not have the
|
|
|
|
newcoin_index and instead store all coin_evs and
|
|
|
|
link_vector_encs, one after the other, in two big BYTEAs.
|
|
|
|
(#3815) */
|
2015-06-03 14:39:45 +02:00
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS refresh_commit_coin "
|
2015-06-03 12:21:50 +02:00
|
|
|
"(session_hash BYTEA NOT NULL REFERENCES refresh_sessions (session_hash) "
|
2015-03-05 16:05:06 +01:00
|
|
|
",cnc_index INT2 NOT NULL"
|
2015-06-03 16:29:30 +02:00
|
|
|
",newcoin_index INT2 NOT NULL"
|
|
|
|
",link_vector_enc BYTEA NOT NULL"
|
2015-03-05 16:05:06 +01:00
|
|
|
",coin_ev BYTEA NOT NULL"
|
|
|
|
")");
|
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 "
|
2015-06-03 12:21:50 +02:00
|
|
|
"(session_hash BYTEA NOT NULL CHECK(LENGTH(session_hash)=64) REFERENCES refresh_sessions (session_hash) "
|
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"
|
2015-03-05 16:05:06 +01:00
|
|
|
")");
|
2015-05-07 13:29:11 +02:00
|
|
|
/* This table contains the wire transfers the mint is supposed to
|
|
|
|
execute to transmit funds to the merchants (and manage refunds).
|
|
|
|
TODO: we might want to generate some other primary key
|
|
|
|
to internally identify outgoing transactions, as "coin_pub"
|
|
|
|
may not be unique if a wallet chooses not to refresh. The
|
|
|
|
resulting transaction ID should then be returned to the merchant
|
|
|
|
and could be used by the mearchant for further inquriries about
|
2015-06-11 14:25:42 +02:00
|
|
|
the deposit's execution. (#3816); */
|
2015-03-05 16:05:06 +01:00
|
|
|
SQLEXEC("CREATE TABLE IF NOT EXISTS deposits "
|
2015-06-19 11:28:03 +02:00
|
|
|
"(coin_pub BYTEA NOT NULL CHECK (LENGTH(coin_pub)=32)"
|
2015-04-29 12:40:59 +02:00
|
|
|
",denom_pub BYTEA NOT NULL REFERENCES denominations (pub)"
|
2015-03-13 19:22:30 +01:00
|
|
|
",denom_sig BYTEA NOT NULL"
|
2015-03-05 16:05:06 +01:00
|
|
|
",transaction_id INT8 NOT NULL"
|
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
|
|
|
",deposit_fee_val INT8 NOT NULL"
|
|
|
|
",deposit_fee_frac INT4 NOT NULL"
|
|
|
|
",deposit_fee_curr VARCHAR("TALER_CURRENCY_LEN_STR") NOT NULL"
|
|
|
|
",timestamp INT8 NOT NULL"
|
|
|
|
",refund_deadline INT8 NOT NULL"
|
2015-05-07 13:29:11 +02:00
|
|
|
",merchant_pub BYTEA NOT NULL CHECK (LENGTH(merchant_pub)=32)"
|
|
|
|
",h_contract BYTEA NOT NULL CHECK (LENGTH(h_contract)=64)"
|
|
|
|
",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"
|
|
|
|
")");
|
2015-07-31 15:06:07 +02:00
|
|
|
/* Index for get_deposit statement on coin_pub, transactiojn_id and merchant_pub */
|
|
|
|
SQLEXEC_INDEX("CREATE INDEX deposits_coin_pub_index "
|
|
|
|
"ON deposits(coin_pub, transaction_id, merchant_pub)");
|
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 "
|
|
|
|
"(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"
|
|
|
|
",expire_spend"
|
|
|
|
",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 */
|
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,"
|
|
|
|
" $11, $12, $13, $14, $15, $16, $17, $18, $19);",
|
|
|
|
19, 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"
|
|
|
|
",expire_spend"
|
|
|
|
",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 */
|
2015-06-12 10:55:03 +02:00
|
|
|
" FROM denominations"
|
2015-06-12 10:28:17 +02:00
|
|
|
" WHERE pub=$1;",
|
|
|
|
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);
|
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);
|
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"
|
|
|
|
",balance_val"
|
|
|
|
",balance_frac"
|
|
|
|
",balance_curr"
|
|
|
|
",details"
|
2015-06-11 13:14:59 +02:00
|
|
|
",execution_date"
|
2015-06-03 12:21:50 +02:00
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5, $6);",
|
|
|
|
6, 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"
|
2015-05-06 11:47:12 +02:00
|
|
|
" balance_val"
|
|
|
|
",balance_frac"
|
|
|
|
",balance_curr"
|
2015-06-11 13:38:47 +02:00
|
|
|
",execution_date"
|
|
|
|
",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);
|
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
|
|
|
|
details before returning it during /withdraw/sign. We store
|
|
|
|
the coin's denomination information (public key, signature)
|
|
|
|
and the blinded message as well as the reserve that the coin
|
|
|
|
is being withdrawn from and the signature of the message
|
|
|
|
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"
|
|
|
|
",withdraw_fee_val"
|
|
|
|
",withdraw_fee_frac"
|
|
|
|
",withdraw_fee_curr"
|
2015-06-03 12:29:09 +02:00
|
|
|
") VALUES "
|
2015-06-11 13:02:57 +02:00
|
|
|
"($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12);",
|
|
|
|
12, NULL);
|
2015-06-11 12:30:14 +02:00
|
|
|
/* Used in #postgres_get_withdraw_info() to
|
2015-06-03 15:41:09 +02:00
|
|
|
locate the response for a /withdraw/sign request
|
|
|
|
using the hash of the blinded message. Used to
|
|
|
|
make sure /withdraw/sign 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"
|
|
|
|
",withdraw_fee_val"
|
|
|
|
",withdraw_fee_frac"
|
|
|
|
",withdraw_fee_curr"
|
2015-06-11 12:30:14 +02:00
|
|
|
" FROM reserves_out"
|
2015-06-03 15:41:09 +02:00
|
|
|
" WHERE h_blind_ev=$1",
|
2015-03-05 17:05:51 +01:00
|
|
|
1, NULL);
|
2015-06-03 15:41:09 +02:00
|
|
|
/* Used during #postgres_get_reserve_history() to
|
|
|
|
obtain all of the /withdraw/sign operations that
|
|
|
|
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"
|
|
|
|
",withdraw_fee_val"
|
|
|
|
",withdraw_fee_frac"
|
|
|
|
",withdraw_fee_curr"
|
2015-06-11 12:30:14 +02:00
|
|
|
" FROM reserves_out"
|
2015-03-09 17:05:35 +01:00
|
|
|
" WHERE reserve_pub=$1;",
|
|
|
|
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"
|
2015-04-09 23:21:35 +02:00
|
|
|
" num_oldcoins"
|
|
|
|
",num_newcoins"
|
2015-03-05 17:05:51 +01:00
|
|
|
",noreveal_index"
|
2015-04-09 23:21:35 +02:00
|
|
|
" FROM refresh_sessions "
|
2015-05-07 13:33:19 +02:00
|
|
|
" WHERE session_hash=$1 ",
|
2015-03-05 17:05:51 +01:00
|
|
|
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 "
|
2015-04-10 10:39:59 +02:00
|
|
|
",num_oldcoins "
|
|
|
|
",num_newcoins "
|
|
|
|
",noreveal_index "
|
2015-06-03 14:32:22 +02:00
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4);",
|
2015-04-10 10:39:59 +02:00
|
|
|
4, NULL);
|
2015-06-03 15:59:25 +02:00
|
|
|
/* Used in #postgres_get_known_coin() to fetch
|
|
|
|
the denomination public key and signature for
|
|
|
|
a coin known to the mint. */
|
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"
|
|
|
|
" FROM known_coins "
|
|
|
|
" WHERE coin_pub=$1",
|
2015-03-05 17:05:51 +01:00
|
|
|
1, NULL);
|
2015-06-03 15:59:25 +02:00
|
|
|
/* Used in #postgres_insert_known_coin() to store
|
|
|
|
the denomination public key and signature for
|
|
|
|
a coin known to the mint. */
|
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);
|
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);
|
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);
|
|
|
|
|
|
|
|
/* Used in #postgres_insert_refresh_melt to store information
|
|
|
|
about melted coins */
|
2015-03-05 17:05:51 +01:00
|
|
|
PREPARE ("insert_refresh_melt",
|
2015-06-03 14:12:26 +02:00
|
|
|
"INSERT INTO refresh_melts "
|
|
|
|
"(coin_pub "
|
2015-06-15 14:18:37 +02:00
|
|
|
",session_hash"
|
2015-03-05 17:05:51 +01:00
|
|
|
",oldcoin_index "
|
2015-05-04 14:47:36 +02:00
|
|
|
",coin_sig "
|
2015-06-03 16:29:30 +02:00
|
|
|
",amount_with_fee_val "
|
|
|
|
",amount_with_fee_frac "
|
|
|
|
",amount_with_fee_curr "
|
2015-06-11 13:52:45 +02:00
|
|
|
",melt_fee_val "
|
|
|
|
",melt_fee_frac "
|
|
|
|
",melt_fee_curr "
|
2015-06-03 14:12:26 +02:00
|
|
|
") VALUES "
|
2015-06-11 13:52:45 +02:00
|
|
|
"($1, $2, $3, $4, $5, $6, $7, $8, $9, $10);",
|
|
|
|
10, NULL);
|
2015-06-03 16:29:30 +02:00
|
|
|
/* Used in #postgres_get_refresh_melt to obtain information
|
|
|
|
about melted coins */
|
2015-05-27 14:22:25 +02:00
|
|
|
PREPARE ("get_refresh_melt",
|
|
|
|
"SELECT"
|
|
|
|
" coin_pub"
|
|
|
|
",coin_sig"
|
2015-06-03 16:29:30 +02:00
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
2015-06-11 13:52:45 +02:00
|
|
|
",melt_fee_val "
|
|
|
|
",melt_fee_frac "
|
|
|
|
",melt_fee_curr "
|
|
|
|
" FROM refresh_melts"
|
2015-06-15 14:18:37 +02:00
|
|
|
" WHERE session_hash=$1 AND oldcoin_index=$2",
|
2015-05-27 14:22:25 +02:00
|
|
|
2, NULL);
|
2015-06-11 16:21:40 +02:00
|
|
|
/* Query the 'refresh_melts' by coin public key */
|
|
|
|
PREPARE ("get_refresh_melt_by_coin",
|
|
|
|
"SELECT"
|
2015-06-15 14:18:37 +02:00
|
|
|
" session_hash"
|
2015-06-11 16:21:40 +02:00
|
|
|
/* ",oldcoin_index" // not needed */
|
|
|
|
",coin_sig"
|
|
|
|
",amount_with_fee_val"
|
|
|
|
",amount_with_fee_frac"
|
|
|
|
",amount_with_fee_curr"
|
|
|
|
",melt_fee_val "
|
|
|
|
",melt_fee_frac "
|
|
|
|
",melt_fee_curr "
|
|
|
|
" FROM refresh_melts"
|
|
|
|
" WHERE coin_pub=$1",
|
|
|
|
1, NULL);
|
2015-06-03 16:29:30 +02:00
|
|
|
/* Used in #postgres_insert_refresh_commit_links() to
|
|
|
|
store commitments */
|
2015-03-05 17:05:51 +01:00
|
|
|
PREPARE ("insert_refresh_commit_link",
|
2015-06-03 14:32:22 +02:00
|
|
|
"INSERT INTO refresh_commit_link "
|
|
|
|
"(session_hash"
|
|
|
|
",transfer_pub"
|
|
|
|
",cnc_index"
|
|
|
|
",oldcoin_index"
|
|
|
|
",link_secret_enc"
|
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5);",
|
2015-03-05 17:05:51 +01:00
|
|
|
5, NULL);
|
2015-06-03 16:29:30 +02:00
|
|
|
/* Used in #postgres_get_refresh_commit_links() to
|
|
|
|
retrieve original commitments during /refresh/reveal */
|
|
|
|
PREPARE ("get_refresh_commit_link",
|
|
|
|
"SELECT"
|
|
|
|
" transfer_pub"
|
|
|
|
",link_secret_enc"
|
|
|
|
" FROM refresh_commit_link"
|
|
|
|
" WHERE session_hash=$1 AND cnc_index=$2 AND oldcoin_index=$3",
|
|
|
|
3, NULL);
|
|
|
|
/* 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"
|
|
|
|
",cnc_index"
|
|
|
|
",newcoin_index"
|
|
|
|
",link_vector_enc"
|
2015-06-03 16:29:30 +02:00
|
|
|
",coin_ev"
|
2015-06-03 14:32:22 +02:00
|
|
|
") VALUES "
|
|
|
|
"($1, $2, $3, $4, $5);",
|
2015-03-05 17:05:51 +01:00
|
|
|
5, NULL);
|
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"
|
|
|
|
" link_vector_enc"
|
|
|
|
",coin_ev"
|
|
|
|
" FROM refresh_commit_coin"
|
|
|
|
" WHERE session_hash=$1 AND cnc_index=$2 AND newcoin_index=$3",
|
2015-03-05 17:05:51 +01:00
|
|
|
3, NULL);
|
2015-06-03 16:47:17 +02:00
|
|
|
/* Store information about a /deposit the mint 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"
|
|
|
|
",denom_pub"
|
|
|
|
",denom_sig"
|
|
|
|
",transaction_id"
|
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
|
|
|
",deposit_fee_val"
|
|
|
|
",deposit_fee_frac"
|
|
|
|
",deposit_fee_curr"
|
|
|
|
",timestamp"
|
|
|
|
",refund_deadline"
|
2015-06-03 14:32:22 +02:00
|
|
|
",merchant_pub"
|
|
|
|
",h_contract"
|
|
|
|
",h_wire"
|
|
|
|
",coin_sig"
|
|
|
|
",wire"
|
|
|
|
") VALUES "
|
2015-06-11 14:25:42 +02:00
|
|
|
"($1, $2, $3, $4, $5, $6, $7, $8, $9, $10,"
|
|
|
|
" $11, $12, $13, $14, $15, $16, $17);",
|
|
|
|
17, NULL);
|
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"
|
|
|
|
",h_contract"
|
|
|
|
",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"
|
|
|
|
" (transaction_id=$2) AND"
|
|
|
|
" (merchant_pub=$3)"
|
2015-06-03 14:32:22 +02:00
|
|
|
" )",
|
2015-03-16 11:01:01 +01:00
|
|
|
3, 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"
|
2015-06-11 14:25:42 +02:00
|
|
|
" denom_pub"
|
|
|
|
",denom_sig"
|
2015-06-03 14:32:22 +02:00
|
|
|
",transaction_id"
|
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
|
|
|
",deposit_fee_val"
|
|
|
|
",deposit_fee_frac"
|
|
|
|
",deposit_fee_curr"
|
|
|
|
",timestamp"
|
|
|
|
",refund_deadline"
|
2015-06-03 14:32:22 +02:00
|
|
|
",merchant_pub"
|
|
|
|
",h_contract"
|
|
|
|
",h_wire"
|
|
|
|
",wire"
|
2015-06-11 14:25:42 +02:00
|
|
|
",coin_sig"
|
2015-06-03 14:32:22 +02:00
|
|
|
" FROM deposits"
|
|
|
|
" 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);
|
2015-06-15 14:18:37 +02:00
|
|
|
/* Used in #postgres_get_link_data_list(). We use the session_hash
|
|
|
|
to obtain the "noreveal_index" for that session, and then select
|
|
|
|
the encrypted link vectors (link_vector_enc) and the
|
|
|
|
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
|
|
|
|
being minted in the refresh ops. NOTE: There may be more
|
|
|
|
efficient ways to express the same query. */
|
2015-06-03 16:29:30 +02:00
|
|
|
PREPARE ("get_link",
|
2015-06-15 14:18:37 +02:00
|
|
|
"SELECT link_vector_enc,ev_sig,ro.denom_pub"
|
|
|
|
" FROM refresh_melts rm "
|
2015-06-03 16:53:20 +02:00
|
|
|
" JOIN refresh_order ro USING (session_hash)"
|
|
|
|
" JOIN refresh_commit_coin rcc USING (session_hash)"
|
|
|
|
" JOIN refresh_sessions rs 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"
|
|
|
|
" AND ro.newcoin_index=rc.newcoin_index"
|
2015-06-15 14:18:37 +02:00
|
|
|
" AND rcc.cnc_index=rs.noreveal_index",
|
2015-06-03 16:29:30 +02:00
|
|
|
1, NULL);
|
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,
|
|
|
|
and then constraining the result to the selected "noreveal_index"
|
|
|
|
and the transfer public key to the corresponding index of the
|
|
|
|
old coin.
|
|
|
|
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",
|
2015-06-15 14:18:37 +02:00
|
|
|
"SELECT transfer_pub,link_secret_enc,session_hash"
|
|
|
|
" FROM refresh_melts rm"
|
2015-06-03 16:53:20 +02:00
|
|
|
" JOIN refresh_commit_link rcl USING (session_hash)"
|
|
|
|
" JOIN refresh_sessions rs USING (session_hash)"
|
|
|
|
" WHERE rm.coin_pub=$1"
|
|
|
|
" AND rm.oldcoin_index = rcl.oldcoin_index"
|
2015-06-15 14:18:37 +02:00
|
|
|
" AND rcl.cnc_index=rs.noreveal_index",
|
2015-06-03 16:29:30 +02:00
|
|
|
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)
|
|
|
|
{
|
2015-07-09 22:10:14 +02:00
|
|
|
struct TALER_MINTDB_Session *session = cls;
|
|
|
|
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-03-05 16:10:42 +01:00
|
|
|
* @param temporary #GNUNET_YES to use a temporary schema; #GNUNET_NO to use the
|
|
|
|
* database default one
|
2015-01-28 22:18:53 +01:00
|
|
|
* @return the database connection, or NULL on error
|
2015-01-08 18:37:20 +01:00
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static struct TALER_MINTDB_Session *
|
2015-03-22 12:49:48 +01:00
|
|
|
postgres_get_session (void *cls,
|
|
|
|
int temporary)
|
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;
|
2015-03-20 23:51:28 +01:00
|
|
|
struct TALER_MINTDB_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;
|
2015-03-27 19:58:40 +01:00
|
|
|
db_conn = PQconnectdb (pc->connection_cfg_str);
|
2015-01-28 22:47:03 +01:00
|
|
|
if (CONNECTION_OK !=
|
|
|
|
PQstatus (db_conn))
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-03-27 19:58:40 +01:00
|
|
|
TALER_LOG_ERROR ("Database connection failed: %s\n",
|
2015-01-28 22:47:03 +01:00
|
|
|
PQerrorMessage (db_conn));
|
2015-01-08 18:37:20 +01:00
|
|
|
GNUNET_break (0);
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-08-09 18:18:13 +02:00
|
|
|
PQsetNoticeReceiver (db_conn,
|
|
|
|
&pq_notice_receiver_cb,
|
|
|
|
NULL);
|
|
|
|
PQsetNoticeProcessor (db_conn,
|
|
|
|
&pq_notice_processor_cb,
|
|
|
|
NULL);
|
2015-05-07 13:59:56 +02:00
|
|
|
if ( (GNUNET_YES == temporary) &&
|
|
|
|
(GNUNET_SYSERR == set_temporary_schema(db_conn)) )
|
2015-03-05 16:10:42 +01:00
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
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);
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-03-20 23:51:28 +01:00
|
|
|
session = GNUNET_new (struct TALER_MINTDB_Session);
|
|
|
|
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,
|
|
|
|
struct TALER_MINTDB_Session *session)
|
2015-01-08 18:37:20 +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
|
|
|
"BEGIN");
|
|
|
|
if (PGRES_COMMAND_OK !=
|
|
|
|
PQresultStatus (result))
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2015-03-27 19:58:40 +01:00
|
|
|
TALER_LOG_ERROR ("Failed to start transaction: %s\n",
|
2015-01-28 22:47:03 +01:00
|
|
|
PQresultErrorMessage (result));
|
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,
|
|
|
|
struct TALER_MINTDB_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,
|
|
|
|
struct TALER_MINTDB_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
|
|
|
{
|
|
|
|
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-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,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
2015-07-06 10:16:49 +02:00
|
|
|
const struct TALER_MINTDB_DenominationKeyInformationP *issue)
|
2015-04-12 16:38:03 +02:00
|
|
|
{
|
|
|
|
PGresult *result;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-06-11 14:58:23 +02:00
|
|
|
TALER_PQ_query_param_rsa_public_key (denom_pub->rsa_public_key),
|
2015-07-06 10:16:49 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (&issue->properties.master),
|
2015-06-11 14:58:23 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (&issue->signature),
|
2015-07-06 10:16:49 +02:00
|
|
|
TALER_PQ_query_param_absolute_time_nbo (&issue->properties.start),
|
|
|
|
TALER_PQ_query_param_absolute_time_nbo (&issue->properties.expire_withdraw),
|
|
|
|
TALER_PQ_query_param_absolute_time_nbo (&issue->properties.expire_spend),
|
|
|
|
TALER_PQ_query_param_absolute_time_nbo (&issue->properties.expire_legal),
|
|
|
|
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),
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_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));
|
2015-06-03 15:41:09 +02:00
|
|
|
|
2015-04-12 16:38:03 +02:00
|
|
|
result = TALER_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,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
2015-07-06 10:16:49 +02:00
|
|
|
struct TALER_MINTDB_DenominationKeyInformationP *issue)
|
2015-06-12 10:28:17 +02:00
|
|
|
{
|
|
|
|
PGresult *result;
|
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
|
|
|
TALER_PQ_query_param_rsa_public_key (denom_pub->rsa_public_key),
|
|
|
|
TALER_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
|
|
|
result = TALER_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
|
|
|
{
|
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("master_pub",
|
2015-07-06 10:16:49 +02:00
|
|
|
&issue->properties.master),
|
2015-06-12 10:28:17 +02:00
|
|
|
TALER_PQ_result_spec_auto_from_type ("master_sig",
|
|
|
|
&issue->signature),
|
2015-06-12 21:29:17 +02:00
|
|
|
TALER_PQ_result_spec_absolute_time_nbo ("valid_from",
|
2015-07-06 10:16:49 +02:00
|
|
|
&issue->properties.start),
|
2015-06-12 21:29:17 +02:00
|
|
|
TALER_PQ_result_spec_absolute_time_nbo ("expire_withdraw",
|
2015-07-06 10:16:49 +02:00
|
|
|
&issue->properties.expire_withdraw),
|
2015-06-12 21:29:17 +02:00
|
|
|
TALER_PQ_result_spec_absolute_time_nbo ("expire_spend",
|
2015-07-06 10:16:49 +02:00
|
|
|
&issue->properties.expire_spend),
|
2015-06-12 21:29:17 +02:00
|
|
|
TALER_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),
|
2015-06-12 10:28:17 +02:00
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
EXITIF (GNUNET_OK !=
|
|
|
|
TALER_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
0));
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
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,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
2015-03-28 14:39:31 +01:00
|
|
|
struct TALER_MINTDB_Reserve *reserve)
|
2015-03-05 16:16:38 +01:00
|
|
|
{
|
|
|
|
PGresult *result;
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type(&reserve->pub),
|
|
|
|
TALER_PQ_query_param_end
|
2015-03-05 16:16:38 +01:00
|
|
|
};
|
|
|
|
|
2015-03-27 19:58:40 +01:00
|
|
|
result = TALER_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
|
|
|
{
|
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
|
|
|
TALER_PQ_result_spec_amount("current_balance", &reserve->balance),
|
|
|
|
TALER_PQ_result_spec_absolute_time("expiration_date", &reserve->expiry),
|
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
EXITIF (GNUNET_OK !=
|
|
|
|
TALER_PQ_extract_result (result,
|
|
|
|
rs,
|
|
|
|
0));
|
|
|
|
}
|
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,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
|
|
|
const struct TALER_MINTDB_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;
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_absolute_time (&reserve->expiry),
|
|
|
|
TALER_PQ_query_param_amount (&reserve->balance),
|
|
|
|
TALER_PQ_query_param_auto_from_type (&reserve->pub),
|
|
|
|
TALER_PQ_query_param_end
|
2015-03-05 18:16:32 +01:00
|
|
|
};
|
2015-03-27 19:58:40 +01:00
|
|
|
result = TALER_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
|
2015-05-13 15:57:35 +02:00
|
|
|
* @param details bank transaction details justifying the increment,
|
|
|
|
* must be unique for each incoming transaction
|
|
|
|
* @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,
|
|
|
|
struct TALER_MINTDB_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,
|
2015-06-11 13:38:47 +02:00
|
|
|
const json_t *details)
|
2015-03-05 18:16:32 +01:00
|
|
|
{
|
|
|
|
PGresult *result;
|
|
|
|
int reserve_exists;
|
2015-05-13 15:57:35 +02:00
|
|
|
struct TALER_MINTDB_Reserve reserve;
|
2015-06-11 13:14:59 +02:00
|
|
|
struct GNUNET_TIME_Absolute expiry;
|
2015-01-29 00:09:48 +01:00
|
|
|
|
2015-03-20 23:51:28 +01: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. */
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (reserve_pub),
|
|
|
|
TALER_PQ_query_param_amount (balance),
|
|
|
|
TALER_PQ_query_param_absolute_time (&expiry),
|
|
|
|
TALER_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");
|
2015-03-27 19:58:40 +01:00
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
2015-06-03 15:41:09 +02:00
|
|
|
"reserve_create",
|
2015-03-05 18:16:32 +01:00
|
|
|
params);
|
|
|
|
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
|
|
|
{
|
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
|
|
|
TALER_PQ_query_param_auto_from_type (&reserve.pub),
|
|
|
|
TALER_PQ_query_param_amount (balance),
|
2015-06-11 13:38:47 +02:00
|
|
|
TALER_PQ_query_param_json (details),
|
2015-07-01 00:01:21 +02:00
|
|
|
TALER_PQ_query_param_absolute_time (&execution_time),
|
2015-06-04 10:43:44 +02:00
|
|
|
TALER_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"reserves_in_add_transaction",
|
|
|
|
params);
|
|
|
|
}
|
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 */
|
|
|
|
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. */
|
|
|
|
struct TALER_MINTDB_Reserve updated_reserve;
|
|
|
|
|
|
|
|
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))
|
2015-03-05 18:16:32 +01:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
return GNUNET_OK;
|
2015-06-05 13:48:57 +02:00
|
|
|
|
2015-03-05 18:16:32 +01:00
|
|
|
rollback:
|
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-06-03 15:41:09 +02:00
|
|
|
* Locate the response for a /withdraw/sign 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,
|
2015-06-11 13:02:57 +02:00
|
|
|
struct TALER_MINTDB_Session *session,
|
|
|
|
const struct GNUNET_HashCode *h_blind,
|
|
|
|
struct TALER_MINTDB_CollectableBlindcoin *collectable)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
|
|
|
PGresult *result;
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (h_blind),
|
|
|
|
TALER_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;
|
2015-03-27 19:58:40 +01:00
|
|
|
result = TALER_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
|
|
|
}
|
|
|
|
{
|
2015-06-11 13:02:57 +02:00
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
|
|
|
TALER_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&collectable->denom_pub.rsa_public_key),
|
|
|
|
TALER_PQ_result_spec_rsa_signature ("denom_sig",
|
|
|
|
&collectable->sig.rsa_signature),
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("reserve_sig",
|
|
|
|
&collectable->reserve_sig),
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("reserve_pub",
|
|
|
|
&collectable->reserve_pub),
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&collectable->amount_with_fee),
|
|
|
|
TALER_PQ_result_spec_amount ("withdraw_fee",
|
|
|
|
&collectable->withdraw_fee),
|
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_PQ_extract_result (result, rs, 0))
|
|
|
|
{
|
|
|
|
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
|
|
|
|
* #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_insert_withdraw_info (void *cls,
|
2015-06-11 13:02:57 +02:00
|
|
|
struct TALER_MINTDB_Session *session,
|
|
|
|
const struct TALER_MINTDB_CollectableBlindcoin *collectable)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
|
|
|
PGresult *result;
|
2015-03-28 14:39:31 +01:00
|
|
|
struct TALER_MINTDB_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;
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-06-11 13:02:57 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (&collectable->h_coin_envelope),
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_rsa_public_key (collectable->denom_pub.rsa_public_key),
|
|
|
|
TALER_PQ_query_param_rsa_signature (collectable->sig.rsa_signature),
|
|
|
|
TALER_PQ_query_param_auto_from_type (&collectable->reserve_pub),
|
|
|
|
TALER_PQ_query_param_auto_from_type (&collectable->reserve_sig),
|
2015-06-11 13:02:57 +02:00
|
|
|
TALER_PQ_query_param_absolute_time (&now),
|
|
|
|
TALER_PQ_query_param_amount (&collectable->amount_with_fee),
|
|
|
|
TALER_PQ_query_param_amount (&collectable->withdraw_fee),
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_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 ();
|
2015-03-27 19:58:40 +01:00
|
|
|
result = TALER_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
|
|
|
{
|
|
|
|
/* 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-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)
|
|
|
|
*/
|
2015-03-28 14:39:31 +01:00
|
|
|
static struct TALER_MINTDB_ReserveHistory *
|
2015-03-20 23:51:28 +01:00
|
|
|
postgres_get_reserve_history (void *cls,
|
|
|
|
struct TALER_MINTDB_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;
|
2015-03-28 14:39:31 +01:00
|
|
|
struct TALER_MINTDB_ReserveHistory *rh;
|
2015-06-05 15:04:21 +02:00
|
|
|
struct TALER_MINTDB_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
|
|
|
{
|
2015-03-28 14:39:31 +01:00
|
|
|
struct TALER_MINTDB_BankTransfer *bt;
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (reserve_pub),
|
|
|
|
TALER_PQ_query_param_end
|
2015-03-09 17:05:35 +01:00
|
|
|
};
|
2015-01-29 00:09:48 +01:00
|
|
|
|
2015-03-27 19:58:40 +01:00
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
2015-06-03 15:41:09 +02:00
|
|
|
"reserves_in_get_transactions",
|
2015-03-09 17:05:35 +01:00
|
|
|
params);
|
|
|
|
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)
|
|
|
|
{
|
2015-03-28 14:39:31 +01:00
|
|
|
bt = GNUNET_new (struct TALER_MINTDB_BankTransfer);
|
2015-03-09 17:05:35 +01:00
|
|
|
{
|
2015-06-11 13:38:47 +02:00
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
|
|
|
TALER_PQ_result_spec_amount ("balance",
|
|
|
|
&bt->amount),
|
|
|
|
TALER_PQ_result_spec_absolute_time ("execution_date",
|
|
|
|
&bt->execution_date),
|
|
|
|
TALER_PQ_result_spec_json ("details",
|
|
|
|
&bt->wire),
|
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
if (GNUNET_YES !=
|
|
|
|
TALER_PQ_extract_result (result, rs, --rows))
|
|
|
|
{
|
|
|
|
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
|
|
|
{
|
2015-06-05 15:04:21 +02:00
|
|
|
rh_tail->next = GNUNET_new (struct TALER_MINTDB_ReserveHistory);
|
|
|
|
rh_tail = rh_tail->next;
|
2015-03-09 17:05:35 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-06-05 15:04:21 +02:00
|
|
|
rh_tail = GNUNET_new (struct TALER_MINTDB_ReserveHistory);
|
|
|
|
rh = rh_tail;
|
2015-03-09 17:05:35 +01:00
|
|
|
}
|
2015-06-05 15:04:21 +02:00
|
|
|
rh_tail->type = TALER_MINTDB_RO_BANK_TO_MINT;
|
|
|
|
rh_tail->details.bank = bt;
|
2015-03-09 17:05:35 +01:00
|
|
|
}
|
2015-06-05 15:04:21 +02:00
|
|
|
PQclear (result);
|
2015-01-29 00:09:48 +01:00
|
|
|
}
|
|
|
|
{
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (reserve_pub),
|
|
|
|
TALER_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);
|
2015-03-27 19:58:40 +01:00
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
2015-06-11 13:02:57 +02:00
|
|
|
"get_reserves_out",
|
2015-03-09 17:05:35 +01:00
|
|
|
params);
|
|
|
|
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)
|
|
|
|
{
|
2015-06-11 13:02:57 +02:00
|
|
|
struct TALER_MINTDB_CollectableBlindcoin *cbc;
|
|
|
|
|
|
|
|
cbc = GNUNET_new (struct TALER_MINTDB_CollectableBlindcoin);
|
2015-03-09 17:05:35 +01:00
|
|
|
{
|
2015-06-11 13:02:57 +02:00
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("h_blind_ev",
|
|
|
|
&cbc->h_coin_envelope),
|
|
|
|
TALER_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&cbc->denom_pub.rsa_public_key),
|
|
|
|
TALER_PQ_result_spec_rsa_signature ("denom_sig",
|
|
|
|
&cbc->sig.rsa_signature),
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("reserve_sig",
|
|
|
|
&cbc->reserve_sig),
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&cbc->amount_with_fee),
|
|
|
|
TALER_PQ_result_spec_amount ("withdraw_fee",
|
|
|
|
&cbc->withdraw_fee),
|
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
if (GNUNET_YES !=
|
|
|
|
TALER_PQ_extract_result (result, rs, --rows))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
GNUNET_free (cbc);
|
|
|
|
PQclear (result);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
cbc->reserve_pub = *reserve_pub;
|
2015-03-09 17:05:35 +01:00
|
|
|
}
|
2015-06-05 15:04:21 +02:00
|
|
|
rh_tail->next = GNUNET_new (struct TALER_MINTDB_ReserveHistory);
|
|
|
|
rh_tail = rh_tail->next;
|
|
|
|
rh_tail->type = TALER_MINTDB_RO_WITHDRAW_COIN;
|
|
|
|
rh_tail->details.withdraw = cbc;
|
2015-01-29 00:09:48 +01:00
|
|
|
}
|
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,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
2015-03-28 14:39:31 +01:00
|
|
|
const struct TALER_MINTDB_Deposit *deposit)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (&deposit->coin.coin_pub),
|
2015-07-09 13:01:39 +02:00
|
|
|
TALER_PQ_query_param_uint64 (&deposit->transaction_id),
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (&deposit->merchant_pub),
|
|
|
|
TALER_PQ_query_param_end
|
2015-01-28 22:18:53 +01:00
|
|
|
};
|
|
|
|
PGresult *result;
|
|
|
|
|
2015-03-27 19:58:40 +01:00
|
|
|
result = TALER_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. */
|
|
|
|
{
|
2015-06-12 11:57:10 +02:00
|
|
|
struct TALER_MINTDB_Deposit deposit2;
|
2015-06-12 11:47:01 +02:00
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&deposit2.amount_with_fee),
|
|
|
|
TALER_PQ_result_spec_absolute_time ("timestamp",
|
|
|
|
&deposit2.timestamp),
|
|
|
|
TALER_PQ_result_spec_absolute_time ("refund_deadline",
|
|
|
|
&deposit2.refund_deadline),
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("h_contract",
|
|
|
|
&deposit2.h_contract),
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("h_wire",
|
|
|
|
&deposit2.h_wire),
|
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_PQ_extract_result (result, rs, 0))
|
|
|
|
{
|
|
|
|
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) ||
|
|
|
|
(0 != memcmp (&deposit->h_contract,
|
|
|
|
&deposit2.h_contract,
|
|
|
|
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-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,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
2015-03-28 14:39:31 +01:00
|
|
|
const struct TALER_MINTDB_Deposit *deposit)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2015-03-14 15:02:54 +01:00
|
|
|
PGresult *result;
|
|
|
|
int ret;
|
|
|
|
|
2015-06-05 15:26:41 +02:00
|
|
|
{
|
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
|
|
|
TALER_PQ_query_param_auto_from_type (&deposit->coin.coin_pub),
|
|
|
|
TALER_PQ_query_param_rsa_public_key (deposit->coin.denom_pub.rsa_public_key),
|
|
|
|
TALER_PQ_query_param_rsa_signature (deposit->coin.denom_sig.rsa_signature),
|
2015-07-09 13:01:39 +02:00
|
|
|
TALER_PQ_query_param_uint64 (&deposit->transaction_id),
|
2015-06-05 15:26:41 +02:00
|
|
|
TALER_PQ_query_param_amount (&deposit->amount_with_fee),
|
2015-06-11 14:25:42 +02:00
|
|
|
TALER_PQ_query_param_amount (&deposit->deposit_fee),
|
|
|
|
TALER_PQ_query_param_absolute_time (&deposit->timestamp),
|
|
|
|
TALER_PQ_query_param_absolute_time (&deposit->refund_deadline),
|
2015-06-05 15:26:41 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (&deposit->merchant_pub),
|
|
|
|
TALER_PQ_query_param_auto_from_type (&deposit->h_contract),
|
|
|
|
TALER_PQ_query_param_auto_from_type (&deposit->h_wire),
|
|
|
|
TALER_PQ_query_param_auto_from_type (&deposit->csig),
|
2015-06-11 12:10:54 +02:00
|
|
|
TALER_PQ_query_param_json (deposit->wire),
|
2015-06-05 15:26:41 +02:00
|
|
|
TALER_PQ_query_param_end
|
|
|
|
};
|
|
|
|
result = TALER_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
|
|
|
}
|
|
|
|
|
|
|
|
|
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,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
2015-03-24 16:56:06 +01:00
|
|
|
const struct GNUNET_HashCode *session_hash,
|
2015-03-28 14:39:31 +01:00
|
|
|
struct TALER_MINTDB_RefreshSession *refresh_session)
|
2015-01-29 20:00:21 +01:00
|
|
|
{
|
2015-04-09 23:21:35 +02:00
|
|
|
PGresult *result;
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-06-11 12:08:15 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (session_hash),
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_end
|
2015-01-29 20:00:21 +01:00
|
|
|
};
|
|
|
|
|
2015-04-09 23:21:35 +02:00
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"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,
|
|
|
|
sizeof (struct TALER_MINTDB_RefreshSession));
|
2015-01-29 20:00:21 +01:00
|
|
|
{
|
2015-06-05 15:41:03 +02:00
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
2015-06-11 12:08:15 +02:00
|
|
|
TALER_PQ_result_spec_uint16 ("num_oldcoins",
|
|
|
|
&refresh_session->num_oldcoins),
|
|
|
|
TALER_PQ_result_spec_uint16 ("num_newcoins",
|
|
|
|
&refresh_session->num_newcoins),
|
2015-06-11 12:32:40 +02:00
|
|
|
TALER_PQ_result_spec_uint16 ("noreveal_index",
|
|
|
|
&refresh_session->noreveal_index),
|
2015-06-05 15:41:03 +02:00
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
2015-06-11 12:08:15 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_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);
|
|
|
|
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,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
2015-03-24 16:56:06 +01:00
|
|
|
const struct GNUNET_HashCode *session_hash,
|
2015-03-28 14:39:31 +01:00
|
|
|
const struct TALER_MINTDB_RefreshSession *refresh_session)
|
2015-01-29 20:00:21 +01:00
|
|
|
{
|
2015-04-10 10:39:59 +02:00
|
|
|
PGresult *result;
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-06-11 12:08:15 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
TALER_PQ_query_param_uint16 (&refresh_session->num_oldcoins),
|
|
|
|
TALER_PQ_query_param_uint16 (&refresh_session->num_newcoins),
|
|
|
|
TALER_PQ_query_param_uint16 (&refresh_session->noreveal_index),
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_end
|
2015-01-29 20:00:21 +01:00
|
|
|
};
|
2015-06-11 12:08:15 +02:00
|
|
|
|
2015-04-10 10:39:59 +02:00
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"insert_refresh_session",
|
|
|
|
params);
|
2015-01-29 20:00:21 +01:00
|
|
|
if (PGRES_COMMAND_OK != PQresultStatus (result))
|
|
|
|
{
|
2015-03-05 17:53:15 +01:00
|
|
|
BREAK_DB_ERR (result);
|
2015-01-29 20:00:21 +01:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-25 17:40:27 +02:00
|
|
|
/**
|
|
|
|
* Insert a coin we know of into the DB. The coin can then be referenced by
|
|
|
|
* tables for deposits, lock and refresh 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
|
2015-06-12 10:55:03 +02:00
|
|
|
insert_known_coin (void *cls,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
|
|
|
const struct TALER_CoinPublicInfo *coin_info)
|
2015-05-25 17:40:27 +02:00
|
|
|
{
|
|
|
|
PGresult *result;
|
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
|
|
|
TALER_PQ_query_param_auto_from_type (&coin_info->coin_pub),
|
|
|
|
TALER_PQ_query_param_rsa_public_key (coin_info->denom_pub.rsa_public_key),
|
|
|
|
TALER_PQ_query_param_rsa_signature (coin_info->denom_sig.rsa_signature),
|
|
|
|
TALER_PQ_query_param_end
|
|
|
|
};
|
|
|
|
result = TALER_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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
2015-05-27 14:20:07 +02:00
|
|
|
* @param coin_info place holder for the returned coin information object
|
2015-05-25 17:40:27 +02:00
|
|
|
* @return #GNUNET_SYSERR upon error; #GNUNET_NO if no coin is found; #GNUNET_OK
|
|
|
|
* if upon succesfullying retrieving the record data info @a
|
2015-05-27 14:20:07 +02:00
|
|
|
* coin_info
|
2015-05-25 17:40:27 +02:00
|
|
|
*/
|
|
|
|
static int
|
2015-06-12 10:55:03 +02:00
|
|
|
get_known_coin (void *cls,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
struct TALER_CoinPublicInfo *coin_info)
|
2015-05-25 17:40:27 +02:00
|
|
|
{
|
|
|
|
PGresult *result;
|
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
|
|
|
TALER_PQ_query_param_auto_from_type (coin_pub),
|
|
|
|
TALER_PQ_query_param_end
|
|
|
|
};
|
2015-05-27 14:20:07 +02:00
|
|
|
int nrows;
|
|
|
|
|
2015-05-25 17:40:27 +02:00
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"get_known_coin",
|
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-05-27 14:20:07 +02:00
|
|
|
nrows = PQntuples (result);
|
|
|
|
if (0 == nrows)
|
2015-05-25 17:40:27 +02:00
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
2015-05-27 14:20:07 +02:00
|
|
|
GNUNET_assert (1 == nrows); /* due to primary key */
|
2015-08-13 09:20:35 +02:00
|
|
|
if (NULL == coin_info)
|
|
|
|
return GNUNET_YES;
|
2015-05-25 17:40:27 +02:00
|
|
|
{
|
2015-06-05 15:41:03 +02:00
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
|
|
|
TALER_PQ_result_spec_rsa_public_key ("denom_pub", &coin_info->denom_pub.rsa_public_key),
|
|
|
|
TALER_PQ_result_spec_rsa_signature ("denom_sig", &coin_info->denom_sig.rsa_signature),
|
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_OK != TALER_PQ_extract_result (result, rs, 0))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-05-25 17:40:27 +02:00
|
|
|
}
|
|
|
|
PQclear (result);
|
2015-06-05 15:41:03 +02:00
|
|
|
coin_info->coin_pub = *coin_pub;
|
2015-05-25 17:40:27 +02:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-28 22:18:53 +01:00
|
|
|
/**
|
|
|
|
* Store the given /refresh/melt request 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-30 15:34:01 +01:00
|
|
|
* @param oldcoin_index index of the coin to store
|
2015-03-24 16:56:06 +01:00
|
|
|
* @param melt melt operation details to store; includes
|
2015-06-03 16:29:30 +02:00
|
|
|
* the session hash of the melt
|
2015-01-28 22:18:53 +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_melt (void *cls,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
|
|
|
uint16_t oldcoin_index,
|
2015-03-28 14:39:31 +01:00
|
|
|
const struct TALER_MINTDB_RefreshMelt *melt)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
|
|
|
PGresult *result;
|
2015-05-25 22:50:57 +02:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-06-03 16:29:30 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (&melt->coin.coin_pub),
|
|
|
|
TALER_PQ_query_param_auto_from_type (&melt->session_hash),
|
2015-06-11 12:08:15 +02:00
|
|
|
TALER_PQ_query_param_uint16 (&oldcoin_index),
|
2015-05-25 22:50:57 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (&melt->coin_sig),
|
|
|
|
TALER_PQ_query_param_amount (&melt->amount_with_fee),
|
2015-06-11 13:52:45 +02:00
|
|
|
TALER_PQ_query_param_amount (&melt->melt_fee),
|
2015-05-25 22:50:57 +02:00
|
|
|
TALER_PQ_query_param_end
|
|
|
|
};
|
|
|
|
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,
|
|
|
|
&melt->coin.coin_pub,
|
|
|
|
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
|
|
|
{
|
2015-08-14 23:09:34 +02:00
|
|
|
fprintf (stderr,
|
|
|
|
"Melting coin coin %s\n",
|
|
|
|
TALER_B2S (&melt->coin.coin_pub));
|
2015-06-12 10:55:03 +02:00
|
|
|
ret = insert_known_coin (cls,
|
|
|
|
session,
|
|
|
|
&melt->coin);
|
2015-05-25 22:50:57 +02:00
|
|
|
if (ret == GNUNET_SYSERR)
|
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
|
|
|
}
|
2015-05-25 22:50:57 +02:00
|
|
|
/* insert the melt */
|
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"insert_refresh_melt",
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about melted coin details 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
|
2015-03-28 15:42:07 +01:00
|
|
|
* @param session_hash session hash of the melt operation
|
2015-01-28 22:18:53 +01:00
|
|
|
* @param oldcoin_index index of the coin to retrieve
|
2015-06-11 13:52:45 +02:00
|
|
|
* @param melt melt data to fill in, can be NULL
|
2015-01-28 22:18:53 +01:00
|
|
|
* @return #GNUNET_OK on success
|
|
|
|
* #GNUNET_SYSERR on internal error
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
|
|
|
postgres_get_refresh_melt (void *cls,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
2015-03-24 16:56:06 +01:00
|
|
|
const struct GNUNET_HashCode *session_hash,
|
2015-03-20 23:51:28 +01:00
|
|
|
uint16_t oldcoin_index,
|
2015-03-28 14:39:31 +01:00
|
|
|
struct TALER_MINTDB_RefreshMelt *melt)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2015-05-27 14:22:25 +02:00
|
|
|
PGresult *result;
|
|
|
|
struct TALER_CoinPublicInfo coin;
|
|
|
|
struct TALER_CoinSpendSignatureP coin_sig;
|
2015-06-03 16:29:30 +02:00
|
|
|
struct TALER_Amount amount_with_fee;
|
2015-06-11 13:52:45 +02:00
|
|
|
struct TALER_Amount melt_fee;
|
2015-05-27 14:22:25 +02:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (session_hash),
|
2015-08-17 22:45:17 +02:00
|
|
|
TALER_PQ_query_param_uint16 (&oldcoin_index),
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_end
|
2015-05-04 14:47:36 +02:00
|
|
|
};
|
2015-05-27 14:22:25 +02:00
|
|
|
int nrows;
|
2015-05-04 14:47:36 +02:00
|
|
|
|
2015-05-27 14:22:25 +02:00
|
|
|
/* check if the melt record exists and get it */
|
2015-05-04 14:47:36 +02:00
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"get_refresh_melt",
|
|
|
|
params);
|
2015-05-27 14:22:25 +02:00
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
2015-05-04 14:47:36 +02:00
|
|
|
{
|
2015-05-27 14:22:25 +02:00
|
|
|
BREAK_DB_ERR (result);
|
2015-05-04 14:47:36 +02:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-06-05 15:48:00 +02:00
|
|
|
nrows = PQntuples (result);
|
2015-05-27 14:22:25 +02:00
|
|
|
if (0 == nrows)
|
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
|
|
|
"get_refresh_melt() returned 0 matching rows\n");
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
GNUNET_assert (1 == nrows); /* due to primary key constraint */
|
2015-05-04 14:47:36 +02:00
|
|
|
{
|
2015-06-05 15:48:00 +02:00
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("coin_pub", &coin.coin_pub),
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("coin_sig", &coin_sig),
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee", &amount_with_fee),
|
2015-08-13 23:16:31 +02:00
|
|
|
TALER_PQ_result_spec_amount ("melt_fee", &melt_fee),
|
2015-06-05 15:48:00 +02:00
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
if (GNUNET_OK != TALER_PQ_extract_result (result, rs, 0))
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-05-04 14:47:36 +02:00
|
|
|
PQclear (result);
|
|
|
|
}
|
2015-05-27 14:22:25 +02:00
|
|
|
/* fetch the coin info and denomination info */
|
2015-06-12 10:55:03 +02:00
|
|
|
if (GNUNET_OK != get_known_coin (cls,
|
|
|
|
session,
|
|
|
|
&coin.coin_pub,
|
|
|
|
&coin))
|
2015-05-27 14:22:25 +02:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
if (NULL == melt)
|
|
|
|
return GNUNET_OK;
|
|
|
|
melt->coin = coin;
|
|
|
|
melt->coin_sig = coin_sig;
|
2015-06-05 15:48:00 +02:00
|
|
|
melt->session_hash = *session_hash;
|
2015-06-03 16:29:30 +02:00
|
|
|
melt->amount_with_fee = amount_with_fee;
|
2015-06-11 13:52:45 +02:00
|
|
|
melt->melt_fee = melt_fee;
|
2015-05-27 14:22:25 +02: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,
|
|
|
|
struct TALER_MINTDB_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;
|
|
|
|
|
|
|
|
{
|
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
|
|
|
TALER_PQ_query_param_uint16 (&newcoin_off),
|
|
|
|
TALER_PQ_query_param_auto_from_type (session_hash),
|
2015-08-14 22:02:33 +02:00
|
|
|
TALER_PQ_query_param_rsa_public_key (denom_pubs[i].rsa_public_key),
|
2015-06-11 14:46:03 +02:00
|
|
|
TALER_PQ_query_param_end
|
|
|
|
};
|
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"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,
|
|
|
|
struct TALER_MINTDB_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
|
|
|
{
|
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
|
|
|
TALER_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
TALER_PQ_query_param_uint16 (&newcoin_off),
|
|
|
|
TALER_PQ_query_param_end
|
|
|
|
};
|
|
|
|
|
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"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));
|
|
|
|
{
|
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
|
|
|
TALER_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&denom_pubs[i].rsa_public_key),
|
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_PQ_extract_result (result, rs, 0))
|
|
|
|
{
|
|
|
|
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-06-10 11:34:21 +02:00
|
|
|
* @param cnc_index cut and choose index (1st dimension)
|
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,
|
|
|
|
struct TALER_MINTDB_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 cnc_index,
|
|
|
|
uint16_t num_newcoins,
|
2015-03-28 14:39:31 +01:00
|
|
|
const struct TALER_MINTDB_RefreshCommitCoin *commit_coins)
|
2015-01-29 20:18:04 +01:00
|
|
|
{
|
2015-06-10 11:14:05 +02:00
|
|
|
char *rle;
|
|
|
|
size_t rle_size;
|
|
|
|
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
|
|
|
rle = TALER_refresh_link_encrypted_encode (commit_coins[i].refresh_link,
|
|
|
|
&rle_size);
|
|
|
|
if (NULL == rle)
|
|
|
|
{
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
coin_off = (uint16_t) i;
|
|
|
|
{
|
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
|
|
|
TALER_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
TALER_PQ_query_param_uint16 (&cnc_index),
|
|
|
|
TALER_PQ_query_param_uint16 (&coin_off),
|
|
|
|
TALER_PQ_query_param_fixed_size (rle,
|
|
|
|
rle_size),
|
2015-08-14 21:06:13 +02:00
|
|
|
TALER_PQ_query_param_fixed_size (commit_coins[i].coin_ev,
|
|
|
|
commit_coins[i].coin_ev_size),
|
2015-06-11 14:40:07 +02:00
|
|
|
TALER_PQ_query_param_end
|
|
|
|
};
|
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"insert_refresh_commit_coin",
|
|
|
|
params);
|
|
|
|
}
|
|
|
|
GNUNET_free (rle);
|
|
|
|
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.
|
|
|
|
*
|
|
|
|
* @param commit_coins data to free (but not the array itself)
|
|
|
|
* @param commit_coins_len length of @a commit_coins array
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
free_cc_result (struct TALER_MINTDB_RefreshCommitCoin *commit_coins,
|
|
|
|
unsigned int commit_coins_len)
|
|
|
|
{
|
|
|
|
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].refresh_link);
|
|
|
|
commit_coins[i].refresh_link = NULL;
|
|
|
|
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-03-28 15:42:07 +01:00
|
|
|
* @param cnc_index set index (1st dimension)
|
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,
|
|
|
|
struct TALER_MINTDB_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 cnc_index,
|
2015-06-11 14:40:07 +02:00
|
|
|
uint16_t num_newcoins,
|
|
|
|
struct TALER_MINTDB_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;
|
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
|
|
|
TALER_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
TALER_PQ_query_param_uint16 (&cnc_index),
|
|
|
|
TALER_PQ_query_param_uint16 (&newcoin_off),
|
|
|
|
TALER_PQ_query_param_end
|
|
|
|
};
|
|
|
|
void *c_buf;
|
|
|
|
size_t c_buf_size;
|
|
|
|
void *rl_buf;
|
|
|
|
size_t rl_buf_size;
|
|
|
|
struct TALER_RefreshLinkEncrypted *rl;
|
|
|
|
PGresult *result;
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2015-06-11 14:40:07 +02:00
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"get_refresh_commit_coin",
|
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
|
|
|
{
|
|
|
|
BREAK_DB_ERR (result);
|
|
|
|
PQclear (result);
|
|
|
|
free_cc_result (commit_coins, i);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
if (0 == PQntuples (result))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
free_cc_result (commit_coins, i);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
|
|
|
TALER_PQ_result_spec_variable_size ("link_vector_enc",
|
|
|
|
&rl_buf,
|
|
|
|
&rl_buf_size),
|
|
|
|
TALER_PQ_result_spec_variable_size ("coin_ev",
|
|
|
|
&c_buf,
|
|
|
|
&c_buf_size),
|
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_YES !=
|
|
|
|
TALER_PQ_extract_result (result, rs, 0))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
free_cc_result (commit_coins, i);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
}
|
2015-01-29 20:18:04 +01:00
|
|
|
PQclear (result);
|
2015-06-11 14:40:07 +02:00
|
|
|
if (rl_buf_size < sizeof (struct TALER_CoinSpendPrivateKeyP))
|
|
|
|
{
|
|
|
|
GNUNET_free (c_buf);
|
|
|
|
GNUNET_free (rl_buf);
|
|
|
|
free_cc_result (commit_coins, i);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
rl = TALER_refresh_link_encrypted_decode (rl_buf,
|
|
|
|
rl_buf_size);
|
2015-01-29 20:18:04 +01:00
|
|
|
GNUNET_free (rl_buf);
|
2015-06-11 14:40:07 +02:00
|
|
|
commit_coins[i].refresh_link = rl;
|
|
|
|
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
|
2015-06-10 11:34:21 +02:00
|
|
|
* @param cnc_index cut and choose index (1st dimension)
|
|
|
|
* @param num_links size of the @a links array to return
|
|
|
|
* @param[out] links array of link information to store return
|
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
|
2015-03-22 14:21:16 +01:00
|
|
|
postgres_insert_refresh_commit_links (void *cls,
|
|
|
|
struct TALER_MINTDB_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 cnc_index,
|
|
|
|
uint16_t num_links,
|
2015-08-09 21:25:49 +02:00
|
|
|
const struct TALER_RefreshCommitLinkP *links)
|
2015-01-29 20:18:04 +01:00
|
|
|
{
|
2015-08-17 03:07:48 +02:00
|
|
|
uint16_t i;
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2015-08-17 03:07:48 +02:00
|
|
|
for (i=0;i<num_links;i++)
|
2015-01-29 20:18:04 +01:00
|
|
|
{
|
2015-08-17 03:07:48 +02:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
|
|
|
TALER_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
TALER_PQ_query_param_auto_from_type (&links[i].transfer_pub),
|
|
|
|
TALER_PQ_query_param_uint16 (&cnc_index),
|
|
|
|
TALER_PQ_query_param_uint16 (&i),
|
|
|
|
TALER_PQ_query_param_auto_from_type (&links[i].shared_secret_enc),
|
|
|
|
TALER_PQ_query_param_end
|
|
|
|
};
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2015-08-17 03:07:48 +02:00
|
|
|
PGresult *result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"insert_refresh_commit_link",
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
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
|
2015-06-10 11:34:21 +02:00
|
|
|
* @param cnc_index cut and choose index (1st dimension)
|
2015-03-22 14:21:16 +01:00
|
|
|
* @param num_links size of the @a commit_link array
|
2015-03-28 15:42:07 +01:00
|
|
|
* @param[out] links array of link 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
|
2015-03-22 14:21:16 +01:00
|
|
|
postgres_get_refresh_commit_links (void *cls,
|
|
|
|
struct TALER_MINTDB_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 cnc_index,
|
|
|
|
uint16_t num_links,
|
2015-08-09 21:25:49 +02:00
|
|
|
struct TALER_RefreshCommitLinkP *links)
|
2015-01-29 20:18:04 +01:00
|
|
|
{
|
2015-08-17 03:07:48 +02:00
|
|
|
uint16_t i;
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2015-08-17 03:07:48 +02:00
|
|
|
for (i=0;i<num_links;i++)
|
2015-01-29 20:18:04 +01:00
|
|
|
{
|
2015-08-17 03:07:48 +02:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
|
|
|
TALER_PQ_query_param_auto_from_type (session_hash),
|
|
|
|
TALER_PQ_query_param_uint16 (&cnc_index),
|
|
|
|
TALER_PQ_query_param_uint16 (&i),
|
|
|
|
TALER_PQ_query_param_end
|
2015-06-11 12:08:15 +02:00
|
|
|
};
|
2015-08-17 03:07:48 +02:00
|
|
|
PGresult *result;
|
2015-01-29 20:18:04 +01:00
|
|
|
|
2015-08-17 03:07:48 +02:00
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"get_refresh_commit_link",
|
|
|
|
params);
|
|
|
|
if (PGRES_TUPLES_OK != PQresultStatus (result))
|
2015-06-11 12:08:15 +02:00
|
|
|
{
|
2015-08-17 03:07:48 +02:00
|
|
|
BREAK_DB_ERR (result);
|
2015-06-11 12:08:15 +02:00
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-08-17 03:07:48 +02:00
|
|
|
if (0 == PQntuples (result))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("transfer_pub",
|
|
|
|
&links[i].transfer_pub),
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("link_secret_enc",
|
|
|
|
&links[i].shared_secret_enc),
|
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_YES !=
|
|
|
|
TALER_PQ_extract_result (result, rs, 0))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PQclear (result);
|
2015-06-11 12:08:15 +02:00
|
|
|
}
|
2015-01-29 20:18:04 +01:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-11 21:29:15 +02:00
|
|
|
/**
|
|
|
|
* Get all of the information from the given melt commit operation.
|
|
|
|
*
|
|
|
|
* @param cls the @e cls of this struct with the plugin-specific state
|
2015-05-16 18:26:34 +02:00
|
|
|
* @param session database connection to use
|
2015-04-11 21:29:15 +02:00
|
|
|
* @param session_hash hash to identify refresh session
|
|
|
|
* @return NULL if the @a session_hash does not correspond to any known melt
|
|
|
|
* operation
|
|
|
|
*/
|
|
|
|
static struct TALER_MINTDB_MeltCommitment *
|
|
|
|
postgres_get_melt_commitment (void *cls,
|
2015-05-16 18:26:34 +02:00
|
|
|
struct TALER_MINTDB_Session *session,
|
2015-04-11 21:29:15 +02:00
|
|
|
const struct GNUNET_HashCode *session_hash)
|
|
|
|
{
|
2015-06-11 16:03:07 +02:00
|
|
|
struct TALER_MINTDB_RefreshSession rs;
|
2015-04-11 21:29:15 +02:00
|
|
|
struct TALER_MINTDB_MeltCommitment *mc;
|
2015-06-11 16:03:07 +02:00
|
|
|
uint16_t cnc_index;
|
|
|
|
unsigned int i;
|
2015-04-11 21:29:15 +02:00
|
|
|
|
2015-06-11 16:03:07 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
postgres_get_refresh_session (cls,
|
|
|
|
session,
|
|
|
|
session_hash,
|
|
|
|
&rs))
|
|
|
|
return NULL;
|
2015-04-11 21:29:15 +02:00
|
|
|
mc = GNUNET_new (struct TALER_MINTDB_MeltCommitment);
|
2015-06-11 16:03:07 +02:00
|
|
|
mc->num_newcoins = rs.num_newcoins;
|
|
|
|
mc->num_oldcoins = rs.num_oldcoins;
|
2015-04-11 21:29:15 +02:00
|
|
|
mc->melts = GNUNET_malloc (mc->num_oldcoins *
|
|
|
|
sizeof (struct TALER_MINTDB_RefreshMelt));
|
2015-06-11 16:03:07 +02:00
|
|
|
for (i=0;i<mc->num_oldcoins;i++)
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
postgres_get_refresh_melt (cls,
|
|
|
|
session,
|
|
|
|
session_hash,
|
|
|
|
(uint16_t) i,
|
|
|
|
&mc->melts[i]))
|
|
|
|
goto cleanup;
|
|
|
|
mc->denom_pubs = GNUNET_malloc (mc->num_newcoins *
|
|
|
|
sizeof (struct TALER_DenominationPublicKey));
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
postgres_get_refresh_order (cls,
|
|
|
|
session,
|
|
|
|
session_hash,
|
|
|
|
mc->num_newcoins,
|
|
|
|
mc->denom_pubs))
|
|
|
|
goto cleanup;
|
|
|
|
for (cnc_index=0;cnc_index<TALER_CNC_KAPPA;cnc_index++)
|
2015-04-11 21:29:15 +02:00
|
|
|
{
|
2015-06-11 16:03:07 +02:00
|
|
|
mc->commit_coins[cnc_index]
|
|
|
|
= GNUNET_malloc (mc->num_newcoins *
|
|
|
|
sizeof (struct TALER_MINTDB_RefreshCommitCoin));
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
postgres_get_refresh_commit_coins (cls,
|
|
|
|
session,
|
|
|
|
session_hash,
|
|
|
|
cnc_index,
|
|
|
|
mc->num_newcoins,
|
|
|
|
mc->commit_coins[cnc_index]))
|
|
|
|
goto cleanup;
|
|
|
|
mc->commit_links[cnc_index]
|
|
|
|
= GNUNET_malloc (mc->num_oldcoins *
|
2015-08-09 21:25:49 +02:00
|
|
|
sizeof (struct TALER_RefreshCommitLinkP));
|
2015-06-11 16:03:07 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
postgres_get_refresh_commit_links (cls,
|
|
|
|
session,
|
|
|
|
session_hash,
|
|
|
|
cnc_index,
|
|
|
|
mc->num_oldcoins,
|
|
|
|
mc->commit_links[cnc_index]))
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
return mc;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
GNUNET_free_non_null (mc->melts);
|
|
|
|
if (NULL != mc->denom_pubs)
|
|
|
|
{
|
|
|
|
for (i=0;i<(unsigned int) mc->num_newcoins;i++)
|
|
|
|
if (NULL != mc->denom_pubs[i].rsa_public_key)
|
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (mc->denom_pubs[i].rsa_public_key);
|
|
|
|
GNUNET_free (mc->denom_pubs);
|
|
|
|
}
|
|
|
|
for (cnc_index=0;cnc_index<TALER_CNC_KAPPA;cnc_index++)
|
|
|
|
{
|
|
|
|
if (NULL != mc->commit_coins[cnc_index])
|
2015-04-11 21:29:15 +02:00
|
|
|
{
|
2015-06-11 16:03:07 +02:00
|
|
|
for (i=0;i<(unsigned int) mc->num_newcoins;i++)
|
|
|
|
{
|
|
|
|
GNUNET_free_non_null (mc->commit_coins[cnc_index][i].refresh_link);
|
|
|
|
GNUNET_free_non_null (mc->commit_coins[cnc_index][i].coin_ev);
|
|
|
|
}
|
|
|
|
GNUNET_free (mc->commit_coins[cnc_index]);
|
2015-04-11 21:29:15 +02:00
|
|
|
}
|
2015-06-11 16:03:07 +02:00
|
|
|
GNUNET_free_non_null (mc->commit_links[cnc_index]);
|
2015-04-11 21:29:15 +02:00
|
|
|
}
|
2015-06-11 16:03:07 +02:00
|
|
|
GNUNET_free (mc);
|
2015-04-11 21:29:15 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
static int
|
2015-06-11 12:30:14 +02:00
|
|
|
postgres_insert_refresh_out (void *cls,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
|
|
|
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;
|
2015-06-10 15:20:57 +02:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
|
|
|
TALER_PQ_query_param_auto_from_type (session_hash),
|
2015-06-11 12:08:15 +02:00
|
|
|
TALER_PQ_query_param_uint16 (&newcoin_index),
|
2015-06-10 15:20:57 +02:00
|
|
|
TALER_PQ_query_param_rsa_signature (ev_sig->rsa_signature),
|
|
|
|
TALER_PQ_query_param_end
|
|
|
|
};
|
2015-01-31 20:53:19 +01:00
|
|
|
|
2015-06-10 15:20:57 +02:00
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
2015-06-11 12:30:14 +02:00
|
|
|
"insert_refresh_out",
|
2015-06-10 15:20:57 +02:00
|
|
|
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
|
|
|
*/
|
2015-03-28 14:39:31 +01:00
|
|
|
static struct TALER_MINTDB_LinkDataList *
|
2015-03-22 13:02:11 +01:00
|
|
|
postgres_get_link_data_list (void *cls,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
2015-06-15 14:18:37 +02:00
|
|
|
const struct GNUNET_HashCode *session_hash)
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
2015-03-28 14:39:31 +01:00
|
|
|
struct TALER_MINTDB_LinkDataList *ldl;
|
|
|
|
struct TALER_MINTDB_LinkDataList *pos;
|
2015-06-10 15:20:57 +02:00
|
|
|
int i;
|
2015-06-10 15:48:03 +02:00
|
|
|
int nrows;
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-06-15 14:18:37 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (session_hash),
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_end
|
2015-01-31 20:53:19 +01:00
|
|
|
};
|
2015-06-11 16:25:32 +02:00
|
|
|
PGresult *result;
|
|
|
|
|
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"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;
|
|
|
|
}
|
|
|
|
|
2015-06-10 15:48:03 +02:00
|
|
|
for (i = 0; i < nrows; i++)
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
|
|
|
struct TALER_RefreshLinkEncrypted *link_enc;
|
2015-05-10 22:38:34 +02:00
|
|
|
struct GNUNET_CRYPTO_rsa_PublicKey *denom_pub;
|
|
|
|
struct GNUNET_CRYPTO_rsa_Signature *sig;
|
|
|
|
void *ld_buf;
|
2015-01-31 20:53:19 +01:00
|
|
|
size_t ld_buf_size;
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
2015-06-11 16:25:32 +02:00
|
|
|
TALER_PQ_result_spec_variable_size ("link_vector_enc",
|
|
|
|
&ld_buf,
|
|
|
|
&ld_buf_size),
|
|
|
|
TALER_PQ_result_spec_rsa_signature ("ev_sig",
|
|
|
|
&sig),
|
2015-06-15 14:18:37 +02:00
|
|
|
TALER_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&denom_pub),
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_result_spec_end
|
2015-01-31 20:53:19 +01:00
|
|
|
};
|
|
|
|
|
2015-06-10 15:31:38 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_PQ_extract_result (result, rs, i))
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
GNUNET_break (0);
|
2015-03-22 13:02:11 +01:00
|
|
|
common_free_link_data_list (cls,
|
|
|
|
ldl);
|
2015-01-31 20:53:19 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2015-05-16 14:15:34 +02:00
|
|
|
if (ld_buf_size < sizeof (struct GNUNET_CRYPTO_EddsaPrivateKey))
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
GNUNET_free (ld_buf);
|
2015-03-22 13:02:11 +01:00
|
|
|
common_free_link_data_list (cls,
|
|
|
|
ldl);
|
2015-01-31 20:53:19 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2015-06-10 15:20:57 +02:00
|
|
|
link_enc = TALER_refresh_link_encrypted_decode (ld_buf,
|
|
|
|
ld_buf_size);
|
2015-01-31 20:53:19 +01:00
|
|
|
GNUNET_free (ld_buf);
|
2015-03-28 14:39:31 +01:00
|
|
|
pos = GNUNET_new (struct TALER_MINTDB_LinkDataList);
|
2015-01-31 20:53:19 +01:00
|
|
|
pos->next = ldl;
|
|
|
|
pos->link_data_enc = link_enc;
|
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;
|
|
|
|
}
|
|
|
|
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,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
2015-05-16 14:15:34 +02:00
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
2015-06-15 14:18:37 +02:00
|
|
|
TALER_MINTDB_TransferDataCallback tdc,
|
|
|
|
void *tdc_cls)
|
2015-01-31 20:53:19 +01:00
|
|
|
{
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-06-10 15:31:38 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (coin_pub),
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_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
|
|
|
|
2015-06-10 15:31:38 +02:00
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"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);
|
2015-08-14 23:09:34 +02:00
|
|
|
fprintf (stderr,
|
|
|
|
"linkage for coin %s resulted in %d results\n",
|
|
|
|
TALER_B2S (coin_pub),
|
|
|
|
nrows);
|
2015-06-15 14:18:37 +02:00
|
|
|
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;
|
|
|
|
struct TALER_EncryptedLinkSecretP shared_secret_enc;
|
2015-06-10 15:31:38 +02:00
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
2015-06-15 14:18:37 +02:00
|
|
|
TALER_PQ_result_spec_auto_from_type ("transfer_pub", &transfer_pub),
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("link_secret_enc", &shared_secret_enc),
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("session_hash", &session_hash),
|
2015-06-10 15:31:38 +02:00
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
2015-01-31 20:53:19 +01:00
|
|
|
|
2015-06-10 15:31:38 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_PQ_extract_result (result, rs, 0))
|
|
|
|
{
|
|
|
|
PQclear (result);
|
|
|
|
GNUNET_break (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-06-15 14:18:37 +02:00
|
|
|
tdc (tdc_cls,
|
|
|
|
&session_hash,
|
|
|
|
&transfer_pub,
|
|
|
|
&shared_secret_enc);
|
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
|
|
|
|
* with the given coin (/refresh/melt and /deposit operations).
|
|
|
|
*
|
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
|
|
|
|
*/
|
2015-03-28 14:39:31 +01:00
|
|
|
static struct TALER_MINTDB_TransactionList *
|
2015-03-20 23:51:28 +01:00
|
|
|
postgres_get_coin_transactions (void *cls,
|
|
|
|
struct TALER_MINTDB_Session *session,
|
2015-05-16 14:15:34 +02:00
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub)
|
2015-01-28 22:18:53 +01:00
|
|
|
{
|
2015-04-10 16:22:03 +02:00
|
|
|
struct TALER_MINTDB_TransactionList *head;
|
|
|
|
|
|
|
|
head = NULL;
|
|
|
|
/* check deposits */
|
|
|
|
{
|
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_PQ_query_param_auto_from_type (&coin_pub->eddsa_pub),
|
|
|
|
TALER_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;
|
|
|
|
struct TALER_MINTDB_TransactionList *tl;
|
|
|
|
|
2015-04-10 16:22:03 +02:00
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"get_deposit_with_coin_pub",
|
|
|
|
params);
|
|
|
|
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
|
|
|
{
|
2015-06-10 15:48:03 +02:00
|
|
|
struct TALER_MINTDB_Deposit *deposit;
|
|
|
|
|
2015-04-10 16:22:03 +02:00
|
|
|
deposit = GNUNET_new (struct TALER_MINTDB_Deposit);
|
|
|
|
{
|
2015-06-10 15:48:03 +02:00
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
2015-06-11 14:25:42 +02:00
|
|
|
TALER_PQ_result_spec_rsa_public_key ("denom_pub",
|
|
|
|
&deposit->coin.denom_pub.rsa_public_key),
|
|
|
|
TALER_PQ_result_spec_rsa_signature ("denom_sig",
|
|
|
|
&deposit->coin.denom_sig.rsa_signature),
|
2015-06-11 12:08:15 +02:00
|
|
|
TALER_PQ_result_spec_uint64 ("transaction_id",
|
|
|
|
&deposit->transaction_id),
|
2015-06-11 14:25:42 +02:00
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&deposit->amount_with_fee),
|
|
|
|
TALER_PQ_result_spec_amount ("deposit_fee",
|
|
|
|
&deposit->deposit_fee),
|
|
|
|
TALER_PQ_result_spec_absolute_time ("timestamp",
|
|
|
|
&deposit->timestamp),
|
|
|
|
TALER_PQ_result_spec_absolute_time ("refund_deadline",
|
|
|
|
&deposit->refund_deadline),
|
2015-06-11 12:08:15 +02:00
|
|
|
TALER_PQ_result_spec_auto_from_type ("merchant_pub",
|
|
|
|
&deposit->merchant_pub),
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("h_contract",
|
|
|
|
&deposit->h_contract),
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("h_wire",
|
|
|
|
&deposit->h_wire),
|
2015-06-11 12:10:54 +02:00
|
|
|
TALER_PQ_result_spec_json ("wire",
|
|
|
|
&deposit->wire),
|
2015-06-11 14:25:42 +02:00
|
|
|
TALER_PQ_result_spec_auto_from_type ("coin_sig",
|
|
|
|
&deposit->csig),
|
2015-06-10 15:48:03 +02:00
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_PQ_extract_result (result, rs, i))
|
|
|
|
{
|
|
|
|
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
|
|
|
}
|
|
|
|
tl = GNUNET_new (struct TALER_MINTDB_TransactionList);
|
2015-06-10 15:48:03 +02:00
|
|
|
tl->next = head;
|
2015-04-10 16:22:03 +02:00
|
|
|
tl->type = TALER_MINTDB_TT_DEPOSIT;
|
|
|
|
tl->details.deposit = deposit;
|
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 */
|
|
|
|
{
|
2015-06-11 16:21:40 +02:00
|
|
|
struct TALER_PQ_QueryParam params[] = {
|
|
|
|
TALER_PQ_query_param_auto_from_type (&coin_pub->eddsa_pub),
|
|
|
|
TALER_PQ_query_param_end
|
|
|
|
};
|
|
|
|
int nrows;
|
|
|
|
int i;
|
|
|
|
PGresult *result;
|
|
|
|
struct TALER_MINTDB_TransactionList *tl;
|
|
|
|
|
|
|
|
/* check if the melt record exists and get it */
|
|
|
|
result = TALER_PQ_exec_prepared (session->conn,
|
|
|
|
"get_refresh_melt_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_MINTDB_RefreshMelt *melt;
|
|
|
|
|
|
|
|
melt = GNUNET_new (struct TALER_MINTDB_RefreshMelt);
|
|
|
|
{
|
|
|
|
struct TALER_PQ_ResultSpec rs[] = {
|
2015-06-15 14:18:37 +02:00
|
|
|
TALER_PQ_result_spec_auto_from_type ("session_hash",
|
2015-06-11 16:21:40 +02:00
|
|
|
&melt->session_hash),
|
|
|
|
/* oldcoin_index not needed */
|
|
|
|
TALER_PQ_result_spec_auto_from_type ("coin_sig",
|
|
|
|
&melt->coin_sig),
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&melt->amount_with_fee),
|
|
|
|
TALER_PQ_result_spec_amount ("amount_with_fee",
|
|
|
|
&melt->melt_fee),
|
|
|
|
TALER_PQ_result_spec_end
|
|
|
|
};
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_PQ_extract_result (result, rs, 0))
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tl = GNUNET_new (struct TALER_MINTDB_TransactionList);
|
|
|
|
tl->next = head;
|
|
|
|
tl->type = TALER_MINTDB_TT_REFRESH_MELT;
|
|
|
|
tl->details.melt = melt;
|
|
|
|
head = tl;
|
|
|
|
continue;
|
|
|
|
}
|
2015-07-09 22:29:10 +02:00
|
|
|
PQclear (result);
|
2015-06-10 15:48:03 +02:00
|
|
|
}
|
2015-06-11 16:21:40 +02:00
|
|
|
/* FIXME: Handle locked coins (#3625) */
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
* @return NULL on error, otherwise a `struct TALER_MINTDB_Plugin`
|
2015-01-28 22:47:03 +01:00
|
|
|
*/
|
2015-03-20 23:51:28 +01:00
|
|
|
void *
|
|
|
|
libtaler_plugin_mintdb_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;
|
|
|
|
struct TALER_MINTDB_Plugin *plugin;
|
|
|
|
|
|
|
|
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");
|
2015-03-20 23:51:28 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
2015-06-11 16:11:07 +02:00
|
|
|
"mintdb-postgres",
|
2015-06-10 15:49:54 +02:00
|
|
|
"db_conn_str",
|
2015-03-27 19:58:40 +01:00
|
|
|
&pg->connection_cfg_str))
|
2015-03-20 23:51:28 +01:00
|
|
|
{
|
|
|
|
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
"mint",
|
2015-03-26 18:06:37 +01:00
|
|
|
"db_conn_str");
|
2015-03-20 23:51:28 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
plugin = GNUNET_new (struct TALER_MINTDB_Plugin);
|
|
|
|
plugin->cls = pg;
|
2015-03-22 12:49:48 +01:00
|
|
|
plugin->get_session = &postgres_get_session;
|
|
|
|
plugin->drop_temporary = &postgres_drop_temporary;
|
|
|
|
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;
|
|
|
|
plugin->insert_deposit = &postgres_insert_deposit;
|
2015-06-11 16:03:07 +02:00
|
|
|
|
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_melt = &postgres_insert_refresh_melt;
|
|
|
|
plugin->get_refresh_melt = &postgres_get_refresh_melt;
|
|
|
|
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;
|
|
|
|
plugin->insert_refresh_commit_links = &postgres_insert_refresh_commit_links;
|
|
|
|
plugin->get_refresh_commit_links = &postgres_get_refresh_commit_links;
|
2015-06-11 16:03:07 +02:00
|
|
|
|
2015-04-11 21:29:15 +02:00
|
|
|
plugin->get_melt_commitment = &postgres_get_melt_commitment;
|
|
|
|
plugin->free_melt_commitment = &common_free_melt_commitment;
|
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;
|
2015-06-10 15:49:54 +02:00
|
|
|
// plugin->have_lock = &postgres_have_lock; /* #3625 */
|
|
|
|
// plugin->insert_lock = &postgres_insert_lock; /* #3625 */
|
2015-03-22 12:49:48 +01:00
|
|
|
plugin->get_coin_transactions = &postgres_get_coin_transactions;
|
2015-03-22 13:02:11 +01:00
|
|
|
plugin->free_coin_transaction_list = &common_free_coin_transaction_list;
|
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.
|
|
|
|
*
|
|
|
|
* @param cls a `struct TALER_MINTDB_Plugin`
|
|
|
|
* @return NULL (always)
|
|
|
|
*/
|
|
|
|
void *
|
|
|
|
libtaler_plugin_mintdb_postgres_done (void *cls)
|
|
|
|
{
|
|
|
|
struct TALER_MINTDB_Plugin *plugin = cls;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* end of plugin_mintdb_postgres.c */
|