/* This file is part of TALER Copyright (C) 2014-2023 Taler Systems SA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1, 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with TALER; see the file COPYING.LGPL. If not, see */ /** * @file merchant_api_post_order_pay.c * @brief Implementation of the POST /order/$ID/pay request * of the merchant's HTTP API * @author Christian Grothoff * @author Marcello Stanisci */ #include "platform.h" #include #include #include /* just for HTTP status codes */ #include #include #include "taler_merchant_service.h" #include "merchant_api_common.h" #include "merchant_api_curl_defaults.h" #include #include #include #include /** * @brief A Pay Handle */ struct TALER_MERCHANT_OrderPayHandle { /** * The url for this request. */ char *url; /** * Handle for the request. */ struct GNUNET_CURL_Job *job; /** * Function to call with the result in "pay" @e mode. */ TALER_MERCHANT_OrderPayCallback pay_cb; /** * Closure for @a pay_cb. */ void *pay_cb_cls; /** * Reference to the execution context. */ struct GNUNET_CURL_Context *ctx; /** * Minor context that holds body and headers. */ struct TALER_CURL_PostContext post_ctx; /** * The coins we are paying with. */ struct TALER_MERCHANT_PaidCoin *coins; /** * Hash of the contract we are paying, set * if @e am_wallet is true. */ struct TALER_PrivateContractHashP h_contract_terms; /** * Public key of the merchant (instance) being paid, set * if @e am_wallet is true. */ struct TALER_MerchantPublicKeyP merchant_pub; /** * JSON with the full reply, used during async * processing. */ json_t *full_reply; /** * Pointer into @e coins array for the coin that * created a conflict (that we are checking). */ const struct TALER_MERCHANT_PaidCoin *error_pc; /** * Coin history that proves a conflict. */ json_t *error_history; /** * Number of @e coins we are paying with. */ unsigned int num_coins; /** * Set to true if this is the wallet API and we have * initialized @e h_contract_terms and @e merchant_pub. */ bool am_wallet; }; /** * Function called when we're done processing the * HTTP /pay request. * * @param cls the `struct TALER_MERCHANT_Pay` * @param response_code HTTP response code, 0 on error * @param response response body, NULL if not in JSON */ static void handle_pay_finished (void *cls, long response_code, const void *response) { struct TALER_MERCHANT_OrderPayHandle *oph = cls; const json_t *json = response; struct TALER_MERCHANT_PayResponse pr = { .hr.http_status = (unsigned int) response_code, .hr.reply = json }; oph->job = NULL; GNUNET_log (GNUNET_ERROR_TYPE_INFO, "/pay completed with response code %u\n", (unsigned int) response_code); switch (response_code) { case 0: pr.hr.ec = TALER_EC_GENERIC_INVALID_RESPONSE; break; case MHD_HTTP_OK: if (oph->am_wallet) { /* Here we can (and should) verify the merchant's signature */ struct GNUNET_JSON_Specification spec[] = { GNUNET_JSON_spec_fixed_auto ( "sig", &pr.details.ok.merchant_sig), GNUNET_JSON_spec_mark_optional ( GNUNET_JSON_spec_string ( "pos_confirmation", &pr.details.ok.pos_confirmation), NULL), GNUNET_JSON_spec_end () }; if (GNUNET_OK != GNUNET_JSON_parse (json, spec, NULL, NULL)) { GNUNET_break_op (0); pr.hr.ec = TALER_EC_GENERIC_INVALID_RESPONSE; pr.hr.http_status = 0; pr.hr.hint = "sig field missing in response"; break; } if (GNUNET_OK != TALER_merchant_pay_verify (&oph->h_contract_terms, &oph->merchant_pub, &pr.details.ok.merchant_sig)) { GNUNET_break_op (0); pr.hr.ec = TALER_EC_GENERIC_INVALID_RESPONSE; pr.hr.http_status = 0; pr.hr.hint = "signature invalid"; } } break; /* Tolerating Not Acceptable because sometimes * - especially in tests - we might want to POST * coins one at a time. */ case MHD_HTTP_NOT_ACCEPTABLE: pr.hr.ec = TALER_JSON_get_error_code (json); pr.hr.hint = TALER_JSON_get_error_hint (json); break; case MHD_HTTP_BAD_REQUEST: pr.hr.ec = TALER_JSON_get_error_code (json); pr.hr.hint = TALER_JSON_get_error_hint (json); /* This should never happen, either us * or the merchant is buggy (or API version conflict); * just pass JSON reply to the application */ break; case MHD_HTTP_PAYMENT_REQUIRED: /* was originally paid, but then refunded */ pr.hr.ec = TALER_JSON_get_error_code (json); pr.hr.hint = TALER_JSON_get_error_hint (json); break; case MHD_HTTP_FORBIDDEN: pr.hr.ec = TALER_JSON_get_error_code (json); pr.hr.hint = TALER_JSON_get_error_hint (json); /* Nothing really to verify, merchant says we tried to abort the payment * after it was successful. We should pass the JSON reply to the * application */ break; case MHD_HTTP_NOT_FOUND: pr.hr.ec = TALER_JSON_get_error_code (json); pr.hr.hint = TALER_JSON_get_error_hint (json); /* Nothing really to verify, this should never happen, we should pass the JSON reply to the application */ break; case MHD_HTTP_REQUEST_TIMEOUT: pr.hr.ec = TALER_JSON_get_error_code (json); pr.hr.hint = TALER_JSON_get_error_hint (json); /* The merchant couldn't generate a timely response, likely because it itself waited too long on the exchange. Pass on to application. */ break; case MHD_HTTP_CONFLICT: TALER_MERCHANT_parse_error_details_ (json, MHD_HTTP_CONFLICT, &pr.hr); break; case MHD_HTTP_GONE: TALER_MERCHANT_parse_error_details_ (json, response_code, &pr.hr); /* The merchant says we are too late, the offer has expired or some denomination key of a coin involved has expired. Might be a disagreement in timestamps? Still, pass on to application. */ break; case MHD_HTTP_PRECONDITION_FAILED: TALER_MERCHANT_parse_error_details_ (json, response_code, &pr.hr); /* Nothing really to verify, the merchant is blaming us for failing to satisfy some constraint (likely it does not like our exchange because of some disagreement on the PKI). We should pass the JSON reply to the application */ break; case MHD_HTTP_INTERNAL_SERVER_ERROR: TALER_MERCHANT_parse_error_details_ (json, response_code, &pr.hr); /* Server had an internal issue; we should retry, but this API leaves this to the application */ break; case MHD_HTTP_BAD_GATEWAY: /* Nothing really to verify, the merchant is blaming the exchange. We should pass the JSON reply to the application */ TALER_MERCHANT_parse_error_details_ (json, response_code, &pr.hr); break; case MHD_HTTP_SERVICE_UNAVAILABLE: TALER_MERCHANT_parse_error_details_ (json, response_code, &pr.hr); /* Exchange couldn't respond properly; the retry is left to the application */ break; case MHD_HTTP_GATEWAY_TIMEOUT: TALER_MERCHANT_parse_error_details_ (json, response_code, &pr.hr); /* Exchange couldn't respond in a timely fashion; the retry is left to the application */ break; default: TALER_MERCHANT_parse_error_details_ (json, response_code, &pr.hr); /* unexpected response code */ GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Unexpected response code %u/%d\n", (unsigned int) response_code, (int) pr.hr.ec); GNUNET_break_op (0); break; } oph->pay_cb (oph->pay_cb_cls, &pr); TALER_MERCHANT_order_pay_cancel (oph); } struct TALER_MERCHANT_OrderPayHandle * TALER_MERCHANT_order_pay_frontend ( struct GNUNET_CURL_Context *ctx, const char *merchant_url, const char *order_id, const char *session_id, const json_t *wallet_data, unsigned int num_coins, const struct TALER_MERCHANT_PaidCoin coins[static num_coins], TALER_MERCHANT_OrderPayCallback pay_cb, void *pay_cb_cls) { struct TALER_MERCHANT_OrderPayHandle *oph; json_t *pay_obj; json_t *j_coins; CURL *eh; struct TALER_Amount total_fee; struct TALER_Amount total_amount; if (0 == num_coins) { GNUNET_break (0); return NULL; } j_coins = json_array (); GNUNET_assert (NULL != j_coins); for (unsigned int i = 0; i TALER_amount_subtract (&fee, &pc->amount_with_fee, &pc->amount_without_fee)) { /* Integer underflow, fee larger than total amount? This should not happen (client violated API!) */ GNUNET_break (0); json_decref (j_coins); return NULL; } if (0 == i) { total_fee = fee; total_amount = pc->amount_with_fee; } else { if ( (0 > TALER_amount_add (&total_fee, &total_fee, &fee)) || (0 > TALER_amount_add (&total_amount, &total_amount, &pc->amount_with_fee)) ) { /* integer overflow */ GNUNET_break (0); json_decref (j_coins); return NULL; } } TALER_denom_pub_hash (&pc->denom_pub, &denom_hash); /* create JSON for this coin */ j_coin = GNUNET_JSON_PACK ( TALER_JSON_pack_amount ("contribution", &pc->amount_with_fee), GNUNET_JSON_pack_data_auto ("coin_pub", &pc->coin_pub), GNUNET_JSON_pack_string ("exchange_url", pc->exchange_url), GNUNET_JSON_pack_data_auto ("h_denom", &denom_hash), TALER_JSON_pack_denom_sig ("ub_sig", &pc->denom_sig), GNUNET_JSON_pack_data_auto ("coin_sig", &pc->coin_sig)); if (0 != json_array_append_new (j_coins, j_coin)) { GNUNET_break (0); json_decref (j_coins); return NULL; } } pay_obj = GNUNET_JSON_PACK ( GNUNET_JSON_pack_array_steal ("coins", j_coins), GNUNET_JSON_pack_allow_null ( GNUNET_JSON_pack_object_incref ("wallet_data", (json_t *) wallet_data)), GNUNET_JSON_pack_allow_null ( GNUNET_JSON_pack_string ("session_id", session_id))); oph = GNUNET_new (struct TALER_MERCHANT_OrderPayHandle); oph->ctx = ctx; oph->pay_cb = pay_cb; oph->pay_cb_cls = pay_cb_cls; { char *path; GNUNET_asprintf (&path, "orders/%s/pay", order_id); oph->url = TALER_url_join (merchant_url, path, NULL); GNUNET_free (path); } if (NULL == oph->url) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not construct request URL.\n"); json_decref (pay_obj); GNUNET_free (oph); return NULL; } oph->num_coins = num_coins; oph->coins = GNUNET_new_array (num_coins, struct TALER_MERCHANT_PaidCoin); GNUNET_memcpy (oph->coins, coins, num_coins * sizeof (struct TALER_MERCHANT_PaidCoin)); eh = TALER_MERCHANT_curl_easy_get_ (oph->url); if (GNUNET_OK != TALER_curl_easy_post (&oph->post_ctx, eh, pay_obj)) { GNUNET_break (0); curl_easy_cleanup (eh); json_decref (pay_obj); GNUNET_free (oph->url); GNUNET_free (oph); return NULL; } json_decref (pay_obj); oph->job = GNUNET_CURL_job_add2 (ctx, eh, oph->post_ctx.headers, &handle_pay_finished, oph); return oph; } struct TALER_MERCHANT_OrderPayHandle * TALER_MERCHANT_order_pay ( struct GNUNET_CURL_Context *ctx, const char *merchant_url, const char *session_id, const struct TALER_PrivateContractHashP *h_contract_terms, const json_t *wallet_data, const struct TALER_Amount *amount, const struct TALER_Amount *max_fee, const struct TALER_MerchantPublicKeyP *merchant_pub, const struct TALER_MerchantSignatureP *merchant_sig, struct GNUNET_TIME_Timestamp timestamp, struct GNUNET_TIME_Timestamp refund_deadline, struct GNUNET_TIME_Timestamp pay_deadline, const struct TALER_MerchantWireHashP *h_wire, const char *order_id, unsigned int num_coins, const struct TALER_MERCHANT_PayCoin coins[static num_coins], TALER_MERCHANT_OrderPayCallback pay_cb, void *pay_cb_cls) { struct GNUNET_HashCode wallet_data_hash; if (GNUNET_YES != TALER_amount_cmp_currency (amount, max_fee)) { GNUNET_break (0); return NULL; } if (NULL != wallet_data) TALER_json_hash (wallet_data, &wallet_data_hash); { struct TALER_MERCHANT_PaidCoin pc[num_coins]; for (unsigned int i = 0; i TALER_amount_subtract (&fee, &coin->amount_with_fee, &coin->amount_without_fee)) { /* Integer underflow, fee larger than total amount? This should not happen (client violated API!) */ GNUNET_break (0); return NULL; } TALER_denom_pub_hash (&coin->denom_pub, &h_denom_pub); TALER_wallet_deposit_sign (&coin->amount_with_fee, &fee, h_wire, h_contract_terms, (NULL != wallet_data) ? &wallet_data_hash : NULL, coin->h_age_commitment, NULL /* h_extensions! */, &h_denom_pub, timestamp, merchant_pub, refund_deadline, &coin->coin_priv, &p->coin_sig); p->denom_pub = coin->denom_pub; p->denom_sig = coin->denom_sig; p->denom_value = coin->denom_value; GNUNET_CRYPTO_eddsa_key_get_public (&coin->coin_priv.eddsa_priv, &p->coin_pub.eddsa_pub); p->amount_with_fee = coin->amount_with_fee; p->amount_without_fee = coin->amount_without_fee; p->exchange_url = coin->exchange_url; } { struct TALER_MERCHANT_OrderPayHandle *oph; oph = TALER_MERCHANT_order_pay_frontend (ctx, merchant_url, order_id, session_id, wallet_data, num_coins, pc, pay_cb, pay_cb_cls); if (NULL == oph) return NULL; oph->h_contract_terms = *h_contract_terms; oph->merchant_pub = *merchant_pub; oph->am_wallet = true; return oph; } } } void TALER_MERCHANT_order_pay_cancel (struct TALER_MERCHANT_OrderPayHandle *oph) { if (NULL != oph->job) { GNUNET_CURL_job_cancel (oph->job); oph->job = NULL; } TALER_curl_easy_post_finished (&oph->post_ctx); json_decref (oph->error_history); json_decref (oph->full_reply); GNUNET_free (oph->coins); GNUNET_free (oph->url); GNUNET_free (oph); } /* end of merchant_api_post_order_pay.c */