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_withdraw.c
|
|
|
|
* @brief Handle /withdraw/ requests
|
|
|
|
* @author Florian Dold
|
|
|
|
* @author Benedikt Mueller
|
|
|
|
* @author Christian Grothoff
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include <gnunet/gnunet_util_lib.h>
|
|
|
|
#include <jansson.h>
|
|
|
|
#include "taler-mint-httpd_withdraw.h"
|
2015-01-27 22:17:08 +01:00
|
|
|
#include "taler-mint-httpd_parsing.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-27 22:20:57 +01:00
|
|
|
* Handle a "/withdraw/status" request. Parses the
|
|
|
|
* given "reserve_pub" argument (which should contain the
|
|
|
|
* EdDSA public key of a reserve) and then respond with the
|
|
|
|
* status of the reserve.
|
2015-01-08 18:37:20 +01:00
|
|
|
*
|
|
|
|
* @param rh context of the handler
|
|
|
|
* @param connection the MHD connection to handle
|
2015-03-28 15:42:07 +01:00
|
|
|
* @param[in,out] connection_cls the connection's closure (can be updated)
|
2015-01-08 18:37:20 +01:00
|
|
|
* @param upload_data upload data
|
2015-03-28 15:42:07 +01:00
|
|
|
* @param[in,out] upload_data_size number of bytes (left) in @a upload_data
|
2015-01-08 18:37:20 +01:00
|
|
|
* @return MHD result code
|
|
|
|
*/
|
|
|
|
int
|
2015-03-27 19:58:40 +01:00
|
|
|
TMH_WITHDRAW_handler_withdraw_status (struct TMH_RequestHandler *rh,
|
2015-01-08 18:37:20 +01:00
|
|
|
struct MHD_Connection *connection,
|
|
|
|
void **connection_cls,
|
|
|
|
const char *upload_data,
|
|
|
|
size_t *upload_data_size)
|
|
|
|
{
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_ReservePublicKeyP reserve_pub;
|
2015-01-08 18:37:20 +01:00
|
|
|
int res;
|
|
|
|
|
2015-03-27 19:58:40 +01:00
|
|
|
res = TMH_PARSE_mhd_request_arg_data (connection,
|
2015-01-19 21:53:23 +01:00
|
|
|
"reserve_pub",
|
|
|
|
&reserve_pub,
|
2015-03-27 19:58:40 +01:00
|
|
|
sizeof (struct TALER_ReservePublicKeyP));
|
2015-01-08 18:37:20 +01:00
|
|
|
if (GNUNET_SYSERR == res)
|
2015-01-19 21:53:23 +01:00
|
|
|
return MHD_NO; /* internal error */
|
|
|
|
if (GNUNET_NO == res)
|
|
|
|
return MHD_YES; /* parse error */
|
2015-03-27 19:58:40 +01:00
|
|
|
return TMH_DB_execute_withdraw_status (connection,
|
2015-01-19 21:53:23 +01:00
|
|
|
&reserve_pub);
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-01-27 22:20:57 +01:00
|
|
|
* Handle a "/withdraw/sign" request. Parses the "reserve_pub"
|
|
|
|
* EdDSA key of the reserve and the requested "denom_pub" which
|
|
|
|
* specifies the key/value of the coin to be withdrawn, and checks
|
|
|
|
* that the signature "reserve_sig" makes this a valid withdrawl
|
|
|
|
* request from the specified reserve. If so, the envelope
|
|
|
|
* with the blinded coin "coin_ev" is passed down to execute the
|
|
|
|
* withdrawl operation.
|
2015-01-08 18:37:20 +01:00
|
|
|
*
|
|
|
|
* @param rh context of the handler
|
|
|
|
* @param connection the MHD connection to handle
|
2015-03-28 15:42:07 +01:00
|
|
|
* @param[in,out] connection_cls the connection's closure (can be updated)
|
2015-01-08 18:37:20 +01:00
|
|
|
* @param upload_data upload data
|
2015-03-28 15:42:07 +01:00
|
|
|
* @param[in,out] upload_data_size number of bytes (left) in @a upload_data
|
2015-01-08 18:37:20 +01:00
|
|
|
* @return MHD result code
|
|
|
|
*/
|
|
|
|
int
|
2015-03-27 19:58:40 +01:00
|
|
|
TMH_WITHDRAW_handler_withdraw_sign (struct TMH_RequestHandler *rh,
|
2015-01-08 18:37:20 +01:00
|
|
|
struct MHD_Connection *connection,
|
|
|
|
void **connection_cls,
|
|
|
|
const char *upload_data,
|
|
|
|
size_t *upload_data_size)
|
|
|
|
{
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_WithdrawRequestPS wsrd;
|
2015-01-08 18:37:20 +01:00
|
|
|
int res;
|
2015-03-22 22:14:30 +01:00
|
|
|
struct TALER_DenominationPublicKey denomination_pub;
|
2015-01-26 12:22:26 +01:00
|
|
|
char *denomination_pub_data;
|
|
|
|
size_t denomination_pub_data_size;
|
|
|
|
char *blinded_msg;
|
|
|
|
size_t blinded_msg_len;
|
2015-03-27 19:58:40 +01:00
|
|
|
struct TALER_ReserveSignatureP signature;
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-03-27 19:58:40 +01:00
|
|
|
res = TMH_PARSE_mhd_request_arg_data (connection,
|
2015-01-19 21:53:23 +01:00
|
|
|
"reserve_pub",
|
|
|
|
&wsrd.reserve_pub,
|
2015-03-27 19:58:40 +01:00
|
|
|
sizeof (struct TALER_ReservePublicKeyP));
|
2015-01-08 18:37:20 +01:00
|
|
|
if (GNUNET_SYSERR == res)
|
2015-01-19 21:53:23 +01:00
|
|
|
return MHD_NO; /* internal error */
|
|
|
|
if (GNUNET_NO == res)
|
|
|
|
return MHD_YES; /* invalid request */
|
2015-03-27 19:58:40 +01:00
|
|
|
res = TMH_PARSE_mhd_request_arg_data (connection,
|
2015-01-27 22:17:08 +01:00
|
|
|
"reserve_sig",
|
|
|
|
&signature,
|
2015-03-27 19:58:40 +01:00
|
|
|
sizeof (struct TALER_ReserveSignatureP));
|
2015-01-27 22:17:08 +01:00
|
|
|
if (GNUNET_SYSERR == res)
|
|
|
|
return MHD_NO; /* internal error */
|
|
|
|
if (GNUNET_NO == res)
|
|
|
|
return MHD_YES; /* invalid request */
|
2015-03-27 19:58:40 +01:00
|
|
|
res = TMH_PARSE_mhd_request_var_arg_data (connection,
|
2015-01-26 12:22:26 +01:00
|
|
|
"denom_pub",
|
2015-01-27 18:52:56 +01:00
|
|
|
(void **) &denomination_pub_data,
|
2015-01-26 12:22:26 +01:00
|
|
|
&denomination_pub_data_size);
|
2015-01-08 18:37:20 +01:00
|
|
|
if (GNUNET_SYSERR == res)
|
2015-01-19 21:53:23 +01:00
|
|
|
return MHD_NO; /* internal error */
|
|
|
|
if (GNUNET_NO == res)
|
|
|
|
return MHD_YES; /* invalid request */
|
2015-03-27 19:58:40 +01:00
|
|
|
res = TMH_PARSE_mhd_request_var_arg_data (connection,
|
2015-01-26 12:22:26 +01:00
|
|
|
"coin_ev",
|
2015-01-27 18:52:56 +01:00
|
|
|
(void **) &blinded_msg,
|
2015-01-26 12:22:26 +01:00
|
|
|
&blinded_msg_len);
|
2015-01-08 18:37:20 +01:00
|
|
|
if (GNUNET_SYSERR == res)
|
2015-01-27 22:17:08 +01:00
|
|
|
{
|
|
|
|
GNUNET_free (denomination_pub_data);
|
2015-01-19 21:53:23 +01:00
|
|
|
return MHD_NO; /* internal error */
|
2015-01-27 22:17:08 +01:00
|
|
|
}
|
2015-01-19 21:53:23 +01:00
|
|
|
if (GNUNET_NO == res)
|
2015-01-27 22:17:08 +01:00
|
|
|
{
|
|
|
|
GNUNET_free (denomination_pub_data);
|
2015-01-19 21:53:23 +01:00
|
|
|
return MHD_YES; /* invalid request */
|
2015-01-27 22:17:08 +01:00
|
|
|
}
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-01-26 12:22:26 +01:00
|
|
|
/* verify signature! */
|
2015-03-27 19:58:40 +01:00
|
|
|
wsrd.purpose.size = htonl (sizeof (struct TALER_WithdrawRequestPS));
|
2015-03-28 14:22:21 +01:00
|
|
|
wsrd.purpose.purpose = htonl (TALER_SIGNATURE_WALLET_RESERVE_WITHDRAW);
|
2015-01-26 12:22:26 +01:00
|
|
|
GNUNET_CRYPTO_hash (denomination_pub_data,
|
|
|
|
denomination_pub_data_size,
|
|
|
|
&wsrd.h_denomination_pub);
|
|
|
|
GNUNET_CRYPTO_hash (blinded_msg,
|
|
|
|
blinded_msg_len,
|
|
|
|
&wsrd.h_coin_envelope);
|
|
|
|
if (GNUNET_OK !=
|
2015-03-28 14:22:21 +01:00
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_RESERVE_WITHDRAW,
|
2015-01-26 12:22:26 +01:00
|
|
|
&wsrd.purpose,
|
2015-03-22 22:14:30 +01:00
|
|
|
&signature.eddsa_signature,
|
|
|
|
&wsrd.reserve_pub.eddsa_pub))
|
2015-01-26 12:22:26 +01:00
|
|
|
{
|
2015-03-27 19:58:40 +01:00
|
|
|
TALER_LOG_WARNING ("Client supplied invalid signature for /withdraw/sign request\n");
|
2015-01-27 22:17:08 +01:00
|
|
|
GNUNET_free (denomination_pub_data);
|
|
|
|
GNUNET_free (blinded_msg);
|
2015-03-27 19:58:40 +01:00
|
|
|
return TMH_RESPONSE_reply_arg_invalid (connection,
|
2015-01-27 22:17:08 +01:00
|
|
|
"reserve_sig");
|
2015-01-26 12:22:26 +01:00
|
|
|
}
|
2015-03-22 22:14:30 +01:00
|
|
|
denomination_pub.rsa_public_key
|
|
|
|
= GNUNET_CRYPTO_rsa_public_key_decode (denomination_pub_data,
|
|
|
|
denomination_pub_data_size);
|
2015-01-27 22:17:08 +01:00
|
|
|
GNUNET_free (denomination_pub_data);
|
2015-03-22 22:14:30 +01:00
|
|
|
if (NULL == denomination_pub.rsa_public_key)
|
2015-01-26 12:22:26 +01:00
|
|
|
{
|
2015-03-27 19:58:40 +01:00
|
|
|
TALER_LOG_WARNING ("Client supplied ill-formed denomination public key for /withdraw/sign request\n");
|
2015-01-26 12:22:26 +01:00
|
|
|
GNUNET_free (blinded_msg);
|
2015-03-27 19:58:40 +01:00
|
|
|
return TMH_RESPONSE_reply_arg_invalid (connection,
|
2015-01-27 22:17:08 +01:00
|
|
|
"denom_pub");
|
2015-01-26 12:22:26 +01:00
|
|
|
}
|
2015-03-27 19:58:40 +01:00
|
|
|
res = TMH_DB_execute_withdraw_sign (connection,
|
2015-01-26 12:22:26 +01:00
|
|
|
&wsrd.reserve_pub,
|
2015-03-22 22:14:30 +01:00
|
|
|
&denomination_pub,
|
2015-01-26 12:22:26 +01:00
|
|
|
blinded_msg,
|
|
|
|
blinded_msg_len,
|
|
|
|
&signature);
|
|
|
|
GNUNET_free (blinded_msg);
|
2015-03-22 22:14:30 +01:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (denomination_pub.rsa_public_key);
|
2015-01-26 12:22:26 +01:00
|
|
|
return res;
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* end of taler-mint-httpd_withdraw.c */
|