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 GNUnet e.V.
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU Affero 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 Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License along with
|
|
|
|
TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file taler-mint-httpd_refresh.c
|
|
|
|
* @brief Handle /refresh/ requests
|
|
|
|
* @author Florian Dold
|
|
|
|
* @author Benedikt Mueller
|
|
|
|
* @author Christian Grothoff
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include <gnunet/gnunet_util_lib.h>
|
|
|
|
#include <jansson.h>
|
|
|
|
#include <microhttpd.h>
|
2015-03-20 23:51:28 +01:00
|
|
|
#include "taler_mintdb_plugin.h"
|
2015-01-08 18:37:20 +01:00
|
|
|
#include "taler_signatures.h"
|
2015-01-28 20:55:15 +01:00
|
|
|
#include "taler_util.h"
|
2015-01-16 13:50:07 +01:00
|
|
|
#include "taler-mint-httpd_parsing.h"
|
2015-01-08 18:37:20 +01:00
|
|
|
#include "taler-mint-httpd_mhd.h"
|
|
|
|
#include "taler-mint-httpd_refresh.h"
|
2015-01-16 13:50:07 +01:00
|
|
|
#include "taler-mint-httpd_responses.h"
|
2015-01-28 21:08:19 +01:00
|
|
|
#include "taler-mint-httpd_keystate.h"
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-01-29 16:26:58 +01:00
|
|
|
* Handle a "/refresh/melt" request after the main JSON parsing has happened.
|
2015-01-29 15:45:05 +01:00
|
|
|
* We now need to validate the coins being melted and the session signature
|
|
|
|
* and then hand things of to execute the melt operation.
|
2015-01-08 18:37:20 +01:00
|
|
|
*
|
|
|
|
* @param connection the MHD connection to handle
|
2015-01-29 15:45:05 +01:00
|
|
|
* @param refresh_session_pub public key of the melt operation
|
2015-03-10 16:25:23 +01:00
|
|
|
* @param num_new_denoms number of coins to be created, size of y-dimension of @commit_link array
|
2015-01-30 15:34:01 +01:00
|
|
|
* @param denom_pubs array of @a num_new_denoms keys
|
2015-03-10 16:25:23 +01:00
|
|
|
* @param coin_count number of coins to be melted, size of y-dimension of @commit_coin array
|
2015-01-30 15:34:01 +01:00
|
|
|
* @param coin_public_infos array with @a coin_count entries about the coins
|
|
|
|
* @param coin_melt_details array with @a coin_count entries with melting details
|
2015-03-10 17:00:12 +01:00
|
|
|
* @param commit_hash hash over the data that the client commits to
|
2015-03-10 16:15:14 +01:00
|
|
|
* @param commit_client_sig signature of the client over this commitment
|
|
|
|
* @param kappa size of x-dimension of @commit_coin and @commit_link arrays
|
|
|
|
* @param commit_coin 2d array of coin commitments (what the mint is to sign
|
|
|
|
* once the "/refres/reveal" of cut and choose is done)
|
|
|
|
* @param commit_link 2d array of coin link commitments (what the mint is
|
|
|
|
* to return via "/refresh/link" to enable linkage in the
|
|
|
|
* future)
|
2015-01-08 18:37:20 +01:00
|
|
|
* @return MHD result code
|
|
|
|
*/
|
2015-01-29 15:45:05 +01:00
|
|
|
static int
|
2015-01-29 16:26:58 +01:00
|
|
|
handle_refresh_melt_binary (struct MHD_Connection *connection,
|
2015-03-22 22:14:30 +01:00
|
|
|
const struct TALER_SessionPublicKey *refresh_session_pub,
|
2015-01-29 16:26:58 +01:00
|
|
|
unsigned int num_new_denoms,
|
2015-03-22 22:14:30 +01:00
|
|
|
const struct TALER_DenominationPublicKey *denom_pubs,
|
2015-01-29 16:26:58 +01:00
|
|
|
unsigned int coin_count,
|
|
|
|
struct TALER_CoinPublicInfo *coin_public_infos,
|
2015-01-30 15:34:01 +01:00
|
|
|
const struct MeltDetails *coin_melt_details,
|
2015-03-10 17:00:12 +01:00
|
|
|
const struct GNUNET_HashCode *commit_hash,
|
2015-03-22 22:14:30 +01:00
|
|
|
const struct TALER_SessionSignature *commit_client_sig,
|
2015-03-10 16:15:14 +01:00
|
|
|
unsigned int kappa,
|
|
|
|
struct RefreshCommitCoin *const* commit_coin,
|
|
|
|
struct RefreshCommitLink *const* commit_link)
|
|
|
|
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-01-20 17:50:32 +01:00
|
|
|
unsigned int i;
|
2015-01-21 12:46:14 +01:00
|
|
|
struct GNUNET_HashContext *hash_context;
|
|
|
|
struct GNUNET_HashCode melt_hash;
|
2015-03-10 17:00:12 +01:00
|
|
|
struct RefreshMeltSessionSignature body;
|
2015-01-26 12:22:26 +01:00
|
|
|
char *buf;
|
|
|
|
size_t buf_size;
|
2015-01-29 19:01:29 +01:00
|
|
|
struct MintKeyState *key_state;
|
|
|
|
struct TALER_MINT_DenomKeyIssue *dki;
|
|
|
|
struct TALER_Amount cost;
|
|
|
|
struct TALER_Amount total_cost;
|
|
|
|
struct TALER_Amount melt;
|
2015-03-18 18:55:41 +01:00
|
|
|
struct TALER_Amount value;
|
|
|
|
struct TALER_Amount fee_withdraw;
|
2015-03-22 16:58:15 +01:00
|
|
|
struct TALER_Amount fee_melt;
|
2015-01-29 19:01:29 +01:00
|
|
|
struct TALER_Amount total_melt;
|
2015-01-20 17:50:32 +01:00
|
|
|
|
2015-01-21 12:46:14 +01:00
|
|
|
/* check that signature from the session public key is ok */
|
2015-01-09 17:26:02 +01:00
|
|
|
hash_context = GNUNET_CRYPTO_hash_context_start ();
|
2015-03-22 16:58:15 +01:00
|
|
|
/* FIXME: also hash session public key here!? #3708 */
|
2015-01-21 12:46:14 +01:00
|
|
|
for (i = 0; i < num_new_denoms; i++)
|
2015-01-26 12:22:26 +01:00
|
|
|
{
|
2015-03-22 22:14:30 +01:00
|
|
|
buf_size = GNUNET_CRYPTO_rsa_public_key_encode (denom_pubs[i].rsa_public_key,
|
2015-01-26 12:22:26 +01:00
|
|
|
&buf);
|
2015-01-21 12:46:14 +01:00
|
|
|
GNUNET_CRYPTO_hash_context_read (hash_context,
|
2015-01-26 12:22:26 +01:00
|
|
|
buf,
|
|
|
|
buf_size);
|
|
|
|
GNUNET_free (buf);
|
|
|
|
}
|
2015-01-21 12:46:14 +01:00
|
|
|
for (i = 0; i < coin_count; i++)
|
|
|
|
GNUNET_CRYPTO_hash_context_read (hash_context,
|
|
|
|
&coin_public_infos[i].coin_pub,
|
|
|
|
sizeof (struct GNUNET_CRYPTO_EddsaPublicKey));
|
|
|
|
GNUNET_CRYPTO_hash_context_finish (hash_context,
|
|
|
|
&melt_hash);
|
2015-03-22 16:58:15 +01:00
|
|
|
/* FIXME: what about the `commit_hash`? #3708 */
|
2015-01-21 12:46:14 +01:00
|
|
|
|
2015-03-10 17:00:12 +01:00
|
|
|
body.purpose.purpose = htonl (TALER_SIGNATURE_REFRESH_MELT_SESSION);
|
|
|
|
body.purpose.size = htonl (sizeof (struct RefreshMeltSessionSignature));
|
2015-03-09 12:29:41 +01:00
|
|
|
body.melt_hash = melt_hash;
|
2015-03-22 16:09:01 +01:00
|
|
|
TALER_amount_hton (&body.amount_with_fee,
|
|
|
|
&coin_melt_details->melt_amount_with_fee);
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-03-22 22:14:30 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_REFRESH_MELT_SESSION,
|
|
|
|
&body.purpose,
|
|
|
|
&commit_client_sig->eddsa_signature,
|
|
|
|
&refresh_session_pub->eddsa_pub))
|
2015-03-10 17:00:12 +01:00
|
|
|
{
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
|
|
|
"signature invalid (did not verify)\n");
|
|
|
|
return TALER_MINT_reply_json_pack (connection,
|
|
|
|
MHD_HTTP_UNAUTHORIZED,
|
|
|
|
"{s:s}",
|
|
|
|
"error",
|
|
|
|
"invalid signature (verification)");
|
|
|
|
}
|
2015-03-22 16:58:15 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (MINT_CURRENCY,
|
|
|
|
&total_cost));
|
2015-03-15 15:40:07 +01:00
|
|
|
key_state = TALER_MINT_key_state_acquire ();
|
2015-01-29 19:01:29 +01:00
|
|
|
for (i=0;i<num_new_denoms;i++)
|
|
|
|
{
|
|
|
|
dki = &TALER_MINT_get_denom_key (key_state,
|
2015-03-22 22:14:30 +01:00
|
|
|
&denom_pubs[i])->issue;
|
2015-03-18 18:55:41 +01:00
|
|
|
TALER_amount_ntoh (&value,
|
|
|
|
&dki->value);
|
|
|
|
TALER_amount_ntoh (&fee_withdraw,
|
|
|
|
&dki->fee_withdraw);
|
|
|
|
if ( (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&cost,
|
|
|
|
&value,
|
|
|
|
&fee_withdraw)) ||
|
|
|
|
(GNUNET_OK !=
|
|
|
|
TALER_amount_add (&total_cost,
|
|
|
|
&cost,
|
|
|
|
&total_cost)) )
|
|
|
|
{
|
2015-03-22 16:58:15 +01:00
|
|
|
TALER_MINT_key_state_release (key_state);
|
|
|
|
return TALER_MINT_reply_internal_error (connection,
|
|
|
|
"cost calculation failure");
|
2015-03-18 18:55:41 +01:00
|
|
|
}
|
2015-01-29 19:01:29 +01:00
|
|
|
}
|
|
|
|
|
2015-03-22 16:58:15 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (MINT_CURRENCY,
|
|
|
|
&total_melt));
|
2015-01-29 19:01:29 +01:00
|
|
|
for (i=0;i<coin_count;i++)
|
|
|
|
{
|
2015-03-22 16:58:15 +01:00
|
|
|
/* calculate contribution of the i-th melt by subtracting
|
|
|
|
the fee; add the rest to the total_melt value */
|
|
|
|
dki = &TALER_MINT_get_denom_key (key_state,
|
2015-03-22 22:14:30 +01:00
|
|
|
&coin_public_infos[i].denom_pub)->issue;
|
2015-03-22 16:58:15 +01:00
|
|
|
TALER_amount_ntoh (&fee_melt,
|
|
|
|
&dki->fee_refresh);
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_subtract (&melt,
|
|
|
|
&coin_melt_details->melt_amount_with_fee,
|
|
|
|
&fee_melt))
|
|
|
|
{
|
|
|
|
TALER_MINT_key_state_release (key_state);
|
|
|
|
return TALER_MINT_reply_external_error (connection,
|
|
|
|
"Melt contribution below melting fee");
|
|
|
|
}
|
2015-03-18 18:55:41 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&total_melt,
|
|
|
|
&melt,
|
|
|
|
&total_melt))
|
|
|
|
{
|
2015-03-22 16:58:15 +01:00
|
|
|
TALER_MINT_key_state_release (key_state);
|
|
|
|
return TALER_MINT_reply_internal_error (connection,
|
|
|
|
"balance calculation failure");
|
2015-03-18 18:55:41 +01:00
|
|
|
}
|
2015-01-29 19:01:29 +01:00
|
|
|
}
|
|
|
|
TALER_MINT_key_state_release (key_state);
|
|
|
|
if (0 !=
|
2015-03-18 18:55:41 +01:00
|
|
|
TALER_amount_cmp (&total_cost,
|
2015-03-22 16:58:15 +01:00
|
|
|
&total_melt))
|
2015-01-29 19:01:29 +01:00
|
|
|
{
|
|
|
|
/* We require total value of coins being melted and
|
|
|
|
total value of coins being generated to match! */
|
|
|
|
return TALER_MINT_reply_json_pack (connection,
|
|
|
|
MHD_HTTP_BAD_REQUEST,
|
|
|
|
"{s:s}",
|
|
|
|
"error", "value mismatch");
|
|
|
|
}
|
2015-01-29 16:26:58 +01:00
|
|
|
return TALER_MINT_db_execute_refresh_melt (connection,
|
2015-03-09 12:29:41 +01:00
|
|
|
&melt_hash,
|
2015-01-29 16:26:58 +01:00
|
|
|
refresh_session_pub,
|
2015-03-10 17:05:48 +01:00
|
|
|
commit_client_sig,
|
2015-01-29 16:26:58 +01:00
|
|
|
num_new_denoms,
|
|
|
|
denom_pubs,
|
|
|
|
coin_count,
|
2015-01-30 15:34:01 +01:00
|
|
|
coin_public_infos,
|
2015-03-10 16:15:14 +01:00
|
|
|
coin_melt_details,
|
|
|
|
kappa,
|
|
|
|
commit_coin,
|
|
|
|
commit_link);
|
2015-01-29 16:26:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-03-10 17:00:12 +01:00
|
|
|
* Extract public coin information from a JSON object.
|
2015-01-29 16:26:58 +01:00
|
|
|
*
|
|
|
|
* @param connection the connection to send error responses to
|
|
|
|
* @param coin_info the JSON object to extract the coin info from
|
|
|
|
* @param r_public_info[OUT] set to the coin's public information
|
2015-01-30 15:34:01 +01:00
|
|
|
* @param r_melt_detail[OUT] set to details about the coin's melting permission (if valid)
|
2015-01-29 16:26:58 +01:00
|
|
|
* @return #GNUNET_YES if coin public info in JSON was valid
|
|
|
|
* #GNUNET_NO JSON was invalid, response was generated
|
|
|
|
* #GNUNET_SYSERR on internal error
|
|
|
|
*/
|
|
|
|
static int
|
2015-03-10 17:00:12 +01:00
|
|
|
get_coin_public_info (struct MHD_Connection *connection,
|
|
|
|
json_t *coin_info,
|
|
|
|
struct TALER_CoinPublicInfo *r_public_info,
|
|
|
|
struct MeltDetails *r_melt_detail)
|
2015-01-29 16:26:58 +01:00
|
|
|
{
|
|
|
|
int ret;
|
2015-03-22 22:14:30 +01:00
|
|
|
struct TALER_CoinSpendSignature melt_sig;
|
|
|
|
struct TALER_DenominationSignature sig;
|
|
|
|
struct TALER_DenominationPublicKey pk;
|
2015-01-30 15:34:01 +01:00
|
|
|
struct TALER_Amount amount;
|
2015-01-29 17:34:37 +01:00
|
|
|
struct GNUNET_MINT_ParseFieldSpec spec[] = {
|
|
|
|
TALER_MINT_PARSE_FIXED ("coin_pub", &r_public_info->coin_pub),
|
2015-03-22 22:14:30 +01:00
|
|
|
TALER_MINT_PARSE_RSA_SIGNATURE ("denom_sig", &sig.rsa_signature),
|
|
|
|
TALER_MINT_PARSE_RSA_PUBLIC_KEY ("denom_pub", &pk.rsa_public_key),
|
2015-01-29 17:34:37 +01:00
|
|
|
TALER_MINT_PARSE_FIXED ("confirm_sig", &melt_sig),
|
2015-03-22 17:10:45 +01:00
|
|
|
TALER_MINT_PARSE_AMOUNT ("value_with_fee", &amount),
|
2015-01-29 17:34:37 +01:00
|
|
|
TALER_MINT_PARSE_END
|
|
|
|
};
|
2015-01-29 16:26:58 +01:00
|
|
|
|
|
|
|
ret = TALER_MINT_parse_json_data (connection,
|
|
|
|
coin_info,
|
|
|
|
spec);
|
|
|
|
if (GNUNET_OK != ret)
|
|
|
|
return ret;
|
2015-03-10 17:00:12 +01:00
|
|
|
/* check mint signature on the coin */
|
|
|
|
r_public_info->denom_sig = sig;
|
|
|
|
r_public_info->denom_pub = pk;
|
2015-01-29 16:26:58 +01:00
|
|
|
if (GNUNET_OK !=
|
2015-03-10 17:00:12 +01:00
|
|
|
TALER_test_coin_valid (r_public_info))
|
|
|
|
{
|
|
|
|
TALER_MINT_release_parsed_data (spec);
|
2015-03-22 22:14:30 +01:00
|
|
|
r_public_info->denom_sig.rsa_signature = NULL;
|
|
|
|
r_public_info->denom_pub.rsa_public_key = NULL;
|
2015-03-10 17:00:12 +01:00
|
|
|
return (MHD_YES ==
|
|
|
|
TALER_MINT_reply_json_pack (connection,
|
|
|
|
MHD_HTTP_NOT_FOUND,
|
|
|
|
"{s:s}",
|
|
|
|
"error", "coin invalid"))
|
|
|
|
? GNUNET_NO : GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
r_melt_detail->melt_sig = melt_sig;
|
2015-03-22 16:09:01 +01:00
|
|
|
r_melt_detail->melt_amount_with_fee = amount;
|
2015-03-10 17:00:12 +01:00
|
|
|
TALER_MINT_release_parsed_data (spec);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Verify that the signature shows that this coin is to be melted into
|
|
|
|
* the given @a session_pub melting session, and that this is a valid
|
|
|
|
* coin (we know the denomination key and the signature on it is
|
|
|
|
* valid). Essentially, this does all of the per-coin checks that can
|
|
|
|
* be done before the transaction starts.
|
|
|
|
*
|
|
|
|
* @param connection the connection to send error responses to
|
|
|
|
* @param melt_hash hash over refresh session the coin is melted into
|
|
|
|
* @param r_public_info the coin's public information
|
|
|
|
* @param r_melt_detail details about the coin's melting permission (if valid)
|
|
|
|
* @return #GNUNET_YES if coin public info in JSON was valid
|
|
|
|
* #GNUNET_NO JSON was invalid, response was generated
|
|
|
|
* #GNUNET_SYSERR on internal error
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
verify_coin_public_info (struct MHD_Connection *connection,
|
|
|
|
const struct GNUNET_HashCode *melt_hash,
|
|
|
|
const struct TALER_CoinPublicInfo *r_public_info,
|
|
|
|
const struct MeltDetails *r_melt_detail)
|
|
|
|
{
|
|
|
|
struct RefreshMeltCoinSignature body;
|
|
|
|
struct MintKeyState *key_state;
|
|
|
|
struct TALER_MINT_DenomKeyIssuePriv *dki;
|
2015-03-22 16:17:22 +01:00
|
|
|
struct TALER_Amount fee_refresh;
|
2015-03-10 17:00:12 +01:00
|
|
|
|
|
|
|
body.purpose.size = htonl (sizeof (struct RefreshMeltCoinSignature));
|
|
|
|
body.purpose.purpose = htonl (TALER_SIGNATURE_REFRESH_MELT_COIN);
|
|
|
|
body.melt_hash = *melt_hash;
|
2015-03-22 16:09:01 +01:00
|
|
|
TALER_amount_hton (&body.amount_with_fee,
|
|
|
|
&r_melt_detail->melt_amount_with_fee);
|
2015-03-10 17:00:12 +01:00
|
|
|
body.coin_pub = r_public_info->coin_pub;
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CRYPTO_ecdsa_verify (TALER_SIGNATURE_REFRESH_MELT_COIN,
|
2015-01-29 16:26:58 +01:00
|
|
|
&body.purpose,
|
2015-03-22 22:14:30 +01:00
|
|
|
&r_melt_detail->melt_sig.ecdsa_signature,
|
|
|
|
&r_public_info->coin_pub.ecdsa_pub))
|
2015-01-29 16:26:58 +01:00
|
|
|
{
|
|
|
|
if (MHD_YES !=
|
|
|
|
TALER_MINT_reply_json_pack (connection,
|
|
|
|
MHD_HTTP_UNAUTHORIZED,
|
|
|
|
"{s:s}",
|
|
|
|
"error", "signature invalid"))
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
return GNUNET_NO;
|
|
|
|
}
|
|
|
|
key_state = TALER_MINT_key_state_acquire ();
|
|
|
|
dki = TALER_MINT_get_denom_key (key_state,
|
2015-03-22 22:14:30 +01:00
|
|
|
&r_public_info->denom_pub);
|
2015-01-29 16:26:58 +01:00
|
|
|
if (NULL == dki)
|
|
|
|
{
|
|
|
|
TALER_MINT_key_state_release (key_state);
|
|
|
|
LOG_WARNING ("Unknown denomination key in /refresh/melt request\n");
|
|
|
|
return TALER_MINT_reply_arg_invalid (connection,
|
|
|
|
"denom_pub");
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
2015-03-22 16:17:22 +01:00
|
|
|
/* FIXME: need to check if denomination key is still
|
|
|
|
valid for issuing! (#3634) */
|
|
|
|
TALER_amount_ntoh (&fee_refresh,
|
|
|
|
&dki->issue.fee_refresh);
|
|
|
|
if (TALER_amount_cmp (&fee_refresh,
|
|
|
|
&r_melt_detail->melt_amount_with_fee) < 0)
|
|
|
|
{
|
|
|
|
TALER_MINT_key_state_release (key_state);
|
|
|
|
return (MHD_YES ==
|
|
|
|
TALER_MINT_reply_external_error (connection,
|
|
|
|
"melt amount smaller than melting fee"))
|
|
|
|
? GNUNET_NO : GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
2015-01-29 16:26:58 +01:00
|
|
|
TALER_MINT_key_state_release (key_state);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-01-29 16:26:58 +01:00
|
|
|
|
2015-03-10 16:15:14 +01:00
|
|
|
/**
|
|
|
|
* Release memory from the @a commit_coin array.
|
|
|
|
*
|
|
|
|
* @param commit_coin array to release
|
|
|
|
* @param kappa size of 1st dimension
|
|
|
|
* @param num_new_coins size of 2nd dimension
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
free_commit_coins (struct RefreshCommitCoin **commit_coin,
|
|
|
|
unsigned int kappa,
|
|
|
|
unsigned int num_new_coins)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
unsigned int j;
|
|
|
|
|
|
|
|
for (i=0;i<kappa;i++)
|
|
|
|
{
|
|
|
|
if (NULL == commit_coin[i])
|
|
|
|
break;
|
|
|
|
for (j=0;j<num_new_coins;j++)
|
|
|
|
{
|
|
|
|
GNUNET_free_non_null (commit_coin[i][j].coin_ev);
|
|
|
|
GNUNET_free_non_null (commit_coin[i][j].refresh_link);
|
|
|
|
}
|
|
|
|
GNUNET_free (commit_coin[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Release memory from the @a commit_link array.
|
|
|
|
*
|
|
|
|
* @param commit_coin array to release
|
|
|
|
* @param kappa size of 1st dimension
|
|
|
|
* @param num_old_coins size of 2nd dimension
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
free_commit_links (struct RefreshCommitLink **commit_link,
|
|
|
|
unsigned int kappa,
|
|
|
|
unsigned int num_old_coins)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i=0;i<kappa;i++)
|
|
|
|
{
|
|
|
|
if (NULL == commit_link[i])
|
|
|
|
break;
|
|
|
|
GNUNET_free (commit_link[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-29 16:26:58 +01:00
|
|
|
/**
|
|
|
|
* Handle a "/refresh/melt" request after the first parsing has happened.
|
|
|
|
* We now need to validate the coins being melted and the session signature
|
|
|
|
* and then hand things of to execute the melt operation. This function
|
|
|
|
* parses the JSON arrays and then passes processing on to
|
|
|
|
* #handle_refresh_melt_binary().
|
|
|
|
*
|
|
|
|
* @param connection the MHD connection to handle
|
|
|
|
* @param refresh_session_pub public key of the melt operation
|
|
|
|
* @param new_denoms array of denomination keys
|
|
|
|
* @param melt_coins array of coins to melt
|
|
|
|
* @param melt_sig_json signature affirming the melt operation
|
2015-03-10 16:15:14 +01:00
|
|
|
* @param commit_signature signature over the commit
|
|
|
|
* @param kappa security parameter for cut and choose
|
|
|
|
* @param num_oldcoins number of coins that are being melted
|
|
|
|
* @param transfer_pubs @a kappa-dimensional array of @a num_oldcoins transfer keys
|
|
|
|
* @param secret_encs @a kappa-dimensional array of @a num_oldcoins secrets
|
|
|
|
* @param num_newcoins number of coins that the refresh will generate
|
|
|
|
* @param coin_envs @a kappa-dimensional array of @a num_newcoins envelopes to sign
|
|
|
|
* @param link_encs @a kappa-dimensional array of @a num_newcoins encrypted links
|
2015-01-29 16:26:58 +01:00
|
|
|
* @return MHD result code
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
handle_refresh_melt_json (struct MHD_Connection *connection,
|
2015-03-22 22:14:30 +01:00
|
|
|
const struct TALER_SessionPublicKey *refresh_session_pub,
|
2015-01-29 16:26:58 +01:00
|
|
|
const json_t *new_denoms,
|
|
|
|
const json_t *melt_coins,
|
2015-03-10 16:15:14 +01:00
|
|
|
const json_t *melt_sig_json,
|
|
|
|
const json_t *commit_signature,
|
|
|
|
unsigned int kappa,
|
|
|
|
unsigned int num_oldcoins,
|
|
|
|
const json_t *transfer_pubs,
|
|
|
|
const json_t *secret_encs,
|
|
|
|
unsigned int num_newcoins,
|
|
|
|
const json_t *coin_evs,
|
|
|
|
const json_t *link_encs)
|
|
|
|
|
2015-01-29 16:26:58 +01:00
|
|
|
{
|
|
|
|
int res;
|
|
|
|
unsigned int i;
|
|
|
|
unsigned int j;
|
2015-03-22 22:14:30 +01:00
|
|
|
struct TALER_DenominationPublicKey *denom_pubs;
|
2015-01-29 16:26:58 +01:00
|
|
|
unsigned int num_new_denoms;
|
|
|
|
struct TALER_CoinPublicInfo *coin_public_infos;
|
2015-01-30 15:34:01 +01:00
|
|
|
struct MeltDetails *coin_melt_details;
|
2015-01-29 16:26:58 +01:00
|
|
|
unsigned int coin_count;
|
2015-03-10 16:15:14 +01:00
|
|
|
struct GNUNET_HashCode commit_hash;
|
|
|
|
struct GNUNET_HashContext *hash_context;
|
|
|
|
struct RefreshCommitCoin *commit_coin[kappa];
|
|
|
|
struct RefreshCommitLink *commit_link[kappa];
|
2015-03-22 22:14:30 +01:00
|
|
|
const struct TALER_SessionSignature commit_client_sig;
|
2015-01-29 16:26:58 +01:00
|
|
|
|
|
|
|
num_new_denoms = json_array_size (new_denoms);
|
|
|
|
denom_pubs = GNUNET_malloc (num_new_denoms *
|
2015-03-22 22:14:30 +01:00
|
|
|
sizeof (struct TALER_DenominationPublicKey));
|
2015-01-29 16:26:58 +01:00
|
|
|
for (i=0;i<num_new_denoms;i++)
|
|
|
|
{
|
2015-03-22 22:14:30 +01:00
|
|
|
res = GNUNET_MINT_parse_navigate_json (connection,
|
|
|
|
new_denoms,
|
2015-01-29 16:26:58 +01:00
|
|
|
JNAV_INDEX, (int) i,
|
2015-03-22 22:14:30 +01:00
|
|
|
JNAV_RET_RSA_PUBLIC_KEY,
|
|
|
|
&denom_pubs[i].rsa_public_key);
|
2015-01-29 16:26:58 +01:00
|
|
|
if (GNUNET_OK != res)
|
|
|
|
{
|
|
|
|
for (j=0;j<i;j++)
|
2015-03-22 22:14:30 +01:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (denom_pubs[j].rsa_public_key);
|
2015-01-29 16:26:58 +01:00
|
|
|
GNUNET_free (denom_pubs);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
coin_count = json_array_size (melt_coins);
|
2015-01-30 15:34:01 +01:00
|
|
|
/* FIXME: make 'struct TALER_CoinPublicInfo' part of `struct MeltDetails`
|
|
|
|
and combine these two arrays/arguments! */
|
2015-01-29 16:26:58 +01:00
|
|
|
coin_public_infos = GNUNET_malloc (coin_count *
|
|
|
|
sizeof (struct TALER_CoinPublicInfo));
|
2015-01-30 15:34:01 +01:00
|
|
|
coin_melt_details = GNUNET_malloc (coin_count *
|
|
|
|
sizeof (struct MeltDetails));
|
2015-01-29 16:26:58 +01:00
|
|
|
for (i=0;i<coin_count;i++)
|
|
|
|
{
|
|
|
|
/* decode JSON data on coin to melt */
|
2015-03-10 17:00:12 +01:00
|
|
|
res = get_coin_public_info (connection,
|
|
|
|
json_array_get (melt_coins, i),
|
|
|
|
&coin_public_infos[i],
|
|
|
|
&coin_melt_details[i]);
|
2015-01-29 16:26:58 +01:00
|
|
|
if (GNUNET_OK != res)
|
|
|
|
{
|
|
|
|
for (j=0;j<i;j++)
|
|
|
|
{
|
2015-03-22 22:14:30 +01:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (coin_public_infos[j].denom_pub.rsa_public_key);
|
|
|
|
GNUNET_CRYPTO_rsa_signature_free (coin_public_infos[j].denom_sig.rsa_signature);
|
2015-01-29 16:26:58 +01:00
|
|
|
}
|
|
|
|
GNUNET_free (coin_public_infos);
|
|
|
|
for (j=0;j<num_new_denoms;j++)
|
2015-03-22 22:14:30 +01:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (denom_pubs[j].rsa_public_key);
|
2015-01-30 15:34:01 +01:00
|
|
|
GNUNET_free (coin_melt_details);
|
2015-01-29 16:26:58 +01:00
|
|
|
GNUNET_free (denom_pubs);
|
|
|
|
return (GNUNET_NO == res) ? MHD_YES : MHD_NO;
|
|
|
|
}
|
2015-03-22 17:14:47 +01:00
|
|
|
/* Check that the client does not try to melt the same coin twice
|
|
|
|
into the same session! */
|
|
|
|
for (j=0;j<i;j++)
|
|
|
|
{
|
|
|
|
if (0 == memcmp (&coin_public_infos[i].coin_pub,
|
|
|
|
&coin_public_infos[j].coin_pub,
|
2015-03-22 22:14:30 +01:00
|
|
|
sizeof (struct TALER_CoinSpendPublicKey)))
|
2015-03-22 17:14:47 +01:00
|
|
|
{
|
|
|
|
for (j=0;j<i;j++)
|
|
|
|
{
|
2015-03-22 22:14:30 +01:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (coin_public_infos[j].denom_pub.rsa_public_key);
|
|
|
|
GNUNET_CRYPTO_rsa_signature_free (coin_public_infos[j].denom_sig.rsa_signature);
|
2015-03-22 17:14:47 +01:00
|
|
|
}
|
|
|
|
GNUNET_free (coin_public_infos);
|
|
|
|
for (j=0;j<num_new_denoms;j++)
|
2015-03-22 22:14:30 +01:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (denom_pubs[j].rsa_public_key);
|
2015-03-22 17:14:47 +01:00
|
|
|
GNUNET_free (coin_melt_details);
|
|
|
|
GNUNET_free (denom_pubs);
|
|
|
|
return TALER_MINT_reply_external_error (connection,
|
|
|
|
"melting same coin twice in same session is not allowed");
|
|
|
|
}
|
|
|
|
}
|
2015-01-29 16:26:58 +01:00
|
|
|
}
|
|
|
|
|
2015-01-29 17:34:37 +01:00
|
|
|
|
|
|
|
/* parse JSON arrays into 2d binary arrays and hash everything
|
|
|
|
together for the signature check */
|
|
|
|
memset (commit_coin, 0, sizeof (commit_coin));
|
|
|
|
memset (commit_link, 0, sizeof (commit_link));
|
2015-01-09 17:26:02 +01:00
|
|
|
hash_context = GNUNET_CRYPTO_hash_context_start ();
|
2015-01-21 13:31:05 +01:00
|
|
|
for (i = 0; i < kappa; i++)
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-01-21 13:31:05 +01:00
|
|
|
commit_coin[i] = GNUNET_malloc (num_newcoins *
|
|
|
|
sizeof (struct RefreshCommitCoin));
|
|
|
|
for (j = 0; j < num_newcoins; j++)
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-01-27 18:57:29 +01:00
|
|
|
char *link_enc;
|
2015-01-27 18:35:17 +01:00
|
|
|
size_t link_enc_size;
|
|
|
|
|
2015-01-29 17:34:37 +01:00
|
|
|
res = GNUNET_MINT_parse_navigate_json (connection,
|
|
|
|
coin_evs,
|
2015-01-21 13:31:05 +01:00
|
|
|
JNAV_INDEX, (int) i,
|
|
|
|
JNAV_INDEX, (int) j,
|
2015-01-26 12:22:26 +01:00
|
|
|
JNAV_RET_DATA_VAR,
|
|
|
|
&commit_coin[i][j].coin_ev,
|
|
|
|
&commit_coin[i][j].coin_ev_size);
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
if (GNUNET_OK != res)
|
|
|
|
{
|
2015-01-09 17:26:02 +01:00
|
|
|
GNUNET_CRYPTO_hash_context_abort (hash_context);
|
2015-01-29 17:34:37 +01:00
|
|
|
free_commit_coins (commit_coin, kappa, num_newcoins);
|
2015-01-08 18:37:20 +01:00
|
|
|
return (GNUNET_SYSERR == res) ? MHD_NO : MHD_YES;
|
|
|
|
}
|
2015-01-09 17:26:02 +01:00
|
|
|
GNUNET_CRYPTO_hash_context_read (hash_context,
|
2015-01-26 12:22:26 +01:00
|
|
|
commit_coin[i][j].coin_ev,
|
|
|
|
commit_coin[i][j].coin_ev_size);
|
2015-01-29 17:34:37 +01:00
|
|
|
res = GNUNET_MINT_parse_navigate_json (connection,
|
|
|
|
link_encs,
|
2015-01-21 13:31:05 +01:00
|
|
|
JNAV_INDEX, (int) i,
|
|
|
|
JNAV_INDEX, (int) j,
|
2015-01-27 18:35:17 +01:00
|
|
|
JNAV_RET_DATA_VAR,
|
|
|
|
&link_enc,
|
|
|
|
&link_enc_size);
|
2015-01-08 18:37:20 +01:00
|
|
|
if (GNUNET_OK != res)
|
|
|
|
{
|
2015-01-09 17:26:02 +01:00
|
|
|
GNUNET_CRYPTO_hash_context_abort (hash_context);
|
2015-01-29 17:34:37 +01:00
|
|
|
free_commit_coins (commit_coin, kappa, num_newcoins);
|
2015-01-08 18:37:20 +01:00
|
|
|
return (GNUNET_SYSERR == res) ? MHD_NO : MHD_YES;
|
|
|
|
}
|
2015-01-29 17:34:37 +01:00
|
|
|
commit_coin[i][j].refresh_link = TALER_refresh_link_encrypted_decode (link_enc,
|
|
|
|
link_enc_size);
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-01-09 17:26:02 +01:00
|
|
|
GNUNET_CRYPTO_hash_context_read (hash_context,
|
2015-01-27 18:57:29 +01:00
|
|
|
link_enc,
|
|
|
|
link_enc_size);
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-21 13:31:05 +01:00
|
|
|
for (i = 0; i < kappa; i++)
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-01-21 13:31:05 +01:00
|
|
|
commit_link[i] = GNUNET_malloc (num_oldcoins *
|
|
|
|
sizeof (struct RefreshCommitLink));
|
|
|
|
for (j = 0; j < num_oldcoins; j++)
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-01-29 17:34:37 +01:00
|
|
|
res = GNUNET_MINT_parse_navigate_json (connection,
|
|
|
|
transfer_pubs,
|
2015-01-21 13:31:05 +01:00
|
|
|
JNAV_INDEX, (int) i,
|
|
|
|
JNAV_INDEX, (int) j,
|
|
|
|
JNAV_RET_DATA,
|
|
|
|
&commit_link[i][j].transfer_pub,
|
2015-03-22 22:14:30 +01:00
|
|
|
sizeof (struct TALER_TransferPublicKey));
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
if (GNUNET_OK != res)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_SYSERR != res);
|
2015-01-09 17:26:02 +01:00
|
|
|
GNUNET_CRYPTO_hash_context_abort (hash_context);
|
2015-01-29 17:34:37 +01:00
|
|
|
free_commit_coins (commit_coin, kappa, num_newcoins);
|
|
|
|
free_commit_links (commit_link, kappa, num_oldcoins);
|
2015-01-08 18:37:20 +01:00
|
|
|
return (GNUNET_SYSERR == res) ? MHD_NO : MHD_YES;
|
|
|
|
}
|
|
|
|
|
2015-01-09 17:26:02 +01:00
|
|
|
GNUNET_CRYPTO_hash_context_read (hash_context,
|
2015-01-21 13:31:05 +01:00
|
|
|
&commit_link[i][j].transfer_pub,
|
2015-03-22 22:14:30 +01:00
|
|
|
sizeof (struct TALER_TransferPublicKey));
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-01-29 17:34:37 +01:00
|
|
|
res = GNUNET_MINT_parse_navigate_json (connection,
|
|
|
|
secret_encs,
|
2015-01-21 13:31:05 +01:00
|
|
|
JNAV_INDEX, (int) i,
|
|
|
|
JNAV_INDEX, (int) j,
|
|
|
|
JNAV_RET_DATA,
|
2015-01-27 18:57:29 +01:00
|
|
|
&commit_link[i][j].shared_secret_enc,
|
2015-01-27 18:35:17 +01:00
|
|
|
sizeof (struct GNUNET_HashCode));
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
if (GNUNET_OK != res)
|
|
|
|
{
|
|
|
|
GNUNET_break (GNUNET_SYSERR != res);
|
2015-01-09 17:26:02 +01:00
|
|
|
GNUNET_CRYPTO_hash_context_abort (hash_context);
|
2015-01-29 17:34:37 +01:00
|
|
|
free_commit_coins (commit_coin, kappa, num_newcoins);
|
|
|
|
free_commit_links (commit_link, kappa, num_oldcoins);
|
2015-01-08 18:37:20 +01:00
|
|
|
return (GNUNET_SYSERR == res) ? MHD_NO : MHD_YES;
|
|
|
|
}
|
|
|
|
|
2015-01-09 17:26:02 +01:00
|
|
|
GNUNET_CRYPTO_hash_context_read (hash_context,
|
2015-01-27 18:57:29 +01:00
|
|
|
&commit_link[i][j].shared_secret_enc,
|
2015-01-27 18:35:17 +01:00
|
|
|
sizeof (struct GNUNET_HashCode));
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
|
|
|
}
|
2015-01-09 17:26:02 +01:00
|
|
|
GNUNET_CRYPTO_hash_context_finish (hash_context, &commit_hash);
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-01-21 13:31:05 +01:00
|
|
|
|
2015-03-10 17:00:12 +01:00
|
|
|
res = GNUNET_MINT_parse_navigate_json (connection,
|
|
|
|
commit_signature,
|
|
|
|
JNAV_FIELD,
|
|
|
|
"sig",
|
|
|
|
JNAV_RET_DATA,
|
|
|
|
&commit_client_sig,
|
2015-03-22 22:14:30 +01:00
|
|
|
sizeof (struct TALER_SessionSignature));
|
2015-03-10 17:00:12 +01:00
|
|
|
|
|
|
|
if (GNUNET_OK != res)
|
|
|
|
return (GNUNET_NO == res) ? MHD_YES : MHD_NO;
|
|
|
|
|
|
|
|
|
|
|
|
for (i=0;i<coin_count;i++)
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-03-10 17:00:12 +01:00
|
|
|
/* verify signatures ons coin to melt */
|
|
|
|
res = verify_coin_public_info (connection,
|
|
|
|
&commit_hash,
|
|
|
|
&coin_public_infos[i],
|
|
|
|
&coin_melt_details[i]);
|
|
|
|
if (GNUNET_OK != res)
|
|
|
|
{
|
|
|
|
res = (GNUNET_NO == res) ? MHD_YES : MHD_NO;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
|
|
|
|
2015-01-29 17:34:37 +01:00
|
|
|
/* execute commit */
|
2015-03-10 16:15:14 +01:00
|
|
|
res = handle_refresh_melt_binary (connection,
|
|
|
|
refresh_session_pub,
|
|
|
|
num_new_denoms,
|
|
|
|
denom_pubs,
|
|
|
|
coin_count,
|
|
|
|
coin_public_infos,
|
|
|
|
coin_melt_details,
|
2015-03-10 17:00:12 +01:00
|
|
|
&commit_hash,
|
|
|
|
&commit_client_sig,
|
2015-03-10 16:15:14 +01:00
|
|
|
kappa,
|
|
|
|
commit_coin,
|
|
|
|
commit_link);
|
2015-03-10 17:00:12 +01:00
|
|
|
cleanup:
|
2015-01-29 17:34:37 +01:00
|
|
|
free_commit_coins (commit_coin, kappa, num_newcoins);
|
|
|
|
free_commit_links (commit_link, kappa, num_oldcoins);
|
2015-03-10 16:15:14 +01:00
|
|
|
for (j=0;j<coin_count;j++)
|
|
|
|
{
|
2015-03-22 22:14:30 +01:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (coin_public_infos[j].denom_pub.rsa_public_key);
|
|
|
|
GNUNET_CRYPTO_rsa_signature_free (coin_public_infos[j].denom_sig.rsa_signature);
|
2015-03-10 16:15:14 +01:00
|
|
|
}
|
|
|
|
GNUNET_free (coin_public_infos);
|
|
|
|
for (j=0;j<num_new_denoms;j++)
|
2015-03-22 22:14:30 +01:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (denom_pubs[j].rsa_public_key);
|
2015-03-10 16:15:14 +01:00
|
|
|
GNUNET_free (coin_melt_details);
|
|
|
|
GNUNET_free (denom_pubs);
|
2015-01-29 17:34:37 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-03-10 16:15:14 +01:00
|
|
|
* Handle a "/refresh/melt" request. Parses the request into the JSON
|
|
|
|
* components and then hands things of to #handle_referesh_melt_json()
|
|
|
|
* to validate the melted coins, the signature and execute the melt
|
|
|
|
* using TALER_MINT_db_execute_refresh_melt().
|
2015-01-29 17:34:37 +01:00
|
|
|
*
|
|
|
|
* @param rh context of the handler
|
|
|
|
* @param connection the MHD connection to handle
|
|
|
|
* @param[IN|OUT] connection_cls the connection's closure (can be updated)
|
|
|
|
* @param upload_data upload data
|
|
|
|
* @param[IN|OUT] upload_data_size number of bytes (left) in @a upload_data
|
|
|
|
* @return MHD result code
|
2015-03-10 16:15:14 +01:00
|
|
|
*/
|
2015-01-29 17:34:37 +01:00
|
|
|
int
|
2015-03-10 16:15:14 +01:00
|
|
|
TALER_MINT_handler_refresh_melt (struct RequestHandler *rh,
|
|
|
|
struct MHD_Connection *connection,
|
|
|
|
void **connection_cls,
|
|
|
|
const char *upload_data,
|
|
|
|
size_t *upload_data_size)
|
2015-01-29 17:34:37 +01:00
|
|
|
{
|
|
|
|
json_t *root;
|
2015-03-10 16:15:14 +01:00
|
|
|
json_t *new_denoms;
|
|
|
|
json_t *melt_coins;
|
|
|
|
json_t *melt_sig_json;
|
2015-01-29 17:34:37 +01:00
|
|
|
json_t *coin_evs;
|
|
|
|
json_t *link_encs;
|
|
|
|
json_t *transfer_pubs;
|
|
|
|
json_t *secret_encs;
|
|
|
|
json_t *commit_sig_json;
|
2015-03-10 16:15:14 +01:00
|
|
|
unsigned int kappa;
|
|
|
|
unsigned int num_oldcoins;
|
|
|
|
unsigned int num_newcoins;
|
|
|
|
json_t *coin_detail;
|
2015-03-22 22:14:30 +01:00
|
|
|
struct TALER_SessionPublicKey refresh_session_pub;
|
2015-03-10 16:15:14 +01:00
|
|
|
int res;
|
2015-01-29 17:34:37 +01:00
|
|
|
struct GNUNET_MINT_ParseFieldSpec spec[] = {
|
|
|
|
TALER_MINT_PARSE_FIXED ("session_pub", &refresh_session_pub),
|
2015-03-10 16:15:14 +01:00
|
|
|
TALER_MINT_PARSE_ARRAY ("new_denoms", &new_denoms),
|
|
|
|
TALER_MINT_PARSE_ARRAY ("melt_coins", &melt_coins),
|
|
|
|
TALER_MINT_PARSE_ARRAY ("melt_signature", &melt_sig_json),
|
2015-01-29 17:34:37 +01:00
|
|
|
TALER_MINT_PARSE_ARRAY ("coin_evs", &coin_evs),
|
|
|
|
TALER_MINT_PARSE_ARRAY ("link_encs", &link_encs),
|
|
|
|
TALER_MINT_PARSE_ARRAY ("transfer_pubs", &transfer_pubs),
|
|
|
|
TALER_MINT_PARSE_ARRAY ("secret_encs", &secret_encs),
|
|
|
|
TALER_MINT_PARSE_OBJECT ("commit_signature", &commit_sig_json),
|
|
|
|
TALER_MINT_PARSE_END
|
|
|
|
};
|
|
|
|
|
|
|
|
res = TALER_MINT_parse_post_json (connection,
|
|
|
|
connection_cls,
|
|
|
|
upload_data,
|
|
|
|
upload_data_size,
|
|
|
|
&root);
|
|
|
|
if (GNUNET_SYSERR == res)
|
|
|
|
return MHD_NO;
|
|
|
|
if ( (GNUNET_NO == res) || (NULL == root) )
|
|
|
|
return MHD_YES;
|
|
|
|
|
|
|
|
res = TALER_MINT_parse_json_data (connection,
|
|
|
|
root,
|
|
|
|
spec);
|
2015-01-29 18:03:44 +01:00
|
|
|
json_decref (root);
|
2015-01-29 17:34:37 +01:00
|
|
|
if (GNUNET_OK != res)
|
|
|
|
return (GNUNET_SYSERR == res) ? MHD_NO : MHD_YES;
|
|
|
|
|
|
|
|
/* Determine dimensionality of the request (kappa, #old and #new coins) */
|
|
|
|
kappa = json_array_size (coin_evs);
|
2015-01-29 17:53:12 +01:00
|
|
|
if ( (3 > kappa) || (kappa > 32) )
|
2015-01-29 17:34:37 +01:00
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
TALER_MINT_release_parsed_data (spec);
|
|
|
|
return TALER_MINT_reply_arg_invalid (connection,
|
|
|
|
"coin_evs");
|
|
|
|
}
|
|
|
|
if (json_array_size (transfer_pubs) != kappa)
|
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
TALER_MINT_release_parsed_data (spec);
|
|
|
|
return TALER_MINT_reply_arg_invalid (connection,
|
|
|
|
"transfer_pubs");
|
|
|
|
}
|
|
|
|
res = GNUNET_MINT_parse_navigate_json (connection, coin_evs,
|
|
|
|
JNAV_INDEX, (int) 0,
|
|
|
|
JNAV_RET_DATA,
|
|
|
|
JSON_ARRAY, &coin_detail);
|
|
|
|
if (GNUNET_OK != res)
|
|
|
|
{
|
|
|
|
TALER_MINT_release_parsed_data (spec);
|
|
|
|
return (GNUNET_SYSERR == res) ? MHD_NO : MHD_YES;
|
|
|
|
}
|
|
|
|
num_newcoins = json_array_size (coin_detail);
|
2015-01-29 18:03:44 +01:00
|
|
|
res = GNUNET_MINT_parse_navigate_json (connection,
|
|
|
|
transfer_pubs,
|
2015-01-29 17:34:37 +01:00
|
|
|
JNAV_INDEX, (int) 0,
|
|
|
|
JNAV_RET_DATA,
|
|
|
|
JSON_ARRAY, &coin_detail);
|
|
|
|
if (GNUNET_OK != res)
|
|
|
|
{
|
|
|
|
TALER_MINT_release_parsed_data (spec);
|
|
|
|
return (GNUNET_SYSERR == res) ? MHD_NO : MHD_YES;
|
|
|
|
}
|
|
|
|
num_oldcoins = json_array_size (coin_detail);
|
2015-03-10 16:15:14 +01:00
|
|
|
|
|
|
|
res = handle_refresh_melt_json (connection,
|
|
|
|
&refresh_session_pub,
|
|
|
|
new_denoms,
|
|
|
|
melt_coins,
|
|
|
|
melt_sig_json,
|
|
|
|
commit_sig_json,
|
|
|
|
kappa,
|
|
|
|
num_oldcoins,
|
|
|
|
transfer_pubs,
|
|
|
|
secret_encs,
|
|
|
|
num_newcoins,
|
|
|
|
coin_evs,
|
|
|
|
link_encs);
|
|
|
|
|
2015-01-29 17:34:37 +01:00
|
|
|
TALER_MINT_release_parsed_data (spec);
|
2015-01-21 13:31:05 +01:00
|
|
|
return res;
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-01-29 17:53:12 +01:00
|
|
|
* Handle a "/refresh/reveal" request. Parses the given JSON
|
|
|
|
* transfer private keys and if successful, passes everything to
|
|
|
|
* #TALER_MINT_db_execute_refresh_reveal() which will verify that the
|
|
|
|
* revealed information is valid then returns the signed refreshed
|
|
|
|
* coins.
|
|
|
|
*
|
|
|
|
* @param connection the MHD connection to handle
|
|
|
|
* @param refresh_session_pub public key of the session
|
|
|
|
* @param kappa length of the 1st dimension of @a transfer_privs array PLUS ONE
|
|
|
|
* @param num_oldcoins length of the 2nd dimension of @a transfer_privs array
|
|
|
|
* @param tp_json private transfer keys in JSON format
|
|
|
|
* @return MHD result code
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
handle_refresh_reveal_json (struct MHD_Connection *connection,
|
2015-03-22 22:14:30 +01:00
|
|
|
const struct TALER_SessionPublicKey *refresh_session_pub,
|
2015-01-29 17:53:12 +01:00
|
|
|
unsigned int kappa,
|
|
|
|
unsigned int num_oldcoins,
|
|
|
|
const json_t *tp_json)
|
|
|
|
{
|
2015-03-22 22:14:30 +01:00
|
|
|
struct TALER_TransferPrivateKey *transfer_privs[kappa - 1];
|
2015-01-29 17:53:12 +01:00
|
|
|
unsigned int i;
|
|
|
|
unsigned int j;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
for (i = 0; i < kappa - 1; i++)
|
|
|
|
transfer_privs[i] = GNUNET_malloc (num_oldcoins *
|
2015-03-22 22:14:30 +01:00
|
|
|
sizeof (struct TALER_TransferPrivateKey));
|
2015-01-29 17:53:12 +01:00
|
|
|
res = GNUNET_OK;
|
|
|
|
for (i = 0; i < kappa - 1; i++)
|
|
|
|
{
|
|
|
|
if (GNUNET_OK != res)
|
|
|
|
break;
|
|
|
|
for (j = 0; j < num_oldcoins; j++)
|
|
|
|
{
|
|
|
|
if (GNUNET_OK != res)
|
|
|
|
break;
|
|
|
|
res = GNUNET_MINT_parse_navigate_json (connection,
|
|
|
|
tp_json,
|
|
|
|
JNAV_INDEX, (int) i,
|
|
|
|
JNAV_INDEX, (int) j,
|
|
|
|
JNAV_RET_DATA,
|
|
|
|
&transfer_privs[i][j],
|
2015-03-22 22:14:30 +01:00
|
|
|
sizeof (struct TALER_TransferPrivateKey));
|
2015-01-29 17:53:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (GNUNET_OK != res)
|
|
|
|
res = (GNUNET_SYSERR == res) ? MHD_NO : MHD_YES;
|
|
|
|
else
|
|
|
|
res = TALER_MINT_db_execute_refresh_reveal (connection,
|
|
|
|
refresh_session_pub,
|
|
|
|
kappa,
|
|
|
|
num_oldcoins,
|
|
|
|
transfer_privs);
|
|
|
|
for (i = 0; i < kappa - 1; i++)
|
|
|
|
GNUNET_free (transfer_privs[i]);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a "/refresh/reveal" request. This time, the client reveals
|
|
|
|
* the private transfer keys except for the cut-and-choose value
|
2015-03-10 16:15:14 +01:00
|
|
|
* returned from "/refresh/melt". This function parses the revealed
|
2015-01-29 17:53:12 +01:00
|
|
|
* keys and secrets and ultimately passes everything to
|
|
|
|
* #TALER_MINT_db_execute_refresh_reveal() which will verify that the
|
|
|
|
* revealed information is valid then returns the signed refreshed
|
|
|
|
* coins.
|
2015-01-08 18:37:20 +01:00
|
|
|
*
|
|
|
|
* @param rh context of the handler
|
|
|
|
* @param connection the MHD connection to handle
|
|
|
|
* @param[IN|OUT] connection_cls the connection's closure (can be updated)
|
|
|
|
* @param upload_data upload data
|
|
|
|
* @param[IN|OUT] upload_data_size number of bytes (left) in @a upload_data
|
|
|
|
* @return MHD result code
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_MINT_handler_refresh_reveal (struct RequestHandler *rh,
|
|
|
|
struct MHD_Connection *connection,
|
|
|
|
void **connection_cls,
|
|
|
|
const char *upload_data,
|
|
|
|
size_t *upload_data_size)
|
|
|
|
{
|
2015-03-22 22:14:30 +01:00
|
|
|
struct TALER_SessionPublicKey refresh_session_pub;
|
2015-01-08 18:37:20 +01:00
|
|
|
int res;
|
2015-01-21 14:46:33 +01:00
|
|
|
unsigned int kappa;
|
|
|
|
unsigned int num_oldcoins;
|
|
|
|
json_t *reveal_detail;
|
2015-01-08 18:37:20 +01:00
|
|
|
json_t *root;
|
2015-01-29 17:53:12 +01:00
|
|
|
json_t *transfer_privs;
|
|
|
|
struct GNUNET_MINT_ParseFieldSpec spec[] = {
|
|
|
|
TALER_MINT_PARSE_FIXED ("session_pub", &refresh_session_pub),
|
|
|
|
TALER_MINT_PARSE_ARRAY ("transfer_privs", &transfer_privs),
|
|
|
|
TALER_MINT_PARSE_END
|
|
|
|
};
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-01-16 14:04:02 +01:00
|
|
|
res = TALER_MINT_parse_post_json (connection,
|
2015-01-16 14:27:42 +01:00
|
|
|
connection_cls,
|
|
|
|
upload_data,
|
|
|
|
upload_data_size,
|
|
|
|
&root);
|
2015-01-08 18:37:20 +01:00
|
|
|
if (GNUNET_SYSERR == res)
|
|
|
|
return MHD_NO;
|
2015-01-16 14:27:42 +01:00
|
|
|
if ( (GNUNET_NO == res) || (NULL == root) )
|
2015-01-08 18:37:20 +01:00
|
|
|
return MHD_YES;
|
|
|
|
|
2015-01-29 17:53:12 +01:00
|
|
|
res = TALER_MINT_parse_json_data (connection,
|
|
|
|
root,
|
|
|
|
spec);
|
2015-01-29 18:03:44 +01:00
|
|
|
json_decref (root);
|
2015-01-08 18:37:20 +01:00
|
|
|
if (GNUNET_OK != res)
|
2015-01-29 17:53:12 +01:00
|
|
|
return (GNUNET_SYSERR == res) ? MHD_NO : MHD_YES;
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-01-21 14:46:33 +01:00
|
|
|
/* Determine dimensionality of the request (kappa and #old coins) */
|
2015-01-29 17:53:12 +01:00
|
|
|
kappa = json_array_size (transfer_privs) + 1;
|
|
|
|
if ( (2 > kappa) || (kappa > 31) )
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-01-29 17:53:12 +01:00
|
|
|
TALER_MINT_release_parsed_data (spec);
|
|
|
|
return TALER_MINT_reply_arg_invalid (connection,
|
|
|
|
"transfer_privs");
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
2015-01-29 17:53:12 +01:00
|
|
|
/* Note we do +1 as 1 row (cut-and-choose!) is missing! */
|
|
|
|
kappa++;
|
|
|
|
res = GNUNET_MINT_parse_navigate_json (connection,
|
|
|
|
transfer_privs,
|
2015-01-21 14:46:33 +01:00
|
|
|
JNAV_INDEX, 0,
|
2015-01-29 17:53:12 +01:00
|
|
|
JNAV_RET_TYPED_JSON,
|
|
|
|
JSON_ARRAY,
|
|
|
|
&reveal_detail);
|
2015-01-21 14:46:33 +01:00
|
|
|
if (GNUNET_OK != res)
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-01-29 17:53:12 +01:00
|
|
|
TALER_MINT_release_parsed_data (spec);
|
|
|
|
return (GNUNET_SYSERR == res) ? MHD_NO : MHD_YES;
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
2015-01-29 17:53:12 +01:00
|
|
|
num_oldcoins = json_array_size (reveal_detail);
|
|
|
|
res = handle_refresh_reveal_json (connection,
|
|
|
|
&refresh_session_pub,
|
|
|
|
kappa,
|
|
|
|
num_oldcoins,
|
|
|
|
transfer_privs);
|
|
|
|
TALER_MINT_release_parsed_data (spec);
|
2015-01-21 14:46:33 +01:00
|
|
|
return res;
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a "/refresh/link" request
|
|
|
|
*
|
|
|
|
* @param rh context of the handler
|
|
|
|
* @param connection the MHD connection to handle
|
|
|
|
* @param[IN|OUT] connection_cls the connection's closure (can be updated)
|
|
|
|
* @param upload_data upload data
|
|
|
|
* @param[IN|OUT] upload_data_size number of bytes (left) in @a upload_data
|
|
|
|
* @return MHD result code
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_MINT_handler_refresh_link (struct RequestHandler *rh,
|
|
|
|
struct MHD_Connection *connection,
|
|
|
|
void **connection_cls,
|
|
|
|
const char *upload_data,
|
|
|
|
size_t *upload_data_size)
|
|
|
|
{
|
2015-03-22 22:14:30 +01:00
|
|
|
struct TALER_CoinSpendPublicKey coin_pub;
|
2015-01-08 18:37:20 +01:00
|
|
|
int res;
|
|
|
|
|
|
|
|
res = TALER_MINT_mhd_request_arg_data (connection,
|
2015-01-16 14:27:42 +01:00
|
|
|
"coin_pub",
|
|
|
|
&coin_pub,
|
2015-03-22 22:14:30 +01:00
|
|
|
sizeof (struct TALER_CoinSpendPublicKey));
|
2015-01-08 18:37:20 +01:00
|
|
|
if (GNUNET_SYSERR == res)
|
|
|
|
return MHD_NO;
|
|
|
|
if (GNUNET_OK != res)
|
|
|
|
return MHD_YES;
|
|
|
|
|
2015-01-21 13:46:05 +01:00
|
|
|
return TALER_MINT_db_execute_refresh_link (connection,
|
|
|
|
&coin_pub);
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* end of taler-mint-httpd_refresh.c */
|