2020-02-29 16:42:10 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
Copyright (C) 2014-2020 Taler Systems SA
|
|
|
|
|
|
|
|
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, see
|
|
|
|
<http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file lib/exchange_api_withdraw.c
|
2020-04-12 19:22:45 +02:00
|
|
|
* @brief Implementation of /reserves/$RESERVE_PUB/withdraw requests with blinding/unblinding
|
2020-02-29 16:42:10 +01:00
|
|
|
* @author Christian Grothoff
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include <jansson.h>
|
|
|
|
#include <microhttpd.h> /* just for HTTP status codes */
|
|
|
|
#include <gnunet/gnunet_util_lib.h>
|
|
|
|
#include <gnunet/gnunet_json_lib.h>
|
|
|
|
#include <gnunet/gnunet_curl_lib.h>
|
|
|
|
#include "taler_exchange_service.h"
|
|
|
|
#include "taler_json_lib.h"
|
|
|
|
#include "exchange_api_handle.h"
|
|
|
|
#include "taler_signatures.h"
|
|
|
|
#include "exchange_api_curl_defaults.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief A Withdraw Handle
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGE_WithdrawHandle
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The connection to exchange this request handle will use
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGE_Handle *exchange;
|
|
|
|
|
|
|
|
/**
|
2020-04-12 19:22:45 +02:00
|
|
|
* Handle for the actual (internal) withdraw operation.
|
2020-02-29 16:42:10 +01:00
|
|
|
*/
|
2020-04-12 19:22:45 +02:00
|
|
|
struct TALER_EXCHANGE_Withdraw2Handle *wh2;
|
2020-02-29 16:42:10 +01:00
|
|
|
|
|
|
|
/**
|
2020-04-12 19:22:45 +02:00
|
|
|
* Function to call with the result.
|
2020-02-29 16:42:10 +01:00
|
|
|
*/
|
2020-04-12 19:22:45 +02:00
|
|
|
TALER_EXCHANGE_WithdrawCallback cb;
|
2020-02-29 16:42:10 +01:00
|
|
|
|
|
|
|
/**
|
2020-04-12 19:22:45 +02:00
|
|
|
* Closure for @a cb.
|
2020-02-29 16:42:10 +01:00
|
|
|
*/
|
2020-04-12 19:22:45 +02:00
|
|
|
void *cb_cls;
|
2020-02-29 16:42:10 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Secrets of the planchet.
|
|
|
|
*/
|
|
|
|
struct TALER_PlanchetSecretsP ps;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Denomination key we are withdrawing.
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGE_DenomPublicKey pk;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hash of the public key of the coin we are signing.
|
|
|
|
*/
|
|
|
|
struct GNUNET_HashCode c_hash;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function called when we're done processing the
|
|
|
|
* HTTP /reserves/$RESERVE_PUB/withdraw request.
|
|
|
|
*
|
|
|
|
* @param cls the `struct TALER_EXCHANGE_WithdrawHandle`
|
2020-04-12 19:22:45 +02:00
|
|
|
* @param hr HTTP response data
|
|
|
|
* @param blind_sig blind signature over the coin, NULL on error
|
2020-02-29 16:42:10 +01:00
|
|
|
*/
|
|
|
|
static void
|
2020-04-12 19:22:45 +02:00
|
|
|
handle_reserve_withdraw_finished (
|
|
|
|
void *cls,
|
|
|
|
const struct TALER_EXCHANGE_HttpResponse *hr,
|
|
|
|
const struct GNUNET_CRYPTO_RsaSignature *blind_sig)
|
2020-02-29 16:42:10 +01:00
|
|
|
{
|
|
|
|
struct TALER_EXCHANGE_WithdrawHandle *wh = cls;
|
|
|
|
|
2020-04-12 19:22:45 +02:00
|
|
|
wh->wh2 = NULL;
|
|
|
|
if (MHD_HTTP_OK != hr->http_status)
|
2020-02-29 16:42:10 +01:00
|
|
|
{
|
2020-04-12 19:22:45 +02:00
|
|
|
wh->cb (wh->cb_cls,
|
|
|
|
hr,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct TALER_FreshCoin fc;
|
|
|
|
|
2020-02-29 16:42:10 +01:00
|
|
|
if (GNUNET_OK !=
|
2020-04-12 19:22:45 +02:00
|
|
|
TALER_planchet_to_coin (&wh->pk.key,
|
|
|
|
blind_sig,
|
|
|
|
&wh->ps,
|
|
|
|
&wh->c_hash,
|
|
|
|
&fc))
|
2020-02-29 16:42:10 +01:00
|
|
|
{
|
2020-04-12 19:22:45 +02:00
|
|
|
struct TALER_EXCHANGE_HttpResponse hrx = {
|
|
|
|
.reply = hr->reply,
|
|
|
|
.http_status = 0,
|
|
|
|
.ec = TALER_EC_WITHDRAW_UNBLIND_FAILURE
|
|
|
|
};
|
|
|
|
|
|
|
|
wh->cb (wh->cb_cls,
|
|
|
|
&hrx,
|
|
|
|
NULL);
|
2020-03-20 02:36:50 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-04-12 19:22:45 +02:00
|
|
|
wh->cb (wh->cb_cls,
|
|
|
|
hr,
|
|
|
|
&fc.sig);
|
|
|
|
GNUNET_CRYPTO_rsa_signature_free (fc.sig.rsa_signature);
|
2020-02-29 16:42:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-04-12 19:22:45 +02:00
|
|
|
TALER_EXCHANGE_withdraw_cancel (wh);
|
2020-02-29 16:42:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Withdraw a coin from the exchange using a /reserve/withdraw request. Note
|
|
|
|
* that to ensure that no money is lost in case of hardware failures,
|
|
|
|
* the caller must have committed (most of) the arguments to disk
|
|
|
|
* before calling, and be ready to repeat the request with the same
|
|
|
|
* arguments in case of failures.
|
|
|
|
*
|
|
|
|
* @param exchange the exchange handle; the exchange must be ready to operate
|
|
|
|
* @param pk kind of coin to create
|
|
|
|
* @param reserve_priv private key of the reserve to withdraw from
|
|
|
|
* @param ps secrets of the planchet
|
|
|
|
* caller must have committed this value to disk before the call (with @a pk)
|
|
|
|
* @param res_cb the callback to call when the final result for this request is available
|
|
|
|
* @param res_cb_cls closure for the above callback
|
|
|
|
* @return handle for the operation on success, NULL on error, i.e.
|
|
|
|
* if the inputs are invalid (i.e. denomination key not with this exchange).
|
|
|
|
* In this case, the callback is not called.
|
|
|
|
*/
|
|
|
|
struct TALER_EXCHANGE_WithdrawHandle *
|
2020-03-17 17:47:53 +01:00
|
|
|
TALER_EXCHANGE_withdraw (
|
|
|
|
struct TALER_EXCHANGE_Handle *exchange,
|
|
|
|
const struct TALER_EXCHANGE_DenomPublicKey *pk,
|
|
|
|
const struct TALER_ReservePrivateKeyP *reserve_priv,
|
|
|
|
const struct TALER_PlanchetSecretsP *ps,
|
|
|
|
TALER_EXCHANGE_WithdrawCallback res_cb,
|
|
|
|
void *res_cb_cls)
|
2020-02-29 16:42:10 +01:00
|
|
|
{
|
|
|
|
struct TALER_PlanchetDetail pd;
|
|
|
|
struct TALER_EXCHANGE_WithdrawHandle *wh;
|
|
|
|
|
2020-04-12 19:22:45 +02:00
|
|
|
wh = GNUNET_new (struct TALER_EXCHANGE_WithdrawHandle);
|
|
|
|
wh->exchange = exchange;
|
|
|
|
wh->cb = res_cb;
|
|
|
|
wh->cb_cls = res_cb_cls;
|
|
|
|
wh->pk = *pk;
|
|
|
|
wh->ps = *ps;
|
2020-02-29 16:42:10 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_planchet_prepare (&pk->key,
|
|
|
|
ps,
|
2020-04-12 19:22:45 +02:00
|
|
|
&wh->c_hash,
|
2020-02-29 16:42:10 +01:00
|
|
|
&pd))
|
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
2020-04-12 19:22:45 +02:00
|
|
|
GNUNET_free (wh);
|
2020-02-29 16:42:10 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2020-04-12 19:22:45 +02:00
|
|
|
wh->pk.key.rsa_public_key
|
|
|
|
= GNUNET_CRYPTO_rsa_public_key_dup (pk->key.rsa_public_key);
|
|
|
|
wh->wh2 = TALER_EXCHANGE_withdraw2 (exchange,
|
|
|
|
&pd,
|
|
|
|
reserve_priv,
|
|
|
|
&handle_reserve_withdraw_finished,
|
|
|
|
wh);
|
2020-02-29 16:42:10 +01:00
|
|
|
GNUNET_free (pd.coin_ev);
|
|
|
|
return wh;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cancel a withdraw status request. This function cannot be used
|
|
|
|
* on a request handle if a response is already served for it.
|
|
|
|
*
|
2020-02-29 17:13:43 +01:00
|
|
|
* @param wh the withdraw sign request handle
|
2020-02-29 16:42:10 +01:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
TALER_EXCHANGE_withdraw_cancel (struct TALER_EXCHANGE_WithdrawHandle *wh)
|
|
|
|
{
|
2020-04-12 19:22:45 +02:00
|
|
|
if (NULL != wh->wh2)
|
2020-02-29 16:42:10 +01:00
|
|
|
{
|
2020-04-12 19:22:45 +02:00
|
|
|
TALER_EXCHANGE_withdraw2_cancel (wh->wh2);
|
|
|
|
wh->wh2 = NULL;
|
2020-02-29 16:42:10 +01:00
|
|
|
}
|
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (wh->pk.key.rsa_public_key);
|
|
|
|
GNUNET_free (wh);
|
|
|
|
}
|