Merge branch 'master' of git+ssh://git.taler.net/var/git/mint

This commit is contained in:
Christian Grothoff 2015-04-12 22:18:26 +02:00
commit 5f2d3295dc
3 changed files with 141 additions and 6 deletions

View File

@ -25,6 +25,7 @@
#include <gnunet/gnunet_util_lib.h> #include <gnunet/gnunet_util_lib.h>
#include "taler_util.h" #include "taler_util.h"
#include "taler_signatures.h" #include "taler_signatures.h"
#include "taler_mintdb_lib.h"
/** /**
@ -652,6 +653,19 @@ struct TALER_MINTDB_Plugin
(*rollback) (void *cls, (*rollback) (void *cls,
struct TALER_MINTDB_Session *sesssion); struct TALER_MINTDB_Session *sesssion);
/**
* Insert a denomination key
*
* @param cls the @e cls of this struct with the plugin-specific state
* @param sesssion connection to use
* @param dki the denomination key information
* @return #GNUNET_OK on success; #GNUNET_SYSERR on failure
*/
int
(*insert_denomination) (void *cls,
struct TALER_MINTDB_Session *session,
const struct TALER_MINTDB_DenominationKeyIssueInformation *dki);
/** /**
* Get the summary of a reserve. * Get the summary of a reserve.

View File

@ -63,9 +63,8 @@
} while (0) } while (0)
/** /**
* This the length of the currency strings (without 0-termination) we use. Note * This the length of the currency strings (without 0-termination) we use.
* that we need to use this at the DB layer instead of TALER_CURRENCY_LEN as the * FIXME: #3768: we should eventually store 12 bytes here
* DB only needs to store 3 bytes instead of 8 bytes.
*/ */
#define TALER_PQ_CURRENCY_LEN 3 #define TALER_PQ_CURRENCY_LEN 3
@ -178,6 +177,23 @@ postgres_create_tables (void *cls,
return GNUNET_SYSERR; return GNUNET_SYSERR;
} }
#define SQLEXEC(sql) SQLEXEC_(conn, sql, result); #define SQLEXEC(sql) SQLEXEC_(conn, sql, result);
/* Denomination table for holding the publicly available information of
denominations keys */
SQLEXEC ("CREATE TABLE IF NOT EXISTS denominations"
"("
" pub BYTEA PRIMARY KEY"
",valid_from INT8 NOT NULL"
",expire_withdraw INT8 NOT NULL"
",expire_spend INT8 NOT NULL"
",expire_legal INT8 NOT NULL"
",value INT8 NOT NULL" /* value of this denom */
",fraction INT4 NOT NULL" /* fractional value of this denom */
",currency VARCHAR(4) NOT NULL" /* assuming same currency for fees */
",fee_withdraw_value INT8 NOT NULL"
",fee_withdraw_fraction INT4 NOT NULL"
",fee_refresh_value INT8 NOT NULL"
",fee_refresh_fraction INT4 NOT NULL"
")");
/* reserves table is for summarization of a reserve. It is updated when new /* reserves table is for summarization of a reserve. It is updated when new
funds are added and existing funds are withdrawn */ funds are added and existing funds are withdrawn */
SQLEXEC ("CREATE TABLE IF NOT EXISTS reserves" SQLEXEC ("CREATE TABLE IF NOT EXISTS reserves"
@ -331,6 +347,24 @@ postgres_prepare (PGconn *db_conn)
PQclear (result); result = NULL; \ PQclear (result); result = NULL; \
} while (0); } while (0);
PREPARE ("insert_denomination",
"INSERT INTO denominations ("
" pub"
",valid_from"
",expire_withdraw"
",expire_spend"
",expire_legal"
",value" /* value of this denom */
",fraction" /* fractional value of this denom */
",currency" /* assuming same currency for fees */
",fee_withdraw_value"
",fee_withdraw_fraction"
",fee_refresh_value"
",fee_refresh_fraction"
") VALUES "
"($1, $2, $3, $4, $5, $6,"
"$7, $8, $9, $10, $11, $12);",
12, NULL);
PREPARE ("get_reserve", PREPARE ("get_reserve",
"SELECT " "SELECT "
"current_balance_value" "current_balance_value"
@ -743,6 +777,65 @@ postgres_commit (void *cls,
} }
/**
* Insert a denomination key
*
* @param cls the @e cls of this struct with the plugin-specific state
* @param sesssion connection to use
* @param dki the denomination key information
* @return #GNUNET_OK on success; #GNUNET_SYSERR on failure
*/
static int
postgres_insert_denomination (void *cls,
struct TALER_MINTDB_Session *session,
const struct TALER_MINTDB_DenominationKeyIssueInformation *dki)
{
PGresult *result;
char *pub_enc;
const struct TALER_DenominationKeyValidityPS *issue;
size_t pub_enc_size;
int ret;
ret = GNUNET_SYSERR;
pub_enc = NULL;
issue = &dki->issue;
pub_enc_size = GNUNET_CRYPTO_rsa_public_key_encode (dki->denom_pub.rsa_public_key,
&pub_enc);
if (NULL == pub_enc)
{
GNUNET_break (0);
return GNUNET_SYSERR;
}
struct TALER_PQ_QueryParam params[] = {
TALER_PQ_QUERY_PARAM_PTR_SIZED (pub_enc, pub_enc_size - 1),
TALER_PQ_QUERY_PARAM_PTR (&issue->start.abs_value_us__),
TALER_PQ_QUERY_PARAM_PTR (&issue->expire_withdraw.abs_value_us__),
TALER_PQ_QUERY_PARAM_PTR (&issue->expire_spend.abs_value_us__),
TALER_PQ_QUERY_PARAM_PTR (&issue->expire_legal.abs_value_us__),
TALER_PQ_QUERY_PARAM_PTR (&issue->value.value),
TALER_PQ_QUERY_PARAM_PTR (&issue->value.fraction),
TALER_PQ_QUERY_PARAM_PTR_SIZED (issue->value.currency, TALER_PQ_CURRENCY_LEN),
TALER_PQ_QUERY_PARAM_PTR (&issue->fee_withdraw.value),
TALER_PQ_QUERY_PARAM_PTR (&issue->fee_withdraw.fraction),
TALER_PQ_QUERY_PARAM_PTR (&issue->fee_refresh.value),
TALER_PQ_QUERY_PARAM_PTR (&issue->fee_refresh.fraction),
TALER_PQ_QUERY_PARAM_END
};
result = TALER_PQ_exec_prepared (session->conn,
"insert_denomination",
params);
GNUNET_free (pub_enc);
if (PGRES_COMMAND_OK != PQresultStatus (result))
{
BREAK_DB_ERR (result);
}
else
ret = GNUNET_OK;
PQclear (result);
return ret;
}
/** /**
* Get the summary of a reserve. * Get the summary of a reserve.
* *
@ -924,7 +1017,7 @@ postgres_reserves_in_insert (void *cls,
TALER_PQ_QUERY_PARAM_PTR (&reserve->pub), TALER_PQ_QUERY_PARAM_PTR (&reserve->pub),
TALER_PQ_QUERY_PARAM_PTR (&balance_nbo.value), TALER_PQ_QUERY_PARAM_PTR (&balance_nbo.value),
TALER_PQ_QUERY_PARAM_PTR (&balance_nbo.fraction), TALER_PQ_QUERY_PARAM_PTR (&balance_nbo.fraction),
TALER_PQ_QUERY_PARAM_PTR_SIZED (&balance_nbo.currency, TALER_PQ_QUERY_PARAM_PTR_SIZED (balance_nbo.currency,
TALER_PQ_CURRENCY_LEN), TALER_PQ_CURRENCY_LEN),
TALER_PQ_QUERY_PARAM_PTR (&expiry_nbo), TALER_PQ_QUERY_PARAM_PTR (&expiry_nbo),
TALER_PQ_QUERY_PARAM_END TALER_PQ_QUERY_PARAM_END
@ -2353,6 +2446,7 @@ libtaler_plugin_mintdb_postgres_init (void *cls)
plugin->start = &postgres_start; plugin->start = &postgres_start;
plugin->commit = &postgres_commit; plugin->commit = &postgres_commit;
plugin->rollback = &postgres_rollback; plugin->rollback = &postgres_rollback;
plugin->insert_denomination = &postgres_insert_denomination;
plugin->reserve_get = &postgres_reserve_get; plugin->reserve_get = &postgres_reserve_get;
plugin->reserves_in_insert = &postgres_reserves_in_insert; plugin->reserves_in_insert = &postgres_reserves_in_insert;
plugin->get_collectable_blindcoin = &postgres_get_collectable_blindcoin; plugin->get_collectable_blindcoin = &postgres_get_collectable_blindcoin;

View File

@ -104,7 +104,7 @@ create_denom_key_pair (unsigned int size)
static void static void
destroy_denon_key_pair (struct DenomKeyPair *dkp) destroy_denom_key_pair (struct DenomKeyPair *dkp)
{ {
GNUNET_CRYPTO_rsa_public_key_free (dkp->pub.rsa_public_key); GNUNET_CRYPTO_rsa_public_key_free (dkp->pub.rsa_public_key);
GNUNET_CRYPTO_rsa_private_key_free (dkp->priv.rsa_private_key); GNUNET_CRYPTO_rsa_private_key_free (dkp->priv.rsa_private_key);
@ -212,6 +212,33 @@ run (void *cls,
amount.currency, amount.currency,
expiry.abs_value_us)); expiry.abs_value_us));
dkp = create_denom_key_pair (1024); dkp = create_denom_key_pair (1024);
{
struct TALER_MINTDB_DenominationKeyIssueInformation dki;
dki.denom_pub = dkp->pub;
dki.issue.start = GNUNET_TIME_absolute_hton (GNUNET_TIME_absolute_get ());
dki.issue.expire_withdraw = GNUNET_TIME_absolute_hton
(GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get (),
GNUNET_TIME_UNIT_HOURS));
dki.issue.expire_spend = GNUNET_TIME_absolute_hton
(GNUNET_TIME_absolute_add
(GNUNET_TIME_absolute_get (),
GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 2)));
dki.issue.expire_legal = GNUNET_TIME_absolute_hton
(GNUNET_TIME_absolute_add
(GNUNET_TIME_absolute_get (),
GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 3)));
dki.issue.value.value = GNUNET_htonll (1);
dki.issue.value.fraction = htonl (100);
(void) strcpy (dki.issue.value.currency, CURRENCY);
dki.issue.fee_withdraw.value = 0;
dki.issue.fee_withdraw.fraction = htonl (100);
(void) strcpy (dki.issue.value.currency, CURRENCY);
dki.issue.fee_refresh = dki.issue.fee_withdraw;
FAILIF (GNUNET_OK !=
plugin->insert_denomination (plugin->cls,
session,
&dki));
}
RND_BLK(&h_blind); RND_BLK(&h_blind);
RND_BLK(&cbc.reserve_sig); RND_BLK(&cbc.reserve_sig);
cbc.denom_pub = dkp->pub; cbc.denom_pub = dkp->pub;
@ -361,7 +388,7 @@ run (void *cls,
plugin->drop_temporary (plugin->cls, plugin->drop_temporary (plugin->cls,
session)); session));
if (NULL != dkp) if (NULL != dkp)
destroy_denon_key_pair (dkp); destroy_denom_key_pair (dkp);
if (NULL != cbc.sig.rsa_signature) if (NULL != cbc.sig.rsa_signature)
GNUNET_CRYPTO_rsa_signature_free (cbc.sig.rsa_signature); GNUNET_CRYPTO_rsa_signature_free (cbc.sig.rsa_signature);
if (NULL != cbc2.denom_pub.rsa_public_key) if (NULL != cbc2.denom_pub.rsa_public_key)