2015-06-21 00:00:33 +02:00
|
|
|
|
/*
|
|
|
|
|
This file is part of TALER
|
2019-01-13 16:22:16 +01:00
|
|
|
|
Copyright (C) 2014, 2015, 2018, 2019 GNUnet e.V.
|
2015-06-21 00:00:33 +02: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
|
2016-07-07 17:55:25 +02:00
|
|
|
|
TALER; see the file COPYING. If not, see
|
2015-06-21 00:00:33 +02:00
|
|
|
|
<http://www.gnu.org/licenses/>
|
|
|
|
|
*/
|
|
|
|
|
/**
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* @file exchange-lib/exchange_api_deposit.c
|
|
|
|
|
* @brief Implementation of the /deposit request of the exchange's HTTP API
|
2015-06-21 00:00:33 +02:00
|
|
|
|
* @author Sree Harsha Totakura <sreeharsha@totakura.in>
|
|
|
|
|
* @author Christian Grothoff
|
|
|
|
|
*/
|
|
|
|
|
#include "platform.h"
|
|
|
|
|
#include <jansson.h>
|
2015-06-21 21:17:33 +02:00
|
|
|
|
#include <microhttpd.h> /* just for HTTP status codes */
|
2015-06-21 00:00:33 +02:00
|
|
|
|
#include <gnunet/gnunet_util_lib.h>
|
2016-03-19 15:23:11 +01:00
|
|
|
|
#include <gnunet/gnunet_json_lib.h>
|
2016-04-17 17:45:15 +02:00
|
|
|
|
#include <gnunet/gnunet_curl_lib.h>
|
2016-03-19 15:23:11 +01:00
|
|
|
|
#include "taler_json_lib.h"
|
2019-01-10 16:20:15 +01:00
|
|
|
|
#include "taler_auditor_service.h"
|
2016-03-01 15:35:04 +01:00
|
|
|
|
#include "taler_exchange_service.h"
|
|
|
|
|
#include "exchange_api_handle.h"
|
2015-06-21 00:00:33 +02:00
|
|
|
|
#include "taler_signatures.h"
|
2019-01-11 21:27:34 +01:00
|
|
|
|
#include "exchange_api_curl_defaults.h"
|
2015-06-21 00:00:33 +02:00
|
|
|
|
|
|
|
|
|
|
2019-01-13 17:47:15 +01:00
|
|
|
|
/**
|
|
|
|
|
* 1:#AUDITOR_CHANCE is the probability that we report deposits
|
|
|
|
|
* to the auditor.
|
|
|
|
|
*
|
|
|
|
|
* 2==50% of going to auditor. This is way too high, but set
|
|
|
|
|
* deliberately this high for testing
|
|
|
|
|
*/
|
|
|
|
|
#define AUDITOR_CHANCE 2
|
|
|
|
|
|
2015-06-21 00:00:33 +02:00
|
|
|
|
/**
|
|
|
|
|
* @brief A Deposit Handle
|
|
|
|
|
*/
|
2016-03-01 15:35:04 +01:00
|
|
|
|
struct TALER_EXCHANGE_DepositHandle
|
2015-06-21 00:00:33 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* The connection to exchange this request handle will use
|
2015-06-21 00:00:33 +02:00
|
|
|
|
*/
|
2016-03-01 15:35:04 +01:00
|
|
|
|
struct TALER_EXCHANGE_Handle *exchange;
|
2015-06-21 00:00:33 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The url for this request.
|
|
|
|
|
*/
|
|
|
|
|
char *url;
|
|
|
|
|
|
|
|
|
|
/**
|
2019-05-03 17:36:58 +02:00
|
|
|
|
* Context for #TEH_curl_easy_post(). Keeps the data that must
|
|
|
|
|
* persist for Curl to make the upload.
|
2015-06-21 00:00:33 +02:00
|
|
|
|
*/
|
2019-05-03 17:36:58 +02:00
|
|
|
|
struct TEAH_PostContext ctx;
|
2015-06-21 00:00:33 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Handle for the request.
|
|
|
|
|
*/
|
2016-04-17 17:45:15 +02:00
|
|
|
|
struct GNUNET_CURL_Job *job;
|
2015-06-21 00:00:33 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Function to call with the result.
|
|
|
|
|
*/
|
2016-03-01 15:35:04 +01:00
|
|
|
|
TALER_EXCHANGE_DepositResultCallback cb;
|
2015-06-21 00:00:33 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Closure for @a cb.
|
|
|
|
|
*/
|
|
|
|
|
void *cb_cls;
|
|
|
|
|
|
2015-06-21 21:17:33 +02:00
|
|
|
|
/**
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* Information the exchange should sign in response.
|
2015-06-21 21:17:33 +02:00
|
|
|
|
*/
|
|
|
|
|
struct TALER_DepositConfirmationPS depconf;
|
|
|
|
|
|
2019-01-13 16:22:16 +01:00
|
|
|
|
/**
|
|
|
|
|
* Exchange signature, set for #auditor_cb.
|
|
|
|
|
*/
|
|
|
|
|
struct TALER_ExchangeSignatureP exchange_sig;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Exchange signing public key, set for #auditor_cb.
|
|
|
|
|
*/
|
|
|
|
|
struct TALER_ExchangePublicKeyP exchange_pub;
|
|
|
|
|
|
2015-06-21 21:49:05 +02:00
|
|
|
|
/**
|
|
|
|
|
* Value of the /deposit transaction, including fee.
|
|
|
|
|
*/
|
|
|
|
|
struct TALER_Amount amount_with_fee;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Total value of the coin being transacted with.
|
|
|
|
|
*/
|
|
|
|
|
struct TALER_Amount coin_value;
|
2019-01-11 21:27:34 +01:00
|
|
|
|
|
2015-06-21 00:00:33 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2019-01-10 16:20:15 +01:00
|
|
|
|
/**
|
2019-01-13 16:22:16 +01:00
|
|
|
|
* Function called for each auditor to give us a chance to possibly
|
|
|
|
|
* launch a deposit confirmation interaction.
|
2019-01-10 16:20:15 +01:00
|
|
|
|
*
|
|
|
|
|
* @param cls closure
|
2019-01-13 16:22:16 +01:00
|
|
|
|
* @param ah handle to the auditor
|
|
|
|
|
* @param auditor_pub public key of the auditor
|
|
|
|
|
* @return NULL if no deposit confirmation interaction was launched
|
2019-01-10 16:20:15 +01:00
|
|
|
|
*/
|
2019-01-13 16:22:16 +01:00
|
|
|
|
static struct TEAH_AuditorInteractionEntry *
|
|
|
|
|
auditor_cb (void *cls,
|
|
|
|
|
struct TALER_AUDITOR_Handle *ah,
|
|
|
|
|
const struct TALER_AuditorPublicKeyP *auditor_pub)
|
2019-01-10 16:20:15 +01:00
|
|
|
|
{
|
2019-01-13 16:22:16 +01:00
|
|
|
|
struct TALER_EXCHANGE_DepositHandle *dh = cls;
|
|
|
|
|
const struct TALER_EXCHANGE_Keys *key_state;
|
|
|
|
|
const struct TALER_EXCHANGE_SigningPublicKey *spk;
|
|
|
|
|
struct TALER_Amount amount_without_fee;
|
|
|
|
|
struct TEAH_AuditorInteractionEntry *aie;
|
|
|
|
|
|
2019-01-13 17:47:15 +01:00
|
|
|
|
if (0 != GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
|
|
|
|
|
AUDITOR_CHANCE))
|
2019-01-13 16:22:16 +01:00
|
|
|
|
return NULL;
|
|
|
|
|
key_state = TALER_EXCHANGE_get_keys (dh->exchange);
|
|
|
|
|
spk = TALER_EXCHANGE_get_signing_key_details (key_state,
|
|
|
|
|
&dh->exchange_pub);
|
|
|
|
|
GNUNET_assert (NULL != spk);
|
|
|
|
|
TALER_amount_ntoh (&amount_without_fee,
|
|
|
|
|
&dh->depconf.amount_without_fee);
|
|
|
|
|
aie = GNUNET_new (struct TEAH_AuditorInteractionEntry);
|
|
|
|
|
aie->dch = TALER_AUDITOR_deposit_confirmation (ah,
|
|
|
|
|
&dh->depconf.h_wire,
|
|
|
|
|
&dh->depconf.h_contract_terms,
|
|
|
|
|
GNUNET_TIME_absolute_ntoh (dh->depconf.timestamp),
|
|
|
|
|
GNUNET_TIME_absolute_ntoh (dh->depconf.refund_deadline),
|
|
|
|
|
&amount_without_fee,
|
|
|
|
|
&dh->depconf.coin_pub,
|
|
|
|
|
&dh->depconf.merchant,
|
|
|
|
|
&dh->exchange_pub,
|
|
|
|
|
&dh->exchange_sig,
|
|
|
|
|
&key_state->master_pub,
|
|
|
|
|
spk->valid_from,
|
|
|
|
|
spk->valid_until,
|
|
|
|
|
spk->valid_legal,
|
|
|
|
|
&spk->master_sig,
|
|
|
|
|
&TEAH_acc_confirmation_cb,
|
|
|
|
|
aie);
|
|
|
|
|
return aie;
|
2019-01-10 16:20:15 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-06-21 21:17:33 +02:00
|
|
|
|
/**
|
|
|
|
|
* Verify that the signature on the "200 OK" response
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* from the exchange is valid.
|
2015-06-21 21:17:33 +02:00
|
|
|
|
*
|
|
|
|
|
* @param dh deposit handle
|
|
|
|
|
* @param json json reply with the signature
|
2018-11-17 15:15:51 +01:00
|
|
|
|
* @param exchange_sig[out] set to the exchange's signature
|
|
|
|
|
* @param exchange_pub[out] set to the exchange's public key
|
2015-06-21 21:17:33 +02:00
|
|
|
|
* @return #GNUNET_OK if the signature is valid, #GNUNET_SYSERR if not
|
|
|
|
|
*/
|
|
|
|
|
static int
|
2019-01-13 16:22:16 +01:00
|
|
|
|
verify_deposit_signature_ok (struct TALER_EXCHANGE_DepositHandle *dh,
|
2016-06-07 15:14:44 +02:00
|
|
|
|
const json_t *json,
|
2019-07-23 21:56:21 +02:00
|
|
|
|
struct TALER_ExchangeSignatureP *exchange_sig,
|
2016-06-07 15:14:44 +02:00
|
|
|
|
struct TALER_ExchangePublicKeyP *exchange_pub)
|
2015-06-21 21:17:33 +02:00
|
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
|
const struct TALER_EXCHANGE_Keys *key_state;
|
2016-03-19 15:54:21 +01:00
|
|
|
|
struct GNUNET_JSON_Specification spec[] = {
|
2018-11-17 15:15:51 +01:00
|
|
|
|
GNUNET_JSON_spec_fixed_auto ("sig", exchange_sig),
|
2016-06-07 15:14:44 +02:00
|
|
|
|
GNUNET_JSON_spec_fixed_auto ("pub", exchange_pub),
|
2016-03-19 15:54:21 +01:00
|
|
|
|
GNUNET_JSON_spec_end()
|
2015-06-21 21:17:33 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (GNUNET_OK !=
|
2016-03-19 15:54:21 +01:00
|
|
|
|
GNUNET_JSON_parse (json,
|
|
|
|
|
spec,
|
|
|
|
|
NULL, NULL))
|
2015-06-21 21:17:33 +02:00
|
|
|
|
{
|
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
|
}
|
2016-03-01 15:35:04 +01:00
|
|
|
|
key_state = TALER_EXCHANGE_get_keys (dh->exchange);
|
2015-07-05 17:15:37 +02:00
|
|
|
|
if (GNUNET_OK !=
|
2016-03-01 15:35:04 +01:00
|
|
|
|
TALER_EXCHANGE_test_signing_key (key_state,
|
2016-06-07 15:14:44 +02:00
|
|
|
|
exchange_pub))
|
2015-07-05 17:15:37 +02:00
|
|
|
|
{
|
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
|
}
|
2015-06-21 21:17:33 +02:00
|
|
|
|
if (GNUNET_OK !=
|
2016-03-01 15:35:04 +01:00
|
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_EXCHANGE_CONFIRM_DEPOSIT,
|
2015-06-21 21:17:33 +02:00
|
|
|
|
&dh->depconf.purpose,
|
2018-11-17 15:15:51 +01:00
|
|
|
|
&exchange_sig->eddsa_signature,
|
2016-06-07 15:14:44 +02:00
|
|
|
|
&exchange_pub->eddsa_pub))
|
2015-06-21 21:17:33 +02:00
|
|
|
|
{
|
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
|
}
|
2019-01-13 16:22:16 +01:00
|
|
|
|
dh->exchange_sig = *exchange_sig;
|
|
|
|
|
dh->exchange_pub = *exchange_pub;
|
|
|
|
|
TEAH_get_auditors_for_dc (dh->exchange,
|
|
|
|
|
&auditor_cb,
|
|
|
|
|
dh);
|
2015-06-21 21:17:33 +02:00
|
|
|
|
return GNUNET_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Verify that the signatures on the "403 FORBIDDEN" response from the
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* exchange demonstrating customer double-spending are valid.
|
2015-06-21 21:17:33 +02:00
|
|
|
|
*
|
|
|
|
|
* @param dh deposit handle
|
|
|
|
|
* @param json json reply with the signature(s) and transaction history
|
|
|
|
|
* @return #GNUNET_OK if the signature(s) is valid, #GNUNET_SYSERR if not
|
|
|
|
|
*/
|
|
|
|
|
static int
|
2016-03-01 15:35:04 +01:00
|
|
|
|
verify_deposit_signature_forbidden (const struct TALER_EXCHANGE_DepositHandle *dh,
|
2016-04-17 17:45:15 +02:00
|
|
|
|
const json_t *json)
|
2015-06-21 21:17:33 +02:00
|
|
|
|
{
|
2015-06-21 21:49:05 +02:00
|
|
|
|
json_t *history;
|
|
|
|
|
struct TALER_Amount total;
|
|
|
|
|
|
|
|
|
|
history = json_object_get (json,
|
|
|
|
|
"history");
|
2015-08-08 20:21:13 +02:00
|
|
|
|
if (GNUNET_OK !=
|
2016-05-05 14:43:13 +02:00
|
|
|
|
TALER_EXCHANGE_verify_coin_history (dh->coin_value.currency,
|
2018-11-17 15:15:51 +01:00
|
|
|
|
&dh->depconf.coin_pub,
|
|
|
|
|
history,
|
|
|
|
|
&total))
|
2015-06-21 21:17:33 +02:00
|
|
|
|
{
|
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
|
}
|
2015-06-21 21:49:05 +02:00
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
|
TALER_amount_add (&total,
|
|
|
|
|
&total,
|
|
|
|
|
&dh->amount_with_fee))
|
|
|
|
|
{
|
|
|
|
|
/* clearly not OK if our transaction would have caused
|
|
|
|
|
the overflow... */
|
|
|
|
|
return GNUNET_OK;
|
|
|
|
|
}
|
2015-06-21 21:17:33 +02:00
|
|
|
|
|
2015-06-21 21:49:05 +02:00
|
|
|
|
if (0 >= TALER_amount_cmp (&total,
|
|
|
|
|
&dh->coin_value))
|
|
|
|
|
{
|
|
|
|
|
/* transaction should have still fit */
|
|
|
|
|
GNUNET_break (0);
|
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
|
}
|
|
|
|
|
/* everything OK, proof of double-spending was provided */
|
2015-06-21 21:17:33 +02:00
|
|
|
|
return GNUNET_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-06-21 00:00:33 +02:00
|
|
|
|
/**
|
|
|
|
|
* Function called when we're done processing the
|
|
|
|
|
* HTTP /deposit request.
|
|
|
|
|
*
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* @param cls the `struct TALER_EXCHANGE_DepositHandle`
|
2016-04-17 17:45:15 +02:00
|
|
|
|
* @param response_code HTTP response code, 0 on error
|
2018-10-22 16:59:09 +02:00
|
|
|
|
* @param response parsed JSON result, NULL on error
|
2015-06-21 00:00:33 +02:00
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
handle_deposit_finished (void *cls,
|
2016-04-17 17:45:15 +02:00
|
|
|
|
long response_code,
|
2018-10-22 16:59:09 +02:00
|
|
|
|
const void *response)
|
2015-06-21 00:00:33 +02:00
|
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
|
struct TALER_EXCHANGE_DepositHandle *dh = cls;
|
2018-11-17 15:15:51 +01:00
|
|
|
|
struct TALER_ExchangeSignatureP exchange_sig;
|
2016-06-07 15:14:44 +02:00
|
|
|
|
struct TALER_ExchangePublicKeyP exchange_pub;
|
2018-11-17 15:15:51 +01:00
|
|
|
|
struct TALER_ExchangeSignatureP *es = NULL;
|
2016-06-07 15:14:44 +02:00
|
|
|
|
struct TALER_ExchangePublicKeyP *ep = NULL;
|
2018-10-22 16:59:09 +02:00
|
|
|
|
const json_t *j = response;
|
2015-06-21 00:00:33 +02:00
|
|
|
|
|
2015-07-04 21:34:50 +02:00
|
|
|
|
dh->job = NULL;
|
2015-06-21 00:00:33 +02:00
|
|
|
|
switch (response_code)
|
|
|
|
|
{
|
2015-06-26 09:03:18 +02:00
|
|
|
|
case 0:
|
|
|
|
|
break;
|
2015-06-21 21:17:33 +02:00
|
|
|
|
case MHD_HTTP_OK:
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
|
verify_deposit_signature_ok (dh,
|
2018-10-22 16:59:09 +02:00
|
|
|
|
j,
|
2018-11-17 15:15:51 +01:00
|
|
|
|
&exchange_sig,
|
2016-06-07 15:14:44 +02:00
|
|
|
|
&exchange_pub))
|
2015-06-21 21:17:33 +02:00
|
|
|
|
{
|
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
|
response_code = 0;
|
|
|
|
|
}
|
2016-06-07 15:14:44 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
2018-11-17 15:15:51 +01:00
|
|
|
|
es = &exchange_sig;
|
2016-06-07 15:14:44 +02:00
|
|
|
|
ep = &exchange_pub;
|
|
|
|
|
}
|
2015-06-21 21:17:33 +02:00
|
|
|
|
break;
|
|
|
|
|
case MHD_HTTP_BAD_REQUEST:
|
2016-03-01 15:35:04 +01:00
|
|
|
|
/* This should never happen, either us or the exchange is buggy
|
2015-06-21 21:17:33 +02:00
|
|
|
|
(or API version conflict); just pass JSON reply to the application */
|
|
|
|
|
break;
|
|
|
|
|
case MHD_HTTP_FORBIDDEN:
|
|
|
|
|
/* Double spending; check signatures on transaction history */
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
|
verify_deposit_signature_forbidden (dh,
|
2018-10-22 16:59:09 +02:00
|
|
|
|
j))
|
2015-06-21 21:17:33 +02:00
|
|
|
|
{
|
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
|
response_code = 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case MHD_HTTP_UNAUTHORIZED:
|
2016-03-01 15:35:04 +01:00
|
|
|
|
/* Nothing really to verify, exchange says one of the signatures is
|
2015-06-21 21:17:33 +02:00
|
|
|
|
invalid; as we checked them, this should never happen, we
|
|
|
|
|
should pass the JSON reply to the application */
|
|
|
|
|
break;
|
|
|
|
|
case MHD_HTTP_NOT_FOUND:
|
|
|
|
|
/* Nothing really to verify, this should never
|
|
|
|
|
happen, we should pass the JSON reply to the application */
|
|
|
|
|
break;
|
|
|
|
|
case MHD_HTTP_INTERNAL_SERVER_ERROR:
|
|
|
|
|
/* Server had an internal issue; we should retry, but this API
|
|
|
|
|
leaves this to the application */
|
|
|
|
|
break;
|
2015-06-21 00:00:33 +02:00
|
|
|
|
default:
|
|
|
|
|
/* unexpected response code */
|
2015-07-09 12:47:49 +02:00
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
|
|
|
|
"Unexpected response code %u\n",
|
2016-05-04 13:21:22 +02:00
|
|
|
|
(unsigned int) response_code);
|
2015-06-21 00:00:33 +02:00
|
|
|
|
GNUNET_break (0);
|
|
|
|
|
response_code = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
dh->cb (dh->cb_cls,
|
|
|
|
|
response_code,
|
2018-10-22 16:59:09 +02:00
|
|
|
|
TALER_JSON_get_error_code (j),
|
2018-11-17 15:15:51 +01:00
|
|
|
|
es,
|
2016-06-07 15:14:44 +02:00
|
|
|
|
ep,
|
2018-10-22 16:59:09 +02:00
|
|
|
|
j);
|
2016-03-01 15:35:04 +01:00
|
|
|
|
TALER_EXCHANGE_deposit_cancel (dh);
|
2015-06-21 00:00:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-06-21 20:43:54 +02:00
|
|
|
|
/**
|
|
|
|
|
* Verify signature information about the deposit.
|
|
|
|
|
*
|
2015-06-21 21:17:33 +02:00
|
|
|
|
* @param dki public key information
|
|
|
|
|
* @param amount the amount to be deposited
|
|
|
|
|
* @param h_wire hash of the merchant’s account details
|
2017-05-29 01:15:41 +02:00
|
|
|
|
* @param h_contract_terms hash of the contact of the merchant with the customer (further details are never disclosed to the exchange)
|
2015-06-21 21:17:33 +02:00
|
|
|
|
* @param coin_pub coin’s public key
|
|
|
|
|
* @param denom_pub denomination key with which the coin is signed
|
2019-05-02 21:16:51 +02:00
|
|
|
|
* @param denom_pub_hash hash of @a denom_pub
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* @param denom_sig exchange’s unblinded signature of the coin
|
2017-02-06 15:41:39 +01:00
|
|
|
|
* @param timestamp timestamp when the deposit was finalized
|
2015-06-21 21:17:33 +02:00
|
|
|
|
* @param merchant_pub the public key of the merchant (used to identify the merchant for refund requests)
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* @param refund_deadline date until which the merchant can issue a refund to the customer via the exchange (can be zero if refunds are not allowed)
|
2015-06-21 21:17:33 +02:00
|
|
|
|
* @param coin_sig the signature made with purpose #TALER_SIGNATURE_WALLET_COIN_DEPOSIT made by the customer with the coin’s private key.
|
2015-06-21 20:43:54 +02:00
|
|
|
|
* @return #GNUNET_OK if signatures are OK, #GNUNET_SYSERR if not
|
|
|
|
|
*/
|
|
|
|
|
static int
|
2016-03-01 15:35:04 +01:00
|
|
|
|
verify_signatures (const struct TALER_EXCHANGE_DenomPublicKey *dki,
|
2015-06-21 20:43:54 +02:00
|
|
|
|
const struct TALER_Amount *amount,
|
|
|
|
|
const struct GNUNET_HashCode *h_wire,
|
2017-05-29 01:15:41 +02:00
|
|
|
|
const struct GNUNET_HashCode *h_contract_terms,
|
2015-06-21 20:43:54 +02:00
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
|
const struct TALER_DenominationSignature *denom_sig,
|
|
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
2019-05-02 21:16:51 +02:00
|
|
|
|
const struct GNUNET_HashCode *denom_pub_hash,
|
2015-06-21 20:43:54 +02:00
|
|
|
|
struct GNUNET_TIME_Absolute timestamp,
|
|
|
|
|
const struct TALER_MerchantPublicKeyP *merchant_pub,
|
|
|
|
|
struct GNUNET_TIME_Absolute refund_deadline,
|
|
|
|
|
const struct TALER_CoinSpendSignatureP *coin_sig)
|
|
|
|
|
{
|
|
|
|
|
struct TALER_DepositRequestPS dr;
|
|
|
|
|
struct TALER_CoinPublicInfo coin_info;
|
|
|
|
|
|
|
|
|
|
dr.purpose.purpose = htonl (TALER_SIGNATURE_WALLET_COIN_DEPOSIT);
|
|
|
|
|
dr.purpose.size = htonl (sizeof (struct TALER_DepositRequestPS));
|
2017-05-29 01:15:41 +02:00
|
|
|
|
dr.h_contract_terms = *h_contract_terms;
|
2015-06-21 20:43:54 +02:00
|
|
|
|
dr.h_wire = *h_wire;
|
|
|
|
|
dr.timestamp = GNUNET_TIME_absolute_hton (timestamp);
|
|
|
|
|
dr.refund_deadline = GNUNET_TIME_absolute_hton (refund_deadline);
|
|
|
|
|
TALER_amount_hton (&dr.amount_with_fee,
|
|
|
|
|
amount);
|
|
|
|
|
TALER_amount_hton (&dr.deposit_fee,
|
|
|
|
|
&dki->fee_deposit);
|
|
|
|
|
dr.merchant = *merchant_pub;
|
|
|
|
|
dr.coin_pub = *coin_pub;
|
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_DEPOSIT,
|
|
|
|
|
&dr.purpose,
|
|
|
|
|
&coin_sig->eddsa_signature,
|
|
|
|
|
&coin_pub->eddsa_pub))
|
|
|
|
|
{
|
2017-05-12 22:41:29 +02:00
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
|
TALER_LOG_WARNING ("Invalid coin signature on /deposit request!\n");
|
2015-12-25 18:52:22 +01:00
|
|
|
|
{
|
2017-05-11 11:43:50 +02:00
|
|
|
|
TALER_LOG_DEBUG ("... amount_with_fee was %s\n",
|
|
|
|
|
TALER_amount2s (amount));
|
|
|
|
|
TALER_LOG_DEBUG ("... deposit_fee was %s\n",
|
|
|
|
|
TALER_amount2s (&dki->fee_deposit));
|
2015-12-25 18:52:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-06-21 20:43:54 +02:00
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* check coin signature */
|
|
|
|
|
coin_info.coin_pub = *coin_pub;
|
2019-05-02 21:16:51 +02:00
|
|
|
|
coin_info.denom_pub_hash = *denom_pub_hash;
|
2015-06-21 20:43:54 +02:00
|
|
|
|
coin_info.denom_sig = *denom_sig;
|
|
|
|
|
if (GNUNET_YES !=
|
2019-05-02 21:16:51 +02:00
|
|
|
|
TALER_test_coin_valid (&coin_info,
|
|
|
|
|
denom_pub))
|
2015-06-21 20:43:54 +02:00
|
|
|
|
{
|
2017-05-12 22:41:29 +02:00
|
|
|
|
GNUNET_break_op (0);
|
2015-06-21 20:43:54 +02:00
|
|
|
|
TALER_LOG_WARNING ("Invalid coin passed for /deposit\n");
|
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
|
}
|
2015-07-05 16:55:01 +02:00
|
|
|
|
if (0 < TALER_amount_cmp (&dki->fee_deposit,
|
|
|
|
|
amount))
|
2015-06-21 20:43:54 +02:00
|
|
|
|
{
|
2017-05-12 22:41:29 +02:00
|
|
|
|
GNUNET_break_op (0);
|
2015-06-21 20:43:54 +02:00
|
|
|
|
TALER_LOG_WARNING ("Deposit amount smaller than fee\n");
|
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
|
}
|
|
|
|
|
return GNUNET_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-06-21 00:00:33 +02:00
|
|
|
|
/**
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* Submit a deposit permission to the exchange and get the exchange's response.
|
2015-06-21 00:00:33 +02:00
|
|
|
|
* Note that while we return the response verbatim to the caller for
|
|
|
|
|
* further processing, we do already verify that the response is
|
|
|
|
|
* well-formed (i.e. that signatures included in the response are all
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* valid). If the exchange's reply is not well-formed, we return an
|
2015-06-21 00:00:33 +02:00
|
|
|
|
* HTTP status code of zero to @a cb.
|
|
|
|
|
*
|
|
|
|
|
* We also verify that the @a coin_sig is valid for this deposit
|
|
|
|
|
* request, and that the @a ub_sig is a valid signature for @a
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* coin_pub. Also, the @a exchange must be ready to operate (i.e. have
|
2015-06-21 00:00:33 +02:00
|
|
|
|
* finished processing the /keys reply). If either check fails, we do
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* NOT initiate the transaction with the exchange and instead return NULL.
|
2015-06-21 00:00:33 +02:00
|
|
|
|
*
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* @param exchange the exchange handle; the exchange must be ready to operate
|
2015-06-21 00:00:33 +02:00
|
|
|
|
* @param amount the amount to be deposited
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* @param wire_deadline date until which the merchant would like the exchange to settle the balance (advisory, the exchange cannot be
|
|
|
|
|
* forced to settle in the past or upon very short notice, but of course a well-behaved exchange will limit aggregation based on the advice received)
|
|
|
|
|
* @param wire_details the merchant’s account details, in a format supported by the exchange
|
2017-05-29 01:15:41 +02:00
|
|
|
|
* @param h_contract_terms hash of the contact of the merchant with the customer (further details are never disclosed to the exchange)
|
2015-06-21 00:00:33 +02:00
|
|
|
|
* @param coin_pub coin’s public key
|
|
|
|
|
* @param denom_pub denomination key with which the coin is signed
|
2016-03-01 15:35:04 +01:00
|
|
|
|
* @param denom_sig exchange’s unblinded signature of the coin
|
2017-02-06 15:41:39 +01:00
|
|
|
|
* @param timestamp timestamp when the contract was finalized, must not be too far in the future
|
2015-06-21 00:00:33 +02:00
|
|
|
|
* @param merchant_pub the public key of the merchant (used to identify the merchant for refund requests)
|
2016-05-20 15:36:08 +02:00
|
|
|
|
* @param refund_deadline date until which the merchant can issue a refund to the customer via the exchange (can be zero if refunds are not allowed); must not be after the @a wire_deadline
|
2015-06-21 00:00:33 +02:00
|
|
|
|
* @param coin_sig the signature made with purpose #TALER_SIGNATURE_WALLET_COIN_DEPOSIT made by the customer with the coin’s private key.
|
|
|
|
|
* @param cb the callback to call when a reply for this request is available
|
|
|
|
|
* @param cb_cls closure for the above callback
|
|
|
|
|
* @return a handle for this request; NULL if the inputs are invalid (i.e.
|
|
|
|
|
* signatures fail to verify). In this case, the callback is not called.
|
|
|
|
|
*/
|
2016-03-01 15:35:04 +01:00
|
|
|
|
struct TALER_EXCHANGE_DepositHandle *
|
|
|
|
|
TALER_EXCHANGE_deposit (struct TALER_EXCHANGE_Handle *exchange,
|
2016-05-04 05:16:32 +02:00
|
|
|
|
const struct TALER_Amount *amount,
|
|
|
|
|
struct GNUNET_TIME_Absolute wire_deadline,
|
|
|
|
|
json_t *wire_details,
|
2017-05-29 01:15:41 +02:00
|
|
|
|
const struct GNUNET_HashCode *h_contract_terms,
|
2016-05-04 05:16:32 +02:00
|
|
|
|
const struct TALER_CoinSpendPublicKeyP *coin_pub,
|
|
|
|
|
const struct TALER_DenominationSignature *denom_sig,
|
|
|
|
|
const struct TALER_DenominationPublicKey *denom_pub,
|
|
|
|
|
struct GNUNET_TIME_Absolute timestamp,
|
|
|
|
|
const struct TALER_MerchantPublicKeyP *merchant_pub,
|
|
|
|
|
struct GNUNET_TIME_Absolute refund_deadline,
|
|
|
|
|
const struct TALER_CoinSpendSignatureP *coin_sig,
|
|
|
|
|
TALER_EXCHANGE_DepositResultCallback cb,
|
|
|
|
|
void *cb_cls)
|
2015-06-21 00:00:33 +02:00
|
|
|
|
{
|
2016-03-01 15:35:04 +01:00
|
|
|
|
const struct TALER_EXCHANGE_Keys *key_state;
|
|
|
|
|
const struct TALER_EXCHANGE_DenomPublicKey *dki;
|
|
|
|
|
struct TALER_EXCHANGE_DepositHandle *dh;
|
2016-04-17 17:45:15 +02:00
|
|
|
|
struct GNUNET_CURL_Context *ctx;
|
2015-06-21 00:00:33 +02:00
|
|
|
|
json_t *deposit_obj;
|
|
|
|
|
CURL *eh;
|
2015-06-21 19:18:31 +02:00
|
|
|
|
struct GNUNET_HashCode h_wire;
|
2019-05-02 21:16:51 +02:00
|
|
|
|
struct GNUNET_HashCode denom_pub_hash;
|
2015-06-21 21:17:33 +02:00
|
|
|
|
struct TALER_Amount amount_without_fee;
|
2015-06-21 00:00:33 +02:00
|
|
|
|
|
2016-03-19 15:23:11 +01:00
|
|
|
|
(void) GNUNET_TIME_round_abs (&wire_deadline);
|
2016-05-20 15:36:08 +02:00
|
|
|
|
(void) GNUNET_TIME_round_abs (&refund_deadline);
|
2016-05-24 20:37:23 +02:00
|
|
|
|
GNUNET_assert (refund_deadline.abs_value_us <= wire_deadline.abs_value_us);
|
|
|
|
|
GNUNET_assert (GNUNET_YES ==
|
2018-11-25 14:40:03 +01:00
|
|
|
|
TEAH_handle_is_ready (exchange));
|
2015-06-21 19:18:31 +02:00
|
|
|
|
/* initialize h_wire */
|
2017-10-06 20:02:28 +02:00
|
|
|
|
if (GNUNET_OK !=
|
2018-10-06 15:05:06 +02:00
|
|
|
|
TALER_JSON_merchant_wire_signature_hash (wire_details,
|
|
|
|
|
&h_wire))
|
2017-10-06 20:02:28 +02:00
|
|
|
|
{
|
|
|
|
|
GNUNET_break (0);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2016-03-01 15:35:04 +01:00
|
|
|
|
key_state = TALER_EXCHANGE_get_keys (exchange);
|
|
|
|
|
dki = TALER_EXCHANGE_get_denomination_key (key_state,
|
2016-05-20 15:36:08 +02:00
|
|
|
|
denom_pub);
|
2016-05-24 20:37:23 +02:00
|
|
|
|
GNUNET_assert (NULL != dki);
|
|
|
|
|
GNUNET_assert (GNUNET_SYSERR !=
|
2019-06-06 20:52:32 +02:00
|
|
|
|
TALER_amount_subtract (&amount_without_fee,
|
|
|
|
|
amount,
|
|
|
|
|
&dki->fee_deposit));
|
2019-05-02 21:16:51 +02:00
|
|
|
|
GNUNET_CRYPTO_rsa_public_key_hash (denom_pub->rsa_public_key,
|
|
|
|
|
&denom_pub_hash);
|
2015-06-21 20:43:54 +02:00
|
|
|
|
if (GNUNET_OK !=
|
2015-06-21 21:17:33 +02:00
|
|
|
|
verify_signatures (dki,
|
2015-06-21 20:43:54 +02:00
|
|
|
|
amount,
|
|
|
|
|
&h_wire,
|
2017-05-29 01:15:41 +02:00
|
|
|
|
h_contract_terms,
|
2015-06-21 20:43:54 +02:00
|
|
|
|
coin_pub,
|
|
|
|
|
denom_sig,
|
|
|
|
|
denom_pub,
|
2019-05-02 21:16:51 +02:00
|
|
|
|
&denom_pub_hash,
|
2015-06-21 20:43:54 +02:00
|
|
|
|
timestamp,
|
|
|
|
|
merchant_pub,
|
|
|
|
|
refund_deadline,
|
|
|
|
|
coin_sig))
|
|
|
|
|
{
|
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2015-06-21 19:18:31 +02:00
|
|
|
|
|
2015-07-11 23:07:36 +02:00
|
|
|
|
deposit_obj = json_pack ("{s:o, s:O," /* f/wire */
|
2017-05-29 01:15:41 +02:00
|
|
|
|
" s:o, s:o," /* H_wire, h_contract_terms */
|
2015-07-05 16:55:01 +02:00
|
|
|
|
" s:o, s:o," /* coin_pub, denom_pub */
|
|
|
|
|
" s:o, s:o," /* ub_sig, timestamp */
|
2017-02-07 15:09:10 +01:00
|
|
|
|
" s:o," /* merchant_pub */
|
2015-10-28 21:06:23 +01:00
|
|
|
|
" s:o, s:o," /* refund_deadline, wire_deadline */
|
|
|
|
|
" s:o}", /* coin_sig */
|
2018-01-01 22:10:26 +01:00
|
|
|
|
"contribution", TALER_JSON_from_amount (amount),
|
2015-06-21 19:18:31 +02:00
|
|
|
|
"wire", wire_details,
|
2016-05-21 18:36:12 +02:00
|
|
|
|
"H_wire", GNUNET_JSON_from_data_auto (&h_wire),
|
2017-05-29 01:15:41 +02:00
|
|
|
|
"h_contract_terms", GNUNET_JSON_from_data_auto (h_contract_terms),
|
2016-05-21 18:36:12 +02:00
|
|
|
|
"coin_pub", GNUNET_JSON_from_data_auto (coin_pub),
|
2019-05-02 21:16:51 +02:00
|
|
|
|
"denom_pub_hash", GNUNET_JSON_from_data_auto (&denom_pub_hash),
|
2016-03-19 15:23:11 +01:00
|
|
|
|
"ub_sig", GNUNET_JSON_from_rsa_signature (denom_sig->rsa_signature),
|
|
|
|
|
"timestamp", GNUNET_JSON_from_time_abs (timestamp),
|
2016-05-21 18:36:12 +02:00
|
|
|
|
"merchant_pub", GNUNET_JSON_from_data_auto (merchant_pub),
|
2016-03-19 15:23:11 +01:00
|
|
|
|
"refund_deadline", GNUNET_JSON_from_time_abs (refund_deadline),
|
2016-05-26 15:23:46 +02:00
|
|
|
|
"wire_transfer_deadline", GNUNET_JSON_from_time_abs (wire_deadline),
|
2016-05-21 18:36:12 +02:00
|
|
|
|
"coin_sig", GNUNET_JSON_from_data_auto (coin_sig)
|
2015-06-21 19:18:31 +02:00
|
|
|
|
);
|
2017-05-07 14:07:48 +02:00
|
|
|
|
if (NULL == deposit_obj)
|
|
|
|
|
{
|
|
|
|
|
GNUNET_break (0);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2015-06-21 00:00:33 +02:00
|
|
|
|
|
2016-03-01 15:35:04 +01:00
|
|
|
|
dh = GNUNET_new (struct TALER_EXCHANGE_DepositHandle);
|
|
|
|
|
dh->exchange = exchange;
|
2015-06-21 00:00:33 +02:00
|
|
|
|
dh->cb = cb;
|
|
|
|
|
dh->cb_cls = cb_cls;
|
2018-11-25 14:40:03 +01:00
|
|
|
|
dh->url = TEAH_path_to_url (exchange, "/deposit");
|
2015-06-21 21:17:33 +02:00
|
|
|
|
dh->depconf.purpose.size = htonl (sizeof (struct TALER_DepositConfirmationPS));
|
2016-03-01 15:35:04 +01:00
|
|
|
|
dh->depconf.purpose.purpose = htonl (TALER_SIGNATURE_EXCHANGE_CONFIRM_DEPOSIT);
|
2017-05-29 01:15:41 +02:00
|
|
|
|
dh->depconf.h_contract_terms = *h_contract_terms;
|
2015-06-21 21:17:33 +02:00
|
|
|
|
dh->depconf.h_wire = h_wire;
|
|
|
|
|
dh->depconf.timestamp = GNUNET_TIME_absolute_hton (timestamp);
|
|
|
|
|
dh->depconf.refund_deadline = GNUNET_TIME_absolute_hton (refund_deadline);
|
|
|
|
|
TALER_amount_hton (&dh->depconf.amount_without_fee,
|
|
|
|
|
&amount_without_fee);
|
|
|
|
|
dh->depconf.coin_pub = *coin_pub;
|
|
|
|
|
dh->depconf.merchant = *merchant_pub;
|
2015-06-21 21:49:05 +02:00
|
|
|
|
dh->amount_with_fee = *amount;
|
|
|
|
|
dh->coin_value = dki->value;
|
2015-06-21 21:17:33 +02:00
|
|
|
|
|
2018-09-22 01:21:55 +02:00
|
|
|
|
eh = TEL_curl_easy_get (dh->url);
|
2019-05-03 17:36:58 +02:00
|
|
|
|
if (GNUNET_OK !=
|
2019-05-23 20:46:51 +02:00
|
|
|
|
TALER_curl_easy_post (&dh->ctx,
|
2019-05-03 17:36:58 +02:00
|
|
|
|
eh,
|
|
|
|
|
deposit_obj))
|
|
|
|
|
{
|
|
|
|
|
GNUNET_break (0);
|
|
|
|
|
curl_easy_cleanup (eh);
|
|
|
|
|
json_decref (deposit_obj);
|
|
|
|
|
GNUNET_free (dh->url);
|
|
|
|
|
GNUNET_free (dh);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2015-06-21 19:18:31 +02:00
|
|
|
|
json_decref (deposit_obj);
|
2015-12-23 22:36:28 +01:00
|
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
|
2015-12-25 18:52:22 +01:00
|
|
|
|
"URL for deposit: `%s'\n",
|
2015-12-23 22:36:28 +01:00
|
|
|
|
dh->url);
|
2018-11-25 14:40:03 +01:00
|
|
|
|
ctx = TEAH_handle_to_context (exchange);
|
2019-05-17 16:30:37 +02:00
|
|
|
|
dh->job = GNUNET_CURL_job_add2 (ctx,
|
2019-07-28 15:39:28 +02:00
|
|
|
|
eh,
|
|
|
|
|
dh->ctx.headers,
|
|
|
|
|
&handle_deposit_finished,
|
|
|
|
|
dh);
|
2015-06-21 00:00:33 +02:00
|
|
|
|
return dh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Cancel a deposit permission request. This function cannot be used
|
|
|
|
|
* on a request handle if a response is already served for it.
|
|
|
|
|
*
|
|
|
|
|
* @param deposit the deposit permission request handle
|
|
|
|
|
*/
|
|
|
|
|
void
|
2016-03-01 15:35:04 +01:00
|
|
|
|
TALER_EXCHANGE_deposit_cancel (struct TALER_EXCHANGE_DepositHandle *deposit)
|
2015-06-21 00:00:33 +02:00
|
|
|
|
{
|
2015-07-04 21:34:50 +02:00
|
|
|
|
if (NULL != deposit->job)
|
|
|
|
|
{
|
2016-04-17 17:45:15 +02:00
|
|
|
|
GNUNET_CURL_job_cancel (deposit->job);
|
2015-07-04 21:34:50 +02:00
|
|
|
|
deposit->job = NULL;
|
|
|
|
|
}
|
2015-06-21 00:00:33 +02:00
|
|
|
|
GNUNET_free (deposit->url);
|
2019-05-23 20:46:51 +02:00
|
|
|
|
TALER_curl_easy_post_finished (&deposit->ctx);
|
2015-06-21 00:00:33 +02:00
|
|
|
|
GNUNET_free (deposit);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2016-03-01 15:35:04 +01:00
|
|
|
|
/* end of exchange_api_deposit.c */
|